Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] [wip] common: disable creation of noarch packages.
@ 2020-08-19  6:51 fosslinux
  2020-08-19 12:23 ` ericonr
                   ` (87 more replies)
  0 siblings, 88 replies; 89+ messages in thread
From: fosslinux @ 2020-08-19  6:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1313 bytes --]

There is a new pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages noarch
https://github.com/void-linux/void-packages/pull/24357

[wip] common: disable creation of noarch packages.
This change disables the creation of noarch packages.

I believe that most package maintainers are of the same opinion that noarch causes far more problems than it solves. For some time on IRC there has been continued discussion about disabling it. This is what this PR attempts to achieve.

This still supports `archs=noarch` but IMO this is misleading if it dosen't actually create a package with the noarch arch. This is why I have made `archs=noarch` just mean `noarch=yes`. This is how I think all future packages should declare noarch: `noarch=yes`. I also considered `data_only=yes` or `arch_independent=yes` but I don't really like either of those.

The reason noarch even still exists is because it is a useful shorthand for `nodebug=yes`, `nostrip=yes`, etc etc.

The removed 32-bit block about noarch is useless because noarch already forces `noshlibprovides`.

NB: Right now, this is a MVP and still needs some more work.

Pinging @q66 @the-maldridge 

A patch file from https://github.com/void-linux/void-packages/pull/24357.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-noarch-24357.patch --]
[-- Type: text/x-diff, Size: 6315 bytes --]

From fde6fca179d381aa5e422b96faeba1ddbf55a1a3 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Wed, 19 Aug 2020 16:44:41 +1000
Subject: [PATCH] common: disable creation of noarch packages.

---
 common/hooks/do-pkg/00-gen-pkg.sh                    |  6 ++----
 common/hooks/post-install/06-strip-and-debug-pkgs.sh |  2 +-
 common/hooks/post-pkg/00-register-pkg.sh             |  6 ++----
 common/hooks/pre-pkg/04-generate-runtime-deps.sh     |  2 +-
 common/hooks/pre-pkg/05-prepare-32bit.sh             |  9 +--------
 common/hooks/pre-pkg/06-shlib-provides.sh            |  2 +-
 common/xbps-src/shutils/common.sh                    | 11 +++++------
 common/xbps-src/shutils/pkgtarget.sh                 |  2 +-
 8 files changed, 14 insertions(+), 26 deletions(-)

diff --git a/common/hooks/do-pkg/00-gen-pkg.sh b/common/hooks/do-pkg/00-gen-pkg.sh
index e6285b6e4ff..b06ba3692bb 100644
--- a/common/hooks/do-pkg/00-gen-pkg.sh
+++ b/common/hooks/do-pkg/00-gen-pkg.sh
@@ -99,14 +99,12 @@ hook() {
 	local arch= binpkg= repo= _pkgver= _desc= _pkgn= _pkgv= _provides= \
 		_replaces= _reverts= f= found_dbg_subpkg=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 
diff --git a/common/hooks/post-install/06-strip-and-debug-pkgs.sh b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
index 44d8a51fe93..84b8569f37f 100644
--- a/common/hooks/post-install/06-strip-and-debug-pkgs.sh
+++ b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
@@ -59,7 +59,7 @@ create_debug_pkg() {
 hook() {
 	local fname= x= f= _soname= STRIPCMD=
 
-	if [ -n "$nostrip" -o "${archs// /}" = "noarch" ]; then
+	if [ -n "$nostrip" -o "$noarch" ]; then
 		return 0
 	fi
 
diff --git a/common/hooks/post-pkg/00-register-pkg.sh b/common/hooks/post-pkg/00-register-pkg.sh
index 5dc28c999c9..ce641cfc850 100644
--- a/common/hooks/post-pkg/00-register-pkg.sh
+++ b/common/hooks/post-pkg/00-register-pkg.sh
@@ -13,14 +13,12 @@ registerpkg() {
 hook() {
 	local arch= binpkg= pkgdir=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 	if [ -n "$repository" ]; then
diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
index 6e45b7dd3c3..9845d6937bf 100644
--- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh
+++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
@@ -56,7 +56,7 @@ hook() {
 
     mapshlibs=$XBPS_COMMONDIR/shlibs
 
-    if [ "${archs// /}" = "noarch" -o -n "$noverifyrdeps" ]; then
+    if [ "$noarch" -o -n "$noverifyrdeps" ]; then
         store_pkgdestdir_rundeps
         return 0
     fi
diff --git a/common/hooks/pre-pkg/05-prepare-32bit.sh b/common/hooks/pre-pkg/05-prepare-32bit.sh
index fd6fdf88217..f860c8f9926 100644
--- a/common/hooks/pre-pkg/05-prepare-32bit.sh
+++ b/common/hooks/pre-pkg/05-prepare-32bit.sh
@@ -21,7 +21,7 @@ hook() {
 		return
 	fi 
 	# Ignore noarch pkgs.
-	if [ "${archs// /}" = "noarch" ]; then
+	if [ "$noarch" ]; then
 		return
 	fi
 	if [ -z "$lib32mode" ]; then
@@ -106,13 +106,6 @@ hook() {
 				printf "${pkgn}-32bit${pkgv} " >> ${destdir32}/rdeps
 				continue
 			fi
-			# If dependency is noarch do not change it to 32bit.
-			_arch=$($XBPS_QUERY_CMD -R --property=architecture "$f")
-			if [ "${_arch}" = "noarch" ]; then
-				echo "   RDEP: $f -> ${pkgn}${pkgv} (noarch)"
-				printf "${pkgn}${pkgv} " >> ${destdir32}/rdeps
-				continue
-			fi
 			# If dependency does not have "shlib-provides" do not
 			# change it to 32bit.
 			for x in ${subpackages}; do
diff --git a/common/hooks/pre-pkg/06-shlib-provides.sh b/common/hooks/pre-pkg/06-shlib-provides.sh
index cdc94de3bc9..e1dff9e562b 100644
--- a/common/hooks/pre-pkg/06-shlib-provides.sh
+++ b/common/hooks/pre-pkg/06-shlib-provides.sh
@@ -45,7 +45,7 @@ collect_sonames() {
 hook() {
 	local _destdir32=${XBPS_DESTDIR}/${pkgname}-32bit-${version}
 
-	if [ -z "$shlib_provides" -a "${archs// /}" = "noarch" -o -n "$noshlibprovides" ]; then
+	if [ -z "$shlib_provides" -a "$noarch" -o -n "$noshlibprovides" ]; then
 		return 0
 	fi
 
diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh
index e8bcf577c6b..c8c3147c37d 100644
--- a/common/xbps-src/shutils/common.sh
+++ b/common/xbps-src/shutils/common.sh
@@ -395,6 +395,10 @@ setup_pkg() {
         source_file ${XBPS_SRCPKGDIR}/${basepkg}/template
     fi
 
+    if [ "${archs// /}" = "noarch" ]; then
+        export noarch=yes
+        export archs=
+    fi
 
     # Check if required vars weren't set.
     _vars="pkgname version short_desc revision homepage license"
@@ -457,12 +461,7 @@ setup_pkg() {
     fi
     makejobs="-j$XBPS_MAKEJOBS"
 
-    # strip whitespaces to make "  noarch  " valid too.
-    if [ "${archs// /}" = "noarch" ]; then
-        arch="noarch"
-    else
-        arch="$XBPS_TARGET_MACHINE"
-    fi
+    arch="$XBPS_TARGET_MACHINE"
     if [ -n "$XBPS_BINPKG_EXISTS" ]; then
         local _binpkgver="$($XBPS_QUERY_XCMD -R -ppkgver $pkgver 2>/dev/null)"
         if [ "$_binpkgver" = "$pkgver" ]; then
diff --git a/common/xbps-src/shutils/pkgtarget.sh b/common/xbps-src/shutils/pkgtarget.sh
index 090ec5c1a3e..fa70816fe24 100644
--- a/common/xbps-src/shutils/pkgtarget.sh
+++ b/common/xbps-src/shutils/pkgtarget.sh
@@ -3,7 +3,7 @@
 check_pkg_arch() {
     local cross="$1" _arch f match nonegation
 
-    if [ -n "$archs" -a "${archs// /}" != "noarch" ]; then
+    if [ -n "$archs" ]; then
         if [ -n "$cross" ]; then
             _arch="$XBPS_TARGET_MACHINE"
         elif [ -n "$XBPS_ARCH" ]; then

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
@ 2020-08-19 12:23 ` ericonr
  2020-08-19 12:38 ` ahesford
                   ` (86 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ericonr @ 2020-08-19 12:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 461 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676263679

Comment:
I like noarch because it enables me to build something like the void-docs package and put it in the release so that everyone can download it as a preview. @zdykstra does the same thing with zfsbootmenu, where it's even more useful because he does release candidates.

I guess this use case would be broken here, right?

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
  2020-08-19 12:23 ` ericonr
@ 2020-08-19 12:38 ` ahesford
  2020-08-19 12:46 ` ahesford
                   ` (85 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ahesford @ 2020-08-19 12:38 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 517 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676284300

Comment:
That `noarch` implies `nodebug`, `nostrip`, `noshlibprovides` and whatever else does not make it a useful shorthand for those things, because it also implies other things that are being disregarded by dropping current `noarch` functionality.

If you remove the current `noarch` support, `noarch` should be a forbidden keyword in `archs` and there should be no `noarch=yes`.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
  2020-08-19 12:23 ` ericonr
  2020-08-19 12:38 ` ahesford
@ 2020-08-19 12:46 ` ahesford
  2020-08-19 13:03 ` Chocimier
                   ` (84 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ahesford @ 2020-08-19 12:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 832 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676295378

Comment:
Thinking about the distribution use case mentioned by @ericonr, what if we don't remove support for `noarch`, but move it to a `noarch=yes` flag (which would be mutually exclusive with `archs`) and make `xbps-src` require a configuration option to actually produce a `noarch` package?

This would behave sort of like `restricted` does now, except rather than refusing to build a `noarch=yes` package, `xbps-src` would treat the package as if `noarch` weren't set unless `XBPS_ALLOW_NOARCH=yes` in the environment. Offline distributors could set that option to produce packages that work for everybody, but the official builders can omit the option to produce per-arch packages everywhere.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (2 preceding siblings ...)
  2020-08-19 12:46 ` ahesford
@ 2020-08-19 13:03 ` Chocimier
  2020-08-19 14:48 ` q66
                   ` (83 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: Chocimier @ 2020-08-19 13:03 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 694 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676320447

Comment:
> noarch causes far more problems than it solves


@void-linux/pkg-committers, let's start discussion by enumerating them. Most obvious ones, please complement:

Advantages of noarch:
+ Less copies of big data packages on mirrors
+ Ability to create packages installable anywhere, used for testing xbps or experimental pure data packages as described by @ericonr 
+ Marking for all related hooks at once (nodebug, ...)

Disadvantages of noarch:
- More complicated cleaning old versions of packages shared between repodatas on primary mirror

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (3 preceding siblings ...)
  2020-08-19 13:03 ` Chocimier
@ 2020-08-19 14:48 ` q66
  2020-08-19 15:24 ` ahesford
                   ` (82 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: q66 @ 2020-08-19 14:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 349 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676472890

Comment:
I strongly disagree with changing anything in templates themselves, there is just no need for that

the only change we need is making xbps-create always make arched packages, templates can stay exactly the same

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (4 preceding siblings ...)
  2020-08-19 14:48 ` q66
@ 2020-08-19 15:24 ` ahesford
  2020-08-19 15:43 ` q66
                   ` (81 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ahesford @ 2020-08-19 15:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 379 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676494451

Comment:
I don't mind preserving the `archs=noarch` construct in templates and disabling it, but I still think it would be nice to toggle this with an `XBPS_ALLOW_NOARCH` env var to allow people to make `noarch` packages locally for distribution.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (5 preceding siblings ...)
  2020-08-19 15:24 ` ahesford
@ 2020-08-19 15:43 ` q66
  2020-08-19 15:45 ` q66
                   ` (80 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: q66 @ 2020-08-19 15:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 249 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676504728

Comment:
i don't think we need to or that we should in the first place, the use case described by @ericonr is unsupported

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (6 preceding siblings ...)
  2020-08-19 15:43 ` q66
@ 2020-08-19 15:45 ` q66
  2020-08-19 16:10 ` ahesford
                   ` (79 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: q66 @ 2020-08-19 15:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 422 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676504728

Comment:
i don't think we need to or that we should in the first place, the use case described by @ericonr is unsupported

your approach implies we will need to preserve support for this in xbps forever, even though the implementation in xbps is a major part of the problem in the first place

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (7 preceding siblings ...)
  2020-08-19 15:45 ` q66
@ 2020-08-19 16:10 ` ahesford
  2020-08-19 17:15 ` q66
                   ` (78 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ahesford @ 2020-08-19 16:10 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 629 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676519966

Comment:
It's one thing to make things needless complicated to support some unsupported, nonstandard use. It's another thing to make simple accommodations that preserve existing workflows. Unless I'm missing something, the accommodation looks as simple as changing
```
if [ "${archs// /}" = "noarch" ]; then
```
to
```
if [ "${archs// /}" = "noarch" -a -n "$XBPS_ALLOW_NOARCH" ]; then
```
at https://github.com/void-linux/void-packages/blob/master/common/hooks/do-pkg/00-gen-pkg.sh#L107


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (8 preceding siblings ...)
  2020-08-19 16:10 ` ahesford
@ 2020-08-19 17:15 ` q66
  2020-08-19 17:17 ` ericonr
                   ` (77 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: q66 @ 2020-08-19 17:15 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 264 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676553667

Comment:
and then we drop noarch support from xbps and what? we shouldn't be encouraging non-standard uses that we don't wish to support

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (9 preceding siblings ...)
  2020-08-19 17:15 ` q66
@ 2020-08-19 17:17 ` ericonr
  2020-08-19 17:19 ` q66
                   ` (76 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ericonr @ 2020-08-19 17:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 320 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676554539

Comment:
> and then we drop noarch support from xbps and what? 

Would there be a time frame on this? At some point we'd have to rebuild all the missing noarch packages, like `0ad-data`.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (10 preceding siblings ...)
  2020-08-19 17:17 ` ericonr
@ 2020-08-19 17:19 ` q66
  2020-08-19 23:05 ` fosslinux
                   ` (75 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: q66 @ 2020-08-19 17:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 380 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676555693

Comment:
there is no timeframe, but considering how broken the noarch specific code in xbps is, it's bound to happen at one point

obviously existing noarch packages would have to be rebuilt, but that's no problem, it could just be done ahead of time

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (11 preceding siblings ...)
  2020-08-19 17:19 ` q66
@ 2020-08-19 23:05 ` fosslinux
  2020-08-19 23:10 ` fosslinux
                   ` (74 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-19 23:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1121 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676800808

Comment:
Ok, replying to some comments here:

@ericonr: 
> I like noarch because it enables me to build something like the void-docs package and put it in the release so that everyone can download it as a preview. @zdykstra does the same thing with zfsbootmenu, where it's even more useful because he does release candidates.

What do you mean? I don't really understand this use-case. Is the idea you build once and then `XBPS_TARGET_ARCH=x86_^4-musl xbps-rindex -a *.xbps` for each architecture? Doing things like this is completely unsupported AFAICT.

@ahesford 
> That noarch implies nodebug, nostrip, noshlibprovides and whatever else does not make it a useful shorthand for those things, because it also implies other things that are being disregarded by dropping current noarch functionality.

I don't quite get what you mean. These other things are unnessecary, and the shorthand for `nodebug`, etc is useful for data packages. This is why I think we shouldr ename it.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (12 preceding siblings ...)
  2020-08-19 23:05 ` fosslinux
@ 2020-08-19 23:10 ` fosslinux
  2020-08-19 23:21 ` the-maldridge
                   ` (73 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-19 23:10 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1248 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676800808

Comment:
Ok, replying to some comments here:

@ericonr: 
> I like noarch because it enables me to build something like the void-docs package and put it in the release so that everyone can download it as a preview. @zdykstra does the same thing with zfsbootmenu, where it's even more useful because he does release candidates.

What do you mean? I don't really understand this use-case. Is the idea you build once and then `XBPS_TARGET_ARCH=x86_^4-musl xbps-rindex -a *.xbps` for each architecture? Doing things like this is completely unsupported AFAICT.

Removing noarch building from the build system entirely removes the need for noarch support in xbps, which is quite broken.

@ahesford 
> That noarch implies nodebug, nostrip, noshlibprovides and whatever else does not make it a useful shorthand for those things, because it also implies other things that are being disregarded by dropping current noarch functionality.

I don't quite get what you mean. These other things are unnessecary, and the shorthand for `nodebug`, etc is useful for data packages. This is why I think we shouldr ename it.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (13 preceding siblings ...)
  2020-08-19 23:10 ` fosslinux
@ 2020-08-19 23:21 ` the-maldridge
  2020-08-19 23:28 ` fosslinux
                   ` (72 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: the-maldridge @ 2020-08-19 23:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1371 bytes --]

New comment by the-maldridge on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676805631

Comment:
Primary advantages with noarch
  * it saves a meager amount of disk space that we're somehow still worried about in 2020 when you can buy commodity 10T disks at reasonable prices delivered to your DC of choice in around 2 days.

Primary disadvantages of noarch
  * pretty much everything else about it.

In no particular order noarch relies on kludges within xbps itself, it makes managing the repos unnecessarily complicated, it makes it shockingly difficult to construct a coherent package graph that could be used to schedule builds in a distributed fashion (along with our kludgy multilib, but that's another story).

As far as timeline to drop noarch from xbps?  As soon as it is practically feasible.  Removing that code would be on the critical path to improving the dependency solver and generally making xbps more robust.  I would go so far as to propose a bulk rebuild of all current noarch packages to make it possible to dump the support from xbps sooner.

I disagree that there is no need to touch templates.  It makes sense to remove the components that trigger this behavior to minimize confusion.  We are not intending to support it, so we should not keep the detritus in place that suggests we do.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (14 preceding siblings ...)
  2020-08-19 23:21 ` the-maldridge
@ 2020-08-19 23:28 ` fosslinux
  2020-08-19 23:30 ` the-maldridge
                   ` (71 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-19 23:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 660 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676808977

Comment:
Agree with everything above.

The touching templates part I agree with to some extent, I don't really care if we rebuild noarch packages, or if we do a bulk change on noarch templates, etc.

The two main questions here I see that are unresolved:

1. Should we support noarch, in any capacity?
2. Should we have some kind of shorthand for useful variables such as nostrip for data packages?
3. Should we immediatley rebuild all pacakages?

I say 1) no 2) yes 3) don't really mind, but sooner is better so yes

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (15 preceding siblings ...)
  2020-08-19 23:28 ` fosslinux
@ 2020-08-19 23:30 ` the-maldridge
  2020-08-20  0:24 ` q66
                   ` (70 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: the-maldridge @ 2020-08-19 23:30 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 301 bytes --]

New comment by the-maldridge on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676809502

Comment:
A data package shouldn't need the shorthand, because there will be nothing to strip in it.  That sounds like something that isn't actually a data package.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (16 preceding siblings ...)
  2020-08-19 23:30 ` the-maldridge
@ 2020-08-20  0:24 ` q66
  2020-08-20  0:38 ` fosslinux
                   ` (69 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: q66 @ 2020-08-20  0:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 509 bytes --]

New comment by q66 on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676826502

Comment:
it's less about having things in it and more about not taking the time scanning for these things (noarch packages can contain many files and needlessly checking everything can be slow)

so i still think being able to describe the intent in templates is fine, it's just that xbps itself shouldn't support it (i.e. for each noarch template, an arched package is generated)

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (17 preceding siblings ...)
  2020-08-20  0:24 ` q66
@ 2020-08-20  0:38 ` fosslinux
  2020-08-20  0:44 ` sgn
                   ` (68 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-20  0:38 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 281 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676830524

Comment:
> not taking the time scanning for these things

I feel like the actual solution to this is optimising strip/debug hooks in xbps-uhelper

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (18 preceding siblings ...)
  2020-08-20  0:38 ` fosslinux
@ 2020-08-20  0:44 ` sgn
  2020-08-20  0:44 ` sgn
                   ` (67 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-08-20  0:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 443 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676831977

Comment:
> > not taking the time scanning for these things
> 
> I feel like the actual solution to this is optimising strip/debug hooks in xbps-uhelper

I still take time to read all files to memory, and the check is in `common/hooks/post-install/06-strip-and-debug-pkgs.sh`

Yes, that hook could be improved.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (19 preceding siblings ...)
  2020-08-20  0:44 ` sgn
@ 2020-08-20  0:44 ` sgn
  2020-08-20  0:46 ` ericonr
                   ` (66 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-08-20  0:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 444 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676831977

Comment:
> > not taking the time scanning for these things
> 
> I feel like the actual solution to this is optimising strip/debug hooks in xbps-uhelper

It still take time to read all files to memory, and the check is in `common/hooks/post-install/06-strip-and-debug-pkgs.sh`

Yes, that hook could be improved.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (20 preceding siblings ...)
  2020-08-20  0:44 ` sgn
@ 2020-08-20  0:46 ` ericonr
  2020-08-20  0:51 ` sgn
                   ` (65 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ericonr @ 2020-08-20  0:46 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 697 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676832525

Comment:
> (noarch packages can contain many files and needlessly checking everything can be slow)

@q66 I think being more strict re. checks would be a good idea, and speeding up certain checks is definitely doable once we have `xbps-uhelper` doing more things. Since I don't know the ideal shape for that, it's hard to get started on any part of it, but I would like to help there.

> What do you mean? I don't really understand this use-case. Is the idea you build once

@fosslinux see the packages here https://github.com/void-linux/void-docs/releases



^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (21 preceding siblings ...)
  2020-08-20  0:46 ` ericonr
@ 2020-08-20  0:51 ` sgn
  2020-08-20  0:56 ` fosslinux
                   ` (64 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-08-20  0:51 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 331 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676833611

Comment:
Anyway, `file(1)` is able to handle batch of files in `common/hooks/post-install/06-strip-and-debug-pkgs.sh`,
no need to polute `xbps-uhelper(1)`.
Or, did @fosslinux talk about something else?

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (22 preceding siblings ...)
  2020-08-20  0:51 ` sgn
@ 2020-08-20  0:56 ` fosslinux
  2020-08-20  1:00 ` ahesford
                   ` (63 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-20  0:56 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 333 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676834803

Comment:
@sgn no, there has been some discussion about moving the debug and strip checks out to `xbps-uhelper` to speed up performance. @q66 and @ericonr were the ones who originally thought about it

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (23 preceding siblings ...)
  2020-08-20  0:56 ` fosslinux
@ 2020-08-20  1:00 ` ahesford
  2020-08-20  1:08 ` ericonr
                   ` (62 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ahesford @ 2020-08-20  1:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 2172 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676835665

Comment:
> I don't quite get what you mean. These other things are unnessecary, and the shorthand for `nodebug`, etc is useful for data packages. This is why I think we should rename it.

That a package is `noarch` implies that it has no native executables (which I am distinguishing from text files that are parsed by an interpreter and have an execute bit set). That a package has no native executables implies that we can set `nodebug` and `nostrip`. Transitively, `noarch` implies these things too, but if we're going to lop out the core functionality invoked by `noarch`, we shouldn't keep some vestigial keyword around just for convenience.

Keeping a `noarch` keyword without supporting `noarch` packages, where `noarch` is a wildcard for the package manager, is just misdirection. The right way to signal that we don't need to debug or strip anything is to add a `noexecutable` flag or something similarly named, or else just add the individual flags to templates. Calling it `noarch` is just going to lead to confusion, and keeping `archs=noarch` produces unexpected results because it has specific meaning now.

I haven't thought about package dependency graphs and don't much care to. In principle, it doesn't seem like properly supporting `noarch` in dependency resolution (and it seems to me the repo-maintenance challenges are just dependency resolution across the architecture dimension) should be too challenging, but I can certainly believe that difficulties in the implementation quickly become more trouble than they are worth to save some disk space.

If that's the case, drop `noarch` from XBPS, modify `xbps-src` to treat `archs=noarch` as `noexecutable=yes` and emit a warning about this transitional reinterpretation, modify `xlint` to complain when `arches=noarch` is detected and recommend the new keyword, and once we've rebuilt every `noarch` package with `noexecutable=yes` instead, drop these transitional modifications. Or just bite the bullet, migrate every template in one pass and be done with it.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (24 preceding siblings ...)
  2020-08-20  1:00 ` ahesford
@ 2020-08-20  1:08 ` ericonr
  2020-08-20  2:05 ` the-maldridge
                   ` (61 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ericonr @ 2020-08-20  1:08 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 561 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676837995

Comment:
> That a package has no native executables implies that we can set nodebug and nostrip.

Ideally `nodebug` and `nostrip` should only ever be set for packages that don't work when they are stripped or debugged, and moving to a `noexecutable` flag which scans the generated package for the wrong files would be a nice move. Using flags to speed up build checking isn't a valid use case, once we implement better helpers.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (25 preceding siblings ...)
  2020-08-20  1:08 ` ericonr
@ 2020-08-20  2:05 ` the-maldridge
  2020-08-20  6:29 ` fosslinux
                   ` (60 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: the-maldridge @ 2020-08-20  2:05 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 369 bytes --]

New comment by the-maldridge on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-676852482

Comment:
There's no need to have a transitional warning for the templates.  -packages is a monorepo which allows us to refactor things in one go rather than hanging on to things for years with linter warnings.  This isn't debian...

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (26 preceding siblings ...)
  2020-08-20  2:05 ` the-maldridge
@ 2020-08-20  6:29 ` fosslinux
  2020-08-20  6:32 ` fosslinux
                   ` (59 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-20  6:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 685 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-677287787

Comment:
After some discussion on IRC. I believe the best way forward is to drop *any* distinction between data and normal packages, i.e. drop noarch, no `noexecutable=yes`, nothing like that, and instead improve the strip/debug/shlibprovides hooks to be faster. I am working on the strip hook now, there's some pretty clear optimizations that can be done.

Also, as per @the-maldridge 's suggestion above, `archs=noarch` will be removed from every package at once.

I'll fix up this PR very soon.

Do we want to revbump noarch packages, or not?

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (27 preceding siblings ...)
  2020-08-20  6:29 ` fosslinux
@ 2020-08-20  6:32 ` fosslinux
  2020-08-20 12:52 ` ericonr
                   ` (58 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-20  6:32 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 846 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-677287787

Comment:
After some discussion on IRC. I believe the best way forward is to drop *any* distinction between data and normal packages, i.e. drop noarch, no `noexecutable=yes`, nothing like that, and instead improve the strip/debug/shlibprovides hooks to be faster. I am working on the strip hook now, there's some pretty clear optimizations that can be done. <sub>(Yes, I know I was saying keep a shorthand before, but I wasn't very well versed on how these things worked and now I have been otherwise convinced).</sub>

Also, as per @the-maldridge 's suggestion above, `archs=noarch` will be removed from every package at once.

I'll fix up this PR very soon.

Do we want to revbump noarch packages, or not?

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (28 preceding siblings ...)
  2020-08-20  6:32 ` fosslinux
@ 2020-08-20 12:52 ` ericonr
  2020-08-20 17:55 ` the-maldridge
                   ` (57 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ericonr @ 2020-08-20 12:52 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 386 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-677645872

Comment:
> Do we want to revbump noarch packages, or not?

I doubt all the packages will just build, so this PR would likely contain a pretty big amount of fixes and updates if we were to revbump/update everything. Not sure what's the best way forward.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (29 preceding siblings ...)
  2020-08-20 12:52 ` ericonr
@ 2020-08-20 17:55 ` the-maldridge
  2020-08-20 23:09 ` fosslinux
                   ` (56 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: the-maldridge @ 2020-08-20 17:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 224 bytes --]

New comment by the-maldridge on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-677811247

Comment:
@ericonr do we want to revbump noarch packages? yes, but not in this patch.


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (30 preceding siblings ...)
  2020-08-20 17:55 ` the-maldridge
@ 2020-08-20 23:09 ` fosslinux
  2020-08-21 22:26 ` [PR PATCH] [Updated] " fosslinux
                   ` (55 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-20 23:09 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 182 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-677950318

Comment:
Yeah, I meant later on, not in this PR.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR PATCH] [Updated] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (31 preceding siblings ...)
  2020-08-20 23:09 ` fosslinux
@ 2020-08-21 22:26 ` fosslinux
  2020-08-21 22:27 ` fosslinux
                   ` (54 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-21 22:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

There is an updated pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages noarch
https://github.com/void-linux/void-packages/pull/24357

[wip] common: disable creation of noarch packages.
This change disables the creation of noarch packages.

I believe that most package maintainers are of the same opinion that noarch causes far more problems than it solves. For some time on IRC there has been continued discussion about disabling it. This is what this PR attempts to achieve.

This still supports `archs=noarch` but IMO this is misleading if it dosen't actually create a package with the noarch arch. This is why I have made `archs=noarch` just mean `noarch=yes`. This is how I think all future packages should declare noarch: `noarch=yes`. I also considered `data_only=yes` or `arch_independent=yes` but I don't really like either of those.

The reason noarch even still exists is because it is a useful shorthand for `nodebug=yes`, `nostrip=yes`, etc etc.

The removed 32-bit block about noarch is useless because noarch already forces `noshlibprovides`.

NB: Right now, this is a MVP and still needs some more work.

Pinging @q66 @the-maldridge 

A patch file from https://github.com/void-linux/void-packages/pull/24357.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-noarch-24357.patch --]
[-- Type: text/x-diff, Size: 1072483 bytes --]

From e727b4a689f143dbc440a3876c2d654063a62279 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Wed, 19 Aug 2020 16:44:41 +1000
Subject: [PATCH 1/2] common: disable creation of noarch packages.

---
 common/hooks/do-pkg/00-gen-pkg.sh                    |  6 ++----
 common/hooks/post-install/06-strip-and-debug-pkgs.sh |  2 +-
 common/hooks/post-pkg/00-register-pkg.sh             |  6 ++----
 common/hooks/pre-pkg/04-generate-runtime-deps.sh     |  2 +-
 common/hooks/pre-pkg/05-prepare-32bit.sh             | 11 -----------
 common/hooks/pre-pkg/06-shlib-provides.sh            |  2 +-
 common/xbps-src/shutils/common.sh                    |  8 +-------
 common/xbps-src/shutils/pkgtarget.sh                 |  2 +-
 8 files changed, 9 insertions(+), 30 deletions(-)

diff --git a/common/hooks/do-pkg/00-gen-pkg.sh b/common/hooks/do-pkg/00-gen-pkg.sh
index e6285b6e4ff..b06ba3692bb 100644
--- a/common/hooks/do-pkg/00-gen-pkg.sh
+++ b/common/hooks/do-pkg/00-gen-pkg.sh
@@ -99,14 +99,12 @@ hook() {
 	local arch= binpkg= repo= _pkgver= _desc= _pkgn= _pkgv= _provides= \
 		_replaces= _reverts= f= found_dbg_subpkg=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 
diff --git a/common/hooks/post-install/06-strip-and-debug-pkgs.sh b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
index 44d8a51fe93..b59dde5ab3c 100644
--- a/common/hooks/post-install/06-strip-and-debug-pkgs.sh
+++ b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
@@ -59,7 +59,7 @@ create_debug_pkg() {
 hook() {
 	local fname= x= f= _soname= STRIPCMD=
 
-	if [ -n "$nostrip" -o "${archs// /}" = "noarch" ]; then
+	if [ -n "$nostrip" ]; then
 		return 0
 	fi
 
diff --git a/common/hooks/post-pkg/00-register-pkg.sh b/common/hooks/post-pkg/00-register-pkg.sh
index 5dc28c999c9..ce641cfc850 100644
--- a/common/hooks/post-pkg/00-register-pkg.sh
+++ b/common/hooks/post-pkg/00-register-pkg.sh
@@ -13,14 +13,12 @@ registerpkg() {
 hook() {
 	local arch= binpkg= pkgdir=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 	if [ -n "$repository" ]; then
diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
index 6e45b7dd3c3..8ffd3a71d8e 100644
--- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh
+++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
@@ -56,7 +56,7 @@ hook() {
 
     mapshlibs=$XBPS_COMMONDIR/shlibs
 
-    if [ "${archs// /}" = "noarch" -o -n "$noverifyrdeps" ]; then
+    if [ -n "$noverifyrdeps" ]; then
         store_pkgdestdir_rundeps
         return 0
     fi
diff --git a/common/hooks/pre-pkg/05-prepare-32bit.sh b/common/hooks/pre-pkg/05-prepare-32bit.sh
index fd6fdf88217..f3612959cb5 100644
--- a/common/hooks/pre-pkg/05-prepare-32bit.sh
+++ b/common/hooks/pre-pkg/05-prepare-32bit.sh
@@ -20,10 +20,6 @@ hook() {
 	if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
 		return
 	fi 
-	# Ignore noarch pkgs.
-	if [ "${archs// /}" = "noarch" ]; then
-		return
-	fi
 	if [ -z "$lib32mode" ]; then
 		# Library mode, copy only relevant files to new destdir.
 		#
@@ -106,13 +102,6 @@ hook() {
 				printf "${pkgn}-32bit${pkgv} " >> ${destdir32}/rdeps
 				continue
 			fi
-			# If dependency is noarch do not change it to 32bit.
-			_arch=$($XBPS_QUERY_CMD -R --property=architecture "$f")
-			if [ "${_arch}" = "noarch" ]; then
-				echo "   RDEP: $f -> ${pkgn}${pkgv} (noarch)"
-				printf "${pkgn}${pkgv} " >> ${destdir32}/rdeps
-				continue
-			fi
 			# If dependency does not have "shlib-provides" do not
 			# change it to 32bit.
 			for x in ${subpackages}; do
diff --git a/common/hooks/pre-pkg/06-shlib-provides.sh b/common/hooks/pre-pkg/06-shlib-provides.sh
index cdc94de3bc9..08e3c42b302 100644
--- a/common/hooks/pre-pkg/06-shlib-provides.sh
+++ b/common/hooks/pre-pkg/06-shlib-provides.sh
@@ -45,7 +45,7 @@ collect_sonames() {
 hook() {
 	local _destdir32=${XBPS_DESTDIR}/${pkgname}-32bit-${version}
 
-	if [ -z "$shlib_provides" -a "${archs// /}" = "noarch" -o -n "$noshlibprovides" ]; then
+	if [ -z "$shlib_provides" -o -n "$noshlibprovides" ]; then
 		return 0
 	fi
 
diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh
index e8bcf577c6b..1564a174bf2 100644
--- a/common/xbps-src/shutils/common.sh
+++ b/common/xbps-src/shutils/common.sh
@@ -395,7 +395,6 @@ setup_pkg() {
         source_file ${XBPS_SRCPKGDIR}/${basepkg}/template
     fi
 
-
     # Check if required vars weren't set.
     _vars="pkgname version short_desc revision homepage license"
     for f in ${_vars}; do
@@ -457,12 +456,7 @@ setup_pkg() {
     fi
     makejobs="-j$XBPS_MAKEJOBS"
 
-    # strip whitespaces to make "  noarch  " valid too.
-    if [ "${archs// /}" = "noarch" ]; then
-        arch="noarch"
-    else
-        arch="$XBPS_TARGET_MACHINE"
-    fi
+    arch="$XBPS_TARGET_MACHINE"
     if [ -n "$XBPS_BINPKG_EXISTS" ]; then
         local _binpkgver="$($XBPS_QUERY_XCMD -R -ppkgver $pkgver 2>/dev/null)"
         if [ "$_binpkgver" = "$pkgver" ]; then
diff --git a/common/xbps-src/shutils/pkgtarget.sh b/common/xbps-src/shutils/pkgtarget.sh
index 090ec5c1a3e..fa70816fe24 100644
--- a/common/xbps-src/shutils/pkgtarget.sh
+++ b/common/xbps-src/shutils/pkgtarget.sh
@@ -3,7 +3,7 @@
 check_pkg_arch() {
     local cross="$1" _arch f match nonegation
 
-    if [ -n "$archs" -a "${archs// /}" != "noarch" ]; then
+    if [ -n "$archs" ]; then
         if [ -n "$cross" ]; then
             _arch="$XBPS_TARGET_MACHINE"
         elif [ -n "$XBPS_ARCH" ]; then

From f8466df10b867fdf6d976b1706092df5b3985f19 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Sat, 22 Aug 2020 08:24:08 +1000
Subject: [PATCH 2/2] srcpkgs: remove archs=noarch.

[ci skip]
---
 srcpkgs/0ad-data/template                     |   1 -
 srcpkgs/66/template                           |   1 -
 srcpkgs/7kaa/template                         |   1 -
 srcpkgs/Adapta/template                       |   1 -
 srcpkgs/Autodia/template                      |   1 -
 srcpkgs/CImg/template                         |   1 -
 srcpkgs/Cataclysm-DDA/template                |   2 -
 srcpkgs/Cendric/template                      |   1 -
 srcpkgs/ClusterSSH/template                   |   1 -
 srcpkgs/ETL/template                          |   1 -
 srcpkgs/Electron-Cash/template                |   1 -
 srcpkgs/Fonts-TLWG/template                   |   2 -
 srcpkgs/GCP-Guest-Environment/template        |   1 -
 srcpkgs/Grammalecte/template                  |   1 -
 srcpkgs/ISOEnts/template                      |   1 -
 srcpkgs/Komikku/template                      |   1 -
 srcpkgs/LanguageTool/template                 |   1 -
 srcpkgs/MoinMoin/template                     |   1 -
 srcpkgs/OpenCPN-gshhs-crude/template          |   5 -
 srcpkgs/OpenLP/template                       |   1 -
 srcpkgs/OpenRCT2/template                     |   1 -
 srcpkgs/PhotoCollage/template                 |   1 -
 srcpkgs/ProofGeneral/template                 |   1 -
 srcpkgs/PyInstaller/template                  |   1 -
 srcpkgs/Pyrex/template                        |   1 -
 srcpkgs/ReText/template                       |   1 -
 srcpkgs/SMC/template                          |   1 -
 srcpkgs/SPIRV-Headers/template                |   1 -
 srcpkgs/Solaar/template                       |   1 -
 srcpkgs/TSC/template                          |   1 -
 srcpkgs/TwitchNotifier/template               |   1 -
 srcpkgs/Uranium/template                      |   1 -
 srcpkgs/Vulkan-Headers/template               |   1 -
 srcpkgs/WiringPi/template                     |   1 -
 srcpkgs/WoeUSB/template                       |   1 -
 srcpkgs/XyGrib-maps/template                  |   1 -
 srcpkgs/abcde/template                        |   1 -
 srcpkgs/abi-compliance-checker/template       |   1 -
 srcpkgs/ack/template                          |   1 -
 srcpkgs/acpilight/template                    |   1 -
 srcpkgs/acr/template                          |   1 -
 srcpkgs/adapta-kde/template                   |   1 -
 srcpkgs/adwaita-icon-theme/template           |   1 -
 srcpkgs/adwaita-plus/template                 |   1 -
 srcpkgs/afew/template                         |   1 -
 srcpkgs/aisleriot/template                    |   1 -
 srcpkgs/alacritty/template                    |   1 -
 srcpkgs/albatross-themes/template             |   1 -
 srcpkgs/alienfx/template                      |   1 -
 srcpkgs/alot/template                         |   1 -
 srcpkgs/alsa-firmware/template                |   1 -
 srcpkgs/amiri-font/template                   |   1 -
 srcpkgs/ampache/template                      |   1 -
 srcpkgs/angrysearch/template                  |   1 -
 srcpkgs/anki/template                         |   1 -
 srcpkgs/ansi/template                         |   1 -
 srcpkgs/ansible/template                      |   1 -
 srcpkgs/antlr3-bin/template                   |   1 -
 srcpkgs/apache-ant/template                   |   2 -
 srcpkgs/apache-jmeter/template                |   1 -
 srcpkgs/apache-maven/template                 |   1 -
 srcpkgs/apache-storm/template                 |   1 -
 srcpkgs/apache-tomcat/template                |   3 -
 srcpkgs/apparmor/template                     |   1 -
 srcpkgs/apt/template                          |   1 -
 srcpkgs/arandr/template                       |   1 -
 srcpkgs/arc-theme/template                    |   1 -
 srcpkgs/archlabs-themes/template              |   1 -
 srcpkgs/argtable/template                     |   1 -
 srcpkgs/artwiz-fonts/template                 |   1 -
 srcpkgs/asciidoc/template                     |   1 -
 srcpkgs/asciinema/template                    |   1 -
 srcpkgs/asciiquarium/template                 |   1 -
 srcpkgs/aspell-ru/template                    |   1 -
 srcpkgs/astromenace/template                  |   1 -
 srcpkgs/asus-kbd-backlight/template           |   1 -
 srcpkgs/atool/template                        |   1 -
 srcpkgs/audit/template                        |   1 -
 srcpkgs/auto-auto-complete/template           |   1 -
 srcpkgs/autoconf-archive/template             |   1 -
 srcpkgs/autoconf/template                     |   1 -
 srcpkgs/autoconf213/template                  |   1 -
 srcpkgs/autojump/template                     |   1 -
 srcpkgs/automake/template                     |   1 -
 srcpkgs/autorandr/template                    |   1 -
 srcpkgs/avahi-discover/template               |   4 -
 srcpkgs/avideo/template                       |   1 -
 srcpkgs/awoken-icons/template                 |   3 -
 srcpkgs/aws-cli/template                      |   1 -
 srcpkgs/awsume/template                       |   1 -
 srcpkgs/azote/template                        |   1 -
 srcpkgs/b43-firmware-classic/template         |   1 -
 srcpkgs/b43-firmware/template                 |   1 -
 srcpkgs/bCNC/template                         |   1 -
 srcpkgs/backblaze-b2/template                 |   2 -
 srcpkgs/backintime-qt/template                |   1 -
 srcpkgs/backintime/template                   |   1 -
 srcpkgs/bandit/template                       |   1 -
 srcpkgs/bash-completion/template              |   1 -
 srcpkgs/bash-preexec/template                 |   1 -
 srcpkgs/bashmount/template                    |   1 -
 srcpkgs/bats/template                         |   1 -
 srcpkgs/bdf2psf/template                      |   1 -
 srcpkgs/beard/template                        |   1 -
 srcpkgs/beets/template                        |   1 -
 srcpkgs/betterlockscreen/template             |   1 -
 srcpkgs/biber/template                        |   1 -
 srcpkgs/binutils/template                     |   1 -
 srcpkgs/binwalk/template                      |   1 -
 srcpkgs/biosdisk/template                     |   1 -
 srcpkgs/bitfighter/template                   |   1 -
 srcpkgs/black/template                        |   1 -
 srcpkgs/blackbird-themes/template             |   1 -
 srcpkgs/blackbox/template                     |   1 -
 srcpkgs/blazeblogger/template                 |   1 -
 srcpkgs/bleachbit/template                    |   1 -
 srcpkgs/bluebird-themes/template              |   1 -
 srcpkgs/boost/template                        |   1 -
 srcpkgs/bootiso/template                      |   1 -
 srcpkgs/borgmatic/template                    |   1 -
 srcpkgs/boswars/template                      |   1 -
 srcpkgs/botan/template                        |   1 -
 srcpkgs/breeze-cursors/template               |   8 -
 srcpkgs/breeze/template                       |   1 -
 srcpkgs/brise/template                        |   1 -
 srcpkgs/broadcom-bt-firmware/template         |   1 -
 srcpkgs/bsdbuild/template                     |   1 -
 srcpkgs/btrfs-backup/template                 |   1 -
 srcpkgs/bucklespring/template                 |   1 -
 srcpkgs/buildbot-slave/template               |   1 -
 srcpkgs/buildbot/template                     |   1 -
 srcpkgs/buku/template                         |   1 -
 srcpkgs/buku_run/template                     |   1 -
 srcpkgs/bum/template                          |   1 -
 srcpkgs/bumblebee-status/template             |   1 -
 srcpkgs/burp2-server/template                 |   1 -
 srcpkgs/bwidget/template                      |   1 -
 srcpkgs/byobu/template                        |   1 -
 srcpkgs/bzrtools/template                     |   1 -
 srcpkgs/c/template                            |   1 -
 srcpkgs/ca-certificates/template              |   1 -
 srcpkgs/caffeine-ng/template                  |   1 -
 srcpkgs/calligra/template                     |   1 -
 srcpkgs/cantarell-fonts/template              |   1 -
 srcpkgs/canto-next/template                   |   1 -
 srcpkgs/carton/template                       |   1 -
 srcpkgs/castero/template                      |   1 -
 srcpkgs/catch2/template                       |   1 -
 srcpkgs/catfish/template                      |   1 -
 srcpkgs/ccsm/template                         |   1 -
 srcpkgs/cdemu-client/template                 |   1 -
 srcpkgs/cdm/template                          |   1 -
 srcpkgs/cdogs-sdl/template                    |   1 -
 srcpkgs/cegui/template                        |   2 -
 srcpkgs/cegui07/template                      |   2 -
 srcpkgs/cereal/template                       |   1 -
 srcpkgs/certbot/template                      |   1 -
 srcpkgs/chatty/template                       |   1 -
 srcpkgs/checkbashisms/template                |   1 -
 srcpkgs/checksec/template                     |   1 -
 srcpkgs/cherry-font/template                  |   1 -
 srcpkgs/cherrytree/template                   |   1 -
 srcpkgs/cinnamon-translations/template        |   1 -
 srcpkgs/ckbcomp/template                      |   1 -
 srcpkgs/cldr-emoji-annotation/template        |   1 -
 .../template                                  |   1 -
 srcpkgs/clerk/template                        |   1 -
 srcpkgs/clipmenu/template                     |   1 -
 srcpkgs/cloc/template                         |   1 -
 srcpkgs/clyrics/template                      |   1 -
 srcpkgs/cmake-vala/template                   |   1 -
 srcpkgs/cmc/template                          |   1 -
 srcpkgs/coccigrep/template                    |   1 -
 srcpkgs/coin3/template                        |   1 -
 srcpkgs/collectl/template                     |   1 -
 srcpkgs/colordiff/template                    |   1 -
 srcpkgs/compiz-bcop/template                  |   1 -
 srcpkgs/composer/template                     |   1 -
 srcpkgs/coreboot-utils/template               |   1 -
 srcpkgs/couchpotato/template                  |   1 -
 srcpkgs/coursera-dl/template                  |   1 -
 srcpkgs/cowsay-temoc/template                 |   1 -
 srcpkgs/cowsay/template                       |   1 -
 srcpkgs/cozy/template                         |   1 -
 srcpkgs/cpanminus/template                    |   1 -
 srcpkgs/cpuset/template                       |   1 -
 srcpkgs/create_ap/template                    |   1 -
 srcpkgs/criu/template                         |   1 -
 srcpkgs/ctop/template                         |   1 -
 srcpkgs/culmus/template                       |   1 -
 srcpkgs/cura-fdm-materials/template           |   1 -
 srcpkgs/cura/template                         |   1 -
 srcpkgs/curseradio/template                   |   1 -
 srcpkgs/cvs2svn/template                      |   1 -
 srcpkgs/cycle/template                        |   1 -
 srcpkgs/d-feet/template                       |   1 -
 srcpkgs/db/template                           |   1 -
 srcpkgs/ddclient/template                     |   1 -
 srcpkgs/ddgr/template                         |   1 -
 srcpkgs/deepin-gtk-theme/template             |   1 -
 srcpkgs/deepin-icon-theme/template            |   1 -
 srcpkgs/deerportal/template                   |   1 -
 srcpkgs/deheader/template                     |   1 -
 srcpkgs/dehydrated/template                   |   1 -
 srcpkgs/dejavu-fonts-ttf/template             |   1 -
 srcpkgs/deluge/template                       |   3 -
 srcpkgs/devedeng/template                     |   1 -
 srcpkgs/dex/template                          |   1 -
 srcpkgs/dhcpcd-gtk/template                   |   1 -
 srcpkgs/diffoscope/template                   |   1 -
 srcpkgs/dina-font/template                    |   1 -
 srcpkgs/ditaa/template                        |   1 -
 srcpkgs/dkimproxy/template                    |   2 -
 srcpkgs/dnssec-anchors/template               |   1 -
 srcpkgs/docbook-dsssl/template                |   1 -
 srcpkgs/docbook-xml/template                  |   1 -
 srcpkgs/docbook-xsl-ns/template               |   1 -
 srcpkgs/docbook-xsl/template                  |   1 -
 srcpkgs/docbook/template                      |   1 -
 srcpkgs/docker-compose/template               |   1 -
 srcpkgs/docx2txt/template                     |   1 -
 srcpkgs/dot-xsession/template                 |   1 -
 srcpkgs/downloader-cli/template               |   1 -
 srcpkgs/dpdk/template                         |   1 -
 srcpkgs/dracut/template                       |   1 -
 srcpkgs/dreampie/template                     |   1 -
 srcpkgs/drist/template                        |   1 -
 srcpkgs/dstat/template                        |   1 -
 srcpkgs/dtrx/template                         |   1 -
 srcpkgs/duiadns/template                      |   1 -
 srcpkgs/durden/template                       |   1 -
 srcpkgs/easyrsa/template                      |   1 -
 srcpkgs/econnman/template                     |   1 -
 srcpkgs/edx-dl/template                       |   1 -
 srcpkgs/eigen/template                        |   1 -
 srcpkgs/eigen2/template                       |   1 -
 srcpkgs/eigen3.2/template                     |   1 -
 srcpkgs/ekushey-fonts-ttf/template            |   1 -
 srcpkgs/electrum-ltc/template                 |   1 -
 srcpkgs/electrum/template                     |   1 -
 srcpkgs/emacs-ess/template                    |   1 -
 srcpkgs/emacs/template                        |   1 -
 srcpkgs/emerald-themes/template               |   1 -
 srcpkgs/encodings/template                    |   1 -
 srcpkgs/endless-sky-gl21/template             |   1 -
 srcpkgs/endless-sky/template                  |   1 -
 srcpkgs/enigma/template                       |   2 -
 srcpkgs/envypn-font/template                  |   1 -
 srcpkgs/erlang/template                       |   1 -
 srcpkgs/escrotum/template                     |   1 -
 srcpkgs/eselect/template                      |   1 -
 srcpkgs/etcetera/template                     |   1 -
 srcpkgs/etckeeper/template                    |   1 -
 srcpkgs/etesync-dav/template                  |   1 -
 srcpkgs/etr/template                          |   1 -
 srcpkgs/exec-on-git-staged/template           |   1 -
 srcpkgs/execline/template                     |   1 -
 srcpkgs/exiftool/template                     |   1 -
 srcpkgs/extra-cmake-modules/template          |   1 -
 srcpkgs/eyeD3/template                        |   1 -
 srcpkgs/faba-icon-theme/template              |   1 -
 srcpkgs/faenza-icon-theme/template            |   1 -
 srcpkgs/faience-icon-theme/template           |   1 -
 srcpkgs/fail2ban/template                     |   1 -
 srcpkgs/fake-hwclock/template                 |   1 -
 srcpkgs/fava/template                         |   1 -
 srcpkgs/fbmenugen/template                    |   1 -
 srcpkgs/ferm/template                         |   1 -
 srcpkgs/fff/template                          |   1 -
 srcpkgs/ffscreencast/template                 |   1 -
 srcpkgs/fgit/template                         |   1 -
 srcpkgs/fierce/template                       |   1 -
 srcpkgs/figlet-fonts/template                 |   1 -
 srcpkgs/fillets-ng/template                   |   1 -
 srcpkgs/flake8/template                       |   2 -
 srcpkgs/flare-engine/template                 |   1 -
 srcpkgs/flare-game/template                   |   1 -
 srcpkgs/flickcurl/template                    |   1 -
 srcpkgs/flightgear/template                   |   1 -
 srcpkgs/flinks/template                       |   1 -
 srcpkgs/flowblade/template                    |   1 -
 srcpkgs/foliate/template                      |   1 -
 srcpkgs/font-3270/template                    |   1 -
 srcpkgs/font-FixedMisc/template               |   1 -
 srcpkgs/font-Hasklig/template                 |   1 -
 srcpkgs/font-Siji/template                    |   1 -
 srcpkgs/font-adobe-100dpi/template            |   1 -
 srcpkgs/font-adobe-75dpi/template             |   1 -
 srcpkgs/font-adobe-source-code-pro/template   |   2 -
 srcpkgs/font-adobe-utopia-100dpi/template     |   1 -
 srcpkgs/font-adobe-utopia-75dpi/template      |   1 -
 srcpkgs/font-adobe-utopia-type1/template      |   1 -
 srcpkgs/font-alias/template                   |   1 -
 srcpkgs/font-awesome/template                 |   1 -
 srcpkgs/font-awesome5/template                |   1 -
 srcpkgs/font-b612/template                    |   1 -
 srcpkgs/font-bh-100dpi/template               |   1 -
 srcpkgs/font-bh-75dpi/template                |   1 -
 .../font-bh-lucidatypewriter-100dpi/template  |   1 -
 .../font-bh-lucidatypewriter-75dpi/template   |   1 -
 srcpkgs/font-bh-ttf/template                  |   1 -
 srcpkgs/font-bh-type1/template                |   1 -
 srcpkgs/font-bitstream-100dpi/template        |   1 -
 srcpkgs/font-bitstream-75dpi/template         |   1 -
 srcpkgs/font-bitstream-speedo/template        |   1 -
 srcpkgs/font-bitstream-type1/template         |   1 -
 srcpkgs/font-cozette/template                 |   1 -
 srcpkgs/font-cursor-misc/template             |   1 -
 srcpkgs/font-daewoo-misc/template             |   1 -
 srcpkgs/font-dec-misc/template                |   1 -
 srcpkgs/font-fantasque-sans-ttf/template      |   1 -
 srcpkgs/font-fira-otf/template                |   2 -
 srcpkgs/font-firacode/template                |   1 -
 srcpkgs/font-fontin/template                  |   1 -
 srcpkgs/font-hack-ttf/template                |   1 -
 srcpkgs/font-hanazono/template                |   1 -
 srcpkgs/font-hermit-otf/template              |   1 -
 srcpkgs/font-ibm-plex-ttf/template            |   1 -
 srcpkgs/font-ibm-type1/template               |   1 -
 srcpkgs/font-inconsolata-otf/template         |   1 -
 srcpkgs/font-ionicons-ttf/template            |   1 -
 srcpkgs/font-iosevka/template                 |   1 -
 srcpkgs/font-isas-misc/template               |   1 -
 srcpkgs/font-jis-misc/template                |   1 -
 srcpkgs/font-kakwafont/template               |   1 -
 srcpkgs/font-libertine-ttf/template           |   2 -
 srcpkgs/font-manjari/template                 |   1 -
 .../font-material-design-icons-ttf/template   |   1 -
 srcpkgs/font-micro-misc/template              |   1 -
 srcpkgs/font-misc-misc/template               |   1 -
 srcpkgs/font-mplus-ttf/template               |   1 -
 srcpkgs/font-mutt-misc/template               |   1 -
 srcpkgs/font-open-dyslexic-ttf/template       |   1 -
 srcpkgs/font-sarasa-gothic/template           |   1 -
 srcpkgs/font-schumacher-misc/template         |   1 -
 srcpkgs/font-sil-abyssinica/template          |   1 -
 srcpkgs/font-sil-alkalami/template            |   1 -
 srcpkgs/font-sil-andika/template              |   1 -
 srcpkgs/font-sil-annapurna/template           |   1 -
 srcpkgs/font-sil-awami-nastaliq/template      |   1 -
 srcpkgs/font-sil-charis/template              |   1 -
 srcpkgs/font-sil-doulos/template              |   1 -
 srcpkgs/font-sil-ezra/template                |   1 -
 srcpkgs/font-sil-galatia/template             |   1 -
 srcpkgs/font-sil-gentium/template             |   1 -
 srcpkgs/font-sil-harmattan/template           |   1 -
 srcpkgs/font-sil-lateef/template              |   1 -
 srcpkgs/font-sil-mingzat/template             |   1 -
 srcpkgs/font-sil-mondulkiri/template          |   1 -
 srcpkgs/font-sil-namdhinggo/template          |   1 -
 srcpkgs/font-sil-nuosu/template               |   1 -
 srcpkgs/font-sil-padauk/template              |   1 -
 srcpkgs/font-sil-scheherazade/template        |   1 -
 srcpkgs/font-sil-sophia-nubian/template       |   1 -
 srcpkgs/font-sil-tai-heritage-pro/template    |   1 -
 srcpkgs/font-sony-misc/template               |   1 -
 srcpkgs/font-spleen/template                  |   1 -
 srcpkgs/font-sun-misc/template                |   1 -
 srcpkgs/font-symbola/template                 |   1 -
 srcpkgs/font-tamsyn/template                  |   1 -
 srcpkgs/font-tamzen/template                  |   1 -
 srcpkgs/font-unifont-bdf/template             |   1 -
 srcpkgs/font-vazir/template                   |   1 -
 srcpkgs/font-vollkorn-ttf/template            |   1 -
 srcpkgs/font-weather-icons/template           |   1 -
 srcpkgs/fontconfig/template                   |   1 -
 srcpkgs/fonts-croscore-ttf/template           |   1 -
 srcpkgs/fonts-droid-ttf/template              |   1 -
 srcpkgs/fonts-nanum-ttf/template              |   1 -
 srcpkgs/fonts-roboto-ttf/template             |   1 -
 srcpkgs/fonttools/template                    |   1 -
 srcpkgs/foomatic-db-nonfree/template          |   1 -
 srcpkgs/foomatic-db/template                  |   1 -
 srcpkgs/foot/template                         |   1 -
 srcpkgs/fortune-mod-anarchism/template        |   1 -
 srcpkgs/fortune-mod-de/template               |   1 -
 srcpkgs/fortune-mod-void/template             |   1 -
 srcpkgs/freedroidRPG/template                 |   1 -
 srcpkgs/freefont-ttf/template                 |   1 -
 srcpkgs/freeorion/template                    |   1 -
 srcpkgs/freepats/template                     |   1 -
 srcpkgs/freeplane/template                    |   1 -
 srcpkgs/freerouting/template                  |   1 -
 srcpkgs/freetds/template                      |   1 -
 srcpkgs/fsharp/template                       |   1 -
 srcpkgs/gajim/template                        |   1 -
 srcpkgs/gallery-dl/template                   |   1 -
 srcpkgs/gandi-cli/template                    |   1 -
 srcpkgs/gccmakedep/template                   |   1 -
 srcpkgs/gcdemu/template                       |   1 -
 srcpkgs/gconfmm/template                      |   1 -
 srcpkgs/gcovr/template                        |   1 -
 srcpkgs/gdash/template                        |   1 -
 srcpkgs/gdown/template                        |   1 -
 srcpkgs/geda/template                         |   2 -
 srcpkgs/gef/template                          |   1 -
 srcpkgs/geoip-data/template                   |   1 -
 srcpkgs/gespeaker/template                    |   1 -
 srcpkgs/geteltorito/template                  |   1 -
 srcpkgs/getmail/template                      |   1 -
 srcpkgs/gettext/template                      |   1 -
 srcpkgs/ghc/template                          |   1 -
 srcpkgs/ghi/template                          |   1 -
 srcpkgs/giac/template                         |   1 -
 srcpkgs/gimme/template                        |   1 -
 srcpkgs/gist/template                         |   1 -
 srcpkgs/git-cal/template                      |   1 -
 srcpkgs/git-cola/template                     |   1 -
 srcpkgs/git-extras/template                   |   1 -
 srcpkgs/git-filter-repo/template              |   1 -
 srcpkgs/git-review/template                   |   1 -
 srcpkgs/git-revise/template                   |   1 -
 srcpkgs/git-secret/template                   |   1 -
 srcpkgs/git-toolbelt/template                 |   1 -
 srcpkgs/git/template                          |   5 -
 srcpkgs/gitflow/template                      |   1 -
 srcpkgs/gitolite/template                     |   1 -
 srcpkgs/glances/template                      |   1 -
 srcpkgs/glibc/template                        |   1 -
 srcpkgs/glibmm/template                       |   1 -
 srcpkgs/glm/template                          |   1 -
 srcpkgs/glog/template                         |   1 -
 srcpkgs/gmsh/template                         |   1 -
 srcpkgs/gmsl/template                         |   1 -
 srcpkgs/gmusicbrowser/template                |   1 -
 srcpkgs/gnome-backgrounds/template            |   1 -
 srcpkgs/gnome-colors-icon-theme/template      |   1 -
 srcpkgs/gnome-common/template                 |   1 -
 srcpkgs/gnome-doc-utils/template              |   1 -
 srcpkgs/gnome-getting-started-docs/template   |   1 -
 srcpkgs/gnome-icon-theme-extras/template      |   1 -
 srcpkgs/gnome-icon-theme-symbolic/template    |   1 -
 srcpkgs/gnome-icon-theme-xfce/template        |   1 -
 srcpkgs/gnome-icon-theme/template             |   1 -
 srcpkgs/gnome-js-common/template              |   1 -
 srcpkgs/gnome-mime-data/template              |   1 -
 srcpkgs/gnome-passwordsafe/template           |   1 -
 srcpkgs/gnome-shell-extensions/template       |   1 -
 srcpkgs/gnome-themes-extra/template           |   1 -
 srcpkgs/gnome-tweaks/template                 |   2 -
 srcpkgs/gnome-user-docs/template              |   1 -
 srcpkgs/gnome-video-effects/template          |   1 -
 srcpkgs/gns3-gui/template                     |   1 -
 srcpkgs/gns3-net-converter/template           |   1 -
 srcpkgs/gnupod/template                       |   1 -
 srcpkgs/gnuradio/template                     |   1 -
 srcpkgs/gnustep-gui/template                  |   1 -
 srcpkgs/gohufont/template                     |   1 -
 srcpkgs/google-cloud-sdk/template             |   1 -
 srcpkgs/google-fonts-ttf/template             |   1 -
 srcpkgs/gpodder/template                      |   1 -
 srcpkgs/gradle/template                       |   1 -
 srcpkgs/gramps/template                       |   1 -
 srcpkgs/grc/template                          |   1 -
 srcpkgs/greg/template                         |   1 -
 srcpkgs/greybird-themes/template              |   1 -
 srcpkgs/grip/template                         |   1 -
 srcpkgs/grml-zsh-config/template              |   1 -
 srcpkgs/groff/template                        |   1 -
 srcpkgs/grub-terminus/template                |   1 -
 srcpkgs/grub/template                         |   5 -
 srcpkgs/gscan2pdf/template                    |   1 -
 srcpkgs/gscreenshot/template                  |   1 -
 srcpkgs/gsfonts/template                      |   1 -
 srcpkgs/gtk-doc/template                      |   1 -
 srcpkgs/gtk-theme-united-gnome/template       |   1 -
 srcpkgs/guake/template                        |   1 -
 srcpkgs/gufw/template                         |   1 -
 srcpkgs/guilt/template                        |   1 -
 srcpkgs/gyazo/template                        |   1 -
 srcpkgs/hamster-applet/template               |   1 -
 srcpkgs/hashboot/template                     |   1 -
 srcpkgs/hedgewars/template                    |   1 -
 srcpkgs/hg-git/template                       |   1 -
 srcpkgs/hicolor-icon-theme/template           |   1 -
 srcpkgs/hiera/template                        |   1 -
 srcpkgs/hostfw/template                       |   1 -
 srcpkgs/hostmux/template                      |   1 -
 srcpkgs/hosts-update/template                 |   1 -
 srcpkgs/httpie/template                       |   2 -
 srcpkgs/hunspell-da_DK/template               |   1 -
 srcpkgs/hunspell-de_CH/template               |   1 -
 srcpkgs/hunspell-de_DE/template               |   1 -
 srcpkgs/hunspell-el_GR/template               |   1 -
 srcpkgs/hunspell-en_AU/template               |   1 -
 srcpkgs/hunspell-en_GB-ize/template           |   1 -
 srcpkgs/hunspell-en_US/template               |   1 -
 srcpkgs/hunspell-es_ES/template               |   1 -
 srcpkgs/hunspell-fr_FR/template               |   4 -
 srcpkgs/hunspell-hr_HR/template               |   1 -
 srcpkgs/hunspell-it_IT/template               |   1 -
 srcpkgs/hunspell-pl_PL/template               |   1 -
 srcpkgs/hunspell-pt_BR/template               |   1 -
 srcpkgs/hunspell-ru_RU-ieyo/template          |   1 -
 srcpkgs/hunspell-ru_RU/template               |   1 -
 srcpkgs/hunspell-sv_SE/template               |   1 -
 srcpkgs/hwids/template                        |   1 -
 srcpkgs/i3blocks-blocklets/template           |   1 -
 srcpkgs/i3lock-fancy/template                 |   1 -
 srcpkgs/iana-etc/template                     |   1 -
 srcpkgs/ibus-avro/template                    |   1 -
 srcpkgs/icdiff/template                       |   2 -
 srcpkgs/ice-ssb/template                      |   1 -
 srcpkgs/icecat/template                       |  93 -----------
 srcpkgs/icedtea-sound/template                |   1 -
 srcpkgs/icon-naming-utils/template            |   1 -
 srcpkgs/imgp/template                         |   1 -
 srcpkgs/indic-otf/template                    |   1 -
 srcpkgs/indicator-doom-cpu/template           |   1 -
 srcpkgs/iniparser/template                    |   2 -
 srcpkgs/intltool/template                     |   1 -
 srcpkgs/inxi/template                         |   1 -
 srcpkgs/io.elementary.stylesheet/template     |   1 -
 srcpkgs/ioprof/template                       |   1 -
 srcpkgs/iotop/template                        |   1 -
 srcpkgs/ipafont-fonts-otf/template            |   1 -
 srcpkgs/ipcalc/template                       |   1 -
 srcpkgs/ipw2100-firmware/template             |   1 -
 srcpkgs/ipw2200-firmware/template             |   1 -
 srcpkgs/iscan-data/template                   |   1 -
 srcpkgs/iso-codes/template                    |   1 -
 srcpkgs/itstool/template                      |   1 -
 srcpkgs/jadx/template                         |   1 -
 srcpkgs/java-commons-io/template              |   1 -
 srcpkgs/javahelp2/template                    |   1 -
 srcpkgs/jrnl/template                         |   1 -
 srcpkgs/kadu/template                         |   1 -
 srcpkgs/kaitai-struct-compiler/template       |   1 -
 srcpkgs/kapidox/template                      |   1 -
 srcpkgs/kbd/template                          |   1 -
 srcpkgs/key-mon/template                      |   1 -
 srcpkgs/keychain/template                     |   1 -
 srcpkgs/khal/template                         |   1 -
 srcpkgs/khard/template                        |   1 -
 srcpkgs/khmer-fonts-ttf/template              |   1 -
 srcpkgs/kicad-footprints/template             |   1 -
 srcpkgs/kicad-i18n/template                   |   1 -
 srcpkgs/kicad-packages3D/template             |   1 -
 srcpkgs/kicad-symbols/template                |   1 -
 srcpkgs/kicad-templates/template              |   1 -
 srcpkgs/kickassembler/template                |   1 -
 srcpkgs/kitty/template                        |   1 -
 srcpkgs/kobodeluxe/template                   |   1 -
 srcpkgs/kodi-binary-addons/template           |   1 -
 srcpkgs/kpcli/template                        |   1 -
 srcpkgs/kshdb/template                        |   1 -
 srcpkgs/kupfer/template                       |   1 -
 srcpkgs/laditools/template                    |   1 -
 srcpkgs/ladspa-sdk/template                   |   2 -
 srcpkgs/laptop-mode/template                  |   1 -
 srcpkgs/leiningen/template                    |   1 -
 srcpkgs/leocad/template                       |   1 -
 srcpkgs/lesspipe/template                     |   1 -
 srcpkgs/lfe/template                          |   1 -
 srcpkgs/lfm/template                          |   1 -
 srcpkgs/lftpfs/template                       |   1 -
 srcpkgs/libbytesize/template                  |   1 -
 srcpkgs/libcap-ng/template                    |   1 -
 srcpkgs/libchewing/template                   |   1 -
 srcpkgs/libclc-git/template                   |   1 -
 srcpkgs/libcppunit/template                   |   1 -
 srcpkgs/libdwarf/template                     |   1 -
 srcpkgs/libe-book/template                    |   1 -
 srcpkgs/liberation-fonts-ttf/template         |   1 -
 srcpkgs/libfreehand/template                  |   1 -
 srcpkgs/libgphoto2/template                   |   1 -
 srcpkgs/libinput-gestures/template            |   1 -
 srcpkgs/libmwaw/template                      |   1 -
 srcpkgs/libosmgpsmap/template                 |   1 -
 srcpkgs/libquvi-scripts/template              |   1 -
 srcpkgs/libreoffice/template                  |   2 -
 srcpkgs/libsearpc/template                    |   2 -
 srcpkgs/libsoxr/template                      |   1 -
 srcpkgs/libvpx5/template                      |   1 -
 srcpkgs/libwaylandpp/template                 |   1 -
 srcpkgs/lightdm-webkit2-greeter/template      |   1 -
 srcpkgs/lilypond-doc/template                 |   1 -
 srcpkgs/linux-firmware-dvb/template           |   1 -
 srcpkgs/linux-firmware/template               |   5 -
 srcpkgs/lltag/template                        |   1 -
 srcpkgs/llvm10/template                       |   1 -
 srcpkgs/llvm6.0/template                      |   1 -
 srcpkgs/llvm7/template                        |   1 -
 srcpkgs/llvm8/template                        |   1 -
 srcpkgs/llvm9/template                        |   1 -
 srcpkgs/lollypop/template                     |   1 -
 srcpkgs/lua54-MessagePack/template            |   1 -
 srcpkgs/lua54-stdlib-debug/template           |   1 -
 srcpkgs/lua54-stdlib-normalize/template       |   1 -
 srcpkgs/lua54-vicious/template                |   1 -
 srcpkgs/luarocks-lua53/template               |   4 -
 srcpkgs/lugaru/template                       |   1 -
 srcpkgs/lutris/template                       |   1 -
 srcpkgs/lxde-common/template                  |   1 -
 srcpkgs/lxde-icon-theme/template              |   1 -
 srcpkgs/lxdm-theme-vdojo/template             |   1 -
 srcpkgs/lxmenu-data/template                  |   1 -
 srcpkgs/lxqt-build-tools/template             |   1 -
 srcpkgs/magic-wormhole/template               |   1 -
 srcpkgs/mailpile/template                     |   1 -
 srcpkgs/make-ca/template                      |   1 -
 srcpkgs/makepasswd/template                   |   1 -
 srcpkgs/makeself/template                     |   1 -
 srcpkgs/man-pages-posix/template              |   1 -
 srcpkgs/man-pages/template                    |   2 -
 srcpkgs/mantablockscreen/template             |   1 -
 srcpkgs/manuskript/template                   |   1 -
 srcpkgs/mariadb/template                      |   1 -
 srcpkgs/marvin/template                       |   1 -
 srcpkgs/mate-applets/template                 |   1 -
 srcpkgs/mate-backgrounds/template             |   1 -
 srcpkgs/mate-common/template                  |   1 -
 srcpkgs/mate-icon-theme-faenza/template       |   1 -
 srcpkgs/mate-icon-theme/template              |   1 -
 srcpkgs/mate-menu/template                    |   1 -
 srcpkgs/mate-themes/template                  |   1 -
 srcpkgs/mate-tweak/template                   |   1 -
 srcpkgs/mate-user-guide/template              |   1 -
 srcpkgs/mathjax/template                      |   1 -
 srcpkgs/maxima/template                       |   3 -
 srcpkgs/mb2md/template                        |   1 -
 srcpkgs/mcomix/template                       |   1 -
 srcpkgs/mdds/template                         |   1 -
 srcpkgs/mdevd/template                        |   1 -
 srcpkgs/med/template                          |   1 -
 srcpkgs/media-player-info/template            |   1 -
 srcpkgs/meld/template                         |   1 -
 srcpkgs/menulibre/template                    |   1 -
 srcpkgs/menumaker/template                    |   1 -
 srcpkgs/menutray/template                     |   1 -
 srcpkgs/meson-cmake-wrapper/template          |   1 -
 srcpkgs/meson/template                        |   1 -
 srcpkgs/mime-types/template                   |   1 -
 srcpkgs/mimeo/template                        |   1 -
 srcpkgs/mimms/template                        |   1 -
 srcpkgs/minigalaxy/template                   |   1 -
 srcpkgs/miro-video-converter/template         |   1 -
 srcpkgs/mkchromecast/template                 |   1 -
 srcpkgs/mkfontscale/template                  |   1 -
 srcpkgs/mkinitcpio-encryptssh/template        |   1 -
 srcpkgs/mkinitcpio/template                   |   6 -
 srcpkgs/mlt/template                          |   3 -
 srcpkgs/mm-common/template                    |   1 -
 .../mobile-broadband-provider-info/template   |   1 -
 srcpkgs/mog/template                          |   1 -
 srcpkgs/mongoose/template                     |   1 -
 srcpkgs/mons/template                         |   1 -
 srcpkgs/mopidy-local/template                 |   1 -
 srcpkgs/mopidy-mpd/template                   |   1 -
 srcpkgs/mopidy/template                       |   1 -
 srcpkgs/mozo/template                         |   1 -
 srcpkgs/mpd-sima/template                     |   1 -
 srcpkgs/mps-youtube/template                  |   1 -
 srcpkgs/msbuild-bin/template                  |   1 -
 srcpkgs/msttcorefonts/template                |   1 -
 srcpkgs/mtm/template                          |   1 -
 srcpkgs/mu/template                           |   1 -
 srcpkgs/mugshot/template                      |   1 -
 srcpkgs/multibootusb/template                 |   1 -
 srcpkgs/mutagen/template                      |   2 -
 srcpkgs/mymcplus/template                     |   1 -
 srcpkgs/mypaint-brushes/template              |   1 -
 srcpkgs/mypaint-brushes1/template             |   1 -
 srcpkgs/myrepos/template                      |   1 -
 srcpkgs/nagstamon/template                    |   1 -
 srcpkgs/nautilus-python/template              |   1 -
 srcpkgs/ncurses/template                      |   2 -
 srcpkgs/neofetch/template                     |   1 -
 srcpkgs/neovim-remote/template                |   1 -
 srcpkgs/nerd-fonts/template                   |   3 -
 srcpkgs/netbsd-wtf/template                   |   1 -
 srcpkgs/netdata/template                      |   2 -
 srcpkgs/netsurf-buildsystem/template          |   1 -
 srcpkgs/nicotine+/template                    |   1 -
 srcpkgs/nmap/template                         |   1 -
 srcpkgs/notmuch/template                      |   3 -
 srcpkgs/noto-fonts-cjk/template               |   1 -
 srcpkgs/noto-fonts-emoji/template             |   1 -
 srcpkgs/noto-fonts-ttf/template               |   1 -
 srcpkgs/novaboot/template                     |   1 -
 srcpkgs/nsss/template                         |   1 -
 srcpkgs/ntp/template                          |   1 -
 srcpkgs/num-utils/template                    |   1 -
 srcpkgs/numix-themes/template                 |   1 -
 srcpkgs/nyx/template                          |   1 -
 srcpkgs/oblogout/template                     |   1 -
 srcpkgs/obmenu-generator/template             |   1 -
 srcpkgs/obmenu/template                       |   1 -
 srcpkgs/offlineimap/template                  |   1 -
 srcpkgs/ohsnap-font/template                  |   1 -
 srcpkgs/ok.sh/template                        |   1 -
 srcpkgs/oniguruma/template                    |   1 -
 srcpkgs/onionshare/template                   |   1 -
 srcpkgs/opencl-clhpp/template                 |   1 -
 srcpkgs/opencl2-headers/template              |   1 -
 srcpkgs/openjdk8/template                     |   4 -
 srcpkgs/openlierox/template                   |   1 -
 srcpkgs/openra/template                       |   1 -
 srcpkgs/openresolv/template                   |   1 -
 srcpkgs/opensonic/template                    |   1 -
 srcpkgs/opensurge/template                    |   1 -
 srcpkgs/opentmpfiles/template                 |   1 -
 srcpkgs/openttd/template                      |   1 -
 srcpkgs/opentyrian/template                   |   1 -
 srcpkgs/orca/template                         |   1 -
 srcpkgs/orjail/template                       |   1 -
 srcpkgs/osinfo-db/template                    |   1 -
 srcpkgs/othman/template                       |   1 -
 srcpkgs/overpass-otf/template                 |   1 -
 srcpkgs/oxygen-icons5/template                |   1 -
 srcpkgs/pam-base/template                     |   1 -
 srcpkgs/pantalaimon/template                  |   1 -
 srcpkgs/paper-gtk-theme/template              |   1 -
 srcpkgs/paper-icon-theme/template             |   1 -
 srcpkgs/papirus-folders/template              |   1 -
 srcpkgs/papirus-icon-theme/template           |   1 -
 srcpkgs/parallel/template                     |   1 -
 srcpkgs/pass-git-helper/template              |   1 -
 srcpkgs/pass-import/template                  |   1 -
 srcpkgs/pass-otp/template                     |   1 -
 srcpkgs/pass-update/template                  |   1 -
 srcpkgs/pass/template                         |   1 -
 srcpkgs/pastebinit/template                   |   1 -
 srcpkgs/pcb/template                          |   1 -
 srcpkgs/pdd/template                          |   1 -
 srcpkgs/pdf.js/template                       |   1 -
 srcpkgs/peframe/template                      |   1 -
 srcpkgs/pelican/template                      |   1 -
 srcpkgs/percona-toolkit/template              |   1 -
 srcpkgs/perl-ACL-Lite/template                |   1 -
 srcpkgs/perl-AWS-Signature4/template          |   1 -
 srcpkgs/perl-Algorithm-Diff/template          |   1 -
 srcpkgs/perl-Alien-Build/template             |   1 -
 srcpkgs/perl-Alien-wxWidgets/template         |   1 -
 srcpkgs/perl-Alien/template                   |   1 -
 srcpkgs/perl-AnyEvent-I3/template             |   1 -
 srcpkgs/perl-AnyEvent/template                |   1 -
 .../perl-Apache-LogFormat-Compiler/template   |   1 -
 srcpkgs/perl-AppConfig/template               |   1 -
 srcpkgs/perl-Archive-Extract/template         |   1 -
 srcpkgs/perl-Archive-Zip/template             |   1 -
 srcpkgs/perl-Authen-SASL/template             |   1 -
 srcpkgs/perl-B-Hooks-EndOfScope/template      |   1 -
 srcpkgs/perl-Business-ISBN-Data/template      |   1 -
 srcpkgs/perl-Business-ISBN/template           |   1 -
 srcpkgs/perl-Business-ISMN/template           |   1 -
 srcpkgs/perl-Business-ISSN/template           |   1 -
 srcpkgs/perl-CGI/template                     |   1 -
 srcpkgs/perl-CPAN-Changes/template            |   1 -
 srcpkgs/perl-CPAN-Common-Index/template       |   1 -
 srcpkgs/perl-CPAN-DistnameInfo/template       |   1 -
 srcpkgs/perl-CPAN-Meta-Check/template         |   1 -
 srcpkgs/perl-Canary-Stability/template        |   1 -
 srcpkgs/perl-Capture-Tiny/template            |   1 -
 srcpkgs/perl-Carp-Clan/template               |   1 -
 srcpkgs/perl-Class-Accessor/template          |   1 -
 srcpkgs/perl-Class-Data-Inheritable/template  |   1 -
 srcpkgs/perl-Class-Factory-Util/template      |   1 -
 srcpkgs/perl-Class-Inspector/template         |   1 -
 srcpkgs/perl-Class-Load/template              |   1 -
 srcpkgs/perl-Class-Method-Modifiers/template  |   1 -
 srcpkgs/perl-Class-Singleton/template         |   1 -
 srcpkgs/perl-Class-Tiny/template              |   1 -
 srcpkgs/perl-Clipboard/template               |   1 -
 srcpkgs/perl-Clone-Choose/template            |   1 -
 srcpkgs/perl-Clone-PP/template                |   1 -
 srcpkgs/perl-Config-AutoConf/template         |   1 -
 srcpkgs/perl-Config-General/template          |   1 -
 .../perl-Config-INI-Reader-Ordered/template   |   1 -
 srcpkgs/perl-Config-INI/template              |   1 -
 srcpkgs/perl-Config-IniFiles/template         |   1 -
 srcpkgs/perl-Config-Simple/template           |   1 -
 srcpkgs/perl-Config-Tiny/template             |   1 -
 srcpkgs/perl-Convert-BinHex/template          |   1 -
 srcpkgs/perl-Cookie-Baker/template            |   1 -
 srcpkgs/perl-Crypt-Blowfish_PP/template       |   1 -
 srcpkgs/perl-Crypt-CBC/template               |   1 -
 srcpkgs/perl-Crypt-DES_EDE3/template          |   1 -
 srcpkgs/perl-Crypt-DH/template                |   1 -
 srcpkgs/perl-Crypt-OpenSSL-Guess/template     |   1 -
 srcpkgs/perl-Crypt-PasswdMD5/template         |   1 -
 srcpkgs/perl-Crypt-RC4/template               |   1 -
 srcpkgs/perl-Danga-Socket/template            |   1 -
 srcpkgs/perl-Data-Compare/template            |   1 -
 srcpkgs/perl-Data-Dump/template               |   1 -
 srcpkgs/perl-Data-Dx/template                 |   1 -
 srcpkgs/perl-Data-OptList/template            |   1 -
 srcpkgs/perl-Data-Section-Simple/template     |   1 -
 srcpkgs/perl-Data-Uniqid/template             |   1 -
 srcpkgs/perl-Data-Validate-IP/template        |   1 -
 srcpkgs/perl-Date-Calc/template               |   1 -
 srcpkgs/perl-Date-Manip/template              |   1 -
 .../perl-DateTime-Calendar-Julian/template    |   1 -
 srcpkgs/perl-DateTime-Format-Builder/template |   1 -
 .../perl-DateTime-Format-Strptime/template    |   1 -
 srcpkgs/perl-DateTime-Locale/template         |   1 -
 srcpkgs/perl-DateTime-TimeZone/template       |   1 -
 srcpkgs/perl-Devel-CheckLib/template          |   1 -
 srcpkgs/perl-Devel-GlobalDestruction/template |   1 -
 srcpkgs/perl-Devel-StackTrace-AsHTML/template |   1 -
 srcpkgs/perl-Devel-StackTrace/template        |   1 -
 srcpkgs/perl-Devel-Symdump/template           |   1 -
 srcpkgs/perl-Digest-HMAC/template             |   1 -
 srcpkgs/perl-Digest-Perl-MD5/template         |   1 -
 srcpkgs/perl-Dist-CheckConflicts/template     |   1 -
 srcpkgs/perl-Email-Date-Format/template       |   1 -
 srcpkgs/perl-Email-FolderType/template        |   1 -
 srcpkgs/perl-Email-LocalDelivery/template     |   1 -
 srcpkgs/perl-Email-MIME-ContentType/template  |   1 -
 srcpkgs/perl-Email-MIME-Encodings/template    |   1 -
 srcpkgs/perl-Email-MIME/template              |   1 -
 srcpkgs/perl-Email-MessageID/template         |   1 -
 srcpkgs/perl-Email-Simple/template            |   1 -
 srcpkgs/perl-Encode-Locale/template           |   1 -
 srcpkgs/perl-Eval-Closure/template            |   1 -
 srcpkgs/perl-Exception-Class/template         |   1 -
 srcpkgs/perl-Expect/template                  |   1 -
 srcpkgs/perl-Exporter-Tiny/template           |   1 -
 srcpkgs/perl-ExtUtils-Config/template         |   1 -
 srcpkgs/perl-ExtUtils-CppGuess/template       |   1 -
 srcpkgs/perl-ExtUtils-Depends/template        |   1 -
 srcpkgs/perl-ExtUtils-Helpers/template        |   1 -
 srcpkgs/perl-ExtUtils-InstallPaths/template   |   1 -
 srcpkgs/perl-ExtUtils-LibBuilder/template     |   1 -
 .../perl-ExtUtils-MakeMaker-CPANfile/template |   1 -
 srcpkgs/perl-ExtUtils-PkgConfig/template      |   1 -
 srcpkgs/perl-ExtUtils-XSpp/template           |   1 -
 srcpkgs/perl-FFI-CheckLib/template            |   1 -
 srcpkgs/perl-File-BaseDir/template            |   1 -
 srcpkgs/perl-File-Copy-Recursive/template     |   1 -
 srcpkgs/perl-File-DesktopEntry/template       |   1 -
 srcpkgs/perl-File-Find-Rule/template          |   1 -
 srcpkgs/perl-File-Flock-Retry/template        |   1 -
 srcpkgs/perl-File-HomeDir/template            |   1 -
 srcpkgs/perl-File-KeePass/template            |   1 -
 srcpkgs/perl-File-Listing/template            |   1 -
 srcpkgs/perl-File-MimeInfo/template           |   1 -
 srcpkgs/perl-File-Next/template               |   1 -
 srcpkgs/perl-File-Path-Expand/template        |   1 -
 srcpkgs/perl-File-Remove/template             |   1 -
 srcpkgs/perl-File-Rename/template             |   1 -
 srcpkgs/perl-File-ShareDir-Install/template   |   1 -
 srcpkgs/perl-File-ShareDir/template           |   1 -
 srcpkgs/perl-File-Slurp-Tiny/template         |   1 -
 srcpkgs/perl-File-Slurp/template              |   1 -
 srcpkgs/perl-File-Slurper/template            |   1 -
 srcpkgs/perl-File-Which/template              |   1 -
 srcpkgs/perl-File-Write-Rotate/template       |   1 -
 srcpkgs/perl-File-chdir/template              |   1 -
 srcpkgs/perl-File-pushd/template              |   1 -
 srcpkgs/perl-Filesys-Notify-Simple/template   |   1 -
 srcpkgs/perl-Font-TTF/template                |   1 -
 srcpkgs/perl-Getopt-Compact/template          |   1 -
 srcpkgs/perl-GooCanvas2/template              |   1 -
 srcpkgs/perl-Graphics-ColorUtils/template     |   1 -
 srcpkgs/perl-Gtk2-Ex-Simple-List/template     |   1 -
 srcpkgs/perl-Gtk3-SimpleList/template         |   1 -
 srcpkgs/perl-Gtk3/template                    |   1 -
 srcpkgs/perl-HTML-Form/template               |   1 -
 srcpkgs/perl-HTML-Tagset/template             |   1 -
 srcpkgs/perl-HTML-Tree/template               |   1 -
 srcpkgs/perl-HTTP-Cookies/template            |   1 -
 srcpkgs/perl-HTTP-Daemon/template             |   1 -
 srcpkgs/perl-HTTP-Date/template               |   1 -
 srcpkgs/perl-HTTP-Entity-Parser/template      |   1 -
 srcpkgs/perl-HTTP-Headers-Fast/template       |   1 -
 srcpkgs/perl-HTTP-Message/template            |   1 -
 srcpkgs/perl-HTTP-MultiPartParser/template    |   1 -
 srcpkgs/perl-HTTP-Negotiate/template          |   1 -
 srcpkgs/perl-HTTP-Response-Encoding/template  |   1 -
 srcpkgs/perl-HTTP-Server-Simple/template      |   1 -
 srcpkgs/perl-HTTP-Tinyish/template            |   1 -
 srcpkgs/perl-Hash-Merge/template              |   1 -
 srcpkgs/perl-Hash-MultiValue/template         |   1 -
 srcpkgs/perl-IO-CaptureOutput/template        |   1 -
 srcpkgs/perl-IO-HTML/template                 |   1 -
 srcpkgs/perl-IO-SessionData/template          |   1 -
 srcpkgs/perl-IO-Socket-INET6/template         |   1 -
 srcpkgs/perl-IO-Socket-SSL/template           |   1 -
 srcpkgs/perl-IO-Socket-Socks/template         |   1 -
 srcpkgs/perl-IO-String/template               |   1 -
 srcpkgs/perl-IO-Stty/template                 |   1 -
 srcpkgs/perl-IO-stringy/template              |   1 -
 srcpkgs/perl-IPC-Run/template                 |   1 -
 srcpkgs/perl-IPC-Run3/template                |   1 -
 srcpkgs/perl-IPC-System-Simple/template       |   1 -
 srcpkgs/perl-Importer/template                |   1 -
 srcpkgs/perl-Inline-C/template                |   1 -
 srcpkgs/perl-Inline/template                  |   1 -
 srcpkgs/perl-JSON-MaybeXS/template            |   1 -
 srcpkgs/perl-JSON/template                    |   1 -
 srcpkgs/perl-Keyword-Declare/template         |   1 -
 srcpkgs/perl-Keyword-Simple/template          |   1 -
 srcpkgs/perl-LWP-MediaTypes/template          |   1 -
 srcpkgs/perl-LWP-Protocol-https/template      |   1 -
 srcpkgs/perl-LWP-Protocol-socks/template      |   1 -
 srcpkgs/perl-LWP/template                     |   1 -
 srcpkgs/perl-Lingua-Translit/template         |   1 -
 srcpkgs/perl-Linux-DesktopFiles/template      |   1 -
 srcpkgs/perl-Linux-Distribution/template      |   1 -
 srcpkgs/perl-List-AllUtils/template           |   1 -
 srcpkgs/perl-List-MoreUtils/template          |   1 -
 srcpkgs/perl-List-SomeUtils/template          |   1 -
 srcpkgs/perl-List-UtilsBy/template            |   1 -
 srcpkgs/perl-Locale-PO/template               |   1 -
 srcpkgs/perl-Log-Log4perl/template            |   1 -
 srcpkgs/perl-MIME-Charset/template            |   1 -
 srcpkgs/perl-MIME-Types/template              |   1 -
 srcpkgs/perl-MIME-tools/template              |   1 -
 srcpkgs/perl-MP3-Info/template                |   1 -
 srcpkgs/perl-MP3-Tag/template                 |   1 -
 srcpkgs/perl-MRO-Compat/template              |   1 -
 srcpkgs/perl-Mail-Box/template                |   1 -
 srcpkgs/perl-Mail-DKIM/template               |   1 -
 srcpkgs/perl-Mail-Message/template            |   1 -
 srcpkgs/perl-Mail-POP3Client/template         |   1 -
 srcpkgs/perl-Mail-Sendmail/template           |   1 -
 srcpkgs/perl-Mail-Transport/template          |   1 -
 srcpkgs/perl-MailTools/template               |   1 -
 srcpkgs/perl-Menlo-Legacy/template            |   1 -
 srcpkgs/perl-Menlo/template                   |   1 -
 srcpkgs/perl-Mixin-Linewise/template          |   1 -
 srcpkgs/perl-Module-Build-Tiny/template       |   1 -
 srcpkgs/perl-Module-Build/template            |   1 -
 srcpkgs/perl-Module-CPANfile/template         |   1 -
 srcpkgs/perl-Module-Find/template             |   1 -
 srcpkgs/perl-Module-Implementation/template   |   1 -
 srcpkgs/perl-Module-Manifest/template         |   1 -
 srcpkgs/perl-Module-Pluggable/template        |   1 -
 srcpkgs/perl-Module-Runtime/template          |   1 -
 srcpkgs/perl-Mojolicious/template             |   1 -
 srcpkgs/perl-Monkey-Patch-Action/template     |   1 -
 srcpkgs/perl-Moo/template                     |   1 -
 srcpkgs/perl-Mozilla-CA/template              |   1 -
 srcpkgs/perl-Net-DNS-Resolver-Mock/template   |   1 -
 srcpkgs/perl-Net-DNS/template                 |   1 -
 srcpkgs/perl-Net-HTTP/template                |   1 -
 srcpkgs/perl-Net-IMAP-Client/template         |   1 -
 srcpkgs/perl-Net-IMAP-Simple/template         |   1 -
 srcpkgs/perl-Net-MPD/template                 |   1 -
 srcpkgs/perl-Net-OpenSSH/template             |   1 -
 srcpkgs/perl-Net-SFTP-Foreign/template        |   1 -
 srcpkgs/perl-Net-SMTP-SSL/template            |   1 -
 srcpkgs/perl-Net-Server/template              |   1 -
 srcpkgs/perl-Number-Compare/template          |   1 -
 srcpkgs/perl-Number-Format/template           |   1 -
 srcpkgs/perl-OLE-Storage_Lite/template        |   1 -
 srcpkgs/perl-Object-MultiType/template        |   1 -
 srcpkgs/perl-Object-Realize-Later/template    |   1 -
 srcpkgs/perl-PDF-API2/template                |   1 -
 srcpkgs/perl-POSIX-strftime-Compiler/template |   1 -
 srcpkgs/perl-PPR/template                     |   1 -
 .../perl-Package-DeprecationManager/template  |   1 -
 srcpkgs/perl-Package-Stash/template           |   1 -
 srcpkgs/perl-Parallel-ForkManager/template    |   1 -
 .../perl-Params-ValidationCompiler/template   |   1 -
 srcpkgs/perl-Parse-CPAN-Meta/template         |   1 -
 srcpkgs/perl-Parse-PMFile/template            |   1 -
 srcpkgs/perl-Parse-RecDescent/template        |   1 -
 srcpkgs/perl-Parse-Yapp/template              |   1 -
 srcpkgs/perl-PatchReader/template             |   1 -
 srcpkgs/perl-Path-Tiny/template               |   1 -
 srcpkgs/perl-Pegex/template                   |   1 -
 .../perl-Plack-Middleware-Deflater/template   |   1 -
 .../template                                  |   1 -
 srcpkgs/perl-Plack/template                   |   1 -
 srcpkgs/perl-Pod-Coverage/template            |   1 -
 srcpkgs/perl-Pod-Simple-Text-Termcap/template |   1 -
 srcpkgs/perl-Probe-Perl/template              |   1 -
 srcpkgs/perl-Proc-Daemontools/template        |   1 -
 srcpkgs/perl-Proc-Govern/template             |   1 -
 srcpkgs/perl-Proc-PID-File/template           |   1 -
 srcpkgs/perl-Readonly/template                |   1 -
 srcpkgs/perl-Ref-Util/template                |   1 -
 srcpkgs/perl-Regexp-Common/template           |   1 -
 srcpkgs/perl-Regexp-Grammars/template         |   1 -
 srcpkgs/perl-Reply/template                   |   1 -
 srcpkgs/perl-Role-Tiny/template               |   1 -
 srcpkgs/perl-SGMLSpm/template                 |   1 -
 srcpkgs/perl-SOAP-Lite/template               |   1 -
 srcpkgs/perl-SUPER/template                   |   1 -
 srcpkgs/perl-Scope-Guard/template             |   1 -
 srcpkgs/perl-Set-IntSpan/template             |   1 -
 srcpkgs/perl-Sort-Naturally/template          |   1 -
 srcpkgs/perl-Sort-Versions/template           |   1 -
 srcpkgs/perl-Specio/template                  |   1 -
 srcpkgs/perl-Spiffy/template                  |   1 -
 srcpkgs/perl-Spreadsheet-ParseExcel/template  |   1 -
 srcpkgs/perl-Spreadsheet-ParseXLSX/template   |   1 -
 srcpkgs/perl-Stow/template                    |   1 -
 srcpkgs/perl-Stream-Buffered/template         |   1 -
 srcpkgs/perl-String-Escape/template           |   1 -
 srcpkgs/perl-String-ShellQuote/template       |   1 -
 srcpkgs/perl-Sub-Delete/template              |   1 -
 .../perl-Sub-Exporter-Progressive/template    |   1 -
 srcpkgs/perl-Sub-Exporter/template            |   1 -
 srcpkgs/perl-Sub-Info/template                |   1 -
 srcpkgs/perl-Sub-Install/template             |   1 -
 srcpkgs/perl-Sub-Quote/template               |   1 -
 srcpkgs/perl-Sub-Uplevel/template             |   1 -
 srcpkgs/perl-Svsh/template                    |   1 -
 srcpkgs/perl-Sys-Syscall/template             |   1 -
 srcpkgs/perl-Term-Animation/template          |   1 -
 srcpkgs/perl-Term-ExtendedColor/template      |   1 -
 srcpkgs/perl-Term-ShellUI/template            |   1 -
 srcpkgs/perl-Term-Table/template              |   1 -
 srcpkgs/perl-Test-Base/template               |   1 -
 srcpkgs/perl-Test-CPAN-Meta/template          |   1 -
 srcpkgs/perl-Test-Class/template              |   1 -
 srcpkgs/perl-Test-Cmd/template                |   1 -
 srcpkgs/perl-Test-Command/template            |   1 -
 srcpkgs/perl-Test-Deep/template               |   1 -
 srcpkgs/perl-Test-Differences/template        |   1 -
 srcpkgs/perl-Test-DistManifest/template       |   1 -
 srcpkgs/perl-Test-Exception/template          |   1 -
 srcpkgs/perl-Test-FailWarnings/template       |   1 -
 srcpkgs/perl-Test-Fatal/template              |   1 -
 srcpkgs/perl-Test-File-ShareDir/template      |   1 -
 srcpkgs/perl-Test-File/template               |   1 -
 srcpkgs/perl-Test-HTTP-Server-Simple/template |   1 -
 srcpkgs/perl-Test-Inter/template              |   1 -
 srcpkgs/perl-Test-MockModule/template         |   1 -
 srcpkgs/perl-Test-Most/template               |   1 -
 srcpkgs/perl-Test-Needs/template              |   1 -
 srcpkgs/perl-Test-NoWarnings/template         |   1 -
 srcpkgs/perl-Test-Output/template             |   1 -
 srcpkgs/perl-Test-Pod-Coverage/template       |   1 -
 srcpkgs/perl-Test-Pod/template                |   1 -
 srcpkgs/perl-Test-Requires/template           |   1 -
 srcpkgs/perl-Test-RequiresInternet/template   |   1 -
 srcpkgs/perl-Test-Script/template             |   1 -
 srcpkgs/perl-Test-SharedFork/template         |   1 -
 srcpkgs/perl-Test-Simple/template             |   1 -
 srcpkgs/perl-Test-Subroutines/template        |   1 -
 srcpkgs/perl-Test-TCP/template                |   1 -
 srcpkgs/perl-Test-Time/template               |   1 -
 srcpkgs/perl-Test-Trap/template               |   1 -
 srcpkgs/perl-Test-UseAllModules/template      |   1 -
 srcpkgs/perl-Test-Warn/template               |   1 -
 srcpkgs/perl-Test-Warnings/template           |   1 -
 srcpkgs/perl-Test-Weaken/template             |   1 -
 srcpkgs/perl-Test-Without-Module/template     |   1 -
 srcpkgs/perl-Test-YAML/template               |   1 -
 srcpkgs/perl-Test-utf8/template               |   1 -
 srcpkgs/perl-Test2-Plugin-NoWarnings/template |   1 -
 srcpkgs/perl-Test2-Suite/template             |   1 -
 srcpkgs/perl-Text-ASCIITable/template         |   1 -
 srcpkgs/perl-Text-Aligner/template            |   1 -
 srcpkgs/perl-Text-Autoformat/template         |   1 -
 srcpkgs/perl-Text-CSV/template                |   1 -
 srcpkgs/perl-Text-Diff/template               |   1 -
 srcpkgs/perl-Text-Glob/template               |   1 -
 srcpkgs/perl-Text-Markdown/template           |   1 -
 srcpkgs/perl-Text-Reform/template             |   1 -
 srcpkgs/perl-Text-Roman/template              |   1 -
 srcpkgs/perl-Text-Table/template              |   1 -
 srcpkgs/perl-Text-Unidecode/template          |   1 -
 srcpkgs/perl-Text-WrapI18N/template           |   1 -
 srcpkgs/perl-Text-XLogfile/template           |   1 -
 srcpkgs/perl-Tie-Cycle/template               |   1 -
 srcpkgs/perl-Tie-Handle-Offset/template       |   1 -
 srcpkgs/perl-Tie-IxHash/template              |   1 -
 srcpkgs/perl-Time-Duration/template           |   1 -
 srcpkgs/perl-Time-modules/template            |   1 -
 srcpkgs/perl-TimeDate/template                |   1 -
 srcpkgs/perl-Tree-DAG_Node/template           |   1 -
 srcpkgs/perl-Try-Tiny/template                |   1 -
 srcpkgs/perl-Types-Serialiser/template        |   1 -
 srcpkgs/perl-URI/template                     |   1 -
 srcpkgs/perl-Unicode-Tussle/template          |   1 -
 srcpkgs/perl-Unix-Uptime/template             |   1 -
 srcpkgs/perl-User-Identity/template           |   1 -
 srcpkgs/perl-WL/template                      |   1 -
 srcpkgs/perl-WWW-Form-UrlEncoded/template     |   1 -
 srcpkgs/perl-WWW-Mechanize/template           |   1 -
 srcpkgs/perl-WWW-RobotRules/template          |   1 -
 srcpkgs/perl-WebService-MusicBrainz/template  |   1 -
 srcpkgs/perl-X11-Protocol-Other/template      |   1 -
 srcpkgs/perl-X11-Protocol/template            |   1 -
 srcpkgs/perl-XML-LibXML-PrettyPrint/template  |   1 -
 srcpkgs/perl-XML-LibXML-Simple/template       |   1 -
 srcpkgs/perl-XML-NamespaceSupport/template    |   1 -
 srcpkgs/perl-XML-Parser-Lite/template         |   1 -
 srcpkgs/perl-XML-SAX-Base/template            |   1 -
 srcpkgs/perl-XML-SAX/template                 |   1 -
 srcpkgs/perl-XML-Simple/template              |   1 -
 srcpkgs/perl-XML-Smart/template               |   1 -
 srcpkgs/perl-XML-Twig/template                |   1 -
 srcpkgs/perl-XML-Writer/template              |   1 -
 srcpkgs/perl-XML-XPath/template               |   1 -
 srcpkgs/perl-YAML-Tiny/template               |   1 -
 srcpkgs/perl-YAML/template                    |   1 -
 srcpkgs/perl-common-sense/template            |   1 -
 srcpkgs/perl-local-lib/template               |   1 -
 srcpkgs/perl-namespace-autoclean/template     |   1 -
 srcpkgs/perl-namespace-clean/template         |   1 -
 srcpkgs/perl-rename/template                  |   1 -
 srcpkgs/perl-strictures/template              |   1 -
 srcpkgs/perl-tainting/template                |   1 -
 srcpkgs/perltidy/template                     |   1 -
 srcpkgs/persepolis/template                   |   1 -
 srcpkgs/peru/template                         |   1 -
 srcpkgs/pex/template                          |   1 -
 srcpkgs/pfetch/template                       |   1 -
 srcpkgs/pgcli/template                        |   1 -
 srcpkgs/phoronix-test-suite/template          |   1 -
 srcpkgs/phpMyAdmin/template                   |   1 -
 srcpkgs/picard/template                       |   1 -
 srcpkgs/pingus/template                       |   1 -
 srcpkgs/pioneer/template                      |   1 -
 srcpkgs/piper/template                        |   1 -
 srcpkgs/pipewire/template                     |   1 -
 srcpkgs/plantuml/template                     |   1 -
 srcpkgs/plasma-workspace-wallpapers/template  |   1 -
 srcpkgs/plata-theme/template                  |   1 -
 srcpkgs/platformio/template                   |   1 -
 srcpkgs/playitslowly/template                 |   1 -
 srcpkgs/plymouth/template                     |   1 -
 srcpkgs/pmbootstrap/template                  |   1 -
 srcpkgs/po4a/template                         |   1 -
 srcpkgs/pockyt/template                       |   1 -
 srcpkgs/podman-compose/template               |   1 -
 srcpkgs/polysh/template                       |   1 -
 srcpkgs/pony-stable/template                  |   1 -
 srcpkgs/ponyc/template                        |   1 -
 srcpkgs/ponysay/template                      |   1 -
 srcpkgs/poppler-data/template                 |   1 -
 srcpkgs/postgresql/template                   |   1 -
 srcpkgs/postgresql12/template                 |   1 -
 srcpkgs/printrun/template                     |   1 -
 srcpkgs/pritunl-client/template               |   1 -
 srcpkgs/profile-cleaner/template              |   1 -
 srcpkgs/protonvpn-cli/template                |   1 -
 srcpkgs/pslist/template                       |   1 -
 srcpkgs/psuinfo/template                      |   1 -
 srcpkgs/public-inbox/template                 |   1 -
 srcpkgs/pulsemixer/template                   |   1 -
 srcpkgs/puppet/template                       |   1 -
 srcpkgs/py3status/template                    |   1 -
 srcpkgs/pychess/template                      |   1 -
 srcpkgs/pycp/template                         |   1 -
 srcpkgs/pylint/template                       |   1 -
 srcpkgs/pyradio/template                      |   1 -
 srcpkgs/pysolfc-cardsets/template             |   1 -
 srcpkgs/pysolfc/template                      |   1 -
 srcpkgs/pystopwatch/template                  |   1 -
 srcpkgs/python-Arrow/template                 |   2 -
 srcpkgs/python-Babel/template                 |   2 -
 srcpkgs/python-BeautifulSoup4/template        |   2 -
 srcpkgs/python-Cheroot/template               |   2 -
 srcpkgs/python-CherryPy/template              |   1 -
 srcpkgs/python-Django/template                |   1 -
 srcpkgs/python-Flask-Assets/template          |   2 -
 srcpkgs/python-Flask-Babel/template           |   2 -
 srcpkgs/python-Flask-Login/template           |   2 -
 srcpkgs/python-Flask-OAuthlib/template        |   2 -
 srcpkgs/python-Flask-Script/template          |   2 -
 srcpkgs/python-Flask-WTF/template             |   2 -
 srcpkgs/python-Flask/template                 |   2 -
 srcpkgs/python-GitPython/template             |   2 -
 srcpkgs/python-IPy/template                   |   2 -
 srcpkgs/python-Jinja2/template                |   2 -
 srcpkgs/python-Mako/template                  |   2 -
 srcpkgs/python-Markdown/template              |   1 -
 srcpkgs/python-Markups/template               |   2 -
 srcpkgs/python-MiniMock/template              |   2 -
 srcpkgs/python-PyHamcrest/template            |   2 -
 srcpkgs/python-PyOpenGL/template              |   2 -
 srcpkgs/python-Pygments/template              |   2 -
 srcpkgs/python-Pyro4/template                 |   2 -
 srcpkgs/python-SPARQLWrapper/template         |   2 -
 srcpkgs/python-Unidecode/template             |   2 -
 srcpkgs/python-WTForms/template               |   2 -
 srcpkgs/python-Werkzeug/template              |   2 -
 srcpkgs/python-Whoosh/template                |   2 -
 srcpkgs/python-Yapsy/template                 |   2 -
 srcpkgs/python-aalib/template                 |   2 -
 srcpkgs/python-alabaster/template             |   2 -
 srcpkgs/python-alembic/template               |   2 -
 srcpkgs/python-ansicolor/template             |   2 -
 srcpkgs/python-appdirs/template               |   2 -
 srcpkgs/python-argh/template                  |   2 -
 srcpkgs/python-arxiv2bib/template             |   2 -
 srcpkgs/python-asn1crypto/template            |   2 -
 srcpkgs/python-astroid/template               |   1 -
 srcpkgs/python-atomicwrites/template          |   2 -
 srcpkgs/python-atspi/template                 |   1 -
 srcpkgs/python-attrs/template                 |   2 -
 srcpkgs/python-audioread/template             |   2 -
 srcpkgs/python-automat/template               |   2 -
 srcpkgs/python-axolotl/template               |   2 -
 srcpkgs/python-b2sdk/template                 |   1 -
 srcpkgs/python-babelfish/template             |   2 -
 srcpkgs/python-backcall/template              |   2 -
 .../python-backports.configparser/template    |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 srcpkgs/python-backports/template             |   1 -
 srcpkgs/python-backports_abc/template         |   1 -
 srcpkgs/python-bibtexparser/template          |   2 -
 srcpkgs/python-bitbucket-api/template         |   2 -
 srcpkgs/python-bleach/template                |   2 -
 srcpkgs/python-blessings/template             |   2 -
 srcpkgs/python-blinker/template               |   2 -
 srcpkgs/python-boto/template                  |   2 -
 srcpkgs/python-botocore/template              |   2 -
 srcpkgs/python-bottle/template                |   2 -
 srcpkgs/python-cached-property/template       |   2 -
 srcpkgs/python-cairocffi/template             |   2 -
 srcpkgs/python-chardet/template               |   2 -
 srcpkgs/python-chroot/template                |   2 -
 srcpkgs/python-cliapp/template                |   1 -
 srcpkgs/python-click-log/template             |   2 -
 srcpkgs/python-click-threading/template       |   2 -
 srcpkgs/python-click/template                 |   2 -
 srcpkgs/python-codespell/template             |   2 -
 srcpkgs/python-colorama/template              |   2 -
 srcpkgs/python-configobj/template             |   2 -
 srcpkgs/python-constantly/template            |   2 -
 srcpkgs/python-construct/template             |   2 -
 srcpkgs/python-contextlib2/template           |   1 -
 srcpkgs/python-cram/template                  |   2 -
 srcpkgs/python-cryptography_vectors/template  |   1 -
 srcpkgs/python-css-parser/template            |   2 -
 srcpkgs/python-cssselect/template             |   2 -
 srcpkgs/python-cssutils/template              |   2 -
 srcpkgs/python-curtsies/template              |   2 -
 srcpkgs/python-cycler/template                |   2 -
 srcpkgs/python-daemonize/template             |   2 -
 srcpkgs/python-dateutil/template              |   2 -
 srcpkgs/python-decorator/template             |   2 -
 srcpkgs/python-defusedxml/template            |   2 -
 srcpkgs/python-discogs_client/template        |   2 -
 srcpkgs/python-distutils-extra/template       |   2 -
 srcpkgs/python-dnspython/template             |   2 -
 srcpkgs/python-docker-pycreds/template        |   2 -
 srcpkgs/python-docker/template                |   2 -
 srcpkgs/python-dockerpty/template             |   2 -
 srcpkgs/python-docopt/template                |   2 -
 srcpkgs/python-docutils/template              |   2 -
 srcpkgs/python-dogpile.cache/template         |   2 -
 srcpkgs/python-dominate/template              |   2 -
 srcpkgs/python-ecdsa/template                 |   2 -
 srcpkgs/python-editor/template                |   2 -
 srcpkgs/python-empy/template                  |   2 -
 srcpkgs/python-enchant/template               |   1 -
 srcpkgs/python-entrypoints/template           |   2 -
 srcpkgs/python-enum34/template                |   1 -
 srcpkgs/python-envdir/template                |   2 -
 srcpkgs/python-enzyme/template                |   2 -
 srcpkgs/python-ewmh/template                  |   2 -
 srcpkgs/python-exifread/template              |   2 -
 srcpkgs/python-fasteners/template             |   2 -
 srcpkgs/python-feedgenerator/template         |   2 -
 srcpkgs/python-feedparser/template            |   2 -
 srcpkgs/python-filetype/template              |   2 -
 srcpkgs/python-flaky/template                 |   2 -
 srcpkgs/python-funcsigs/template              |   1 -
 srcpkgs/python-functools32/template           |   1 -
 srcpkgs/python-future/template                |   2 -
 srcpkgs/python-futures/template               |   1 -
 srcpkgs/python-gitdb/template                 |   2 -
 srcpkgs/python-github3/template               |   2 -
 srcpkgs/python-gitlab/template                |   2 -
 srcpkgs/python-gntp/template                  |   2 -
 srcpkgs/python-gnupg/template                 |   2 -
 srcpkgs/python-gogs-client/template           |   2 -
 srcpkgs/python-guessit/template               |   2 -
 srcpkgs/python-h11/template                   |   2 -
 srcpkgs/python-habanero/template              |   2 -
 srcpkgs/python-hpack/template                 |   2 -
 srcpkgs/python-html2text/template             |   1 -
 srcpkgs/python-html5lib/template              |   2 -
 srcpkgs/python-httmock/template               |   2 -
 srcpkgs/python-httplib2/template              |   2 -
 srcpkgs/python-hyper-h2/template              |   2 -
 srcpkgs/python-hyperframe/template            |   2 -
 srcpkgs/python-hyperlink/template             |   2 -
 srcpkgs/python-hypothesis/template            |   2 -
 srcpkgs/python-icalendar/template             |   2 -
 srcpkgs/python-idna/template                  |   2 -
 srcpkgs/python-imagesize/template             |   2 -
 srcpkgs/python-importlib_metadata/template    |   1 -
 srcpkgs/python-incremental/template           |   2 -
 srcpkgs/python-inotify/template               |   2 -
 srcpkgs/python-ipaddr/template                |   1 -
 srcpkgs/python-ipaddress/template             |   1 -
 srcpkgs/python-iptools/template               |   2 -
 srcpkgs/python-isbnlib/template               |   2 -
 srcpkgs/python-iso-8601/template              |   1 -
 srcpkgs/python-isodate/template               |   2 -
 srcpkgs/python-isort/template                 |   2 -
 srcpkgs/python-itsdangerous/template          |   2 -
 srcpkgs/python-jaraco.functools/template      |   1 -
 srcpkgs/python-jedi/template                  |   2 -
 srcpkgs/python-jmespath/template              |   2 -
 srcpkgs/python-jsonpointer/template           |   2 -
 srcpkgs/python-jsonrpclib/template            |   2 -
 srcpkgs/python-jsonschema/template            |   2 -
 srcpkgs/python-kaptan/template                |   2 -
 srcpkgs/python-keepalive/template             |   2 -
 srcpkgs/python-kitchen/template               |   2 -
 srcpkgs/python-larch/template                 |   1 -
 srcpkgs/python-ldap3/template                 |   2 -
 srcpkgs/python-libtmux/template               |   2 -
 srcpkgs/python-lockfile/template              |   2 -
 srcpkgs/python-logfury/template               |   2 -
 srcpkgs/python-magic/template                 |   2 -
 srcpkgs/python-markdown2/template             |   2 -
 srcpkgs/python-matplotlib/template            |   1 -
 srcpkgs/python-mccabe/template                |   2 -
 srcpkgs/python-mechanize/template             |   2 -
 srcpkgs/python-mistune/template               |   2 -
 srcpkgs/python-mock/template                  |   1 -
 srcpkgs/python-monotonic/template             |   1 -
 srcpkgs/python-more-itertools/template        |   1 -
 srcpkgs/python-mpd2/template                  |   2 -
 srcpkgs/python-mpmath/template                |   2 -
 srcpkgs/python-msp430-tools/template          |   1 -
 srcpkgs/python-mtranslate/template            |   2 -
 srcpkgs/python-munkres/template               |   1 -
 srcpkgs/python-musicbrainzngs/template        |   2 -
 srcpkgs/python-mygpoclient/template           |   2 -
 srcpkgs/python-namedlist/template             |   2 -
 srcpkgs/python-natsort/template               |   2 -
 srcpkgs/python-ndg_httpsclient/template       |   2 -
 srcpkgs/python-netaddr/template               |   2 -
 srcpkgs/python-nose/template                  |   2 -
 srcpkgs/python-nose2/template                 |   2 -
 srcpkgs/python-npyscreen/template             |   2 -
 srcpkgs/python-ntplib/template                |   2 -
 srcpkgs/python-oauth2client/template          |   2 -
 srcpkgs/python-oauthlib/template              |   2 -
 srcpkgs/python-olefile/template               |   2 -
 srcpkgs/python-openssl/template               |   2 -
 srcpkgs/python-packaging/template             |   2 -
 srcpkgs/python-pam/template                   |   2 -
 srcpkgs/python-pandocfilters/template         |   2 -
 srcpkgs/python-paramiko/template              |   2 -
 srcpkgs/python-parse/template                 |   2 -
 srcpkgs/python-parsing/template               |   2 -
 srcpkgs/python-parso/template                 |   1 -
 srcpkgs/python-passlib/template               |   2 -
 srcpkgs/python-pathlib/template               |   1 -
 srcpkgs/python-pathlib2/template              |   2 -
 srcpkgs/python-pathspec/template              |   2 -
 srcpkgs/python-pathtools/template             |   2 -
 srcpkgs/python-pbkdf2/template                |   2 -
 srcpkgs/python-pbr/template                   |   2 -
 srcpkgs/python-pdfrw/template                 |   2 -
 srcpkgs/python-pexpect/template               |   2 -
 srcpkgs/python-pgmigrate/template             |   2 -
 srcpkgs/python-pgpdump/template               |   2 -
 srcpkgs/python-picamera/template              |   2 -
 srcpkgs/python-pickleshare/template           |   2 -
 srcpkgs/python-pip/template                   |   2 -
 srcpkgs/python-pipenv/template                |   2 -
 srcpkgs/python-pkgconfig/template             |   2 -
 srcpkgs/python-pluggy/template                |   1 -
 srcpkgs/python-ply/template                   |   2 -
 srcpkgs/python-podcastparser/template         |   2 -
 srcpkgs/python-polib/template                 |   2 -
 srcpkgs/python-portend/template               |   2 -
 srcpkgs/python-pretend/template               |   1 -
 srcpkgs/python-progress/template              |   2 -
 srcpkgs/python-prometheus_client/template     |   2 -
 srcpkgs/python-prompt_toolkit1/template       |   1 -
 srcpkgs/python-prompt_toolkit2/template       |   1 -
 srcpkgs/python-proselint/template             |   2 -
 srcpkgs/python-protobuf/template              |   2 -
 srcpkgs/python-ptyprocess/template            |   2 -
 srcpkgs/python-py/template                    |   2 -
 srcpkgs/python-pyPEG2/template                |   2 -
 srcpkgs/python-pyacoustid/template            |   2 -
 srcpkgs/python-pyaes/template                 |   2 -
 srcpkgs/python-pyasn1-modules/template        |   2 -
 srcpkgs/python-pyasn1/template                |   2 -
 srcpkgs/python-pycodestyle/template           |   2 -
 srcpkgs/python-pycountry/template             |   2 -
 srcpkgs/python-pycparser/template             |   2 -
 srcpkgs/python-pydns/template                 |   1 -
 srcpkgs/python-pyelftools/template            |   2 -
 srcpkgs/python-pyflakes/template              |   2 -
 srcpkgs/python-pyglet/template                |   2 -
 srcpkgs/python-pykka/template                 |   2 -
 srcpkgs/python-pyotp/template                 |   2 -
 srcpkgs/python-pypcapfile/template            |   1 -
 srcpkgs/python-pyperclip/template             |   2 -
 srcpkgs/python-pyqtgraph/template             |   2 -
 srcpkgs/python-pyrfc3339/template             |   2 -
 srcpkgs/python-pyserial/template              |   2 -
 srcpkgs/python-pysocks/template               |   2 -
 srcpkgs/python-pysrt/template                 |   2 -
 srcpkgs/python-pystache/template              |   2 -
 srcpkgs/python-pyte/template                  |   2 -
 srcpkgs/python-pytest-fixture-config/template |   2 -
 srcpkgs/python-pytest-mock/template           |   2 -
 srcpkgs/python-pytest/template                |   1 -
 srcpkgs/python-pytz/template                  |   2 -
 srcpkgs/python-pyudev/template                |   2 -
 srcpkgs/python-pyx/template                   |   1 -
 srcpkgs/python-pyzbar/template                |   2 -
 srcpkgs/python-qrcode/template                |   2 -
 srcpkgs/python-random2/template               |   2 -
 srcpkgs/python-rarfile/template               |   2 -
 srcpkgs/python-raven/template                 |   2 -
 srcpkgs/python-rdflib/template                |   2 -
 srcpkgs/python-readability-lxml/template      |   2 -
 srcpkgs/python-rebulk/template                |   2 -
 srcpkgs/python-redis/template                 |   2 -
 srcpkgs/python-requests-mock/template         |   2 -
 srcpkgs/python-requests-oauthlib/template     |   2 -
 srcpkgs/python-requests-toolbelt/template     |   2 -
 srcpkgs/python-requests/template              |   2 -
 srcpkgs/python-rfc6555/template               |   2 -
 srcpkgs/python-ripe-atlas-cousteau/template   |   2 -
 srcpkgs/python-ripe-atlas-sagan/template      |   2 -
 srcpkgs/python-rsa/template                   |   2 -
 srcpkgs/python-s3transfer/template            |   2 -
 srcpkgs/python-scour/template                 |   2 -
 srcpkgs/python-selectors2/template            |   1 -
 srcpkgs/python-send2trash/template            |   2 -
 srcpkgs/python-serpent/template               |   1 -
 srcpkgs/python-service_identity/template      |   2 -
 srcpkgs/python-setuptools/template            |   1 -
 srcpkgs/python-sh/template                    |   2 -
 srcpkgs/python-simplebayes/template           |   2 -
 srcpkgs/python-simplegeneric/template         |   2 -
 srcpkgs/python-singledispatch/template        |   1 -
 srcpkgs/python-six/template                   |   2 -
 srcpkgs/python-smmap/template                 |   2 -
 srcpkgs/python-snowballstemmer/template       |   2 -
 srcpkgs/python-socketIO-client/template       |   2 -
 srcpkgs/python-soupsieve/template             |   2 -
 srcpkgs/python-spambayes/template             |   1 -
 srcpkgs/python-sqlalchemy-migrate/template    |   2 -
 srcpkgs/python-sqlparse/template              |   2 -
 srcpkgs/python-stem/template                  |   2 -
 srcpkgs/python-stevedore/template             |   2 -
 srcpkgs/python-stormssh/template              |   2 -
 srcpkgs/python-subliminal/template            |   2 -
 srcpkgs/python-tempita/template               |   2 -
 srcpkgs/python-tempora/template               |   2 -
 srcpkgs/python-termcolor/template             |   2 -
 srcpkgs/python-terminado/template             |   2 -
 srcpkgs/python-testpath/template              |   2 -
 srcpkgs/python-texttable/template             |   2 -
 srcpkgs/python-tkinter/template               |   1 -
 srcpkgs/python-tmuxp/template                 |   2 -
 srcpkgs/python-toml/template                  |   2 -
 srcpkgs/python-tqdm/template                  |   2 -
 srcpkgs/python-tracing/template               |   1 -
 srcpkgs/python-ttystatus/template             |   2 -
 srcpkgs/python-tweepy/template                |   2 -
 srcpkgs/python-twitter/template               |   2 -
 srcpkgs/python-txgithub/template              |   1 -
 srcpkgs/python-typing/template                |   1 -
 srcpkgs/python-unittest-mixins/template       |   2 -
 srcpkgs/python-urbandict/template             |   2 -
 srcpkgs/python-uritemplate/template           |   2 -
 srcpkgs/python-urllib3/template               |   2 -
 srcpkgs/python-urlnorm/template               |   1 -
 srcpkgs/python-urwidtrees/template            |   2 -
 srcpkgs/python-utils/template                 |   2 -
 srcpkgs/python-vint/template                  |   2 -
 srcpkgs/python-virtualenv-clone/template      |   2 -
 srcpkgs/python-virtualenv/template            |   2 -
 srcpkgs/python-vispy/template                 |   1 -
 srcpkgs/python-vobject/template               |   2 -
 srcpkgs/python-voluptuous/template            |   1 -
 srcpkgs/python-watchdog/template              |   2 -
 srcpkgs/python-wcwidth/template               |   2 -
 srcpkgs/python-webassets/template             |   2 -
 srcpkgs/python-webencodings/template          |   2 -
 srcpkgs/python-websocket-client/template      |   2 -
 srcpkgs/python-wheel/template                 |   2 -
 srcpkgs/python-wikipedia/template             |   2 -
 srcpkgs/python-wsproto/template               |   2 -
 srcpkgs/python-xdg/template                   |   2 -
 srcpkgs/python-xlib/template                  |   2 -
 srcpkgs/python-xmldiff/template               |   3 -
 srcpkgs/python-xmltodict/template             |   2 -
 srcpkgs/python-yamllint/template              |   2 -
 srcpkgs/python-zc.lockfile/template           |   2 -
 srcpkgs/python-zipp/template                  |   1 -
 srcpkgs/python-zipstream/template             |   2 -
 srcpkgs/python3-3to2/template                 |   1 -
 srcpkgs/python3-CherryPy/template             |   1 -
 srcpkgs/python3-ConfigArgParse/template       |   1 -
 srcpkgs/python3-Django/template               |   1 -
 srcpkgs/python3-EasyProcess/template          |   1 -
 srcpkgs/python3-Flask-Mail/template           |   1 -
 srcpkgs/python3-Flask-RESTful/template        |   1 -
 srcpkgs/python3-Flask-SQLAlchemy/template     |   1 -
 srcpkgs/python3-Flask-User/template           |   1 -
 srcpkgs/python3-Inflector/template            |   1 -
 srcpkgs/python3-Markdown/template             |   1 -
 srcpkgs/python3-MechanicalSoup/template       |   1 -
 srcpkgs/python3-Pebble/template               |   1 -
 srcpkgs/python3-PyBrowserID/template          |   1 -
 srcpkgs/python3-PyFxA/template                |   1 -
 srcpkgs/python3-PyPDF2/template               |   1 -
 srcpkgs/python3-PyVirtualDisplay/template     |   1 -
 srcpkgs/python3-QtPy/template                 |   1 -
 srcpkgs/python3-ReParser/template             |   1 -
 srcpkgs/python3-Ropper/template               |   1 -
 srcpkgs/python3-SecretStorage/template        |   1 -
 srcpkgs/python3-SoCo/template                 |   1 -
 srcpkgs/python3-Sphinx/template               |   1 -
 srcpkgs/python3-Telethon/template             |   1 -
 srcpkgs/python3-TxSNI/template                |   1 -
 srcpkgs/python3-WebOb/template                |   1 -
 srcpkgs/python3-XlsxWriter/template           |   1 -
 srcpkgs/python3-acme/template                 |   1 -
 srcpkgs/python3-aioamqp/template              |   1 -
 srcpkgs/python3-aiodns/template               |   1 -
 srcpkgs/python3-aiofiles/template             |   1 -
 srcpkgs/python3-aiohttp-cors/template         |   1 -
 srcpkgs/python3-aiohttp-cors2/template        |   1 -
 srcpkgs/python3-aiohttp-sse-client/template   |   1 -
 srcpkgs/python3-aiohttp_socks/template        |   1 -
 srcpkgs/python3-aioinflux/template            |   1 -
 srcpkgs/python3-aionotify/template            |   1 -
 srcpkgs/python3-aioredis/template             |   1 -
 srcpkgs/python3-aiorpcx/template              |   1 -
 srcpkgs/python3-altgraph/template             |   1 -
 srcpkgs/python3-aniso8601/template            |   1 -
 srcpkgs/python3-ansible-lint/template         |   1 -
 srcpkgs/python3-anytree/template              |   1 -
 srcpkgs/python3-applib/template               |   1 -
 srcpkgs/python3-argcomplete/template          |   1 -
 srcpkgs/python3-astral/template               |   1 -
 srcpkgs/python3-astroid/template              |   1 -
 srcpkgs/python3-async-timeout/template        |   1 -
 srcpkgs/python3-async_generator/template      |   1 -
 srcpkgs/python3-atspi/template                |   1 -
 srcpkgs/python3-authres/template              |   1 -
 srcpkgs/python3-autobahn/template             |   1 -
 srcpkgs/python3-blessed/template              |   1 -
 srcpkgs/python3-bokeh/template                |   1 -
 srcpkgs/python3-boltons/template              |   1 -
 srcpkgs/python3-boto3/template                |   1 -
 srcpkgs/python3-breathe/template              |   1 -
 srcpkgs/python3-cachetools/template           |   1 -
 srcpkgs/python3-canonicaljson/template        |   1 -
 srcpkgs/python3-casttube/template             |   1 -
 srcpkgs/python3-certifi/template              |   1 -
 srcpkgs/python3-changelogs/template           |   1 -
 srcpkgs/python3-chess/template                |   1 -
 srcpkgs/python3-chromecast/template           |   1 -
 srcpkgs/python3-cjkwrap/template              |   1 -
 srcpkgs/python3-cli-ui/template               |   1 -
 srcpkgs/python3-cli_helpers/template          |   1 -
 srcpkgs/python3-click-plugins/template        |   1 -
 srcpkgs/python3-cloudscraper/template         |   1 -
 srcpkgs/python3-cmdln/template                |   1 -
 srcpkgs/python3-colorclass/template           |   1 -
 srcpkgs/python3-crccheck/template             |   1 -
 srcpkgs/python3-dateparser/template           |   1 -
 srcpkgs/python3-dbusmock/template             |   1 -
 srcpkgs/python3-deprecation/template          |   1 -
 srcpkgs/python3-discid/template               |   1 -
 srcpkgs/python3-distlib/template              |   1 -
 srcpkgs/python3-dkimpy/template               |   2 -
 srcpkgs/python3-doi/template                  |   1 -
 srcpkgs/python3-dpkt/template                 |   1 -
 srcpkgs/python3-easygui/template              |   1 -
 srcpkgs/python3-elementpath/template          |   1 -
 srcpkgs/python3-eliot/template                |   1 -
 srcpkgs/python3-enchant/template              |   1 -
 srcpkgs/python3-etesync/template              |   1 -
 srcpkgs/python3-ffmpeg-python/template        |   1 -
 srcpkgs/python3-fido2/template                |   1 -
 srcpkgs/python3-filebytes/template            |   1 -
 srcpkgs/python3-fishnet/template              |   1 -
 srcpkgs/python3-flexmock/template             |   1 -
 srcpkgs/python3-freezegun/template            |   1 -
 srcpkgs/python3-frozendict/template           |   1 -
 srcpkgs/python3-furl/template                 |   1 -
 srcpkgs/python3-geojson/template              |   1 -
 srcpkgs/python3-gitchangelog/template         |   1 -
 srcpkgs/python3-google-api-core/template      |   1 -
 .../python3-google-api-python-client/template |   1 -
 srcpkgs/python3-google-auth-httplib2/template |   1 -
 srcpkgs/python3-google-auth/template          |   1 -
 .../python3-googleapis-common-protos/template |   1 -
 srcpkgs/python3-graphviz/template             |   1 -
 srcpkgs/python3-hawkauthlib/template          |   1 -
 srcpkgs/python3-hjson/template                |   1 -
 srcpkgs/python3-hkdf/template                 |   1 -
 srcpkgs/python3-html2text/template            |   1 -
 srcpkgs/python3-humanize/template             |   1 -
 srcpkgs/python3-hypercorn/template            |   1 -
 srcpkgs/python3-i3ipc/template                |   1 -
 srcpkgs/python3-idna-ssl/template             |   1 -
 srcpkgs/python3-ifaddr/template               |   1 -
 srcpkgs/python3-influxdb/template             |   1 -
 srcpkgs/python3-ipython/template              |   1 -
 srcpkgs/python3-ipython_genutils/template     |   1 -
 srcpkgs/python3-ipython_ipykernel/template    |   1 -
 srcpkgs/python3-irc/template                  |   1 -
 srcpkgs/python3-itunespy/template             |   1 -
 srcpkgs/python3-janus/template                |   1 -
 srcpkgs/python3-jaraco.classes/template       |   1 -
 srcpkgs/python3-jaraco.collections/template   |   1 -
 srcpkgs/python3-jaraco.functools/template     |   1 -
 srcpkgs/python3-jaraco.text/template          |   1 -
 srcpkgs/python3-jaraco/template               |   1 -
 srcpkgs/python3-jeepney/template              |   1 -
 srcpkgs/python3-josepy/template               |   1 -
 srcpkgs/python3-jsondiff/template             |   1 -
 srcpkgs/python3-jsonrpc-server/template       |   1 -
 srcpkgs/python3-jupyter_client/template       |   1 -
 srcpkgs/python3-jupyter_console/template      |   1 -
 srcpkgs/python3-jupyter_core/template         |   2 -
 srcpkgs/python3-jupyter_ipywidgets/template   |   1 -
 srcpkgs/python3-jupyter_nbconvert/template    |   1 -
 srcpkgs/python3-jupyter_nbformat/template     |   1 -
 srcpkgs/python3-jupyter_notebook/template     |   1 -
 srcpkgs/python3-jupyter_qtconsole/template    |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-keyring/template              |   1 -
 srcpkgs/python3-keyrings-alt/template         |   1 -
 srcpkgs/python3-language-server/template      |   1 -
 srcpkgs/python3-macaroons/template            |   1 -
 srcpkgs/python3-macholib/template             |   1 -
 srcpkgs/python3-markdown-math/template        |   1 -
 srcpkgs/python3-marshmallow/template          |   1 -
 srcpkgs/python3-matplotlib/template           |   1 -
 srcpkgs/python3-matrix-nio/template           |   1 -
 srcpkgs/python3-minidb/template               |   1 -
 srcpkgs/python3-mock/template                 |   1 -
 srcpkgs/python3-more-itertools/template       |   1 -
 srcpkgs/python3-mpv/template                  |   1 -
 srcpkgs/python3-msoffcrypto-tool/template     |   1 -
 srcpkgs/python3-munkres/template              |   1 -
 srcpkgs/python3-musicpd/template              |   1 -
 srcpkgs/python3-mypy/template                 |   1 -
 srcpkgs/python3-mypy_extensions/template      |   1 -
 srcpkgs/python3-nbxmpp/template               |   2 -
 srcpkgs/python3-neovim/template               |   1 -
 srcpkgs/python3-networkx/template             |   1 -
 srcpkgs/python3-nose-random/template          |   1 -
 srcpkgs/python3-notify2/template              |   1 -
 srcpkgs/python3-ntlm-auth/template            |   1 -
 srcpkgs/python3-oletools/template             |   1 -
 srcpkgs/python3-opcua/template                |   1 -
 srcpkgs/python3-orderedmultidict/template     |   1 -
 srcpkgs/python3-pafy/template                 |   1 -
 srcpkgs/python3-pamqp/template                |   1 -
 srcpkgs/python3-parsedatetime/template        |   1 -
 srcpkgs/python3-parso/template                |   1 -
 srcpkgs/python3-path-and-address/template     |   1 -
 srcpkgs/python3-pcodedmp/template             |   1 -
 srcpkgs/python3-pefile/template               |   1 -
 srcpkgs/python3-pem/template                  |   1 -
 srcpkgs/python3-perf/template                 |   1 -
 srcpkgs/python3-pgspecial/template            |   1 -
 srcpkgs/python3-pgzero/template               |   1 -
 srcpkgs/python3-phonenumbers/template         |   1 -
 srcpkgs/python3-pipx/template                 |   1 -
 srcpkgs/python3-pkginfo/template              |   1 -
 srcpkgs/python3-plotly/template               |   1 -
 srcpkgs/python3-pluggy/template               |   1 -
 srcpkgs/python3-pmw/template                  |   1 -
 srcpkgs/python3-precis-i18n/template          |   1 -
 srcpkgs/python3-priority/template             |   1 -
 srcpkgs/python3-prompt_toolkit/template       |   1 -
 srcpkgs/python3-pulsectl/template             |   1 -
 srcpkgs/python3-pure-protobuf/template        |   1 -
 srcpkgs/python3-py-cpuinfo/template           |   1 -
 srcpkgs/python3-pybind11/template             |   1 -
 srcpkgs/python3-pydbus/template               |   1 -
 srcpkgs/python3-pyfiglet/template             |   1 -
 srcpkgs/python3-pyinfra/template              |   1 -
 srcpkgs/python3-pykeepass/template            |   1 -
 srcpkgs/python3-pykwalify/template            |   1 -
 srcpkgs/python3-pylast/template               |   1 -
 srcpkgs/python3-pylibgen/template             |   1 -
 srcpkgs/python3-pylru/template                |   1 -
 srcpkgs/python3-pysdl2/template               |   1 -
 srcpkgs/python3-pyside2/template              |   4 -
 srcpkgs/python3-pysigset/template             |   1 -
 srcpkgs/python3-pytest-asyncio/template       |   1 -
 srcpkgs/python3-pytest-cov/template           |   1 -
 srcpkgs/python3-pytest-qt/template            |   1 -
 srcpkgs/python3-pytest-xvfb/template          |   1 -
 srcpkgs/python3-pytest/template               |   1 -
 srcpkgs/python3-pythondialog/template         |   1 -
 srcpkgs/python3-pytools/template              |   1 -
 srcpkgs/python3-pywinrm/template              |   1 -
 srcpkgs/python3-pyx/template                  |   1 -
 srcpkgs/python3-quart/template                |   1 -
 srcpkgs/python3-readlike/template             |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-requests-file/template        |   1 -
 srcpkgs/python3-requests-ntlm/template        |   1 -
 srcpkgs/python3-requests-unixsocket/template  |   1 -
 srcpkgs/python3-rss2email/template            |   1 -
 srcpkgs/python3-s-tui/template                |   1 -
 srcpkgs/python3-saml2/template                |   1 -
 srcpkgs/python3-scruffy/template              |   1 -
 srcpkgs/python3-semanticversion/template      |   1 -
 srcpkgs/python3-sentry/template               |   1 -
 srcpkgs/python3-serpent/template              |   1 -
 srcpkgs/python3-setuptools/template           |   1 -
 srcpkgs/python3-shodan/template               |   1 -
 srcpkgs/python3-signedjson/template           |   1 -
 srcpkgs/python3-slugify/template              |   1 -
 srcpkgs/python3-sortedcontainers/template     |   1 -
 srcpkgs/python3-spake2/template               |   1 -
 srcpkgs/python3-sphinx_rtd_theme/template     |   1 -
 .../python3-sphinxcontrib-applehelp/template  |   1 -
 .../python3-sphinxcontrib-devhelp/template    |   1 -
 .../python3-sphinxcontrib-htmlhelp/template   |   1 -
 srcpkgs/python3-sphinxcontrib-jsmath/template |   1 -
 srcpkgs/python3-sphinxcontrib-qthelp/template |   1 -
 .../template                                  |   1 -
 .../python3-sphinxcontrib-websupport/template |   1 -
 srcpkgs/python3-sphinxcontrib/template        |   1 -
 srcpkgs/python3-subunit/template              |   1 -
 srcpkgs/python3-sympy/template                |   1 -
 srcpkgs/python3-tabulate/template             |   1 -
 srcpkgs/python3-terminaltables/template       |   1 -
 srcpkgs/python3-text-unidecode/template       |   1 -
 srcpkgs/python3-tinycss/template              |   1 -
 srcpkgs/python3-tkinter/template              |   1 -
 srcpkgs/python3-tldextract/template           |   1 -
 srcpkgs/python3-traitlets/template            |   1 -
 srcpkgs/python3-transifex-client/template     |   1 -
 srcpkgs/python3-treq/template                 |   1 -
 srcpkgs/python3-trimesh/template              |   1 -
 srcpkgs/python3-txacme/template               |   1 -
 srcpkgs/python3-txaio/template                |   1 -
 srcpkgs/python3-txtorcon/template             |   1 -
 srcpkgs/python3-typing_extensions/template    |   1 -
 srcpkgs/python3-tzlocal/template              |   1 -
 srcpkgs/python3-unpaddedbase64/template       |   1 -
 srcpkgs/python3-urlgrabber/template           |   1 -
 srcpkgs/python3-usb/template                  |   1 -
 srcpkgs/python3-userpath/template             |   1 -
 srcpkgs/python3-validators/template           |   1 -
 srcpkgs/python3-virustotal-api/template       |   1 -
 srcpkgs/python3-xapp/template                 |   1 -
 srcpkgs/python3-xdg-variables/template        |   1 -
 srcpkgs/python3-xlrd/template                 |   1 -
 srcpkgs/python3-xmlschema/template            |   1 -
 srcpkgs/python3-yapf/template                 |   1 -
 srcpkgs/python3-zeroconf/template             |   1 -
 .../python3-zope.cachedescriptors/template    |   1 -
 srcpkgs/python3-zope.component/template       |   1 -
 srcpkgs/python3-zope.configuration/template   |   1 -
 srcpkgs/python3-zope.copy/template            |   1 -
 srcpkgs/python3-zope.deferredimport/template  |   1 -
 srcpkgs/python3-zope.deprecation/template     |   1 -
 srcpkgs/python3-zope.event/template           |   1 -
 srcpkgs/python3-zope.exceptions/template      |   1 -
 srcpkgs/python3-zope.hookable/template        |   1 -
 srcpkgs/python3-zope.location/template        |   1 -
 srcpkgs/python3-zope.schema/template          |   1 -
 srcpkgs/python3-zope.testing/template         |   1 -
 srcpkgs/python3-zope.testrunner/template      |   1 -
 srcpkgs/pywal/template                        |   1 -
 srcpkgs/qalculate/template                    |   1 -
 srcpkgs/qdirstat/template                     |   1 -
 srcpkgs/qmc2-flyers/template                  |   1 -
 srcpkgs/qmc2-snapshots/template               |   1 -
 srcpkgs/qmc2/template                         |   1 -
 srcpkgs/qmk/template                          |   1 -
 srcpkgs/qomui/template                        |   1 -
 srcpkgs/qrintf/template                       |   1 -
 srcpkgs/qtcreator/template                    |   1 -
 srcpkgs/quixand/template                      |   1 -
 srcpkgs/quodlibet/template                    |   1 -
 srcpkgs/qutebrowser/template                  |   1 -
 srcpkgs/qytdl/template                        |   1 -
 srcpkgs/racket/template                       |   1 -
 srcpkgs/radicale/template                     |   1 -
 srcpkgs/radicale2/template                    |   1 -
 srcpkgs/ranger/template                       |   1 -
 srcpkgs/rapidjson/template                    |   1 -
 srcpkgs/rapidxml/template                     |   1 -
 srcpkgs/rapydscript-ng/template               |   1 -
 srcpkgs/rcm/template                          |   1 -
 srcpkgs/rdumpfs/template                      |   1 -
 srcpkgs/rebar3/template                       |   1 -
 srcpkgs/rednotebook/template                  |   1 -
 srcpkgs/remhind/template                      |   1 -
 srcpkgs/rex/template                          |   1 -
 srcpkgs/rinse/template                        |   1 -
 srcpkgs/ripe-atlas-tools/template             |   1 -
 srcpkgs/rkhunter/template                     |   1 -
 srcpkgs/rocksndiamonds/template               |   1 -
 srcpkgs/rpi-firmware/template                 |   1 -
 srcpkgs/rpmextract/template                   |   1 -
 srcpkgs/rsnapshot/template                    |   1 -
 srcpkgs/rtl8812au-dkms/template               |   1 -
 srcpkgs/rtl8822bu-dkms/template               |   1 -
 srcpkgs/rtv/template                          |   1 -
 srcpkgs/rubber/template                       |   1 -
 srcpkgs/ruby-addressable/template             |   1 -
 srcpkgs/ruby-asciidoctor/template             |   1 -
 srcpkgs/ruby-concurrent-ruby/template         |   1 -
 srcpkgs/ruby-connection_pool/template         |   1 -
 srcpkgs/ruby-deep_merge/template              |   1 -
 srcpkgs/ruby-ethon/template                   |   1 -
 srcpkgs/ruby-faraday/template                 |   1 -
 srcpkgs/ruby-faraday_middleware/template      |   1 -
 srcpkgs/ruby-filesize/template                |   1 -
 srcpkgs/ruby-gh/template                      |   1 -
 srcpkgs/ruby-highline/template                |   1 -
 srcpkgs/ruby-httparty/template                |   1 -
 srcpkgs/ruby-launchy/template                 |   1 -
 srcpkgs/ruby-manpages/template                |   1 -
 srcpkgs/ruby-mime-types-data/template         |   1 -
 srcpkgs/ruby-mime-types/template              |   1 -
 srcpkgs/ruby-multi_json/template              |   1 -
 srcpkgs/ruby-multi_xml/template               |   1 -
 srcpkgs/ruby-multipart-post/template          |   1 -
 srcpkgs/ruby-mustache/template                |   1 -
 srcpkgs/ruby-net-http-persistent/template     |   1 -
 srcpkgs/ruby-net-http-pipeline/template       |   1 -
 srcpkgs/ruby-public_suffix/template           |   1 -
 srcpkgs/ruby-pusher-client/template           |   1 -
 srcpkgs/ruby-rainbow/template                 |   1 -
 srcpkgs/ruby-rb-readline/template             |   1 -
 srcpkgs/ruby-ronn/template                    |   1 -
 srcpkgs/ruby-rubysl-singleton/template        |   1 -
 srcpkgs/ruby-semantic_puppet/template         |   1 -
 srcpkgs/ruby-sync/template                    |   1 -
 srcpkgs/ruby-travis/template                  |   1 -
 srcpkgs/ruby-typhoeus/template                |   1 -
 srcpkgs/ruby-websocket/template               |   1 -
 srcpkgs/ruby/template                         |   2 -
 srcpkgs/run-mailcap/template                  |   1 -
 srcpkgs/runelite-launcher/template            |   1 -
 srcpkgs/runit-iptables/template               |   1 -
 srcpkgs/runit-kdump/template                  |   1 -
 srcpkgs/runit-nftables/template               |   1 -
 srcpkgs/runit-swap/template                   |   1 -
 srcpkgs/rust/template                         |   1 -
 srcpkgs/rxvt-unicode/template                 |   1 -
 srcpkgs/s3cmd/template                        |   1 -
 srcpkgs/s6-dns/template                       |   1 -
 srcpkgs/s6-linux-utils/template               |   1 -
 srcpkgs/s6-networking/template                |   1 -
 srcpkgs/s6-portable-utils/template            |   1 -
 srcpkgs/s6-rc/template                        |   1 -
 srcpkgs/s6/template                           |   1 -
 srcpkgs/sabnzbd/template                      |   1 -
 srcpkgs/safeeyes/template                     |   1 -
 srcpkgs/salt/template                         |   1 -
 srcpkgs/sandfox/template                      |   1 -
 srcpkgs/sauerbraten/template                  |   1 -
 srcpkgs/sbcl/template                         |   1 -
 srcpkgs/sbt/template                          |   1 -
 srcpkgs/scanmem/template                      |   1 -
 srcpkgs/scapy/template                        |   1 -
 srcpkgs/schedule/template                     |   1 -
 srcpkgs/screenFetch/template                  |   1 -
 srcpkgs/screenkey/template                    |   1 -
 srcpkgs/screenplain/template                  |   1 -
 srcpkgs/seafile-libclient/template            |   2 -
 srcpkgs/sendEmail/template                    |   1 -
 srcpkgs/setconf/template                      |   2 -
 srcpkgs/shared-color-targets/template         |   1 -
 srcpkgs/shared-desktop-ontologies/template    |   1 -
 srcpkgs/shiboken2/template                    |   2 -
 srcpkgs/shorewall/template                    |   3 -
 srcpkgs/shunit2/template                      |   1 -
 srcpkgs/sickbeard/template                    |   1 -
 srcpkgs/signond/template                      |   1 -
 srcpkgs/sigrok-firmware-fx2lafw/template      |   1 -
 srcpkgs/skalibs/template                      |   1 -
 srcpkgs/slim-void-theme/template              |   1 -
 srcpkgs/snazzer/template                      |   1 -
 srcpkgs/sonata/template                       |   1 -
 srcpkgs/sound-icons/template                  |   1 -
 srcpkgs/sound-theme-freedesktop/template      |   1 -
 srcpkgs/soundconverter/template               |   1 -
 srcpkgs/soundfont-fluid/template              |   1 -
 srcpkgs/source-sans-pro/template              |   1 -
 srcpkgs/spampd/template                       |   1 -
 srcpkgs/sparsehash/template                   |   1 -
 srcpkgs/spdx-licenses-list/template           |   4 -
 srcpkgs/spectre-meltdown-checker/template     |   1 -
 srcpkgs/speed-dreams/template                 |   1 -
 srcpkgs/speedometer/template                  |   1 -
 srcpkgs/speedtest-cli/template                |   1 -
 srcpkgs/spice-protocol/template               |   1 -
 srcpkgs/sqlmap/template                       |   1 -
 srcpkgs/ssh-audit/template                    |   1 -
 srcpkgs/sshuttle/template                     |   1 -
 srcpkgs/ssoma/template                        |   1 -
 srcpkgs/st/template                           |   1 -
 srcpkgs/starfighter/template                  |   1 -
 srcpkgs/startup/template                      |   1 -
 srcpkgs/statnot/template                      |   1 -
 srcpkgs/stcgal/template                       |   1 -
 srcpkgs/steam-fonts/template                  |   1 -
 srcpkgs/stellarium/template                   |   1 -
 srcpkgs/stig/template                         |   1 -
 srcpkgs/stk/template                          |   1 -
 srcpkgs/stlarch-font/template                 |   1 -
 srcpkgs/stow/template                         |   1 -
 srcpkgs/straw-viewer/template                 |   1 -
 srcpkgs/streamlink/template                   |   1 -
 srcpkgs/strip-nondeterminism/template         |   1 -
 srcpkgs/supertux2/template                    |   1 -
 srcpkgs/supertuxkart/template                 |   1 -
 srcpkgs/surfraw/template                      |   1 -
 srcpkgs/sv-helper/template                    |   1 -
 srcpkgs/swaks/template                        |   1 -
 srcpkgs/sway/template                         |   1 -
 srcpkgs/synapse/template                      |   1 -
 srcpkgs/syncplay/template                     |   1 -
 srcpkgs/syncthing-gtk/template                |   1 -
 srcpkgs/system-config-printer/template        |   1 -
 srcpkgs/t-prot/template                       |   1 -
 srcpkgs/t2ec/template                         |   1 -
 srcpkgs/taisei/template                       |   1 -
 srcpkgs/tango-icon-theme/template             |   1 -
 srcpkgs/tcllib/template                       |   1 -
 srcpkgs/tdrop/template                        |   1 -
 srcpkgs/tegaki-zinnia-japanese/template       |   1 -
 srcpkgs/tekaim/template                       |   1 -
 srcpkgs/telepathy-python/template             |   1 -
 srcpkgs/telepresence/template                 |   1 -
 srcpkgs/termdown/template                     |   1 -
 srcpkgs/terminal_markdown_viewer/template     |   1 -
 srcpkgs/terminator/template                   |   1 -
 srcpkgs/terminus-font/template                |   1 -
 srcpkgs/termsyn-font/template                 |   1 -
 srcpkgs/termtosvg/template                    |   1 -
 srcpkgs/tesseract-ocr/template                | 156 ------------------
 srcpkgs/testssl.sh/template                   |   1 -
 srcpkgs/tewi-font/template                    |   1 -
 srcpkgs/texi2html/template                    |   1 -
 srcpkgs/texlive-basic/template                |   1 -
 srcpkgs/texlive-bibtexextra/template          |   1 -
 srcpkgs/texlive-core/template                 |   1 -
 srcpkgs/texlive-fontsextra/template           |   1 -
 srcpkgs/texlive-formatsextra/template         |   1 -
 srcpkgs/texlive-full/template                 |   1 -
 srcpkgs/texlive-games/template                |   1 -
 srcpkgs/texlive-humanities/template           |   1 -
 srcpkgs/texlive-lang/template                 |   1 -
 srcpkgs/texlive-langchinese/template          |   1 -
 srcpkgs/texlive-langcyrillic/template         |   1 -
 srcpkgs/texlive-langextra/template            |   1 -
 srcpkgs/texlive-langgreek/template            |   1 -
 srcpkgs/texlive-langjapanese/template         |   1 -
 srcpkgs/texlive-langkorean/template           |   1 -
 srcpkgs/texlive-latexextra/template           |   1 -
 srcpkgs/texlive-minimal/template              |   1 -
 srcpkgs/texlive-most/template                 |   1 -
 srcpkgs/texlive-music/template                |   1 -
 srcpkgs/texlive-pictures/template             |   1 -
 srcpkgs/texlive-pstricks/template             |   1 -
 srcpkgs/texlive-publishers/template           |   1 -
 srcpkgs/texlive-science/template              |   1 -
 srcpkgs/thefuck/template                      |   1 -
 srcpkgs/thinkpad-scripts/template             |   1 -
 srcpkgs/tlp/template                          |   2 -
 srcpkgs/tmux-xpanes/template                  |   1 -
 srcpkgs/tmuxc/template                        |   1 -
 srcpkgs/todoman/template                      |   1 -
 srcpkgs/toot/template                         |   1 -
 srcpkgs/tpm/template                          |   1 -
 srcpkgs/trackma/template                      |   1 -
 srcpkgs/treeline/template                     |   1 -
 srcpkgs/tremc/template                        |   1 -
 srcpkgs/trident-icons/template                |   1 -
 srcpkgs/triehash/template                     |   1 -
 srcpkgs/tryton/template                       |   1 -
 srcpkgs/ttf-bitstream-vera/template           |   1 -
 srcpkgs/ttf-material-icons/template           |   1 -
 srcpkgs/ttf-ubuntu-font-family/template       |   1 -
 srcpkgs/tuimoji/template                      |   1 -
 srcpkgs/tuir/template                         |   1 -
 srcpkgs/turses/template                       |   1 -
 srcpkgs/tuxpaint-stamps/template              |   1 -
 srcpkgs/tuxpaint/template                     |   1 -
 srcpkgs/tvbrowser/template                    |   1 -
 srcpkgs/twaindsm/template                     |   1 -
 srcpkgs/twemoji/template                      |   1 -
 srcpkgs/txt2man/template                      |   1 -
 srcpkgs/tzdata/template                       |   1 -
 srcpkgs/tzupdate/template                     |   1 -
 srcpkgs/u-boot-menu/template                  |   1 -
 srcpkgs/uberwriter/template                   |   1 -
 srcpkgs/udiskie/template                      |   1 -
 srcpkgs/ufetch/template                       |   1 -
 srcpkgs/ufoai/template                        |   1 -
 srcpkgs/ufw-extras/template                   |   1 -
 srcpkgs/ufw/template                          |   1 -
 srcpkgs/uhd/template                          |   1 -
 srcpkgs/unicode-emoji/template                |   1 -
 srcpkgs/unknown-horizons/template             |   1 -
 srcpkgs/unoconv/template                      |   1 -
 srcpkgs/unp/template                          |   1 -
 srcpkgs/urbanterror-data/template             |   1 -
 srcpkgs/urlscan/template                      |   1 -
 srcpkgs/urlwatch/template                     |   1 -
 srcpkgs/urxvt-perls/template                  |   1 -
 srcpkgs/usb-modeswitch-data/template          |   1 -
 srcpkgs/vala-panel-appmenu/template           |   1 -
 srcpkgs/vala/template                         |   1 -
 srcpkgs/variety/template                      |   1 -
 srcpkgs/vdirsyncer/template                   |   1 -
 srcpkgs/vdrift/template                       |   1 -
 srcpkgs/vidcutter/template                    |   1 -
 srcpkgs/vigra/template                        |   1 -
 srcpkgs/vim-colorschemes/template             |   1 -
 srcpkgs/vim-gnupg/template                    |   1 -
 srcpkgs/vim/template                          |   1 -
 srcpkgs/vips/template                         |   1 -
 srcpkgs/virt-manager/template                 |   2 -
 srcpkgs/virtme/template                       |   1 -
 srcpkgs/virtualbox-ose/template               |   2 -
 srcpkgs/virtualenvwrapper/template            |   1 -
 srcpkgs/visidata/template                     |   1 -
 srcpkgs/void-artwork/template                 |   1 -
 srcpkgs/void-release-keys/template            |   1 -
 srcpkgs/void-repo-nonfree/template            |   2 -
 srcpkgs/void-updates/template                 |   1 -
 srcpkgs/volctl/template                       |   1 -
 srcpkgs/voltron/template                      |   1 -
 srcpkgs/vpm/template                          |   1 -
 srcpkgs/vpnc-scripts/template                 |   1 -
 srcpkgs/vpnd/template                         |   1 -
 srcpkgs/vsv/template                          |   1 -
 srcpkgs/warsow-data/template                  |   1 -
 srcpkgs/warzone2100/template                  |   1 -
 srcpkgs/wayland-protocols/template            |   1 -
 srcpkgs/weather/template                      |   1 -
 srcpkgs/wee-slack/template                    |   1 -
 srcpkgs/wesnoth/template                      |   1 -
 srcpkgs/wfuzz/template                        |   1 -
 srcpkgs/wgetpaste/template                    |   1 -
 srcpkgs/when/template                         |   1 -
 srcpkgs/wicd/template                         |   2 -
 srcpkgs/widelands-maps/template               |   1 -
 srcpkgs/widelands/template                    |   1 -
 srcpkgs/wifi-firmware/template                |   1 -
 srcpkgs/wifish/template                       |   1 -
 srcpkgs/wine-gecko/template                   |   1 -
 srcpkgs/wine-mono/template                    |   1 -
 srcpkgs/wine/template                         |   1 -
 srcpkgs/winetricks/template                   |   1 -
 srcpkgs/wok/template                          |   1 -
 srcpkgs/words-mnemonic/template               |   1 -
 srcpkgs/words-web2/template                   |   1 -
 srcpkgs/wpgtk/template                        |   1 -
 srcpkgs/wpull/template                        |   1 -
 srcpkgs/wqy-microhei/template                 |   1 -
 srcpkgs/xapian-core/template                  |   1 -
 srcpkgs/xbitmaps/template                     |   1 -
 srcpkgs/xbps-triggers/template                |   1 -
 srcpkgs/xcb-proto/template                    |   1 -
 srcpkgs/xcursor-themes/template               |   1 -
 srcpkgs/xcursor-vanilla-dmz/template          |   1 -
 srcpkgs/xdg-utils/template                    |   1 -
 srcpkgs/xdgmenumaker/template                 |   1 -
 srcpkgs/xdot/template                         |   1 -
 srcpkgs/xed/template                          |   1 -
 srcpkgs/xerces-c/template                     |   1 -
 srcpkgs/xfwm4-themes/template                 |   1 -
 srcpkgs/xkb-qwerty-fr/template                |   1 -
 srcpkgs/xkcdpass/template                     |   1 -
 srcpkgs/xkeyboard-config/template             |   1 -
 srcpkgs/xmltoman/template                     |   1 -
 srcpkgs/xmoto/template                        |   1 -
 srcpkgs/xonotic-data-low/template             |   1 -
 srcpkgs/xonotic-data/template                 |   1 -
 srcpkgs/xonsh/template                        |   1 -
 srcpkgs/xorg-cf-files/template                |   1 -
 srcpkgs/xorg-util-macros/template             |   1 -
 srcpkgs/xtools/template                       |   1 -
 srcpkgs/xtrans/template                       |   1 -
 srcpkgs/xye/template                          |   1 -
 srcpkgs/yadm/template                         |   1 -
 srcpkgs/yaru-plus/template                    |   1 -
 srcpkgs/yaru/template                         |   1 -
 srcpkgs/yelp-tools/template                   |   1 -
 srcpkgs/yelp-xsl/template                     |   1 -
 srcpkgs/you-get/template                      |   1 -
 srcpkgs/youtube-dl/template                   |   1 -
 srcpkgs/youtube-viewer/template               |   1 -
 srcpkgs/yq/template                           |   1 -
 srcpkgs/ytcc/template                         |   1 -
 srcpkgs/ytmdl/template                        |   1 -
 srcpkgs/yturl/template                        |   1 -
 srcpkgs/yubikey-manager/template              |   1 -
 srcpkgs/zabbix/template                       |   1 -
 srcpkgs/zd1211-firmware/template              |   1 -
 srcpkgs/zeek/template                         |   3 -
 srcpkgs/zeroinstall/template                  |   1 -
 srcpkgs/zfs-auto-snapshot/template            |   1 -
 srcpkgs/zfs-prune-snapshots/template          |   1 -
 srcpkgs/zfsbootmenu/template                  |   1 -
 srcpkgs/zim/template                          |   1 -
 srcpkgs/zola/template                         |   1 -
 srcpkgs/zookeeper/template                    |   1 -
 srcpkgs/zramen/template                       |   1 -
 srcpkgs/zsh-autosuggestions/template          |   1 -
 srcpkgs/zsh-completions/template              |   1 -
 srcpkgs/zsh-history-substring-search/template |   1 -
 srcpkgs/zsh-syntax-highlighting/template      |   1 -
 srcpkgs/zynaddsubfx/template                  |   1 -
 srcpkgs/zzz-user-hooks/template               |   1 -
 2112 files changed, 2745 deletions(-)

diff --git a/srcpkgs/0ad-data/template b/srcpkgs/0ad-data/template
index 325dfbf5cc6..f9e93d4c324 100644
--- a/srcpkgs/0ad-data/template
+++ b/srcpkgs/0ad-data/template
@@ -2,7 +2,6 @@
 pkgname=0ad-data
 version=0.0.23b
 revision=1
-archs=noarch
 wrksrc="0ad-${version}-alpha"
 short_desc="Historically-based real-time strategy game (data files)"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/66/template b/srcpkgs/66/template
index ccd676575f9..cd81c7d184d 100644
--- a/srcpkgs/66/template
+++ b/srcpkgs/66/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 66-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}-${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/7kaa/template b/srcpkgs/7kaa/template
index ade56365ec1..5bd2a6a693f 100644
--- a/srcpkgs/7kaa/template
+++ b/srcpkgs/7kaa/template
@@ -20,7 +20,6 @@ pre_configure() {
 }
 
 7kaa-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/7kaa
diff --git a/srcpkgs/Adapta/template b/srcpkgs/Adapta/template
index 03a736b1cc8..7c1029ba44a 100644
--- a/srcpkgs/Adapta/template
+++ b/srcpkgs/Adapta/template
@@ -2,7 +2,6 @@
 pkgname=Adapta
 version=3.95.0.11
 revision=2
-archs=noarch
 wrksrc="adapta-gtk-theme-$version"
 build_style=gnu-configure
 hostmakedepends="automake glib-devel inkscape parallel pkg-config
diff --git a/srcpkgs/Autodia/template b/srcpkgs/Autodia/template
index 83cb4e1fcca..8e91247e940 100644
--- a/srcpkgs/Autodia/template
+++ b/srcpkgs/Autodia/template
@@ -2,7 +2,6 @@
 pkgname=Autodia
 version=2.14
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/CImg/template b/srcpkgs/CImg/template
index a1df4972bfc..2db3a8d4108 100644
--- a/srcpkgs/CImg/template
+++ b/srcpkgs/CImg/template
@@ -2,7 +2,6 @@
 pkgname=CImg
 version=2.9.1
 revision=1
-archs=noarch
 wrksrc="CImg-v.${version}"
 depends="libgraphicsmagick-devel fftw-devel"
 short_desc="Open-source C++ toolkit for image processing"
diff --git a/srcpkgs/Cataclysm-DDA/template b/srcpkgs/Cataclysm-DDA/template
index 6b7ef57eed1..b04b27b7d32 100644
--- a/srcpkgs/Cataclysm-DDA/template
+++ b/srcpkgs/Cataclysm-DDA/template
@@ -57,7 +57,6 @@ Cataclysm-DDA-tiles_package() {
 
 Cataclysm-DDA-tiles-data_package() {
 	short_desc+=" - tiles data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cataclysm-dda/gfx
 		vmove usr/share/cataclysm-dda/sound
@@ -66,7 +65,6 @@ Cataclysm-DDA-tiles-data_package() {
 
 Cataclysm-DDA-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/Cendric/template b/srcpkgs/Cendric/template
index 6f5c16f479b..6dcc1f33e70 100644
--- a/srcpkgs/Cendric/template
+++ b/srcpkgs/Cendric/template
@@ -24,7 +24,6 @@ post_install() {
 Cendric-data_package() {
 	short_desc+=" - data files"
 	repository=nonfree
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/ClusterSSH/template b/srcpkgs/ClusterSSH/template
index ade9b7fefa0..a614f1643c3 100644
--- a/srcpkgs/ClusterSSH/template
+++ b/srcpkgs/ClusterSSH/template
@@ -2,7 +2,6 @@
 pkgname=ClusterSSH
 version=4.14
 revision=1
-archs=noarch
 wrksrc="clusterssh-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="xterm openssh
diff --git a/srcpkgs/ETL/template b/srcpkgs/ETL/template
index 7b8b01956c3..111f96217d0 100644
--- a/srcpkgs/ETL/template
+++ b/srcpkgs/ETL/template
@@ -3,7 +3,6 @@ pkgname=ETL
 reverts="1.3.11_1"
 version=1.2.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Extended Template Library"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/Electron-Cash/template b/srcpkgs/Electron-Cash/template
index 6cf5a5db45c..131db532944 100644
--- a/srcpkgs/Electron-Cash/template
+++ b/srcpkgs/Electron-Cash/template
@@ -2,7 +2,6 @@
 pkgname=Electron-Cash
 version=4.0.12
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-PyQt5 python3-PyQt5-svg python3-qrcode python3-dateutil
diff --git a/srcpkgs/Fonts-TLWG/template b/srcpkgs/Fonts-TLWG/template
index 0baf7333541..42b5d2a74ee 100644
--- a/srcpkgs/Fonts-TLWG/template
+++ b/srcpkgs/Fonts-TLWG/template
@@ -2,7 +2,6 @@
 pkgname=Fonts-TLWG
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="fonts-tlwg-${version}"
 build_style=gnu-configure
 configure_args="--with-ttfdir=/usr/share/fonts/TTF --with-otfdir=/usr/share/fonts/OTF
@@ -22,7 +21,6 @@ post_install() {
 }
 
 Fonts-TLWG-otf_package() {
-	archs=noarch
 	short_desc="Thai fonts OTF"
 	font_dirs="/usr/share/fonts/OTF"
 	pkg_install() {
diff --git a/srcpkgs/GCP-Guest-Environment/template b/srcpkgs/GCP-Guest-Environment/template
index 77e5e396d4f..2c3db4f6f20 100644
--- a/srcpkgs/GCP-Guest-Environment/template
+++ b/srcpkgs/GCP-Guest-Environment/template
@@ -2,7 +2,6 @@
 pkgname=GCP-Guest-Environment
 version=20191210
 revision=1
-archs=noarch
 wrksrc="compute-image-packages-${version}"
 build_wrksrc="packages/python-google-compute-engine"
 build_style=python2-module
diff --git a/srcpkgs/Grammalecte/template b/srcpkgs/Grammalecte/template
index 00e2bbb34a8..f62e8343202 100644
--- a/srcpkgs/Grammalecte/template
+++ b/srcpkgs/Grammalecte/template
@@ -2,7 +2,6 @@
 pkgname=Grammalecte
 version=1.6.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=python3-module
 hostmakedepends="python3-setuptools bsdtar"
diff --git a/srcpkgs/ISOEnts/template b/srcpkgs/ISOEnts/template
index 3f44042e507..0727d8647d6 100644
--- a/srcpkgs/ISOEnts/template
+++ b/srcpkgs/ISOEnts/template
@@ -2,7 +2,6 @@
 pkgname=ISOEnts
 version=1986
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip bsdtar"
 depends="xmlcatmgr"
diff --git a/srcpkgs/Komikku/template b/srcpkgs/Komikku/template
index 9822ee43fc8..06eeaa5ed38 100644
--- a/srcpkgs/Komikku/template
+++ b/srcpkgs/Komikku/template
@@ -2,7 +2,6 @@
 pkgname=Komikku
 version=0.15.1
 revision=1
-archs=noarch
 wrksrc=Komikku-v${version}
 build_style=meson
 hostmakedepends="appstream-glib desktop-file-utils glib-devel gettext
diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
index a73cc80c9e5..ea588136f8a 100644
--- a/srcpkgs/LanguageTool/template
+++ b/srcpkgs/LanguageTool/template
@@ -2,7 +2,6 @@
 pkgname=LanguageTool
 version=4.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Checks your writing in more than 20 languages"
diff --git a/srcpkgs/MoinMoin/template b/srcpkgs/MoinMoin/template
index 2c13dc6a06f..998546ac5b9 100644
--- a/srcpkgs/MoinMoin/template
+++ b/srcpkgs/MoinMoin/template
@@ -2,7 +2,6 @@
 pkgname=MoinMoin
 version=1.9.10
 revision=1
-archs=noarch
 wrksrc=moin-${version}
 build_style=python2-module
 pycompile_module="MoinMoin jabberbot"
diff --git a/srcpkgs/OpenCPN-gshhs-crude/template b/srcpkgs/OpenCPN-gshhs-crude/template
index b2c64e94093..027b3c7a66b 100644
--- a/srcpkgs/OpenCPN-gshhs-crude/template
+++ b/srcpkgs/OpenCPN-gshhs-crude/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://opencpn.org/"
 distfiles="https://launchpad.net/~opencpn/+archive/ubuntu/opencpn/+files/opencpn-gshhs_${version}.orig.tar.xz"
 checksum=bb45b68af09d5a995594748f507cd533505264f0483c8cb8425693331cccf203
-archs=noarch
 
 do_install() {
 	for file in gshhs/*; do
@@ -19,7 +18,6 @@ do_install() {
 
 OpenCPN-gshhs-low_package() {
 	short_desc="${short_desc/Crude/Low}"
-	archs=noarch
 	depends="OpenCPN-gshhs-crude"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-c-1.dat
@@ -30,7 +28,6 @@ OpenCPN-gshhs-low_package() {
 
 OpenCPN-gshhs-intermediate_package() {
 	short_desc="${short_desc/Crude/Intermediate}"
-	archs=noarch
 	depends="OpenCPN-gshhs-low"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-i-1.dat
@@ -41,7 +38,6 @@ OpenCPN-gshhs-intermediate_package() {
 
 OpenCPN-gshhs-high_package() {
 	short_desc="${short_desc/Crude/High}"
-	archs=noarch
 	depends="OpenCPN-gshhs-intermediate"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-h-1.dat
@@ -52,7 +48,6 @@ OpenCPN-gshhs-high_package() {
 
 OpenCPN-gshhs-full_package() {
 	short_desc="${short_desc/Crude/Full}"
-	archs=noarch
 	depends="OpenCPN-gshhs-high"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-f-1.dat
diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index ccae6d0282e..f8ea2a4b35b 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -2,7 +2,6 @@
 pkgname=OpenLP
 version=2.4.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="openlp"
 hostmakedepends="python3-setuptools qt5-host-tools"
diff --git a/srcpkgs/OpenRCT2/template b/srcpkgs/OpenRCT2/template
index 5b0c68a5f80..14e114c58fc 100644
--- a/srcpkgs/OpenRCT2/template
+++ b/srcpkgs/OpenRCT2/template
@@ -53,7 +53,6 @@ post_extract() {
 
 OpenRCT2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openrct2
 	}
diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index e649885fda0..7f06aff8d51 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -2,7 +2,6 @@
 pkgname=PhotoCollage
 version=1.4.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3"
 depends="python3-Pillow python3-gobject"
diff --git a/srcpkgs/ProofGeneral/template b/srcpkgs/ProofGeneral/template
index 208e58f8d68..1b0aaf72921 100644
--- a/srcpkgs/ProofGeneral/template
+++ b/srcpkgs/ProofGeneral/template
@@ -3,7 +3,6 @@ pkgname=ProofGeneral
 version=4.4
 revision=2
 wrksrc="PG-${version}"
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="emacs which"
 depends="emacs perl"
diff --git a/srcpkgs/PyInstaller/template b/srcpkgs/PyInstaller/template
index ad2dadf10f3..4b3d02468de 100644
--- a/srcpkgs/PyInstaller/template
+++ b/srcpkgs/PyInstaller/template
@@ -2,7 +2,6 @@
 pkgname=PyInstaller
 version=3.6
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3 python3-altgraph"
diff --git a/srcpkgs/Pyrex/template b/srcpkgs/Pyrex/template
index 5ab3598b1c0..c1d90574aaf 100644
--- a/srcpkgs/Pyrex/template
+++ b/srcpkgs/Pyrex/template
@@ -2,7 +2,6 @@
 pkgname=Pyrex
 version=0.9.9
 revision=4
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python-devel"
diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index a6551fbdf7c..5d657ed46ca 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -2,7 +2,6 @@
 pkgname=ReText
 version=7.0.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ReText"
 wrksrc="${pkgname,,}-${version}"
diff --git a/srcpkgs/SMC/template b/srcpkgs/SMC/template
index 00f9763bfdd..623bde41157 100644
--- a/srcpkgs/SMC/template
+++ b/srcpkgs/SMC/template
@@ -37,7 +37,6 @@ post_install() {
 
 SMC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/smc
 	}
diff --git a/srcpkgs/SPIRV-Headers/template b/srcpkgs/SPIRV-Headers/template
index 6cc87dc386c..a5e9c17a3ce 100644
--- a/srcpkgs/SPIRV-Headers/template
+++ b/srcpkgs/SPIRV-Headers/template
@@ -2,7 +2,6 @@
 pkgname=SPIRV-Headers
 version=1.5.3
 revision=1
-archs=noarch
 build_style=cmake
 short_desc="Machine-readable files for the SPIR-V Registry"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index da77237f898..3d03d7b4966 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -2,7 +2,6 @@
 pkgname=Solaar
 version=1.0.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyudev"
diff --git a/srcpkgs/TSC/template b/srcpkgs/TSC/template
index 10150e7481c..f28c36a1aa1 100644
--- a/srcpkgs/TSC/template
+++ b/srcpkgs/TSC/template
@@ -25,7 +25,6 @@ post_install() {
 
 TSC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tsc
 	}
diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 3bbba11db49..549e5635542 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -6,7 +6,6 @@ build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"
 depends="python3-gobject python3-requests libnotify"
-archs=noarch
 short_desc="Daemon that notifies you about your followed channels on Twitch.TV"
 maintainer="Giedrius Statkevičius <giedriuswork@gmail.com>"
 license="GPL-3"
diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 29e9ed3761b..df2902a9edd 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -2,7 +2,6 @@
 pkgname=Uranium
 version=4.6.2
 revision=2
-archs=noarch
 build_style=cmake
 pycompile_dirs="usr/lib/uranium/plugins"
 hostmakedepends="python3"
diff --git a/srcpkgs/Vulkan-Headers/template b/srcpkgs/Vulkan-Headers/template
index 2fae2dda25b..3c089e9f79f 100644
--- a/srcpkgs/Vulkan-Headers/template
+++ b/srcpkgs/Vulkan-Headers/template
@@ -2,7 +2,6 @@
 pkgname=Vulkan-Headers
 version=1.2.141
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=cmake
 short_desc="Vulkan header files"
diff --git a/srcpkgs/WiringPi/template b/srcpkgs/WiringPi/template
index 562506c41b5..b9e5c5cbff7 100644
--- a/srcpkgs/WiringPi/template
+++ b/srcpkgs/WiringPi/template
@@ -104,7 +104,6 @@ WiringPi-gpio_package() {
 
 WiringPi-examples_package() {
 	short_desc+=" - examples"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/share/examples
 	}
diff --git a/srcpkgs/WoeUSB/template b/srcpkgs/WoeUSB/template
index 1bb0efa56ff..1ac9d5134a1 100644
--- a/srcpkgs/WoeUSB/template
+++ b/srcpkgs/WoeUSB/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 WoeUSB-cli_package() {
-	archs=noarch
 	depends="bash grub ntfs-3g parted wget"
 	short_desc+=" - command line only"
 	pkg_install() {
diff --git a/srcpkgs/XyGrib-maps/template b/srcpkgs/XyGrib-maps/template
index 797bb62d81a..6c5f0672785 100644
--- a/srcpkgs/XyGrib-maps/template
+++ b/srcpkgs/XyGrib-maps/template
@@ -11,7 +11,6 @@ license="GPL-3.0-or-later"
 homepage="https://opengribs.org"
 distfiles="https://github.com/opengribs/XyGrib/releases/download/v${_xygribver}/XyGrib___High_Resolution_Maps.tar.gz"
 checksum=164d0bca0ab118f242d6d10dfb6e6b2f3eacdcf2781b532336e02a2d223a0d0d
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/XyGrib
diff --git a/srcpkgs/abcde/template b/srcpkgs/abcde/template
index 49fe4f97768..b2a8e0117b2 100644
--- a/srcpkgs/abcde/template
+++ b/srcpkgs/abcde/template
@@ -2,7 +2,6 @@
 pkgname=abcde
 version=2.9.3
 revision=1
-archs=noarch
 conf_files="/etc/${pkgname}.conf"
 depends="cd-discid perl-MusicBrainz-DiscID perl-WebService-MusicBrainz vorbis-tools"
 short_desc="CLI audio CD encoder and tagger"
diff --git a/srcpkgs/abi-compliance-checker/template b/srcpkgs/abi-compliance-checker/template
index 644acae70e6..14e8a5e27e3 100644
--- a/srcpkgs/abi-compliance-checker/template
+++ b/srcpkgs/abi-compliance-checker/template
@@ -2,7 +2,6 @@
 pkgname=abi-compliance-checker
 version=2.3
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="binutils ctags perl"
 checkdepends="binutils ctags"
diff --git a/srcpkgs/ack/template b/srcpkgs/ack/template
index 47d3e6c3550..b3ec895eee3 100644
--- a/srcpkgs/ack/template
+++ b/srcpkgs/ack/template
@@ -2,7 +2,6 @@
 pkgname=ack
 version=3.3.1
 revision=1
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=perl-module
 hostmakedepends="perl perl-File-Next"
diff --git a/srcpkgs/acpilight/template b/srcpkgs/acpilight/template
index 89236bd4c3f..40288bad23b 100644
--- a/srcpkgs/acpilight/template
+++ b/srcpkgs/acpilight/template
@@ -2,7 +2,6 @@
 pkgname=acpilight
 version=1.2
 revision=1
-archs=noarch
 wrksrc="acpilight-v${version}"
 depends="python3"
 short_desc="Backward-compatibile xbacklight replacement"
diff --git a/srcpkgs/acr/template b/srcpkgs/acr/template
index 773799454b6..6ec88da7519 100644
--- a/srcpkgs/acr/template
+++ b/srcpkgs/acr/template
@@ -2,7 +2,6 @@
 pkgname=acr
 version=1.9.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="AutoConf Replacement"
 maintainer="Felipe Nogueira <contato.fnog@gmail.com>"
diff --git a/srcpkgs/adapta-kde/template b/srcpkgs/adapta-kde/template
index 1fc16324be1..25278735438 100644
--- a/srcpkgs/adapta-kde/template
+++ b/srcpkgs/adapta-kde/template
@@ -2,7 +2,6 @@
 pkgname=adapta-kde
 version=20180828
 revision=1
-archs=noarch
 short_desc="Port of the popular GTK theme Adapta for Plasma 5 desktop"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/adwaita-icon-theme/template b/srcpkgs/adwaita-icon-theme/template
index febd2915be6..b3ba7687d1b 100644
--- a/srcpkgs/adwaita-icon-theme/template
+++ b/srcpkgs/adwaita-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-icon-theme
 version=3.36.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 depends="librsvg"
diff --git a/srcpkgs/adwaita-plus/template b/srcpkgs/adwaita-plus/template
index c5faf56aeb2..b0f0962ec9c 100644
--- a/srcpkgs/adwaita-plus/template
+++ b/srcpkgs/adwaita-plus/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-plus
 version=5.0
 revision=1
-archs=noarch
 short_desc="Modern third-party icons theme based on GNOME's Adwaita"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index 2b2614a4eba..1084b32e97a 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -2,7 +2,6 @@
 pkgname=afew
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx pkg-config"
 depends="notmuch-python3 python3-dkimpy python3-chardet notmuch"
diff --git a/srcpkgs/aisleriot/template b/srcpkgs/aisleriot/template
index 1b5b594ddd9..29a66674f63 100644
--- a/srcpkgs/aisleriot/template
+++ b/srcpkgs/aisleriot/template
@@ -20,7 +20,6 @@ checksum=eed8edb267a9fa61651b1d3a22a83f51415a4e55d76d5ae737e18a9e9477016b
 
 aisleriot-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/alacritty/template b/srcpkgs/alacritty/template
index 74ddfcd6d65..479c02990c4 100644
--- a/srcpkgs/alacritty/template
+++ b/srcpkgs/alacritty/template
@@ -28,7 +28,6 @@ post_install() {
 
 alacritty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/albatross-themes/template b/srcpkgs/albatross-themes/template
index ca8ff1b363c..1473a296df5 100644
--- a/srcpkgs/albatross-themes/template
+++ b/srcpkgs/albatross-themes/template
@@ -2,7 +2,6 @@
 pkgname=albatross-themes
 version=1.7.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant black GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/alienfx/template b/srcpkgs/alienfx/template
index 62ee564ad4b..f48ad0461aa 100644
--- a/srcpkgs/alienfx/template
+++ b/srcpkgs/alienfx/template
@@ -2,7 +2,6 @@
 pkgname=alienfx
 version=2.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="alienfx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index c3b1fb07414..8ea0a60ed04 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -2,7 +2,6 @@
 pkgname=alot
 version=0.9.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools python3-Twisted notmuch-python3 python3-configobj
diff --git a/srcpkgs/alsa-firmware/template b/srcpkgs/alsa-firmware/template
index 63d37de92b1..45d6a2be1f1 100644
--- a/srcpkgs/alsa-firmware/template
+++ b/srcpkgs/alsa-firmware/template
@@ -2,7 +2,6 @@
 pkgname=alsa-firmware
 version=1.2.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-hotplug-dir=/usr/lib/firmware"
 short_desc="Advanced Linux Sound Architecture (ALSA) firmware"
diff --git a/srcpkgs/amiri-font/template b/srcpkgs/amiri-font/template
index 039962190ae..f1de46736dd 100644
--- a/srcpkgs/amiri-font/template
+++ b/srcpkgs/amiri-font/template
@@ -2,7 +2,6 @@
 pkgname=amiri-font
 version=0.113
 revision=1
-archs=noarch
 wrksrc="Amiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/ampache/template b/srcpkgs/ampache/template
index 3639557449a..99b249cda74 100644
--- a/srcpkgs/ampache/template
+++ b/srcpkgs/ampache/template
@@ -2,7 +2,6 @@
 pkgname=ampache
 version=3.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="php mysql"
diff --git a/srcpkgs/angrysearch/template b/srcpkgs/angrysearch/template
index 88a6954ac85..3bd8eee7f3c 100644
--- a/srcpkgs/angrysearch/template
+++ b/srcpkgs/angrysearch/template
@@ -5,7 +5,6 @@ revision=2
 wrksrc="ANGRYsearch-${version}"
 hostmakedepends="python3"
 depends="python3-PyQt5 xdg-utils"
-archs=noarch
 short_desc="Instant file search"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/anki/template b/srcpkgs/anki/template
index a25bc0d4e7e..92e66d28c52 100644
--- a/srcpkgs/anki/template
+++ b/srcpkgs/anki/template
@@ -2,7 +2,6 @@
 pkgname=anki
 version=2.1.15
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="python3-PyQt5-webengine python3-requests python3-SQLAlchemy
  python3-PyAudio python3-mpv python3-Markdown python3-send2trash
diff --git a/srcpkgs/ansi/template b/srcpkgs/ansi/template
index be114d5203b..705b26bad4e 100644
--- a/srcpkgs/ansi/template
+++ b/srcpkgs/ansi/template
@@ -2,7 +2,6 @@
 pkgname=ansi
 version=2.0.4
 revision=1
-archs=noarch
 depends="bash"
 short_desc="ANSI escape codes in pure Bash"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 94c470574ae..581ce88bc5e 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -2,7 +2,6 @@
 pkgname=ansible
 version=2.9.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-cryptography python3-Jinja2 python3-paramiko
diff --git a/srcpkgs/antlr3-bin/template b/srcpkgs/antlr3-bin/template
index 305df8ae69e..2ed87245670 100644
--- a/srcpkgs/antlr3-bin/template
+++ b/srcpkgs/antlr3-bin/template
@@ -2,7 +2,6 @@
 pkgname=antlr3-bin
 version=3.4
 revision=1
-archs=noarch
 build_style=fetch
 depends="virtual?java-runtime"
 short_desc="Parser generator for C++, C#, Java, and Python"
diff --git a/srcpkgs/apache-ant/template b/srcpkgs/apache-ant/template
index 80a738985a0..4db3a4aa0be 100644
--- a/srcpkgs/apache-ant/template
+++ b/srcpkgs/apache-ant/template
@@ -2,7 +2,6 @@
 pkgname=apache-ant
 version=1.10.8
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-runtime"
 short_desc="Java library and command-line tool that help building software"
@@ -42,7 +41,6 @@ do_install() {
 apache-ant-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove $_prefix/manual
 	}
diff --git a/srcpkgs/apache-jmeter/template b/srcpkgs/apache-jmeter/template
index 73f8f06fd96..eaa6eda1d05 100644
--- a/srcpkgs/apache-jmeter/template
+++ b/srcpkgs/apache-jmeter/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 apache-jmeter-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apache-maven/template b/srcpkgs/apache-maven/template
index a6c9fd3e5a2..956b472f373 100644
--- a/srcpkgs/apache-maven/template
+++ b/srcpkgs/apache-maven/template
@@ -2,7 +2,6 @@
 pkgname=apache-maven
 version=3.6.3
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-environment"
 short_desc="Software project management and comprehension tool"
diff --git a/srcpkgs/apache-storm/template b/srcpkgs/apache-storm/template
index 6ae346a0557..3efd37f6052 100644
--- a/srcpkgs/apache-storm/template
+++ b/srcpkgs/apache-storm/template
@@ -2,7 +2,6 @@
 pkgname=apache-storm
 version=2.2.0
 revision=2
-archs=noarch
 depends="virtual?java-runtime python3 bash"
 short_desc="Distributed realtime computation system"
 maintainer="bougyman <bougyman@voidlinux.org>"
diff --git a/srcpkgs/apache-tomcat/template b/srcpkgs/apache-tomcat/template
index 7cab7d1d9af..d8abc369365 100644
--- a/srcpkgs/apache-tomcat/template
+++ b/srcpkgs/apache-tomcat/template
@@ -40,7 +40,6 @@ post_install() {
 }
 
 apache-tomcat-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -58,7 +57,6 @@ apache-tomcat-examples_package() {
 }
 
 apache-tomcat-manager_package() {
-	archs=noarch
 	short_desc+=" - Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -67,7 +65,6 @@ apache-tomcat-manager_package() {
 }
 
 apache-tomcat-host-manager_package() {
-	archs=noarch
 	short_desc+=" - Host Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index cd7073fdcfb..3fc8aaea479 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -63,7 +63,6 @@ post_install() {
 }
 
 apparmor-vim_package() {
-	archs=noarch
 	short_desc+=" - Vim syntax"
 	depends="vim"
 	pkg_install() {
diff --git a/srcpkgs/apt/template b/srcpkgs/apt/template
index 8578ed028e2..1fb3ee57e46 100644
--- a/srcpkgs/apt/template
+++ b/srcpkgs/apt/template
@@ -29,7 +29,6 @@ apt-devel_package() {
 }
 
 apt-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation files"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 5e5bd84dd13..b361ccbf48d 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -2,7 +2,6 @@
 pkgname=arandr
 version=0.1.10
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-docutils"
 depends="python3-gobject xrandr python3"
diff --git a/srcpkgs/arc-theme/template b/srcpkgs/arc-theme/template
index ccc5f35ea5f..3afd69b34f1 100644
--- a/srcpkgs/arc-theme/template
+++ b/srcpkgs/arc-theme/template
@@ -2,7 +2,6 @@
 pkgname=arc-theme
 version=20200513
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_script="./autogen.sh"
 hostmakedepends="automake glib-devel pkg-config
diff --git a/srcpkgs/archlabs-themes/template b/srcpkgs/archlabs-themes/template
index aa648d35457..a565615ea6f 100644
--- a/srcpkgs/archlabs-themes/template
+++ b/srcpkgs/archlabs-themes/template
@@ -4,7 +4,6 @@ version=20180503
 revision=2
 _commit=73d0900117daefedf6c76dd0e71538bb954f1b10
 wrksrc="ArchLabs-Themes-${_commit}"
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Themes used in ArchLabs"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/argtable/template b/srcpkgs/argtable/template
index 7083e703a50..6719ab7f4fc 100644
--- a/srcpkgs/argtable/template
+++ b/srcpkgs/argtable/template
@@ -26,7 +26,6 @@ argtable-devel_package() {
 argtable-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/artwiz-fonts/template b/srcpkgs/artwiz-fonts/template
index ceea828ee9c..b19ad6d26af 100644
--- a/srcpkgs/artwiz-fonts/template
+++ b/srcpkgs/artwiz-fonts/template
@@ -2,7 +2,6 @@
 pkgname=artwiz-fonts
 version=1.3
 revision=4
-archs=noarch
 create_wrksrc=yes
 depends="font-util mkfontdir"
 short_desc="Small futuristic ASCII fonts for X"
diff --git a/srcpkgs/asciidoc/template b/srcpkgs/asciidoc/template
index 5665577bacb..377800871a9 100644
--- a/srcpkgs/asciidoc/template
+++ b/srcpkgs/asciidoc/template
@@ -2,7 +2,6 @@
 pkgname=asciidoc
 version=9.0.2
 revision=1
-archs=noarch
 wrksrc=${pkgname}-py3-${version}
 build_style=gnu-configure
 hostmakedepends="automake docbook-xsl libxslt python3"
diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 38b8871753c..551a15be881 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -2,7 +2,6 @@
 pkgname=asciinema
 version=2.0.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/asciiquarium/template b/srcpkgs/asciiquarium/template
index 128674e7a6e..6f9217a19e1 100644
--- a/srcpkgs/asciiquarium/template
+++ b/srcpkgs/asciiquarium/template
@@ -2,7 +2,6 @@
 pkgname=asciiquarium
 version=1.1
 revision=2
-archs=noarch
 wrksrc="${pkgname}_${version}"
 depends="perl perl-Term-Animation perl-Curses"
 short_desc="Enjoy the mysteries of the sea from the safety of your own terminal"
diff --git a/srcpkgs/aspell-ru/template b/srcpkgs/aspell-ru/template
index f0a6d0fa52d..6c61de58593 100644
--- a/srcpkgs/aspell-ru/template
+++ b/srcpkgs/aspell-ru/template
@@ -14,7 +14,6 @@ checksum=5c29b6ccce57bc3f7c4fb0510d330446b9c769e59c92bdfede27333808b6e646
 
 words-ru_package() {
 	short_desc="Russian dictionary word list"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/dict
 		precat *.cwl |
diff --git a/srcpkgs/astromenace/template b/srcpkgs/astromenace/template
index ae6bbc38330..55613a3d8f6 100644
--- a/srcpkgs/astromenace/template
+++ b/srcpkgs/astromenace/template
@@ -34,7 +34,6 @@ do_install() {
 
 astromenace-data_package() {
 	short_desc+=" - data file"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/astromenace
 		vcopy ${wrksrc}/gamedata usr/share/astromenace
diff --git a/srcpkgs/asus-kbd-backlight/template b/srcpkgs/asus-kbd-backlight/template
index e58e8341650..cc612d3a809 100644
--- a/srcpkgs/asus-kbd-backlight/template
+++ b/srcpkgs/asus-kbd-backlight/template
@@ -3,7 +3,6 @@ pkgname=asus-kbd-backlight
 version=1.2
 revision=1
 create_wrksrc=yes
-archs=noarch
 depends="bash"
 short_desc="Helper for adjusting keyboard backlight brightness in Asus Zenbook"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/atool/template b/srcpkgs/atool/template
index 56264dd3e16..84019be7c53 100644
--- a/srcpkgs/atool/template
+++ b/srcpkgs/atool/template
@@ -2,7 +2,6 @@
 pkgname=atool
 version=0.39.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index 4d8d2fbe12a..521e12ec4f1 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 libaudit-common_package() {
-	archs=noarch
 	short_desc+=" - Library common files"
 	pkg_install() {
 		vmove etc/libaudit.conf
diff --git a/srcpkgs/auto-auto-complete/template b/srcpkgs/auto-auto-complete/template
index 2fa45c4fc47..d4eefd9d547 100644
--- a/srcpkgs/auto-auto-complete/template
+++ b/srcpkgs/auto-auto-complete/template
@@ -2,7 +2,6 @@
 pkgname=auto-auto-complete
 version=7.2
 revision=4
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3 texinfo"
 depends="python3"
diff --git a/srcpkgs/autoconf-archive/template b/srcpkgs/autoconf-archive/template
index b04bb9a7905..ea9665901cb 100644
--- a/srcpkgs/autoconf-archive/template
+++ b/srcpkgs/autoconf-archive/template
@@ -2,7 +2,6 @@
 pkgname=autoconf-archive
 version=2019.01.06
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="texinfo"
 depends="autoconf"
diff --git a/srcpkgs/autoconf/template b/srcpkgs/autoconf/template
index a7aecf1359e..954bfea8d2c 100644
--- a/srcpkgs/autoconf/template
+++ b/srcpkgs/autoconf/template
@@ -2,7 +2,6 @@
 pkgname=autoconf
 version=2.69
 revision=8
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl m4 help2man"
 depends="virtual?awk m4 perl"
diff --git a/srcpkgs/autoconf213/template b/srcpkgs/autoconf213/template
index a1ecfe21fa9..7d471a040cf 100644
--- a/srcpkgs/autoconf213/template
+++ b/srcpkgs/autoconf213/template
@@ -2,7 +2,6 @@
 pkgname=autoconf213
 version=2.13
 revision=3
-archs=noarch
 wrksrc="autoconf-${version}"
 build_style=gnu-configure
 configure_args="--program-suffix='-2.13'"
diff --git a/srcpkgs/autojump/template b/srcpkgs/autojump/template
index 2448a2dd894..de499da67e1 100644
--- a/srcpkgs/autojump/template
+++ b/srcpkgs/autojump/template
@@ -2,7 +2,6 @@
 pkgname=autojump
 version=22.5.3
 revision=2
-archs=noarch
 wrksrc="${pkgname}-release-v${version}"
 hostmakedepends="python3"
 depends="python3"
diff --git a/srcpkgs/automake/template b/srcpkgs/automake/template
index f9752f9efb1..ae473c521f5 100644
--- a/srcpkgs/automake/template
+++ b/srcpkgs/automake/template
@@ -3,7 +3,6 @@
 pkgname=automake
 version=1.16.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_args="${makejobs}"
 hostmakedepends="perl autoconf"
diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index b86b81a50ce..86d7d32723d 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -2,7 +2,6 @@
 pkgname=autorandr
 version=1.10.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools pkg-config"
 depends="python3-setuptools xrandr"
diff --git a/srcpkgs/avahi-discover/template b/srcpkgs/avahi-discover/template
index 1c4249f1036..de7039cffa5 100644
--- a/srcpkgs/avahi-discover/template
+++ b/srcpkgs/avahi-discover/template
@@ -103,7 +103,6 @@ do_install() {
 avahi-python3-utils_package() {
 	depends="avahi-python3>=${version}_${revision}"
 	short_desc="Avahi python utilities"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		vmove usr/bin/avahi-bookmarks
@@ -114,14 +113,12 @@ avahi-python3-utils_package() {
 avahi-python-utils_package() {
 	short_desc="Avahi python utilities - transitional dummy pkg"
 	depends="avahi-python3-utils>=${version}_${revision}"
-	archs=noarch
 	build_style=meta
 }
 
 avahi-python_package() {
 	depends="python-dbus"
 	short_desc="Python utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py2_sitelib}/avahi
 	}
@@ -130,7 +127,6 @@ avahi-python_package() {
 avahi-python3_package() {
 	depends="python3-dbus"
 	short_desc="Python3 utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py3_sitelib}/avahi
 	}
diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index af1491295da..19c6845f242 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -2,7 +2,6 @@
 pkgname=avideo
 version=2017.9.27
 revision=5
-archs=noarch
 wrksrc="avideo"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/awoken-icons/template b/srcpkgs/awoken-icons/template
index f52c4f48187..ede6ea0c9d0 100644
--- a/srcpkgs/awoken-icons/template
+++ b/srcpkgs/awoken-icons/template
@@ -2,7 +2,6 @@
 pkgname=awoken-icons
 version=2.5.2
 revision=4
-archs=noarch
 wrksrc=AwOken-2.5
 hostmakedepends="unzip"
 short_desc="Simple and quite complete icon set, Token-style"
@@ -39,7 +38,6 @@ do_install() {
 awoken-icons-dark_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - Dark icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenDark
 	}
@@ -48,7 +46,6 @@ awoken-icons-dark_package() {
 awoken-icons-white_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - White icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenWhite
 	}
diff --git a/srcpkgs/aws-cli/template b/srcpkgs/aws-cli/template
index c8fadf32d2e..8bc1de2fa00 100644
--- a/srcpkgs/aws-cli/template
+++ b/srcpkgs/aws-cli/template
@@ -2,7 +2,6 @@
 pkgname=aws-cli
 version=1.18.105
 revision=1
-archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/awsume/template b/srcpkgs/awsume/template
index 0f6c21d60d1..3c01a09de16 100644
--- a/srcpkgs/awsume/template
+++ b/srcpkgs/awsume/template
@@ -2,7 +2,6 @@
 pkgname=awsume
 version=4.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 makedepends="python3-argcomplete python3-boto3 python3-colorama python3-coverage
  python3-pluggy python3-psutil python3-xmltodict python3-yaml"
diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 9b5756804ea..bdb24fa3c1a 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -2,7 +2,6 @@
 pkgname=azote
 version=1.7.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3>=3.4 python3-setuptools python3-gobject python3-Pillow gtk+3 feh python3-send2trash xrandr grim slurp ImageMagick python3-yaml"
diff --git a/srcpkgs/b43-firmware-classic/template b/srcpkgs/b43-firmware-classic/template
index b38e6ac7ee6..0bc8d62447e 100644
--- a/srcpkgs/b43-firmware-classic/template
+++ b/srcpkgs/b43-firmware-classic/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware-classic
 version=5.100.138
 revision=1
-archs=noarch
 wrksrc="broadcom-wl-${version}"
 hostmakedepends="b43-fwcutter"
 short_desc="Firmware for Broadcom B43 wireless (trusted release)"
diff --git a/srcpkgs/b43-firmware/template b/srcpkgs/b43-firmware/template
index e5f894b81e7..45cbdd4cc08 100644
--- a/srcpkgs/b43-firmware/template
+++ b/srcpkgs/b43-firmware/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware
 version=6.30.163.46
 revision=1
-archs=noarch
 wrksrc="${pkgname}"
 create_wrksrc=yes
 hostmakedepends="b43-fwcutter"
diff --git a/srcpkgs/bCNC/template b/srcpkgs/bCNC/template
index 2e715c512a9..ede158da583 100644
--- a/srcpkgs/bCNC/template
+++ b/srcpkgs/bCNC/template
@@ -2,7 +2,6 @@
 pkgname=bCNC
 version=0.9.14.306
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyserial python3-Pillow python3-tkinter python3-numpy python3-scipy"
diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template
index ef7fbca68b6..cac24c685cc 100644
--- a/srcpkgs/backblaze-b2/template
+++ b/srcpkgs/backblaze-b2/template
@@ -2,7 +2,6 @@
 pkgname=backblaze-b2
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="b2-${version}"
 build_style=python3-module
 pycompile_module="b2"
@@ -43,6 +42,5 @@ do_check() {
 python-b2_package() {
 	depends="backblaze-b2>=${version}_${revision}"
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional package"
 }
diff --git a/srcpkgs/backintime-qt/template b/srcpkgs/backintime-qt/template
index 8453da9bafb..422529bf923 100644
--- a/srcpkgs/backintime-qt/template
+++ b/srcpkgs/backintime-qt/template
@@ -2,7 +2,6 @@
 pkgname=backintime-qt
 version=1.2.1
 revision=1
-archs=noarch
 wrksrc=backintime-${version}
 build_wrksrc="qt"
 build_style=configure
diff --git a/srcpkgs/backintime/template b/srcpkgs/backintime/template
index 2dfc98051f7..6c95fcd722a 100644
--- a/srcpkgs/backintime/template
+++ b/srcpkgs/backintime/template
@@ -2,7 +2,6 @@
 pkgname=backintime
 version=1.2.1
 revision=1
-archs=noarch
 build_wrksrc="common"
 build_style=configure
 configure_args="--python3"
diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index d29873ecf61..0709b663aa7 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -2,7 +2,6 @@
 pkgname=bandit
 version=1.6.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="bandit"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bash-completion/template b/srcpkgs/bash-completion/template
index 704b0784688..080e387f5e6 100644
--- a/srcpkgs/bash-completion/template
+++ b/srcpkgs/bash-completion/template
@@ -2,7 +2,6 @@
 pkgname=bash-completion
 version=2.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_args="profiledir=/etc/bash/bashrc.d"
 depends="bash"
diff --git a/srcpkgs/bash-preexec/template b/srcpkgs/bash-preexec/template
index 771ff0426ff..6d71655eecf 100644
--- a/srcpkgs/bash-preexec/template
+++ b/srcpkgs/bash-preexec/template
@@ -2,7 +2,6 @@
 pkgname=bash-preexec
 version=0.3.7
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Preexec and Precmd functions for Bash just like Zsh"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/bashmount/template b/srcpkgs/bashmount/template
index 1c797678452..68d2880e75a 100644
--- a/srcpkgs/bashmount/template
+++ b/srcpkgs/bashmount/template
@@ -2,7 +2,6 @@
 pkgname=bashmount
 version=4.3.0
 revision=1
-archs=noarch
 conf_files="/etc/$pkgname.conf"
 depends="bash util-linux"
 short_desc="Tool to mount and unmount removable media"
diff --git a/srcpkgs/bats/template b/srcpkgs/bats/template
index 890b0d14e54..ded7e5ee315 100644
--- a/srcpkgs/bats/template
+++ b/srcpkgs/bats/template
@@ -2,7 +2,6 @@
 pkgname=bats
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="bats-core-${version}"
 depends="bash"
 short_desc="Bash Automated Testing System"
diff --git a/srcpkgs/bdf2psf/template b/srcpkgs/bdf2psf/template
index d431bc560c9..3258f1871e5 100644
--- a/srcpkgs/bdf2psf/template
+++ b/srcpkgs/bdf2psf/template
@@ -2,7 +2,6 @@
 pkgname=bdf2psf
 version=1.196
 revision=1
-archs=noarch
 wrksrc="console-setup-${version}"
 depends="perl"
 short_desc="Generate console fonts from BDF source fonts"
diff --git a/srcpkgs/beard/template b/srcpkgs/beard/template
index 93d69607399..5e1180c49bf 100644
--- a/srcpkgs/beard/template
+++ b/srcpkgs/beard/template
@@ -2,7 +2,6 @@
 pkgname=beard
 version=0.3
 revision=1
-archs=noarch
 short_desc="Simple hibernation daemon"
 maintainer="Samantha Baldwin <fuhsaz+void@cryptic.li>"
 license="Unlicense"
diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index bf0240f1f54..8ebdcc4a42c 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -2,7 +2,6 @@
 pkgname=beets
 version=1.4.9
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-munkres python3-musicbrainzngs
diff --git a/srcpkgs/betterlockscreen/template b/srcpkgs/betterlockscreen/template
index c38dd536e77..a438c298aca 100644
--- a/srcpkgs/betterlockscreen/template
+++ b/srcpkgs/betterlockscreen/template
@@ -2,7 +2,6 @@
 pkgname=betterlockscreen
 version=3.0.1
 revision=2
-archs=noarch
 depends="ImageMagick bash bc feh i3lock-color xdpyinfo xrandr xrdb"
 short_desc="Sweet looking lockscreen for linux system"
 maintainer="Aleksander Zien <Aleks@nderZien.com>"
diff --git a/srcpkgs/biber/template b/srcpkgs/biber/template
index 23b94472d1e..af2ddfb4abe 100644
--- a/srcpkgs/biber/template
+++ b/srcpkgs/biber/template
@@ -2,7 +2,6 @@
 pkgname=biber
 version=2.14
 revision=2
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 06a279cff2c..8592e590c0c 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -120,7 +120,6 @@ binutils-devel_package() {
 }
 
 binutils-doc_package() {
-	archs=noarch
 	short_desc+=" - info files"
 	pkg_install() {
 		vmove usr/share/info
diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index fccd523d584..c646a08f2e7 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -2,7 +2,6 @@
 pkgname=binwalk
 version=2.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"
 hostmakedepends="python3"
diff --git a/srcpkgs/biosdisk/template b/srcpkgs/biosdisk/template
index 324d249d36c..d13ebdac57e 100644
--- a/srcpkgs/biosdisk/template
+++ b/srcpkgs/biosdisk/template
@@ -3,7 +3,6 @@ pkgname=biosdisk
 version=1.01
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="syslinux wget cdrtools"
 short_desc="Utility for creating Dell BIOS flash disks"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/bitfighter/template b/srcpkgs/bitfighter/template
index a91443cbc3c..ae01e4bca51 100644
--- a/srcpkgs/bitfighter/template
+++ b/srcpkgs/bitfighter/template
@@ -28,7 +28,6 @@ post_install() {
 
 bitfighter-data_package() {
 	short_desc+=" - classic level pack"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/bitfighter
 	}
diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index ab7bf23c85e..1798d9ed60d 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -2,7 +2,6 @@
 pkgname=black
 version=19.10b0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3 _black_version.py"
 hostmakedepends="git python3-setuptools"
diff --git a/srcpkgs/blackbird-themes/template b/srcpkgs/blackbird-themes/template
index 0e4de2ad703..3fc7e9c99bf 100644
--- a/srcpkgs/blackbird-themes/template
+++ b/srcpkgs/blackbird-themes/template
@@ -2,7 +2,6 @@
 pkgname=blackbird-themes
 version=0.4
 revision=3
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant dark GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/blackbox/template b/srcpkgs/blackbox/template
index cc7fbdc68b0..01f6dc23602 100644
--- a/srcpkgs/blackbox/template
+++ b/srcpkgs/blackbox/template
@@ -2,7 +2,6 @@
 pkgname=blackbox
 version=1.20181219
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Safely store secrets in Git/Mercurial/Subversion"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
diff --git a/srcpkgs/blazeblogger/template b/srcpkgs/blazeblogger/template
index 0eb8d776fc8..78acb7129b3 100644
--- a/srcpkgs/blazeblogger/template
+++ b/srcpkgs/blazeblogger/template
@@ -2,7 +2,6 @@
 pkgname=blazeblogger
 version=1.2.0
 revision=2
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="CLI blogging CMS"
diff --git a/srcpkgs/bleachbit/template b/srcpkgs/bleachbit/template
index 524794f0cb2..b1f81bdb656 100644
--- a/srcpkgs/bleachbit/template
+++ b/srcpkgs/bleachbit/template
@@ -2,7 +2,6 @@
 pkgname=bleachbit
 version=4.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/bleachbit"
 make_install_args="prefix=/usr"
diff --git a/srcpkgs/bluebird-themes/template b/srcpkgs/bluebird-themes/template
index 47034af481c..2e61b2a8592 100644
--- a/srcpkgs/bluebird-themes/template
+++ b/srcpkgs/bluebird-themes/template
@@ -2,7 +2,6 @@
 pkgname=bluebird-themes
 version=1.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant blue GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 5412f16a2b2..af8127f262a 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -136,7 +136,6 @@ boost-python3-1.72_package() {
 	}
 }
 boost-build_package() {
-	archs=noarch
 	conf_files="/etc/site-config.jam"
 	short_desc+=" - Boost.Build framework"
 	pkg_install() {
diff --git a/srcpkgs/bootiso/template b/srcpkgs/bootiso/template
index 78a6205c546..e3450b9e665 100644
--- a/srcpkgs/bootiso/template
+++ b/srcpkgs/bootiso/template
@@ -2,7 +2,6 @@
 pkgname=bootiso
 version=4.1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="prefix=/usr"
 depends="bash binutils coreutils curl dosfstools e2fsprogs eudev exfat-utils
diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 9ca5df9724f..03471b6d123 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -2,7 +2,6 @@
 pkgname=borgmatic
 version=1.5.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="borg python3-setuptools python3-ruamel.yaml python3-pykwalify
diff --git a/srcpkgs/boswars/template b/srcpkgs/boswars/template
index 4587f93cfd0..2ac87925dec 100644
--- a/srcpkgs/boswars/template
+++ b/srcpkgs/boswars/template
@@ -56,7 +56,6 @@ do_install() {
 
 boswars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/boswars/campaigns
 		vmove usr/share/boswars/doc
diff --git a/srcpkgs/botan/template b/srcpkgs/botan/template
index 49d382d1bcc..5c997e49231 100644
--- a/srcpkgs/botan/template
+++ b/srcpkgs/botan/template
@@ -88,7 +88,6 @@ post_install() {
 
 botan-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/breeze-cursors/template b/srcpkgs/breeze-cursors/template
index 579ad8ffaa8..80256b0ccbd 100644
--- a/srcpkgs/breeze-cursors/template
+++ b/srcpkgs/breeze-cursors/template
@@ -2,7 +2,6 @@
 pkgname=breeze-cursors
 version=1.0
 revision=2
-archs=noarch
 create_wrksrc=yes
 build_style=meta
 depends="breeze-amber-cursor-theme
@@ -56,49 +55,42 @@ do_install() {
 }
 
 breeze-amber-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Amber cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Amber
 	}
 }
 breeze-blue-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Blue cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Blue
 	}
 }
 breeze-contrast-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Contrast cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Contrast
 	}
 }
 breeze-hacked-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Hacked cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Hacked
 	}
 }
 breeze-obsidian-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Obsidian cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Obsidian
 	}
 }
 breeze-purple-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Purple cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Purple
 	}
 }
 breeze-red-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Red cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Red
diff --git a/srcpkgs/breeze/template b/srcpkgs/breeze/template
index 03dbbb2240b..3958629f68c 100644
--- a/srcpkgs/breeze/template
+++ b/srcpkgs/breeze/template
@@ -23,7 +23,6 @@ fi
 
 breeze-snow-cursor-theme_package() {
 	short_desc="Breeze Snow cursor theme"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Snow
 	}
diff --git a/srcpkgs/brise/template b/srcpkgs/brise/template
index 442ffddc383..7c50e282036 100644
--- a/srcpkgs/brise/template
+++ b/srcpkgs/brise/template
@@ -2,7 +2,6 @@
 pkgname=brise
 version=0.38.20180515
 revision=2
-archs=noarch
 wrksrc=brise
 build_style=gnu-makefile
 hostmakedepends="pkg-config librime-devel"
diff --git a/srcpkgs/broadcom-bt-firmware/template b/srcpkgs/broadcom-bt-firmware/template
index 8aeef706d15..20e8a30acb4 100644
--- a/srcpkgs/broadcom-bt-firmware/template
+++ b/srcpkgs/broadcom-bt-firmware/template
@@ -3,7 +3,6 @@ pkgname=broadcom-bt-firmware
 version=12.0.1.1105
 revision=1
 _patch=_p1
-archs=noarch
 wrksrc="${pkgname}-${version}${_patch}"
 hostmakedepends="perl"
 short_desc="Broadcom Bluetooth firmware for Linux kernel"
diff --git a/srcpkgs/bsdbuild/template b/srcpkgs/bsdbuild/template
index 11115999c94..95e00c88829 100644
--- a/srcpkgs/bsdbuild/template
+++ b/srcpkgs/bsdbuild/template
@@ -2,7 +2,6 @@
 pkgname=bsdbuild
 version=3.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-manpages --with-manlinks"
 hostmakedepends="groff perl"
diff --git a/srcpkgs/btrfs-backup/template b/srcpkgs/btrfs-backup/template
index 55a3800a857..32cda1dc0c2 100644
--- a/srcpkgs/btrfs-backup/template
+++ b/srcpkgs/btrfs-backup/template
@@ -3,7 +3,6 @@ pkgname=btrfs-backup
 version=0.3.1
 revision=2
 wrksrc="${pkgname/-/_}-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="${pkgname/-/_}"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bucklespring/template b/srcpkgs/bucklespring/template
index ac9bfd3b499..1edf3c6af4c 100644
--- a/srcpkgs/bucklespring/template
+++ b/srcpkgs/bucklespring/template
@@ -27,7 +27,6 @@ do_install() {
 
 bucklespring-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/buildbot-slave/template b/srcpkgs/buildbot-slave/template
index 976fd7e689f..8437af6f6da 100644
--- a/srcpkgs/buildbot-slave/template
+++ b/srcpkgs/buildbot-slave/template
@@ -2,7 +2,6 @@
 pkgname=buildbot-slave
 version=0.8.14
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="buildslave"
 hostmakedepends="python"
diff --git a/srcpkgs/buildbot/template b/srcpkgs/buildbot/template
index 9bee50ec737..d687c8ad989 100644
--- a/srcpkgs/buildbot/template
+++ b/srcpkgs/buildbot/template
@@ -3,7 +3,6 @@ pkgname=buildbot
 reverts="2.4.1_1"
 version=0.8.14
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="buildbot"
 pycompile_dirs="usr/share/buildbot/contrib"
diff --git a/srcpkgs/buku/template b/srcpkgs/buku/template
index 5a5be1e8d2c..276f227bcf1 100644
--- a/srcpkgs/buku/template
+++ b/srcpkgs/buku/template
@@ -2,7 +2,6 @@
 pkgname=buku
 version=4.3
 revision=1
-archs=noarch
 depends="python3-urllib3 python3-BeautifulSoup4 python3-cryptography python3-html5lib"
 short_desc="Cmdline bookmark management utility"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/buku_run/template b/srcpkgs/buku_run/template
index a353c85bcd3..4f73ddec5f6 100644
--- a/srcpkgs/buku_run/template
+++ b/srcpkgs/buku_run/template
@@ -2,7 +2,6 @@
 pkgname=buku_run
 version=0.1.1
 revision=1
-archs=noarch
 conf_files="/etc/buku_run.config"
 depends="rofi gawk sed buku bash"
 short_desc="Rofi frontend for buku bookmarks manager"
diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 20f200e74d6..fecc2f4a967 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -2,7 +2,6 @@
 pkgname=bum
 version=0.1.3
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="bum"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bumblebee-status/template b/srcpkgs/bumblebee-status/template
index 48cc3d02b04..51c9ded64da 100644
--- a/srcpkgs/bumblebee-status/template
+++ b/srcpkgs/bumblebee-status/template
@@ -2,7 +2,6 @@
 pkgname=bumblebee-status
 version=1.9.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}/bumblebee"
 depends="python-netifaces python-psutil python-requests"
 short_desc="Modular, theme-able status line generator for the i3 window manager"
diff --git a/srcpkgs/burp2-server/template b/srcpkgs/burp2-server/template
index 9845f6afe9e..1c48742389a 100644
--- a/srcpkgs/burp2-server/template
+++ b/srcpkgs/burp2-server/template
@@ -79,7 +79,6 @@ burp2-client_package() {
 
 burp2-doc_package() {
 	short_desc="${_desc} - Doc and examples"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/burp
 		vmove usr/share/examples
diff --git a/srcpkgs/bwidget/template b/srcpkgs/bwidget/template
index b6c57fccb25..8ddb29704a1 100644
--- a/srcpkgs/bwidget/template
+++ b/srcpkgs/bwidget/template
@@ -2,7 +2,6 @@
 pkgname=bwidget
 version=1.9.14
 revision=1
-archs=noarch
 makedepends="tk"
 depends="tk"
 short_desc="Set of extension widgets for Tcl/Tk"
diff --git a/srcpkgs/byobu/template b/srcpkgs/byobu/template
index 29c355cb943..869573ebd2d 100644
--- a/srcpkgs/byobu/template
+++ b/srcpkgs/byobu/template
@@ -2,7 +2,6 @@
 pkgname=byobu
 version=5.133
 revision=1
-archs=noarch
 build_style=gnu-configure
 depends="tmux"
 short_desc="Open source text-based window manager and terminal multiplexer"
diff --git a/srcpkgs/bzrtools/template b/srcpkgs/bzrtools/template
index 0c31b0fa84e..410a040f186 100644
--- a/srcpkgs/bzrtools/template
+++ b/srcpkgs/bzrtools/template
@@ -2,7 +2,6 @@
 pkgname=bzrtools
 version=2.6.0
 revision=3
-archs=noarch
 wrksrc=bzrtools
 build_style=python2-module
 pycompile_module="bzrlib/plugins/bzrtools"
diff --git a/srcpkgs/c/template b/srcpkgs/c/template
index 47c95d3060e..b6109733e43 100644
--- a/srcpkgs/c/template
+++ b/srcpkgs/c/template
@@ -2,7 +2,6 @@
 pkgname=c
 version=0.14
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Compile and execute C scripts in one go!"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ca-certificates/template b/srcpkgs/ca-certificates/template
index 9d20f346e84..dcacb5c773e 100644
--- a/srcpkgs/ca-certificates/template
+++ b/srcpkgs/ca-certificates/template
@@ -3,7 +3,6 @@ pkgname=ca-certificates
 version=20200601
 revision=1
 bootstrap=yes
-archs=noarch
 conf_files="/etc/ca-certificates.conf"
 wrksrc="work"
 hostmakedepends="libressl"
diff --git a/srcpkgs/caffeine-ng/template b/srcpkgs/caffeine-ng/template
index 455b2f225c4..6e3786c57c5 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -2,7 +2,6 @@
 pkgname=caffeine-ng
 version=3.4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/calligra/template b/srcpkgs/calligra/template
index d5255ff73ba..d4cb9b6a83f 100644
--- a/srcpkgs/calligra/template
+++ b/srcpkgs/calligra/template
@@ -140,7 +140,6 @@ calligra-words_package() {
 }
 calligra-handbook_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - Documentation (removed temporarily)"
 	#pkg_install() {
 	#	cd ${wrksrc}/build/doc/calligra
diff --git a/srcpkgs/cantarell-fonts/template b/srcpkgs/cantarell-fonts/template
index 8715c4773b3..2c0c2d779a1 100644
--- a/srcpkgs/cantarell-fonts/template
+++ b/srcpkgs/cantarell-fonts/template
@@ -2,7 +2,6 @@
 pkgname=cantarell-fonts
 version=0.201
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dfontsdir=/usr/share/fonts/cantarell -Duseprebuilt=true -Dbuildappstream=true"
 hostmakedepends="gettext pkg-config meson appstream-glib"
diff --git a/srcpkgs/canto-next/template b/srcpkgs/canto-next/template
index fa28bde891b..97506b3ec8f 100644
--- a/srcpkgs/canto-next/template
+++ b/srcpkgs/canto-next/template
@@ -2,7 +2,6 @@
 pkgname=canto-next
 version=0.9.7
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-feedparser"
diff --git a/srcpkgs/carton/template b/srcpkgs/carton/template
index e86b18fdf73..03d59e07782 100644
--- a/srcpkgs/carton/template
+++ b/srcpkgs/carton/template
@@ -3,7 +3,6 @@ pkgname=carton
 version=1.0.34
 revision=1
 wrksrc="Carton-v${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl perl-Class-Tiny perl-JSON perl-Menlo-Legacy
  perl-Module-CPANfile perl-Path-Tiny perl-Try-Tiny"
diff --git a/srcpkgs/castero/template b/srcpkgs/castero/template
index 2d6c421eee3..d387ef06fc7 100644
--- a/srcpkgs/castero/template
+++ b/srcpkgs/castero/template
@@ -2,7 +2,6 @@
 pkgname=castero
 version=0.8.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-cjkwrap
diff --git a/srcpkgs/catch2/template b/srcpkgs/catch2/template
index f8795cb6c77..5db5be90243 100644
--- a/srcpkgs/catch2/template
+++ b/srcpkgs/catch2/template
@@ -2,7 +2,6 @@
 pkgname=catch2
 version=2.11.1
 revision=1
-archs=noarch
 wrksrc="Catch2-${version}"
 build_style=cmake
 configure_args="-DCATCH_USE_VALGRIND=OFF -DCATCH_BUILD_TESTING=ON
diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 38df0a0adef..be2df4a62a7 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -2,7 +2,6 @@
 pkgname=catfish
 version=1.4.13
 revision=2
-archs=noarch
 wrksrc="catfish-catfish-${version}"
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-gobject"
diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index bda81960c5a..45673882a8b 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -2,7 +2,6 @@
 pkgname=ccsm
 version=0.8.18
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"
 makedepends="compiz-core-devel compizconfig-python python3-cairo-devel pygtk-devel"
diff --git a/srcpkgs/cdemu-client/template b/srcpkgs/cdemu-client/template
index 36d40de4bb5..4b338aa5977 100644
--- a/srcpkgs/cdemu-client/template
+++ b/srcpkgs/cdemu-client/template
@@ -2,7 +2,6 @@
 pkgname=cdemu-client
 version=3.2.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DCMAKE_INSTALL_COMPLETIONSDIR=/usr/share/bash-completion/completions"
 hostmakedepends="python3 intltool pkg-config"
diff --git a/srcpkgs/cdm/template b/srcpkgs/cdm/template
index ae30eaaef91..5cca3eeae03 100644
--- a/srcpkgs/cdm/template
+++ b/srcpkgs/cdm/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://github.com/evertiro/cdm"
 distfiles="https://github.com/evertiro/cdm/archive/${version}.tar.gz"
 checksum=530042165ce65cdff3ec62ba9f077d0e8c6744c13f5d449d84fe2506a79d2e56
-archs=noarch
 
 do_install() {
 	sed -i 's| /| $PKGDESTDIR/|g' install.sh
diff --git a/srcpkgs/cdogs-sdl/template b/srcpkgs/cdogs-sdl/template
index 89932232310..3cbdea2430c 100644
--- a/srcpkgs/cdogs-sdl/template
+++ b/srcpkgs/cdogs-sdl/template
@@ -18,7 +18,6 @@ CFLAGS="-Wno-restrict -Wno-format-truncation -Wno-stringop-overflow -Wno-stringo
 
 cdogs-sdl-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cdogs
 	}
diff --git a/srcpkgs/cegui/template b/srcpkgs/cegui/template
index 78f0c103ba7..582040e301e 100644
--- a/srcpkgs/cegui/template
+++ b/srcpkgs/cegui/template
@@ -55,14 +55,12 @@ post_install() {
 }
 cegui-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cegui-${version%%.*}
 	}
 }
 cegui-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/build/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cegui07/template b/srcpkgs/cegui07/template
index b5d0f735ffb..e9f1849e1fb 100644
--- a/srcpkgs/cegui07/template
+++ b/srcpkgs/cegui07/template
@@ -68,14 +68,12 @@ post_install() {
 
 cegui07-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/CEGUI
 	}
 }
 cegui07-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cereal/template b/srcpkgs/cereal/template
index c454ed85833..284bffeaeb6 100644
--- a/srcpkgs/cereal/template
+++ b/srcpkgs/cereal/template
@@ -2,7 +2,6 @@
 pkgname=cereal
 version=1.3.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DSKIP_PORTABILITY_TEST=1 -DTHREAD_SAFE=ON -DWITH_WERROR=OFF"
 short_desc="Header-only C++ serialization library"
diff --git a/srcpkgs/certbot/template b/srcpkgs/certbot/template
index 157e67923f6..0d5bb56d508 100644
--- a/srcpkgs/certbot/template
+++ b/srcpkgs/certbot/template
@@ -2,7 +2,6 @@
 pkgname=certbot
 version=1.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-acme python3-ConfigArgParse python3-configobj
diff --git a/srcpkgs/chatty/template b/srcpkgs/chatty/template
index 16bbc44096d..12d262ccabf 100644
--- a/srcpkgs/chatty/template
+++ b/srcpkgs/chatty/template
@@ -2,7 +2,6 @@
 pkgname=chatty
 version=0.12
 revision=1
-archs=noarch
 hostmakedepends="gradle"
 depends="virtual?java-runtime"
 short_desc="Twitch Chat Client for Desktop"
diff --git a/srcpkgs/checkbashisms/template b/srcpkgs/checkbashisms/template
index 88b2877e8a8..d23f71a29f1 100644
--- a/srcpkgs/checkbashisms/template
+++ b/srcpkgs/checkbashisms/template
@@ -2,7 +2,6 @@
 pkgname=checkbashisms
 version=2.20.4
 revision=1
-archs=noarch
 wrksrc="devscripts-${version}"
 depends="perl"
 checkdepends="shunit2 perl"
diff --git a/srcpkgs/checksec/template b/srcpkgs/checksec/template
index 354e288dc80..89a74ccbe62 100644
--- a/srcpkgs/checksec/template
+++ b/srcpkgs/checksec/template
@@ -2,7 +2,6 @@
 pkgname=checksec
 version=2.2.3
 revision=1
-archs=noarch
 wrksrc="checksec.sh-${version}"
 depends="binutils"
 short_desc="Check for protections like RELRO, NoExec, Stack protection, ASLR, PIE"
diff --git a/srcpkgs/cherry-font/template b/srcpkgs/cherry-font/template
index 496d45988d1..fa1aba8854c 100644
--- a/srcpkgs/cherry-font/template
+++ b/srcpkgs/cherry-font/template
@@ -2,7 +2,6 @@
 pkgname=cherry-font
 version=1.4
 revision=1
-archs=noarch
 wrksrc="cherry-${version}"
 hostmakedepends="bdftopcf"
 depends="font-util"
diff --git a/srcpkgs/cherrytree/template b/srcpkgs/cherrytree/template
index dc9530ce871..6e2d3a36ce3 100644
--- a/srcpkgs/cherrytree/template
+++ b/srcpkgs/cherrytree/template
@@ -2,7 +2,6 @@
 pkgname=cherrytree
 version=0.38.9
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_dirs="usr/share/cherrytree/modules"
 hostmakedepends="gettext python-devel desktop-file-utils"
diff --git a/srcpkgs/cinnamon-translations/template b/srcpkgs/cinnamon-translations/template
index 92b177b2478..ed0969b48d2 100644
--- a/srcpkgs/cinnamon-translations/template
+++ b/srcpkgs/cinnamon-translations/template
@@ -2,7 +2,6 @@
 pkgname=cinnamon-translations
 version=4.6.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="gettext"
 short_desc="Translations for Cinnamon and Nemo"
diff --git a/srcpkgs/ckbcomp/template b/srcpkgs/ckbcomp/template
index 225cb9d35dd..ce832e74d67 100644
--- a/srcpkgs/ckbcomp/template
+++ b/srcpkgs/ckbcomp/template
@@ -2,7 +2,6 @@
 pkgname=ckbcomp
 version=1.195
 revision=1
-archs=noarch
 wrksrc="console-setup"
 depends="perl"
 short_desc="Compile a XKB keyboard description to a keymap suitable for loadkeys"
diff --git a/srcpkgs/cldr-emoji-annotation/template b/srcpkgs/cldr-emoji-annotation/template
index 7910b83971b..ec997cbd749 100644
--- a/srcpkgs/cldr-emoji-annotation/template
+++ b/srcpkgs/cldr-emoji-annotation/template
@@ -3,7 +3,6 @@ pkgname=cldr-emoji-annotation
 version=36.12.120191002.0
 revision=1
 _tag=${version%.*}_${version##*.}
-archs=noarch
 wrksrc="${pkgname}-${_tag}"
 build_style=gnu-configure
 short_desc="Emoji annotation files in CLDR"
diff --git a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
index a2d541c8896..aa598cb15b8 100644
--- a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
+++ b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
@@ -4,7 +4,6 @@ version=7.0.2
 revision=1
 _devuan_rel="1+devuan2.0"
 build_style=fetch
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Dark-purpified GTK3 port of Clearlooks theme"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/clerk/template b/srcpkgs/clerk/template
index a04c6f2cef6..d365c54ed65 100644
--- a/srcpkgs/clerk/template
+++ b/srcpkgs/clerk/template
@@ -2,7 +2,6 @@
 pkgname=clerk
 version=4.0.5
 revision=1
-archs=noarch
 depends="rofi fzf tmux mpc perl-Net-MPD perl-Data-MessagePack perl-File-Slurper
 perl-Config-Simple perl-Try-Tiny perl-IPC-Run perl-HTTP-Date perl-Data-Section-Simple"
 short_desc="MPD client written in Perl using rofi or fzf"
diff --git a/srcpkgs/clipmenu/template b/srcpkgs/clipmenu/template
index 4176172d179..012affa76b6 100644
--- a/srcpkgs/clipmenu/template
+++ b/srcpkgs/clipmenu/template
@@ -2,7 +2,6 @@
 pkgname=clipmenu
 version=6.1.0
 revision=1
-archs=noarch
 depends="bash dmenu"
 short_desc="Clipboard management using dmenu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cloc/template b/srcpkgs/cloc/template
index 72213537232..efe880ccef1 100644
--- a/srcpkgs/cloc/template
+++ b/srcpkgs/cloc/template
@@ -2,7 +2,6 @@
 pkgname=cloc
 version=1.86
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Count Lines of Code"
diff --git a/srcpkgs/clyrics/template b/srcpkgs/clyrics/template
index 5a0144c5b30..6d9b04e6067 100644
--- a/srcpkgs/clyrics/template
+++ b/srcpkgs/clyrics/template
@@ -2,7 +2,6 @@
 pkgname=clyrics
 version=0.12
 revision=1
-archs=noarch
 depends="perl-LWP-Protocol-https perl-WWW-Mechanize"
 short_desc="Extensible lyrics fetcher, with daemon support for cmus and mocp"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cmake-vala/template b/srcpkgs/cmake-vala/template
index 94222b5da1a..c263c7a5ad5 100644
--- a/srcpkgs/cmake-vala/template
+++ b/srcpkgs/cmake-vala/template
@@ -2,7 +2,6 @@
 pkgname=cmake-vala
 version=1
 revision=1
-archs=noarch
 wrksrc="cmake-vala-r${version}"
 build_style=cmake
 depends="cmake"
diff --git a/srcpkgs/cmc/template b/srcpkgs/cmc/template
index 34a50561d1d..d834639933b 100644
--- a/srcpkgs/cmc/template
+++ b/srcpkgs/cmc/template
@@ -2,7 +2,6 @@
 pkgname=cmc
 version=1.1.4
 revision=1
-archs=noarch
 short_desc="SSH ControlMaster Controller"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
 license="MIT"
diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 8c45bc12fa4..abef9a7f6a8 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -2,7 +2,6 @@
 pkgname=coccigrep
 version=1.20
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="coccinelle python3-Pygments"
diff --git a/srcpkgs/coin3/template b/srcpkgs/coin3/template
index 4150c863e9f..acb1e4a0b88 100644
--- a/srcpkgs/coin3/template
+++ b/srcpkgs/coin3/template
@@ -67,7 +67,6 @@ coin3-devel_package() {
 
 coin3-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/collectl/template b/srcpkgs/collectl/template
index aec4b83ff46..a3d0ba59310 100644
--- a/srcpkgs/collectl/template
+++ b/srcpkgs/collectl/template
@@ -2,7 +2,6 @@
 pkgname=collectl
 version=4.3.1
 revision=1
-archs=noarch
 conf_files="/etc/collectl.conf"
 depends="perl perl-Term-ReadKey"
 short_desc="Collects data that describes the current system status"
diff --git a/srcpkgs/colordiff/template b/srcpkgs/colordiff/template
index bf7fea1873c..f01e98f5616 100644
--- a/srcpkgs/colordiff/template
+++ b/srcpkgs/colordiff/template
@@ -2,7 +2,6 @@
 pkgname=colordiff
 version=1.0.19
 revision=1
-archs=noarch
 depends="perl"
 conf_files="/etc/colordiffrc /etc/colordiffrc-lightbg /etc/colordiffrc-gitdiff"
 short_desc="Colorizes output of diff"
diff --git a/srcpkgs/compiz-bcop/template b/srcpkgs/compiz-bcop/template
index c1a82cb881b..667863577fb 100644
--- a/srcpkgs/compiz-bcop/template
+++ b/srcpkgs/compiz-bcop/template
@@ -2,7 +2,6 @@
 pkgname=compiz-bcop
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/composer/template b/srcpkgs/composer/template
index 353603a5118..03e0b111389 100644
--- a/srcpkgs/composer/template
+++ b/srcpkgs/composer/template
@@ -2,7 +2,6 @@
 pkgname=composer
 version=1.10.10
 revision=1
-archs=noarch
 build_style=fetch
 depends="php"
 short_desc="Dependency manager for PHP"
diff --git a/srcpkgs/coreboot-utils/template b/srcpkgs/coreboot-utils/template
index e6c57472ea1..47ffc16a9db 100644
--- a/srcpkgs/coreboot-utils/template
+++ b/srcpkgs/coreboot-utils/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 coreboot-utils-me_cleaner_package() {
-	archs=noarch
 	python_version=3
 	depends="python3"
 	short_desc="Tool for partial deblobbing Intel ME/TXE firmware images"
diff --git a/srcpkgs/couchpotato/template b/srcpkgs/couchpotato/template
index 3d7e27004d1..1e4572fcdac 100644
--- a/srcpkgs/couchpotato/template
+++ b/srcpkgs/couchpotato/template
@@ -2,7 +2,6 @@
 pkgname=couchpotato
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="CouchPotatoServer-build-${version}"
 pycompile_dirs="/usr/share/couchpotato"
 make_dirs="
diff --git a/srcpkgs/coursera-dl/template b/srcpkgs/coursera-dl/template
index 4609573f7f4..fff37f018d4 100644
--- a/srcpkgs/coursera-dl/template
+++ b/srcpkgs/coursera-dl/template
@@ -2,7 +2,6 @@
 pkgname=coursera-dl
 version=0.11.5
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="coursera"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/cowsay-temoc/template b/srcpkgs/cowsay-temoc/template
index f03a4d1775e..efaba0d3fed 100644
--- a/srcpkgs/cowsay-temoc/template
+++ b/srcpkgs/cowsay-temoc/template
@@ -9,7 +9,6 @@ license="GPL-3"
 homepage="https://github.com/kulinacs/cowsay-temoc"
 distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=6667a37a0de41fb46750bce4847fee97da251e9bea4dc5a33b5c0e432b795c8d
-archs=noarch
 
 do_install() {
 	vinstall temoc.cow 644 /usr/share/cows/
diff --git a/srcpkgs/cowsay/template b/srcpkgs/cowsay/template
index efa372b3aa5..97d67b9fd40 100644
--- a/srcpkgs/cowsay/template
+++ b/srcpkgs/cowsay/template
@@ -2,7 +2,6 @@
 pkgname=cowsay
 version=3.04
 revision=2
-archs=noarch
 wrksrc="rank-amateur-cowsay-${pkgname}-${version}"
 depends="perl"
 short_desc="Configurable speaking/thinking cow (and a bit more)"
diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index fc9bc66212b..f9d769162d5 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -2,7 +2,6 @@
 pkgname=cozy
 version=0.6.18
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config glib-devel python3 python3-distro python3-peewee
  python3-mutagen python3-gobject-devel"
diff --git a/srcpkgs/cpanminus/template b/srcpkgs/cpanminus/template
index 490ecd111b2..7e385544b1d 100644
--- a/srcpkgs/cpanminus/template
+++ b/srcpkgs/cpanminus/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/App-cpanminus"
 distfiles="${CPAN_SITE}/App/App-${pkgname}-${version}.tar.gz"
 checksum=9b60767fe40752ef7a9d3f13f19060a63389a5c23acc3e9827e19b75500f81f3
-archs=noarch
diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index 12b54631617..dd9b32549b5 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -2,7 +2,6 @@
 pkgname=cpuset
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/create_ap/template b/srcpkgs/create_ap/template
index 481ba622def..2bb58047096 100644
--- a/srcpkgs/create_ap/template
+++ b/srcpkgs/create_ap/template
@@ -2,7 +2,6 @@
 pkgname=create_ap
 version=0.4.6
 revision=2
-archs=noarch
 conf_files="/etc/create_ap.conf"
 build_style=gnu-makefile
 depends="bash dnsmasq hostapd iproute2 iptables iw procps-ng util-linux"
diff --git a/srcpkgs/criu/template b/srcpkgs/criu/template
index 0f7b55853f3..9d52f8ce024 100644
--- a/srcpkgs/criu/template
+++ b/srcpkgs/criu/template
@@ -37,7 +37,6 @@ criu-devel_package() {
 }
 
 criu-python_package() {
-	archs=noarch
 	depends="python-protobuf python-ipaddr criu-${version}_${revision}"
 	short_desc="Python2 bindings for criu and crit cli util"
 	pkg_install() {
diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index 5231b4a4cb3..b57e7aa642c 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -2,7 +2,6 @@
 pkgname=ctop
 version=1.0.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/culmus/template b/srcpkgs/culmus/template
index dc6599990ef..d5cc36e1ef4 100644
--- a/srcpkgs/culmus/template
+++ b/srcpkgs/culmus/template
@@ -2,7 +2,6 @@
 pkgname=culmus
 version=0.133
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="A collection of Type1 and TrueType free Hebrew fonts"
 maintainer="DirectorX <void.directorx@protonmail.com>"
diff --git a/srcpkgs/cura-fdm-materials/template b/srcpkgs/cura-fdm-materials/template
index dbb8191c009..8832e5bc43b 100644
--- a/srcpkgs/cura-fdm-materials/template
+++ b/srcpkgs/cura-fdm-materials/template
@@ -3,7 +3,6 @@ pkgname=cura-fdm-materials
 reverts="2019.08.21_1"
 version=4.6.2
 revision=1
-archs=noarch
 wrksrc="fdm_materials-${version}"
 build_style=cmake
 short_desc="FDM Material database"
diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index de72770b145..653689aa557 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -2,7 +2,6 @@
 pkgname=cura
 version=4.6.2
 revision=1
-archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake
 configure_args="-DCURA_VERSION=${version}
diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index f5afe3bba34..518da660991 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -2,7 +2,6 @@
 pkgname=curseradio
 version=0.0.20171017
 revision=4
-archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"
 build_style=python3-module
diff --git a/srcpkgs/cvs2svn/template b/srcpkgs/cvs2svn/template
index 55e679f2abe..f8b13d2ac0b 100644
--- a/srcpkgs/cvs2svn/template
+++ b/srcpkgs/cvs2svn/template
@@ -2,7 +2,6 @@
 pkgname=cvs2svn
 version=2.5.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_build_args="man"
 hostmakedepends="python"
diff --git a/srcpkgs/cycle/template b/srcpkgs/cycle/template
index 58649da6482..8affc847c16 100644
--- a/srcpkgs/cycle/template
+++ b/srcpkgs/cycle/template
@@ -2,7 +2,6 @@
 pkgname=cycle
 version=0.3.2
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/cycle"
 hostmakedepends="python"
 depends="wxPython"
diff --git a/srcpkgs/d-feet/template b/srcpkgs/d-feet/template
index beac13b35c3..e984f2af90f 100644
--- a/srcpkgs/d-feet/template
+++ b/srcpkgs/d-feet/template
@@ -2,7 +2,6 @@
 pkgname=d-feet
 version=0.3.15
 revision=3
-archs=noarch
 build_style=meson
 pycompile_module="dfeet"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"
diff --git a/srcpkgs/db/template b/srcpkgs/db/template
index b7519609b9e..bdd42a64e9e 100644
--- a/srcpkgs/db/template
+++ b/srcpkgs/db/template
@@ -32,7 +32,6 @@ db-devel_package() {
 }
 db-doc_package() {
 	short_desc+=" - documentation files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/ddclient/template b/srcpkgs/ddclient/template
index 37d85a49f4c..8d3fd068633 100644
--- a/srcpkgs/ddclient/template
+++ b/srcpkgs/ddclient/template
@@ -2,7 +2,6 @@
 pkgname=ddclient
 version=3.9.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="perl-Data-Validate-IP perl-IO-Socket-SSL"
 short_desc="Perl client used to update dynamic DNS"
diff --git a/srcpkgs/ddgr/template b/srcpkgs/ddgr/template
index d4142bb59b9..25ef4695ac8 100644
--- a/srcpkgs/ddgr/template
+++ b/srcpkgs/ddgr/template
@@ -2,7 +2,6 @@
 pkgname=ddgr
 version=1.9
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-requests"
 short_desc="DuckDuckGo from the terminal"
diff --git a/srcpkgs/deepin-gtk-theme/template b/srcpkgs/deepin-gtk-theme/template
index becf7701621..26865e28adb 100644
--- a/srcpkgs/deepin-gtk-theme/template
+++ b/srcpkgs/deepin-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-gtk-theme
 version=17.10.11
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Deepin GTK Theme"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/deepin-icon-theme/template b/srcpkgs/deepin-icon-theme/template
index 60902c27771..ff19188a5a7 100644
--- a/srcpkgs/deepin-icon-theme/template
+++ b/srcpkgs/deepin-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-icon-theme
 version=2020.04.13
 revision=1
-archs=noarch
 hostmakedepends="xcursorgen"
 depends="papirus-icon-theme"
 short_desc="Deepin Icon Theme"
diff --git a/srcpkgs/deerportal/template b/srcpkgs/deerportal/template
index c027c258e68..ac55e4ee30e 100644
--- a/srcpkgs/deerportal/template
+++ b/srcpkgs/deerportal/template
@@ -14,7 +14,6 @@ checksum=a79a6286c9be1c6073f5d8fe79e45b309425f597d0532d2a042cd8369f57725d
 
 deerportal-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/deheader/template b/srcpkgs/deheader/template
index f3809a35a44..4fa6ef39046 100644
--- a/srcpkgs/deheader/template
+++ b/srcpkgs/deheader/template
@@ -3,7 +3,6 @@ pkgname=deheader
 version=1.6
 revision=3
 create_wrksrc=yes
-archs=noarch
 hostmakedepends="tar"
 depends="python"
 short_desc="C and C++ header analyzer"
diff --git a/srcpkgs/dehydrated/template b/srcpkgs/dehydrated/template
index c7b3ce7abb9..74875e6a3c7 100644
--- a/srcpkgs/dehydrated/template
+++ b/srcpkgs/dehydrated/template
@@ -2,7 +2,6 @@
 pkgname=dehydrated
 version=0.6.5
 revision=1
-archs=noarch
 depends="curl"
 short_desc="Acme client implemented as a shell-script – just add water"
 maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
diff --git a/srcpkgs/dejavu-fonts-ttf/template b/srcpkgs/dejavu-fonts-ttf/template
index 88bc1960c99..ba0a43f8c64 100644
--- a/srcpkgs/dejavu-fonts-ttf/template
+++ b/srcpkgs/dejavu-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=dejavu-fonts-ttf
 version=2.37
 revision=1
-archs=noarch
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
 short_desc="DejaVu family of TrueType fonts"
diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index bb48e58ef6f..00afd733aec 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -2,7 +2,6 @@
 pkgname=deluge
 version=2.0.3
 revision=6
-archs=noarch
 build_style=python3-module
 # TODO package python3-slimit to minify javascript
 hostmakedepends="intltool python3-setuptools python3-wheel"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 deluge-gtk_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - GTK+ frontend"
 	depends="${sourcepkg}-${version}_${revision} python3-gobject"
@@ -42,7 +40,6 @@ deluge-gtk_package() {
 	}
 }
 deluge-web_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - Web frontend"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index e3bb19e3fc8..a32f186450f 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -2,7 +2,6 @@
 pkgname=devedeng
 version=4.16.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"
 hostmakedepends="gettext python3"
diff --git a/srcpkgs/dex/template b/srcpkgs/dex/template
index 88b5552b070..06af8b30b5d 100644
--- a/srcpkgs/dex/template
+++ b/srcpkgs/dex/template
@@ -2,7 +2,6 @@
 pkgname=dex
 version=0.8.0
 revision=2
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANPREFIX=/usr/share/man"
 hostmakedepends="python3-Sphinx"
diff --git a/srcpkgs/dhcpcd-gtk/template b/srcpkgs/dhcpcd-gtk/template
index af5bddc45c5..62ddaa13e59 100644
--- a/srcpkgs/dhcpcd-gtk/template
+++ b/srcpkgs/dhcpcd-gtk/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 dhcpcd-icons_package() {
-	archs=noarch
 	short_desc+=" - icon set"
 	depends="hicolor-icon-theme"
 	replaces="dhcpcd-gtk<0.7.4"
diff --git a/srcpkgs/diffoscope/template b/srcpkgs/diffoscope/template
index a45bc5d7959..d3f8896c50a 100644
--- a/srcpkgs/diffoscope/template
+++ b/srcpkgs/diffoscope/template
@@ -2,7 +2,6 @@
 pkgname=diffoscope
 version=147
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-magic python3-libarchive-c python3-setuptools
diff --git a/srcpkgs/dina-font/template b/srcpkgs/dina-font/template
index 2d4a740eacc..dcc1660f28e 100644
--- a/srcpkgs/dina-font/template
+++ b/srcpkgs/dina-font/template
@@ -2,7 +2,6 @@
 pkgname=dina-font
 version=2.93
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="bdftopcf font-util unzip"
 depends="font-util"
diff --git a/srcpkgs/ditaa/template b/srcpkgs/ditaa/template
index c7978f18bd4..3734b1316a3 100644
--- a/srcpkgs/ditaa/template
+++ b/srcpkgs/ditaa/template
@@ -2,7 +2,6 @@
 pkgname=ditaa
 version=0.11.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=fetch
 depends="virtual?java-environment"
diff --git a/srcpkgs/dkimproxy/template b/srcpkgs/dkimproxy/template
index de0eec306ba..a31f3a895aa 100644
--- a/srcpkgs/dkimproxy/template
+++ b/srcpkgs/dkimproxy/template
@@ -3,8 +3,6 @@ pkgname=dkimproxy
 version=1.4.1
 revision=1
 build_style=gnu-configure
-# dkimproxy is written in perl, so noarch
-archs=noarch
 hostmakedepends="perl perl-Net-Server perl-Mail-DKIM"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/dnssec-anchors/template b/srcpkgs/dnssec-anchors/template
index 18b24b4f80d..33e43584acd 100644
--- a/srcpkgs/dnssec-anchors/template
+++ b/srcpkgs/dnssec-anchors/template
@@ -8,7 +8,6 @@ short_desc="DNSSEC trust anchors for the root zone"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
 homepage="http://data.iana.org/root-anchors/"
-archs=noarch
 
 do_install() {
 	# Generate using unbound-anchor(1).
diff --git a/srcpkgs/docbook-dsssl/template b/srcpkgs/docbook-dsssl/template
index 2530523b127..e8cbf4a1161 100644
--- a/srcpkgs/docbook-dsssl/template
+++ b/srcpkgs/docbook-dsssl/template
@@ -2,7 +2,6 @@
 pkgname=docbook-dsssl
 version=1.79
 revision=3
-archs=noarch
 makedepends="xmlcatmgr docbook-xml"
 depends="${makedepends}"
 short_desc="DSSSL stylesheets for the DocBook DTD"
diff --git a/srcpkgs/docbook-xml/template b/srcpkgs/docbook-xml/template
index ef5634c0603..9ee76e8cd83 100644
--- a/srcpkgs/docbook-xml/template
+++ b/srcpkgs/docbook-xml/template
@@ -2,7 +2,6 @@
 pkgname=docbook-xml
 version=4.5
 revision=4
-archs=noarch
 wrksrc="docbook"
 hostmakedepends="bsdtar"
 makedepends="xmlcatmgr"
diff --git a/srcpkgs/docbook-xsl-ns/template b/srcpkgs/docbook-xsl-ns/template
index 6c34d9b171b..5e3baf038f8 100644
--- a/srcpkgs/docbook-xsl-ns/template
+++ b/srcpkgs/docbook-xsl-ns/template
@@ -3,7 +3,6 @@ pkgname=docbook-xsl-ns
 # keep in sync with docbook-xsl
 version=1.79.1
 revision=1
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Cameron Nemo <cnemo@tutanota.com>"
diff --git a/srcpkgs/docbook-xsl/template b/srcpkgs/docbook-xsl/template
index 0d63b09dfbe..da08cd74cdb 100644
--- a/srcpkgs/docbook-xsl/template
+++ b/srcpkgs/docbook-xsl/template
@@ -4,7 +4,6 @@ reverts="1.79.2_1"
 # keep in sync with docbook-xsl-ns
 version=1.79.1
 revision=7
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/docbook/template b/srcpkgs/docbook/template
index a36660f122b..710a65e699c 100644
--- a/srcpkgs/docbook/template
+++ b/srcpkgs/docbook/template
@@ -2,7 +2,6 @@
 pkgname=docbook
 version=4.5
 revision=4
-archs=noarch
 hostmakedepends="bsdtar"
 depends="xmlcatmgr ISOEnts"
 short_desc="SGML DTD designed for computer documentation"
diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index d381a1091d0..c61787c2473 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -2,7 +2,6 @@
 pkgname=docker-compose
 version=1.25.5
 revision=1
-archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/docx2txt/template b/srcpkgs/docx2txt/template
index 709713d475f..aaea19e0205 100644
--- a/srcpkgs/docx2txt/template
+++ b/srcpkgs/docx2txt/template
@@ -2,7 +2,6 @@
 pkgname=docx2txt
 version=1.4
 revision=2
-archs=noarch
 conf_files="/etc/docx2txt.config"
 depends="perl unzip"
 short_desc="Docx (MS Word) to Text convertor"
diff --git a/srcpkgs/dot-xsession/template b/srcpkgs/dot-xsession/template
index e5fe04677e9..fd21ba7c217 100644
--- a/srcpkgs/dot-xsession/template
+++ b/srcpkgs/dot-xsession/template
@@ -2,7 +2,6 @@
 pkgname=dot-xsession
 version=0.1
 revision=2
-archs=noarch
 depends="xmessage"
 short_desc="XSession file to run the users ~/.xsession"
 maintainer="Florian Wagner <florian@wagner-flo.net>"
diff --git a/srcpkgs/downloader-cli/template b/srcpkgs/downloader-cli/template
index 322709d79e0..cbc2355533f 100644
--- a/srcpkgs/downloader-cli/template
+++ b/srcpkgs/downloader-cli/template
@@ -2,7 +2,6 @@
 pkgname=downloader-cli
 version=0.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-urllib3 python3-downloader-cli"
diff --git a/srcpkgs/dpdk/template b/srcpkgs/dpdk/template
index 0f3b5630b7b..bc6b9148a62 100644
--- a/srcpkgs/dpdk/template
+++ b/srcpkgs/dpdk/template
@@ -33,7 +33,6 @@ post_install() {
 
 dpdk-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/dracut/template b/srcpkgs/dracut/template
index f4f52be097a..68ef7f8e37b 100644
--- a/srcpkgs/dracut/template
+++ b/srcpkgs/dracut/template
@@ -57,7 +57,6 @@ post_install() {
 dracut-network_package() {
 	depends="dhclient ${sourcepkg}-${version}_${revision}"
 	short_desc+=" - network modules"
-	archs=noarch
 	pkg_install() {
 		for f in 40network 90livenet 95fcoe 95iscsi \
 			95nbd 95nfs 95zfcp 95znet; do
diff --git a/srcpkgs/dreampie/template b/srcpkgs/dreampie/template
index edd0f48298b..bf8d07ea53f 100644
--- a/srcpkgs/dreampie/template
+++ b/srcpkgs/dreampie/template
@@ -2,7 +2,6 @@
 pkgname=dreampie
 version=1.2.1
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="dreampielib"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/drist/template b/srcpkgs/drist/template
index 89f39b7eec8..99700b7f90f 100644
--- a/srcpkgs/drist/template
+++ b/srcpkgs/drist/template
@@ -2,7 +2,6 @@
 pkgname=drist
 version=1.04
 revision=1
-archs=noarch
 wrksrc=$pkgname-v$version
 build_style=gnu-makefile
 depends="openssh rsync"
diff --git a/srcpkgs/dstat/template b/srcpkgs/dstat/template
index 3ec983e85db..084d1426889 100644
--- a/srcpkgs/dstat/template
+++ b/srcpkgs/dstat/template
@@ -2,7 +2,6 @@
 pkgname=dstat
 version=0.7.4
 revision=2
-archs=noarch
 makedepends="python3"
 depends="python3-six"
 short_desc="Versatile tool for generating system resource statistics"
diff --git a/srcpkgs/dtrx/template b/srcpkgs/dtrx/template
index 6ccec18f5b2..e7d8af1c2eb 100644
--- a/srcpkgs/dtrx/template
+++ b/srcpkgs/dtrx/template
@@ -2,7 +2,6 @@
 pkgname=dtrx
 version=7.1
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python"
diff --git a/srcpkgs/duiadns/template b/srcpkgs/duiadns/template
index ae34b00cb95..30c1a9ec4e0 100644
--- a/srcpkgs/duiadns/template
+++ b/srcpkgs/duiadns/template
@@ -2,7 +2,6 @@
 pkgname=duiadns
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-netifaces python3-netaddr python3-requests"
diff --git a/srcpkgs/durden/template b/srcpkgs/durden/template
index 54a4bc1759b..c4de0863636 100644
--- a/srcpkgs/durden/template
+++ b/srcpkgs/durden/template
@@ -9,7 +9,6 @@ license="BSD-3-Clause"
 homepage="http://durden.arcan-fe.com/"
 distfiles="https://github.com/letoram/${pkgname}/archive/${version}.tar.gz"
 checksum=f0cb0cdc6d16b4807efab5b6152b9f26813dccd2d66af5f1d80494769f840915
-archs=noarch
 
 do_install() {
 	vbin distr/durden
diff --git a/srcpkgs/easyrsa/template b/srcpkgs/easyrsa/template
index 517dd6ff50b..fb5adbec8db 100644
--- a/srcpkgs/easyrsa/template
+++ b/srcpkgs/easyrsa/template
@@ -2,7 +2,6 @@
 pkgname=easyrsa
 version=3.0.7
 revision=1
-archs="noarch"
 wrksrc="EasyRSA-${version}"
 depends="libressl"
 short_desc="Simple shell based CA utility"
diff --git a/srcpkgs/econnman/template b/srcpkgs/econnman/template
index 9568c2e2adf..f8750ebb914 100644
--- a/srcpkgs/econnman/template
+++ b/srcpkgs/econnman/template
@@ -2,7 +2,6 @@
 pkgname=econnman
 version=1.1.0
 revision=5
-archs=noarch
 _gitrev=18e7be6bf80df6b86965ba93391b205339fc7267
 wrksrc=${pkgname}-${_gitrev}
 build_style=gnu-configure
diff --git a/srcpkgs/edx-dl/template b/srcpkgs/edx-dl/template
index 1ea89343e7a..1f0b0d53010 100644
--- a/srcpkgs/edx-dl/template
+++ b/srcpkgs/edx-dl/template
@@ -2,7 +2,6 @@
 pkgname=edx-dl
 version=0.1.13
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-html5lib python3-setuptools
diff --git a/srcpkgs/eigen/template b/srcpkgs/eigen/template
index 8344fbf98ec..7d283094bf7 100644
--- a/srcpkgs/eigen/template
+++ b/srcpkgs/eigen/template
@@ -2,7 +2,6 @@
 pkgname=eigen
 version=3.3.7
 revision=2
-archs=noarch
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/eigen2/template b/srcpkgs/eigen2/template
index 08087b4900b..dffc3ffe0fa 100644
--- a/srcpkgs/eigen2/template
+++ b/srcpkgs/eigen2/template
@@ -3,7 +3,6 @@ pkgname=eigen2
 reverts="3.2.2_1"
 version=2.0.17
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b23437e61a07"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 2.x)"
diff --git a/srcpkgs/eigen3.2/template b/srcpkgs/eigen3.2/template
index eaedcc6fe2a..5ac0fc384ac 100644
--- a/srcpkgs/eigen3.2/template
+++ b/srcpkgs/eigen3.2/template
@@ -2,7 +2,6 @@
 pkgname=eigen3.2
 version=3.2.10
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b9cd8366d4e8"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
diff --git a/srcpkgs/ekushey-fonts-ttf/template b/srcpkgs/ekushey-fonts-ttf/template
index 406a5f88969..3eb10b23313 100644
--- a/srcpkgs/ekushey-fonts-ttf/template
+++ b/srcpkgs/ekushey-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=ekushey-fonts-ttf
 version=20191020
 revision=1
-archs=noarch
 build_style=fetch
 depends="font-util"
 short_desc="Bengali fonts from Ekushey project"
diff --git a/srcpkgs/electrum-ltc/template b/srcpkgs/electrum-ltc/template
index 550fda484e6..0f9ed450bbf 100644
--- a/srcpkgs/electrum-ltc/template
+++ b/srcpkgs/electrum-ltc/template
@@ -2,7 +2,6 @@
 pkgname=electrum-ltc
 version=3.3.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx
diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 835fbf25533..839b59a6ba2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -2,7 +2,6 @@
 pkgname=electrum
 version=3.3.8
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"
 hostmakedepends="python3-PyQt5-devel-tools python3-setuptools"
diff --git a/srcpkgs/emacs-ess/template b/srcpkgs/emacs-ess/template
index 40338f2f137..a03e71623f5 100644
--- a/srcpkgs/emacs-ess/template
+++ b/srcpkgs/emacs-ess/template
@@ -3,7 +3,6 @@ pkgname=emacs-ess
 reverts="18.10r1_1"
 version=18.10.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="ess-${version}"
 makedepends="emacs perl"
diff --git a/srcpkgs/emacs/template b/srcpkgs/emacs/template
index 420ef0fa14f..4e2f9c7fdea 100755
--- a/srcpkgs/emacs/template
+++ b/srcpkgs/emacs/template
@@ -81,7 +81,6 @@ do_install() {
 
 emacs-common_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/emacs
 		vmove usr/share/man
diff --git a/srcpkgs/emerald-themes/template b/srcpkgs/emerald-themes/template
index 7e17b4bfad9..a9e11467bae 100644
--- a/srcpkgs/emerald-themes/template
+++ b/srcpkgs/emerald-themes/template
@@ -2,7 +2,6 @@
 pkgname=emerald-themes
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config"
 makedepends="emerald-devel"
diff --git a/srcpkgs/encodings/template b/srcpkgs/encodings/template
index eb2ef08e8e6..f4be9fec9d6 100644
--- a/srcpkgs/encodings/template
+++ b/srcpkgs/encodings/template
@@ -2,7 +2,6 @@
 pkgname=encodings
 version=1.0.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config font-util"
 depends="font-util"
diff --git a/srcpkgs/endless-sky-gl21/template b/srcpkgs/endless-sky-gl21/template
index ead1c34e626..f69b748b665 100644
--- a/srcpkgs/endless-sky-gl21/template
+++ b/srcpkgs/endless-sky-gl21/template
@@ -18,7 +18,6 @@ checksum=46918d0cc35aaeb1219194099223e3338245aa04aa3f29fd76e3376bf5779376
 
 endless-sky-gl21-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 829bdf28df7..4aa6fcffc44 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -15,7 +15,6 @@ checksum=31f76ac11666415478678d924174d43a620a7fd1093e95131776aed12b912eb4
 
 endless-sky-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/enigma/template b/srcpkgs/enigma/template
index 89f359f80c7..3d11662e5da 100644
--- a/srcpkgs/enigma/template
+++ b/srcpkgs/enigma/template
@@ -31,7 +31,6 @@ post_install() {
 
 enigma-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/enigma
 	}
@@ -39,7 +38,6 @@ enigma-data_package() {
 
 enigma-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/envypn-font/template b/srcpkgs/envypn-font/template
index 9f3d7de3075..146c2b130ce 100644
--- a/srcpkgs/envypn-font/template
+++ b/srcpkgs/envypn-font/template
@@ -2,7 +2,6 @@
 pkgname=envypn-font
 version=1.7.1
 revision=3
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="Readable bitmap font inspired by Envy Code R"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template
index 371e9404e69..35c9bed4ee9 100644
--- a/srcpkgs/erlang/template
+++ b/srcpkgs/erlang/template
@@ -59,7 +59,6 @@ post_install() {
 erlang-doc_package() {
 	short_desc="Erlang programming language documentation and examples"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/erlang/doc
 		for i in $(cd ${DESTDIR}; find usr/lib/erlang -type d \( -path '*/examples' -o -path '*/doc/html' \))
diff --git a/srcpkgs/escrotum/template b/srcpkgs/escrotum/template
index 44cec111737..5438e8a4c14 100644
--- a/srcpkgs/escrotum/template
+++ b/srcpkgs/escrotum/template
@@ -2,7 +2,6 @@
 pkgname=escrotum
 version=0.2.1
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="escrotum"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/eselect/template b/srcpkgs/eselect/template
index 04111ebc945..fd987f2c034 100644
--- a/srcpkgs/eselect/template
+++ b/srcpkgs/eselect/template
@@ -2,7 +2,6 @@
 pkgname=eselect
 version=1.4.16
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libtool"
 depends="bash"
diff --git a/srcpkgs/etcetera/template b/srcpkgs/etcetera/template
index d6723467c4b..0af51a75c49 100644
--- a/srcpkgs/etcetera/template
+++ b/srcpkgs/etcetera/template
@@ -2,7 +2,6 @@
 pkgname=etcetera
 version=1.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Config file management with a touch of wisdom"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/etckeeper/template b/srcpkgs/etckeeper/template
index 26cffae3768..210c55a62dd 100644
--- a/srcpkgs/etckeeper/template
+++ b/srcpkgs/etckeeper/template
@@ -2,7 +2,6 @@
 pkgname=etckeeper
 version=1.18.14
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/etckeeper/etckeeper.conf"
 hostmakedepends="perl"
diff --git a/srcpkgs/etesync-dav/template b/srcpkgs/etesync-dav/template
index 03763f96644..3c8b547f230 100644
--- a/srcpkgs/etesync-dav/template
+++ b/srcpkgs/etesync-dav/template
@@ -2,7 +2,6 @@
 pkgname=etesync-dav
 version=0.17.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-etesync radicale2 python3-Flask python3-Flask-WTF"
diff --git a/srcpkgs/etr/template b/srcpkgs/etr/template
index f3af59d2220..6414c6a8c9c 100644
--- a/srcpkgs/etr/template
+++ b/srcpkgs/etr/template
@@ -15,7 +15,6 @@ checksum=4b2899314eda8d0826504ab274acb13ab0dab58b6d0641587749dfa77757da17
 
 etr-data_package() {
  	short_desc+=" - data files"
- 	archs=noarch
  	pkg_install() {
  		vmove usr/share/etr
  	}
diff --git a/srcpkgs/exec-on-git-staged/template b/srcpkgs/exec-on-git-staged/template
index 4f41115f8d9..ab61a0a6348 100644
--- a/srcpkgs/exec-on-git-staged/template
+++ b/srcpkgs/exec-on-git-staged/template
@@ -2,7 +2,6 @@
 pkgname=exec-on-git-staged
 version=1.1.0
 revision=1
-archs=noarch
 depends="git"
 short_desc="Execute commands on staged tree"
 maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
diff --git a/srcpkgs/execline/template b/srcpkgs/execline/template
index 92c5df11259..a46f5673de0 100644
--- a/srcpkgs/execline/template
+++ b/srcpkgs/execline/template
@@ -35,7 +35,6 @@ post_install() {
 }
 
 execline-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/exiftool/template b/srcpkgs/exiftool/template
index 0b7a65d50d9..390ef84235e 100644
--- a/srcpkgs/exiftool/template
+++ b/srcpkgs/exiftool/template
@@ -2,7 +2,6 @@
 pkgname=exiftool
 version=12.04
 revision=1
-archs=noarch
 wrksrc="Image-ExifTool-${version}"
 build_style=perl-module
 hostmakedepends="perl tar"
diff --git a/srcpkgs/extra-cmake-modules/template b/srcpkgs/extra-cmake-modules/template
index 99601e6ce62..5a958049219 100644
--- a/srcpkgs/extra-cmake-modules/template
+++ b/srcpkgs/extra-cmake-modules/template
@@ -2,7 +2,6 @@
 pkgname=extra-cmake-modules
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_HTML_DOCS=OFF -DBUILD_TESTING=OFF"
 hostmakedepends="python3-Sphinx qt5-tools"
diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index ee7f68f9e36..bbdbde91e85 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -2,7 +2,6 @@
 pkgname=eyeD3
 version=0.9.5
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-grako python3-pylast python3-setuptools python3-deprecation
diff --git a/srcpkgs/faba-icon-theme/template b/srcpkgs/faba-icon-theme/template
index 7624d10a4db..6fc98c76314 100644
--- a/srcpkgs/faba-icon-theme/template
+++ b/srcpkgs/faba-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faba-icon-theme
 version=4.3
 revision=1
-archs=noarch
 build_style=meson
 short_desc="Sexy, modern FreeDesktop icon set with Tango and elementary influences"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/faenza-icon-theme/template b/srcpkgs/faenza-icon-theme/template
index f05167001e4..447ffeef02e 100644
--- a/srcpkgs/faenza-icon-theme/template
+++ b/srcpkgs/faenza-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faenza-icon-theme
 version=1.3.1
 revision=2
-archs=noarch
 wrksrc="faenza-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme"
 short_desc="Faenza icon theme"
diff --git a/srcpkgs/faience-icon-theme/template b/srcpkgs/faience-icon-theme/template
index 27a4fb5be9a..426205bbf78 100644
--- a/srcpkgs/faience-icon-theme/template
+++ b/srcpkgs/faience-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faience-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="faience-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme faenza-icon-theme"
 short_desc="An icon theme based on Faenza"
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index cde2f25630f..3b823a5bc16 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -2,7 +2,6 @@
 pkgname=fail2ban
 version=0.11.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
diff --git a/srcpkgs/fake-hwclock/template b/srcpkgs/fake-hwclock/template
index 16731b49dfe..c1f33f221ac 100644
--- a/srcpkgs/fake-hwclock/template
+++ b/srcpkgs/fake-hwclock/template
@@ -2,7 +2,6 @@
 pkgname=fake-hwclock
 version=0.11
 revision=1
-archs=noarch
 wrksrc=git
 short_desc="Save/restore system clock on machines without working RTC hardware"
 maintainer="Ivan Gonzalez Polanco <ivan14polanco@gmail.com>"
diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 44628c261d2..80685a4e52a 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -2,7 +2,6 @@
 pkgname=fava
 version=1.15
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-Babel python3-Cheroot python3-Flask-Babel python3-Flask
diff --git a/srcpkgs/fbmenugen/template b/srcpkgs/fbmenugen/template
index 7b7659eb98d..ad03431b85f 100644
--- a/srcpkgs/fbmenugen/template
+++ b/srcpkgs/fbmenugen/template
@@ -2,7 +2,6 @@
 pkgname=fbmenugen
 version=0.84
 revision=1
-archs=noarch
 depends="fluxbox perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Fluxbox menu generator (with support for icons)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ferm/template b/srcpkgs/ferm/template
index 42241669552..1b0c4538c56 100644
--- a/srcpkgs/ferm/template
+++ b/srcpkgs/ferm/template
@@ -2,7 +2,6 @@
 pkgname=ferm
 version=2.5.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl iptables"
 short_desc="Frontend for iptables"
diff --git a/srcpkgs/fff/template b/srcpkgs/fff/template
index 310793c894f..dfe012ccbd1 100644
--- a/srcpkgs/fff/template
+++ b/srcpkgs/fff/template
@@ -2,7 +2,6 @@
 pkgname=fff
 version=2.1
 revision=1
-archs=noarch
 depends="bash coreutils xdg-utils"
 short_desc="Simple file manager written in bash"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/ffscreencast/template b/srcpkgs/ffscreencast/template
index 10653116d67..76bc9df0078 100644
--- a/srcpkgs/ffscreencast/template
+++ b/srcpkgs/ffscreencast/template
@@ -2,7 +2,6 @@
 pkgname=ffscreencast
 version=0.6.4
 revision=1
-archs=noarch
 depends="alsa-utils bash ffmpeg v4l-utils xdpyinfo"
 maintainer="Orphaned <orphan@voidlinux.org>"
 short_desc="Desktop-recording with video overlay and multi monitor support"
diff --git a/srcpkgs/fgit/template b/srcpkgs/fgit/template
index e298b9f4a71..1b031ec91c3 100644
--- a/srcpkgs/fgit/template
+++ b/srcpkgs/fgit/template
@@ -2,7 +2,6 @@
 pkgname=fgit
 version=1.0.2
 revision=1
-archs=noarch
 checkdepends="git"
 depends="bash git ncurses"
 short_desc="Run a Git command in several repositories"
diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 1d395274898..09062d70808 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -2,7 +2,6 @@
 pkgname=fierce
 version=1.4.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="fierce"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/figlet-fonts/template b/srcpkgs/figlet-fonts/template
index 36746d35612..be340f68c7a 100644
--- a/srcpkgs/figlet-fonts/template
+++ b/srcpkgs/figlet-fonts/template
@@ -2,7 +2,6 @@
 pkgname=figlet-fonts
 version=20150508
 revision=3
-archs=noarch
 create_wrksrc=yes
 depends="figlet perl"
 short_desc="Additional fonts for figlet"
diff --git a/srcpkgs/fillets-ng/template b/srcpkgs/fillets-ng/template
index 65f3ac43898..6b4be8c84e4 100644
--- a/srcpkgs/fillets-ng/template
+++ b/srcpkgs/fillets-ng/template
@@ -19,7 +19,6 @@ build_wrksrc="fillets-ng-${version}"
 
 fillets-ng-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/games
 		mv ${wrksrc}/fillets-ng-data-${version} ${PKGDESTDIR}/usr/share/games/fillets-ng
diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index 4834f0a0bf5..f87bc737a3d 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -2,7 +2,6 @@
 pkgname=flake8
 version=3.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycodestyle>=2.6.0<2.7.0
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-flake8_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="flake8>=${version}_${revision}"
diff --git a/srcpkgs/flare-engine/template b/srcpkgs/flare-engine/template
index 707157f38d9..59244d516f3 100644
--- a/srcpkgs/flare-engine/template
+++ b/srcpkgs/flare-engine/template
@@ -16,7 +16,6 @@ checksum=035ffd936d9e120dc2eb792779a0b7ff64574d4a29a1124946deaf7946d1059d
 
 flare-engine-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/flare
 	}
diff --git a/srcpkgs/flare-game/template b/srcpkgs/flare-game/template
index 9da28107b18..b769140e001 100644
--- a/srcpkgs/flare-game/template
+++ b/srcpkgs/flare-game/template
@@ -2,7 +2,6 @@
 pkgname=flare-game
 version=1.11
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DDATADIR=share/flare"
 depends="flare-engine>=${version}"
diff --git a/srcpkgs/flickcurl/template b/srcpkgs/flickcurl/template
index e1e33187b4c..c0800a39453 100644
--- a/srcpkgs/flickcurl/template
+++ b/srcpkgs/flickcurl/template
@@ -12,7 +12,6 @@ distfiles="http://download.dajobe.org/flickcurl/flickcurl-${version}.tar.gz"
 checksum=ff42a36c7c1c7d368246f6bc9b7d792ed298348e5f0f5d432e49f6803562f5a3
 
 flickcurl-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation (HTML Version)"
 	pkg_install() {
diff --git a/srcpkgs/flightgear/template b/srcpkgs/flightgear/template
index cbf60cc058c..c84d1fd9a44 100644
--- a/srcpkgs/flightgear/template
+++ b/srcpkgs/flightgear/template
@@ -41,7 +41,6 @@ post_install() {
 
 flightgear-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/flightgear
 		mv ${XBPS_BUILDDIR}/fgdata ${PKGDESTDIR}/usr/share/flightgear
diff --git a/srcpkgs/flinks/template b/srcpkgs/flinks/template
index 780aead102c..4fbd59497a1 100644
--- a/srcpkgs/flinks/template
+++ b/srcpkgs/flinks/template
@@ -2,7 +2,6 @@
 pkgname=flinks
 version=0.4.3
 revision=5
-archs=noarch
 build_style=python3-module
 pycompile_module="flinkspkg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/flowblade/template b/srcpkgs/flowblade/template
index c011d7dc115..b22f56309ba 100644
--- a/srcpkgs/flowblade/template
+++ b/srcpkgs/flowblade/template
@@ -2,7 +2,6 @@
 pkgname=flowblade
 version=2.4
 revision=2
-archs=noarch
 build_wrksrc=flowblade-trunk
 build_style=python3-module
 make_install_args="--install-lib=${DESTDIR}/usr/share/pyshared"
diff --git a/srcpkgs/foliate/template b/srcpkgs/foliate/template
index a3fc5ed2fe2..498172d4904 100644
--- a/srcpkgs/foliate/template
+++ b/srcpkgs/foliate/template
@@ -2,7 +2,6 @@
 pkgname=foliate
 version=2.4.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config gettext gjs glib-devel"
 depends="webkit2gtk gjs"
diff --git a/srcpkgs/font-3270/template b/srcpkgs/font-3270/template
index 2031b872668..5ec94a8b6fb 100644
--- a/srcpkgs/font-3270/template
+++ b/srcpkgs/font-3270/template
@@ -2,7 +2,6 @@
 pkgname=font-3270
 version=2.0.3
 revision=1
-archs=noarch
 wrksrc="3270font-${version}"
 build_style=gnu-makefile
 make_build_target="font"
diff --git a/srcpkgs/font-FixedMisc/template b/srcpkgs/font-FixedMisc/template
index 7f937497043..e4605c4079a 100644
--- a/srcpkgs/font-FixedMisc/template
+++ b/srcpkgs/font-FixedMisc/template
@@ -2,7 +2,6 @@
 pkgname=font-FixedMisc
 version=20200214
 revision=1
-archs=noarch
 wrksrc=FixedMisc
 hostmakedepends="bdftopcf"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Hasklig/template b/srcpkgs/font-Hasklig/template
index 656492ec093..bdd229dc9ec 100644
--- a/srcpkgs/font-Hasklig/template
+++ b/srcpkgs/font-Hasklig/template
@@ -2,7 +2,6 @@
 pkgname=font-Hasklig
 version=1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Siji/template b/srcpkgs/font-Siji/template
index cfd7e82ad6e..2dd7a1d88de 100644
--- a/srcpkgs/font-Siji/template
+++ b/srcpkgs/font-Siji/template
@@ -2,7 +2,6 @@
 pkgname=font-Siji
 version=0.0.0.20171022
 revision=1
-archs=noarch
 _githash=9d88311bb127b21672b2d4b43eed1ab0e494f143
 wrksrc="siji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/font-adobe-100dpi/template b/srcpkgs/font-adobe-100dpi/template
index 43c280a256a..da546a985b2 100644
--- a/srcpkgs/font-adobe-100dpi/template
+++ b/srcpkgs/font-adobe-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-75dpi/template b/srcpkgs/font-adobe-75dpi/template
index deb1d71ba1d..38965635fea 100644
--- a/srcpkgs/font-adobe-75dpi/template
+++ b/srcpkgs/font-adobe-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-source-code-pro/template b/srcpkgs/font-adobe-source-code-pro/template
index 093d75e286a..527d1f93c7d 100644
--- a/srcpkgs/font-adobe-source-code-pro/template
+++ b/srcpkgs/font-adobe-source-code-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-source-code-pro
 version=2.030R
 revision=2
-archs=noarch
 wrksrc="source-code-pro-${version}-ro-1.050R-it"
 depends="font-util"
 short_desc="Monospaced font family for user interface and coding environments"
@@ -20,7 +19,6 @@ do_install() {
 }
 
 font-sourcecodepro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/font-adobe-utopia-100dpi/template b/srcpkgs/font-adobe-utopia-100dpi/template
index 058691db022..182bd2973fa 100644
--- a/srcpkgs/font-adobe-utopia-100dpi/template
+++ b/srcpkgs/font-adobe-utopia-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-100dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-75dpi/template b/srcpkgs/font-adobe-utopia-75dpi/template
index bce9f9887f6..e5b0fc347e9 100644
--- a/srcpkgs/font-adobe-utopia-75dpi/template
+++ b/srcpkgs/font-adobe-utopia-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-75dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-type1/template b/srcpkgs/font-adobe-utopia-type1/template
index 0e7d539142e..5a3b04053e0 100644
--- a/srcpkgs/font-adobe-utopia-type1/template
+++ b/srcpkgs/font-adobe-utopia-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-type1
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-alias/template b/srcpkgs/font-alias/template
index 906543427b5..e399f0f92b8 100644
--- a/srcpkgs/font-alias/template
+++ b/srcpkgs/font-alias/template
@@ -2,7 +2,6 @@
 pkgname=font-alias
 version=1.0.3
 revision=4
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard aliases for X11 PCF fonts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/font-awesome/template b/srcpkgs/font-awesome/template
index a675bd4ad11..aacc7a44ad3 100644
--- a/srcpkgs/font-awesome/template
+++ b/srcpkgs/font-awesome/template
@@ -3,7 +3,6 @@ pkgname=font-awesome
 reverts="5.0.8_1 5.0.9_1 5.0.10_1"
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc=Font-Awesome-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-awesome5/template b/srcpkgs/font-awesome5/template
index 78cfb9f1146..0fc0a94f97d 100644
--- a/srcpkgs/font-awesome5/template
+++ b/srcpkgs/font-awesome5/template
@@ -2,7 +2,6 @@
 pkgname=font-awesome5
 version=5.14.0
 revision=1
-archs=noarch
 wrksrc="Font-Awesome-${version}"
 depends="font-util"
 short_desc="Iconic font (version 5)"
diff --git a/srcpkgs/font-b612/template b/srcpkgs/font-b612/template
index 0d6d974aa0a..45e731de6a5 100644
--- a/srcpkgs/font-b612/template
+++ b/srcpkgs/font-b612/template
@@ -2,7 +2,6 @@
 pkgname=font-b612
 version=1.008
 revision=1
-archs=noarch
 wrksrc="b612-${version}"
 depends="font-util xbps-triggers"
 short_desc="Highly legible font family designed for aircraft cockpit screens"
diff --git a/srcpkgs/font-bh-100dpi/template b/srcpkgs/font-bh-100dpi/template
index 0eee5166e2f..aa70e1e4597 100644
--- a/srcpkgs/font-bh-100dpi/template
+++ b/srcpkgs/font-bh-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-75dpi/template b/srcpkgs/font-bh-75dpi/template
index 99b51be90b5..291b0eca237 100644
--- a/srcpkgs/font-bh-75dpi/template
+++ b/srcpkgs/font-bh-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-100dpi/template b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
index 3840bad1134..c513a84160d 100644
--- a/srcpkgs/font-bh-lucidatypewriter-100dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-75dpi/template b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
index 6110fa4f547..2bc610d24c0 100644
--- a/srcpkgs/font-bh-lucidatypewriter-75dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-ttf/template b/srcpkgs/font-bh-ttf/template
index 955b9e6f14d..26acfa6544d 100644
--- a/srcpkgs/font-bh-ttf/template
+++ b/srcpkgs/font-bh-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-ttf
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-type1/template b/srcpkgs/font-bh-type1/template
index f7135cd6d50..ddd695e5312 100644
--- a/srcpkgs/font-bh-type1/template
+++ b/srcpkgs/font-bh-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-100dpi/template b/srcpkgs/font-bitstream-100dpi/template
index 08dbeee24a0..a7b0b8dde8f 100644
--- a/srcpkgs/font-bitstream-100dpi/template
+++ b/srcpkgs/font-bitstream-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-75dpi/template b/srcpkgs/font-bitstream-75dpi/template
index c6853fa8cd8..c1f60fb03da 100644
--- a/srcpkgs/font-bitstream-75dpi/template
+++ b/srcpkgs/font-bitstream-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-speedo/template b/srcpkgs/font-bitstream-speedo/template
index 96bdb122283..0e0f4880d57 100644
--- a/srcpkgs/font-bitstream-speedo/template
+++ b/srcpkgs/font-bitstream-speedo/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-speedo
 version=1.0.2
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf mkfontscale"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-bitstream-type1/template b/srcpkgs/font-bitstream-type1/template
index d6e4e2f8700..f8ed3355afe 100644
--- a/srcpkgs/font-bitstream-type1/template
+++ b/srcpkgs/font-bitstream-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-cozette/template b/srcpkgs/font-cozette/template
index fc1118ac3a4..4e3f8553fa0 100644
--- a/srcpkgs/font-cozette/template
+++ b/srcpkgs/font-cozette/template
@@ -2,7 +2,6 @@
 pkgname=font-cozette
 version=1.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="font-util"
 depends="font-util"
diff --git a/srcpkgs/font-cursor-misc/template b/srcpkgs/font-cursor-misc/template
index e01946f7dde..0d2d54e4a8e 100644
--- a/srcpkgs/font-cursor-misc/template
+++ b/srcpkgs/font-cursor-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-cursor-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-daewoo-misc/template b/srcpkgs/font-daewoo-misc/template
index da7e8c4ba1e..8dbd3cf7268 100644
--- a/srcpkgs/font-daewoo-misc/template
+++ b/srcpkgs/font-daewoo-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-daewoo-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-dec-misc/template b/srcpkgs/font-dec-misc/template
index a4bfec05b01..afa30bf8715 100644
--- a/srcpkgs/font-dec-misc/template
+++ b/srcpkgs/font-dec-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-dec-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-fantasque-sans-ttf/template b/srcpkgs/font-fantasque-sans-ttf/template
index 3f28af2faa8..3b79bdff398 100644
--- a/srcpkgs/font-fantasque-sans-ttf/template
+++ b/srcpkgs/font-fantasque-sans-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-fantasque-sans-ttf
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Handwriting-like programming typeface"
diff --git a/srcpkgs/font-fira-otf/template b/srcpkgs/font-fira-otf/template
index 921fcb8d30d..afaf098e6b7 100644
--- a/srcpkgs/font-fira-otf/template
+++ b/srcpkgs/font-fira-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-fira-otf
 version=4.202
 revision=3
-archs=noarch
 wrksrc="Fira-${version}"
 depends="font-util xbps-triggers"
 short_desc="Mozilla's new typeface OTF, used in Firefox OS"
@@ -23,7 +22,6 @@ do_install() {
 }
 
 font-fira-ttf_package() {
-	archs=noarch
 	font_dirs="/usr/share/fonts/TTF"
 	depends="font-util xbps-triggers"
 	pkg_install() {
diff --git a/srcpkgs/font-firacode/template b/srcpkgs/font-firacode/template
index 36df04b7ab1..1699c5211ad 100644
--- a/srcpkgs/font-firacode/template
+++ b/srcpkgs/font-firacode/template
@@ -2,7 +2,6 @@
 pkgname=font-firacode
 version=5.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="FiraCode: monospaced font with programming ligatures"
diff --git a/srcpkgs/font-fontin/template b/srcpkgs/font-fontin/template
index e91405490f5..c0ab17f0e66 100644
--- a/srcpkgs/font-fontin/template
+++ b/srcpkgs/font-fontin/template
@@ -2,7 +2,6 @@
 pkgname=font-fontin
 version=0.0.20151027
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hack-ttf/template b/srcpkgs/font-hack-ttf/template
index 2cec70ff0f0..5929977d6e3 100644
--- a/srcpkgs/font-hack-ttf/template
+++ b/srcpkgs/font-hack-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-hack-ttf
 version=3.003
 revision=1
 wrksrc="Hack-${version}"
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="A typeface designed for source code"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/font-hanazono/template b/srcpkgs/font-hanazono/template
index 0a529e23b0a..cbec1c249ac 100644
--- a/srcpkgs/font-hanazono/template
+++ b/srcpkgs/font-hanazono/template
@@ -3,7 +3,6 @@ pkgname=font-hanazono
 version=20170904
 _revision=68253
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hermit-otf/template b/srcpkgs/font-hermit-otf/template
index 20b784a8149..f20f2fd0e07 100644
--- a/srcpkgs/font-hermit-otf/template
+++ b/srcpkgs/font-hermit-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-hermit-otf
 version=2.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-ibm-plex-ttf/template b/srcpkgs/font-ibm-plex-ttf/template
index 98c9e838f9f..5cdd47ebd0a 100644
--- a/srcpkgs/font-ibm-plex-ttf/template
+++ b/srcpkgs/font-ibm-plex-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-plex-ttf
 version=5.1.0
 revision=1
-archs=noarch
 wrksrc="plex-${version}"
 depends="font-util"
 short_desc="IBM’s typeface, IBM Plex (TTF variant)"
diff --git a/srcpkgs/font-ibm-type1/template b/srcpkgs/font-ibm-type1/template
index aaa4caaab00..549768b91c5 100644
--- a/srcpkgs/font-ibm-type1/template
+++ b/srcpkgs/font-ibm-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-inconsolata-otf/template b/srcpkgs/font-inconsolata-otf/template
index 566e9b29479..65eff0728b6 100644
--- a/srcpkgs/font-inconsolata-otf/template
+++ b/srcpkgs/font-inconsolata-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-inconsolata-otf
 version=001.010
 revision=3
-archs=noarch
 build_style=fetch
 depends="font-util xbps-triggers"
 short_desc="Sans-serif monotype font designed for code listings"
diff --git a/srcpkgs/font-ionicons-ttf/template b/srcpkgs/font-ionicons-ttf/template
index b4fa51931b7..6ac73c9ebc4 100644
--- a/srcpkgs/font-ionicons-ttf/template
+++ b/srcpkgs/font-ionicons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ionicons-ttf
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="ionicons-$version"
 depends="font-util"
 short_desc="Icon font from the Ionic Framework"
diff --git a/srcpkgs/font-iosevka/template b/srcpkgs/font-iosevka/template
index a112064928e..de46bec7644 100644
--- a/srcpkgs/font-iosevka/template
+++ b/srcpkgs/font-iosevka/template
@@ -2,7 +2,6 @@
 pkgname=font-iosevka
 version=3.3.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Slender monospace sans-serif and slab-serif typeface"
diff --git a/srcpkgs/font-isas-misc/template b/srcpkgs/font-isas-misc/template
index 033459448c4..81f16f13ba2 100644
--- a/srcpkgs/font-isas-misc/template
+++ b/srcpkgs/font-isas-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-isas-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-jis-misc/template b/srcpkgs/font-jis-misc/template
index 45638227181..ff60c4b7f17 100644
--- a/srcpkgs/font-jis-misc/template
+++ b/srcpkgs/font-jis-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-jis-misc
 version=1.0.3
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-kakwafont/template b/srcpkgs/font-kakwafont/template
index 89859db95b3..525f489efeb 100644
--- a/srcpkgs/font-kakwafont/template
+++ b/srcpkgs/font-kakwafont/template
@@ -2,7 +2,6 @@
 pkgname=font-kakwafont
 version=0.1.1
 revision=3
-archs=noarch
 wrksrc="kakwafont-${version}"
 build_style=gnu-makefile
 make_install_args="INDEX=false"
diff --git a/srcpkgs/font-libertine-ttf/template b/srcpkgs/font-libertine-ttf/template
index b0521e80e57..7197d3e7c9c 100644
--- a/srcpkgs/font-libertine-ttf/template
+++ b/srcpkgs/font-libertine-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-libertine-ttf
 version=5.3.0
 revision=1
 _date=2012_07_02
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Libertine TTF Fonts - Libre multilingual font family"
@@ -26,7 +25,6 @@ do_install() {
 }
 
 font-libertine-otf_package() {
-	archs=noarch
 	depends="font-util xbps-triggers"
 	short_desc="Libertine OTF Fonts - Libre multilingual font family"
 	font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-manjari/template b/srcpkgs/font-manjari/template
index 459d5de5210..87745816524 100644
--- a/srcpkgs/font-manjari/template
+++ b/srcpkgs/font-manjari/template
@@ -2,7 +2,6 @@
 pkgname=font-manjari
 version=1.810
 revision=3
-archs="noarch"
 create_wrksrc=yes
 depends="font-util"
 short_desc="Malayalam font with smooth curves"
diff --git a/srcpkgs/font-material-design-icons-ttf/template b/srcpkgs/font-material-design-icons-ttf/template
index 70565c4255b..9e9fb6c2991 100644
--- a/srcpkgs/font-material-design-icons-ttf/template
+++ b/srcpkgs/font-material-design-icons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-material-design-icons-ttf
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="material-design-icons-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-micro-misc/template b/srcpkgs/font-micro-misc/template
index 9d07f30c819..6c91e2f0558 100644
--- a/srcpkgs/font-micro-misc/template
+++ b/srcpkgs/font-micro-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-micro-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-misc-misc/template b/srcpkgs/font-misc-misc/template
index bb14ad13e66..454fbcb197f 100644
--- a/srcpkgs/font-misc-misc/template
+++ b/srcpkgs/font-misc-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-misc-misc
 version=1.1.2
 revision=6
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-mplus-ttf/template b/srcpkgs/font-mplus-ttf/template
index 102d839baac..880a2a7d01b 100644
--- a/srcpkgs/font-mplus-ttf/template
+++ b/srcpkgs/font-mplus-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-mplus-ttf
 version=063a
 revision=1
-archs=noarch
 wrksrc="mplus-TESTFLIGHT-${version}"
 depends="fontconfig font-util"
 short_desc="M+ Japanese outline fonts"
diff --git a/srcpkgs/font-mutt-misc/template b/srcpkgs/font-mutt-misc/template
index ec6d140c270..abb8702ad6b 100644
--- a/srcpkgs/font-mutt-misc/template
+++ b/srcpkgs/font-mutt-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-mutt-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-open-dyslexic-ttf/template b/srcpkgs/font-open-dyslexic-ttf/template
index 4b2d57d022a..ae5c3307e9c 100644
--- a/srcpkgs/font-open-dyslexic-ttf/template
+++ b/srcpkgs/font-open-dyslexic-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-open-dyslexic-ttf
 version=20160623
 revision=2
-archs=noarch
 wrksrc="open-dyslexic-${version}-Stable"
 depends="font-util xbps-triggers"
 short_desc="Font created to increase readability for readers with dyslexia"
diff --git a/srcpkgs/font-sarasa-gothic/template b/srcpkgs/font-sarasa-gothic/template
index 8f5d2624504..8ea9f4795c7 100644
--- a/srcpkgs/font-sarasa-gothic/template
+++ b/srcpkgs/font-sarasa-gothic/template
@@ -2,7 +2,6 @@
 pkgname=font-sarasa-gothic
 version=0.12.9
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="CJK programming font based on Iosevka and Source Han Sans"
diff --git a/srcpkgs/font-schumacher-misc/template b/srcpkgs/font-schumacher-misc/template
index e4515207d37..20b0dd7f7dc 100644
--- a/srcpkgs/font-schumacher-misc/template
+++ b/srcpkgs/font-schumacher-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-schumacher-misc
 version=1.1.2
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-sil-abyssinica/template b/srcpkgs/font-sil-abyssinica/template
index 1c48dbfedd6..87bca44c4e4 100644
--- a/srcpkgs/font-sil-abyssinica/template
+++ b/srcpkgs/font-sil-abyssinica/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-abyssinica
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AbyssinicaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-alkalami/template b/srcpkgs/font-sil-alkalami/template
index 684c7b7d0d3..b6638f07c83 100644
--- a/srcpkgs/font-sil-alkalami/template
+++ b/srcpkgs/font-sil-alkalami/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-alkalami
 version=1.100
 revision=1
-archs=noarch
 wrksrc="Alkalami-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-andika/template b/srcpkgs/font-sil-andika/template
index 4b869085776..9cd574eac8e 100644
--- a/srcpkgs/font-sil-andika/template
+++ b/srcpkgs/font-sil-andika/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-andika
 version=5.000
 revision=1
-archs=noarch
 wrksrc="Andika-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-annapurna/template b/srcpkgs/font-sil-annapurna/template
index 388779d980f..0dd4a688a54 100644
--- a/srcpkgs/font-sil-annapurna/template
+++ b/srcpkgs/font-sil-annapurna/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-annapurna
 version=1.204
 revision=1
-archs=noarch
 wrksrc="AnnapurnaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-awami-nastaliq/template b/srcpkgs/font-sil-awami-nastaliq/template
index f09cd252e08..436b8c16390 100644
--- a/srcpkgs/font-sil-awami-nastaliq/template
+++ b/srcpkgs/font-sil-awami-nastaliq/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-awami-nastaliq
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AwamiNastaliq-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-charis/template b/srcpkgs/font-sil-charis/template
index cdff5cb6265..dc864c2e18b 100644
--- a/srcpkgs/font-sil-charis/template
+++ b/srcpkgs/font-sil-charis/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-charis
 version=5.000
 revision=1
-archs=noarch
 wrksrc="CharisSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-doulos/template b/srcpkgs/font-sil-doulos/template
index 67fd84dd976..557fa77a560 100644
--- a/srcpkgs/font-sil-doulos/template
+++ b/srcpkgs/font-sil-doulos/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-doulos
 version=5.000
 revision=1
-archs=noarch
 wrksrc="DoulosSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-ezra/template b/srcpkgs/font-sil-ezra/template
index 1573ff7d06e..b0879ce22b6 100644
--- a/srcpkgs/font-sil-ezra/template
+++ b/srcpkgs/font-sil-ezra/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-ezra
 version=2.51
 revision=1
-archs=noarch
 wrksrc="EzraSIL${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-galatia/template b/srcpkgs/font-sil-galatia/template
index 06742db160b..217d92847c6 100644
--- a/srcpkgs/font-sil-galatia/template
+++ b/srcpkgs/font-sil-galatia/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-galatia
 version=2.1
 revision=1
-archs=noarch
 wrksrc="GalSIL${version/./}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-gentium/template b/srcpkgs/font-sil-gentium/template
index a06cf2d5a9c..9926b9fd944 100644
--- a/srcpkgs/font-sil-gentium/template
+++ b/srcpkgs/font-sil-gentium/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-gentium
 version=5.000
 revision=1
-archs=noarch
 wrksrc="GentiumPlus-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-harmattan/template b/srcpkgs/font-sil-harmattan/template
index 465b63a7244..fbcc81cadd3 100644
--- a/srcpkgs/font-sil-harmattan/template
+++ b/srcpkgs/font-sil-harmattan/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-harmattan
 version=1.001
 revision=1
-archs=noarch
 wrksrc="Harmattan-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-lateef/template b/srcpkgs/font-sil-lateef/template
index d8ab4d2a7b2..8a91a92737a 100644
--- a/srcpkgs/font-sil-lateef/template
+++ b/srcpkgs/font-sil-lateef/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-lateef
 version=1.200
 revision=1
-archs=noarch
 wrksrc="LateefGR-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mingzat/template b/srcpkgs/font-sil-mingzat/template
index 1e227ee5603..079ca445bec 100644
--- a/srcpkgs/font-sil-mingzat/template
+++ b/srcpkgs/font-sil-mingzat/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mingzat
 version=1.000
 revision=1
-archs=noarch
 wrksrc="Mingzat-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mondulkiri/template b/srcpkgs/font-sil-mondulkiri/template
index 483056df803..3b8b09c0548 100644
--- a/srcpkgs/font-sil-mondulkiri/template
+++ b/srcpkgs/font-sil-mondulkiri/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mondulkiri
 version=7.100
 revision=1
-archs=noarch
 wrksrc="Mondulkiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-namdhinggo/template b/srcpkgs/font-sil-namdhinggo/template
index 9de1acbc5a7..d353210bf1e 100644
--- a/srcpkgs/font-sil-namdhinggo/template
+++ b/srcpkgs/font-sil-namdhinggo/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-namdhinggo
 version=1.004
 revision=1
-archs=noarch
 wrksrc="NamdhinggoSIL"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-nuosu/template b/srcpkgs/font-sil-nuosu/template
index 0ae86abefaa..1286c1acb86 100644
--- a/srcpkgs/font-sil-nuosu/template
+++ b/srcpkgs/font-sil-nuosu/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-nuosu
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=NuosuSIL
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-padauk/template b/srcpkgs/font-sil-padauk/template
index 8bbb222dff3..21b37341367 100644
--- a/srcpkgs/font-sil-padauk/template
+++ b/srcpkgs/font-sil-padauk/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-padauk
 version=4.000
 revision=1
-archs=noarch
 wrksrc="Padauk-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-scheherazade/template b/srcpkgs/font-sil-scheherazade/template
index 78a2ce6ee96..77e7c97c8da 100644
--- a/srcpkgs/font-sil-scheherazade/template
+++ b/srcpkgs/font-sil-scheherazade/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-scheherazade
 version=2.100
 revision=1
-archs=noarch
 wrksrc="Scheherazade-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-sophia-nubian/template b/srcpkgs/font-sil-sophia-nubian/template
index 2a97740dff3..597002945d8 100644
--- a/srcpkgs/font-sil-sophia-nubian/template
+++ b/srcpkgs/font-sil-sophia-nubian/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-sophia-nubian
 version=1.0
 revision=1
-archs=noarch
 wrksrc="SophiaNubian"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-tai-heritage-pro/template b/srcpkgs/font-sil-tai-heritage-pro/template
index 0d7283cd4ea..b94f9fc966a 100644
--- a/srcpkgs/font-sil-tai-heritage-pro/template
+++ b/srcpkgs/font-sil-tai-heritage-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-tai-heritage-pro
 version=2.600
 revision=1
-archs=noarch
 wrksrc="TaiHeritagePro-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sony-misc/template b/srcpkgs/font-sony-misc/template
index d7ffef11ed0..765bf6e3555 100644
--- a/srcpkgs/font-sony-misc/template
+++ b/srcpkgs/font-sony-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sony-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-spleen/template b/srcpkgs/font-spleen/template
index 381dabe5554..20e99cd62d8 100644
--- a/srcpkgs/font-spleen/template
+++ b/srcpkgs/font-spleen/template
@@ -2,7 +2,6 @@
 pkgname=font-spleen
 version=1.8.1
 revision=1
-archs=noarch
 wrksrc="spleen-${version}"
 build_style=gnu-makefile
 make_cmd=bmake
diff --git a/srcpkgs/font-sun-misc/template b/srcpkgs/font-sun-misc/template
index d556d006daa..423c85625a7 100644
--- a/srcpkgs/font-sun-misc/template
+++ b/srcpkgs/font-sun-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sun-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-symbola/template b/srcpkgs/font-symbola/template
index 23fa865c2ee..d14241ab6ba 100644
--- a/srcpkgs/font-symbola/template
+++ b/srcpkgs/font-symbola/template
@@ -2,7 +2,6 @@
 pkgname=font-symbola
 version=13.00
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-tamsyn/template b/srcpkgs/font-tamsyn/template
index b76186c2128..3c532eba7bb 100644
--- a/srcpkgs/font-tamsyn/template
+++ b/srcpkgs/font-tamsyn/template
@@ -2,7 +2,6 @@
 pkgname=font-tamsyn
 version=1.11
 revision=1
-archs=noarch
 wrksrc=tamsyn-font-${version}
 depends="font-util xbps-triggers"
 short_desc="A monospaced programming font for the console and X11"
diff --git a/srcpkgs/font-tamzen/template b/srcpkgs/font-tamzen/template
index a5621ff3a29..b20f7c77964 100644
--- a/srcpkgs/font-tamzen/template
+++ b/srcpkgs/font-tamzen/template
@@ -2,7 +2,6 @@
 pkgname=font-tamzen
 version=1.11.4
 revision=1
-archs=noarch
 wrksrc="tamzen-font-Tamzen-${version}"
 makedepends="font-util"
 depends="$makedepends"
diff --git a/srcpkgs/font-unifont-bdf/template b/srcpkgs/font-unifont-bdf/template
index a10e7ae5d7d..b7559c941f1 100644
--- a/srcpkgs/font-unifont-bdf/template
+++ b/srcpkgs/font-unifont-bdf/template
@@ -2,7 +2,6 @@
 pkgname=font-unifont-bdf
 version=13.0.02
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="GNU Unifont Glyphs"
diff --git a/srcpkgs/font-vazir/template b/srcpkgs/font-vazir/template
index 2c1eb8a10c8..d83ca102c7f 100755
--- a/srcpkgs/font-vazir/template
+++ b/srcpkgs/font-vazir/template
@@ -2,7 +2,6 @@
 pkgname=font-vazir
 version=26.0.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Persian (Farsi) Font - قلم (فونت) فارسی وزیر"
diff --git a/srcpkgs/font-vollkorn-ttf/template b/srcpkgs/font-vollkorn-ttf/template
index 43889413a0e..37291fafcd1 100644
--- a/srcpkgs/font-vollkorn-ttf/template
+++ b/srcpkgs/font-vollkorn-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-vollkorn-ttf
 version=4.105
 revision=1
 create_wrksrc=yes
-archs=noarch
 font_dirs="/usr/share/fonts/TTF"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-weather-icons/template b/srcpkgs/font-weather-icons/template
index 02b461ad41d..56f10f6b81d 100644
--- a/srcpkgs/font-weather-icons/template
+++ b/srcpkgs/font-weather-icons/template
@@ -2,7 +2,6 @@
 pkgname=font-weather-icons
 version=2.0.10
 revision=1
-archs=noarch
 wrksrc="weather-icons-${version}"
 depends="font-util"
 short_desc="215 Weather Themed Icons"
diff --git a/srcpkgs/fontconfig/template b/srcpkgs/fontconfig/template
index 18504e4503f..a2afdf88d0e 100644
--- a/srcpkgs/fontconfig/template
+++ b/srcpkgs/fontconfig/template
@@ -42,7 +42,6 @@ fontconfig-devel_package() {
 
 fontconfig-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fonts-croscore-ttf/template b/srcpkgs/fonts-croscore-ttf/template
index 2014d2fda6e..0f1bd7ef6ab 100644
--- a/srcpkgs/fonts-croscore-ttf/template
+++ b/srcpkgs/fonts-croscore-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-croscore-ttf
 version=1.31.0
 revision=2
-archs=noarch
 wrksrc="croscorefonts-${version}"
 depends="font-util xbps-triggers"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonts-droid-ttf/template b/srcpkgs/fonts-droid-ttf/template
index cae1c2979c2..90808815e94 100644
--- a/srcpkgs/fonts-droid-ttf/template
+++ b/srcpkgs/fonts-droid-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-droid-ttf
 version=20150613
 revision=1
-archs=noarch
 _githash=f5de525ee3547b8a69a21aec1e1a3175bc06f442
 create_wrksrc=yes
 depends="font-util"
diff --git a/srcpkgs/fonts-nanum-ttf/template b/srcpkgs/fonts-nanum-ttf/template
index 6a2e826673d..0c96fb5aa2b 100644
--- a/srcpkgs/fonts-nanum-ttf/template
+++ b/srcpkgs/fonts-nanum-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-nanum-ttf
 version=20180306
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 depends="font-util"
 short_desc="Nanum Korean fonts"
diff --git a/srcpkgs/fonts-roboto-ttf/template b/srcpkgs/fonts-roboto-ttf/template
index 2a268ab3c74..839ca2eabf7 100644
--- a/srcpkgs/fonts-roboto-ttf/template
+++ b/srcpkgs/fonts-roboto-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-roboto-ttf
 version=2.138
 revision=1
-archs=noarch
 wrksrc=roboto-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonttools/template b/srcpkgs/fonttools/template
index f94f794b2a2..fc25b5b0476 100644
--- a/srcpkgs/fonttools/template
+++ b/srcpkgs/fonttools/template
@@ -2,7 +2,6 @@
 pkgname=fonttools
 version=4.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/foomatic-db-nonfree/template b/srcpkgs/foomatic-db-nonfree/template
index bfdbd503f51..d909dcfdb41 100644
--- a/srcpkgs/foomatic-db-nonfree/template
+++ b/srcpkgs/foomatic-db-nonfree/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db-nonfree
 version=20200527
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=gnu-configure
 hostmakedepends="tar"
diff --git a/srcpkgs/foomatic-db/template b/srcpkgs/foomatic-db/template
index 07b9adddb78..7035fcc7b0a 100644
--- a/srcpkgs/foomatic-db/template
+++ b/srcpkgs/foomatic-db/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db
 version=20180118
 revision=1
-archs=noarch
 build_style=gnu-configure
 ceeate_wrksrc=yes
 hostmakedepends="tar"
diff --git a/srcpkgs/foot/template b/srcpkgs/foot/template
index 50991a6d351..f27b2bfaff0 100644
--- a/srcpkgs/foot/template
+++ b/srcpkgs/foot/template
@@ -21,7 +21,6 @@ post_install() {
 
 foot-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/fortune-mod-anarchism/template b/srcpkgs/fortune-mod-anarchism/template
index 6c27b0e9dcb..dba867fd63a 100644
--- a/srcpkgs/fortune-mod-anarchism/template
+++ b/srcpkgs/fortune-mod-anarchism/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-anarchism
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=blag-fortune
 build_style=gnu-makefile
 hostmakedepends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-de/template b/srcpkgs/fortune-mod-de/template
index 5f3d1dec7c7..84ff7076b3b 100644
--- a/srcpkgs/fortune-mod-de/template
+++ b/srcpkgs/fortune-mod-de/template
@@ -3,7 +3,6 @@ pkgname=fortune-mod-de
 reverts="1.0_2"
 version=0.34
 revision=1
-archs=noarch
 wrksrc="fortunes-de-upstream-${version}"
 hostmakedepends="fortune-mod"
 depends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-void/template b/srcpkgs/fortune-mod-void/template
index 55b5faab036..508db37b084 100644
--- a/srcpkgs/fortune-mod-void/template
+++ b/srcpkgs/fortune-mod-void/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-void
 version=20200307
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="fortune-mod"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/freedroidRPG/template b/srcpkgs/freedroidRPG/template
index b1cb939802a..a1ecfc60bc3 100644
--- a/srcpkgs/freedroidRPG/template
+++ b/srcpkgs/freedroidRPG/template
@@ -42,7 +42,6 @@ post_install() {
 
 freedroidRPG-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freedroidrpg
 	}
diff --git a/srcpkgs/freefont-ttf/template b/srcpkgs/freefont-ttf/template
index ec248d2f8c7..cae4908ae39 100644
--- a/srcpkgs/freefont-ttf/template
+++ b/srcpkgs/freefont-ttf/template
@@ -2,7 +2,6 @@
 pkgname=freefont-ttf
 version=20120503
 revision=7
-archs=noarch
 wrksrc="freefont-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers>=0.58"
diff --git a/srcpkgs/freeorion/template b/srcpkgs/freeorion/template
index 3078bee0d7b..9960b817536 100644
--- a/srcpkgs/freeorion/template
+++ b/srcpkgs/freeorion/template
@@ -25,7 +25,6 @@ post_extract() {
 freeorion-data_package() {
 	short_desc+=" - data files"
 	license="GPL-2.0-or-later, CC-BY-SA-3.0"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freeorion
 	}
diff --git a/srcpkgs/freepats/template b/srcpkgs/freepats/template
index a8d1bae328a..c96cdb5f5ee 100644
--- a/srcpkgs/freepats/template
+++ b/srcpkgs/freepats/template
@@ -2,7 +2,6 @@
 pkgname="freepats"
 version=20060219
 revision=5
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Free patch set for MIDI audio synthesis"
 maintainer="David <kalichakra@zoho.com>"
diff --git a/srcpkgs/freeplane/template b/srcpkgs/freeplane/template
index bb5875f7e7e..02f94d50ad1 100644
--- a/srcpkgs/freeplane/template
+++ b/srcpkgs/freeplane/template
@@ -2,7 +2,6 @@
 pkgname=freeplane
 version=1.8.6
 revision=1
-archs=noarch
 hostmakedepends="apache-ant openjdk8 unzip gradle"
 depends="virtual?java-runtime"
 short_desc="Application for Mind Mapping, Knowledge Management, Project Management"
diff --git a/srcpkgs/freerouting/template b/srcpkgs/freerouting/template
index 49af416078a..ae53f2e7e2d 100644
--- a/srcpkgs/freerouting/template
+++ b/srcpkgs/freerouting/template
@@ -2,7 +2,6 @@
 pkgname=freerouting
 version=1.4.4
 revision=1
-archs=noarch
 hostmakedepends="gradle openjdk11"
 depends="openjdk11"
 short_desc="Advanced PCB autorouter"
diff --git a/srcpkgs/freetds/template b/srcpkgs/freetds/template
index 43620742759..3aee702fe80 100644
--- a/srcpkgs/freetds/template
+++ b/srcpkgs/freetds/template
@@ -30,7 +30,6 @@ freetds-devel_package() {
 
 freetds-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fsharp/template b/srcpkgs/fsharp/template
index ef9f9b4ccbd..89cc3df9291 100644
--- a/srcpkgs/fsharp/template
+++ b/srcpkgs/fsharp/template
@@ -2,7 +2,6 @@
 pkgname=fsharp
 version=10.2.1
 revision=1
-archs=noarch
 lib32disabled=yes
 build_style=gnu-makefile
 hostmakedepends="msbuild-bin"
diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 51d5ea67a6c..1d6d1a72386 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -2,7 +2,6 @@
 pkgname=gajim
 version=1.2.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-gobject python3-nbxmpp python3-pyasn1 python3-setuptools
diff --git a/srcpkgs/gallery-dl/template b/srcpkgs/gallery-dl/template
index 2a361f53274..1d9283c9bf3 100644
--- a/srcpkgs/gallery-dl/template
+++ b/srcpkgs/gallery-dl/template
@@ -2,7 +2,6 @@
 pkgname=gallery-dl
 version=1.14.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-setuptools"
diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index fc6d3ba3320..4102d7fd7a0 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -2,7 +2,6 @@
 pkgname=gandi-cli
 version=1.5
 revision=2
-archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module
 pycompile_module="gandi/cli"
diff --git a/srcpkgs/gccmakedep/template b/srcpkgs/gccmakedep/template
index 29d6fdaafe0..267d448d92d 100644
--- a/srcpkgs/gccmakedep/template
+++ b/srcpkgs/gccmakedep/template
@@ -2,7 +2,6 @@
 pkgname=gccmakedep
 version=1.0.3
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="The gccmakedep program calls 'gcc -M' to output makefile rules"
 maintainer="Markus Berger <pulux@pf4sh.de>"
diff --git a/srcpkgs/gcdemu/template b/srcpkgs/gcdemu/template
index e12b1c932d2..b05436b54e9 100644
--- a/srcpkgs/gcdemu/template
+++ b/srcpkgs/gcdemu/template
@@ -2,7 +2,6 @@
 pkgname=gcdemu
 version=3.2.4
 revision=1
-archs=noarch
 wrksrc="gcdemu-${version}"
 build_style=cmake
 hostmakedepends="python3 intltool"
diff --git a/srcpkgs/gconfmm/template b/srcpkgs/gconfmm/template
index 5122dc300a3..2f96108e38b 100644
--- a/srcpkgs/gconfmm/template
+++ b/srcpkgs/gconfmm/template
@@ -28,7 +28,6 @@ gconfmm-devel_package() {
 if [ -z "$CROSS_BUILD" ]; then
 gconfmm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index a6b8de8f0cc..28c9f87dcaa 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -2,7 +2,6 @@
 pkgname=gcovr
 version=4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gdash/template b/srcpkgs/gdash/template
index 34e8e9afabb..7a566534167 100644
--- a/srcpkgs/gdash/template
+++ b/srcpkgs/gdash/template
@@ -35,7 +35,6 @@ post_install() {
 
 gdash-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/gdash
 	}
diff --git a/srcpkgs/gdown/template b/srcpkgs/gdown/template
index 8365ff593dd..b54b6173ac4 100644
--- a/srcpkgs/gdown/template
+++ b/srcpkgs/gdown/template
@@ -2,7 +2,6 @@
 pkgname=gdown
 version=3.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-filelock python3-requests python3-six python3-tqdm
diff --git a/srcpkgs/geda/template b/srcpkgs/geda/template
index fbce8bbf734..ec733d4f572 100644
--- a/srcpkgs/geda/template
+++ b/srcpkgs/geda/template
@@ -43,7 +43,6 @@ geda-devel_package() {
 	}
 }
 geda-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - documentation and exmaple files"
 	pkg_install() {
@@ -51,7 +50,6 @@ geda-doc_package() {
 	}
 }
 geda-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/gEDA
diff --git a/srcpkgs/gef/template b/srcpkgs/gef/template
index 16af44ee93e..b854e0b45f6 100644
--- a/srcpkgs/gef/template
+++ b/srcpkgs/gef/template
@@ -2,7 +2,6 @@
 pkgname=gef
 version=2020.06
 revision=1
-archs="noarch"
 pycompile_dirs="usr/share/gef"
 depends="keystone-python3 capstone-python3 unicorn-python3 python3-Ropper"
 short_desc="GDB Enhanced Features for exploit devs & reversers"
diff --git a/srcpkgs/geoip-data/template b/srcpkgs/geoip-data/template
index 2a1991ebf9b..dec0162c948 100644
--- a/srcpkgs/geoip-data/template
+++ b/srcpkgs/geoip-data/template
@@ -7,7 +7,6 @@ short_desc="Non-DNS IP-to-country resolver C library and utilities (data files)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="CC-BY-SA-4.0"
 homepage="https://dev.maxmind.com/geoip/legacy/geolite/"
-archs=noarch
 broken="broken URLs, downloads unversioned files that change daily!"
 
 do_fetch() {
diff --git a/srcpkgs/gespeaker/template b/srcpkgs/gespeaker/template
index bf29ef22410..23052bdb887 100644
--- a/srcpkgs/gespeaker/template
+++ b/srcpkgs/gespeaker/template
@@ -2,7 +2,6 @@
 pkgname=gespeaker
 version=0.8.6
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_dirs="/usr/share/gespeaker"
 hostmakedepends="gettext python"
diff --git a/srcpkgs/geteltorito/template b/srcpkgs/geteltorito/template
index c0be0b6e7a1..75ba25e607a 100644
--- a/srcpkgs/geteltorito/template
+++ b/srcpkgs/geteltorito/template
@@ -4,7 +4,6 @@ version=0.6
 revision=1
 wrksrc=${pkgname}
 depends="perl"
-archs=noarch
 short_desc="El Torito boot image extractor"
 maintainer="bra1nwave <brainwave@openmailbox.org>"
 license="GPL-2"
diff --git a/srcpkgs/getmail/template b/srcpkgs/getmail/template
index 51a5c4a109f..9f030553bda 100644
--- a/srcpkgs/getmail/template
+++ b/srcpkgs/getmail/template
@@ -2,7 +2,6 @@
 pkgname=getmail
 version=5.14
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="getmailcore"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/gettext/template b/srcpkgs/gettext/template
index 4495f83401f..7ecc61efe19 100644
--- a/srcpkgs/gettext/template
+++ b/srcpkgs/gettext/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gettext-devel-examples_package() {
-	archs=noarch
 	short_desc+=" - examples for development"
 	pkg_install() {
 		vmove usr/share/doc/gettext
diff --git a/srcpkgs/ghc/template b/srcpkgs/ghc/template
index e81da479cf0..925ad8693ca 100644
--- a/srcpkgs/ghc/template
+++ b/srcpkgs/ghc/template
@@ -86,7 +86,6 @@ post_install() {
 }
 
 ghc-doc_package() {
-	archs=noarch
 	short_desc+=" -- documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/ghi/template b/srcpkgs/ghi/template
index 907f7588841..9c2ab5da38c 100644
--- a/srcpkgs/ghi/template
+++ b/srcpkgs/ghi/template
@@ -2,7 +2,6 @@
 pkgname=ghi
 version=1.2.0
 revision=1
-archs=noarch
 depends="ruby"
 short_desc="GitHub command line interface"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/giac/template b/srcpkgs/giac/template
index 3d4a32c02e6..7247d9a4f27 100644
--- a/srcpkgs/giac/template
+++ b/srcpkgs/giac/template
@@ -38,7 +38,6 @@ giac-devel_package() {
 
 giac-doc_package() {
 	short_desc+=" - Documentation and Examples"
-	archs=noarch
 	pkg_install() {
 		vmove "usr/share/giac/doc"
 		vmove "usr/share/giac/examples"
diff --git a/srcpkgs/gimme/template b/srcpkgs/gimme/template
index 1893b659fae..4feac731cae 100644
--- a/srcpkgs/gimme/template
+++ b/srcpkgs/gimme/template
@@ -2,7 +2,6 @@
 pkgname=gimme
 version=1.5.4
 revision=1
-archs=noarch
 depends="bash curl git"
 short_desc="Shell script that knows how to install Go"
 maintainer="Alif Rachmawadi <arch@subosito.com>"
diff --git a/srcpkgs/gist/template b/srcpkgs/gist/template
index 39759f57e23..84c876b440e 100644
--- a/srcpkgs/gist/template
+++ b/srcpkgs/gist/template
@@ -2,7 +2,6 @@
 pkgname=gist
 version=5.1.0
 revision=1
-archs=noarch
 hostmakedepends="ruby"
 depends="ruby"
 short_desc="Uploads content to gist.github.com"
diff --git a/srcpkgs/git-cal/template b/srcpkgs/git-cal/template
index e05b6da5964..d4bba56af28 100644
--- a/srcpkgs/git-cal/template
+++ b/srcpkgs/git-cal/template
@@ -2,7 +2,6 @@
 pkgname=git-cal
 version=0.9.1
 revision=3
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/git-cola/template b/srcpkgs/git-cola/template
index bddc3f3fabd..9771e35eaab 100644
--- a/srcpkgs/git-cola/template
+++ b/srcpkgs/git-cola/template
@@ -2,7 +2,6 @@
 pkgname=git-cola
 version=3.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"
 hostmakedepends="python3"
diff --git a/srcpkgs/git-extras/template b/srcpkgs/git-extras/template
index 749b7c1291b..8a19b08ffb7 100644
--- a/srcpkgs/git-extras/template
+++ b/srcpkgs/git-extras/template
@@ -2,7 +2,6 @@
 pkgname=git-extras
 version=6.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="util-linux"
 depends="bash git"
diff --git a/srcpkgs/git-filter-repo/template b/srcpkgs/git-filter-repo/template
index 321464c7159..8d8a7b58010 100644
--- a/srcpkgs/git-filter-repo/template
+++ b/srcpkgs/git-filter-repo/template
@@ -2,7 +2,6 @@
 pkgname=git-filter-repo
 version=2.27.0
 revision=1
-archs=noarch
 depends="git python3"
 checkdepends="git python3 perl rsync dos2unix"
 short_desc="Versatile tool for rewriting git history"
diff --git a/srcpkgs/git-review/template b/srcpkgs/git-review/template
index 0ade5e3c4f2..5a8338df4c0 100644
--- a/srcpkgs/git-review/template
+++ b/srcpkgs/git-review/template
@@ -2,7 +2,6 @@
 pkgname=git-review
 version=1.28.0
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-requests"
diff --git a/srcpkgs/git-revise/template b/srcpkgs/git-revise/template
index 6d3071429b9..aa7b45340cf 100644
--- a/srcpkgs/git-revise/template
+++ b/srcpkgs/git-revise/template
@@ -2,7 +2,6 @@
 pkgname=git-revise
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="git python3-setuptools"
diff --git a/srcpkgs/git-secret/template b/srcpkgs/git-secret/template
index 01541c9b061..888033ef4ab 100644
--- a/srcpkgs/git-secret/template
+++ b/srcpkgs/git-secret/template
@@ -2,7 +2,6 @@
 pkgname=git-secret
 version=0.3.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="PREFIX=/usr"
 depends="bash gawk gnupg coreutils"
diff --git a/srcpkgs/git-toolbelt/template b/srcpkgs/git-toolbelt/template
index e79805ad5b0..223c14d450b 100644
--- a/srcpkgs/git-toolbelt/template
+++ b/srcpkgs/git-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=git-toolbelt
 version=1.5.0
 revision=1
-archs=noarch
 depends="git moreutils fzf"
 short_desc="Helper tools to make everyday life with Git much easier"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/git/template b/srcpkgs/git/template
index 5e258d0c20e..3dd8e39bd00 100644
--- a/srcpkgs/git/template
+++ b/srcpkgs/git/template
@@ -62,7 +62,6 @@ post_install() {
 }
 
 git-cvs_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} cvs cvsps2 perl-DBD-SQLite"
 	short_desc+=" - CVS support"
 	pkg_install() {
@@ -88,7 +87,6 @@ git-svn_package() {
 }
 
 gitk_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc="Git repository browser"
 	license="GPL-2.0-or-later"
@@ -100,7 +98,6 @@ gitk_package() {
 }
 
 git-gui_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc+=" - GUI tool"
 	license="GPL-2.0-or-later"
@@ -115,7 +112,6 @@ git-gui_package() {
 
 git-all_package() {
 	build_style=meta
-	archs=noarch
 	depends="${subpackages/git-all/}"
 	short_desc+=" - meta-package for complete Git installation"
 }
@@ -131,7 +127,6 @@ git-libsecret_package() {
 
 git-netrc_package() {
 	depends="git-${version}_${revision}"
-	archs=noarch
 	short_desc+=" - netrc credential helper"
 	pkg_install() {
 		vmove usr/libexec/git-core/git-credential-netrc
diff --git a/srcpkgs/gitflow/template b/srcpkgs/gitflow/template
index 79c4e1adf5c..481ee2eee2e 100644
--- a/srcpkgs/gitflow/template
+++ b/srcpkgs/gitflow/template
@@ -5,7 +5,6 @@ version=20120925
 revision=2
 _commit=15aab26490facf285acef56cb5d61025eacb3a69
 _shflags_commit=2fb06af13de884e9680f14a00c82e52a67c867f1
-archs=noarch
 hostmakedepends="perl"
 depends="git"
 short_desc="Git extensions to provide high-level repository operations"
diff --git a/srcpkgs/gitolite/template b/srcpkgs/gitolite/template
index 0374c3a991c..ad7d25cd8fe 100644
--- a/srcpkgs/gitolite/template
+++ b/srcpkgs/gitolite/template
@@ -2,7 +2,6 @@
 pkgname=gitolite
 version=3.6.11
 revision=2
-archs=noarch
 depends="git perl"
 short_desc="Access control layer on top of git"
 maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index daeec2ddd7d..f669611d1a9 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -2,7 +2,6 @@
 pkgname=glances
 version=3.1.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-future python3-psutil"
diff --git a/srcpkgs/glibc/template b/srcpkgs/glibc/template
index 4ea327aa1fa..f8e03d38093 100644
--- a/srcpkgs/glibc/template
+++ b/srcpkgs/glibc/template
@@ -201,7 +201,6 @@ glibc-devel_package() {
 	}
 }
 glibc-locales_package() {
-	archs="noarch"
 	conf_files="/etc/default/libc-locales"
 	short_desc+=" - locale data files"
 	pkg_install() {
diff --git a/srcpkgs/glibmm/template b/srcpkgs/glibmm/template
index 23ef47c5994..ea58fb4aef1 100644
--- a/srcpkgs/glibmm/template
+++ b/srcpkgs/glibmm/template
@@ -13,7 +13,6 @@ distfiles="${GNOME_SITE}/glibmm/${version%.*}/glibmm-${version}.tar.xz"
 checksum=36659f13cc73282392d1305858f3bbca46fbd1ce2f078cc9db8b9f79b2e93cfe
 
 glibmm-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/glm/template b/srcpkgs/glm/template
index ae1a892e664..b978a0b992c 100644
--- a/srcpkgs/glm/template
+++ b/srcpkgs/glm/template
@@ -2,7 +2,6 @@
 pkgname=glm
 version=0.9.9.7
 revision=1
-archs=noarch
 wrksrc=glm
 hostmakedepends="dos2unix unzip"
 short_desc="C++ mathematics library for graphics programming"
diff --git a/srcpkgs/glog/template b/srcpkgs/glog/template
index 080a737fb35..dc33e06913a 100644
--- a/srcpkgs/glog/template
+++ b/srcpkgs/glog/template
@@ -27,7 +27,6 @@ glog-devel_package() {
 
 glog-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gmsh/template b/srcpkgs/gmsh/template
index 5d36aaf6eb6..dfac5740dd1 100644
--- a/srcpkgs/gmsh/template
+++ b/srcpkgs/gmsh/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gmsh-doc_package() {
-	archs=noarch
 	short_desc+=" - document and demo files"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/gmsl/template b/srcpkgs/gmsl/template
index 37ec5bcd993..050d9e3af4b 100644
--- a/srcpkgs/gmsl/template
+++ b/srcpkgs/gmsl/template
@@ -2,7 +2,6 @@
 pkgname=gmsl
 version=1.1.8
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="make"
 short_desc="GNU Make Standard Library"
diff --git a/srcpkgs/gmusicbrowser/template b/srcpkgs/gmusicbrowser/template
index a84cce8f01a..55c006dd40d 100644
--- a/srcpkgs/gmusicbrowser/template
+++ b/srcpkgs/gmusicbrowser/template
@@ -2,7 +2,6 @@
 pkgname=gmusicbrowser
 version=1.1.15
 revision=7
-archs=noarch
 hostmakedepends="perl gettext"
 depends="perl-Gtk2 perl-Glib-Object-Introspection gst-plugins-good1
  gst-plugins-bad1 gst-plugins-ugly1"
diff --git a/srcpkgs/gnome-backgrounds/template b/srcpkgs/gnome-backgrounds/template
index 0b1ee427353..67984a56c47 100644
--- a/srcpkgs/gnome-backgrounds/template
+++ b/srcpkgs/gnome-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=gnome-backgrounds
 version=3.36.0
 revision=2
-archs=noarch
 build_style=meson
 hostmakedepends=gettext
 short_desc="Set of background images for the GNOME Desktop"
diff --git a/srcpkgs/gnome-colors-icon-theme/template b/srcpkgs/gnome-colors-icon-theme/template
index 79f36d85e89..02e88ced0a8 100644
--- a/srcpkgs/gnome-colors-icon-theme/template
+++ b/srcpkgs/gnome-colors-icon-theme/template
@@ -1,7 +1,6 @@
 pkgname=gnome-colors-icon-theme
 version=5.5.1
 revision=1
-archs=noarch
 depends="gtk-update-icon-cache hicolor-icon-theme gnome-icon-theme"
 short_desc="GNOME-Colors icon theme"
 maintainer="Peter Bui <pnutzh4x0r@gmail.com>"
diff --git a/srcpkgs/gnome-common/template b/srcpkgs/gnome-common/template
index f8eb31e1333..bf33a8497dd 100644
--- a/srcpkgs/gnome-common/template
+++ b/srcpkgs/gnome-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-common
 version=3.18.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-autoconf-archive"
 hostmakedepends="automake"
diff --git a/srcpkgs/gnome-doc-utils/template b/srcpkgs/gnome-doc-utils/template
index d2fa2e9e4cd..75458a7081b 100644
--- a/srcpkgs/gnome-doc-utils/template
+++ b/srcpkgs/gnome-doc-utils/template
@@ -2,7 +2,6 @@
 pkgname=gnome-doc-utils
 version=0.20.10
 revision=5
-archs=noarch
 build_style=gnu-configure
 configure_args="--disable-scrollkeeper"
 hostmakedepends="pkg-config intltool python3 libxml2-python3 libxslt-python
diff --git a/srcpkgs/gnome-getting-started-docs/template b/srcpkgs/gnome-getting-started-docs/template
index 5bec93490ba..ca718090c24 100644
--- a/srcpkgs/gnome-getting-started-docs/template
+++ b/srcpkgs/gnome-getting-started-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-getting-started-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gnome-doc-utils intltool itstool pkg-config"
 short_desc="Getting Started documentation for GNOME"
diff --git a/srcpkgs/gnome-icon-theme-extras/template b/srcpkgs/gnome-icon-theme-extras/template
index ca52449b6f0..e907872b567 100644
--- a/srcpkgs/gnome-icon-theme-extras/template
+++ b/srcpkgs/gnome-icon-theme-extras/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-extras
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool icon-naming-utils gtk-update-icon-cache"
 makedepends="icon-naming-utils gnome-icon-theme"
diff --git a/srcpkgs/gnome-icon-theme-symbolic/template b/srcpkgs/gnome-icon-theme-symbolic/template
index a76da8de756..ec9d64ae185 100644
--- a/srcpkgs/gnome-icon-theme-symbolic/template
+++ b/srcpkgs/gnome-icon-theme-symbolic/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-symbolic
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="GTK_UPDATE_ICON_CACHE=/bin/true"
 hostmakedepends="pkg-config intltool icon-naming-utils"
diff --git a/srcpkgs/gnome-icon-theme-xfce/template b/srcpkgs/gnome-icon-theme-xfce/template
index 7ef56da2cbd..b08bca158a7 100644
--- a/srcpkgs/gnome-icon-theme-xfce/template
+++ b/srcpkgs/gnome-icon-theme-xfce/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-xfce
 version=0.6
 revision=2
-archs=noarch
 wrksrc="gnome-icon-theme-xfce"
 short_desc="Theme adding missing icons for Xfce"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/gnome-icon-theme/template b/srcpkgs/gnome-icon-theme/template
index e8a46ea8457..1f31970af43 100644
--- a/srcpkgs/gnome-icon-theme/template
+++ b/srcpkgs/gnome-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-icon-mapping"
 hostmakedepends="pkg-config intltool librsvg icon-naming-utils gtk-update-icon-cache"
diff --git a/srcpkgs/gnome-js-common/template b/srcpkgs/gnome-js-common/template
index 263813cf2c8..50582aa152a 100644
--- a/srcpkgs/gnome-js-common/template
+++ b/srcpkgs/gnome-js-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-js-common
 version=0.1.2
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="GNOME JavaScript common modules"
diff --git a/srcpkgs/gnome-mime-data/template b/srcpkgs/gnome-mime-data/template
index e79860e1820..3ca5cd0ab8f 100644
--- a/srcpkgs/gnome-mime-data/template
+++ b/srcpkgs/gnome-mime-data/template
@@ -2,7 +2,6 @@
 pkgname=gnome-mime-data
 version=2.18.0
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool shared-mime-info"
 makedepends="shared-mime-info"
diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index c4609214612..5c2775ffd5d 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -2,7 +2,6 @@
 pkgname=gnome-passwordsafe
 version=3.99.2
 revision=1
-archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson
 hostmakedepends="gettext glib-devel pkg-config gobject-introspection python3-pykeepass"
diff --git a/srcpkgs/gnome-shell-extensions/template b/srcpkgs/gnome-shell-extensions/template
index 97168b40f66..e6d61b34979 100644
--- a/srcpkgs/gnome-shell-extensions/template
+++ b/srcpkgs/gnome-shell-extensions/template
@@ -2,7 +2,6 @@
 pkgname=gnome-shell-extensions
 version=3.34.1
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dextension_set=all"
 hostmakedepends="pkg-config"
diff --git a/srcpkgs/gnome-themes-extra/template b/srcpkgs/gnome-themes-extra/template
index 02ea840e0bc..21981054da4 100644
--- a/srcpkgs/gnome-themes-extra/template
+++ b/srcpkgs/gnome-themes-extra/template
@@ -19,7 +19,6 @@ if [ "$CROSS_BUILD" ]; then
 fi
 
 gnome-themes-standard_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="gnome-themes-extra-${version}_${revision}"
diff --git a/srcpkgs/gnome-tweaks/template b/srcpkgs/gnome-tweaks/template
index 557005fad57..c00e5838422 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -2,7 +2,6 @@
 pkgname=gnome-tweaks
 version=3.34.0
 revision=3
-archs=noarch
 build_style=meson
 hostmakedepends="gettext"
 depends="gtk+3 dconf gnome-settings-daemon mutter libnotify python3-gobject libhandy"
@@ -15,7 +14,6 @@ checksum=003326fab46e6faad9485924bca503f0c583e3b4553d6f673406eda396205250
 replaces="gnome-tweak-tool>=0"
 
 gnome-tweak-tool_package() {
-	archs=noarch
 	build_style=meta
 	depends="gnome-tweaks>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/gnome-user-docs/template b/srcpkgs/gnome-user-docs/template
index 4cb55396e37..90b4044d402 100644
--- a/srcpkgs/gnome-user-docs/template
+++ b/srcpkgs/gnome-user-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-user-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext pkg-config itstool gnome-doc-utils"
 makedepends="yelp"
diff --git a/srcpkgs/gnome-video-effects/template b/srcpkgs/gnome-video-effects/template
index d50ffc6fc1f..211ad34aae5 100644
--- a/srcpkgs/gnome-video-effects/template
+++ b/srcpkgs/gnome-video-effects/template
@@ -2,7 +2,6 @@
 pkgname=gnome-video-effects
 version=0.4.3
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 makedepends="gstreamer1-devel"
diff --git a/srcpkgs/gns3-gui/template b/srcpkgs/gns3-gui/template
index 9ea3c9b78ad..f3c04137a40 100644
--- a/srcpkgs/gns3-gui/template
+++ b/srcpkgs/gns3-gui/template
@@ -2,7 +2,6 @@
 pkgname=gns3-gui
 version=2.2.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-psutil python3-jsonschema python3-sentry
diff --git a/srcpkgs/gns3-net-converter/template b/srcpkgs/gns3-net-converter/template
index 70b6c90e8c8..48afd26125b 100644
--- a/srcpkgs/gns3-net-converter/template
+++ b/srcpkgs/gns3-net-converter/template
@@ -2,7 +2,6 @@
 pkgname=gns3-net-converter
 version=1.3.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gnupod/template b/srcpkgs/gnupod/template
index d4e80ce6c9c..06caedf5738 100644
--- a/srcpkgs/gnupod/template
+++ b/srcpkgs/gnupod/template
@@ -2,7 +2,6 @@
 pkgname=gnupod
 version=0.99.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-Digest-SHA1 perl-XML-Parser perl-Unicode-String perl-MP3-Info perl-TimeDate"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/gnuradio/template b/srcpkgs/gnuradio/template
index 8c7c6e80eee..56969321295 100644
--- a/srcpkgs/gnuradio/template
+++ b/srcpkgs/gnuradio/template
@@ -31,7 +31,6 @@ post_install() {
 
 gnuradio-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gnustep-gui/template b/srcpkgs/gnustep-gui/template
index c6253ca745d..3c1cdbadfe0 100644
--- a/srcpkgs/gnustep-gui/template
+++ b/srcpkgs/gnustep-gui/template
@@ -18,7 +18,6 @@ nocross="objc doesn't get cross build at present within gcc"
 
 gnustep-gui-data_package() {
 	short_desc+=" - assets"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/GNUstep/Sounds
 		vmove usr/lib/GNUstep/Images
diff --git a/srcpkgs/gohufont/template b/srcpkgs/gohufont/template
index c6e43d9c0d1..3218d1befc3 100644
--- a/srcpkgs/gohufont/template
+++ b/srcpkgs/gohufont/template
@@ -2,7 +2,6 @@
 pkgname=gohufont
 version=2.1
 revision=2
-archs=noarch
 makedepends="font-util xbps-triggers"
 depends="$makedepends"
 short_desc="Programming monospace bitmap"
diff --git a/srcpkgs/google-cloud-sdk/template b/srcpkgs/google-cloud-sdk/template
index 62c449829cd..1b094157ca4 100644
--- a/srcpkgs/google-cloud-sdk/template
+++ b/srcpkgs/google-cloud-sdk/template
@@ -2,7 +2,6 @@
 pkgname=google-cloud-sdk
 version=303.0.0
 revision=1
-archs=noarch
 wrksrc=$pkgname
 depends="python3"
 short_desc="Command-line interface for Google Cloud Platform products and services"
diff --git a/srcpkgs/google-fonts-ttf/template b/srcpkgs/google-fonts-ttf/template
index 25ac61c5dbe..b5fdf32bd7b 100644
--- a/srcpkgs/google-fonts-ttf/template
+++ b/srcpkgs/google-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=google-fonts-ttf
 version=20190605
 revision=1
-archs=noarch
 _githash=87776223497b72be361b5c08ba16e9c659209f37
 wrksrc="fonts-${_githash}"
 depends="font-util cantarell-fonts noto-fonts-ttf"
diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 8ce466aaa83..580a64d140d 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -2,7 +2,6 @@
 pkgname=gpodder
 version=3.10.16
 revision=1
-archs=noarch
 wrksrc="gpodder-${version}"
 hostmakedepends="python3 intltool"
 depends="eyeD3 gtk+3 hicolor-icon-theme python3-dbus python3-gobject
diff --git a/srcpkgs/gradle/template b/srcpkgs/gradle/template
index bf4775cd7a7..5d4a15e50a8 100644
--- a/srcpkgs/gradle/template
+++ b/srcpkgs/gradle/template
@@ -2,7 +2,6 @@
 pkgname=gradle
 version=6.4.1
 revision=1
-archs=noarch
 depends="virtual?java-environment"
 short_desc="Build system for Java/C/C++ software"
 maintainer="Adrian Siekierka <kontakt@asie.pl>"
diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 35e3245ef62..a24b860e37f 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -2,7 +2,6 @@
 pkgname=gramps
 version=5.1.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config intltool python3"
 depends="gtk+3 python3-gobject python3-bsddb3"
diff --git a/srcpkgs/grc/template b/srcpkgs/grc/template
index 9efca90352e..a59c5e97f14 100644
--- a/srcpkgs/grc/template
+++ b/srcpkgs/grc/template
@@ -2,7 +2,6 @@
 pkgname=grc
 version=1.11.3
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Colouriser for logfiles and output of commands"
 maintainer="Georg Schabel <gescha@posteo.de>"
diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 237e2ac9ae9..ca6c9f42667 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -2,7 +2,6 @@
 pkgname=greg
 version=0.4.7
 revision=6
-archs=noarch
 build_style=python3-module
 pycompile_module="greg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/greybird-themes/template b/srcpkgs/greybird-themes/template
index 1ce9e214cb1..447ad0da879 100644
--- a/srcpkgs/greybird-themes/template
+++ b/srcpkgs/greybird-themes/template
@@ -2,7 +2,6 @@
 pkgname=greybird-themes
 version=3.22.12
 revision=1
-archs=noarch
 wrksrc="Greybird-${version}"
 build_style=meson
 hostmakedepends="sassc ninja glib-devel gdk-pixbuf-devel librsvg-devel"
diff --git a/srcpkgs/grip/template b/srcpkgs/grip/template
index 6acfe00b299..6459d6bb386 100755
--- a/srcpkgs/grip/template
+++ b/srcpkgs/grip/template
@@ -2,7 +2,6 @@
 pkgname=grip
 version=4.5.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-docopt python3-Flask python3-Markdown python3-path-and-address python3-Pygments python3-requests"
diff --git a/srcpkgs/grml-zsh-config/template b/srcpkgs/grml-zsh-config/template
index 1931c4d1f01..8b674961375 100644
--- a/srcpkgs/grml-zsh-config/template
+++ b/srcpkgs/grml-zsh-config/template
@@ -2,7 +2,6 @@
 pkgname=grml-zsh-config
 version=0.17.4
 revision=1
-archs=noarch
 wrksrc="grml-etc-core-${version}"
 short_desc="Grml's zsh setup"
 maintainer="Christian Poulwey <christian.poulwey@t-online.de>"
diff --git a/srcpkgs/groff/template b/srcpkgs/groff/template
index 690b26c94ff..a6c8419d0df 100644
--- a/srcpkgs/groff/template
+++ b/srcpkgs/groff/template
@@ -50,7 +50,6 @@ libgroff_package() {
 
 groff-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/grub-terminus/template b/srcpkgs/grub-terminus/template
index 5f53c77384d..9b5e867d4df 100644
--- a/srcpkgs/grub-terminus/template
+++ b/srcpkgs/grub-terminus/template
@@ -2,7 +2,6 @@
 pkgname=grub-terminus
 version=0.2
 revision=1
-archs=noarch
 hostmakedepends="grub-utils terminus-font"
 short_desc="Terminus bold fonts for GRUB"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/grub/template b/srcpkgs/grub/template
index 77c6cfbff2f..0c4642323d7 100644
--- a/srcpkgs/grub/template
+++ b/srcpkgs/grub/template
@@ -162,7 +162,6 @@ grub-utils_package() {
 	}
 }
 grub-x86_64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - x86_64 EFI support"
 	pkg_install() {
@@ -170,7 +169,6 @@ grub-x86_64-efi_package() {
 	}
 }
 grub-i386-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - i386 EFI support"
 	pkg_install() {
@@ -178,7 +176,6 @@ grub-i386-efi_package() {
 	}
 }
 grub-i386-coreboot_package() {
-	archs=noarch
 	depends="grub>=$version"
 	short_desc+=" - i386 coreboot support"
 	pkg_install() {
@@ -200,7 +197,6 @@ grub-xen_package() {
 	}
 }
 grub-arm64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - arm64 EFI support"
 	pkg_install() {
@@ -208,7 +204,6 @@ grub-arm64-efi_package() {
 	}
 }
 grub-powerpc-ieee1275_package() {
-	archs=noarch
 	depends="grub>=$version powerpc-utils"
 	short_desc+=" - powerpc Open Firmware support"
 	pkg_install() {
diff --git a/srcpkgs/gscan2pdf/template b/srcpkgs/gscan2pdf/template
index 6e01328a391..201cccf6224 100644
--- a/srcpkgs/gscan2pdf/template
+++ b/srcpkgs/gscan2pdf/template
@@ -2,7 +2,6 @@
 pkgname=gscan2pdf
 version=2.8.2
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl gettext"
 makedepends="ImageMagick djvulibre libmagick-perl perl-Config-General
diff --git a/srcpkgs/gscreenshot/template b/srcpkgs/gscreenshot/template
index 5537910592e..13964d4fbab 100644
--- a/srcpkgs/gscreenshot/template
+++ b/srcpkgs/gscreenshot/template
@@ -2,7 +2,6 @@
 pkgname=gscreenshot
 version=2.12.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="gtk+3 python3-setuptools python3-Pillow python3-gobject scrot"
diff --git a/srcpkgs/gsfonts/template b/srcpkgs/gsfonts/template
index 5d76979e0ed..511a929ceb7 100644
--- a/srcpkgs/gsfonts/template
+++ b/srcpkgs/gsfonts/template
@@ -2,7 +2,6 @@
 pkgname=gsfonts
 version=8.11
 revision=5
-archs=noarch
 wrksrc=fonts
 makedepends="font-util font-misc-misc"
 depends="${makedepends}"
diff --git a/srcpkgs/gtk-doc/template b/srcpkgs/gtk-doc/template
index 439da0d796e..d56054d12f6 100644
--- a/srcpkgs/gtk-doc/template
+++ b/srcpkgs/gtk-doc/template
@@ -2,7 +2,6 @@
 pkgname=gtk-doc
 version=1.32
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="usr/share/gtk-doc/python/gtkdoc"
 hostmakedepends="gettext docbook-xml docbook-xsl itstool libxslt pkg-config python3"
diff --git a/srcpkgs/gtk-theme-united-gnome/template b/srcpkgs/gtk-theme-united-gnome/template
index 3523498a780..355bf483d67 100644
--- a/srcpkgs/gtk-theme-united-gnome/template
+++ b/srcpkgs/gtk-theme-united-gnome/template
@@ -2,7 +2,6 @@
 pkgname=gtk-theme-united-gnome
 version=2.2
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="gnome-themes-standard gtk+3 gtk-engine-murrine"
 short_desc="GTK2/3 + GNOME Shell theme based on a Ubuntu 18.04 design concept"
diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 885fed99f0b..564d719856b 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -2,7 +2,6 @@
 pkgname=guake
 version=3.6.3
 revision=3
-archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"
 pycompile_module="guake"
diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index 1b87f809fe9..348c7ca7da8 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -2,7 +2,6 @@
 pkgname=gufw
 version=20.04.1
 revision=1
-archs=noarch
 wrksrc="gufw-${version}"
 build_style=python3-module
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/guilt/template b/srcpkgs/guilt/template
index 3c17d8cc879..76449857b96 100644
--- a/srcpkgs/guilt/template
+++ b/srcpkgs/guilt/template
@@ -4,7 +4,6 @@ version=0.36
 revision=2
 _githash=22d785dd24329170f66e7696da38b3e90e033d61
 _gitshort="${_githash:0:7}"
-archs=noarch
 wrksrc="guilt-${_gitshort}"
 build_style=gnu-makefile
 make_build_args="-C Documentation"
diff --git a/srcpkgs/gyazo/template b/srcpkgs/gyazo/template
index 3661570514a..261d2f6e175 100644
--- a/srcpkgs/gyazo/template
+++ b/srcpkgs/gyazo/template
@@ -4,7 +4,6 @@ version=1.2.1
 revision=1
 wrksrc="Gyazo-for-Linux-${version}"
 depends="ruby xclip ImageMagick"
-archs=noarch
 short_desc="Seriously Instant Screen-Grabbing"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
 license="GPL-2"
diff --git a/srcpkgs/hamster-applet/template b/srcpkgs/hamster-applet/template
index ce244c38f10..aa6e23f26b3 100644
--- a/srcpkgs/hamster-applet/template
+++ b/srcpkgs/hamster-applet/template
@@ -2,7 +2,6 @@
 pkgname=hamster-applet
 version=2.91.2
 revision=10
-archs=noarch
 build_style=waf
 pycompile_module="hamster"
 hostmakedepends="pkg-config intltool gnome-doc-utils docbook2x"
diff --git a/srcpkgs/hashboot/template b/srcpkgs/hashboot/template
index 67c071e4f9e..49dbe3478f4 100644
--- a/srcpkgs/hashboot/template
+++ b/srcpkgs/hashboot/template
@@ -2,7 +2,6 @@
 pkgname=hashboot
 version=0.9.14
 revision=1
-archs=noarch
 hostmakedepends="asciidoc"
 short_desc="Check integrity of files in /boot, mbr & (mostly) coreboot bios"
 maintainer="teldra <teldra@rotce.de>"
diff --git a/srcpkgs/hedgewars/template b/srcpkgs/hedgewars/template
index 40cdb1086b4..c7418ec778b 100644
--- a/srcpkgs/hedgewars/template
+++ b/srcpkgs/hedgewars/template
@@ -56,7 +56,6 @@ post_install() {
 
 hedgewars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/hedgewars/Data
 	}
diff --git a/srcpkgs/hg-git/template b/srcpkgs/hg-git/template
index 15f981d8563..4a47998a4a3 100644
--- a/srcpkgs/hg-git/template
+++ b/srcpkgs/hg-git/template
@@ -3,7 +3,6 @@ pkgname=hg-git
 version=0.8.12
 revision=1
 wrksrc="durin42-hg-git-c651bb6fcf33"
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python python-dulwich"
diff --git a/srcpkgs/hicolor-icon-theme/template b/srcpkgs/hicolor-icon-theme/template
index 35798239a5e..51d207c4a3c 100644
--- a/srcpkgs/hicolor-icon-theme/template
+++ b/srcpkgs/hicolor-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=hicolor-icon-theme
 version=0.17
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard icon theme called hicolor"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/hiera/template b/srcpkgs/hiera/template
index b8cd47376ba..69f4928eff1 100644
--- a/srcpkgs/hiera/template
+++ b/srcpkgs/hiera/template
@@ -2,7 +2,6 @@
 pkgname=hiera
 version=3.6.0
 revision=2
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/hostfw/template b/srcpkgs/hostfw/template
index 445c9bee74e..00484a3f5b9 100644
--- a/srcpkgs/hostfw/template
+++ b/srcpkgs/hostfw/template
@@ -2,7 +2,6 @@
 pkgname=hostfw
 version=0.6.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="iptables"
 short_desc="Simple host-based permit-by-exception iptables generation script"
diff --git a/srcpkgs/hostmux/template b/srcpkgs/hostmux/template
index c261e9487ec..4a7bd2f0dfa 100644
--- a/srcpkgs/hostmux/template
+++ b/srcpkgs/hostmux/template
@@ -2,7 +2,6 @@
 pkgname=hostmux
 version=1.4.0
 revision=1
-archs=noarch
 depends="tmux"
 short_desc="A small wrapper for tmux to easily connect to a series of hosts via ssh"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/hosts-update/template b/srcpkgs/hosts-update/template
index 4dc11da9b3a..12b123f5182 100644
--- a/srcpkgs/hosts-update/template
+++ b/srcpkgs/hosts-update/template
@@ -2,7 +2,6 @@
 pkgname=hosts-update
 version=1.37
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="bash curl"
 short_desc="Updates /etc/hosts with the mvps blocklist"
diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 2cb04c88273..6de3cef38ba 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -2,7 +2,6 @@
 pkgname=httpie
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests python3-Pygments"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-httpie_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="httpie>=${version}_${revision}"
diff --git a/srcpkgs/hunspell-da_DK/template b/srcpkgs/hunspell-da_DK/template
index 8fffc8f3f32..ebbf69fde46 100644
--- a/srcpkgs/hunspell-da_DK/template
+++ b/srcpkgs/hunspell-da_DK/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-da_DK
 version=2.4
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Danish da_DK dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_CH/template b/srcpkgs/hunspell-de_CH/template
index c23fb3ad0a0..6af64522019 100644
--- a/srcpkgs/hunspell-de_CH/template
+++ b/srcpkgs/hunspell-de_CH/template
@@ -3,7 +3,6 @@ pkgname=hunspell-de_CH
 version=20170112
 revision=1
 _version="${version:0:4}-${version:4:2}.${version:6:2}"
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="German (Switzerland) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_DE/template b/srcpkgs/hunspell-de_DE/template
index f7da2d64d4c..94733999f27 100644
--- a/srcpkgs/hunspell-de_DE/template
+++ b/srcpkgs/hunspell-de_DE/template
@@ -11,7 +11,6 @@ short_desc="German (Germany) dictionary for hunspell"
 distfiles="https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries/${_version}/@@download/file/dict-de_DE-frami_${_version}.oxt>dict-de.zip"
 checksum=af515015e306c634373b5382808a39691200de3439811d2f1502e9b91c23b46a
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall ${wrksrc}/de_DE_frami/de_DE_frami.aff 644 usr/share/hunspell de_DE.aff
diff --git a/srcpkgs/hunspell-el_GR/template b/srcpkgs/hunspell-el_GR/template
index 698057e616e..aaedf9fe65d 100644
--- a/srcpkgs/hunspell-el_GR/template
+++ b/srcpkgs/hunspell-el_GR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-el_GR
 version=0.4.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Greek el_GR dictionary for hunspell"
 maintainer="Nicholas Christopoulos <nereus@freemail.gr>"
diff --git a/srcpkgs/hunspell-en_AU/template b/srcpkgs/hunspell-en_AU/template
index f8f3b94e6ab..7b11e8840e5 100644
--- a/srcpkgs/hunspell-en_AU/template
+++ b/srcpkgs/hunspell-en_AU/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_AU
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Australian English en_AU dictionary for hunspell"
diff --git a/srcpkgs/hunspell-en_GB-ize/template b/srcpkgs/hunspell-en_GB-ize/template
index 41001a413a8..82b38cb25f3 100644
--- a/srcpkgs/hunspell-en_GB-ize/template
+++ b/srcpkgs/hunspell-en_GB-ize/template
@@ -4,7 +4,6 @@ _variant="ize"
 pkgname=${_vpkgname}-${_variant}
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="English dictionary for hunspell ${_variant} variant"
diff --git a/srcpkgs/hunspell-en_US/template b/srcpkgs/hunspell-en_US/template
index 0d100851774..807577870f1 100644
--- a/srcpkgs/hunspell-en_US/template
+++ b/srcpkgs/hunspell-en_US/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_US
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="American English en_US dictionary for hunspell"
diff --git a/srcpkgs/hunspell-es_ES/template b/srcpkgs/hunspell-es_ES/template
index f24f904620f..b08aaabb2a6 100644
--- a/srcpkgs/hunspell-es_ES/template
+++ b/srcpkgs/hunspell-es_ES/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-es_ES
 version=2.5
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Spanish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-fr_FR/template b/srcpkgs/hunspell-fr_FR/template
index 9ad9c70a087..7cd93fe29c6 100644
--- a/srcpkgs/hunspell-fr_FR/template
+++ b/srcpkgs/hunspell-fr_FR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-fr_FR
 version=6.4.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="French dictionary for hunspell"
@@ -24,7 +23,6 @@ hunspell-fr_FR-moderne_package() {
 	short_desc+=" - Moderne Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -37,7 +35,6 @@ hunspell-fr_FR-reforme1990_package() {
 	short_desc+=" - Reforme 1990 Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -50,7 +47,6 @@ hunspell-fr_FR-toutesvariantes_package() {
 	short_desc+=" - All variant in one file"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
diff --git a/srcpkgs/hunspell-hr_HR/template b/srcpkgs/hunspell-hr_HR/template
index a72930fe333..b0ab1484e90 100644
--- a/srcpkgs/hunspell-hr_HR/template
+++ b/srcpkgs/hunspell-hr_HR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-hr_HR
 version=20030928
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Croatian (Croatia) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-it_IT/template b/srcpkgs/hunspell-it_IT/template
index 44d83a79ae6..9d0e0c3186c 100644
--- a/srcpkgs/hunspell-it_IT/template
+++ b/srcpkgs/hunspell-it_IT/template
@@ -3,7 +3,6 @@ pkgname=hunspell-it_IT
 version=4.2
 revision=1
 build_style=fetch
-archs=noarch
 hostmakedepends="unzip"
 short_desc="Italian dictionary for hunspell"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
diff --git a/srcpkgs/hunspell-pl_PL/template b/srcpkgs/hunspell-pl_PL/template
index 31158cc9bec..4cb3ceb10fe 100644
--- a/srcpkgs/hunspell-pl_PL/template
+++ b/srcpkgs/hunspell-pl_PL/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pl_PL
 version=20191005
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Polish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-pt_BR/template b/srcpkgs/hunspell-pt_BR/template
index 4920979d7d3..91b14b275af 100644
--- a/srcpkgs/hunspell-pt_BR/template
+++ b/srcpkgs/hunspell-pt_BR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pt_BR
 version=3.2
 revision=2
-archs=noarch
 build_style=fetch
 hostmakedepends="unzip"
 short_desc="Brazillian Portuguese dictionary for hunspell"
diff --git a/srcpkgs/hunspell-ru_RU-ieyo/template b/srcpkgs/hunspell-ru_RU-ieyo/template
index dcc45866c09..82f485a910a 100644
--- a/srcpkgs/hunspell-ru_RU-ieyo/template
+++ b/srcpkgs/hunspell-ru_RU-ieyo/template
@@ -10,7 +10,6 @@ homepage="http://extensions.openoffice.org/en/projectrelease/russkiy-orfografich
 distfiles="${SOURCEFORGE_SITE}/project/aoo-extensions/5149/3/dict_ru_ru-aot-${version}-ieyo.oxt>dict-ru_RU-ieyo.zip"
 checksum=3b374cf18f00fd0a9b6514eb8413438ce5d425a2e04435ffd81d8acc7ee1e578
 create_wrksrc=yes
-archs=noarch
 provides="hunspell-ru_RU-${version}_${revision}"
 conflicts="hunspell-ru_RU"
 
diff --git a/srcpkgs/hunspell-ru_RU/template b/srcpkgs/hunspell-ru_RU/template
index 862bed568c1..ffd028dbcda 100644
--- a/srcpkgs/hunspell-ru_RU/template
+++ b/srcpkgs/hunspell-ru_RU/template
@@ -10,7 +10,6 @@ homepage="https://extensions.libreoffice.org/extensions/russian-spellcheck-dicti
 distfiles="https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group/${version/./-}/@@download/file/dict_ru_ru-aot-${version}.oxt>dict-ru.zip"
 checksum=ee9b0575e9f8caf1d0a948fb644aed864de47aaf3bc24d2b77f288fec7f8d4c4
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall russian-aot.aff 644 usr/share/hunspell ru_RU.aff
diff --git a/srcpkgs/hunspell-sv_SE/template b/srcpkgs/hunspell-sv_SE/template
index d36dd1359fa..991a74da507 100644
--- a/srcpkgs/hunspell-sv_SE/template
+++ b/srcpkgs/hunspell-sv_SE/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-sv_SE
 version=2.41
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Swedish sv_SE dictionary for hunspell"
diff --git a/srcpkgs/hwids/template b/srcpkgs/hwids/template
index 05feaae9dc1..0d99a8f959b 100644
--- a/srcpkgs/hwids/template
+++ b/srcpkgs/hwids/template
@@ -2,7 +2,6 @@
 pkgname=hwids
 version=20200306
 revision=1
-archs=noarch
 wrksrc="hwids-hwids-${version}"
 short_desc="Hardware Identification Databases"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/i3blocks-blocklets/template b/srcpkgs/i3blocks-blocklets/template
index 82d7380e856..b70dabb34c5 100644
--- a/srcpkgs/i3blocks-blocklets/template
+++ b/srcpkgs/i3blocks-blocklets/template
@@ -2,7 +2,6 @@
 pkgname=i3blocks-blocklets
 version=1.4.0
 revision=2
-archs=noarch
 wrksrc="i3blocks-contrib-${version}"
 depends="i3blocks>=1.5"
 short_desc="Flexible scheduler for i3bar"
diff --git a/srcpkgs/i3lock-fancy/template b/srcpkgs/i3lock-fancy/template
index 5bb3502b4ed..4b3e2ed4663 100644
--- a/srcpkgs/i3lock-fancy/template
+++ b/srcpkgs/i3lock-fancy/template
@@ -2,7 +2,6 @@
 pkgname=i3lock-fancy
 version=0.2
 revision=1
-archs=noarch
 depends="util-linux bash ImageMagick i3lock wmctrl gawk"
 short_desc="Fancy lockscreen using i3lock"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iana-etc/template b/srcpkgs/iana-etc/template
index cf2c419b23c..8717a999a08 100644
--- a/srcpkgs/iana-etc/template
+++ b/srcpkgs/iana-etc/template
@@ -3,7 +3,6 @@ pkgname=iana-etc
 version=20190504
 revision=1
 bootstrap=yes
-archs=noarch
 short_desc="Unix /etc/services and /etc/protocols files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
diff --git a/srcpkgs/ibus-avro/template b/srcpkgs/ibus-avro/template
index 78350f5f4df..5ae42e15aa6 100644
--- a/srcpkgs/ibus-avro/template
+++ b/srcpkgs/ibus-avro/template
@@ -2,7 +2,6 @@
 pkgname=ibus-avro
 version=1.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_target="installdeb"
 hostmakedepends="automake pkg-config"
diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 396448b86f4..6dfcb6e3de2 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -3,7 +3,6 @@ pkgname=icdiff
 version=1.9.5
 revision=2
 wrksrc="${pkgname}-release-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="icdiff.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-icdiff_package() {
-	archs=noarch
 	depends="python3 python3-setuptools"
 	pycompile_module="icdiff.py"
 	alternatives="
diff --git a/srcpkgs/ice-ssb/template b/srcpkgs/ice-ssb/template
index c06941257c1..c4c7625a15a 100644
--- a/srcpkgs/ice-ssb/template
+++ b/srcpkgs/ice-ssb/template
@@ -2,7 +2,6 @@
 pkgname=ice-ssb
 version=6.0.8
 revision=1
-archs=noarch
 wrksrc="ice-$version"
 depends="gtk+3 python3-BeautifulSoup4 python3-gobject python3-requests"
 short_desc="Site Specific Browsers (SSBs) manager"
diff --git a/srcpkgs/icecat/template b/srcpkgs/icecat/template
index 2cdfa5dc264..e3271443af8 100644
--- a/srcpkgs/icecat/template
+++ b/srcpkgs/icecat/template
@@ -208,7 +208,6 @@ do_install() {
 icecat-i18n-ach_package() {
 	short_desc+=" - Acholi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -217,7 +216,6 @@ icecat-i18n-ach_package() {
 icecat-i18n-af_package() {
 	short_desc+=" - Afrikaans language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -226,7 +224,6 @@ icecat-i18n-af_package() {
 icecat-i18n-an_package() {
 	short_desc+=" - Aragonese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -235,7 +232,6 @@ icecat-i18n-an_package() {
 icecat-i18n-ar_package() {
 	short_desc+=" - Arabic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -244,7 +240,6 @@ icecat-i18n-ar_package() {
 icecat-i18n-ast_package() {
 	short_desc+=" - Asturian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -253,7 +248,6 @@ icecat-i18n-ast_package() {
 icecat-i18n-az_package() {
 	short_desc+=" - Azerbaijani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -262,7 +256,6 @@ icecat-i18n-az_package() {
 icecat-i18n-be_package() {
 	short_desc+=" - Belarusian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -271,7 +264,6 @@ icecat-i18n-be_package() {
 icecat-i18n-bg_package() {
 	short_desc+=" - Bulgarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -280,7 +272,6 @@ icecat-i18n-bg_package() {
 icecat-i18n-bn_package() {
 	short_desc+=" - Bengali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -289,7 +280,6 @@ icecat-i18n-bn_package() {
 icecat-i18n-br_package() {
 	short_desc+=" - Breton language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -298,7 +288,6 @@ icecat-i18n-br_package() {
 icecat-i18n-bs_package() {
 	short_desc+=" - Bosnian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -307,7 +296,6 @@ icecat-i18n-bs_package() {
 icecat-i18n-ca_package() {
 	short_desc+=" - Catalan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -316,7 +304,6 @@ icecat-i18n-ca_package() {
 icecat-i18n-cak_package() {
 	short_desc+=" - Kaqchikel language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -325,7 +312,6 @@ icecat-i18n-cak_package() {
 icecat-i18n-cs_package() {
 	short_desc+=" - Czech language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -334,7 +320,6 @@ icecat-i18n-cs_package() {
 icecat-i18n-cy_package() {
 	short_desc+=" - Welsh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -343,7 +328,6 @@ icecat-i18n-cy_package() {
 icecat-i18n-da_package() {
 	short_desc+=" - Danish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -352,7 +336,6 @@ icecat-i18n-da_package() {
 icecat-i18n-de_package() {
 	short_desc+=" - German language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -361,7 +344,6 @@ icecat-i18n-de_package() {
 icecat-i18n-dsb_package() {
 	short_desc+=" - Lower Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -370,7 +352,6 @@ icecat-i18n-dsb_package() {
 icecat-i18n-el_package() {
 	short_desc+=" - Greek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -379,7 +360,6 @@ icecat-i18n-el_package() {
 icecat-i18n-en-CA_package() {
 	short_desc+=" - English (Canada) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -388,7 +368,6 @@ icecat-i18n-en-CA_package() {
 icecat-i18n-en-GB_package() {
 	short_desc+=" - English (British) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -397,7 +376,6 @@ icecat-i18n-en-GB_package() {
 icecat-i18n-en-US_package() {
 	short_desc+=" - English (US) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -406,7 +384,6 @@ icecat-i18n-en-US_package() {
 icecat-i18n-eo_package() {
 	short_desc+=" - Esperanto language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -415,7 +392,6 @@ icecat-i18n-eo_package() {
 icecat-i18n-es-AR_package() {
 	short_desc+=" - Spanish (Argentina) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -424,7 +400,6 @@ icecat-i18n-es-AR_package() {
 icecat-i18n-es-CL_package() {
 	short_desc+=" - Spanish (Chile) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -433,7 +408,6 @@ icecat-i18n-es-CL_package() {
 icecat-i18n-es-ES_package() {
 	short_desc+=" - Spanish (Spain) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -442,7 +416,6 @@ icecat-i18n-es-ES_package() {
 icecat-i18n-es-MX_package() {
 	short_desc+=" - Spanish (Mexico) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -451,7 +424,6 @@ icecat-i18n-es-MX_package() {
 icecat-i18n-et_package() {
 	short_desc+=" - Estonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -460,7 +432,6 @@ icecat-i18n-et_package() {
 icecat-i18n-eu_package() {
 	short_desc+=" - Basque language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -469,7 +440,6 @@ icecat-i18n-eu_package() {
 icecat-i18n-fa_package() {
 	short_desc+=" - Persian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -478,7 +448,6 @@ icecat-i18n-fa_package() {
 icecat-i18n-ff_package() {
 	short_desc+=" - Fulah language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -487,7 +456,6 @@ icecat-i18n-ff_package() {
 icecat-i18n-fi_package() {
 	short_desc+=" - Finnish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -496,7 +464,6 @@ icecat-i18n-fi_package() {
 icecat-i18n-fr_package() {
 	short_desc+=" - French language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -505,7 +472,6 @@ icecat-i18n-fr_package() {
 icecat-i18n-fy-NL_package() {
 	short_desc+=" - Frisian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -514,7 +480,6 @@ icecat-i18n-fy-NL_package() {
 icecat-i18n-ga-IE_package() {
 	short_desc+=" - Irish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -523,7 +488,6 @@ icecat-i18n-ga-IE_package() {
 icecat-i18n-gd_package() {
 	short_desc+=" - Gaelic (Scotland) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -532,7 +496,6 @@ icecat-i18n-gd_package() {
 icecat-i18n-gl_package() {
 	short_desc+=" - Galician language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -541,7 +504,6 @@ icecat-i18n-gl_package() {
 icecat-i18n-gn_package() {
 	short_desc+=" - Guarani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -550,7 +512,6 @@ icecat-i18n-gn_package() {
 icecat-i18n-gu-IN_package() {
 	short_desc+=" - Gujarati (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -559,7 +520,6 @@ icecat-i18n-gu-IN_package() {
 icecat-i18n-he_package() {
 	short_desc+=" - Hebrew language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -568,7 +528,6 @@ icecat-i18n-he_package() {
 icecat-i18n-hi-IN_package() {
 	short_desc+=" - Hindi (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -577,7 +536,6 @@ icecat-i18n-hi-IN_package() {
 icecat-i18n-hr_package() {
 	short_desc+=" - Croatian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -586,7 +544,6 @@ icecat-i18n-hr_package() {
 icecat-i18n-hsb_package() {
 	short_desc+=" - Upper Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -595,7 +552,6 @@ icecat-i18n-hsb_package() {
 icecat-i18n-hu_package() {
 	short_desc+=" - Hungarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -604,7 +560,6 @@ icecat-i18n-hu_package() {
 icecat-i18n-hy-AM_package() {
 	short_desc+=" - Armenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -613,7 +568,6 @@ icecat-i18n-hy-AM_package() {
 icecat-i18n-ia_package() {
 	short_desc+=" - Interlingua language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -622,7 +576,6 @@ icecat-i18n-ia_package() {
 icecat-i18n-id_package() {
 	short_desc+=" - Indonesian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -631,7 +584,6 @@ icecat-i18n-id_package() {
 icecat-i18n-is_package() {
 	short_desc+=" - Icelandic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -640,7 +592,6 @@ icecat-i18n-is_package() {
 icecat-i18n-it_package() {
 	short_desc+=" - Italian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -649,7 +600,6 @@ icecat-i18n-it_package() {
 icecat-i18n-ja_package() {
 	short_desc+=" - Japanese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -658,7 +608,6 @@ icecat-i18n-ja_package() {
 icecat-i18n-ka_package() {
 	short_desc+=" - Georgian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -667,7 +616,6 @@ icecat-i18n-ka_package() {
 icecat-i18n-kab_package() {
 	short_desc+=" - Kabyle language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -676,7 +624,6 @@ icecat-i18n-kab_package() {
 icecat-i18n-kk_package() {
 	short_desc+=" - Kazakh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -685,7 +632,6 @@ icecat-i18n-kk_package() {
 icecat-i18n-km_package() {
 	short_desc+=" - Khmer language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -694,7 +640,6 @@ icecat-i18n-km_package() {
 icecat-i18n-kn_package() {
 	short_desc+=" - Kannada language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -703,7 +648,6 @@ icecat-i18n-kn_package() {
 icecat-i18n-ko_package() {
 	short_desc+=" - Korean language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -712,7 +656,6 @@ icecat-i18n-ko_package() {
 icecat-i18n-lij_package() {
 	short_desc+=" - Ligurian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -721,7 +664,6 @@ icecat-i18n-lij_package() {
 icecat-i18n-lt_package() {
 	short_desc+=" - Lithuanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -730,7 +672,6 @@ icecat-i18n-lt_package() {
 icecat-i18n-lv_package() {
 	short_desc+=" - Latvian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -739,7 +680,6 @@ icecat-i18n-lv_package() {
 icecat-i18n-mk_package() {
 	short_desc+=" - Macedonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -748,7 +688,6 @@ icecat-i18n-mk_package() {
 icecat-i18n-mr_package() {
 	short_desc+=" - Marathi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -757,7 +696,6 @@ icecat-i18n-mr_package() {
 icecat-i18n-ms_package() {
 	short_desc+=" - Malay language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -766,7 +704,6 @@ icecat-i18n-ms_package() {
 icecat-i18n-my_package() {
 	short_desc+=" - Burmese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -775,7 +712,6 @@ icecat-i18n-my_package() {
 icecat-i18n-nb-NO_package() {
 	short_desc+=" - Norwegian (Bokmål) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -784,7 +720,6 @@ icecat-i18n-nb-NO_package() {
 icecat-i18n-ne-NP_package() {
 	short_desc+=" - Nepali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -793,7 +728,6 @@ icecat-i18n-ne-NP_package() {
 icecat-i18n-nl_package() {
 	short_desc+=" - Dutch language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -802,7 +736,6 @@ icecat-i18n-nl_package() {
 icecat-i18n-nn-NO_package() {
 	short_desc+=" - Norwegian (Nynorsk) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -811,7 +744,6 @@ icecat-i18n-nn-NO_package() {
 icecat-i18n-oc_package() {
 	short_desc+=" - Occitan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -820,7 +752,6 @@ icecat-i18n-oc_package() {
 icecat-i18n-pa-IN_package() {
 	short_desc+=" - Punjabi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -829,7 +760,6 @@ icecat-i18n-pa-IN_package() {
 icecat-i18n-pl_package() {
 	short_desc+=" - Polish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -838,7 +768,6 @@ icecat-i18n-pl_package() {
 icecat-i18n-pt-BR_package() {
 	short_desc+=" - Portuguese (Brazilian) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -847,7 +776,6 @@ icecat-i18n-pt-BR_package() {
 icecat-i18n-pt-PT_package() {
 	short_desc+=" - Portuguese (Portugal) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -856,7 +784,6 @@ icecat-i18n-pt-PT_package() {
 icecat-i18n-rm_package() {
 	short_desc+=" - Romansh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -865,7 +792,6 @@ icecat-i18n-rm_package() {
 icecat-i18n-ro_package() {
 	short_desc+=" - Romanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -874,7 +800,6 @@ icecat-i18n-ro_package() {
 icecat-i18n-ru_package() {
 	short_desc+=" - Russian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -883,7 +808,6 @@ icecat-i18n-ru_package() {
 icecat-i18n-si_package() {
 	short_desc+=" - Sinhala language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -892,7 +816,6 @@ icecat-i18n-si_package() {
 icecat-i18n-sk_package() {
 	short_desc+=" - Slovak language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -901,7 +824,6 @@ icecat-i18n-sk_package() {
 icecat-i18n-sl_package() {
 	short_desc+=" - Slovenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -910,7 +832,6 @@ icecat-i18n-sl_package() {
 icecat-i18n-son_package() {
 	short_desc+=" - Songhai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -919,7 +840,6 @@ icecat-i18n-son_package() {
 icecat-i18n-sq_package() {
 	short_desc+=" - Albanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -928,7 +848,6 @@ icecat-i18n-sq_package() {
 icecat-i18n-sr_package() {
 	short_desc+=" - Serbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -937,7 +856,6 @@ icecat-i18n-sr_package() {
 icecat-i18n-sv-SE_package() {
 	short_desc+=" - Swedish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -946,7 +864,6 @@ icecat-i18n-sv-SE_package() {
 icecat-i18n-ta_package() {
 	short_desc+=" - Tamil language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -955,7 +872,6 @@ icecat-i18n-ta_package() {
 icecat-i18n-te_package() {
 	short_desc+=" - Telugu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -964,7 +880,6 @@ icecat-i18n-te_package() {
 icecat-i18n-th_package() {
 	short_desc+=" - Thai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -973,7 +888,6 @@ icecat-i18n-th_package() {
 icecat-i18n-tr_package() {
 	short_desc+=" - Turkish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -982,7 +896,6 @@ icecat-i18n-tr_package() {
 icecat-i18n-uk_package() {
 	short_desc+=" - Ukrainian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -991,7 +904,6 @@ icecat-i18n-uk_package() {
 icecat-i18n-ur_package() {
 	short_desc+=" - Urdu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1000,7 +912,6 @@ icecat-i18n-ur_package() {
 icecat-i18n-uz_package() {
 	short_desc+=" - Uzbek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1009,7 +920,6 @@ icecat-i18n-uz_package() {
 icecat-i18n-vi_package() {
 	short_desc+=" - Vietnamese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1018,7 +928,6 @@ icecat-i18n-vi_package() {
 icecat-i18n-xh_package() {
 	short_desc+=" - Xhosa language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1027,7 +936,6 @@ icecat-i18n-xh_package() {
 icecat-i18n-zh-CN_package() {
 	short_desc+=" - Chinese (simplified) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1036,7 +944,6 @@ icecat-i18n-zh-CN_package() {
 icecat-i18n-zh-TW_package() {
 	short_desc+=" - Chinese (traditional) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
diff --git a/srcpkgs/icedtea-sound/template b/srcpkgs/icedtea-sound/template
index 4ad965c6806..ef2c242eedf 100644
--- a/srcpkgs/icedtea-sound/template
+++ b/srcpkgs/icedtea-sound/template
@@ -15,7 +15,6 @@ checksum=6ff852b82ae7db7a95981271037eb3a3d52c59581e3b27a638a7c6bc8eecb4a3
 
 icedtea-sound-doc_package() {
 	short_desc+=" - docs"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/icon-naming-utils/template b/srcpkgs/icon-naming-utils/template
index f069d604e37..e530a4c40c3 100644
--- a/srcpkgs/icon-naming-utils/template
+++ b/srcpkgs/icon-naming-utils/template
@@ -2,7 +2,6 @@
 pkgname=icon-naming-utils
 version=0.8.90
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Simple"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/imgp/template b/srcpkgs/imgp/template
index 872b3db406c..f7df8788ae5 100644
--- a/srcpkgs/imgp/template
+++ b/srcpkgs/imgp/template
@@ -2,7 +2,6 @@
 pkgname=imgp
 version=2.7
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-Pillow"
 short_desc="Multi-core batch image resizer and rotator"
diff --git a/srcpkgs/indic-otf/template b/srcpkgs/indic-otf/template
index 4f37e66f3ce..a4717a0a1ca 100644
--- a/srcpkgs/indic-otf/template
+++ b/srcpkgs/indic-otf/template
@@ -2,7 +2,6 @@
 pkgname=indic-otf
 version=0.2
 revision=3
-archs=noarch
 wrksrc=indic
 build_wrksrc=OpenType
 makedepends="font-util xbps-triggers"
diff --git a/srcpkgs/indicator-doom-cpu/template b/srcpkgs/indicator-doom-cpu/template
index 33158f90a16..7ebac683ada 100644
--- a/srcpkgs/indicator-doom-cpu/template
+++ b/srcpkgs/indicator-doom-cpu/template
@@ -2,7 +2,6 @@
 pkgname=indicator-doom-cpu
 version=1.0.1
 revision=1
-archs=noarch
 depends="python-gobject"
 short_desc="CPU load indicator showing the dying face from the video game DOOM"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/iniparser/template b/srcpkgs/iniparser/template
index 63eb336c7ea..5cef8a0a774 100644
--- a/srcpkgs/iniparser/template
+++ b/srcpkgs/iniparser/template
@@ -58,14 +58,12 @@ iniparser-devel_package() {
 }
 iniparser-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/iniparser
 	}
 }
 iniparser-example_package() {
 	short_desc+=" - example code"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/iniparser/example
 	}
diff --git a/srcpkgs/intltool/template b/srcpkgs/intltool/template
index 852e1e00ca2..00f0595c822 100644
--- a/srcpkgs/intltool/template
+++ b/srcpkgs/intltool/template
@@ -2,7 +2,6 @@
 pkgname=intltool
 version=0.51.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Parser"
 makedepends="perl-XML-Parser gettext"
diff --git a/srcpkgs/inxi/template b/srcpkgs/inxi/template
index 4126ef12968..df16132b791 100644
--- a/srcpkgs/inxi/template
+++ b/srcpkgs/inxi/template
@@ -2,7 +2,6 @@
 pkgname=inxi
 version=3.1.04
 revision=1
-archs=noarch
 wrksrc="inxi-${version}-1"
 depends="dmidecode file glxinfo pciutils perl usbutils xdpyinfo xprop xrandr
  procps-ng"
diff --git a/srcpkgs/io.elementary.stylesheet/template b/srcpkgs/io.elementary.stylesheet/template
index 6b40406712d..bf13584ffc7 100644
--- a/srcpkgs/io.elementary.stylesheet/template
+++ b/srcpkgs/io.elementary.stylesheet/template
@@ -2,7 +2,6 @@
 pkgname=io.elementary.stylesheet
 version=5.4.2
 revision=1
-archs=noarch
 wrksrc="stylesheet-${version}"
 build_style=meson
 short_desc="GTK Stylesheet for elementary OS"
diff --git a/srcpkgs/ioprof/template b/srcpkgs/ioprof/template
index 32b327b4677..26c0306eeb1 100644
--- a/srcpkgs/ioprof/template
+++ b/srcpkgs/ioprof/template
@@ -2,7 +2,6 @@
 pkgname=ioprof
 version=2.0.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="perl blktrace"
 short_desc="Linux I/O profiler"
diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 522bf32a7c2..1cde442db97 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -2,7 +2,6 @@
 pkgname=iotop
 version=0.6
 revision=6
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/ipafont-fonts-otf/template b/srcpkgs/ipafont-fonts-otf/template
index cd7a474d169..37223a3949d 100644
--- a/srcpkgs/ipafont-fonts-otf/template
+++ b/srcpkgs/ipafont-fonts-otf/template
@@ -3,7 +3,6 @@ pkgname=ipafont-fonts-otf
 version=003.03
 revision=3
 _pkgver=${version/./}
-archs=noarch
 wrksrc="IPAfont${_pkgver}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/ipcalc/template b/srcpkgs/ipcalc/template
index 6a35f924f0d..b9d7374e56a 100644
--- a/srcpkgs/ipcalc/template
+++ b/srcpkgs/ipcalc/template
@@ -2,7 +2,6 @@
 pkgname=ipcalc
 version=0.41
 revision=2
-archs=noarch
 depends="perl"
 short_desc="Calculator for IPv4 addresses"
 maintainer="allan <mail@may.mooo.com>"
diff --git a/srcpkgs/ipw2100-firmware/template b/srcpkgs/ipw2100-firmware/template
index 91d72d07724..ea086f6f90f 100644
--- a/srcpkgs/ipw2100-firmware/template
+++ b/srcpkgs/ipw2100-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2100-firmware
 _distname=ipw2100-fw
 version=1.3
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 create_wrksrc=yes
 short_desc="Firmware for the Intel PRO/Wireless 2100 wifi cards"
diff --git a/srcpkgs/ipw2200-firmware/template b/srcpkgs/ipw2200-firmware/template
index f6accfe3dbb..418eb943478 100644
--- a/srcpkgs/ipw2200-firmware/template
+++ b/srcpkgs/ipw2200-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2200-firmware
 _distname=ipw2200-fw
 version=3.1
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 short_desc="Firmware for the Intel PRO/Wireless 2200BG wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iscan-data/template b/srcpkgs/iscan-data/template
index 2953cb34344..bd5452da2e5 100644
--- a/srcpkgs/iscan-data/template
+++ b/srcpkgs/iscan-data/template
@@ -3,7 +3,6 @@ pkgname=iscan-data
 version=1.39.0
 revision=2
 _srcrev=1
-archs=noarch
 build_style=gnu-configure
 maintainer="Orphaned <orphan@voidlinux.org>"
 hostmakedepends="libxslt"
diff --git a/srcpkgs/iso-codes/template b/srcpkgs/iso-codes/template
index fc7a09d4007..af6c55a68ff 100644
--- a/srcpkgs/iso-codes/template
+++ b/srcpkgs/iso-codes/template
@@ -2,7 +2,6 @@
 pkgname=iso-codes
 version=4.5.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext python3"
 short_desc="List of country, language and currency names"
diff --git a/srcpkgs/itstool/template b/srcpkgs/itstool/template
index a3f124f23d7..9ac9bb0a603 100644
--- a/srcpkgs/itstool/template
+++ b/srcpkgs/itstool/template
@@ -2,7 +2,6 @@
 pkgname=itstool
 version=2.0.6
 revision=3
-archs=noarch
 build_style=gnu-configure
 configure_args="PYTHON=/usr/bin/python3"
 hostmakedepends="python3 libxml2-python3"
diff --git a/srcpkgs/jadx/template b/srcpkgs/jadx/template
index cde9ed2a8d4..fd52cd29d15 100644
--- a/srcpkgs/jadx/template
+++ b/srcpkgs/jadx/template
@@ -2,7 +2,6 @@
 pkgname=jadx
 version=1.1.0
 revision=1
-archs=noarch
 hostmakedepends="openjdk8 gradle"
 short_desc="Decompiler for Dalvik bytecode"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/java-commons-io/template b/srcpkgs/java-commons-io/template
index ffabff135f4..7a7601e085e 100644
--- a/srcpkgs/java-commons-io/template
+++ b/srcpkgs/java-commons-io/template
@@ -3,7 +3,6 @@ _origname=commons-io
 pkgname=java-commons-io
 version=2.6
 revision=1
-archs=noarch
 wrksrc="${_origname}-${version}-src"
 hostmakedepends="openjdk8 apache-maven which"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/javahelp2/template b/srcpkgs/javahelp2/template
index d3f7c69614d..afc69de8a88 100644
--- a/srcpkgs/javahelp2/template
+++ b/srcpkgs/javahelp2/template
@@ -4,7 +4,6 @@ version=2.0.05.20170719
 revision=1
 _gitver=3ca862d8626096770598a3a256886d205246f4a4
 wrksrc=javahelp-${_gitver}
-archs=noarch
 short_desc="Java based help system"
 hostmakedepends="openjdk8 apache-ant unzip which"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index b184ef09508..eb91cd9e2d9 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -2,7 +2,6 @@
 pkgname=jrnl
 version=1.9.8
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/kadu/template b/srcpkgs/kadu/template
index da8c8c086ff..1e4dc39ce37 100644
--- a/srcpkgs/kadu/template
+++ b/srcpkgs/kadu/template
@@ -55,7 +55,6 @@ pre_configure() {
 
 kadu-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons
 		vmove "usr/share/kadu/configuration/*.ui"
diff --git a/srcpkgs/kaitai-struct-compiler/template b/srcpkgs/kaitai-struct-compiler/template
index 011a403ca88..2901be0f58c 100644
--- a/srcpkgs/kaitai-struct-compiler/template
+++ b/srcpkgs/kaitai-struct-compiler/template
@@ -2,7 +2,6 @@
 pkgname=kaitai-struct-compiler
 version=0.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Compiler for the Kaitai declarative binary format parsing language"
diff --git a/srcpkgs/kapidox/template b/srcpkgs/kapidox/template
index 90b1e006254..6c74bf04220 100644
--- a/srcpkgs/kapidox/template
+++ b/srcpkgs/kapidox/template
@@ -2,7 +2,6 @@
 pkgname=kapidox
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 pycompile_module="kapidox"
 hostmakedepends="kcoreaddons extra-cmake-modules python"
diff --git a/srcpkgs/kbd/template b/srcpkgs/kbd/template
index 2680406aae9..72bc3eab653 100644
--- a/srcpkgs/kbd/template
+++ b/srcpkgs/kbd/template
@@ -53,7 +53,6 @@ post_install() {
 kbd-data_package() {
 	short_desc+=" - keymaps, console fonts and unicode maps"
 	replaces="kbd<2.0.1_1"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kbd/consolefonts
 		vmove usr/share/kbd/consoletrans
diff --git a/srcpkgs/key-mon/template b/srcpkgs/key-mon/template
index b483fd36c03..e42745bcbfb 100644
--- a/srcpkgs/key-mon/template
+++ b/srcpkgs/key-mon/template
@@ -2,7 +2,6 @@
 pkgname=key-mon
 version=1.17
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="keymon"
 hostmakedepends="python"
diff --git a/srcpkgs/keychain/template b/srcpkgs/keychain/template
index 617d205a587..20eaaf9f319 100644
--- a/srcpkgs/keychain/template
+++ b/srcpkgs/keychain/template
@@ -2,7 +2,6 @@
 pkgname=keychain
 version=2.8.5
 revision=1
-archs=noarch
 short_desc="Keychain manager for ssh-agent and gpg-agent"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="http://www.funtoo.org/wiki/Keychain"
diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index a73516695bf..af4605226e5 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -2,7 +2,6 @@
 pkgname=khal
 version=0.10.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="khal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index ff62c013202..d9f7ddbc972 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -2,7 +2,6 @@
 pkgname=khard
 version=0.15.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="khard"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/khmer-fonts-ttf/template b/srcpkgs/khmer-fonts-ttf/template
index e1791f740fe..749da440514 100644
--- a/srcpkgs/khmer-fonts-ttf/template
+++ b/srcpkgs/khmer-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=khmer-fonts-ttf
 version=5.0
 revision=1
-archs=noarch
 wrksrc="All_KhmerOS_${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/kicad-footprints/template b/srcpkgs/kicad-footprints/template
index 5beb079dea1..c3ba4a8375c 100644
--- a/srcpkgs/kicad-footprints/template
+++ b/srcpkgs/kicad-footprints/template
@@ -2,7 +2,6 @@
 pkgname=kicad-footprints
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad footprint libraries"
diff --git a/srcpkgs/kicad-i18n/template b/srcpkgs/kicad-i18n/template
index 8e9da8555cd..19b43b59a43 100644
--- a/srcpkgs/kicad-i18n/template
+++ b/srcpkgs/kicad-i18n/template
@@ -3,7 +3,6 @@ pkgname=kicad-i18n
 version=5.1.6
 revision=1
 _commit=5ad171ce5c8d90f4740517c2adecb310d8be51bd
-archs=noarch
 wrksrc="${pkgname}-${version}-${_commit}"
 build_style=cmake
 hostmakedepends="gettext"
diff --git a/srcpkgs/kicad-packages3D/template b/srcpkgs/kicad-packages3D/template
index cf606628cd2..d7e3636491c 100644
--- a/srcpkgs/kicad-packages3D/template
+++ b/srcpkgs/kicad-packages3D/template
@@ -2,7 +2,6 @@
 pkgname=kicad-packages3D
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad 3D model libraries"
diff --git a/srcpkgs/kicad-symbols/template b/srcpkgs/kicad-symbols/template
index 61e9021634b..b37b74386a4 100644
--- a/srcpkgs/kicad-symbols/template
+++ b/srcpkgs/kicad-symbols/template
@@ -2,7 +2,6 @@
 pkgname=kicad-symbols
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad symbol libraries"
diff --git a/srcpkgs/kicad-templates/template b/srcpkgs/kicad-templates/template
index 68412310182..5d4adb6a74f 100644
--- a/srcpkgs/kicad-templates/template
+++ b/srcpkgs/kicad-templates/template
@@ -2,7 +2,6 @@
 pkgname=kicad-templates
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad templates"
diff --git a/srcpkgs/kickassembler/template b/srcpkgs/kickassembler/template
index 938ec12394b..5b4bafa5fc9 100644
--- a/srcpkgs/kickassembler/template
+++ b/srcpkgs/kickassembler/template
@@ -2,7 +2,6 @@
 pkgname=kickassembler
 version=4.19
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="virtual?java-environment"
 hostmakedepends="unzip"
diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index 8c672f481b4..51608cf3e53 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -41,7 +41,6 @@ do_install() {
 
 kitty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/kobodeluxe/template b/srcpkgs/kobodeluxe/template
index 60539b09390..5a1ee26d3e4 100644
--- a/srcpkgs/kobodeluxe/template
+++ b/srcpkgs/kobodeluxe/template
@@ -29,7 +29,6 @@ post_install() {
 
 kobodeluxe-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kobo-deluxe
 	}
diff --git a/srcpkgs/kodi-binary-addons/template b/srcpkgs/kodi-binary-addons/template
index 50784a8adcb..f1eefbe8e23 100644
--- a/srcpkgs/kodi-binary-addons/template
+++ b/srcpkgs/kodi-binary-addons/template
@@ -2,7 +2,6 @@
 pkgname=kodi-binary-addons
 version=18.6
 revision=1
-archs=noarch
 build_style=meta
 depends="kodi-addon-pvr-zattoo kodi-addon-game-libretro
  kodi-addon-peripheral-joystick kodi-addon-inputstream-rtmp
diff --git a/srcpkgs/kpcli/template b/srcpkgs/kpcli/template
index 3201920ce88..073b3925444 100644
--- a/srcpkgs/kpcli/template
+++ b/srcpkgs/kpcli/template
@@ -2,7 +2,6 @@
 pkgname=kpcli
 version=3.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="perl perl-Crypt-Rijndael perl-Sort-Naturally perl-Term-ReadKey perl-Term-ShellUI perl-File-KeePass perl-Clone perl-Term-ReadLine-Gnu perl-XML-Parser"
 short_desc="KeePass Command Line Interface"
diff --git a/srcpkgs/kshdb/template b/srcpkgs/kshdb/template
index ee22e70d994..6653ee3de18 100644
--- a/srcpkgs/kshdb/template
+++ b/srcpkgs/kshdb/template
@@ -2,7 +2,6 @@
 pkgname=kshdb
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="automake ksh"
 depends="ksh python3"
diff --git a/srcpkgs/kupfer/template b/srcpkgs/kupfer/template
index 03e80e9fdc9..d351345376d 100644
--- a/srcpkgs/kupfer/template
+++ b/srcpkgs/kupfer/template
@@ -2,7 +2,6 @@
 pkgname=kupfer
 version=319
 revision=2
-archs=noarch
 build_style=waf3
 wrksrc="${pkgname}-v${version}"
 python_version=3
diff --git a/srcpkgs/laditools/template b/srcpkgs/laditools/template
index 88e45ee722c..50199e8646d 100644
--- a/srcpkgs/laditools/template
+++ b/srcpkgs/laditools/template
@@ -2,7 +2,6 @@
 pkgname=laditools
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="laditools"
 hostmakedepends="python-distutils-extra intltool librsvg-utils"
diff --git a/srcpkgs/ladspa-sdk/template b/srcpkgs/ladspa-sdk/template
index 792663a5c1f..9db8572efa5 100644
--- a/srcpkgs/ladspa-sdk/template
+++ b/srcpkgs/ladspa-sdk/template
@@ -2,7 +2,6 @@
 pkgname=ladspa-sdk
 version=1.15
 revision=2
-archs=noarch
 wrksrc="ladspa_sdk_${version}"
 makedepends="libsndfile-progs"
 short_desc="Linux Audio Developer's Simple Plugin API (LADSPA)"
@@ -24,7 +23,6 @@ do_install() {
 ladspa-sdk-doc_package() {
 	depends="ladspa-sdk"
 	short_desc+="- Documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc
 		cd ${wrksrc}/doc
diff --git a/srcpkgs/laptop-mode/template b/srcpkgs/laptop-mode/template
index 5f788f01135..09b790e9351 100644
--- a/srcpkgs/laptop-mode/template
+++ b/srcpkgs/laptop-mode/template
@@ -2,7 +2,6 @@
 pkgname=laptop-mode
 version=1.73.1
 revision=1
-archs=noarch
 wrksrc="${pkgname}-tools_${version}"
 short_desc="Laptop power saving package for Linux systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leiningen/template b/srcpkgs/leiningen/template
index d6ed85040cc..a9451ac81e7 100644
--- a/srcpkgs/leiningen/template
+++ b/srcpkgs/leiningen/template
@@ -2,7 +2,6 @@
 pkgname=leiningen
 version=2.9.3
 revision=1
-archs=noarch
 depends="bash virtual?java-runtime"
 short_desc="Automate Clojure projects without setting your hair on fire"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leocad/template b/srcpkgs/leocad/template
index 8cc39f9f535..6bcbaf9818d 100644
--- a/srcpkgs/leocad/template
+++ b/srcpkgs/leocad/template
@@ -19,7 +19,6 @@ checksum="b74557e00366f1d3ddc211f9e55c28dba39987d66e5e3106490ab5fb75d25bc0
 leocad-data_package() {
 	short_desc+=" - data files"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vinstall ../library.bin 644 usr/share/leocad/
 	}
diff --git a/srcpkgs/lesspipe/template b/srcpkgs/lesspipe/template
index 40ee9a36cf1..d922e937f7a 100644
--- a/srcpkgs/lesspipe/template
+++ b/srcpkgs/lesspipe/template
@@ -2,7 +2,6 @@
 pkgname=lesspipe
 version=1.84
 revision=1
-archs=noarch
 depends="less"
 short_desc="Input filter for the pager less"
 maintainer="Olga Ustuzhanina <me@laserbat.pw>"
diff --git a/srcpkgs/lfe/template b/srcpkgs/lfe/template
index 9dcca402dc5..9ca2fd95a2f 100644
--- a/srcpkgs/lfe/template
+++ b/srcpkgs/lfe/template
@@ -2,7 +2,6 @@
 pkgname=lfe
 version=1.3
 revision=1
-archs=noarch
 hostmakedepends="erlang"
 depends="erlang"
 short_desc="Lisp flavoured erlang"
diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 1e0e7cf29fa..2d6750b9451 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -2,7 +2,6 @@
 pkgname=lfm
 version=3.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/lftpfs/template b/srcpkgs/lftpfs/template
index f8b75902812..4a3b263c2ba 100644
--- a/srcpkgs/lftpfs/template
+++ b/srcpkgs/lftpfs/template
@@ -2,7 +2,6 @@
 pkgname=lftpfs
 version=0.4.3
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl-Fuse perl-IPC-Run lftp"
diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index fb01bd7fb78..db314976891 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -32,7 +32,6 @@ libbytesize-devel_package() {
 }
 
 libbytesize-python3_package() {
-	archs=noarch
 	depends="python3-six ${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Python3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/libcap-ng/template b/srcpkgs/libcap-ng/template
index d2bbea8cb94..4ec9317edd5 100644
--- a/srcpkgs/libcap-ng/template
+++ b/srcpkgs/libcap-ng/template
@@ -49,7 +49,6 @@ libcap-ng-python3_package() {
 }
 libcap-ng-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="libcap-ng-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/libchewing/template b/srcpkgs/libchewing/template
index 6518254b11e..7901a9e0f1a 100644
--- a/srcpkgs/libchewing/template
+++ b/srcpkgs/libchewing/template
@@ -27,7 +27,6 @@ libchewing-devel_package() {
 }
 
 libchewing-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/libchewing
diff --git a/srcpkgs/libclc-git/template b/srcpkgs/libclc-git/template
index 748ffe98fc8..e2263c4b0b4 100644
--- a/srcpkgs/libclc-git/template
+++ b/srcpkgs/libclc-git/template
@@ -15,7 +15,6 @@ license="BSD/MIT"
 homepage="http://libclc.llvm.org"
 provides="libclc-${version}_${revision}"
 replaces="libclc>=0"
-archs=noarch
 distfiles="https://github.com/llvm-mirror/libclc/archive/${_git_hash}.tar.gz>${pkgname}-${version}.tar.gz"
 checksum=d9cf73a5d1ab05995086e7a3a0fd6c06172ee59cdd2512c395caae99b9fce453
 
diff --git a/srcpkgs/libcppunit/template b/srcpkgs/libcppunit/template
index 238c6f57017..ca5760cc1ea 100644
--- a/srcpkgs/libcppunit/template
+++ b/srcpkgs/libcppunit/template
@@ -32,7 +32,6 @@ libcppunit-devel_package() {
 }
 
 libcppunit-examples_package() {
-	archs=noarch
 	replaces="cppunit-doc>=0"
 	depends="libcppunit-devel>=${version}_${revision}"
 	short_desc+=" - examples"
diff --git a/srcpkgs/libdwarf/template b/srcpkgs/libdwarf/template
index 5d5539c3ae3..dac373623f8 100644
--- a/srcpkgs/libdwarf/template
+++ b/srcpkgs/libdwarf/template
@@ -33,7 +33,6 @@ libdwarf-devel_package() {
 }
 
 libdwarf-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		for i in README NEWS libdwarf/*.pdf ; do
diff --git a/srcpkgs/libe-book/template b/srcpkgs/libe-book/template
index 89bf62399e3..b112e492171 100644
--- a/srcpkgs/libe-book/template
+++ b/srcpkgs/libe-book/template
@@ -30,7 +30,6 @@ libe-book-devel_package() {
 libe-book-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/liberation-fonts-ttf/template b/srcpkgs/liberation-fonts-ttf/template
index 47663b2b29d..ae6ab901471 100644
--- a/srcpkgs/liberation-fonts-ttf/template
+++ b/srcpkgs/liberation-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=liberation-fonts-ttf
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 build_style=gnu-makefile
 hostmakedepends="fontforge fonttools"
diff --git a/srcpkgs/libfreehand/template b/srcpkgs/libfreehand/template
index 08aae86bb0f..45c0bdcc5a5 100644
--- a/srcpkgs/libfreehand/template
+++ b/srcpkgs/libfreehand/template
@@ -31,7 +31,6 @@ libfreehand-devel_package() {
 libfreehand-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libgphoto2/template b/srcpkgs/libgphoto2/template
index 60573643e50..c0ea9d8c4b0 100644
--- a/srcpkgs/libgphoto2/template
+++ b/srcpkgs/libgphoto2/template
@@ -52,7 +52,6 @@ post_install() {
 
 libgphoto2-udev-rules_package() {
 	short_desc+=" - udev rules"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/udev/hwdb.d
 		vmove usr/lib/udev/rules.d
diff --git a/srcpkgs/libinput-gestures/template b/srcpkgs/libinput-gestures/template
index 872e8ad8588..2ee1d82e3e4 100644
--- a/srcpkgs/libinput-gestures/template
+++ b/srcpkgs/libinput-gestures/template
@@ -2,7 +2,6 @@
 pkgname=libinput-gestures
 version=2.50
 revision=1
-archs=noarch
 depends="python3 libinput xdotool wmctrl hicolor-icon-theme"
 short_desc="Action gestures on your touchpad using libinput"
 maintainer="Chinmay Pai <chinmaydpai@gmail.com>"
diff --git a/srcpkgs/libmwaw/template b/srcpkgs/libmwaw/template
index c81f91175d3..7ea5ce0051d 100644
--- a/srcpkgs/libmwaw/template
+++ b/srcpkgs/libmwaw/template
@@ -24,7 +24,6 @@ libmwaw-devel_package() {
 }
 
 libmwaw-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/libosmgpsmap/template b/srcpkgs/libosmgpsmap/template
index 4ab56904f2d..0690f592c42 100644
--- a/srcpkgs/libosmgpsmap/template
+++ b/srcpkgs/libosmgpsmap/template
@@ -19,7 +19,6 @@ build_options="gir"
 build_options_default="gir"
 
 libosmgpsmap-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation"
 	pkg_install() {
diff --git a/srcpkgs/libquvi-scripts/template b/srcpkgs/libquvi-scripts/template
index c2d247e52dd..551953eb763 100644
--- a/srcpkgs/libquvi-scripts/template
+++ b/srcpkgs/libquvi-scripts/template
@@ -2,7 +2,6 @@
 pkgname=libquvi-scripts
 version=0.4.21
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config lua53"
 makedepends="lua53"
diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 0eb5941e2ad..d46f4056f05 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -297,7 +297,6 @@ _add_lang() {
 	_languages="$_languages ${pkglang//_/-}"
 	eval "libreoffice-i18n-${1}_package() {
 		short_desc+=\"- ${2} language pack\"
-		archs=noarch
 		pkg_install() {
 			_split lang_${pkglang}
 		}
@@ -584,7 +583,6 @@ libreoffice-draw_package() {
 
 libreoffice-fonts_package() {
 	short_desc+=" - Fonts"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/lib/libreoffice/share
 		mv ${DESTDIR}/all/usr/lib/libreoffice/share/fonts \
diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 1aed9159ab9..052d243e477 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -39,7 +39,6 @@ libsearpc-codegen_package() {
 	short_desc+=" - code generator"
 	depends="python3"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vdoc AUTHORS
 		vdoc README.markdown
@@ -51,7 +50,6 @@ libsearpc-python3_package() {
 	short_desc+=" - Python3 bindings"
 	pycompile_module="pysearpc"
 	depends="python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
diff --git a/srcpkgs/libsoxr/template b/srcpkgs/libsoxr/template
index ae7c8c7e3f5..0ad80dfb5da 100644
--- a/srcpkgs/libsoxr/template
+++ b/srcpkgs/libsoxr/template
@@ -36,7 +36,6 @@ libsoxr-devel_package() {
 libsoxr-doc_package() {
 	short_desc+=" - documentation and examples"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libvpx5/template b/srcpkgs/libvpx5/template
index d6ce843134a..93d9a8866c6 100644
--- a/srcpkgs/libvpx5/template
+++ b/srcpkgs/libvpx5/template
@@ -58,7 +58,6 @@ libvpx5-devel_package() {
 }
 
 libvpx_package() {
-	archs=noarch
 	build_style=meta
 	depends="libvpx5-${version}_${revision}"
 	short_desc+=" (transitional package)"
diff --git a/srcpkgs/libwaylandpp/template b/srcpkgs/libwaylandpp/template
index 44f129f3f89..58a4c2568c9 100644
--- a/srcpkgs/libwaylandpp/template
+++ b/srcpkgs/libwaylandpp/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 libwaylandpp-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/lightdm-webkit2-greeter/template b/srcpkgs/lightdm-webkit2-greeter/template
index 1dd57b859cc..126238441e6 100644
--- a/srcpkgs/lightdm-webkit2-greeter/template
+++ b/srcpkgs/lightdm-webkit2-greeter/template
@@ -22,7 +22,6 @@ post_extract() {
 
 lightdm-webkit-greeter_package() {
 	short_desc+=" - (transitional dummy package)"
-	archs=noarch
 	depends="lightdm-webkit2-greeter>=${version}_${revision}"
 	pkg_install() {
 		vmkdir usr/bin
diff --git a/srcpkgs/lilypond-doc/template b/srcpkgs/lilypond-doc/template
index 1480cfe1d52..a8fe890cf45 100644
--- a/srcpkgs/lilypond-doc/template
+++ b/srcpkgs/lilypond-doc/template
@@ -2,7 +2,6 @@
 pkgname=lilypond-doc
 version=2.21.1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Documentation for the lilypond music engraving program"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/linux-firmware-dvb/template b/srcpkgs/linux-firmware-dvb/template
index 3109780e132..cf7df793297 100644
--- a/srcpkgs/linux-firmware-dvb/template
+++ b/srcpkgs/linux-firmware-dvb/template
@@ -7,7 +7,6 @@ short_desc="Linux TV firmware package"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
 license="GPL-2 Custom"
 homepage="https://linuxtv.org/"
-archs=noarch
 distfiles="
  https://github.com/OpenELEC/dvb-firmware/archive/${_gitrev}.tar.gz>${pkgname}-${version}.tar.gz
  https://linuxtv.org/downloads/firmware/dvb-firmwares.tar.bz2"
diff --git a/srcpkgs/linux-firmware/template b/srcpkgs/linux-firmware/template
index 9ee05164394..e6d48a6e08f 100644
--- a/srcpkgs/linux-firmware/template
+++ b/srcpkgs/linux-firmware/template
@@ -2,7 +2,6 @@
 pkgname=linux-firmware
 version=20200519
 revision=1
-archs=noarch
 depends="${pkgname}-amd-${version}_${revision} ${pkgname}-network-${version}_${revision}"
 short_desc="Binary firmware blobs for the Linux kernel"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -23,7 +22,6 @@ do_install() {
 
 linux-firmware-amd_package() {
 	short_desc+=" - AMD CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/amd*
 		vmove usr/lib/firmware/radeon
@@ -35,7 +33,6 @@ linux-firmware-amd_package() {
 
 linux-firmware-intel_package() {
 	short_desc+=" - Intel CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/i915
 		vmove usr/share/licenses/linux-firmware/LICENSE.i915
@@ -44,7 +41,6 @@ linux-firmware-intel_package() {
 
 linux-firmware-nvidia_package() {
 	short_desc+=" NVIDIA GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/nvidia
 		vmove usr/share/licenses/linux-firmware/LICENCE.nvidia*
@@ -53,7 +49,6 @@ linux-firmware-nvidia_package() {
 
 linux-firmware-network_package() {
 	short_desc+=" - network"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/3com
 		vmove usr/lib/firmware/RTL8192E
diff --git a/srcpkgs/lltag/template b/srcpkgs/lltag/template
index 58fadec2276..8a2e6ac8805 100644
--- a/srcpkgs/lltag/template
+++ b/srcpkgs/lltag/template
@@ -2,7 +2,6 @@
 pkgname=lltag
 version=0.14.6
 revision=2
-archs=noarch
 wrksrc="lltag-lltag-${version}"
 build_style=gnu-makefile
 hostmakedepends="perl"
diff --git a/srcpkgs/llvm10/template b/srcpkgs/llvm10/template
index 62c75d00061..84d4c587129 100644
--- a/srcpkgs/llvm10/template
+++ b/srcpkgs/llvm10/template
@@ -189,7 +189,6 @@ do_install() {
 }
 
 clang-analyzer_package() {
-	archs=noarch
 	pycompile_dirs="usr/share/scan-view"
 	depends="clang-${version}_${revision} python3"
 	short_desc+=" - A source code analysis framework"
diff --git a/srcpkgs/llvm6.0/template b/srcpkgs/llvm6.0/template
index d620db6415a..b0e518c4028 100644
--- a/srcpkgs/llvm6.0/template
+++ b/srcpkgs/llvm6.0/template
@@ -2,7 +2,6 @@
 pkgname=llvm6.0
 version=6.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (6.0.x series) (removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/llvm7/template b/srcpkgs/llvm7/template
index b06f887c3b7..011d7419a4e 100644
--- a/srcpkgs/llvm7/template
+++ b/srcpkgs/llvm7/template
@@ -2,7 +2,6 @@
 pkgname=llvm7
 version=7.0.1
 revision=9
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm8/template b/srcpkgs/llvm8/template
index 7af4f95fb4e..4eb8e0e4806 100644
--- a/srcpkgs/llvm8/template
+++ b/srcpkgs/llvm8/template
@@ -2,7 +2,6 @@
 pkgname=llvm8
 version=8.0.1
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 951a64e1a87..025c8845257 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -2,7 +2,6 @@
 pkgname=llvm9
 version=9.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="q66 <daniel@octaforge.org>"
diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 3086f9ac8b8..c01adcb2d18 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -2,7 +2,6 @@
 pkgname=lollypop
 version=1.3.4
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="cmake git glib-devel gobject-introspection intltool itstool pkg-config"
 makedepends="gtk+3-devel libsoup-devel python3-gobject-devel python3-devel"
diff --git a/srcpkgs/lua54-MessagePack/template b/srcpkgs/lua54-MessagePack/template
index 6383677d8ca..d88a720a579 100644
--- a/srcpkgs/lua54-MessagePack/template
+++ b/srcpkgs/lua54-MessagePack/template
@@ -2,7 +2,6 @@
 pkgname=lua54-MessagePack
 version=0.5.2
 revision=2
-archs=noarch
 wrksrc="lua-MessagePack-${version}"
 depends="lua54"
 _desc="Pure Lua implementation of msgpack.org"
diff --git a/srcpkgs/lua54-stdlib-debug/template b/srcpkgs/lua54-stdlib-debug/template
index 1d862bc6726..73f13179fa7 100644
--- a/srcpkgs/lua54-stdlib-debug/template
+++ b/srcpkgs/lua54-stdlib-debug/template
@@ -3,7 +3,6 @@ pkgname=lua54-stdlib-debug
 version=1.0.1
 revision=3
 wrksrc=_debug-${version}
-archs=noarch
 depends="lua54"
 _desc="A debug hints management library for Lua"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/lua54-stdlib-normalize/template b/srcpkgs/lua54-stdlib-normalize/template
index 9a0d6071327..2fa1c7a75f6 100644
--- a/srcpkgs/lua54-stdlib-normalize/template
+++ b/srcpkgs/lua54-stdlib-normalize/template
@@ -2,7 +2,6 @@
 pkgname=lua54-stdlib-normalize
 version=2.0.3
 revision=3
-archs=noarch
 wrksrc=normalize-${version}
 depends="lua54 lua54-stdlib-debug"
 _desc="Collection of normalized Lua functions"
diff --git a/srcpkgs/lua54-vicious/template b/srcpkgs/lua54-vicious/template
index 9da7e6330c5..2a9b7f13f40 100644
--- a/srcpkgs/lua54-vicious/template
+++ b/srcpkgs/lua54-vicious/template
@@ -3,7 +3,6 @@ pkgname=lua54-vicious
 version=2.4.1
 revision=1
 wrksrc=vicious-${version}
-archs=noarch
 depends="lua54"
 _desc="Modular widget library for window managers"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/luarocks-lua53/template b/srcpkgs/luarocks-lua53/template
index 5c047f790c0..4480962a81a 100644
--- a/srcpkgs/luarocks-lua53/template
+++ b/srcpkgs/luarocks-lua53/template
@@ -2,7 +2,6 @@
 pkgname=luarocks-lua53
 version=3.3.1
 revision=3
-archs=noarch
 wrksrc=luarocks-${version}
 build_style=configure
 configure_args="
@@ -63,7 +62,6 @@ post_install() {
 }
 
 luarocks-lua54_package() {
-	archs=noarch
 	short_desc="${_desc} (5.4.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua54"
 	conf_files="/etc/luarocks/config-5.4.lua"
@@ -78,7 +76,6 @@ luarocks-lua54_package() {
 }
 
 luarocks-lua52_package() {
-	archs=noarch
 	short_desc="${_desc} (5.2.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua52"
 	conf_files="/etc/luarocks/config-5.2.lua"
@@ -93,7 +90,6 @@ luarocks-lua52_package() {
 }
 
 luarocks-lua51_package() {
-	archs=noarch
 	short_desc="${_desc} (5.1.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua51"
 	conf_files="/etc/luarocks/config-5.1.lua"
diff --git a/srcpkgs/lugaru/template b/srcpkgs/lugaru/template
index 618a3ab5894..2dd39570266 100644
--- a/srcpkgs/lugaru/template
+++ b/srcpkgs/lugaru/template
@@ -19,7 +19,6 @@ checksum=f3ea477caf78911c69939fbdc163f9f6517c7ef2267e716a0e050be1a166ef97
 
 lugaru-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	license="CC-BY-SA-4"
 	pkg_install() {
 		vmove usr/share/lugaru
diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 30fbd3ef8d0..28c3119fb47 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -2,7 +2,6 @@
 pkgname=lutris
 version=0.5.7.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext python3-setuptools python3-gobject gtk+3-devel"
 depends="python3-dbus python3-gobject python3-yaml python3-evdev python3-Pillow
diff --git a/srcpkgs/lxde-common/template b/srcpkgs/lxde-common/template
index 27e853db6e9..e6fef2f7f15 100644
--- a/srcpkgs/lxde-common/template
+++ b/srcpkgs/lxde-common/template
@@ -2,7 +2,6 @@
 pkgname=lxde-common
 version=0.99.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool"
 depends="lxsession gnome-themes-extra lxde-icon-theme"
diff --git a/srcpkgs/lxde-icon-theme/template b/srcpkgs/lxde-icon-theme/template
index 896f177f23f..90fb159959e 100644
--- a/srcpkgs/lxde-icon-theme/template
+++ b/srcpkgs/lxde-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=lxde-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 makedepends="gtk+-devel"
diff --git a/srcpkgs/lxdm-theme-vdojo/template b/srcpkgs/lxdm-theme-vdojo/template
index b41d9c94f6b..a706df6056f 100644
--- a/srcpkgs/lxdm-theme-vdojo/template
+++ b/srcpkgs/lxdm-theme-vdojo/template
@@ -2,7 +2,6 @@
 pkgname=lxdm-theme-vdojo
 version=1.0
 revision=1
-archs=noarch
 wrksrc="vdojo-$version"
 depends="lxdm"
 short_desc="LXDM theme for voidlinux"
diff --git a/srcpkgs/lxmenu-data/template b/srcpkgs/lxmenu-data/template
index 3bbb4b87f76..77d9af9b191 100644
--- a/srcpkgs/lxmenu-data/template
+++ b/srcpkgs/lxmenu-data/template
@@ -2,7 +2,6 @@
 pkgname=lxmenu-data
 version=0.1.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="LXDE freedesktop menu required files"
diff --git a/srcpkgs/lxqt-build-tools/template b/srcpkgs/lxqt-build-tools/template
index 335ff770e01..b0f7f26df9a 100644
--- a/srcpkgs/lxqt-build-tools/template
+++ b/srcpkgs/lxqt-build-tools/template
@@ -2,7 +2,6 @@
 pkgname=lxqt-build-tools
 version=0.7.0
 revision=1
-archs=noarch
 build_style=cmake
 hostmakedepends="qt5-host-tools qt5-qmake pkg-config"
 makedepends="qt5-devel"
diff --git a/srcpkgs/magic-wormhole/template b/srcpkgs/magic-wormhole/template
index b3a7bdf27f8..657778c7d83 100644
--- a/srcpkgs/magic-wormhole/template
+++ b/srcpkgs/magic-wormhole/template
@@ -2,7 +2,6 @@
 pkgname=magic-wormhole
 version=0.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-autobahn python3-cffi python3-click python3-humanize
diff --git a/srcpkgs/mailpile/template b/srcpkgs/mailpile/template
index 972c1da3106..e3010566a17 100644
--- a/srcpkgs/mailpile/template
+++ b/srcpkgs/mailpile/template
@@ -2,7 +2,6 @@
 pkgname=mailpile
 version=0.5.2
 revision=3
-archs=noarch
 wrksrc="Mailpile-${version}"
 build_style=python2-module
 pycompile_module="static mailpile"
diff --git a/srcpkgs/make-ca/template b/srcpkgs/make-ca/template
index 5c54e95cdc2..e308fa4f390 100644
--- a/srcpkgs/make-ca/template
+++ b/srcpkgs/make-ca/template
@@ -2,7 +2,6 @@
 pkgname=make-ca
 version=1.7
 revision=1
-archs=noarch
 wrksrc="make-ca-${version}"
 build_style=gnu-makefile
 make_install_args="SBINDIR=/usr/bin"
diff --git a/srcpkgs/makepasswd/template b/srcpkgs/makepasswd/template
index 12814d730d5..e997b1bd0f1 100644
--- a/srcpkgs/makepasswd/template
+++ b/srcpkgs/makepasswd/template
@@ -2,7 +2,6 @@
 pkgname=makepasswd
 version=1.10.9
 revision=2
-archs=noarch
 depends="perl-Crypt-OpenSSL-Random perl-Crypt-PasswdMD5"
 short_desc="Create and/or encrypt true-random-seeded password strings"
 maintainer="Kevin Berry <kevin@opensourcealchemist.com>"
diff --git a/srcpkgs/makeself/template b/srcpkgs/makeself/template
index 2fc0f26fbd5..aaf9bb75883 100644
--- a/srcpkgs/makeself/template
+++ b/srcpkgs/makeself/template
@@ -2,7 +2,6 @@
 pkgname=makeself
 version=2.4.2
 revision=1
-archs=noarch
 wrksrc="makeself-release-${version}"
 short_desc="Make self-extractable archives on Unix"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages-posix/template b/srcpkgs/man-pages-posix/template
index f16421308ae..25f42c2a692 100644
--- a/srcpkgs/man-pages-posix/template
+++ b/srcpkgs/man-pages-posix/template
@@ -4,7 +4,6 @@ _distver=2013
 _revver=a
 version="${_distver}${_revver}"
 revision=4
-archs=noarch
 wrksrc="${pkgname}-${_distver}-${_revver}"
 short_desc="Manual pages about POSIX systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages/template b/srcpkgs/man-pages/template
index 668352eff24..e4c73a9769e 100644
--- a/srcpkgs/man-pages/template
+++ b/srcpkgs/man-pages/template
@@ -2,7 +2,6 @@
 pkgname=man-pages
 version=5.07
 revision=1
-archs=noarch
 short_desc="Linux Documentation Project (LDP) manual pages"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-or-later"
@@ -50,7 +49,6 @@ do_install() {
 }
 
 man-pages-devel_package() {
-	archs=noarch
 	short_desc+=" - development pages"
 	pkg_install() {
 		vmove usr/share/man/man[2-3]
diff --git a/srcpkgs/mantablockscreen/template b/srcpkgs/mantablockscreen/template
index 79b21d96121..80172a917f9 100644
--- a/srcpkgs/mantablockscreen/template
+++ b/srcpkgs/mantablockscreen/template
@@ -2,7 +2,6 @@
 pkgname=mantablockscreen
 version=0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="ImageMagick xrandr i3lock-color compton bash"
 short_desc="Another i3lock-color wrapper that mantab"
diff --git a/srcpkgs/manuskript/template b/srcpkgs/manuskript/template
index c0c3269225c..55a7919c563 100644
--- a/srcpkgs/manuskript/template
+++ b/srcpkgs/manuskript/template
@@ -2,7 +2,6 @@
 pkgname=manuskript
 version=0.11.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}"
 hostmakedepends="python3-setuptools"
 depends="python3-enchant python3-lxml python3-Markdown python3-PyQt5 qt5-svg"
diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template
index 793f3aadf41..c81014b7394 100644
--- a/srcpkgs/mariadb/template
+++ b/srcpkgs/mariadb/template
@@ -134,7 +134,6 @@ mariadb-client_package() {
 	}
 }
 mytop_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} perl-Term-ReadKey perl-DBD-mysql"
 	short_desc="Top-like query monitor for MariaDB"
 	pkg_install() {
diff --git a/srcpkgs/marvin/template b/srcpkgs/marvin/template
index 65580f87728..3eac54a4c1a 100644
--- a/srcpkgs/marvin/template
+++ b/srcpkgs/marvin/template
@@ -2,7 +2,6 @@
 pkgname=marvin
 version=18.20.0
 revision=2
-archs=noarch
 maintainer="Brenton Horne <brentonhorne77@gmail.com>"
 homepage="https://chemaxon.com/products/marvin"
 license="marvin"
diff --git a/srcpkgs/mate-applets/template b/srcpkgs/mate-applets/template
index 8e9a40869f1..88196018390 100644
--- a/srcpkgs/mate-applets/template
+++ b/srcpkgs/mate-applets/template
@@ -25,7 +25,6 @@ case "$XBPS_TARGET_MACHINE" in
 esac
 
 mate-applets-data_package() {
-	archs=noarch
 	short_desc+=" - architecture independent data"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mate-backgrounds/template b/srcpkgs/mate-backgrounds/template
index 1c0b34f110c..31e6c7f094a 100644
--- a/srcpkgs/mate-backgrounds/template
+++ b/srcpkgs/mate-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=mate-backgrounds
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="Background images and data for MATE"
diff --git a/srcpkgs/mate-common/template b/srcpkgs/mate-common/template
index 17382ebcf1e..4850dbfe064 100644
--- a/srcpkgs/mate-common/template
+++ b/srcpkgs/mate-common/template
@@ -2,7 +2,6 @@
 pkgname=mate-common
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 depends="automake libtool intltool pkg-config gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mate-icon-theme-faenza/template b/srcpkgs/mate-icon-theme-faenza/template
index 8eaa696d780..80299aa0b61 100644
--- a/srcpkgs/mate-icon-theme-faenza/template
+++ b/srcpkgs/mate-icon-theme-faenza/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme-faenza
 version=1.20.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="mate-common pkg-config intltool itstool icon-naming-utils"
 depends="gtk-update-icon-cache hicolor-icon-theme"
diff --git a/srcpkgs/mate-icon-theme/template b/srcpkgs/mate-icon-theme/template
index f5dfc2932fe..dc3c584cc56 100644
--- a/srcpkgs/mate-icon-theme/template
+++ b/srcpkgs/mate-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="icon-naming-utils"
diff --git a/srcpkgs/mate-menu/template b/srcpkgs/mate-menu/template
index 3c59954a4bc..6191d683ce9 100644
--- a/srcpkgs/mate-menu/template
+++ b/srcpkgs/mate-menu/template
@@ -2,7 +2,6 @@
 pkgname=mate-menu
 version=20.04.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/lib/mate-menu"
 hostmakedepends="intltool python3-distutils-extra python3-setuptools"
diff --git a/srcpkgs/mate-themes/template b/srcpkgs/mate-themes/template
index 577574cedc0..c93250d5589 100644
--- a/srcpkgs/mate-themes/template
+++ b/srcpkgs/mate-themes/template
@@ -2,7 +2,6 @@
 pkgname=mate-themes
 version=3.22.21
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="gtk+-devel gtk+3-devel"
diff --git a/srcpkgs/mate-tweak/template b/srcpkgs/mate-tweak/template
index a7da4bd36d8..76179410d25 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -2,7 +2,6 @@
 pkgname=mate-tweak
 version=20.04.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"
 depends="mate-panel python3-gobject python3-psutil python3-setproctitle
diff --git a/srcpkgs/mate-user-guide/template b/srcpkgs/mate-user-guide/template
index 7c1363e3ae2..41c477d013c 100644
--- a/srcpkgs/mate-user-guide/template
+++ b/srcpkgs/mate-user-guide/template
@@ -2,7 +2,6 @@
 pkgname=mate-user-guide
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="MATE User Guide"
diff --git a/srcpkgs/mathjax/template b/srcpkgs/mathjax/template
index c1088202b51..b86cc52aa5a 100644
--- a/srcpkgs/mathjax/template
+++ b/srcpkgs/mathjax/template
@@ -2,7 +2,6 @@
 pkgname=mathjax
 version=2.7.6
 revision=1
-archs=noarch
 wrksrc="MathJax-${version}"
 depends="font-util"
 short_desc="JavaScript display engine for LaTeX, MathML and AsciiMath"
diff --git a/srcpkgs/maxima/template b/srcpkgs/maxima/template
index 90d2df8667d..8e8fde12aff 100644
--- a/srcpkgs/maxima/template
+++ b/srcpkgs/maxima/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 maxima-src_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision}"
 	short_desc+=" - source files"
 	pkg_install() {
@@ -41,7 +40,6 @@ maxima-src_package() {
 }
 
 maxima-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -50,7 +48,6 @@ maxima-emacs_package() {
 }
 
 xmaxima_package() {
-	archs=noarch
 	short_desc+=" - Tk interface"
 	depends="${sourcepkg}-${version}_${revision} tk"
 	pkg_install() {
diff --git a/srcpkgs/mb2md/template b/srcpkgs/mb2md/template
index 2fc5c5062d8..d226aac792e 100644
--- a/srcpkgs/mb2md/template
+++ b/srcpkgs/mb2md/template
@@ -2,7 +2,6 @@
 pkgname=mb2md
 version=3.20
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="perl-TimeDate"
 short_desc="Convert mbox mailboxes into maildir mailboxes"
diff --git a/srcpkgs/mcomix/template b/srcpkgs/mcomix/template
index 397fd241c49..15a556ad9f6 100644
--- a/srcpkgs/mcomix/template
+++ b/srcpkgs/mcomix/template
@@ -2,7 +2,6 @@
 pkgname=mcomix
 version=1.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="${pkgname}"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mdds/template b/srcpkgs/mdds/template
index 5530252ec3d..9e497d8f6a4 100644
--- a/srcpkgs/mdds/template
+++ b/srcpkgs/mdds/template
@@ -7,7 +7,6 @@
 pkgname=mdds
 version=1.5.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Collection of multi-dimensional data structures and indexing algorithms"
diff --git a/srcpkgs/mdevd/template b/srcpkgs/mdevd/template
index 4dc0d6e1f64..6dd20225c36 100644
--- a/srcpkgs/mdevd/template
+++ b/srcpkgs/mdevd/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 mdevd-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index acd79293246..72c81620747 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -36,7 +36,6 @@ libmed_package() {
 
 med-doc_package() {
 	short_desc+=" - Documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/med
 	}
diff --git a/srcpkgs/media-player-info/template b/srcpkgs/media-player-info/template
index 40f59736d3b..b4b60e3e1b2 100644
--- a/srcpkgs/media-player-info/template
+++ b/srcpkgs/media-player-info/template
@@ -2,7 +2,6 @@
 pkgname=media-player-info
 version=24
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="eudev-libudev-devel"
diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 486d3b7104b..35c53f8b2b9 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -2,7 +2,6 @@
 pkgname=meld
 version=3.20.2
 revision=1
-archs=noarch
 build_style=python3-module
 configure_args="--disable-schemas-compile"
 hostmakedepends="pkg-config intltool gnome-doc-utils python3 itstool gtk-update-icon-cache libxml2-python3"
diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index f16c5f64337..d67b6909924 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -2,7 +2,6 @@
 pkgname=menulibre
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/menumaker/template b/srcpkgs/menumaker/template
index 1e4e3f6fc6b..1b73dd13862 100644
--- a/srcpkgs/menumaker/template
+++ b/srcpkgs/menumaker/template
@@ -2,7 +2,6 @@
 pkgname=menumaker
 version=0.99.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/menumaker"
 hostmakedepends="python"
diff --git a/srcpkgs/menutray/template b/srcpkgs/menutray/template
index 6f06e21ff21..3c986f208de 100644
--- a/srcpkgs/menutray/template
+++ b/srcpkgs/menutray/template
@@ -2,7 +2,6 @@
 pkgname=menutray
 version=0.53
 revision=1
-archs=noarch
 depends="perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Application menu through a GTK+ tray status icon"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/meson-cmake-wrapper/template b/srcpkgs/meson-cmake-wrapper/template
index b13ca9229dc..e9058501f60 100644
--- a/srcpkgs/meson-cmake-wrapper/template
+++ b/srcpkgs/meson-cmake-wrapper/template
@@ -2,7 +2,6 @@
 pkgname=meson-cmake-wrapper
 version=0.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mcw"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 8f02d6ba333..a78967b7eae 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,6 @@
 pkgname=meson
 version=0.55.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-devel python3-setuptools"
 depends="ninja python3-setuptools"
diff --git a/srcpkgs/mime-types/template b/srcpkgs/mime-types/template
index 09b3fb9be3c..1f9c9830b9e 100644
--- a/srcpkgs/mime-types/template
+++ b/srcpkgs/mime-types/template
@@ -2,7 +2,6 @@
 pkgname=mime-types
 version=9
 revision=4
-archs=noarch
 conf_files="/etc/mime.types"
 short_desc="Provides a shared /etc/mime.types file"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index 66cd1e12539..82cfd4aa6da 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -2,7 +2,6 @@
 pkgname=mimeo
 version=2019.7
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"
 hostmakedepends="python3"
diff --git a/srcpkgs/mimms/template b/srcpkgs/mimms/template
index 3c1decf9178..db3c660d808 100644
--- a/srcpkgs/mimms/template
+++ b/srcpkgs/mimms/template
@@ -2,7 +2,6 @@
 pkgname=mimms
 version=3.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="libmimms"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/minigalaxy/template b/srcpkgs/minigalaxy/template
index 1d2daaea8d0..12f907fc150 100644
--- a/srcpkgs/minigalaxy/template
+++ b/srcpkgs/minigalaxy/template
@@ -2,7 +2,6 @@
 pkgname=minigalaxy
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="hicolor-icon-theme webkit2gtk python3-gobject python3-requests"
diff --git a/srcpkgs/miro-video-converter/template b/srcpkgs/miro-video-converter/template
index c9d0777aea6..00d273e6bdb 100644
--- a/srcpkgs/miro-video-converter/template
+++ b/srcpkgs/miro-video-converter/template
@@ -3,7 +3,6 @@ pkgname=miro-video-converter
 version=3.0.2
 revision=2
 wrksrc=mirovideoconverter3-${version}
-archs=noarch
 build_style=python2-module
 pycompile_module="mvc"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mkchromecast/template b/srcpkgs/mkchromecast/template
index e5d9626f9dd..fd977f906a3 100644
--- a/srcpkgs/mkchromecast/template
+++ b/srcpkgs/mkchromecast/template
@@ -2,7 +2,6 @@
 pkgname=mkchromecast
 version=0.3.8.1
 revision=2
-archs=noarch
 pycompile_dirs="/usr/share/mkchromecast/mkchromecast"
 depends="python3-Flask python3-netifaces python3-setuptools python3-requests
  python3-mutagen python3-psutil python3-PyQt5 python3-SoCo python3-chromecast
diff --git a/srcpkgs/mkfontscale/template b/srcpkgs/mkfontscale/template
index dafbb915ca8..a1405b8123c 100644
--- a/srcpkgs/mkfontscale/template
+++ b/srcpkgs/mkfontscale/template
@@ -18,7 +18,6 @@ post_install() {
 }
 
 mkfontdir_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}-${version}_${revision}"
 }
diff --git a/srcpkgs/mkinitcpio-encryptssh/template b/srcpkgs/mkinitcpio-encryptssh/template
index 7da6d9e243b..9764febbfeb 100644
--- a/srcpkgs/mkinitcpio-encryptssh/template
+++ b/srcpkgs/mkinitcpio-encryptssh/template
@@ -3,7 +3,6 @@ pkgname=mkinitcpio-encryptssh
 version=0.16
 revision=2
 _version_suffix=1
-archs=noarch
 wrksrc="dropbear_initrd_encrypt-${version}-${_version_suffix}"
 depends="mkinitcpio cryptsetup dropbear mkinitcpio-nfs-utils psmisc iproute2"
 short_desc="Allows for an encrypted root device to be unlocked remotely over SSH"
diff --git a/srcpkgs/mkinitcpio/template b/srcpkgs/mkinitcpio/template
index a0f44360db4..89a6deab1df 100644
--- a/srcpkgs/mkinitcpio/template
+++ b/srcpkgs/mkinitcpio/template
@@ -2,7 +2,6 @@
 pkgname=mkinitcpio
 version=27
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="busybox-static bsdtar bash"
 short_desc="Next generation of initramfs creation"
@@ -30,7 +29,6 @@ post_install() {
 mkinitcpio-udev_package() {
 	depends="${sourcepkg}>=${version}_${revision} eudev"
 	short_desc+=" - udev support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/udev_hook 644 usr/lib/initcpio/hooks udev
 		vinstall ${FILESDIR}/udev_install 644 usr/lib/initcpio/install udev
@@ -40,7 +38,6 @@ mkinitcpio-udev_package() {
 mkinitcpio-lvm2_package() {
 	depends="${sourcepkg}>=${version}_${revision} lvm2 thin-provisioning-tools"
 	short_desc+=" - lvm2 support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/lvm2_hook 644 usr/lib/initcpio/hooks lvm2
 		vinstall ${FILESDIR}/lvm2_install 644 usr/lib/initcpio/install lvm2
@@ -54,7 +51,6 @@ mkinitcpio-encrypt_package() {
 	depends="${sourcepkg}>=${version}_${revision}
 		${sourcepkg}-lvm2>=${version}_${revision} cryptsetup"
 	short_desc+=" - encrypt support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/encrypt_hook 644 usr/lib/initcpio/hooks encrypt
 		vinstall ${FILESDIR}/encrypt_install 644 usr/lib/initcpio/install encrypt
@@ -64,7 +60,6 @@ mkinitcpio-encrypt_package() {
 mkinitcpio-mdadm_package() {
 	depends="${sourcepkg}>=${version}_${revision} mdadm"
 	short_desc+=" - mdadm support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/mdadm_hook 644 usr/lib/initcpio/hooks mdadm
 		vinstall ${FILESDIR}/mdadm_install 644 usr/lib/initcpio/install mdadm
@@ -75,7 +70,6 @@ mkinitcpio-mdadm_package() {
 mkinitcpio-xbps_package() {
 	depends="${sourcepkg}>=${version}_${revision} xbps"
 	short_desc+=" - xbps support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/xbps_install 644 usr/lib/initcpio/install xbps
 	}
diff --git a/srcpkgs/mlt/template b/srcpkgs/mlt/template
index 1579a5b21dd..1798e9e7326 100644
--- a/srcpkgs/mlt/template
+++ b/srcpkgs/mlt/template
@@ -57,7 +57,6 @@ post_install() {
 
 mlt-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mlt
 	}
@@ -65,7 +64,6 @@ mlt-data_package() {
 
 mlt-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
@@ -94,7 +92,6 @@ mlt-python3_package() {
 
 mlt-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="mlt-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/mm-common/template b/srcpkgs/mm-common/template
index 5c245d0ebdd..b60451057af 100644
--- a/srcpkgs/mm-common/template
+++ b/srcpkgs/mm-common/template
@@ -2,7 +2,6 @@
 pkgname=mm-common
 version=1.0.0
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool itstool"
 depends="gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mobile-broadband-provider-info/template b/srcpkgs/mobile-broadband-provider-info/template
index b51be988591..d4986e56405 100644
--- a/srcpkgs/mobile-broadband-provider-info/template
+++ b/srcpkgs/mobile-broadband-provider-info/template
@@ -2,7 +2,6 @@
 pkgname=mobile-broadband-provider-info
 version=20190618
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libxslt"
 checkdepends="libxml2"
diff --git a/srcpkgs/mog/template b/srcpkgs/mog/template
index 51f76b94dc4..41a9230f6e1 100644
--- a/srcpkgs/mog/template
+++ b/srcpkgs/mog/template
@@ -29,7 +29,6 @@ pre_build() {
 
 mog-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mog/graphics
 		vmove usr/share/mog/sound
diff --git a/srcpkgs/mongoose/template b/srcpkgs/mongoose/template
index 587b1ff34eb..6de2663d477 100644
--- a/srcpkgs/mongoose/template
+++ b/srcpkgs/mongoose/template
@@ -22,7 +22,6 @@ mongoose-devel_package() {
 }
 
 mongoose-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mons/template b/srcpkgs/mons/template
index d326cc456c5..4353a22fecb 100644
--- a/srcpkgs/mons/template
+++ b/srcpkgs/mons/template
@@ -3,7 +3,6 @@ pkgname=mons
 version=0.8.2
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="libXrandr"
 hostmakedepends="help2man"
 short_desc="Quickly manage 2-monitors display using xrandr"
diff --git a/srcpkgs/mopidy-local/template b/srcpkgs/mopidy-local/template
index 53f42032019..9cb909cbd8e 100644
--- a/srcpkgs/mopidy-local/template
+++ b/srcpkgs/mopidy-local/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-local
 version=3.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="mopidy python3-pykka python3-setuptools"
diff --git a/srcpkgs/mopidy-mpd/template b/srcpkgs/mopidy-mpd/template
index db1642166fd..5cd84e87ba2 100644
--- a/srcpkgs/mopidy-mpd/template
+++ b/srcpkgs/mopidy-mpd/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-mpd
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="Mopidy-MPD-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mopidy/template b/srcpkgs/mopidy/template
index c3497f3b88d..db3eca17752 100644
--- a/srcpkgs/mopidy/template
+++ b/srcpkgs/mopidy/template
@@ -2,7 +2,6 @@
 pkgname=mopidy
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="Mopidy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme python3-pykka"
diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 22bf450556e..d1d4f4b02c1 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -2,7 +2,6 @@
 pkgname=mozo
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="glib-devel mate-menus-devel python3-gobject-devel"
diff --git a/srcpkgs/mpd-sima/template b/srcpkgs/mpd-sima/template
index 831fec709b7..0b8e1079760 100644
--- a/srcpkgs/mpd-sima/template
+++ b/srcpkgs/mpd-sima/template
@@ -2,7 +2,6 @@
 pkgname=mpd-sima
 version=0.15.1
 revision=2
-archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module
 pycompile_module="sima"
diff --git a/srcpkgs/mps-youtube/template b/srcpkgs/mps-youtube/template
index 2141b3e627d..1ce565e4bc5 100644
--- a/srcpkgs/mps-youtube/template
+++ b/srcpkgs/mps-youtube/template
@@ -2,7 +2,6 @@
 pkgname=mps-youtube
 version=0.2.8
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/msbuild-bin/template b/srcpkgs/msbuild-bin/template
index 58e9bd501b0..ac05eb692b4 100644
--- a/srcpkgs/msbuild-bin/template
+++ b/srcpkgs/msbuild-bin/template
@@ -3,7 +3,6 @@ _xamarin_rel="xamarinxplat.2020.01.10.05.36-0xamarin1+ubuntu1804b1"
 pkgname=msbuild-bin
 version=16.5
 revision=2
-archs=noarch
 build_style=fetch
 depends="mono"
 short_desc="Xamarin/Mono fork of the Microsoft Build system"
diff --git a/srcpkgs/msttcorefonts/template b/srcpkgs/msttcorefonts/template
index 938e03315c1..a253ba88b94 100644
--- a/srcpkgs/msttcorefonts/template
+++ b/srcpkgs/msttcorefonts/template
@@ -45,7 +45,6 @@ restricted=yes
 repository=nonfree
 
 # They're just fonts...
-archs=noarch
 
 # Tell XBPS that these are fonts
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/mtm/template b/srcpkgs/mtm/template
index ed69349285b..81ac285cd77 100644
--- a/srcpkgs/mtm/template
+++ b/srcpkgs/mtm/template
@@ -24,7 +24,6 @@ do_install() {
 
 mtm-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/mu/template b/srcpkgs/mu/template
index f7cd4fcffd7..0c4848ac93a 100644
--- a/srcpkgs/mu/template
+++ b/srcpkgs/mu/template
@@ -26,7 +26,6 @@ pre_configure() {
 
 if [ ! "$CROSS_BUILD" ]; then
 	mu4e_package() {
-		archs=noarch
 		short_desc+=" - Emacs frontend"
 		depends="${sourcepkg}-${version}_${revision} emacs"
 		pkg_install() {
diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index 1e695654a86..3a0c2120a6d 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -2,7 +2,6 @@
 pkgname=mugshot
 version=0.4.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"
 depends="accountsservice gtk+3 python3-dbus python3-gobject python3-pexpect"
diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index c451109bd69..5ec9968ad90 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -2,7 +2,6 @@
 pkgname=multibootusb
 version=9.2.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="scripts"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index 957ed3ed818..7f75588deec 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -2,7 +2,6 @@
 pkgname=mutagen
 version=1.43.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mutagen"
 hostmakedepends="python-devel python-setuptools python3-devel
@@ -39,7 +38,6 @@ python3-mutagen_package() {
 	 mutagen:moggsplit:/usr/bin/moggsplit3
 	 mutagen:mutagen-inspect:/usr/bin/mutagen-inspect3
 	 mutagen:mutagen-pony:/usr/bin/mutagen-pony3"
-	archs=noarch
 	depends="python3"
 	pycompile_module="mutagen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index c46fe9b101e..3f3a3ab0a7c 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -2,7 +2,6 @@
 pkgname=mymcplus
 version=3.0.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="wxPython4 python3-PyOpenGL"
diff --git a/srcpkgs/mypaint-brushes/template b/srcpkgs/mypaint-brushes/template
index 5226d6f18d6..045d7d6a0dc 100644
--- a/srcpkgs/mypaint-brushes/template
+++ b/srcpkgs/mypaint-brushes/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes
 version=2.0.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Brushes used by MyPaint and other software using libmypaint"
diff --git a/srcpkgs/mypaint-brushes1/template b/srcpkgs/mypaint-brushes1/template
index 8622bb46bb8..fe9ad775afd 100644
--- a/srcpkgs/mypaint-brushes1/template
+++ b/srcpkgs/mypaint-brushes1/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes1
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="mypaint-brushes-${version}"
 build_style=gnu-configure
 hostmakedepends="automake"
diff --git a/srcpkgs/myrepos/template b/srcpkgs/myrepos/template
index 2a67216feb7..fb282542f6d 100644
--- a/srcpkgs/myrepos/template
+++ b/srcpkgs/myrepos/template
@@ -2,7 +2,6 @@
 pkgname=myrepos
 version=1.20180726
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="git mercurial perl"
diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 0eb5bc75d27..710d7c861ba 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -2,7 +2,6 @@
 pkgname=nagstamon
 version=3.2.1
 revision=2
-archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
 pycompile_module="Nagstamon"
diff --git a/srcpkgs/nautilus-python/template b/srcpkgs/nautilus-python/template
index 7a32e9e6617..414848a4e8d 100644
--- a/srcpkgs/nautilus-python/template
+++ b/srcpkgs/nautilus-python/template
@@ -2,7 +2,6 @@
 pkgname=nautilus-python
 version=1.2.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-gtk-doc PYTHON=python3"
 hostmakedepends="automake libtool pkg-config which"
diff --git a/srcpkgs/ncurses/template b/srcpkgs/ncurses/template
index d1bb2ae3aa8..bcc9515dfec 100644
--- a/srcpkgs/ncurses/template
+++ b/srcpkgs/ncurses/template
@@ -131,7 +131,6 @@ ncurses-devel_package() {
 }
 ncurses-base_package() {
 	short_desc+=" - base terminfo files"
-	archs=noarch
 	pkg_install() {
 		cat ${FILESDIR}/base-files | while read line; do
 			vmove ${line}
@@ -141,7 +140,6 @@ ncurses-base_package() {
 ncurses-term_package() {
 	depends="ncurses-base-${version}_${revision}"
 	short_desc+=" - full terminal descriptions"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tabset
 		vmove usr/share/terminfo
diff --git a/srcpkgs/neofetch/template b/srcpkgs/neofetch/template
index 60862481a28..99a5b6fa463 100644
--- a/srcpkgs/neofetch/template
+++ b/srcpkgs/neofetch/template
@@ -2,7 +2,6 @@
 pkgname=neofetch
 version=7.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 short_desc="Simple system information script"
diff --git a/srcpkgs/neovim-remote/template b/srcpkgs/neovim-remote/template
index c826750a004..8b84712d21f 100644
--- a/srcpkgs/neovim-remote/template
+++ b/srcpkgs/neovim-remote/template
@@ -2,7 +2,6 @@
 pkgname=neovim-remote
 version=2.4.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-neovim python3-psutil"
diff --git a/srcpkgs/nerd-fonts/template b/srcpkgs/nerd-fonts/template
index a2f2084738b..16d4b469627 100644
--- a/srcpkgs/nerd-fonts/template
+++ b/srcpkgs/nerd-fonts/template
@@ -2,7 +2,6 @@
 pkgname=nerd-fonts
 version=2.1.0
 revision=2
-archs=noarch
 depends="font-util xbps-triggers nerd-fonts-ttf nerd-fonts-otf"
 short_desc="Iconic font aggregator, collection and patcher"
 maintainer="cinerea0 <cinerea0@protonmail.com>"
@@ -32,7 +31,6 @@ do_install() {
 }
 
 nerd-fonts-otf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - otf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/otf"
 	depends="font-util xbps-triggers"
@@ -42,7 +40,6 @@ nerd-fonts-otf_package() {
 }
 
 nerd-fonts-ttf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - ttf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/ttf"
 	depends="font-util xbps-triggers"
diff --git a/srcpkgs/netbsd-wtf/template b/srcpkgs/netbsd-wtf/template
index 87708e08847..878f674a0af 100644
--- a/srcpkgs/netbsd-wtf/template
+++ b/srcpkgs/netbsd-wtf/template
@@ -3,7 +3,6 @@ pkgname=netbsd-wtf
 version=20180621
 revision=2
 _commit=b1e5be48e340146f63b174cc14fef892a783168b
-archs=noarch
 build_style=gnu-makefile
 short_desc="The NetBSD's wtf(6) utility"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/netdata/template b/srcpkgs/netdata/template
index 29e9ca1ce2c..4c39efa113d 100644
--- a/srcpkgs/netdata/template
+++ b/srcpkgs/netdata/template
@@ -48,7 +48,6 @@ post_install() {
 netdata-plugins-nodejs_package() {
 	short_desc+=" - NodeJS Plugins"
 	depends="${sourcepkg}>=${version}_${revision} virtual?nodejs-runtime"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/node.d.plugin
 		vmove usr/libexec/netdata/node.d
@@ -58,7 +57,6 @@ netdata-plugins-nodejs_package() {
 netdata-plugins-python_package() {
 	short_desc+=" - Python Plugins"
 	depends="${sourcepkg}>=${version}_${revision} python"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/python.d.plugin
 		vmove usr/libexec/netdata/python.d
diff --git a/srcpkgs/netsurf-buildsystem/template b/srcpkgs/netsurf-buildsystem/template
index b65615497e2..1a8f7dd25bc 100644
--- a/srcpkgs/netsurf-buildsystem/template
+++ b/srcpkgs/netsurf-buildsystem/template
@@ -2,7 +2,6 @@
 pkgname=netsurf-buildsystem
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#netsurf-}-${version}"
 short_desc="Netsurf buildsystem"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/nicotine+/template b/srcpkgs/nicotine+/template
index 6f743890f83..ad57c8a98b0 100644
--- a/srcpkgs/nicotine+/template
+++ b/srcpkgs/nicotine+/template
@@ -2,7 +2,6 @@
 pkgname=nicotine+
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="nicotine-plus-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/nmap/template b/srcpkgs/nmap/template
index 8f036af7fc4..c868f1fd8ac 100644
--- a/srcpkgs/nmap/template
+++ b/srcpkgs/nmap/template
@@ -36,7 +36,6 @@ post_install() {
 }
 
 zenmap_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} pygtk"
 	short_desc+=" - GUI Frontend"
 	pkg_install() {
diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index d9bba6a03b8..8e0fb2a7300 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -91,7 +91,6 @@ libnotmuch-devel_package() {
 }
 
 notmuch-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -104,7 +103,6 @@ notmuch-emacs_package() {
 }
 
 notmuch-mutt_package() {
-	archs=noarch
 	short_desc+=" - Mutt interface"
 	depends="${sourcepkg}-${version}_${revision} perl-Mail-Box perl-MailTools
 	 perl-String-ShellQuote perl-Term-ReadLine-Gnu perl-File-Which"
@@ -115,7 +113,6 @@ notmuch-mutt_package() {
 }
 
 notmuch-python3_package() {
-	archs=noarch
 	depends="libnotmuch-${version}_${revision}"
 	short_desc+=" - Python 3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/noto-fonts-cjk/template b/srcpkgs/noto-fonts-cjk/template
index 8f35b2e9307..1de8196f2a8 100644
--- a/srcpkgs/noto-fonts-cjk/template
+++ b/srcpkgs/noto-fonts-cjk/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-cjk
 version=20190416
 revision=1
-archs=noarch
 _githash=be6c059ac1587e556e2412b27f5155c8eb3ddbe6
 wrksrc="noto-cjk-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-emoji/template b/srcpkgs/noto-fonts-emoji/template
index c39f9faac2b..e3e3a58ddc0 100644
--- a/srcpkgs/noto-fonts-emoji/template
+++ b/srcpkgs/noto-fonts-emoji/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-emoji
 version=20191016
 revision=1
-archs=noarch
 _githash=f3b9faa83dedf51cd4d9d8ff30e13c17b8073211
 wrksrc="noto-emoji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-ttf/template b/srcpkgs/noto-fonts-ttf/template
index 59c5f03f8e6..21f2064f3aa 100644
--- a/srcpkgs/noto-fonts-ttf/template
+++ b/srcpkgs/noto-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-ttf
 version=20190926
 revision=1
-archs=noarch
 _githash=0fa1dfabd6e3746bb7463399e2813f60d3f1b256
 wrksrc="noto-fonts-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/novaboot/template b/srcpkgs/novaboot/template
index f93c1ebe23b..f5f539b55dc 100644
--- a/srcpkgs/novaboot/template
+++ b/srcpkgs/novaboot/template
@@ -2,7 +2,6 @@
 pkgname=novaboot
 version=20191023
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 makedepends="perl"
diff --git a/srcpkgs/nsss/template b/srcpkgs/nsss/template
index 947efc1a496..fafa035d570 100644
--- a/srcpkgs/nsss/template
+++ b/srcpkgs/nsss/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 nsss-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/ntp/template b/srcpkgs/ntp/template
index c1cd814ea9d..e89fd2f8ae1 100644
--- a/srcpkgs/ntp/template
+++ b/srcpkgs/ntp/template
@@ -42,7 +42,6 @@ post_install() {
 
 ntp-perl_package() {
 	depends="ntp>=$version perl"
-	archs=noarch
 	short_desc+=" - perl scripts"
 	pkg_install() {
 		vmove usr/bin/ntp-wait
diff --git a/srcpkgs/num-utils/template b/srcpkgs/num-utils/template
index d7b542fa7af..ed38c538be1 100644
--- a/srcpkgs/num-utils/template
+++ b/srcpkgs/num-utils/template
@@ -10,7 +10,6 @@ license="GPL-2"
 homepage="http://suso.suso.org/xulu/Num-utils"
 distfiles="http://suso.suso.org/programs/${pkgname}/downloads/${pkgname}-${version}.tar.gz"
 checksum=03592760fc7844492163b14ddc9bb4e4d6526e17b468b5317b4a702ea7f6c64e
-archs=noarch
 
 post_extract() {
 	sed -i 's/\$new_number\^\$1/$new_number**$1/g' numprocess
diff --git a/srcpkgs/numix-themes/template b/srcpkgs/numix-themes/template
index f993b7949a4..78b431f7072 100644
--- a/srcpkgs/numix-themes/template
+++ b/srcpkgs/numix-themes/template
@@ -2,7 +2,6 @@ pkgname=numix-themes
 version=2.6.7
 revision=1
 wrksrc="numix-gtk-theme-${version}"
-archs=noarch
 build_style=gnu-makefile
 short_desc="A modern flat theme with a combination of light and dark elements"
 maintainer="Jakub Skrzypnik <jot.skrzyp@gmail.com>"
diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 4b265771793..fe9734dc24d 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -2,7 +2,6 @@
 pkgname=nyx
 version=2.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="nyx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/oblogout/template b/srcpkgs/oblogout/template
index 7d7b93a2fd1..70623e2c76a 100644
--- a/srcpkgs/oblogout/template
+++ b/srcpkgs/oblogout/template
@@ -2,7 +2,6 @@
 pkgname=oblogout
 version=0.2
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 build_style=python2-module
 conf_files="/etc/oblogout.conf"
diff --git a/srcpkgs/obmenu-generator/template b/srcpkgs/obmenu-generator/template
index 370c37bec39..35236b5433b 100644
--- a/srcpkgs/obmenu-generator/template
+++ b/srcpkgs/obmenu-generator/template
@@ -2,7 +2,6 @@
 pkgname=obmenu-generator
 version=0.88
 revision=1
-archs=noarch
 depends="perl perl-Linux-DesktopFiles perl-Data-Dump perl-Gtk2"
 short_desc="Perl Script to generate Openbox menu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/obmenu/template b/srcpkgs/obmenu/template
index 0e72c282bef..7191ad31d54 100644
--- a/srcpkgs/obmenu/template
+++ b/srcpkgs/obmenu/template
@@ -2,7 +2,6 @@
 pkgname=obmenu
 version=1.0
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="obxml.py"
 hostmakedepends="python"
diff --git a/srcpkgs/offlineimap/template b/srcpkgs/offlineimap/template
index c66f7f4581e..95be25f9aeb 100644
--- a/srcpkgs/offlineimap/template
+++ b/srcpkgs/offlineimap/template
@@ -2,7 +2,6 @@
 pkgname=offlineimap
 version=7.3.3
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-six python-rfc6555 asciidoc"
 depends="python-six python-rfc6555"
diff --git a/srcpkgs/ohsnap-font/template b/srcpkgs/ohsnap-font/template
index 2ce38c54ac7..f582d716f0a 100644
--- a/srcpkgs/ohsnap-font/template
+++ b/srcpkgs/ohsnap-font/template
@@ -2,7 +2,6 @@
 pkgname=ohsnap-font
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="ohsnap-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/ok.sh/template b/srcpkgs/ok.sh/template
index ac00f710837..400767cc52b 100644
--- a/srcpkgs/ok.sh/template
+++ b/srcpkgs/ok.sh/template
@@ -2,7 +2,6 @@
 pkgname=ok.sh
 version=0.6.1
 revision=1
-archs=noarch
 depends="curl jq"
 checkdepends="socat ${depends}"
 short_desc="GitHub API client library written in POSIX sh"
diff --git a/srcpkgs/oniguruma/template b/srcpkgs/oniguruma/template
index c017fe458d5..c84b5b51f61 100644
--- a/srcpkgs/oniguruma/template
+++ b/srcpkgs/oniguruma/template
@@ -28,7 +28,6 @@ oniguruma-devel_package() {
 }
 
 oniguruma-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index b8df8ae79c7..5fd796c2ebd 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -2,7 +2,6 @@
 pkgname=onionshare
 version=2.2
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_dirs="/usr/share/nautilus-python/extensions"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/opencl-clhpp/template b/srcpkgs/opencl-clhpp/template
index a2d140b5f9b..7ac36210b97 100644
--- a/srcpkgs/opencl-clhpp/template
+++ b/srcpkgs/opencl-clhpp/template
@@ -3,7 +3,6 @@ pkgname=opencl-clhpp
 version=2.0.10
 revision=1
 wrksrc="OpenCL-CLHPP-${version}"
-archs=noarch
 hostmakedepends="python"
 short_desc="OpenCL Host API C++ bindings (cl.hpp and cl2.hpp)"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/opencl2-headers/template b/srcpkgs/opencl2-headers/template
index 4a1ef594025..20b005fccbe 100644
--- a/srcpkgs/opencl2-headers/template
+++ b/srcpkgs/opencl2-headers/template
@@ -2,7 +2,6 @@
 pkgname=opencl2-headers
 version=2020.06.16
 revision=1
-archs=noarch
 wrksrc="OpenCL-Headers-${version}"
 short_desc="OpenCL 2.2 (Open Computing Language) header files"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/openjdk8/template b/srcpkgs/openjdk8/template
index 9f9c5998fdc..a95d647e9f7 100644
--- a/srcpkgs/openjdk8/template
+++ b/srcpkgs/openjdk8/template
@@ -286,28 +286,24 @@ openjdk8-doc_package() {
 }
 
 openjdk_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 openjdk-jre_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-jre>=${version}_${revision}"
 	short_desc+=" - runtime components (transitional dummy package)"
 }
 
 openjdk-src_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-src>=${version}_${revision}"
 	short_desc+=" - source code (transitional dummy package)"
 }
 
 openjdk-doc_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-doc>=${version}_${revision}"
 	short_desc+=" - documentation (transitional dummy package)"
diff --git a/srcpkgs/openlierox/template b/srcpkgs/openlierox/template
index 33784034232..52e90f4e834 100644
--- a/srcpkgs/openlierox/template
+++ b/srcpkgs/openlierox/template
@@ -42,7 +42,6 @@ do_install() {
 
 openlierox-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/OpenLieroX
 	}
diff --git a/srcpkgs/openra/template b/srcpkgs/openra/template
index f191405c111..afdde5c1125 100644
--- a/srcpkgs/openra/template
+++ b/srcpkgs/openra/template
@@ -2,7 +2,6 @@
 pkgname=openra
 version=20200503
 revision=1
-archs=noarch
 wrksrc="OpenRA-release-${version}"
 build_style="gnu-makefile"
 make_install_target="install install-linux-shortcuts install-linux-mime
diff --git a/srcpkgs/openresolv/template b/srcpkgs/openresolv/template
index c542e9b5310..2eb521564c6 100644
--- a/srcpkgs/openresolv/template
+++ b/srcpkgs/openresolv/template
@@ -2,7 +2,6 @@
 pkgname=openresolv
 version=3.10.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Management framework for resolv.conf"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/opensonic/template b/srcpkgs/opensonic/template
index c32bb11cb93..21487454e74 100644
--- a/srcpkgs/opensonic/template
+++ b/srcpkgs/opensonic/template
@@ -38,7 +38,6 @@ post_install() {
 
 opensonic-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/opensonic/config
 		vmove usr/share/opensonic/images
diff --git a/srcpkgs/opensurge/template b/srcpkgs/opensurge/template
index 187cace09e6..a80afb13578 100644
--- a/srcpkgs/opensurge/template
+++ b/srcpkgs/opensurge/template
@@ -15,7 +15,6 @@ checksum=d060e3215231741ce0b4e5b897af52f8755c57660c8a33856bf921c83af18ba2
 
 opensurge-data_package() {
 	short_desc+=" - game data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/opentmpfiles/template b/srcpkgs/opentmpfiles/template
index 66e3bd34f2f..cec60fef210 100644
--- a/srcpkgs/opentmpfiles/template
+++ b/srcpkgs/opentmpfiles/template
@@ -2,7 +2,6 @@
 pkgname=opentmpfiles
 version=0.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="A standalone utility for handling systemd-style tmpfiles.d settings"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/openttd/template b/srcpkgs/openttd/template
index 47df4a01b56..17c3c6577dd 100644
--- a/srcpkgs/openttd/template
+++ b/srcpkgs/openttd/template
@@ -45,7 +45,6 @@ do_configure() {
 
 openttd-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openttd
 		vmkdir usr/share/openttd/data
diff --git a/srcpkgs/opentyrian/template b/srcpkgs/opentyrian/template
index 92a1ef220b5..0ec941fd3f5 100644
--- a/srcpkgs/opentyrian/template
+++ b/srcpkgs/opentyrian/template
@@ -37,7 +37,6 @@ EOT
 
 opentyrian-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/${sourcepkg}/data
 		vcopy "${XBPS_BUILDDIR}/tyrian${_dataver}/*" usr/share/${sourcepkg}/data
diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index f70202e6d76..18de381eaed 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -2,7 +2,6 @@
 pkgname=orca
 version=3.36.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="at-spi2-atk-devel liblouis-devel python3-gobject-devel"
diff --git a/srcpkgs/orjail/template b/srcpkgs/orjail/template
index 37ae9bbf042..67608de589d 100644
--- a/srcpkgs/orjail/template
+++ b/srcpkgs/orjail/template
@@ -2,7 +2,6 @@
 pkgname=orjail
 version=1.1
 revision=1
-archs=noarch
 hostmakedepends="ruby-ronn"
 depends="bash bc-gh coreutils grep iproute2 ncurses tor util-linux"
 short_desc="Force a program to exclusively use the Tor network"
diff --git a/srcpkgs/osinfo-db/template b/srcpkgs/osinfo-db/template
index 836b38995cc..64813ebfaec 100644
--- a/srcpkgs/osinfo-db/template
+++ b/srcpkgs/osinfo-db/template
@@ -2,7 +2,6 @@
 pkgname=osinfo-db
 version=20200529
 revision=1
-archs=noarch
 build_style=fetch
 hostmakedepends="osinfo-db-tools"
 short_desc="Osinfo database about operating systems"
diff --git a/srcpkgs/othman/template b/srcpkgs/othman/template
index 7c75a6b04f2..5bbcaed9424 100644
--- a/srcpkgs/othman/template
+++ b/srcpkgs/othman/template
@@ -2,7 +2,6 @@
 pkgname=othman
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="othman"
 hostmakedepends="python3 ImageMagick sqlite intltool"
diff --git a/srcpkgs/overpass-otf/template b/srcpkgs/overpass-otf/template
index 3f349b80966..b5d2d7cb8e4 100644
--- a/srcpkgs/overpass-otf/template
+++ b/srcpkgs/overpass-otf/template
@@ -2,7 +2,6 @@
 pkgname=overpass-otf
 version=3.0.4
 revision=1
-archs=noarch
 wrksrc="Overpass-${version}"
 depends="font-util xbps-triggers"
 short_desc="Open source font family inspired by Highway Gothic"
diff --git a/srcpkgs/oxygen-icons5/template b/srcpkgs/oxygen-icons5/template
index 583e7880eb6..9a93f760e19 100644
--- a/srcpkgs/oxygen-icons5/template
+++ b/srcpkgs/oxygen-icons5/template
@@ -2,7 +2,6 @@
 pkgname=oxygen-icons5
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="kcoreaddons extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/pam-base/template b/srcpkgs/pam-base/template
index 216cea3679f..dc0de192b4a 100644
--- a/srcpkgs/pam-base/template
+++ b/srcpkgs/pam-base/template
@@ -2,7 +2,6 @@
 pkgname=pam-base
 version=0.3
 revision=5
-archs=noarch
 short_desc="PAM base configuration files"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="public domain"
diff --git a/srcpkgs/pantalaimon/template b/srcpkgs/pantalaimon/template
index 31a1763ab24..4c9523bbc02 100644
--- a/srcpkgs/pantalaimon/template
+++ b/srcpkgs/pantalaimon/template
@@ -2,7 +2,6 @@
 pkgname=pantalaimon
 version=0.6.5
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-attrs python3-aiohttp python3-appdirs python3-click
diff --git a/srcpkgs/paper-gtk-theme/template b/srcpkgs/paper-gtk-theme/template
index a00a0ce1a4c..39d19abbf34 100644
--- a/srcpkgs/paper-gtk-theme/template
+++ b/srcpkgs/paper-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=paper-gtk-theme
 version=2.1.0
 revision=1
-archs=noarch
 short_desc="A modern Linux desktop theme suite"
 build_style=gnu-configure
 maintainer="Satoshi Amemiya <amemiya@protonmail.com>"
diff --git a/srcpkgs/paper-icon-theme/template b/srcpkgs/paper-icon-theme/template
index dabaa3d7ec0..c57bb2af7fc 100644
--- a/srcpkgs/paper-icon-theme/template
+++ b/srcpkgs/paper-icon-theme/template
@@ -3,7 +3,6 @@ pkgname=paper-icon-theme
 version=1.5.0
 revision=1
 wrksrc="${pkgname}-v.${version}"
-archs=noarch
 build_style=meson
 short_desc="A modern freedesktop icon theme"
 maintainer="travankor <travankor@tuta.io>"
diff --git a/srcpkgs/papirus-folders/template b/srcpkgs/papirus-folders/template
index 9dd36bdee91..cdcefee2ff2 100644
--- a/srcpkgs/papirus-folders/template
+++ b/srcpkgs/papirus-folders/template
@@ -2,7 +2,6 @@
 pkgname=papirus-folders
 version=1.7.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="papirus-icon-theme"
 short_desc="Allows to change the color of folder"
diff --git a/srcpkgs/papirus-icon-theme/template b/srcpkgs/papirus-icon-theme/template
index 39e5fef6086..929b9486b64 100644
--- a/srcpkgs/papirus-icon-theme/template
+++ b/srcpkgs/papirus-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=papirus-icon-theme
 version=20200801
 revision=1
-archs=noarch
 short_desc="SVG icon theme for Linux, based on Paper Icon Set"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/parallel/template b/srcpkgs/parallel/template
index dab4f184aad..b2201c0f73a 100644
--- a/srcpkgs/parallel/template
+++ b/srcpkgs/parallel/template
@@ -2,7 +2,6 @@
 pkgname=parallel
 version=20200722
 revision=1
-archs="noarch"
 build_style=gnu-configure
 depends="perl"
 checkdepends="perl"
diff --git a/srcpkgs/pass-git-helper/template b/srcpkgs/pass-git-helper/template
index 6d7f25bd8a7..5707c2d6a2d 100644
--- a/srcpkgs/pass-git-helper/template
+++ b/srcpkgs/pass-git-helper/template
@@ -2,7 +2,6 @@
 pkgname=pass-git-helper
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="pass python3-xdg"
diff --git a/srcpkgs/pass-import/template b/srcpkgs/pass-import/template
index ac7590bea99..3ac75af3910 100644
--- a/srcpkgs/pass-import/template
+++ b/srcpkgs/pass-import/template
@@ -2,7 +2,6 @@
 pkgname=pass-import
 version=3.0
 revision=3
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3-setuptools python3-yaml"
 depends="pass>=1.7.0 python3-defusedxml python3-magic
diff --git a/srcpkgs/pass-otp/template b/srcpkgs/pass-otp/template
index a9e3de053ae..9aaf5418b7a 100644
--- a/srcpkgs/pass-otp/template
+++ b/srcpkgs/pass-otp/template
@@ -2,7 +2,6 @@
 pkgname=pass-otp
 version=1.2.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="pass oath-toolkit qrencode"
 short_desc="A pass extension for managing one-time-password (OTP) tokens"
diff --git a/srcpkgs/pass-update/template b/srcpkgs/pass-update/template
index 0265a3aeafd..321a9fb4216 100644
--- a/srcpkgs/pass-update/template
+++ b/srcpkgs/pass-update/template
@@ -2,7 +2,6 @@
 pkgname=pass-update
 version=2.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args=BASHCOMPDIR=/usr/share/bash-completion/completions
 depends="pass"
diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template
index 229bb79c70d..1ca941ac4a5 100644
--- a/srcpkgs/pass/template
+++ b/srcpkgs/pass/template
@@ -2,7 +2,6 @@
 pkgname=pass
 version=1.7.3
 revision=3
-archs=noarch
 wrksrc="password-store-${version}"
 build_style=gnu-makefile
 make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
diff --git a/srcpkgs/pastebinit/template b/srcpkgs/pastebinit/template
index 1fcff9d6e4c..a7a692126a8 100644
--- a/srcpkgs/pastebinit/template
+++ b/srcpkgs/pastebinit/template
@@ -2,7 +2,6 @@
 pkgname=pastebinit
 version=1.5
 revision=3
-archs=noarch
 hostmakedepends="asciidoc gettext"
 depends="python3"
 short_desc="Pastebin command-line client"
diff --git a/srcpkgs/pcb/template b/srcpkgs/pcb/template
index 882fffad2c7..ad749498d5c 100644
--- a/srcpkgs/pcb/template
+++ b/srcpkgs/pcb/template
@@ -18,7 +18,6 @@ distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=1ceeaf1bdbe0508b9b140ca421eb600836579114c04dee939341c5d594f36e5d
 
 pcb-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/pcb
diff --git a/srcpkgs/pdd/template b/srcpkgs/pdd/template
index 70deb5a1ae3..6cb6ae2867a 100644
--- a/srcpkgs/pdd/template
+++ b/srcpkgs/pdd/template
@@ -2,7 +2,6 @@
 pkgname=pdd
 version=1.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-dateutil"
 checkdepends="python3-dateutil python3-pytest"
diff --git a/srcpkgs/pdf.js/template b/srcpkgs/pdf.js/template
index fbd2704e5f5..71f2403818f 100644
--- a/srcpkgs/pdf.js/template
+++ b/srcpkgs/pdf.js/template
@@ -2,7 +2,6 @@
 pkgname=pdf.js
 version=2.5.207
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Portable Document Format (PDF) viewer built with HTML5"
 maintainer="Daniel Santana <daniel@santana.tech>"
diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index 5ecede6cf56..bccb91ce3da 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -2,7 +2,6 @@
 pkgname=peframe
 version=6.0.3
 revision=2
-archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pelican/template b/srcpkgs/pelican/template
index c505227c554..9b390fa7726 100644
--- a/srcpkgs/pelican/template
+++ b/srcpkgs/pelican/template
@@ -2,7 +2,6 @@
 pkgname=pelican
 version=4.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pelican"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/percona-toolkit/template b/srcpkgs/percona-toolkit/template
index 612be5996a6..42cc7d91487 100644
--- a/srcpkgs/percona-toolkit/template
+++ b/srcpkgs/percona-toolkit/template
@@ -2,7 +2,6 @@
 pkgname=percona-toolkit
 version=3.0.13
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-DBD-mysql"
 depends="perl-DBD-mysql perl-Term-ReadKey"
diff --git a/srcpkgs/perl-ACL-Lite/template b/srcpkgs/perl-ACL-Lite/template
index f3ce855be07..3b2240d8650 100644
--- a/srcpkgs/perl-ACL-Lite/template
+++ b/srcpkgs/perl-ACL-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-ACL-Lite
 version=0.0004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AWS-Signature4/template b/srcpkgs/perl-AWS-Signature4/template
index 33844d45194..de5fac2cdb1 100644
--- a/srcpkgs/perl-AWS-Signature4/template
+++ b/srcpkgs/perl-AWS-Signature4/template
@@ -2,7 +2,6 @@
 pkgname=perl-AWS-Signature4
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Algorithm-Diff/template b/srcpkgs/perl-Algorithm-Diff/template
index 9bff5156ed2..08feaa2eb59 100644
--- a/srcpkgs/perl-Algorithm-Diff/template
+++ b/srcpkgs/perl-Algorithm-Diff/template
@@ -2,7 +2,6 @@
 pkgname=perl-Algorithm-Diff
 version=1.1903
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Alien-Build/template b/srcpkgs/perl-Alien-Build/template
index edc1f516035..4de28b0505c 100644
--- a/srcpkgs/perl-Alien-Build/template
+++ b/srcpkgs/perl-Alien-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-Build
 version=2.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-PkgConfig perl-File-Which"
diff --git a/srcpkgs/perl-Alien-wxWidgets/template b/srcpkgs/perl-Alien-wxWidgets/template
index 3c0a7eae5e8..fef3d2e27c0 100644
--- a/srcpkgs/perl-Alien-wxWidgets/template
+++ b/srcpkgs/perl-Alien-wxWidgets/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-wxWidgets
 version=0.69
 revision=1
-archs=noarch
 wrksrc="Alien-wxWidgets-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Module-Pluggable perl-LWP-Protocol-https"
diff --git a/srcpkgs/perl-Alien/template b/srcpkgs/perl-Alien/template
index 9149deae190..ffb54bc1566 100644
--- a/srcpkgs/perl-Alien/template
+++ b/srcpkgs/perl-Alien/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien
 version=0.95
 revision=1
-archs=noarch
 wrksrc="Alien-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AnyEvent-I3/template b/srcpkgs/perl-AnyEvent-I3/template
index 306cf53f404..bc087f6a578 100644
--- a/srcpkgs/perl-AnyEvent-I3/template
+++ b/srcpkgs/perl-AnyEvent-I3/template
@@ -3,7 +3,6 @@ pkgname=perl-AnyEvent-I3
 version=0.17
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-JSON-XS perl-AnyEvent"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/perl-AnyEvent/template b/srcpkgs/perl-AnyEvent/template
index 1d938d338c4..415f3eadeff 100644
--- a/srcpkgs/perl-AnyEvent/template
+++ b/srcpkgs/perl-AnyEvent/template
@@ -2,7 +2,6 @@
 pkgname=perl-AnyEvent
 version=7.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Apache-LogFormat-Compiler/template b/srcpkgs/perl-Apache-LogFormat-Compiler/template
index 36136de1a91..6b9aaacd152 100644
--- a/srcpkgs/perl-Apache-LogFormat-Compiler/template
+++ b/srcpkgs/perl-Apache-LogFormat-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Apache-LogFormat-Compiler
 version=0.36
 revision=1
-archs=noarch
 wrksrc="Apache-LogFormat-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-AppConfig/template b/srcpkgs/perl-AppConfig/template
index 02893ec6303..15b76b83b73 100644
--- a/srcpkgs/perl-AppConfig/template
+++ b/srcpkgs/perl-AppConfig/template
@@ -2,7 +2,6 @@
 pkgname=perl-AppConfig
 version=1.71
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Extract/template b/srcpkgs/perl-Archive-Extract/template
index ab0af642e64..89eb8ea79b0 100644
--- a/srcpkgs/perl-Archive-Extract/template
+++ b/srcpkgs/perl-Archive-Extract/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Extract
 version=0.86
 revision=1
-archs=noarch
 wrksrc="Archive-Extract-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Zip/template b/srcpkgs/perl-Archive-Zip/template
index e06ed44535c..ebc31653704 100644
--- a/srcpkgs/perl-Archive-Zip/template
+++ b/srcpkgs/perl-Archive-Zip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Zip
 version=1.68
 revision=1
-archs=noarch
 wrksrc="Archive-Zip-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Authen-SASL/template b/srcpkgs/perl-Authen-SASL/template
index 9b31f20e858..55329c9e917 100644
--- a/srcpkgs/perl-Authen-SASL/template
+++ b/srcpkgs/perl-Authen-SASL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Authen-SASL
 version=2.16
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-B-Hooks-EndOfScope/template b/srcpkgs/perl-B-Hooks-EndOfScope/template
index 8d2ec1ee190..6ece75610ba 100644
--- a/srcpkgs/perl-B-Hooks-EndOfScope/template
+++ b/srcpkgs/perl-B-Hooks-EndOfScope/template
@@ -14,4 +14,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/B-Hooks-EndOfScope"
 distfiles="${CPAN_SITE}/B/${pkgname/perl-/}-${version}.tar.gz"
 checksum=03aa3dfe5d0aa6471a96f43fe8318179d19794d4a640708f0288f9216ec7acc6
-archs=noarch
diff --git a/srcpkgs/perl-Business-ISBN-Data/template b/srcpkgs/perl-Business-ISBN-Data/template
index 1e0864d9058..674100474ca 100644
--- a/srcpkgs/perl-Business-ISBN-Data/template
+++ b/srcpkgs/perl-Business-ISBN-Data/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN-Data
 version=20191107
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISBN/template b/srcpkgs/perl-Business-ISBN/template
index 9a3d872045f..79451fa92db 100644
--- a/srcpkgs/perl-Business-ISBN/template
+++ b/srcpkgs/perl-Business-ISBN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN
 version=3.005
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISMN/template b/srcpkgs/perl-Business-ISMN/template
index 82b5caa5a85..82f8b48d51d 100644
--- a/srcpkgs/perl-Business-ISMN/template
+++ b/srcpkgs/perl-Business-ISMN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISMN
 version=1.201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISSN/template b/srcpkgs/perl-Business-ISSN/template
index ba5031a7874..c7c1350016d 100644
--- a/srcpkgs/perl-Business-ISSN/template
+++ b/srcpkgs/perl-Business-ISSN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISSN
 version=1.004
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CGI/template b/srcpkgs/perl-CGI/template
index 8c04e0a3178..2e7e64657f6 100644
--- a/srcpkgs/perl-CGI/template
+++ b/srcpkgs/perl-CGI/template
@@ -2,7 +2,6 @@
 pkgname=perl-CGI
 version=4.50
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Changes/template b/srcpkgs/perl-CPAN-Changes/template
index 3c4291e8350..e43b9b1aedc 100644
--- a/srcpkgs/perl-CPAN-Changes/template
+++ b/srcpkgs/perl-CPAN-Changes/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Changes
 version=0.400002
 revision=2
-archs=noarch
 wrksrc="CPAN-Changes-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Common-Index/template b/srcpkgs/perl-CPAN-Common-Index/template
index e37b7258507..273a368bbcf 100644
--- a/srcpkgs/perl-CPAN-Common-Index/template
+++ b/srcpkgs/perl-CPAN-Common-Index/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Common-Index
 version=0.010
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-DistnameInfo/template b/srcpkgs/perl-CPAN-DistnameInfo/template
index 16703b14b42..a353e608d67 100644
--- a/srcpkgs/perl-CPAN-DistnameInfo/template
+++ b/srcpkgs/perl-CPAN-DistnameInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-DistnameInfo
 version=0.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Meta-Check/template b/srcpkgs/perl-CPAN-Meta-Check/template
index 1bce3bc0b3f..1ae99ce17b3 100644
--- a/srcpkgs/perl-CPAN-Meta-Check/template
+++ b/srcpkgs/perl-CPAN-Meta-Check/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Meta-Check
 version=0.014
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Canary-Stability/template b/srcpkgs/perl-Canary-Stability/template
index 75eb874d31e..2bfd0243908 100644
--- a/srcpkgs/perl-Canary-Stability/template
+++ b/srcpkgs/perl-Canary-Stability/template
@@ -2,7 +2,6 @@
 pkgname=perl-Canary-Stability
 version=2013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Capture-Tiny/template b/srcpkgs/perl-Capture-Tiny/template
index 16ed2ed387e..9ac147eed2b 100644
--- a/srcpkgs/perl-Capture-Tiny/template
+++ b/srcpkgs/perl-Capture-Tiny/template
@@ -13,4 +13,3 @@ license="Apache-2.0"
 homepage="https://metacpan.org/release/Capture-Tiny"
 distfiles="${CPAN_SITE}/Mail/DAGOLDEN/Capture-Tiny-${version}.tar.gz"
 checksum=6c23113e87bad393308c90a207013e505f659274736638d8c79bac9c67cc3e19
-archs=noarch
diff --git a/srcpkgs/perl-Carp-Clan/template b/srcpkgs/perl-Carp-Clan/template
index 59704ed94f5..f2d100f73ec 100644
--- a/srcpkgs/perl-Carp-Clan/template
+++ b/srcpkgs/perl-Carp-Clan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Carp-Clan
 version=6.08
 revision=1
-archs=noarch
 wrksrc="Carp-Clan-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Accessor/template b/srcpkgs/perl-Class-Accessor/template
index 7dede179620..bfe3ad483d7 100644
--- a/srcpkgs/perl-Class-Accessor/template
+++ b/srcpkgs/perl-Class-Accessor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Accessor
 version=0.51
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Data-Inheritable/template b/srcpkgs/perl-Class-Data-Inheritable/template
index a7cc019bdae..8c7a6b8e448 100644
--- a/srcpkgs/perl-Class-Data-Inheritable/template
+++ b/srcpkgs/perl-Class-Data-Inheritable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Data-Inheritable
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Factory-Util/template b/srcpkgs/perl-Class-Factory-Util/template
index 92597b7ddd4..784eabeaa30 100644
--- a/srcpkgs/perl-Class-Factory-Util/template
+++ b/srcpkgs/perl-Class-Factory-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Factory-Util
 version=1.7
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Class-Inspector/template b/srcpkgs/perl-Class-Inspector/template
index cf071445c1d..78abb98fd8c 100644
--- a/srcpkgs/perl-Class-Inspector/template
+++ b/srcpkgs/perl-Class-Inspector/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Inspector
 version=1.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Load/template b/srcpkgs/perl-Class-Load/template
index 03f6e1c1a9a..ee0fe237b76 100644
--- a/srcpkgs/perl-Class-Load/template
+++ b/srcpkgs/perl-Class-Load/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Load
 version=0.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Method-Modifiers/template b/srcpkgs/perl-Class-Method-Modifiers/template
index 533720aa724..a255a8047f0 100644
--- a/srcpkgs/perl-Class-Method-Modifiers/template
+++ b/srcpkgs/perl-Class-Method-Modifiers/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Method-Modifiers
 version=2.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Singleton/template b/srcpkgs/perl-Class-Singleton/template
index d3ae0a38c8b..b0339fdbcc3 100644
--- a/srcpkgs/perl-Class-Singleton/template
+++ b/srcpkgs/perl-Class-Singleton/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Singleton
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Tiny/template b/srcpkgs/perl-Class-Tiny/template
index 6aee90c1149..1eeba58dc3c 100644
--- a/srcpkgs/perl-Class-Tiny/template
+++ b/srcpkgs/perl-Class-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Tiny
 version=1.006
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Clipboard/template b/srcpkgs/perl-Clipboard/template
index 36ce5a991c4..3bee57ee587 100644
--- a/srcpkgs/perl-Clipboard/template
+++ b/srcpkgs/perl-Clipboard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clipboard
 version=0.26
 revision=1
-archs=noarch
 wrksrc="Clipboard-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Clone-Choose/template b/srcpkgs/perl-Clone-Choose/template
index d5264c751eb..cabbf1da02e 100644
--- a/srcpkgs/perl-Clone-Choose/template
+++ b/srcpkgs/perl-Clone-Choose/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-Choose
 version=0.010
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Test-Without-Module"
diff --git a/srcpkgs/perl-Clone-PP/template b/srcpkgs/perl-Clone-PP/template
index 81ea599562d..3898d320b82 100644
--- a/srcpkgs/perl-Clone-PP/template
+++ b/srcpkgs/perl-Clone-PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-PP
 version=1.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-AutoConf/template b/srcpkgs/perl-Config-AutoConf/template
index 254014993da..9774e110628 100644
--- a/srcpkgs/perl-Config-AutoConf/template
+++ b/srcpkgs/perl-Config-AutoConf/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-AutoConf
 version=0.318
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Config-General/template b/srcpkgs/perl-Config-General/template
index 3b3490b88b9..edb0b74dd47 100644
--- a/srcpkgs/perl-Config-General/template
+++ b/srcpkgs/perl-Config-General/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-General
 version=2.63
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-INI-Reader-Ordered/template b/srcpkgs/perl-Config-INI-Reader-Ordered/template
index e733962c6d0..924a10df4d6 100644
--- a/srcpkgs/perl-Config-INI-Reader-Ordered/template
+++ b/srcpkgs/perl-Config-INI-Reader-Ordered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI-Reader-Ordered
 version=0.020
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Config-INI"
diff --git a/srcpkgs/perl-Config-INI/template b/srcpkgs/perl-Config-INI/template
index 5d24f752f44..69bb56fed6f 100644
--- a/srcpkgs/perl-Config-INI/template
+++ b/srcpkgs/perl-Config-INI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI
 version=0.025
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Mixin-Linewise"
diff --git a/srcpkgs/perl-Config-IniFiles/template b/srcpkgs/perl-Config-IniFiles/template
index 30b71ca775e..0b5b7c67fee 100644
--- a/srcpkgs/perl-Config-IniFiles/template
+++ b/srcpkgs/perl-Config-IniFiles/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-IniFiles
 version=3.000003
 revision=1
-archs=noarch
 wrksrc="Config-IniFiles-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Simple/template b/srcpkgs/perl-Config-Simple/template
index dc86662227a..f89baab02a2 100644
--- a/srcpkgs/perl-Config-Simple/template
+++ b/srcpkgs/perl-Config-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Simple
 version=4.59
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Tiny/template b/srcpkgs/perl-Config-Tiny/template
index e96ba7aeab9..817b36e7fa8 100644
--- a/srcpkgs/perl-Config-Tiny/template
+++ b/srcpkgs/perl-Config-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Tiny
 version=2.24
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Convert-BinHex/template b/srcpkgs/perl-Convert-BinHex/template
index d8ead1e579d..a3d5cee38b8 100644
--- a/srcpkgs/perl-Convert-BinHex/template
+++ b/srcpkgs/perl-Convert-BinHex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Convert-BinHex
 version=1.125
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Cookie-Baker/template b/srcpkgs/perl-Cookie-Baker/template
index ecb7b80e30c..97380da327c 100644
--- a/srcpkgs/perl-Cookie-Baker/template
+++ b/srcpkgs/perl-Cookie-Baker/template
@@ -2,7 +2,6 @@
 pkgname=perl-Cookie-Baker
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Crypt-Blowfish_PP/template b/srcpkgs/perl-Crypt-Blowfish_PP/template
index e2e7680ae52..25e05ae03fb 100644
--- a/srcpkgs/perl-Crypt-Blowfish_PP/template
+++ b/srcpkgs/perl-Crypt-Blowfish_PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-Blowfish_PP
 version=1.12
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index f09b1dc8ba3..9ca4812c589 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-CBC
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DES_EDE3/template b/srcpkgs/perl-Crypt-DES_EDE3/template
index e4a7abc00f3..55c7d689554 100644
--- a/srcpkgs/perl-Crypt-DES_EDE3/template
+++ b/srcpkgs/perl-Crypt-DES_EDE3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DES_EDE3
 version=0.01
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DH/template b/srcpkgs/perl-Crypt-DH/template
index 07c4dc70d23..ccb82e6d101 100644
--- a/srcpkgs/perl-Crypt-DH/template
+++ b/srcpkgs/perl-Crypt-DH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DH
 version=0.07
 revision=9
-archs=noarch
 wrksrc="Crypt-DH-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Math-BigInt-GMP perl-Archive-Zip"
diff --git a/srcpkgs/perl-Crypt-OpenSSL-Guess/template b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
index 8c207e50fa0..4c9691ec99c 100644
--- a/srcpkgs/perl-Crypt-OpenSSL-Guess/template
+++ b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-OpenSSL-Guess
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-PasswdMD5/template b/srcpkgs/perl-Crypt-PasswdMD5/template
index a579748e61d..7d1fccac254 100644
--- a/srcpkgs/perl-Crypt-PasswdMD5/template
+++ b/srcpkgs/perl-Crypt-PasswdMD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-PasswdMD5
 version=1.40
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-RC4/template b/srcpkgs/perl-Crypt-RC4/template
index bb7bb8931ec..04bb549019d 100644
--- a/srcpkgs/perl-Crypt-RC4/template
+++ b/srcpkgs/perl-Crypt-RC4/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-RC4
 version=2.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Danga-Socket/template b/srcpkgs/perl-Danga-Socket/template
index 049159b68a7..6ebc84f42e8 100644
--- a/srcpkgs/perl-Danga-Socket/template
+++ b/srcpkgs/perl-Danga-Socket/template
@@ -2,7 +2,6 @@
 pkgname=perl-Danga-Socket
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Compare/template b/srcpkgs/perl-Data-Compare/template
index c5fb3661f94..b7b42a7c299 100644
--- a/srcpkgs/perl-Data-Compare/template
+++ b/srcpkgs/perl-Data-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Compare
 version=1.27
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-Find-Rule perl-Clone"
diff --git a/srcpkgs/perl-Data-Dump/template b/srcpkgs/perl-Data-Dump/template
index 6ec79b62440..2d1cfd4901a 100644
--- a/srcpkgs/perl-Data-Dump/template
+++ b/srcpkgs/perl-Data-Dump/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dump
 version=1.23
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Dx/template b/srcpkgs/perl-Data-Dx/template
index ea44d272f58..4ad2bec1cc2 100644
--- a/srcpkgs/perl-Data-Dx/template
+++ b/srcpkgs/perl-Data-Dx/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dx
 version=0.000010
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Data-Dump perl-Keyword-Declare"
diff --git a/srcpkgs/perl-Data-OptList/template b/srcpkgs/perl-Data-OptList/template
index 7ea35f387b1..15c14aaf4a8 100644
--- a/srcpkgs/perl-Data-OptList/template
+++ b/srcpkgs/perl-Data-OptList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-OptList
 version=0.110
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Section-Simple/template b/srcpkgs/perl-Data-Section-Simple/template
index 5148ad90e52..5ac37007280 100644
--- a/srcpkgs/perl-Data-Section-Simple/template
+++ b/srcpkgs/perl-Data-Section-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Section-Simple
 version=0.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Uniqid/template b/srcpkgs/perl-Data-Uniqid/template
index 4005118cf6b..fcfa5baecc9 100644
--- a/srcpkgs/perl-Data-Uniqid/template
+++ b/srcpkgs/perl-Data-Uniqid/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Uniqid
 version=0.12
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Validate-IP/template b/srcpkgs/perl-Data-Validate-IP/template
index 5e0fb95de5a..2029d98c4c2 100644
--- a/srcpkgs/perl-Data-Validate-IP/template
+++ b/srcpkgs/perl-Data-Validate-IP/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/Data-Validate-IP"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Data/Data-Validate-IP-${version}.tar.gz"
 checksum=e1aa92235dcb9c6fd9b6c8cda184d1af73537cc77f4f83a0f88207a8bfbfb7d6
-archs=noarch
diff --git a/srcpkgs/perl-Date-Calc/template b/srcpkgs/perl-Date-Calc/template
index 3708c34ce4a..9cf7b813852 100644
--- a/srcpkgs/perl-Date-Calc/template
+++ b/srcpkgs/perl-Date-Calc/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl perl-Carp-Clan perl-Bit-Vector"
 depends="${makedepends}"
-archs=noarch
 short_desc="Date::Calc - Gregorian calendar date calculations"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 homepage="https://metacpan.org/release/Date-Calc"
diff --git a/srcpkgs/perl-Date-Manip/template b/srcpkgs/perl-Date-Manip/template
index 1474cd7aa17..2e19d7bee53 100644
--- a/srcpkgs/perl-Date-Manip/template
+++ b/srcpkgs/perl-Date-Manip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Date-Manip
 version=6.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Calendar-Julian/template b/srcpkgs/perl-DateTime-Calendar-Julian/template
index caf881a51e4..160ee75faf6 100644
--- a/srcpkgs/perl-DateTime-Calendar-Julian/template
+++ b/srcpkgs/perl-DateTime-Calendar-Julian/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Calendar-Julian
 version=0.102
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime"
diff --git a/srcpkgs/perl-DateTime-Format-Builder/template b/srcpkgs/perl-DateTime-Format-Builder/template
index 5ebef529fed..20fadc3ae7b 100644
--- a/srcpkgs/perl-DateTime-Format-Builder/template
+++ b/srcpkgs/perl-DateTime-Format-Builder/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Builder
 version=0.82
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime perl-Class-Factory-Util perl-DateTime-Format-Strptime perl-Params-Validate"
diff --git a/srcpkgs/perl-DateTime-Format-Strptime/template b/srcpkgs/perl-DateTime-Format-Strptime/template
index 4d4dd839035..0aca7d6b237 100644
--- a/srcpkgs/perl-DateTime-Format-Strptime/template
+++ b/srcpkgs/perl-DateTime-Format-Strptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Strptime
 version=1.77
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Locale/template b/srcpkgs/perl-DateTime-Locale/template
index 1c24fdaecce..6b1208e781b 100644
--- a/srcpkgs/perl-DateTime-Locale/template
+++ b/srcpkgs/perl-DateTime-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Locale
 version=1.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-DateTime-TimeZone/template b/srcpkgs/perl-DateTime-TimeZone/template
index b9c9149fc87..a681fa5c7bd 100644
--- a/srcpkgs/perl-DateTime-TimeZone/template
+++ b/srcpkgs/perl-DateTime-TimeZone/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-TimeZone
 version=2.39
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-CheckLib/template b/srcpkgs/perl-Devel-CheckLib/template
index be4e79419aa..fe9bd2398bc 100644
--- a/srcpkgs/perl-Devel-CheckLib/template
+++ b/srcpkgs/perl-Devel-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-CheckLib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="Devel-CheckLib-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-CaptureOutput"
diff --git a/srcpkgs/perl-Devel-GlobalDestruction/template b/srcpkgs/perl-Devel-GlobalDestruction/template
index 538d06d9e9f..5d971b90606 100644
--- a/srcpkgs/perl-Devel-GlobalDestruction/template
+++ b/srcpkgs/perl-Devel-GlobalDestruction/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-GlobalDestruction
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Sub-Exporter-Progressive"
diff --git a/srcpkgs/perl-Devel-StackTrace-AsHTML/template b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
index 446496001c7..42a8a6102de 100644
--- a/srcpkgs/perl-Devel-StackTrace-AsHTML/template
+++ b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Apache-LogFormat-Compiler"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Devel/Devel-StackTrace-AsHTML-${version}.tar.gz"
 checksum=6283dbe2197e2f20009cc4b449997742169cdd951bfc44cbc6e62c2a962d3147
-archs=noarch
diff --git a/srcpkgs/perl-Devel-StackTrace/template b/srcpkgs/perl-Devel-StackTrace/template
index 45972e75631..318568b9c3f 100644
--- a/srcpkgs/perl-Devel-StackTrace/template
+++ b/srcpkgs/perl-Devel-StackTrace/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-StackTrace
 version=2.04
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-Symdump/template b/srcpkgs/perl-Devel-Symdump/template
index d4823034b1f..d63c6e5a9d2 100644
--- a/srcpkgs/perl-Devel-Symdump/template
+++ b/srcpkgs/perl-Devel-Symdump/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Devel-Symdump"
 license="GPL-1, Artistic"
 distfiles="$CPAN_SITE/Devel/Devel-Symdump-${version}.tar.gz"
 checksum=826f81a107f5592a2516766ed43beb47e10cc83edc9ea48090b02a36040776c0
-archs=noarch
diff --git a/srcpkgs/perl-Digest-HMAC/template b/srcpkgs/perl-Digest-HMAC/template
index 5ece091d408..e47d13022ed 100644
--- a/srcpkgs/perl-Digest-HMAC/template
+++ b/srcpkgs/perl-Digest-HMAC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-HMAC
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Digest-Perl-MD5/template b/srcpkgs/perl-Digest-Perl-MD5/template
index 4ea78427ea5..0785fb4d25a 100644
--- a/srcpkgs/perl-Digest-Perl-MD5/template
+++ b/srcpkgs/perl-Digest-Perl-MD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-Perl-MD5
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Dist-CheckConflicts/template b/srcpkgs/perl-Dist-CheckConflicts/template
index 8c1f653ca03..0ae6651298f 100644
--- a/srcpkgs/perl-Dist-CheckConflicts/template
+++ b/srcpkgs/perl-Dist-CheckConflicts/template
@@ -2,7 +2,6 @@
 pkgname=perl-Dist-CheckConflicts
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Date-Format/template b/srcpkgs/perl-Email-Date-Format/template
index 57781d72c02..aa4db10ad48 100644
--- a/srcpkgs/perl-Email-Date-Format/template
+++ b/srcpkgs/perl-Email-Date-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Date-Format
 version=1.005
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-FolderType/template b/srcpkgs/perl-Email-FolderType/template
index a538f294158..3a57b288169 100644
--- a/srcpkgs/perl-Email-FolderType/template
+++ b/srcpkgs/perl-Email-FolderType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-FolderType
 version=0.814
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-LocalDelivery/template b/srcpkgs/perl-Email-LocalDelivery/template
index 3b2ed70646a..19d61c3f06f 100644
--- a/srcpkgs/perl-Email-LocalDelivery/template
+++ b/srcpkgs/perl-Email-LocalDelivery/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-LocalDelivery
 version=1.200
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-ContentType/template b/srcpkgs/perl-Email-MIME-ContentType/template
index 3131fafdbb4..17108543bde 100644
--- a/srcpkgs/perl-Email-MIME-ContentType/template
+++ b/srcpkgs/perl-Email-MIME-ContentType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-ContentType
 version=1.024
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-Encodings/template b/srcpkgs/perl-Email-MIME-Encodings/template
index ba28cb0ac78..1141dcb43e3 100644
--- a/srcpkgs/perl-Email-MIME-Encodings/template
+++ b/srcpkgs/perl-Email-MIME-Encodings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-Encodings
 version=1.315
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME/template b/srcpkgs/perl-Email-MIME/template
index 55a6b438578..32573aa6f9b 100644
--- a/srcpkgs/perl-Email-MIME/template
+++ b/srcpkgs/perl-Email-MIME/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME
 version=1.949
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MessageID/template b/srcpkgs/perl-Email-MessageID/template
index 5b52585b5f9..729503da15e 100644
--- a/srcpkgs/perl-Email-MessageID/template
+++ b/srcpkgs/perl-Email-MessageID/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MessageID
 version=1.406
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Simple/template b/srcpkgs/perl-Email-Simple/template
index 57ccc513dbe..f27eec6ebad 100644
--- a/srcpkgs/perl-Email-Simple/template
+++ b/srcpkgs/perl-Email-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Simple
 version=2.216
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Encode-Locale/template b/srcpkgs/perl-Encode-Locale/template
index 53e09d8a2e7..20371b4daf7 100644
--- a/srcpkgs/perl-Encode-Locale/template
+++ b/srcpkgs/perl-Encode-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-Encode-Locale
 version=1.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Eval-Closure/template b/srcpkgs/perl-Eval-Closure/template
index c3301afd97f..0a3a9ba40e0 100644
--- a/srcpkgs/perl-Eval-Closure/template
+++ b/srcpkgs/perl-Eval-Closure/template
@@ -2,7 +2,6 @@
 pkgname=perl-Eval-Closure
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exception-Class/template b/srcpkgs/perl-Exception-Class/template
index 3d0f37bf503..91280322f46 100644
--- a/srcpkgs/perl-Exception-Class/template
+++ b/srcpkgs/perl-Exception-Class/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl-Class-Data-Inheritable perl-Devel-StackTrace"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Allows you to declare real exception classes'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Exception-Class"
diff --git a/srcpkgs/perl-Expect/template b/srcpkgs/perl-Expect/template
index 6ec5f668697..8832c5148ef 100644
--- a/srcpkgs/perl-Expect/template
+++ b/srcpkgs/perl-Expect/template
@@ -2,7 +2,6 @@
 pkgname=perl-Expect
 version=1.35
 revision=1
-archs=noarch
 wrksrc="Expect-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exporter-Tiny/template b/srcpkgs/perl-Exporter-Tiny/template
index c1d2a7c3f9b..091e19bf774 100644
--- a/srcpkgs/perl-Exporter-Tiny/template
+++ b/srcpkgs/perl-Exporter-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Exporter-Tiny
 version=1.002002
 revision=1
-archs=noarch
 wrksrc="Exporter-Tiny-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Config/template b/srcpkgs/perl-ExtUtils-Config/template
index 5951b92a159..6fcc7265c85 100644
--- a/srcpkgs/perl-ExtUtils-Config/template
+++ b/srcpkgs/perl-ExtUtils-Config/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Config
 version=0.008
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-CppGuess/template b/srcpkgs/perl-ExtUtils-CppGuess/template
index df071fc6b85..b1cdbf48c6e 100644
--- a/srcpkgs/perl-ExtUtils-CppGuess/template
+++ b/srcpkgs/perl-ExtUtils-CppGuess/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-CppGuess
 version=0.21
 revision=1
-archs=noarch
 wrksrc="ExtUtils-CppGuess-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Capture-Tiny perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-Depends/template b/srcpkgs/perl-ExtUtils-Depends/template
index 80ac7515fa1..6b6c52e1d5a 100644
--- a/srcpkgs/perl-ExtUtils-Depends/template
+++ b/srcpkgs/perl-ExtUtils-Depends/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Depends
 version=0.8000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Helpers/template b/srcpkgs/perl-ExtUtils-Helpers/template
index 5b95d1cdeed..7c44bcad431 100644
--- a/srcpkgs/perl-ExtUtils-Helpers/template
+++ b/srcpkgs/perl-ExtUtils-Helpers/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Helpers
 version=0.026
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-InstallPaths/template b/srcpkgs/perl-ExtUtils-InstallPaths/template
index 168a4104de6..f9408e37b16 100644
--- a/srcpkgs/perl-ExtUtils-InstallPaths/template
+++ b/srcpkgs/perl-ExtUtils-InstallPaths/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-InstallPaths
 version=0.012
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-LibBuilder/template b/srcpkgs/perl-ExtUtils-LibBuilder/template
index c2c582b0aa2..b3a7082d078 100644
--- a/srcpkgs/perl-ExtUtils-LibBuilder/template
+++ b/srcpkgs/perl-ExtUtils-LibBuilder/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-LibBuilder
 version=0.08
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
index 5a42f6710d4..eb51966421e 100644
--- a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
+++ b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-MakeMaker-CPANfile
 version=0.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-PkgConfig/template b/srcpkgs/perl-ExtUtils-PkgConfig/template
index 72e96b548e5..7b1910322d9 100644
--- a/srcpkgs/perl-ExtUtils-PkgConfig/template
+++ b/srcpkgs/perl-ExtUtils-PkgConfig/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl pkg-config"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="Simplistic perl interface to pkg-config"
 homepage="https://metacpan.org/release/ExtUtils-PkgConfig"
 license="LGPL-2.1"
diff --git a/srcpkgs/perl-ExtUtils-XSpp/template b/srcpkgs/perl-ExtUtils-XSpp/template
index 708071a8279..29bf5791813 100644
--- a/srcpkgs/perl-ExtUtils-XSpp/template
+++ b/srcpkgs/perl-ExtUtils-XSpp/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-XSpp
 version=0.18
 revision=1
-archs=noarch
 wrksrc="ExtUtils-XSpp-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Base perl-Test-Differences"
diff --git a/srcpkgs/perl-FFI-CheckLib/template b/srcpkgs/perl-FFI-CheckLib/template
index 3b740cdacf3..cb88b1082d7 100644
--- a/srcpkgs/perl-FFI-CheckLib/template
+++ b/srcpkgs/perl-FFI-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-FFI-CheckLib
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-BaseDir/template b/srcpkgs/perl-File-BaseDir/template
index ada966fc66f..90b32ebe6e5 100644
--- a/srcpkgs/perl-File-BaseDir/template
+++ b/srcpkgs/perl-File-BaseDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-BaseDir
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Copy-Recursive/template b/srcpkgs/perl-File-Copy-Recursive/template
index 02d38a02582..a62a14f1614 100644
--- a/srcpkgs/perl-File-Copy-Recursive/template
+++ b/srcpkgs/perl-File-Copy-Recursive/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Copy-Recursive
 version=0.45
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-DesktopEntry/template b/srcpkgs/perl-File-DesktopEntry/template
index 5ce93ef5ff1..3b0baa47c3f 100644
--- a/srcpkgs/perl-File-DesktopEntry/template
+++ b/srcpkgs/perl-File-DesktopEntry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-DesktopEntry
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Find-Rule/template b/srcpkgs/perl-File-Find-Rule/template
index aecdb1ab8d5..82f01d58436 100644
--- a/srcpkgs/perl-File-Find-Rule/template
+++ b/srcpkgs/perl-File-Find-Rule/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Find-Rule
 version=0.34
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Glob perl-Number-Compare"
diff --git a/srcpkgs/perl-File-Flock-Retry/template b/srcpkgs/perl-File-Flock-Retry/template
index 0d7d912386a..c89b100a27f 100644
--- a/srcpkgs/perl-File-Flock-Retry/template
+++ b/srcpkgs/perl-File-Flock-Retry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Flock-Retry
 version=0.631
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-HomeDir/template b/srcpkgs/perl-File-HomeDir/template
index d318404f3cb..bb719e466f9 100644
--- a/srcpkgs/perl-File-HomeDir/template
+++ b/srcpkgs/perl-File-HomeDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-HomeDir
 version=1.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Which"
diff --git a/srcpkgs/perl-File-KeePass/template b/srcpkgs/perl-File-KeePass/template
index 35ac51656ea..2d8b536cfdd 100644
--- a/srcpkgs/perl-File-KeePass/template
+++ b/srcpkgs/perl-File-KeePass/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-KeePass
 version=2.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Listing/template b/srcpkgs/perl-File-Listing/template
index 88e1782c01a..431be101ddf 100644
--- a/srcpkgs/perl-File-Listing/template
+++ b/srcpkgs/perl-File-Listing/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Listing
 version=6.04
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-MimeInfo/template b/srcpkgs/perl-File-MimeInfo/template
index c9286a3e2be..a35a097b9fa 100644
--- a/srcpkgs/perl-File-MimeInfo/template
+++ b/srcpkgs/perl-File-MimeInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-MimeInfo
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Next/template b/srcpkgs/perl-File-Next/template
index ad618b321f0..10f79dfeea8 100644
--- a/srcpkgs/perl-File-Next/template
+++ b/srcpkgs/perl-File-Next/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Next
 version=1.18
 revision=1
-archs=noarch
 wrksrc="File-Next-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Path-Expand/template b/srcpkgs/perl-File-Path-Expand/template
index a1160ae2bd0..330f3255553 100644
--- a/srcpkgs/perl-File-Path-Expand/template
+++ b/srcpkgs/perl-File-Path-Expand/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Path-Expand
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Remove/template b/srcpkgs/perl-File-Remove/template
index bf19bbe94c6..1d97e011026 100644
--- a/srcpkgs/perl-File-Remove/template
+++ b/srcpkgs/perl-File-Remove/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Remove
 version=1.58
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Rename/template b/srcpkgs/perl-File-Rename/template
index 5c198686de0..fd7c1000574 100644
--- a/srcpkgs/perl-File-Rename/template
+++ b/srcpkgs/perl-File-Rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Rename
 version=1.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-ShareDir-Install/template b/srcpkgs/perl-File-ShareDir-Install/template
index 208a8575079..63c63c755e3 100644
--- a/srcpkgs/perl-File-ShareDir-Install/template
+++ b/srcpkgs/perl-File-ShareDir-Install/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="File::ShareDir::Install - Install shared files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/File-ShareDir-Install"
diff --git a/srcpkgs/perl-File-ShareDir/template b/srcpkgs/perl-File-ShareDir/template
index beb7e228afc..6c453f01997 100644
--- a/srcpkgs/perl-File-ShareDir/template
+++ b/srcpkgs/perl-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-ShareDir
 version=1.116
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp-Tiny/template b/srcpkgs/perl-File-Slurp-Tiny/template
index 8a9d8804674..a1dbc242b72 100644
--- a/srcpkgs/perl-File-Slurp-Tiny/template
+++ b/srcpkgs/perl-File-Slurp-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp-Tiny
 version=0.004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp/template b/srcpkgs/perl-File-Slurp/template
index e80907b93f6..6d6eaf13023 100644
--- a/srcpkgs/perl-File-Slurp/template
+++ b/srcpkgs/perl-File-Slurp/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp
 version=9999.30
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurper/template b/srcpkgs/perl-File-Slurper/template
index 4d863f45594..abad103efaf 100644
--- a/srcpkgs/perl-File-Slurper/template
+++ b/srcpkgs/perl-File-Slurper/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurper
 version=0.012
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Which/template b/srcpkgs/perl-File-Which/template
index 3cf781fc48c..dda22972729 100644
--- a/srcpkgs/perl-File-Which/template
+++ b/srcpkgs/perl-File-Which/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Which
 version=1.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Write-Rotate/template b/srcpkgs/perl-File-Write-Rotate/template
index b0cce6f7c18..6f8e780d6f6 100644
--- a/srcpkgs/perl-File-Write-Rotate/template
+++ b/srcpkgs/perl-File-Write-Rotate/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Write-Rotate
 version=0.321
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-chdir/template b/srcpkgs/perl-File-chdir/template
index af6a761eaf2..6a37200eda4 100644
--- a/srcpkgs/perl-File-chdir/template
+++ b/srcpkgs/perl-File-chdir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-chdir
 version=0.1011
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-pushd/template b/srcpkgs/perl-File-pushd/template
index 1ff8d169a2f..2d94f16b604 100644
--- a/srcpkgs/perl-File-pushd/template
+++ b/srcpkgs/perl-File-pushd/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-pushd
 version=1.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Filesys-Notify-Simple/template b/srcpkgs/perl-Filesys-Notify-Simple/template
index 63162d61a23..4ec2992d5bf 100644
--- a/srcpkgs/perl-Filesys-Notify-Simple/template
+++ b/srcpkgs/perl-Filesys-Notify-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Filesys-Notify-Simple
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Font-TTF/template b/srcpkgs/perl-Font-TTF/template
index 16637e92dbc..9e521a86ca1 100644
--- a/srcpkgs/perl-Font-TTF/template
+++ b/srcpkgs/perl-Font-TTF/template
@@ -2,7 +2,6 @@
 pkgname=perl-Font-TTF
 version=1.06
 revision=3
-archs=noarch
 wrksrc="Font-TTF-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-String"
diff --git a/srcpkgs/perl-Getopt-Compact/template b/srcpkgs/perl-Getopt-Compact/template
index 4fd53e9b485..693125559ff 100644
--- a/srcpkgs/perl-Getopt-Compact/template
+++ b/srcpkgs/perl-Getopt-Compact/template
@@ -2,7 +2,6 @@
 pkgname=perl-Getopt-Compact
 version=0.04
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-GooCanvas2/template b/srcpkgs/perl-GooCanvas2/template
index c1236ce2d94..407993e27f5 100644
--- a/srcpkgs/perl-GooCanvas2/template
+++ b/srcpkgs/perl-GooCanvas2/template
@@ -2,7 +2,6 @@
 pkgname=perl-GooCanvas2
 version=0.06
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Graphics-ColorUtils/template b/srcpkgs/perl-Graphics-ColorUtils/template
index eaa71105c53..d11ed93971f 100644
--- a/srcpkgs/perl-Graphics-ColorUtils/template
+++ b/srcpkgs/perl-Graphics-ColorUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-Graphics-ColorUtils
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk2-Ex-Simple-List/template b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
index e07199fd18a..6399c0d906f 100644
--- a/srcpkgs/perl-Gtk2-Ex-Simple-List/template
+++ b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk2-Ex-Simple-List
 version=0.50
 revision=2
-archs=noarch
 wrksrc="Gtk2-Ex-Simple-List-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3-SimpleList/template b/srcpkgs/perl-Gtk3-SimpleList/template
index 5e647b5a737..78e57b052c3 100644
--- a/srcpkgs/perl-Gtk3-SimpleList/template
+++ b/srcpkgs/perl-Gtk3-SimpleList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3-SimpleList
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3/template b/srcpkgs/perl-Gtk3/template
index d1ab6cccf8c..b5f50a2f058 100644
--- a/srcpkgs/perl-Gtk3/template
+++ b/srcpkgs/perl-Gtk3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3
 version=0.037
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Form/template b/srcpkgs/perl-HTML-Form/template
index 0eeb276979c..bf4020cfe3f 100644
--- a/srcpkgs/perl-HTML-Form/template
+++ b/srcpkgs/perl-HTML-Form/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Form
 version=6.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tagset/template b/srcpkgs/perl-HTML-Tagset/template
index 5525e6d93ad..3b8ed139843 100644
--- a/srcpkgs/perl-HTML-Tagset/template
+++ b/srcpkgs/perl-HTML-Tagset/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tagset
 version=3.20
 revision=7
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tree/template b/srcpkgs/perl-HTML-Tree/template
index b77bf5c83a6..328478a1b15 100644
--- a/srcpkgs/perl-HTML-Tree/template
+++ b/srcpkgs/perl-HTML-Tree/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tree
 version=5.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-HTTP-Cookies/template b/srcpkgs/perl-HTTP-Cookies/template
index b3bf18556b3..06e37f0719e 100644
--- a/srcpkgs/perl-HTTP-Cookies/template
+++ b/srcpkgs/perl-HTTP-Cookies/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Cookies
 version=6.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Daemon/template b/srcpkgs/perl-HTTP-Daemon/template
index 5ca067d49d5..ba5d3f2190a 100644
--- a/srcpkgs/perl-HTTP-Daemon/template
+++ b/srcpkgs/perl-HTTP-Daemon/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Daemon
 version=6.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Date/template b/srcpkgs/perl-HTTP-Date/template
index c97750feba0..c193712ee37 100644
--- a/srcpkgs/perl-HTTP-Date/template
+++ b/srcpkgs/perl-HTTP-Date/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Date
 version=6.05
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Entity-Parser/template b/srcpkgs/perl-HTTP-Entity-Parser/template
index 6fcada68323..8886aa27d4b 100644
--- a/srcpkgs/perl-HTTP-Entity-Parser/template
+++ b/srcpkgs/perl-HTTP-Entity-Parser/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Entity-Parser
 version=0.24
 revision=1
-archs=noarch
 wrksrc="HTTP-Entity-Parser-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Headers-Fast/template b/srcpkgs/perl-HTTP-Headers-Fast/template
index 2f263d67329..69876b00abb 100644
--- a/srcpkgs/perl-HTTP-Headers-Fast/template
+++ b/srcpkgs/perl-HTTP-Headers-Fast/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Headers-Fast
 version=0.22
 revision=1
-archs=noarch
 wrksrc="HTTP-Headers-Fast-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Message/template b/srcpkgs/perl-HTTP-Message/template
index 3fb6cd73ecf..d1fa295004e 100644
--- a/srcpkgs/perl-HTTP-Message/template
+++ b/srcpkgs/perl-HTTP-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Message
 version=6.24
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-MultiPartParser/template b/srcpkgs/perl-HTTP-MultiPartParser/template
index 91c07646740..8f0a5ca5c1a 100644
--- a/srcpkgs/perl-HTTP-MultiPartParser/template
+++ b/srcpkgs/perl-HTTP-MultiPartParser/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/HTTP-MultiPartParser"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/HTTP/HTTP-MultiPartParser-${version}.tar.gz"
 checksum=5eddda159f54d16f868e032440ac2b024e55aac48931871b62627f1a16d00b12
-archs=noarch
diff --git a/srcpkgs/perl-HTTP-Negotiate/template b/srcpkgs/perl-HTTP-Negotiate/template
index 7cdc61fca6c..3fa8d2c8373 100644
--- a/srcpkgs/perl-HTTP-Negotiate/template
+++ b/srcpkgs/perl-HTTP-Negotiate/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Negotiate
 version=6.01
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Response-Encoding/template b/srcpkgs/perl-HTTP-Response-Encoding/template
index 8f2b5d0a854..c21570e1a36 100644
--- a/srcpkgs/perl-HTTP-Response-Encoding/template
+++ b/srcpkgs/perl-HTTP-Response-Encoding/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Response-Encoding
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Server-Simple/template b/srcpkgs/perl-HTTP-Server-Simple/template
index 732f2a05326..a2a50984056 100644
--- a/srcpkgs/perl-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Server-Simple
 version=0.52
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Tinyish/template b/srcpkgs/perl-HTTP-Tinyish/template
index 065830e5d50..fb574fefcca 100644
--- a/srcpkgs/perl-HTTP-Tinyish/template
+++ b/srcpkgs/perl-HTTP-Tinyish/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Tinyish
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-Merge/template b/srcpkgs/perl-Hash-Merge/template
index 8b01ec990ce..935f53319b2 100644
--- a/srcpkgs/perl-Hash-Merge/template
+++ b/srcpkgs/perl-Hash-Merge/template
@@ -2,7 +2,6 @@
 pkgname=perl-Hash-Merge
 version=0.302
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-MultiValue/template b/srcpkgs/perl-Hash-MultiValue/template
index d9be3ac82ab..8624237f1ef 100644
--- a/srcpkgs/perl-Hash-MultiValue/template
+++ b/srcpkgs/perl-Hash-MultiValue/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Hash-MultiValue"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Hash/Hash-MultiValue-${version}.tar.gz"
 checksum=66181df7aa68e2786faf6895c88b18b95c800a8e4e6fb4c07fd176410a3c73f4
-archs=noarch
diff --git a/srcpkgs/perl-IO-CaptureOutput/template b/srcpkgs/perl-IO-CaptureOutput/template
index e2d5f360b38..1ad727f0916 100644
--- a/srcpkgs/perl-IO-CaptureOutput/template
+++ b/srcpkgs/perl-IO-CaptureOutput/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-CaptureOutput
 version=1.1105
 revision=1
-archs=noarch
 wrksrc="IO-CaptureOutput-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-HTML/template b/srcpkgs/perl-IO-HTML/template
index 7fb1ca71ede..2566ea52211 100644
--- a/srcpkgs/perl-IO-HTML/template
+++ b/srcpkgs/perl-IO-HTML/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-HTML
 version=1.001
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-SessionData/template b/srcpkgs/perl-IO-SessionData/template
index 04b7108a4df..0c0f2cefb7c 100644
--- a/srcpkgs/perl-IO-SessionData/template
+++ b/srcpkgs/perl-IO-SessionData/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-SessionData
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-INET6/template b/srcpkgs/perl-IO-Socket-INET6/template
index c94145ca85a..f67537b5b17 100644
--- a/srcpkgs/perl-IO-Socket-INET6/template
+++ b/srcpkgs/perl-IO-Socket-INET6/template
@@ -8,7 +8,6 @@ hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-Socket6"
 checkdepends="perl-Test-Pod perl-Test-Pod-Coverage"
 depends="${makedepends}"
-archs=noarch
 short_desc="IO::Socket::INET6 - Object interface for AF_INET/AF_INET6 domain sockets"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/IO-Socket-INET6"
diff --git a/srcpkgs/perl-IO-Socket-SSL/template b/srcpkgs/perl-IO-Socket-SSL/template
index 70463405a2a..21792ff27ac 100644
--- a/srcpkgs/perl-IO-Socket-SSL/template
+++ b/srcpkgs/perl-IO-Socket-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-SSL
 version=2.068
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-Socks/template b/srcpkgs/perl-IO-Socket-Socks/template
index d37fbcfc55a..8a970ad4a2e 100644
--- a/srcpkgs/perl-IO-Socket-Socks/template
+++ b/srcpkgs/perl-IO-Socket-Socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-Socks
 version=0.74
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-String/template b/srcpkgs/perl-IO-String/template
index 7c0735b6b81..4732a8ee56e 100644
--- a/srcpkgs/perl-IO-String/template
+++ b/srcpkgs/perl-IO-String/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-String
 version=1.08
 revision=2
-archs=noarch
 wrksrc="IO-String-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Stty/template b/srcpkgs/perl-IO-Stty/template
index a6fdf1c2fe6..cc00d3bc064 100644
--- a/srcpkgs/perl-IO-Stty/template
+++ b/srcpkgs/perl-IO-Stty/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Stty
 version=0.04
 revision=1
-archs=noarch
 wrksrc="IO-Stty-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-stringy/template b/srcpkgs/perl-IO-stringy/template
index 411a8374bcf..ccc92e36fc0 100644
--- a/srcpkgs/perl-IO-stringy/template
+++ b/srcpkgs/perl-IO-stringy/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-stringy
 version=2.113
 revision=1
-archs=noarch
 wrksrc="IO-Stringy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run/template b/srcpkgs/perl-IPC-Run/template
index ceb5b93652b..dccd5ebcbbb 100644
--- a/srcpkgs/perl-IPC-Run/template
+++ b/srcpkgs/perl-IPC-Run/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run
 version=20200505.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run3/template b/srcpkgs/perl-IPC-Run3/template
index 25155d2b8f3..068ec8b309f 100644
--- a/srcpkgs/perl-IPC-Run3/template
+++ b/srcpkgs/perl-IPC-Run3/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run3
 version=0.048
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-System-Simple/template b/srcpkgs/perl-IPC-System-Simple/template
index 29fe8c39e4b..a022bad07c9 100644
--- a/srcpkgs/perl-IPC-System-Simple/template
+++ b/srcpkgs/perl-IPC-System-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-System-Simple
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Importer/template b/srcpkgs/perl-Importer/template
index 455ee533b1b..2d848054f57 100644
--- a/srcpkgs/perl-Importer/template
+++ b/srcpkgs/perl-Importer/template
@@ -2,7 +2,6 @@
 pkgname=perl-Importer
 version=0.025
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Inline-C/template b/srcpkgs/perl-Inline-C/template
index 1ed461f4ffa..a38df73e0c3 100644
--- a/srcpkgs/perl-Inline-C/template
+++ b/srcpkgs/perl-Inline-C/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline-C
 version=0.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Inline/template b/srcpkgs/perl-Inline/template
index 60849405c13..c8099adbad9 100644
--- a/srcpkgs/perl-Inline/template
+++ b/srcpkgs/perl-Inline/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline
 version=0.86
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON-MaybeXS/template b/srcpkgs/perl-JSON-MaybeXS/template
index 5bde5e5d988..88bf28d7481 100644
--- a/srcpkgs/perl-JSON-MaybeXS/template
+++ b/srcpkgs/perl-JSON-MaybeXS/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON-MaybeXS
 version=1.004002
 revision=1
-archs=noarch
 wrksrc="JSON-MaybeXS-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON/template b/srcpkgs/perl-JSON/template
index 2d3962b3835..a2386e14e2a 100644
--- a/srcpkgs/perl-JSON/template
+++ b/srcpkgs/perl-JSON/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON
 version=4.02
 revision=1
-archs=noarch
 wrksrc="JSON-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Keyword-Declare/template b/srcpkgs/perl-Keyword-Declare/template
index 67afa378530..54b839a4316 100644
--- a/srcpkgs/perl-Keyword-Declare/template
+++ b/srcpkgs/perl-Keyword-Declare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Declare
 version=0.001017
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope perl-Keyword-Simple perl-PPR"
diff --git a/srcpkgs/perl-Keyword-Simple/template b/srcpkgs/perl-Keyword-Simple/template
index abc491b1a2a..16b0a062a2b 100644
--- a/srcpkgs/perl-Keyword-Simple/template
+++ b/srcpkgs/perl-Keyword-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Simple
 version=0.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-MediaTypes/template b/srcpkgs/perl-LWP-MediaTypes/template
index bdb32bcf9ee..a861f096acd 100644
--- a/srcpkgs/perl-LWP-MediaTypes/template
+++ b/srcpkgs/perl-LWP-MediaTypes/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-MediaTypes
 version=6.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-https/template b/srcpkgs/perl-LWP-Protocol-https/template
index a78137a3199..5b64992fb00 100644
--- a/srcpkgs/perl-LWP-Protocol-https/template
+++ b/srcpkgs/perl-LWP-Protocol-https/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-https
 version=6.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-socks/template b/srcpkgs/perl-LWP-Protocol-socks/template
index 15a96605eea..dc2a1b01c58 100644
--- a/srcpkgs/perl-LWP-Protocol-socks/template
+++ b/srcpkgs/perl-LWP-Protocol-socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-socks
 version=1.7
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP/template b/srcpkgs/perl-LWP/template
index 09bdb5ae9a4..3c2dbfaf68f 100644
--- a/srcpkgs/perl-LWP/template
+++ b/srcpkgs/perl-LWP/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP
 version=6.46
 revision=1
-archs=noarch
 wrksrc="libwww-perl-${version}"
 build_style=perl-module
 hostmakedepends="
diff --git a/srcpkgs/perl-Lingua-Translit/template b/srcpkgs/perl-Lingua-Translit/template
index 075e12b8190..f3caaac516e 100644
--- a/srcpkgs/perl-Lingua-Translit/template
+++ b/srcpkgs/perl-Lingua-Translit/template
@@ -2,7 +2,6 @@
 pkgname=perl-Lingua-Translit
 version=0.28
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Linux-DesktopFiles/template b/srcpkgs/perl-Linux-DesktopFiles/template
index 9d6cda1c3f7..0cde8fbf700 100644
--- a/srcpkgs/perl-Linux-DesktopFiles/template
+++ b/srcpkgs/perl-Linux-DesktopFiles/template
@@ -4,7 +4,6 @@ version=0.25
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/perl-Linux-Distribution/template b/srcpkgs/perl-Linux-Distribution/template
index 01a726003d3..9e9ef9c3ac0 100644
--- a/srcpkgs/perl-Linux-Distribution/template
+++ b/srcpkgs/perl-Linux-Distribution/template
@@ -2,7 +2,6 @@
 pkgname=perl-Linux-Distribution
 version=0.23
 revision=2
-archs=noarch
 wrksrc="Linux-Distribution-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-AllUtils/template b/srcpkgs/perl-List-AllUtils/template
index a47d19136ac..2a422e705be 100644
--- a/srcpkgs/perl-List-AllUtils/template
+++ b/srcpkgs/perl-List-AllUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-AllUtils
 version=0.16
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-MoreUtils/template b/srcpkgs/perl-List-MoreUtils/template
index 55467ee119b..d4f371fc627 100644
--- a/srcpkgs/perl-List-MoreUtils/template
+++ b/srcpkgs/perl-List-MoreUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-MoreUtils
 version=0.428
 revision=2
-archs=noarch
 wrksrc="List-MoreUtils-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-SomeUtils/template b/srcpkgs/perl-List-SomeUtils/template
index df6e1570cd0..014fd652caa 100644
--- a/srcpkgs/perl-List-SomeUtils/template
+++ b/srcpkgs/perl-List-SomeUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-SomeUtils
 version=0.58
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-UtilsBy/template b/srcpkgs/perl-List-UtilsBy/template
index 7f22975ec4f..359fe5c1a9e 100644
--- a/srcpkgs/perl-List-UtilsBy/template
+++ b/srcpkgs/perl-List-UtilsBy/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-UtilsBy
 version=0.11
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Locale-PO/template b/srcpkgs/perl-Locale-PO/template
index 77341df5cdf..a7efbeec358 100644
--- a/srcpkgs/perl-Locale-PO/template
+++ b/srcpkgs/perl-Locale-PO/template
@@ -2,7 +2,6 @@
 pkgname=perl-Locale-PO
 version=0.27
 revision=3
-archs=noarch
 wrksrc="Locale-PO-${version}"
 build_style="perl-module"
 hostmakedepends="perl perl-File-Slurp"
diff --git a/srcpkgs/perl-Log-Log4perl/template b/srcpkgs/perl-Log-Log4perl/template
index 3af10b95a39..5633665e577 100644
--- a/srcpkgs/perl-Log-Log4perl/template
+++ b/srcpkgs/perl-Log-Log4perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Log-Log4perl
 version=1.50
 revision=1
-archs=noarch
 wrksrc="Log-Log4perl-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Charset/template b/srcpkgs/perl-MIME-Charset/template
index 568dc6d95e1..8aa6b243e7a 100644
--- a/srcpkgs/perl-MIME-Charset/template
+++ b/srcpkgs/perl-MIME-Charset/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Charset
 version=1.012.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Types/template b/srcpkgs/perl-MIME-Types/template
index 4ce98fe5137..7253144ee47 100644
--- a/srcpkgs/perl-MIME-Types/template
+++ b/srcpkgs/perl-MIME-Types/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Types
 version=2.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-tools/template b/srcpkgs/perl-MIME-tools/template
index e4df2da1748..f12f1e5cc1c 100644
--- a/srcpkgs/perl-MIME-tools/template
+++ b/srcpkgs/perl-MIME-tools/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-tools
 version=5.509
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Info/template b/srcpkgs/perl-MP3-Info/template
index 70b84cc316c..9bc827ca727 100644
--- a/srcpkgs/perl-MP3-Info/template
+++ b/srcpkgs/perl-MP3-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Info
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Tag/template b/srcpkgs/perl-MP3-Tag/template
index 1bff6e2e7b7..62377f0bea1 100644
--- a/srcpkgs/perl-MP3-Tag/template
+++ b/srcpkgs/perl-MP3-Tag/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Tag
 version=1.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl unzip"
diff --git a/srcpkgs/perl-MRO-Compat/template b/srcpkgs/perl-MRO-Compat/template
index bf51f72241c..6c09d01d943 100644
--- a/srcpkgs/perl-MRO-Compat/template
+++ b/srcpkgs/perl-MRO-Compat/template
@@ -2,7 +2,6 @@
 pkgname=perl-MRO-Compat
 version=0.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Box/template b/srcpkgs/perl-Mail-Box/template
index f2e68883b5e..c21c166845b 100644
--- a/srcpkgs/perl-Mail-Box/template
+++ b/srcpkgs/perl-Mail-Box/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Box
 version=3.008
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-DKIM/template b/srcpkgs/perl-Mail-DKIM/template
index 5dfd3f9b2f0..30af708ec25 100644
--- a/srcpkgs/perl-Mail-DKIM/template
+++ b/srcpkgs/perl-Mail-DKIM/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-DKIM
 version=1.20200724
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Message/template b/srcpkgs/perl-Mail-Message/template
index 1bf220ad388..76ed0153002 100644
--- a/srcpkgs/perl-Mail-Message/template
+++ b/srcpkgs/perl-Mail-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Message
 version=3.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-POP3Client/template b/srcpkgs/perl-Mail-POP3Client/template
index 5317b8ce273..577dfc1c30c 100644
--- a/srcpkgs/perl-Mail-POP3Client/template
+++ b/srcpkgs/perl-Mail-POP3Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-POP3Client
 version=2.19
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Sendmail/template b/srcpkgs/perl-Mail-Sendmail/template
index 55fdfc7f3ad..b61ecddae98 100644
--- a/srcpkgs/perl-Mail-Sendmail/template
+++ b/srcpkgs/perl-Mail-Sendmail/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Sendmail
 version=0.80
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Transport/template b/srcpkgs/perl-Mail-Transport/template
index 1e1501c286e..f1ec85e7000 100644
--- a/srcpkgs/perl-Mail-Transport/template
+++ b/srcpkgs/perl-Mail-Transport/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Transport
 version=3.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MailTools/template b/srcpkgs/perl-MailTools/template
index 8687178a114..65911f6edb5 100644
--- a/srcpkgs/perl-MailTools/template
+++ b/srcpkgs/perl-MailTools/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-TimeDate"
 depends="${makedepends}"
-archs=noarch
 short_desc="MailTools -- Various e-mail related modules"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://metacpan.org/release/MailTools"
diff --git a/srcpkgs/perl-Menlo-Legacy/template b/srcpkgs/perl-Menlo-Legacy/template
index 217e8836b13..5b285a92548 100644
--- a/srcpkgs/perl-Menlo-Legacy/template
+++ b/srcpkgs/perl-Menlo-Legacy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo-Legacy
 version=1.9022
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Menlo/template b/srcpkgs/perl-Menlo/template
index c16d725e03b..94751be3421 100644
--- a/srcpkgs/perl-Menlo/template
+++ b/srcpkgs/perl-Menlo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo
 version=1.9019
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mixin-Linewise/template b/srcpkgs/perl-Mixin-Linewise/template
index 1f2c66462b7..02573bc745a 100644
--- a/srcpkgs/perl-Mixin-Linewise/template
+++ b/srcpkgs/perl-Mixin-Linewise/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mixin-Linewise
 version=0.108
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-PerlIO-utf8-strict perl-Sub-Exporter"
diff --git a/srcpkgs/perl-Module-Build-Tiny/template b/srcpkgs/perl-Module-Build-Tiny/template
index f1b3c327040..e7c462fe4d6 100644
--- a/srcpkgs/perl-Module-Build-Tiny/template
+++ b/srcpkgs/perl-Module-Build-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build-Tiny
 version=0.039
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-ExtUtils-Config perl-ExtUtils-Helpers perl-ExtUtils-InstallPaths"
diff --git a/srcpkgs/perl-Module-Build/template b/srcpkgs/perl-Module-Build/template
index 654c0dedc6b..251896beee8 100644
--- a/srcpkgs/perl-Module-Build/template
+++ b/srcpkgs/perl-Module-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build
 version=0.4231
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-CPANfile/template b/srcpkgs/perl-Module-CPANfile/template
index b6c80ffe2d9..6a01786a74a 100644
--- a/srcpkgs/perl-Module-CPANfile/template
+++ b/srcpkgs/perl-Module-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-CPANfile
 version=1.1004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Find/template b/srcpkgs/perl-Module-Find/template
index 53aaaf84e0a..80d4c29af95 100644
--- a/srcpkgs/perl-Module-Find/template
+++ b/srcpkgs/perl-Module-Find/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Find
 version=0.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Implementation/template b/srcpkgs/perl-Module-Implementation/template
index cd8764774e0..725a6a104cb 100644
--- a/srcpkgs/perl-Module-Implementation/template
+++ b/srcpkgs/perl-Module-Implementation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Implementation
 version=0.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Manifest/template b/srcpkgs/perl-Module-Manifest/template
index 1a56b9da224..86674f57437 100644
--- a/srcpkgs/perl-Module-Manifest/template
+++ b/srcpkgs/perl-Module-Manifest/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Module-Manifest"
 license="Artistic, GPL-1"
 distfiles="$CPAN_SITE/Module/Module-Manifest-${version}.tar.gz"
 checksum=a395f80ff15ea0e66fd6c453844b6787ed4a875a3cd8df9f7e29280250bd539b
-archs=noarch
diff --git a/srcpkgs/perl-Module-Pluggable/template b/srcpkgs/perl-Module-Pluggable/template
index 793c7d6c8bd..b66ec862bdc 100644
--- a/srcpkgs/perl-Module-Pluggable/template
+++ b/srcpkgs/perl-Module-Pluggable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Pluggable
 version=5.2
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Runtime/template b/srcpkgs/perl-Module-Runtime/template
index a8e421f60e1..11231dffd67 100644
--- a/srcpkgs/perl-Module-Runtime/template
+++ b/srcpkgs/perl-Module-Runtime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Runtime
 version=0.016
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Mojolicious/template b/srcpkgs/perl-Mojolicious/template
index 14cf2b6160e..46174772c5e 100644
--- a/srcpkgs/perl-Mojolicious/template
+++ b/srcpkgs/perl-Mojolicious/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mojolicious
 version=8.42
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Monkey-Patch-Action/template b/srcpkgs/perl-Monkey-Patch-Action/template
index f13376e85df..2d7bfdf6240 100644
--- a/srcpkgs/perl-Monkey-Patch-Action/template
+++ b/srcpkgs/perl-Monkey-Patch-Action/template
@@ -2,7 +2,6 @@
 pkgname=perl-Monkey-Patch-Action
 version=0.061
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Moo/template b/srcpkgs/perl-Moo/template
index 155a50b3112..ad85f0207cb 100644
--- a/srcpkgs/perl-Moo/template
+++ b/srcpkgs/perl-Moo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Moo
 version=2.004000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mozilla-CA/template b/srcpkgs/perl-Mozilla-CA/template
index 3a406de17d2..60e89cd77e6 100644
--- a/srcpkgs/perl-Mozilla-CA/template
+++ b/srcpkgs/perl-Mozilla-CA/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mozilla-CA
 version=20200520
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS-Resolver-Mock/template b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
index 5583cb8138d..b31762710e9 100644
--- a/srcpkgs/perl-Net-DNS-Resolver-Mock/template
+++ b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS-Resolver-Mock
 version=1.20200215
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS/template b/srcpkgs/perl-Net-DNS/template
index efa3b7dd63e..ae5529844fc 100644
--- a/srcpkgs/perl-Net-DNS/template
+++ b/srcpkgs/perl-Net-DNS/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS
 version=1.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-HTTP/template b/srcpkgs/perl-Net-HTTP/template
index 105416774df..0b6d48cc134 100644
--- a/srcpkgs/perl-Net-HTTP/template
+++ b/srcpkgs/perl-Net-HTTP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-HTTP
 version=6.19
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Client/template b/srcpkgs/perl-Net-IMAP-Client/template
index 1e0f579548f..ddb280e9e4e 100644
--- a/srcpkgs/perl-Net-IMAP-Client/template
+++ b/srcpkgs/perl-Net-IMAP-Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Client
 version=0.9505
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Simple/template b/srcpkgs/perl-Net-IMAP-Simple/template
index 30d331492fb..70244a0ab64 100644
--- a/srcpkgs/perl-Net-IMAP-Simple/template
+++ b/srcpkgs/perl-Net-IMAP-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Simple
 version=1.2212
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-MPD/template b/srcpkgs/perl-Net-MPD/template
index 38363aa7b48..e69ff0d37cc 100644
--- a/srcpkgs/perl-Net-MPD/template
+++ b/srcpkgs/perl-Net-MPD/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-MPD
 version=0.07
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Net-OpenSSH/template b/srcpkgs/perl-Net-OpenSSH/template
index 69fc0d570e1..b8e6439ead8 100644
--- a/srcpkgs/perl-Net-OpenSSH/template
+++ b/srcpkgs/perl-Net-OpenSSH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-OpenSSH
 version=0.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SFTP-Foreign/template b/srcpkgs/perl-Net-SFTP-Foreign/template
index a447269f22a..852d70c9c5d 100644
--- a/srcpkgs/perl-Net-SFTP-Foreign/template
+++ b/srcpkgs/perl-Net-SFTP-Foreign/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SFTP-Foreign
 version=1.91
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SMTP-SSL/template b/srcpkgs/perl-Net-SMTP-SSL/template
index 4bceff607f7..066b9325ace 100644
--- a/srcpkgs/perl-Net-SMTP-SSL/template
+++ b/srcpkgs/perl-Net-SMTP-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SMTP-SSL
 version=1.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-Server/template b/srcpkgs/perl-Net-Server/template
index d6303b7a70b..663ed0d44de 100644
--- a/srcpkgs/perl-Net-Server/template
+++ b/srcpkgs/perl-Net-Server/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-Server
 version=2.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Compare/template b/srcpkgs/perl-Number-Compare/template
index df4eaca2780..c7a4c986303 100644
--- a/srcpkgs/perl-Number-Compare/template
+++ b/srcpkgs/perl-Number-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Compare
 version=0.03
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Format/template b/srcpkgs/perl-Number-Format/template
index f0c958a696c..435d082ab86 100644
--- a/srcpkgs/perl-Number-Format/template
+++ b/srcpkgs/perl-Number-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Format
 version=1.75
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-OLE-Storage_Lite/template b/srcpkgs/perl-OLE-Storage_Lite/template
index 28db86c8be5..37e893ecfa5 100644
--- a/srcpkgs/perl-OLE-Storage_Lite/template
+++ b/srcpkgs/perl-OLE-Storage_Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-OLE-Storage_Lite
 version=0.20
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-MultiType/template b/srcpkgs/perl-Object-MultiType/template
index 7caf30b452d..0a459d4e712 100644
--- a/srcpkgs/perl-Object-MultiType/template
+++ b/srcpkgs/perl-Object-MultiType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-MultiType
 version=0.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-Realize-Later/template b/srcpkgs/perl-Object-Realize-Later/template
index 51682d45083..6aa801950c7 100644
--- a/srcpkgs/perl-Object-Realize-Later/template
+++ b/srcpkgs/perl-Object-Realize-Later/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-Realize-Later
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PDF-API2/template b/srcpkgs/perl-PDF-API2/template
index 076c45b88ec..b8169a27809 100644
--- a/srcpkgs/perl-PDF-API2/template
+++ b/srcpkgs/perl-PDF-API2/template
@@ -2,7 +2,6 @@
 pkgname=perl-PDF-API2
 version=2.037
 revision=1
-archs=noarch
 wrksrc="PDF-API2-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-POSIX-strftime-Compiler/template b/srcpkgs/perl-POSIX-strftime-Compiler/template
index 6b68d220377..5b9eff0e86a 100644
--- a/srcpkgs/perl-POSIX-strftime-Compiler/template
+++ b/srcpkgs/perl-POSIX-strftime-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-POSIX-strftime-Compiler
 version=0.44
 revision=1
-archs=noarch
 wrksrc="POSIX-strftime-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-PPR/template b/srcpkgs/perl-PPR/template
index bc7165f468a..2ed7e88c560 100644
--- a/srcpkgs/perl-PPR/template
+++ b/srcpkgs/perl-PPR/template
@@ -2,7 +2,6 @@
 pkgname=perl-PPR
 version=0.000028
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope"
diff --git a/srcpkgs/perl-Package-DeprecationManager/template b/srcpkgs/perl-Package-DeprecationManager/template
index 9e4cf28789d..6a5d31909f1 100644
--- a/srcpkgs/perl-Package-DeprecationManager/template
+++ b/srcpkgs/perl-Package-DeprecationManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-DeprecationManager
 version=0.17
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Package-Stash/template b/srcpkgs/perl-Package-Stash/template
index 4b021644ae0..9a17b5d6bc0 100644
--- a/srcpkgs/perl-Package-Stash/template
+++ b/srcpkgs/perl-Package-Stash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-Stash
 version=0.38
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Dist-CheckConflicts"
diff --git a/srcpkgs/perl-Parallel-ForkManager/template b/srcpkgs/perl-Parallel-ForkManager/template
index ba0d496c36f..e0195f5ddbf 100644
--- a/srcpkgs/perl-Parallel-ForkManager/template
+++ b/srcpkgs/perl-Parallel-ForkManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parallel-ForkManager
 version=2.02
 revision=1
-archs=noarch
 wrksrc="Parallel-ForkManager-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Params-ValidationCompiler/template b/srcpkgs/perl-Params-ValidationCompiler/template
index 79331a19c2d..a3e5a189a72 100644
--- a/srcpkgs/perl-Params-ValidationCompiler/template
+++ b/srcpkgs/perl-Params-ValidationCompiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Params-ValidationCompiler
 version=0.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-CPAN-Meta/template b/srcpkgs/perl-Parse-CPAN-Meta/template
index 7f2a04132a2..0463d20ca47 100644
--- a/srcpkgs/perl-Parse-CPAN-Meta/template
+++ b/srcpkgs/perl-Parse-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-CPAN-Meta
 version=1.4422
 revision=2
-archs=noarch
 wrksrc="Parse-CPAN-Meta-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-PMFile/template b/srcpkgs/perl-Parse-PMFile/template
index 3d406c6d5c3..5090b138072 100644
--- a/srcpkgs/perl-Parse-PMFile/template
+++ b/srcpkgs/perl-Parse-PMFile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-PMFile
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-MakeMaker-CPANfile perl-Module-CPANfile"
diff --git a/srcpkgs/perl-Parse-RecDescent/template b/srcpkgs/perl-Parse-RecDescent/template
index 272fe0008b6..d8236b57ce9 100644
--- a/srcpkgs/perl-Parse-RecDescent/template
+++ b/srcpkgs/perl-Parse-RecDescent/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-RecDescent
 version=1.967015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-Yapp/template b/srcpkgs/perl-Parse-Yapp/template
index bd200ede930..593310b30cf 100644
--- a/srcpkgs/perl-Parse-Yapp/template
+++ b/srcpkgs/perl-Parse-Yapp/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-Yapp
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PatchReader/template b/srcpkgs/perl-PatchReader/template
index 51cd3172766..f92209bfd06 100644
--- a/srcpkgs/perl-PatchReader/template
+++ b/srcpkgs/perl-PatchReader/template
@@ -2,7 +2,6 @@
 pkgname=perl-PatchReader
 version=0.9.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Path-Tiny/template b/srcpkgs/perl-Path-Tiny/template
index 6db01f7ff4e..c81538f8fbd 100644
--- a/srcpkgs/perl-Path-Tiny/template
+++ b/srcpkgs/perl-Path-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Path-Tiny
 version=0.114
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Pegex/template b/srcpkgs/perl-Pegex/template
index b1ae1eef38f..c6531608145 100644
--- a/srcpkgs/perl-Pegex/template
+++ b/srcpkgs/perl-Pegex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pegex
 version=0.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Plack-Middleware-Deflater/template b/srcpkgs/perl-Plack-Middleware-Deflater/template
index c18fa1932bd..64e97653d56 100644
--- a/srcpkgs/perl-Plack-Middleware-Deflater/template
+++ b/srcpkgs/perl-Plack-Middleware-Deflater/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Plack-Middleware-Deflater"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-Deflater-${version}.tar.gz"
 checksum=28da95e7da4c8b5591ac454509c92176cd0842960ce074fde30f9a1075dcc275
-archs=noarch
diff --git a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
index 3c120a2ce23..4187eaf1bd3 100644
--- a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
+++ b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Plack-Middleware-ReverseProxy"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-ReverseProxy-${version}.tar.gz"
 checksum=874931d37d07667ba0d0f37903b94511071f4191feb73fa45765da2b8c15a128
-archs="noarch"
diff --git a/srcpkgs/perl-Plack/template b/srcpkgs/perl-Plack/template
index 6954a1eccc1..b0893d9875d 100644
--- a/srcpkgs/perl-Plack/template
+++ b/srcpkgs/perl-Plack/template
@@ -18,4 +18,3 @@ homepage="https://metacpan.org/release/Plack"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-${version}.tar.gz"
 checksum=322c93f5acc0a0f0e11fd4a76188f978bdc14338a9f1df3ae535227017046561
-archs=noarch
diff --git a/srcpkgs/perl-Pod-Coverage/template b/srcpkgs/perl-Pod-Coverage/template
index 6202ae090fc..50545eed804 100644
--- a/srcpkgs/perl-Pod-Coverage/template
+++ b/srcpkgs/perl-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Coverage
 version=0.23
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-Symdump"
diff --git a/srcpkgs/perl-Pod-Simple-Text-Termcap/template b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
index 65fcd4aa738..7df35f1e433 100644
--- a/srcpkgs/perl-Pod-Simple-Text-Termcap/template
+++ b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Simple-Text-Termcap
 version=0.01
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Probe-Perl/template b/srcpkgs/perl-Probe-Perl/template
index 673236a744c..cef72577248 100644
--- a/srcpkgs/perl-Probe-Perl/template
+++ b/srcpkgs/perl-Probe-Perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Probe-Perl
 version=0.03
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Daemontools/template b/srcpkgs/perl-Proc-Daemontools/template
index ded05432e82..c4979387c25 100644
--- a/srcpkgs/perl-Proc-Daemontools/template
+++ b/srcpkgs/perl-Proc-Daemontools/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Daemontools
 version=1.06
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Govern/template b/srcpkgs/perl-Proc-Govern/template
index 5b999a8099e..910bd8a0be7 100644
--- a/srcpkgs/perl-Proc-Govern/template
+++ b/srcpkgs/perl-Proc-Govern/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Govern
 version=0.209
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-PID-File/template b/srcpkgs/perl-Proc-PID-File/template
index c0a1929f98c..40b10ab049a 100644
--- a/srcpkgs/perl-Proc-PID-File/template
+++ b/srcpkgs/perl-Proc-PID-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-PID-File
 version=1.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Readonly/template b/srcpkgs/perl-Readonly/template
index fafb9a80950..d6a5e85c73d 100644
--- a/srcpkgs/perl-Readonly/template
+++ b/srcpkgs/perl-Readonly/template
@@ -2,7 +2,6 @@
 pkgname=perl-Readonly
 version=2.05
 revision=2
-archs=noarch
 wrksrc="Readonly-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Ref-Util/template b/srcpkgs/perl-Ref-Util/template
index 2b6acde1820..66a77e571ab 100644
--- a/srcpkgs/perl-Ref-Util/template
+++ b/srcpkgs/perl-Ref-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Ref-Util
 version=0.204
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Common/template b/srcpkgs/perl-Regexp-Common/template
index 0a8ef2222cb..6b9d253162b 100644
--- a/srcpkgs/perl-Regexp-Common/template
+++ b/srcpkgs/perl-Regexp-Common/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Common
 version=2017060201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Grammars/template b/srcpkgs/perl-Regexp-Grammars/template
index cae12ff654b..761e58df7ff 100644
--- a/srcpkgs/perl-Regexp-Grammars/template
+++ b/srcpkgs/perl-Regexp-Grammars/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Grammars
 version=1.057
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Reply/template b/srcpkgs/perl-Reply/template
index 8dc0d7fb756..64a4341d012 100644
--- a/srcpkgs/perl-Reply/template
+++ b/srcpkgs/perl-Reply/template
@@ -2,7 +2,6 @@
 pkgname=perl-Reply
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-LexAlias perl-Eval-Closure perl-Package-Stash perl-PadWalker perl-Term-ReadLine-Gnu perl-Try-Tiny perl-File-HomeDir perl-Config-INI-Reader-Ordered"
diff --git a/srcpkgs/perl-Role-Tiny/template b/srcpkgs/perl-Role-Tiny/template
index 7eb125fbd4e..a51bd0ec025 100644
--- a/srcpkgs/perl-Role-Tiny/template
+++ b/srcpkgs/perl-Role-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Role-Tiny
 version=2.001004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SGMLSpm/template b/srcpkgs/perl-SGMLSpm/template
index e1f9ac69878..2ece0a3567e 100644
--- a/srcpkgs/perl-SGMLSpm/template
+++ b/srcpkgs/perl-SGMLSpm/template
@@ -4,7 +4,6 @@ version=1.1
 revision=1
 wrksrc=${pkgname/perl-/}-${version}
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-SOAP-Lite/template b/srcpkgs/perl-SOAP-Lite/template
index e74a27a0497..e0382bf0464 100644
--- a/srcpkgs/perl-SOAP-Lite/template
+++ b/srcpkgs/perl-SOAP-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-SOAP-Lite
 version=1.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SUPER/template b/srcpkgs/perl-SUPER/template
index 1b11e76b38e..89c9f219f55 100644
--- a/srcpkgs/perl-SUPER/template
+++ b/srcpkgs/perl-SUPER/template
@@ -2,7 +2,6 @@
 pkgname=perl-SUPER
 version=1.20190531
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Scope-Guard/template b/srcpkgs/perl-Scope-Guard/template
index f17c470e784..85a5038e0c0 100644
--- a/srcpkgs/perl-Scope-Guard/template
+++ b/srcpkgs/perl-Scope-Guard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Scope-Guard
 version=0.21
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Set-IntSpan/template b/srcpkgs/perl-Set-IntSpan/template
index 681aa0b1386..f6565cf8ce3 100644
--- a/srcpkgs/perl-Set-IntSpan/template
+++ b/srcpkgs/perl-Set-IntSpan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Set-IntSpan
 version=1.19
 revision=2
-archs=noarch
 wrksrc="Set-IntSpan-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Naturally/template b/srcpkgs/perl-Sort-Naturally/template
index 11cfb97cfe4..a621922cdc4 100644
--- a/srcpkgs/perl-Sort-Naturally/template
+++ b/srcpkgs/perl-Sort-Naturally/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Naturally
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Versions/template b/srcpkgs/perl-Sort-Versions/template
index 292e0def8ea..97efedd9fa6 100644
--- a/srcpkgs/perl-Sort-Versions/template
+++ b/srcpkgs/perl-Sort-Versions/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Versions
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Specio/template b/srcpkgs/perl-Specio/template
index 22fc22f79e8..353cd58a5fe 100644
--- a/srcpkgs/perl-Specio/template
+++ b/srcpkgs/perl-Specio/template
@@ -2,7 +2,6 @@
 pkgname=perl-Specio
 version=0.46
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spiffy/template b/srcpkgs/perl-Spiffy/template
index 4412ade6858..d2ae23c5386 100644
--- a/srcpkgs/perl-Spiffy/template
+++ b/srcpkgs/perl-Spiffy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spiffy
 version=0.46
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseExcel/template b/srcpkgs/perl-Spreadsheet-ParseExcel/template
index 748f157113a..c5449492a99 100644
--- a/srcpkgs/perl-Spreadsheet-ParseExcel/template
+++ b/srcpkgs/perl-Spreadsheet-ParseExcel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseExcel
 version=0.65
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseXLSX/template b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
index 189c47dd66b..da0e9fa9e7f 100644
--- a/srcpkgs/perl-Spreadsheet-ParseXLSX/template
+++ b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseXLSX
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Stow/template b/srcpkgs/perl-Stow/template
index 9ed2a52ed93..c52f0ec06cd 100644
--- a/srcpkgs/perl-Stow/template
+++ b/srcpkgs/perl-Stow/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stow
 version=2.3.1
 revision=1
-archs=noarch
 wrksrc="Stow-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Output perl-IO-stringy"
diff --git a/srcpkgs/perl-Stream-Buffered/template b/srcpkgs/perl-Stream-Buffered/template
index d872e01d511..ed0566b75d7 100644
--- a/srcpkgs/perl-Stream-Buffered/template
+++ b/srcpkgs/perl-Stream-Buffered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stream-Buffered
 version=0.03
 revision=2
-archs=noarch
 wrksrc="Stream-Buffered-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-Escape/template b/srcpkgs/perl-String-Escape/template
index f33bacae2a8..d62b712adf1 100644
--- a/srcpkgs/perl-String-Escape/template
+++ b/srcpkgs/perl-String-Escape/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-Escape
 version=2010.002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-ShellQuote/template b/srcpkgs/perl-String-ShellQuote/template
index 7992c6bfd54..0620e27d55e 100644
--- a/srcpkgs/perl-String-ShellQuote/template
+++ b/srcpkgs/perl-String-ShellQuote/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-ShellQuote
 version=1.04
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Delete/template b/srcpkgs/perl-Sub-Delete/template
index f57c5ceee74..b93395a327f 100644
--- a/srcpkgs/perl-Sub-Delete/template
+++ b/srcpkgs/perl-Sub-Delete/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Delete
 version=1.00002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter-Progressive/template b/srcpkgs/perl-Sub-Exporter-Progressive/template
index ba7ff3325fd..ca3735cf30d 100644
--- a/srcpkgs/perl-Sub-Exporter-Progressive/template
+++ b/srcpkgs/perl-Sub-Exporter-Progressive/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter-Progressive
 version=0.001013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter/template b/srcpkgs/perl-Sub-Exporter/template
index 580e244d5bf..fd7835fa11b 100644
--- a/srcpkgs/perl-Sub-Exporter/template
+++ b/srcpkgs/perl-Sub-Exporter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter
 version=0.987
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Info/template b/srcpkgs/perl-Sub-Info/template
index 6026d8f5bf2..b92e7492406 100644
--- a/srcpkgs/perl-Sub-Info/template
+++ b/srcpkgs/perl-Sub-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Info
 version=0.002
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Install/template b/srcpkgs/perl-Sub-Install/template
index ef853d0d7fd..9515c5147a4 100644
--- a/srcpkgs/perl-Sub-Install/template
+++ b/srcpkgs/perl-Sub-Install/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Install
 version=0.928
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Quote/template b/srcpkgs/perl-Sub-Quote/template
index 1ab6d42ec20..8f0f784f114 100644
--- a/srcpkgs/perl-Sub-Quote/template
+++ b/srcpkgs/perl-Sub-Quote/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Quote
 version=2.006006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Uplevel/template b/srcpkgs/perl-Sub-Uplevel/template
index 5986ba70ba7..eddf582a4e3 100644
--- a/srcpkgs/perl-Sub-Uplevel/template
+++ b/srcpkgs/perl-Sub-Uplevel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Uplevel
 version=0.2800
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Svsh/template b/srcpkgs/perl-Svsh/template
index 06a7bfa948e..c70cb1572d4 100644
--- a/srcpkgs/perl-Svsh/template
+++ b/srcpkgs/perl-Svsh/template
@@ -2,7 +2,6 @@
 pkgname=perl-Svsh
 version=1.002000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sys-Syscall/template b/srcpkgs/perl-Sys-Syscall/template
index cdcc58dc479..564b0dab0eb 100644
--- a/srcpkgs/perl-Sys-Syscall/template
+++ b/srcpkgs/perl-Sys-Syscall/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sys-Syscall
 version=0.25
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Animation/template b/srcpkgs/perl-Term-Animation/template
index 3341a3eab6c..bfe5c34c8dc 100644
--- a/srcpkgs/perl-Term-Animation/template
+++ b/srcpkgs/perl-Term-Animation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Animation
 version=2.6
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Curses"
diff --git a/srcpkgs/perl-Term-ExtendedColor/template b/srcpkgs/perl-Term-ExtendedColor/template
index 971fc6ffbd0..b4936d810ce 100644
--- a/srcpkgs/perl-Term-ExtendedColor/template
+++ b/srcpkgs/perl-Term-ExtendedColor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ExtendedColor
 version=0.504
 revision=1
-archs=noarch
 wrksrc="Term-ExtendedColor-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-ShellUI/template b/srcpkgs/perl-Term-ShellUI/template
index f5d77d801db..dfd12fc0ba4 100644
--- a/srcpkgs/perl-Term-ShellUI/template
+++ b/srcpkgs/perl-Term-ShellUI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ShellUI
 version=0.92
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Table/template b/srcpkgs/perl-Term-Table/template
index 0934b654d5a..e2a14a69a6a 100644
--- a/srcpkgs/perl-Term-Table/template
+++ b/srcpkgs/perl-Term-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Table
 version=0.015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Base/template b/srcpkgs/perl-Test-Base/template
index 9eef8acf384..dd7e15cc716 100644
--- a/srcpkgs/perl-Test-Base/template
+++ b/srcpkgs/perl-Test-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Base
 version=0.89
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-CPAN-Meta/template b/srcpkgs/perl-Test-CPAN-Meta/template
index 3c21325b9e1..694b3b17142 100644
--- a/srcpkgs/perl-Test-CPAN-Meta/template
+++ b/srcpkgs/perl-Test-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-CPAN-Meta
 version=0.25
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Class/template b/srcpkgs/perl-Test-Class/template
index 1b60133766e..aeff642718d 100644
--- a/srcpkgs/perl-Test-Class/template
+++ b/srcpkgs/perl-Test-Class/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Class
 version=0.50
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Cmd/template b/srcpkgs/perl-Test-Cmd/template
index aa4e8c68a7c..b667845728b 100644
--- a/srcpkgs/perl-Test-Cmd/template
+++ b/srcpkgs/perl-Test-Cmd/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Cmd
 version=1.09
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Command/template b/srcpkgs/perl-Test-Command/template
index 2232d4c1d82..3b42a6f14eb 100644
--- a/srcpkgs/perl-Test-Command/template
+++ b/srcpkgs/perl-Test-Command/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Command
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Deep/template b/srcpkgs/perl-Test-Deep/template
index 6bde21fc2ff..a8127d43469 100644
--- a/srcpkgs/perl-Test-Deep/template
+++ b/srcpkgs/perl-Test-Deep/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Deep
 version=1.130
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Differences/template b/srcpkgs/perl-Test-Differences/template
index b65ac242d0c..1fed4aa2222 100644
--- a/srcpkgs/perl-Test-Differences/template
+++ b/srcpkgs/perl-Test-Differences/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Differences
 version=0.67
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Diff"
diff --git a/srcpkgs/perl-Test-DistManifest/template b/srcpkgs/perl-Test-DistManifest/template
index 31d92ee2296..da092b7a3c5 100644
--- a/srcpkgs/perl-Test-DistManifest/template
+++ b/srcpkgs/perl-Test-DistManifest/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-DistManifest
 version=1.014
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Test-NoWarnings perl-Module-Manifest"
diff --git a/srcpkgs/perl-Test-Exception/template b/srcpkgs/perl-Test-Exception/template
index 6fe7eec0c4a..e66c8fc81ac 100644
--- a/srcpkgs/perl-Test-Exception/template
+++ b/srcpkgs/perl-Test-Exception/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Exception
 version=0.43
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Sub-Uplevel"
diff --git a/srcpkgs/perl-Test-FailWarnings/template b/srcpkgs/perl-Test-FailWarnings/template
index e3fdb4ab06e..d585bd9b896 100644
--- a/srcpkgs/perl-Test-FailWarnings/template
+++ b/srcpkgs/perl-Test-FailWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-FailWarnings
 version=0.008
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Fatal/template b/srcpkgs/perl-Test-Fatal/template
index e67737a383d..e467fb12fb2 100644
--- a/srcpkgs/perl-Test-Fatal/template
+++ b/srcpkgs/perl-Test-Fatal/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Fatal
 version=0.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File-ShareDir/template b/srcpkgs/perl-Test-File-ShareDir/template
index 6dd421ddbde..75ff5004ffb 100644
--- a/srcpkgs/perl-Test-File-ShareDir/template
+++ b/srcpkgs/perl-Test-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File-ShareDir
 version=1.001002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File/template b/srcpkgs/perl-Test-File/template
index 08d104ca38a..7206a9d5d8a 100644
--- a/srcpkgs/perl-Test-File/template
+++ b/srcpkgs/perl-Test-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File
 version=1.443
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-HTTP-Server-Simple/template b/srcpkgs/perl-Test-HTTP-Server-Simple/template
index a9ea7150716..215be3be929 100644
--- a/srcpkgs/perl-Test-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-Test-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-HTTP-Server-Simple
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Inter/template b/srcpkgs/perl-Test-Inter/template
index 321f710da5f..f43818096b0 100644
--- a/srcpkgs/perl-Test-Inter/template
+++ b/srcpkgs/perl-Test-Inter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Inter
 version=1.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Find-Rule"
diff --git a/srcpkgs/perl-Test-MockModule/template b/srcpkgs/perl-Test-MockModule/template
index 23acd60fdb8..1d7a8e5b1c3 100644
--- a/srcpkgs/perl-Test-MockModule/template
+++ b/srcpkgs/perl-Test-MockModule/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-MockModule
 version=0.172.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Test-Most/template b/srcpkgs/perl-Test-Most/template
index 6a9db439290..532381fa8ee 100644
--- a/srcpkgs/perl-Test-Most/template
+++ b/srcpkgs/perl-Test-Most/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Most
 version=0.37
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Needs/template b/srcpkgs/perl-Test-Needs/template
index e5c81edc3ac..5e54b40b06c 100644
--- a/srcpkgs/perl-Test-Needs/template
+++ b/srcpkgs/perl-Test-Needs/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Needs
 version=0.002006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-NoWarnings/template b/srcpkgs/perl-Test-NoWarnings/template
index 96e81fec90f..fd15cd958a0 100644
--- a/srcpkgs/perl-Test-NoWarnings/template
+++ b/srcpkgs/perl-Test-NoWarnings/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Test::NoWarnings - Make sure you did not emit warnings while testing.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-NoWarnings"
diff --git a/srcpkgs/perl-Test-Output/template b/srcpkgs/perl-Test-Output/template
index df03ea4add2..5a625bee5f3 100644
--- a/srcpkgs/perl-Test-Output/template
+++ b/srcpkgs/perl-Test-Output/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Output
 version=1.031
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Pod-Coverage/template b/srcpkgs/perl-Test-Pod-Coverage/template
index a752e59d35d..19cb1a8f2f9 100644
--- a/srcpkgs/perl-Test-Pod-Coverage/template
+++ b/srcpkgs/perl-Test-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Pod-Coverage
 version=1.10
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Pod-Coverage"
diff --git a/srcpkgs/perl-Test-Pod/template b/srcpkgs/perl-Test-Pod/template
index c34f8ea27df..cbfd3ff23c2 100644
--- a/srcpkgs/perl-Test-Pod/template
+++ b/srcpkgs/perl-Test-Pod/template
@@ -12,4 +12,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Test-Pod"
 distfiles="${CPAN_SITE}/Test/Test-Pod-${version}.tar.gz"
 checksum=60a8dbcc60168bf1daa5cc2350236df9343e9878f4ab9830970a5dde6fe8e5fc
-archs=noarch
diff --git a/srcpkgs/perl-Test-Requires/template b/srcpkgs/perl-Test-Requires/template
index 64ffb6664b7..8e8818008b7 100644
--- a/srcpkgs/perl-Test-Requires/template
+++ b/srcpkgs/perl-Test-Requires/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Requires
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-RequiresInternet/template b/srcpkgs/perl-Test-RequiresInternet/template
index 69d8f515348..075072dee81 100644
--- a/srcpkgs/perl-Test-RequiresInternet/template
+++ b/srcpkgs/perl-Test-RequiresInternet/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-RequiresInternet
 version=0.05
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Script/template b/srcpkgs/perl-Test-Script/template
index 3dc87e44f2f..ae1409a00ae 100644
--- a/srcpkgs/perl-Test-Script/template
+++ b/srcpkgs/perl-Test-Script/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Script
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Probe-Perl perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Test-SharedFork/template b/srcpkgs/perl-Test-SharedFork/template
index b975ff0ecc3..66b02b46b37 100644
--- a/srcpkgs/perl-Test-SharedFork/template
+++ b/srcpkgs/perl-Test-SharedFork/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-SharedFork
 version=0.35
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Simple/template b/srcpkgs/perl-Test-Simple/template
index 963b288dc55..daa105b57de 100644
--- a/srcpkgs/perl-Test-Simple/template
+++ b/srcpkgs/perl-Test-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Simple
 version=1.302175
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Subroutines/template b/srcpkgs/perl-Test-Subroutines/template
index acfd9da0cd8..316a27b3ab7 100644
--- a/srcpkgs/perl-Test-Subroutines/template
+++ b/srcpkgs/perl-Test-Subroutines/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Subroutines
 version=1.113350
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-TCP/template b/srcpkgs/perl-Test-TCP/template
index 31caea2c412..48ff54b37a0 100644
--- a/srcpkgs/perl-Test-TCP/template
+++ b/srcpkgs/perl-Test-TCP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-TCP
 version=2.22
 revision=1
-archs=noarch
 wrksrc="Test-TCP-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Time/template b/srcpkgs/perl-Test-Time/template
index 5af68205289..7f65a8e54e2 100644
--- a/srcpkgs/perl-Test-Time/template
+++ b/srcpkgs/perl-Test-Time/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Time
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Trap/template b/srcpkgs/perl-Test-Trap/template
index 79e8b842023..108e7c6e2d3 100644
--- a/srcpkgs/perl-Test-Trap/template
+++ b/srcpkgs/perl-Test-Trap/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Data-Dump"
 makedepends="$hostmakedepends"
 depends="$hostmakedepends"
-archs=noarch
 short_desc='Test::Trap - Trap exit codes, exceptions, output, etc.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-Trap"
diff --git a/srcpkgs/perl-Test-UseAllModules/template b/srcpkgs/perl-Test-UseAllModules/template
index 1205fc0be5d..003c510ec78 100644
--- a/srcpkgs/perl-Test-UseAllModules/template
+++ b/srcpkgs/perl-Test-UseAllModules/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Test-UseAllModules"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Test/Test-UseAllModules-${version}.tar.gz"
 checksum=a71f2fe8b96ab8bfc2760aa1d3135ea049a5b20dcb105457b769a1195c7a2509
-archs=noarch
diff --git a/srcpkgs/perl-Test-Warn/template b/srcpkgs/perl-Test-Warn/template
index 174a5303531..a643e723110 100644
--- a/srcpkgs/perl-Test-Warn/template
+++ b/srcpkgs/perl-Test-Warn/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warn
 version=0.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Warnings/template b/srcpkgs/perl-Test-Warnings/template
index 465830261d6..988e26c5ae4 100644
--- a/srcpkgs/perl-Test-Warnings/template
+++ b/srcpkgs/perl-Test-Warnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warnings
 version=0.030
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Weaken/template b/srcpkgs/perl-Test-Weaken/template
index f336b5a09b6..6cfef3bf09a 100644
--- a/srcpkgs/perl-Test-Weaken/template
+++ b/srcpkgs/perl-Test-Weaken/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Weaken
 version=3.022000
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Without-Module/template b/srcpkgs/perl-Test-Without-Module/template
index 662a2293596..f869abe5d61 100644
--- a/srcpkgs/perl-Test-Without-Module/template
+++ b/srcpkgs/perl-Test-Without-Module/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Without-Module
 version=0.20
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-YAML/template b/srcpkgs/perl-Test-YAML/template
index 21f167214ef..a4c1e3c1389 100644
--- a/srcpkgs/perl-Test-YAML/template
+++ b/srcpkgs/perl-Test-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-YAML
 version=1.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-utf8/template b/srcpkgs/perl-Test-utf8/template
index 3b331fae4ec..56e18704f89 100644
--- a/srcpkgs/perl-Test-utf8/template
+++ b/srcpkgs/perl-Test-utf8/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-utf8
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Plugin-NoWarnings/template b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
index 45501cb5757..31813c6a98e 100644
--- a/srcpkgs/perl-Test2-Plugin-NoWarnings/template
+++ b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Plugin-NoWarnings
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Suite/template b/srcpkgs/perl-Test2-Suite/template
index 57ac88d0ff6..82813453486 100644
--- a/srcpkgs/perl-Test2-Suite/template
+++ b/srcpkgs/perl-Test2-Suite/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Suite
 version=0.000129
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-ASCIITable/template b/srcpkgs/perl-Text-ASCIITable/template
index c9cde14602c..3250aa44596 100644
--- a/srcpkgs/perl-Text-ASCIITable/template
+++ b/srcpkgs/perl-Text-ASCIITable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-ASCIITable
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Text-Aligner/template b/srcpkgs/perl-Text-Aligner/template
index d2c819ffc37..fcecd066492 100644
--- a/srcpkgs/perl-Text-Aligner/template
+++ b/srcpkgs/perl-Text-Aligner/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Aligner
 version=0.16
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Autoformat/template b/srcpkgs/perl-Text-Autoformat/template
index 38486635f16..d154567480e 100644
--- a/srcpkgs/perl-Text-Autoformat/template
+++ b/srcpkgs/perl-Text-Autoformat/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Autoformat
 version=1.75
 revision=1
-archs=noarch
 wrksrc="Text-Autoformat-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Reform"
diff --git a/srcpkgs/perl-Text-CSV/template b/srcpkgs/perl-Text-CSV/template
index b5a7d98cca5..20fa46051ac 100644
--- a/srcpkgs/perl-Text-CSV/template
+++ b/srcpkgs/perl-Text-CSV/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-CSV
 version=2.00
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Diff/template b/srcpkgs/perl-Text-Diff/template
index 9867a6ea528..73f9054c0d9 100644
--- a/srcpkgs/perl-Text-Diff/template
+++ b/srcpkgs/perl-Text-Diff/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Algorithm-Diff"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Text::Diff - Perform diffs on files and record sets'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Text-Diff"
diff --git a/srcpkgs/perl-Text-Glob/template b/srcpkgs/perl-Text-Glob/template
index cfe57391caf..3d4a030dd06 100644
--- a/srcpkgs/perl-Text-Glob/template
+++ b/srcpkgs/perl-Text-Glob/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Glob
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Markdown/template b/srcpkgs/perl-Text-Markdown/template
index 753ace32d12..300414f4746 100644
--- a/srcpkgs/perl-Text-Markdown/template
+++ b/srcpkgs/perl-Text-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Markdown
 version=1.000031
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Reform/template b/srcpkgs/perl-Text-Reform/template
index dd1b6b62268..9cd9582f468 100644
--- a/srcpkgs/perl-Text-Reform/template
+++ b/srcpkgs/perl-Text-Reform/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Reform
 version=1.20
 revision=2
-archs=noarch
 wrksrc="Text-Reform-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Roman/template b/srcpkgs/perl-Text-Roman/template
index 80d0865b293..a5d09c1287b 100644
--- a/srcpkgs/perl-Text-Roman/template
+++ b/srcpkgs/perl-Text-Roman/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Roman
 version=3.5
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Table/template b/srcpkgs/perl-Text-Table/template
index 4f74932bfe9..ed02ceae69e 100644
--- a/srcpkgs/perl-Text-Table/template
+++ b/srcpkgs/perl-Text-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Table
 version=1.134
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Unidecode/template b/srcpkgs/perl-Text-Unidecode/template
index 220aa563058..ed3ecd863ac 100644
--- a/srcpkgs/perl-Text-Unidecode/template
+++ b/srcpkgs/perl-Text-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Unidecode
 version=1.30
 revision=1
-archs=noarch
 wrksrc="Text-Unidecode-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-WrapI18N/template b/srcpkgs/perl-Text-WrapI18N/template
index b356989f72c..89897a18bbe 100644
--- a/srcpkgs/perl-Text-WrapI18N/template
+++ b/srcpkgs/perl-Text-WrapI18N/template
@@ -4,7 +4,6 @@ version=0.06
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl perl-Text-CharWidth"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-Text-XLogfile/template b/srcpkgs/perl-Text-XLogfile/template
index 6cc929a6493..893e5ff0710 100644
--- a/srcpkgs/perl-Text-XLogfile/template
+++ b/srcpkgs/perl-Text-XLogfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-XLogfile
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Cycle/template b/srcpkgs/perl-Tie-Cycle/template
index 5010b16ec37..35e968852cd 100644
--- a/srcpkgs/perl-Tie-Cycle/template
+++ b/srcpkgs/perl-Tie-Cycle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Cycle
 version=1.225
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Handle-Offset/template b/srcpkgs/perl-Tie-Handle-Offset/template
index 88e4298951d..fd4aa1745fa 100644
--- a/srcpkgs/perl-Tie-Handle-Offset/template
+++ b/srcpkgs/perl-Tie-Handle-Offset/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Handle-Offset
 version=0.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-IxHash/template b/srcpkgs/perl-Tie-IxHash/template
index 9d926ee407e..4fb6114ce42 100644
--- a/srcpkgs/perl-Tie-IxHash/template
+++ b/srcpkgs/perl-Tie-IxHash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-IxHash
 version=1.23
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-Duration/template b/srcpkgs/perl-Time-Duration/template
index 686edca3d76..23fa2c1e0ee 100644
--- a/srcpkgs/perl-Time-Duration/template
+++ b/srcpkgs/perl-Time-Duration/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-Duration
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-modules/template b/srcpkgs/perl-Time-modules/template
index 0bd579a552a..c79a85f112d 100644
--- a/srcpkgs/perl-Time-modules/template
+++ b/srcpkgs/perl-Time-modules/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-modules
 version=2013.0912
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-TimeDate/template b/srcpkgs/perl-TimeDate/template
index d4614cb2855..ffde91659cd 100644
--- a/srcpkgs/perl-TimeDate/template
+++ b/srcpkgs/perl-TimeDate/template
@@ -2,7 +2,6 @@
 pkgname=perl-TimeDate
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tree-DAG_Node/template b/srcpkgs/perl-Tree-DAG_Node/template
index 54039240222..5e269fdb381 100644
--- a/srcpkgs/perl-Tree-DAG_Node/template
+++ b/srcpkgs/perl-Tree-DAG_Node/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-File-Slurp-Tiny"
 depends="${makedepends}"
-archs=noarch
 short_desc="Tree::DAG_Node - An N-ary tree"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/Tree-DAG_Node"
diff --git a/srcpkgs/perl-Try-Tiny/template b/srcpkgs/perl-Try-Tiny/template
index 0d80bce773c..3cd203ebb79 100644
--- a/srcpkgs/perl-Try-Tiny/template
+++ b/srcpkgs/perl-Try-Tiny/template
@@ -14,7 +14,6 @@ homepage="https://metacpan.org/release/Try-Tiny"
 license="MIT"
 distfiles="${CPAN_SITE}/XML/ETHER/Try-Tiny-${version}.tar.gz"
 checksum=da5bd0d5c903519bbf10bb9ba0cb7bcac0563882bcfe4503aee3fb143eddef6b
-archs=noarch
 
 post_install() {
 	vlicense LICENCE LICENSE
diff --git a/srcpkgs/perl-Types-Serialiser/template b/srcpkgs/perl-Types-Serialiser/template
index 8946b5040f1..dd496b881ba 100644
--- a/srcpkgs/perl-Types-Serialiser/template
+++ b/srcpkgs/perl-Types-Serialiser/template
@@ -2,7 +2,6 @@
 pkgname=perl-Types-Serialiser
 version=1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-URI/template b/srcpkgs/perl-URI/template
index 825be5c78fd..6cc6fce1a26 100644
--- a/srcpkgs/perl-URI/template
+++ b/srcpkgs/perl-URI/template
@@ -2,7 +2,6 @@
 pkgname=perl-URI
 version=1.76
 revision=1
-archs=noarch
 wrksrc="URI-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unicode-Tussle/template b/srcpkgs/perl-Unicode-Tussle/template
index 69503663e56..883dedfb1d0 100644
--- a/srcpkgs/perl-Unicode-Tussle/template
+++ b/srcpkgs/perl-Unicode-Tussle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unicode-Tussle
 version=1.111
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unix-Uptime/template b/srcpkgs/perl-Unix-Uptime/template
index 0c9454e3374..c522917d6f3 100644
--- a/srcpkgs/perl-Unix-Uptime/template
+++ b/srcpkgs/perl-Unix-Uptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unix-Uptime
 version=0.4000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-User-Identity/template b/srcpkgs/perl-User-Identity/template
index 53b43af710f..7a0e453bfb2 100644
--- a/srcpkgs/perl-User-Identity/template
+++ b/srcpkgs/perl-User-Identity/template
@@ -2,7 +2,6 @@
 pkgname=perl-User-Identity
 version=0.99
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WL/template b/srcpkgs/perl-WL/template
index 0f5fdbfe394..0553c2ea3e8 100644
--- a/srcpkgs/perl-WL/template
+++ b/srcpkgs/perl-WL/template
@@ -2,7 +2,6 @@
 pkgname=perl-WL
 version=0.92
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Form-UrlEncoded/template b/srcpkgs/perl-WWW-Form-UrlEncoded/template
index ccda0fc7384..e49fd8526d2 100644
--- a/srcpkgs/perl-WWW-Form-UrlEncoded/template
+++ b/srcpkgs/perl-WWW-Form-UrlEncoded/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Form-UrlEncoded
 version=0.26
 revision=1
-archs=noarch
 wrksrc="WWW-Form-UrlEncoded-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Mechanize/template b/srcpkgs/perl-WWW-Mechanize/template
index 6e00152f672..cd39fd9dc92 100644
--- a/srcpkgs/perl-WWW-Mechanize/template
+++ b/srcpkgs/perl-WWW-Mechanize/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Mechanize
 version=2.00
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-CGI perl-HTML-Form perl-HTML-Tree
diff --git a/srcpkgs/perl-WWW-RobotRules/template b/srcpkgs/perl-WWW-RobotRules/template
index c21656741a3..3c3b3c925e4 100644
--- a/srcpkgs/perl-WWW-RobotRules/template
+++ b/srcpkgs/perl-WWW-RobotRules/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-RobotRules
 version=6.02
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WebService-MusicBrainz/template b/srcpkgs/perl-WebService-MusicBrainz/template
index a4d281f6c13..4755a1d2c6b 100644
--- a/srcpkgs/perl-WebService-MusicBrainz/template
+++ b/srcpkgs/perl-WebService-MusicBrainz/template
@@ -2,7 +2,6 @@
 pkgname=perl-WebService-MusicBrainz
 version=1.0.5
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol-Other/template b/srcpkgs/perl-X11-Protocol-Other/template
index b076d9786c1..264a518269a 100644
--- a/srcpkgs/perl-X11-Protocol-Other/template
+++ b/srcpkgs/perl-X11-Protocol-Other/template
@@ -2,7 +2,6 @@
 pkgname=perl-X11-Protocol-Other
 version=31
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol/template b/srcpkgs/perl-X11-Protocol/template
index 5cae4bdc214..a8f979b1f28 100644
--- a/srcpkgs/perl-X11-Protocol/template
+++ b/srcpkgs/perl-X11-Protocol/template
@@ -3,7 +3,6 @@ pkgname=perl-X11-Protocol
 #TODO
 version=0.56
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-PrettyPrint/template b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
index 8e8cc1b013a..741cb36485d 100644
--- a/srcpkgs/perl-XML-LibXML-PrettyPrint/template
+++ b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-PrettyPrint
 version=0.006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-Simple/template b/srcpkgs/perl-XML-LibXML-Simple/template
index 1b4fb0e6ff3..7fe3b756c91 100644
--- a/srcpkgs/perl-XML-LibXML-Simple/template
+++ b/srcpkgs/perl-XML-LibXML-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-Simple
 version=1.01
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-XML-LibXML perl-File-Slurp-Tiny"
diff --git a/srcpkgs/perl-XML-NamespaceSupport/template b/srcpkgs/perl-XML-NamespaceSupport/template
index 4163007fae5..6bd16959aba 100644
--- a/srcpkgs/perl-XML-NamespaceSupport/template
+++ b/srcpkgs/perl-XML-NamespaceSupport/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-NamespaceSupport
 version=1.12
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Parser-Lite/template b/srcpkgs/perl-XML-Parser-Lite/template
index 3f2bea8e8f5..56b5725ab10 100644
--- a/srcpkgs/perl-XML-Parser-Lite/template
+++ b/srcpkgs/perl-XML-Parser-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Parser-Lite
 version=0.722
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX-Base/template b/srcpkgs/perl-XML-SAX-Base/template
index 4a7baac7fce..f9b270aa02f 100644
--- a/srcpkgs/perl-XML-SAX-Base/template
+++ b/srcpkgs/perl-XML-SAX-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX-Base
 version=1.09
 revision=2
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX/template b/srcpkgs/perl-XML-SAX/template
index 33a0de887bc..973a341ba84 100644
--- a/srcpkgs/perl-XML-SAX/template
+++ b/srcpkgs/perl-XML-SAX/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Simple/template b/srcpkgs/perl-XML-Simple/template
index 3b8f8c40688..4a0b0f4b6e8 100644
--- a/srcpkgs/perl-XML-Simple/template
+++ b/srcpkgs/perl-XML-Simple/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 maintainer="Orphaned <orphan@voidlinux.org>"
 distfiles="${CPAN_SITE}/XML/XML-Simple-$version.tar.gz"
 checksum=531fddaebea2416743eb5c4fdfab028f502123d9a220405a4100e68fc480dbf8
-archs=noarch
diff --git a/srcpkgs/perl-XML-Smart/template b/srcpkgs/perl-XML-Smart/template
index 622a2ecf1be..1dbe4ced2fc 100644
--- a/srcpkgs/perl-XML-Smart/template
+++ b/srcpkgs/perl-XML-Smart/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Smart
 version=1.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Twig/template b/srcpkgs/perl-XML-Twig/template
index 9ec76ea5248..ce3d0458926 100644
--- a/srcpkgs/perl-XML-Twig/template
+++ b/srcpkgs/perl-XML-Twig/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Twig
 version=3.52
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Writer/template b/srcpkgs/perl-XML-Writer/template
index cde06ed960b..31e76ae5831 100644
--- a/srcpkgs/perl-XML-Writer/template
+++ b/srcpkgs/perl-XML-Writer/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Writer
 version=0.625
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-XPath/template b/srcpkgs/perl-XML-XPath/template
index 7b7f6bde62b..a709df1ec21 100644
--- a/srcpkgs/perl-XML-XPath/template
+++ b/srcpkgs/perl-XML-XPath/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-XPath
 version=1.44
 revision=1
-archs=noarch
 wrksrc="XML-XPath-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML-Tiny/template b/srcpkgs/perl-YAML-Tiny/template
index 84a40add1d4..fd6de16f557 100644
--- a/srcpkgs/perl-YAML-Tiny/template
+++ b/srcpkgs/perl-YAML-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML-Tiny
 version=1.73
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML/template b/srcpkgs/perl-YAML/template
index b73e193ed08..7b8cd68384b 100644
--- a/srcpkgs/perl-YAML/template
+++ b/srcpkgs/perl-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-common-sense/template b/srcpkgs/perl-common-sense/template
index 2a2ec4a54ef..d651e673d95 100644
--- a/srcpkgs/perl-common-sense/template
+++ b/srcpkgs/perl-common-sense/template
@@ -2,7 +2,6 @@
 pkgname=perl-common-sense
 version=3.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-local-lib/template b/srcpkgs/perl-local-lib/template
index afc54934dcf..1204b0dba79 100644
--- a/srcpkgs/perl-local-lib/template
+++ b/srcpkgs/perl-local-lib/template
@@ -2,7 +2,6 @@
 pkgname=perl-local-lib
 version=2.000024
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-autoclean/template b/srcpkgs/perl-namespace-autoclean/template
index a523c1aba25..210020077ac 100644
--- a/srcpkgs/perl-namespace-autoclean/template
+++ b/srcpkgs/perl-namespace-autoclean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-autoclean
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-clean/template b/srcpkgs/perl-namespace-clean/template
index c0a01f76b59..6625382226c 100644
--- a/srcpkgs/perl-namespace-clean/template
+++ b/srcpkgs/perl-namespace-clean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-clean
 version=0.27
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-rename/template b/srcpkgs/perl-rename/template
index 5cd20da30ac..bdd861b7d43 100644
--- a/srcpkgs/perl-rename/template
+++ b/srcpkgs/perl-rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-rename
 version=1.9
 revision=2
-archs=noarch
 wrksrc="rename-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-strictures/template b/srcpkgs/perl-strictures/template
index f682d3b3732..8ecccbe64d6 100644
--- a/srcpkgs/perl-strictures/template
+++ b/srcpkgs/perl-strictures/template
@@ -2,7 +2,6 @@
 pkgname=perl-strictures
 version=2.000006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-tainting/template b/srcpkgs/perl-tainting/template
index f24735ecfba..313f390856c 100644
--- a/srcpkgs/perl-tainting/template
+++ b/srcpkgs/perl-tainting/template
@@ -2,7 +2,6 @@
 pkgname=perl-tainting
 version=0.02
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perltidy/template b/srcpkgs/perltidy/template
index 64d15fc211c..3db9d250866 100644
--- a/srcpkgs/perltidy/template
+++ b/srcpkgs/perltidy/template
@@ -2,7 +2,6 @@
 pkgname=perltidy
 version=20200619
 revision=1
-archs=noarch
 wrksrc="Perl-Tidy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/persepolis/template b/srcpkgs/persepolis/template
index 696afdd62e6..d04d25bca08 100644
--- a/srcpkgs/persepolis/template
+++ b/srcpkgs/persepolis/template
@@ -2,7 +2,6 @@
 pkgname=persepolis
 version=3.2.0
 revision=2
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools python3-setproctitle python3-requests
 	python3-psutil aria2 ffmpeg libnotify pulseaudio youtube-dl sound-theme-freedesktop
diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 6cfdf8170c0..97b33d3071c 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -2,7 +2,6 @@
 pkgname=peru
 version=1.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="peru"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pex/template b/srcpkgs/pex/template
index 105fb3e896d..544c117a4c1 100644
--- a/srcpkgs/pex/template
+++ b/srcpkgs/pex/template
@@ -2,7 +2,6 @@
 pkgname=pex
 version=2.1.15
 revision=1
-archs=noarch
 wrksrc="pex-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/pfetch/template b/srcpkgs/pfetch/template
index d67c2564bfb..992ed6619a4 100644
--- a/srcpkgs/pfetch/template
+++ b/srcpkgs/pfetch/template
@@ -2,7 +2,6 @@
 pkgname=pfetch
 version=0.6.0
 revision=1
-archs="noarch"
 short_desc="System information tool written in POSIX sh"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 license="MIT"
diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index 51835304d71..3120ac477fc 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -2,7 +2,6 @@
 pkgname=pgcli
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
diff --git a/srcpkgs/phoronix-test-suite/template b/srcpkgs/phoronix-test-suite/template
index 417e31c77bf..fe798298d6e 100644
--- a/srcpkgs/phoronix-test-suite/template
+++ b/srcpkgs/phoronix-test-suite/template
@@ -2,7 +2,6 @@
 pkgname=phoronix-test-suite
 version=9.6.1
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="php"
 short_desc="Comprehensive testing and benchmarking platform for Linux"
diff --git a/srcpkgs/phpMyAdmin/template b/srcpkgs/phpMyAdmin/template
index 8c82cc872b6..9a316fba310 100644
--- a/srcpkgs/phpMyAdmin/template
+++ b/srcpkgs/phpMyAdmin/template
@@ -2,7 +2,6 @@
 pkgname=phpMyAdmin
 version=5.0.2
 revision=1
-archs=noarch
 wrksrc="phpMyAdmin-${version}-all-languages"
 conf_files="/etc/webapps/phpMyAdmin/config.inc.php"
 depends="php mysql"
diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index ca1f29c11de..cdd41a84cfd 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -2,7 +2,6 @@
 pkgname=picard
 version=2.3.2
 revision=1
-archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module
 make_install_args="--disable-autoupdate"
diff --git a/srcpkgs/pingus/template b/srcpkgs/pingus/template
index 5551b01171f..b7277d10be3 100644
--- a/srcpkgs/pingus/template
+++ b/srcpkgs/pingus/template
@@ -29,7 +29,6 @@ do_install() {
 
 pingus-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pingus
 	}
diff --git a/srcpkgs/pioneer/template b/srcpkgs/pioneer/template
index b8eb8607375..ce00e4469fa 100644
--- a/srcpkgs/pioneer/template
+++ b/srcpkgs/pioneer/template
@@ -33,7 +33,6 @@ pioneer-modelcompiler_package() {
 
 pioneer-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pioneer
 	}
diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index 0f54fe32153..ac49322856e 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -2,7 +2,6 @@
 pkgname=piper
 version=0.5.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext libratbag pkg-config glib-devel python3-lxml"
 makedepends="python3-devel python3-gobject-devel"
diff --git a/srcpkgs/pipewire/template b/srcpkgs/pipewire/template
index 494f2296327..d6a31ad764a 100644
--- a/srcpkgs/pipewire/template
+++ b/srcpkgs/pipewire/template
@@ -151,7 +151,6 @@ libjack-pipewire_package() {
 }
 
 pipewire-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/plantuml/template b/srcpkgs/plantuml/template
index a28ec87cf43..fd71dd487f0 100644
--- a/srcpkgs/plantuml/template
+++ b/srcpkgs/plantuml/template
@@ -3,7 +3,6 @@ pkgname=plantuml
 reverts="8047_1 8053_1 8059_1"
 version=1.2020.15
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="virtual?java-environment graphviz"
diff --git a/srcpkgs/plasma-workspace-wallpapers/template b/srcpkgs/plasma-workspace-wallpapers/template
index 03f0cd0aff8..4a7d9c5a3cd 100644
--- a/srcpkgs/plasma-workspace-wallpapers/template
+++ b/srcpkgs/plasma-workspace-wallpapers/template
@@ -2,7 +2,6 @@
 pkgname=plasma-workspace-wallpapers
 version=5.19.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/plata-theme/template b/srcpkgs/plata-theme/template
index 7701b8598c7..f0da75a1120 100644
--- a/srcpkgs/plata-theme/template
+++ b/srcpkgs/plata-theme/template
@@ -2,7 +2,6 @@
 pkgname=plata-theme
 version=0.9.8
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-parallel --enable-telegram"
 hostmakedepends="automake libtool pkg-config glib-devel libxml2 sassc inkscape
diff --git a/srcpkgs/platformio/template b/srcpkgs/platformio/template
index b8ec9a97db9..6831a5cfab7 100644
--- a/srcpkgs/platformio/template
+++ b/srcpkgs/platformio/template
@@ -2,7 +2,6 @@
 pkgname=platformio
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="platformio-core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index 6d3483ae251..f5c171ff726 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -2,7 +2,6 @@
 pkgname=playitslowly
 version=1.5.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 python3-gobject gtk+3 gstreamer1 gst-plugins-base1 gst-plugins-good1
diff --git a/srcpkgs/plymouth/template b/srcpkgs/plymouth/template
index e60716016a8..bc5466e18c8 100644
--- a/srcpkgs/plymouth/template
+++ b/srcpkgs/plymouth/template
@@ -48,7 +48,6 @@ plymouth-devel_package() {
 
 plymouth-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	depends="void-artwork"
 	pkg_install() {
 		vmove usr/share/plymouth/themes
diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index c2b2d92e87a..c0e4377a1d7 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -2,7 +2,6 @@
 pkgname=pmbootstrap
 version=1.22.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools coreutils procps-ng libressl git"
diff --git a/srcpkgs/po4a/template b/srcpkgs/po4a/template
index afa923f9e3e..9e9a726118e 100644
--- a/srcpkgs/po4a/template
+++ b/srcpkgs/po4a/template
@@ -2,7 +2,6 @@
 pkgname=po4a
 version=0.61
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 _perldeps="perl perl-Text-WrapI18N perl-Term-ReadKey perl-Unicode-LineBreak
  perl-SGMLSpm perl-YAML-Tiny"
diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index eee3691d959..072c9186985 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -2,7 +2,6 @@
 pkgname=pockyt
 version=1.2
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-parse"
diff --git a/srcpkgs/podman-compose/template b/srcpkgs/podman-compose/template
index 4f4467de689..7df91e17cb8 100644
--- a/srcpkgs/podman-compose/template
+++ b/srcpkgs/podman-compose/template
@@ -2,7 +2,6 @@
 pkgname=podman-compose
 version=0.1.5
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-yaml"
 depends="${hostmakedepends} podman"
diff --git a/srcpkgs/polysh/template b/srcpkgs/polysh/template
index 36e743fabbb..a374979aeab 100644
--- a/srcpkgs/polysh/template
+++ b/srcpkgs/polysh/template
@@ -2,7 +2,6 @@
 pkgname=polysh
 version=0.4
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="polysh"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/pony-stable/template b/srcpkgs/pony-stable/template
index 4bd27ef0538..87694cad4ed 100644
--- a/srcpkgs/pony-stable/template
+++ b/srcpkgs/pony-stable/template
@@ -2,7 +2,6 @@
 pkgname=pony-stable
 version=0.2.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Simple dependency manager for the Pony language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponyc/template b/srcpkgs/ponyc/template
index 76f6e23475a..b7a79ce00a1 100644
--- a/srcpkgs/ponyc/template
+++ b/srcpkgs/ponyc/template
@@ -2,7 +2,6 @@
 pkgname=ponyc
 version=0.33.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Pony programming language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponysay/template b/srcpkgs/ponysay/template
index 5e916c5d485..ea0e87a5280 100644
--- a/srcpkgs/ponysay/template
+++ b/srcpkgs/ponysay/template
@@ -2,7 +2,6 @@
 pkgname=ponysay
 version=3.0.3
 revision=4
-archs=noarch
 hostmakedepends="python3 texinfo"
 depends="python3"
 short_desc="Pony rewrite of cowsay"
diff --git a/srcpkgs/poppler-data/template b/srcpkgs/poppler-data/template
index a83e7dbcf65..babd5990158 100644
--- a/srcpkgs/poppler-data/template
+++ b/srcpkgs/poppler-data/template
@@ -2,7 +2,6 @@
 pkgname=poppler-data
 version=0.4.9
 revision=1
-archs=noarch
 short_desc="Encoding data for the poppler PDF rendering library"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, GPL-2.0-or-later, BSD-3-Clause"
diff --git a/srcpkgs/postgresql/template b/srcpkgs/postgresql/template
index 2880d5f673b..b68ff9ca9f0 100644
--- a/srcpkgs/postgresql/template
+++ b/srcpkgs/postgresql/template
@@ -74,7 +74,6 @@ post_install() {
 
 postgresql-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/postgresql12/template b/srcpkgs/postgresql12/template
index 752c6e3f9fe..40818dd0c4a 100644
--- a/srcpkgs/postgresql12/template
+++ b/srcpkgs/postgresql12/template
@@ -104,7 +104,6 @@ _substitute() {
 
 postgresql12-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove ${_prefix}/share/doc
 	}
diff --git a/srcpkgs/printrun/template b/srcpkgs/printrun/template
index 3784d97eaa4..bdc6ce8d85c 100644
--- a/srcpkgs/printrun/template
+++ b/srcpkgs/printrun/template
@@ -2,7 +2,6 @@
 pkgname=printrun
 version=1.6.0
 revision=3
-archs=noarch
 wrksrc="Printrun-printrun-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools python-pyserial"
diff --git a/srcpkgs/pritunl-client/template b/srcpkgs/pritunl-client/template
index d61a2bfc7bc..a184a2f925c 100644
--- a/srcpkgs/pritunl-client/template
+++ b/srcpkgs/pritunl-client/template
@@ -2,7 +2,6 @@
 pkgname=pritunl-client
 version=1.0.1865.25
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="pritunl-client"
 make_install_args="--no-upstart --no-systemd"
diff --git a/srcpkgs/profile-cleaner/template b/srcpkgs/profile-cleaner/template
index 0128620c1af..1d5e7ba2237 100644
--- a/srcpkgs/profile-cleaner/template
+++ b/srcpkgs/profile-cleaner/template
@@ -2,7 +2,6 @@
 pkgname=profile-cleaner
 version=2.37
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Reduces profile size by cleaning their sqlite databases"
 depends="bash sqlite bc parallel findutils"
diff --git a/srcpkgs/protonvpn-cli/template b/srcpkgs/protonvpn-cli/template
index fb8ed8e0b57..081cbeea0b1 100644
--- a/srcpkgs/protonvpn-cli/template
+++ b/srcpkgs/protonvpn-cli/template
@@ -2,7 +2,6 @@
 pkgname=protonvpn-cli
 version=2.2.4
 revision=1
-archs=noarch
 wrksrc="linux-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pslist/template b/srcpkgs/pslist/template
index 52f36b6c129..673b4d932a9 100644
--- a/srcpkgs/pslist/template
+++ b/srcpkgs/pslist/template
@@ -2,7 +2,6 @@
 pkgname=pslist
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANDIR=/usr/share/man/man"
 make_check_target="test"
diff --git a/srcpkgs/psuinfo/template b/srcpkgs/psuinfo/template
index ca491f25bef..0705658530b 100644
--- a/srcpkgs/psuinfo/template
+++ b/srcpkgs/psuinfo/template
@@ -2,7 +2,6 @@
 pkgname=psuinfo
 version=1.1
 revision=1
-archs=noarch
 depends="python3>=3.5 python3-psutil"
 short_desc="Script to display customizable system info in Tint2 or other panels"
 maintainer="Piotr Miller <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/public-inbox/template b/srcpkgs/public-inbox/template
index 7a7198e79b5..ab9f82f6a82 100644
--- a/srcpkgs/public-inbox/template
+++ b/srcpkgs/public-inbox/template
@@ -2,7 +2,6 @@
 pkgname=public-inbox
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version/pre/-pre}"
 build_style=perl-module
 hostmakedepends="git perl perl-DBD-SQLite perl-Danga-Socket
diff --git a/srcpkgs/pulsemixer/template b/srcpkgs/pulsemixer/template
index 918b5af771a..e9f2c4f272d 100644
--- a/srcpkgs/pulsemixer/template
+++ b/srcpkgs/pulsemixer/template
@@ -2,7 +2,6 @@
 pkgname=pulsemixer
 version=1.5.1
 revision=1
-archs=noarch
 depends="python3 libpulseaudio"
 short_desc="CLI and curses mixer for Pulseaudio"
 maintainer="Dean Thomson <mrrobot@fsociety.info>"
diff --git a/srcpkgs/puppet/template b/srcpkgs/puppet/template
index 404319be63e..8156914f5d3 100644
--- a/srcpkgs/puppet/template
+++ b/srcpkgs/puppet/template
@@ -2,7 +2,6 @@
 pkgname=puppet
 version=6.16.0
 revision=1
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby facter-devel hiera which"
 makedepends="facter-devel"
diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index c0becb7bf58..e18b9ae3b5e 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -2,7 +2,6 @@
 pkgname=py3status
 version=3.28
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pyudev"
diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index d0594aa77f4..c3113303009 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -4,7 +4,6 @@ version=0.12.4
 revision=3
 build_style=python3-module
 pycompile_module="pychess"
-archs=noarch
 hostmakedepends="python3-setuptools"
 depends="gobject-introspection gst-plugins-base1 gtksourceview python3-gobject"
 short_desc="A GTK chess client written in Python"
diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index c9066259862..d4480023613 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -2,7 +2,6 @@
 pkgname=pycp
 version=8.0.8
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pycp"
 hostmakedepends="help2man python3-setuptools"
diff --git a/srcpkgs/pylint/template b/srcpkgs/pylint/template
index bd44b2c2d7d..3cf2c6f5687 100644
--- a/srcpkgs/pylint/template
+++ b/srcpkgs/pylint/template
@@ -2,7 +2,6 @@
 pkgname=pylint
 version=2.4.4
 revision=2
-archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module
 pycompile_module="pylint"
diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 808c298c7b5..7ed0770161b 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -2,7 +2,6 @@
 pkgname=pyradio
 version=0.8.7.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/pysolfc-cardsets/template b/srcpkgs/pysolfc-cardsets/template
index 2b1786bbce4..19a94b652f6 100644
--- a/srcpkgs/pysolfc-cardsets/template
+++ b/srcpkgs/pysolfc-cardsets/template
@@ -3,7 +3,6 @@ pkgname=pysolfc-cardsets
 version=2.0
 revision=1
 wrksrc="PySolFC-Cardsets-${version}"
-archs=noarch
 build_style=fetch
 short_desc="PySolFC Cardsets"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index b634a8da817..9f405513f6c 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -2,7 +2,6 @@
 pkgname=pysolfc
 version=2.10.1
 revision=1
-archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="gettext python3-pygame python3-random2 python3-six
diff --git a/srcpkgs/pystopwatch/template b/srcpkgs/pystopwatch/template
index b10e194b021..1540db0c152 100644
--- a/srcpkgs/pystopwatch/template
+++ b/srcpkgs/pystopwatch/template
@@ -2,7 +2,6 @@
 pkgname=pystopwatch
 version=2019
 revision=1
-archs=noarch
 makedepends="pygtk-devel librsvg-devel"
 depends="python pygtk librsvg"
 short_desc="GTK2+ stopwatch written in Python"
diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index a8c2e30c74b..471aef78fd3 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,6 @@
 pkgname=python-Arrow
 version=0.15.5
 revision=1
-archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/a/arrow/arrow-${version}.tar.gz"
 checksum=5390e464e2c5f76971b60ffa7ee29c598c7501a294bc9f5e6dadcb251a5d027b
 
 python3-Arrow_package() {
-	archs=noarch
 	depends="python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 2b175b4ecba..d8482560e9d 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Babel
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-pytz"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="babel:pybabel:/usr/bin/pybabel3"
diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 956348442ff..b8f87d432bf 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -2,7 +2,6 @@
 pkgname=python-BeautifulSoup4
 version=4.8.2
 revision=1
-archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-BeautifulSoup4_package() {
-	archs=noarch
 	depends="python3 python3-soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index ce0447f4d35..d0f78cc8a5e 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -2,7 +2,6 @@
 pkgname=python-Cheroot
 version=8.3.1
 revision=1
-archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-Cheroot_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-more-itertools
 	 python3-jaraco.functools"
 	alternatives="cheroot:cheroot:/usr/bin/cheroot3"
diff --git a/srcpkgs/python-CherryPy/template b/srcpkgs/python-CherryPy/template
index b1e17cca37a..dc4db21f582 100644
--- a/srcpkgs/python-CherryPy/template
+++ b/srcpkgs/python-CherryPy/template
@@ -3,7 +3,6 @@ pkgname=python-CherryPy
 reverts="18.0.1_1 18.0.0_1"
 version=17.4.2
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python2-module
 pycompile_module="cherrypy"
diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 6549f5c0fae..e3049bfb0c8 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -2,7 +2,6 @@
 pkgname=python-Django
 version=1.11.29
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 3ca0de18077..d90c614b497 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Assets
 version=0.12
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_assets.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Assets_package() {
-	archs=noarch
 	depends="python3-Flask python3-webassets"
 	pycompile_module="flask_assets.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index e5b600bf922..ec0457edaa8 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Babel
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Babel python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index a9b982bdce6..8ccc741026f 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Login
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Login_package() {
-	archs=noarch
 	depends="python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index edf5c13560e..a5f93f870ae 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-OAuthlib
 version=0.9.5
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-OAuthlib_package() {
-	archs=noarch
 	depends="python3-Flask python3-requests-oauthlib"
 	pycompile_module="flask_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index ebac828a5b1..66b81795f21 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Script
 version=2.0.6
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_script"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Script_package() {
-	archs=noarch
 	depends="python3-Flask"
 	pycompile_module="flask_script"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index f72307f79be..5fbba684f2d 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-WTF
 version=0.14.3
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-WTF_package() {
-	archs=noarch
 	depends="python3-Flask python3-WTForms"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 1aa7f5208ed..c408c68feaf 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-Flask_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Werkzeug python3-itsdangerous python3-click"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="flask:flask:/usr/bin/flask3"
diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 232429265f1..d04bb9d9bf6 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -2,7 +2,6 @@
 pkgname=python-GitPython
 version=2.1.11
 revision=2
-archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module
 pycompile_module="git"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-GitPython_package() {
-	archs=noarch
 	depends="python3-gitdb"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index aaae9fcd002..57f7d363e0f 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -2,7 +2,6 @@
 pkgname=python-IPy
 version=1.00
 revision=2
-archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module
 pycompile_module="IPy.py"
@@ -21,7 +20,6 @@ post_install() {
 
 python3-IPy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="IPy.py"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index 3fcd44dc198..b7b7acd1086 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -2,7 +2,6 @@
 pkgname=python-Jinja2
 version=2.10.1
 revision=2
-archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module
 pycompile_module="jinja2"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-Jinja2_package() {
-	archs=noarch
 	depends="python3-MarkupSafe"
 	pycompile_module="jinja2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index f0184179b83..547e02dee29 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -2,7 +2,6 @@
 pkgname=python-Mako
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module
 pycompile_module="mako"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-Mako_package() {
-	archs=noarch
 	pycompile_module="mako"
 	depends="python3-setuptools python3-MarkupSafe"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index fa75ca590cc..7e426c6463c 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python-Markdown
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index 1eb15b49301..7e120f7f16a 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -2,7 +2,6 @@
 pkgname=python-Markups
 version=3.0.0
 revision=3
-archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Markups_package() {
-	archs=noarch
 	depends="python3 python3-markdown-math"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 8b8c4f5f1e6..cfb5ce7ee5e 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -2,7 +2,6 @@
 pkgname=python-MiniMock
 version=1.2.8
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="minimock.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-MiniMock_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="minimock.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyHamcrest/template b/srcpkgs/python-PyHamcrest/template
index 48f001595aa..f105d8557af 100644
--- a/srcpkgs/python-PyHamcrest/template
+++ b/srcpkgs/python-PyHamcrest/template
@@ -2,7 +2,6 @@
 pkgname=python-PyHamcrest
 version=1.9.0
 revision=2
-archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module
 pycompile_module="hamcrest"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-PyHamcrest_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="hamcrest"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index 79709575673..a5afbb8b356 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -2,7 +2,6 @@
 pkgname=python-PyOpenGL
 version=3.1.5
 revision=1
-archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-PyOpenGL_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index d464e59d617..cf6ceb24d86 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -2,7 +2,6 @@
 pkgname=python-Pygments
 version=2.5.2
 revision=1
-archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-Pygments_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pygments:pygmentize:/usr/bin/pygmentize3"
diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index 3eba13d0e9c..2a71b87f354 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -2,7 +2,6 @@
 pkgname=python-Pyro4
 version=4.80
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -34,7 +33,6 @@ python3-Pyro4_package() {
 	 pyro4:pyro4-ns:/usr/bin/pyro4-ns3
 	 pyro4:pyro4-nsc:/usr/bin/pyro4-nsc3
 	 pyro4:pyro4-test-echoserver:/usr/bin/pyro4-test-echoserver3"
-	archs=noarch
 	depends="python3-setuptools python3-serpent"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index 8d2db9a02b3..01c58198024 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -2,7 +2,6 @@
 pkgname=python-SPARQLWrapper
 version=1.8.4
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="SPARQLWrapper"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/S/SPARQLWrapper/SPARQLWrapper-${version}.tar.gz"
 checksum=21928e7a97f565e772cdeeb0abad428960f4307e3a13dbdd8f6d3da8a6a506c9
 
 python3-SPARQLWrapper_package() {
-	archs=noarch
 	depends="python3-rdflib"
 	pycompile_module="SPARQLWrapper"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 444eb1427d6..244948a7621 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python-Unidecode
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module
 pycompile_module="unidecode"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-Unidecode_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="unidecode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 33f16940cb8..cdc03a45a1f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -2,7 +2,6 @@
 pkgname=python-WTForms
 version=2.2.1
 revision=2
-archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module
 pycompile_module="wtforms"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-WTForms_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wtforms"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index b4bf1071851..5fcd9781c3d 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -2,7 +2,6 @@
 pkgname=python-Werkzeug
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-Werkzeug_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index 66856b206a7..92cb5811a13 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -3,7 +3,6 @@ pkgname=python-Whoosh
 version=2.7.4
 revision=2
 wrksrc="Whoosh-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="whoosh"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 python3-Whoosh_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="whoosh"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 5ad8b234f5d..bc8e29f99a0 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -2,7 +2,6 @@
 pkgname=python-Yapsy
 version=1.12.2
 revision=2
-archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module
 pycompile_module="yapsy"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Yapsy_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="yapsy"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index f9621a9c8dc..d51c8447d4b 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -12,7 +12,6 @@ license="MIT"
 homepage="http://jwilk.net/software/python-aalib"
 distfiles="${PYPI_SITE}/p/python-aalib/python-aalib-${version}.tar.gz"
 checksum=c39071629e7962dcd926faf0135dc73e2a8eb5db9a53bc2ebe5965f8c39165a2
-archs=noarch
 
 post_install() {
 	sed -n '3,21p' < setup.py > LICENSE
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-aalib_package() {
-	archs=noarch
 	pycompile_module="aalib.py"
 	depends="aalib python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index b33009d5efb..5530541c6c4 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -2,7 +2,6 @@
 pkgname=python-alabaster
 version=0.7.12
 revision=2
-archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module
 pycompile_module="alabaster"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-alabaster_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="alabaster"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 2b57aae5674..644326085e5 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -2,7 +2,6 @@
 pkgname=python-alembic
 version=1.4.2
 revision=1
-archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-alembic_package() {
-	archs=noarch
 	depends="python3-Mako python3-SQLAlchemy python3-dateutil python3-editor"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index 3663a82f0cc..1756b99acab 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -2,7 +2,6 @@
 pkgname=python-ansicolor
 version=0.2.6
 revision=3
-archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module
 pycompile_module="ansicolor"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/ansicolor/ansicolor-${version}.tar.gz"
 checksum=d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d
 
 python3-ansicolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ansicolor"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index 68f8fa5cb4f..bf3b69cce99 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -2,7 +2,6 @@
 pkgname=python-appdirs
 version=1.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-appdirs_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 656da441757..1d4aae379bc 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -2,7 +2,6 @@
 pkgname=python-argh
 version=0.26.2
 revision=2
-archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module
 pycompile_module="argh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/argh/argh-${version}.tar.gz"
 checksum=e9535b8c84dc9571a48999094fda7f33e63c3f1b74f3e5f3ac0105a58405bb65
 
 python3-argh_package() {
-	archs=noarch
 	pycompile_module="argh"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 4f245755dcf..b1d370ba61c 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -2,7 +2,6 @@
 pkgname=python-arxiv2bib
 version=1.0.8
 revision=3
-archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module
 pycompile_module="arxiv2bib"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-arxiv2bib_package() {
-	archs=noarch
 	pycompile_module="arxiv2bib.py"
 	alternatives="arxiv2bib:arxiv2bib:/usr/bin/arxiv2bib3"
 	depends="python3-setuptools"
diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index e7ffe7415fc..7cf0624d22e 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -2,7 +2,6 @@
 pkgname=python-asn1crypto
 version=0.24.0
 revision=2
-archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module
 pycompile_module="asn1crypto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-asn1crypto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="asn1crypto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-astroid/template b/srcpkgs/python-astroid/template
index 9da6aebae87..71cb18836cb 100644
--- a/srcpkgs/python-astroid/template
+++ b/srcpkgs/python-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python-astroid
 version=1.6.6
 revision=2
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python2-module
 pycompile_module="astroid"
diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index ec411d981d4..5eebc020c12 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -2,7 +2,6 @@
 pkgname=python-atomicwrites
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module
 pycompile_module="atomicwrites"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-atomicwrites_package() {
-	archs=noarch
 	pycompile_module="atomicwrites"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 0141d97f85d..f7923ca89d1 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -3,7 +3,6 @@
 pkgname=python-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python"
diff --git a/srcpkgs/python-attrs/template b/srcpkgs/python-attrs/template
index 6e2297a9553..644601aa77b 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -2,7 +2,6 @@
 pkgname=python-attrs
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module
 pycompile_module="attr"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-attrs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="attr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index bc878d4b82d..55b3fc03ff5 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -2,7 +2,6 @@
 pkgname=python-audioread
 version=2.1.8
 revision=2
-archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module
 pycompile_module="audioread"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-audioread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="audioread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-automat/template b/srcpkgs/python-automat/template
index 66dad2f84bc..a73c9095962 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -2,7 +2,6 @@
 pkgname=python-automat
 version=20.2.0
 revision=1
-archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -32,7 +31,6 @@ post_install() {
 }
 
 python3-automat_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-attrs python3-six"
 	alternatives="automat:automat-visualize:/usr/bin/automat-visualize3"
diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index 74480b5a9fe..9ab879f9e87 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -2,7 +2,6 @@
 pkgname=python-axolotl
 version=0.2.3
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="axolotl"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=fe0e8147423f8dc4ec1077ea18ca5a54091366d22faa903a772ee6ea88b88daf
 
 python3-axolotl_package() {
-	archs=noarch
 	depends="python3-axolotl-curve25519 python3-cryptography python3-protobuf"
 	pycompile_module="axolotl"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-b2sdk/template b/srcpkgs/python-b2sdk/template
index 8c51c62d603..5ea032ed0dc 100644
--- a/srcpkgs/python-b2sdk/template
+++ b/srcpkgs/python-b2sdk/template
@@ -3,7 +3,6 @@
 pkgname=python-b2sdk
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc="b2sdk-${version}"
 build_style=python3-module
 pycompile_module="b2sdk"
diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index 47d5bb176cc..6de0b031414 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -2,7 +2,6 @@
 pkgname=python-babelfish
 version=0.5.5
 revision=2
-archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module
 pycompile_module="babelfish"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-babelfish_package() {
-	archs=noarch
 	pycompile_module="babelfish"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index a55af727ab6..d43ccd1d1c7 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -2,7 +2,6 @@
 pkgname=python-backcall
 version=0.1.0
 revision=2
-archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module
 pycompile_module="backcall"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/backcall/backcall-${version}.tar.gz"
 checksum=38ecd85be2c1e78f77fd91700c76e14667dc21e2713b63876c0eb901196e01e4
 
 python3-backcall_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="backcall"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backports.configparser/template b/srcpkgs/python-backports.configparser/template
index 8a641320820..91d60205364 100644
--- a/srcpkgs/python-backports.configparser/template
+++ b/srcpkgs/python-backports.configparser/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.configparser
 version=3.5.0
 revision=1
-archs=noarch
 wrksrc="configparser-${version}"
 build_style=python2-module
 pycompile_module="backports configparser.py"
diff --git a/srcpkgs/python-backports.functools_lru_cache/template b/srcpkgs/python-backports.functools_lru_cache/template
index 0d268c9efa6..4829107b32d 100644
--- a/srcpkgs/python-backports.functools_lru_cache/template
+++ b/srcpkgs/python-backports.functools_lru_cache/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.functools_lru_cache
 version=1.5
 revision=1
-archs=noarch
 wrksrc="backports.functools_lru_cache-${version}"
 build_style=python2-module
 pycompile_module="backports/functools_lru_cache.py"
diff --git a/srcpkgs/python-backports.shutil_get_terminal_size/template b/srcpkgs/python-backports.shutil_get_terminal_size/template
index 2e9a5af7f52..8d0923ea0d1 100644
--- a/srcpkgs/python-backports.shutil_get_terminal_size/template
+++ b/srcpkgs/python-backports.shutil_get_terminal_size/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.shutil_get_terminal_size
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="backports.shutil_get_terminal_size-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports.ssl_match_hostname/template b/srcpkgs/python-backports.ssl_match_hostname/template
index dd4d76b47db..cd15b2c217c 100644
--- a/srcpkgs/python-backports.ssl_match_hostname/template
+++ b/srcpkgs/python-backports.ssl_match_hostname/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.ssl_match_hostname
 version=3.5.0.1
 revision=3
-archs=noarch
 wrksrc="backports.ssl_match_hostname-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports/template b/srcpkgs/python-backports/template
index eec822727a8..ab40751073d 100644
--- a/srcpkgs/python-backports/template
+++ b/srcpkgs/python-backports/template
@@ -2,7 +2,6 @@
 pkgname=python-backports
 version=1.0
 revision=3
-archs=noarch
 wrksrc="backports-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports_abc/template b/srcpkgs/python-backports_abc/template
index 9d2e5565f02..0d23f9bd983 100644
--- a/srcpkgs/python-backports_abc/template
+++ b/srcpkgs/python-backports_abc/template
@@ -2,7 +2,6 @@
 pkgname=python-backports_abc
 version=0.5
 revision=1
-archs=noarch
 wrksrc="backports_abc-${version}"
 build_style=python2-module
 pycompile_module="backports_abc.py"
diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index c40115c9fb8..ae63106cf4b 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -2,7 +2,6 @@
 pkgname=python-bibtexparser
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module
 pycompile_module="bibtexparser"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bibtexparser/bibtexparser-${version}.tar.gz"
 checksum=df8966ea752db6d74657a69b9d684a61aa33457ad6d9d50e41c50ef7f374907f
 
 python3-bibtexparser_package() {
-	archs=noarch
 	pycompile_module="bibtexparser"
 	depends="python3-parsing python3-future"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 448ea60d53d..6e70a5976c1 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -2,7 +2,6 @@
 pkgname=python-bitbucket-api
 version=0.5.0
 revision=4
-archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module
 pycompile_module="bitbucket"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-bitbucket-api_package() {
-	archs=noarch
 	depends="python3-requests-oauthlib python3-sh"
 	pycompile_module="bitbucket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index 84b0f132eba..e298a86007b 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -2,7 +2,6 @@
 pkgname=python-bleach
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bleach/bleach-${version}.tar.gz"
 checksum=aa8b870d0f46965bac2c073a93444636b0e1ca74e9777e34f03dd494b8a59d48
 
 python3-bleach_package() {
-	archs=noarch
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index baa4938c328..314dda27c56 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -2,7 +2,6 @@
 pkgname=python-blessings
 version=1.7
 revision=2
-archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module
 pycompile_module="blessings"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-blessings_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="blessings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index b6d1d63d19a..d1df76cb181 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -2,7 +2,6 @@
 pkgname=python-blinker
 version=1.4
 revision=4
-archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-blinker_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="blinker"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 684c00feee0..583c1b3c3b2 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -2,7 +2,6 @@
 pkgname=python-boto
 version=2.49.0
 revision=2
-archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module
 pycompile_module="boto"
@@ -41,7 +40,6 @@ post_install() {
 }
 
 python3-boto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="boto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index 600559839d2..5430a3ed15f 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -2,7 +2,6 @@
 pkgname=python-botocore
 version=1.17.28
 revision=1
-archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/botocore/archive/${version}.tar.gz"
 checksum=c9a4b4ffedeff89848a899bd4634be46a21a190690b505c2050888c0a5447936
 
 python3-botocore_package() {
-	archs=noarch
 	depends="python3-dateutil python3-docutils python3-jmespath python3-urllib3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 0ffc8adfec7..67ce25c0e25 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -2,7 +2,6 @@
 pkgname=python-bottle
 version=0.12.17
 revision=2
-archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module
 pycompile_module="bottle"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-bottle_package() {
-	archs=noarch
 	pycompile_module="bottle"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index 16c89346565..101466a7524 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -2,7 +2,6 @@
 pkgname=python-cached-property
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module
 pycompile_module="cached_property.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cached-property_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cached_property.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index c057739b03d..b505bb1b258 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -2,7 +2,6 @@
 pkgname=python-cairocffi
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module
 pycompile_module="cairocffi"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cairocffi_package() {
-	archs=noarch
 	depends="python3-cffi"
 	pycompile_module="cairocffi"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index bd502bbbddf..8874a5e3dd6 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -2,7 +2,6 @@
 pkgname=python-chardet
 version=3.0.4
 revision=3
-archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae
 alternatives="chardet:chardetect:/usr/bin/chardetect2"
 
 python3-chardet_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="chardet"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 7faa0f4cce9..e93599c9a9c 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -2,7 +2,6 @@
 pkgname=python-chroot
 version=0.9.18
 revision=2
-archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module
 pycompile_module="pychroot"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-chroot_package() {
-	archs=noarch
 	depends="python3-snakeoil"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="chroot:pychroot:/usr/bin/pychroot3"
diff --git a/srcpkgs/python-cliapp/template b/srcpkgs/python-cliapp/template
index fd2c8cc4d13..c79ac262aa5 100644
--- a/srcpkgs/python-cliapp/template
+++ b/srcpkgs/python-cliapp/template
@@ -2,7 +2,6 @@
 pkgname=python-cliapp
 version=1.20180121
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="cliapp"
 hostmakedepends="python-setuptools python-yaml"
diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index b57a7a74b4a..663e72fc0b0 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -2,7 +2,6 @@
 pkgname=python-click-log
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"
 pycompile_module="click_log"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-log_package() {
-	archs=noarch
 	pycompile_module="click_log"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 49b4a4a9aae..39de1538611 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -2,7 +2,6 @@
 pkgname=python-click-threading
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-threading_package() {
-	archs=noarch
 	pycompile_module="click_threading"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 40d1b25a7ab..4f6444c307c 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -2,7 +2,6 @@
 pkgname=python-click
 version=7.1.2
 revision=1
-archs=noarch
 wrksrc="click-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-click_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 9ae2e19435c..13fdb17246b 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -2,7 +2,6 @@
 pkgname=python-codespell
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module
 pycompile_module="codespell_lib"
@@ -17,7 +16,6 @@ checksum=53d22aefa1daf3365ca4625877271d23d143c0a92c16e55daf5cd14b6494b8f4
 alternatives="python-codespell:codespell:/usr/bin/codespell2"
 
 python3-codespell_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="codespell_lib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 09562385243..db815379183 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -2,7 +2,6 @@
 pkgname=python-colorama
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module
 pycompile_module="colorama"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-colorama_package() {
-	archs=noarch
 	pycompile_module="colorama"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index a8cb5d5d34e..3848feac2d6 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -2,7 +2,6 @@
 pkgname=python-configobj
 version=5.0.6
 revision=6
-archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module
 pycompile_module="_version.py configobj.py validate.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-configobj_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="_version.py configobj.py validate.py"
 	depends="python3-six"
diff --git a/srcpkgs/python-constantly/template b/srcpkgs/python-constantly/template
index 9160aec9edd..34edf105840 100644
--- a/srcpkgs/python-constantly/template
+++ b/srcpkgs/python-constantly/template
@@ -2,7 +2,6 @@
 pkgname=python-constantly
 version=15.1.0
 revision=3
-archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module
 pycompile_module="constantly"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-constantly_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="constantly"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index d6d0b8010e2..5297e842c14 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -2,7 +2,6 @@
 pkgname=python-construct
 version=2.9.45
 revision=3
-archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module
 pycompile_module="construct"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-construct_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="construct"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-contextlib2/template b/srcpkgs/python-contextlib2/template
index 97ef11550c8..6bd95147447 100644
--- a/srcpkgs/python-contextlib2/template
+++ b/srcpkgs/python-contextlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-contextlib2
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="contextlib2-${version}"
 build_style=python2-module
 pycompile_module="contextlib2.py"
diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index 8c5d65fe260..132980d887a 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -2,7 +2,6 @@
 pkgname=python-cram
 version=0.7
 revision=3
-archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module
 pycompile_module="cram"
@@ -17,7 +16,6 @@ checksum=7da7445af2ce15b90aad5ec4792f857cef5786d71f14377e9eb994d8b8337f2f
 alternatives="cram:cram:/usr/bin/cram2"
 
 python3-cram_package() {
-	archs=noarch
 	pycompile_module="cram"
 	alternatives="cram:cram:/usr/bin/cram3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index 3eee49a6dbf..d375016bc91 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -2,7 +2,6 @@
 pkgname=python-cryptography_vectors
 version=3.0
 revision=1
-archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index f6d2d0cbf8b..f4e95f73e48 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -2,7 +2,6 @@
 pkgname=python-css-parser
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module
 pycompile_module="css_parser"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-css-parser_package() {
-	archs=noarch
 	pycompile_module="css_parser"
 	depends="python3"
 	short_desc="${short_desc/2/3}"
diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index c7f43ebca9f..81f28f8d682 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -2,7 +2,6 @@
 pkgname=python-cssselect
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="cssselect"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cssselect_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cssselect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 5f08903b9a0..2f023f342b0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -2,7 +2,6 @@
 pkgname=python-cssutils
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ python3-cssutils_package() {
 	 cssutils:csscapture:/usr/bin/csscapture3
 	 cssutils:csscombine:/usr/bin/csscombine3
 	 cssutils:cssparse:/usr/bin/cssparse3"
-	archs=noarch
 	pycompile_module="cssutils encutils"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 6126a11e9b4..c07d2d0270b 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -2,7 +2,6 @@
 pkgname=python-curtsies
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module
 pycompile_module="curtsies"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-curtsies_package() {
-	archs=noarch
 	pycompile_module="curtsies"
 	depends="python3-blessings python3-wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index 0b53c195dae..1d6b1ec2bf2 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -2,7 +2,6 @@
 pkgname=python-cycler
 version=0.10.0
 revision=5
-archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cycler_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="cycler.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index efaf163e573..51740f1ee4c 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -2,7 +2,6 @@
 pkgname=python-daemonize
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module
 pycompile_module="daemonize.py"
@@ -20,7 +19,6 @@ post_Install() {
 }
 
 python3-daemonize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="daemonize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dateutil/template b/srcpkgs/python-dateutil/template
index 7675b8f9447..ecedb52ebbd 100644
--- a/srcpkgs/python-dateutil/template
+++ b/srcpkgs/python-dateutil/template
@@ -2,7 +2,6 @@
 pkgname=python-dateutil
 version=2.8.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="dateutil"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-dateutil_package() {
-	archs=noarch
 	depends="python3-six tzdata"
 	pycompile_module="dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 7f14fef90a6..8ef89843121 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -2,7 +2,6 @@
 pkgname=python-decorator
 version=4.4.0
 revision=2
-archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module
 pycompile_module="decorator.py"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-decorator_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="decorator.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index 96234eb18c7..a0cf9f80b07 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -2,7 +2,6 @@
 pkgname=python-defusedxml
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module
 pycompile_module="defusedxml"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-defusedxml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="defusedxml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index 5af18eda664..990062e8ffe 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -2,7 +2,6 @@
 pkgname=python-discogs_client
 version=2.2.2
 revision=2
-archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-discogs_client_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-oauthlib"
 	pycompile_module="discogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 46bb0cccc31..9e5b8cafc56 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -2,7 +2,6 @@
 pkgname=python-distutils-extra
 version=2.39
 revision=4
-archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"
 hostmakedepends="intltool python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://launchpad.net/${pkgname}/trunk/${version}/+download/${pkgname}
 checksum=723f24f4d65fc8d99b33a002fbbb3771d4cc9d664c97085bf37f3997ae8063af
 
 python3-distutils-extra_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="DistUtilsExtra"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 66d237e89ee..2ee14846431 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -2,7 +2,6 @@
 pkgname=python-dnspython
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module
 pycompile_module="dns"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-dnspython_package() {
-	archs=noarch
 	pycompile_module="dns"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index 2224be0d21d..4d743effbe2 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -2,7 +2,6 @@
 pkgname=python-docker-pycreds
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module
 pycompile_module="dockerpycreds"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker-pycreds/docker-pycreds-${version}.tar.gz"
 checksum=6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4
 
 python3-docker-pycreds_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="dockerpycreds"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index 1a325bd6c46..8156dac04c2 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -2,7 +2,6 @@
 pkgname=python-docker
 version=4.2.0
 revision=1
-archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker/docker-${version}.tar.gz"
 checksum=ddae66620ab5f4bce769f64bcd7934f880c8abe6aa50986298db56735d0f722e
 
 python3-docker_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-websocket-client python3-docker-pycreds"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 4a0b3a7a33f..f3f10985243 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -2,7 +2,6 @@
 pkgname=python-dockerpty
 version=0.4.1
 revision=4
-archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/dockerpty/dockerpty-${version}.tar.gz"
 checksum=69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce
 
 python3-dockerpty_package() {
-	archs=noarch
 	depends="python3-six python3-docker"
 	pycompile_module="dockerpty"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 48e5f86c1e0..911a684ac8c 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -2,7 +2,6 @@
 pkgname=python-docopt
 version=0.6.2
 revision=5
-archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-docopt_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="docopt.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 99e74968ddd..b818198b077 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -2,7 +2,6 @@
 pkgname=python-docutils
 version=0.16
 revision=1
-archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -53,7 +52,6 @@ python3-docutils_package() {
 	 docutils:rst2xetex:/usr/bin/rst2xetex.py3
 	 docutils:rst2xml:/usr/bin/rst2xml.py3
 	 docutils:rstpep2html:/usr/bin/rstpep2html.py3"
-	archs=noarch
 	depends="python3 python3-Pygments"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 0978b7e168c..0c967a1e546 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -2,7 +2,6 @@
 pkgname=python-dogpile.cache
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-dogpile.cache_package() {
-	archs=noarch
 	depends="python3 python3-decorator"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 87e5c4eedd3..1bf492b81a1 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -2,7 +2,6 @@
 pkgname=python-dominate
 version=2.5.1
 revision=1
-archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -14,7 +13,6 @@ distfiles="https://github.com/Knio/dominate/archive/${version}.tar.gz"
 checksum=f2c11e107c13c4af9515f81c762b09c350f66d50440eae0c5ec1c443beb3f4af
 
 python3-dominate_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 9e1108b28eb..f7854dad45d 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -2,7 +2,6 @@
 pkgname=python-ecdsa
 version=0.14.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 pycompile_module="ecdsa"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-ecdsa_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="ecdsa"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 3594e407205..0cc765fc3ea 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -2,7 +2,6 @@
 pkgname=python-editor
 version=1.0.4
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="editor"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/python-editor/python-editor-${version}.tar.gz"
 checksum=51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b
 
 python3-editor_package() {
-	archs=noarch
 	pycompile_module="editor"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 4668a9cc814..944d9424edd 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -2,7 +2,6 @@
 pkgname=python-empy
 version=3.3.4
 revision=2
-archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module
 pycompile_module="EmPy"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-empy_package() {
-	archs=noarch
 	pycompile_module="EmPy"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index 68d35c0e13a..3a9f8f9235e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python-enchant
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools enchant-devel"
diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index 6070650f35d..846be545b54 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -2,7 +2,6 @@
 pkgname=python-entrypoints
 version=0.3
 revision=2
-archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module
 pycompile_module="entrypoints.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-entrypoints_package() {
-	archs=noarch
 	pycompile_module="entrypoints.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enum34/template b/srcpkgs/python-enum34/template
index 9bd644fe47d..849d37e119d 100644
--- a/srcpkgs/python-enum34/template
+++ b/srcpkgs/python-enum34/template
@@ -2,7 +2,6 @@
 pkgname=python-enum34
 version=1.1.6
 revision=1
-archs=noarch
 wrksrc="enum34-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index b8cccad60ac..e00112ebce3 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -2,7 +2,6 @@
 pkgname=python-envdir
 version=1.0.1
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="envdir"
@@ -26,7 +25,6 @@ python3-envdir_package() {
 	alternatives="
 	 envdir:envdir:/usr/bin/envdir3
 	 envdir:envshell:/usr/bin/envshell3"
-	archs=noarch
 	pycompile_module="envdir"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index f28f40b0319..14cac54c7ea 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -2,7 +2,6 @@
 pkgname=python-enzyme
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module
 pycompile_module="enzyme"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/enzyme/enzyme-${version}.tar.gz"
 checksum=f2167fa97c24d1103a94d4bf4eb20f00ca76c38a37499821049253b2059c62bb
 
 python3-enzyme_package() {
-	archs=noarch
 	pycompile_module="enzyme"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index a96490fb56d..bbd1a376d97 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -2,7 +2,6 @@
 pkgname=python-ewmh
 version=0.1.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="ewmh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/ewmh/ewmh-${version}.tar.gz"
 checksum=c56b093f7d575181e979bb3a7d15c34065755f811c351ff0a31fede12b09343d
 
 python3-ewmh_package() {
-	archs=noarch
 	depends="python3-xlib"
 	pycompile_module="ewmh"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 834aa7730ee..842bc1534cb 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -2,7 +2,6 @@
 pkgname=python-exifread
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"
 pycompile_module="exifread"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-exifread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="exifread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 24d2ec0611f..ae213f138ad 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -2,7 +2,6 @@
 pkgname=python-fasteners
 version=0.15
 revision=2
-archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/fasteners/fasteners-${version}.tar.gz"
 checksum=3a176da6b70df9bb88498e1a18a9e4a8579ed5b9141207762368a1017bf8f5ef
 
 python3-fasteners_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="fasteners"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 24d5317b1e9..e2cc73a0da7 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -2,7 +2,6 @@
 pkgname=python-feedgenerator
 version=1.9.1
 revision=1
-archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/feedgenerator/feedgenerator-${version}.tar.gz"
 checksum=a28a5add781509390d1a6a52d017829853ee4bef1d2e7b4d5da0e9d1b395ce54
 
 python3-feedgenerator_package() {
-	archs=noarch
 	depends="python3-pytz python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index 94f0a58ec88..e803b2d67d8 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -2,7 +2,6 @@
 pkgname=python-feedparser
 version=5.2.1
 revision=6
-archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module
 pycompile_module="feedparser.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-feedparser_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="feedparser.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 10b974794b5..5951e1658ba 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -2,7 +2,6 @@
 pkgname=python-filetype
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module
 pycompile_module="filetype"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-filetype_package() {
-	archs=noarch
 	pycompile_module="filetype"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index e8e681421f7..07a57e6a816 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -2,7 +2,6 @@
 pkgname=python-flaky
 version=3.6.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="flaky"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/flaky/flaky-${version}.tar.gz"
 checksum=8cd5455bb00c677f787da424eaf8c4a58a922d0e97126d3085db5b279a98b698
 
 python3-flaky_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="flaky"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-funcsigs/template b/srcpkgs/python-funcsigs/template
index 26f14b0ca3c..627e54dbebb 100644
--- a/srcpkgs/python-funcsigs/template
+++ b/srcpkgs/python-funcsigs/template
@@ -2,7 +2,6 @@
 pkgname=python-funcsigs
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="funcsigs-${version}"
 build_style=python2-module
 pycompile_module="funcsigs"
diff --git a/srcpkgs/python-functools32/template b/srcpkgs/python-functools32/template
index 53f9d69a576..4d553cfc1a0 100644
--- a/srcpkgs/python-functools32/template
+++ b/srcpkgs/python-functools32/template
@@ -2,7 +2,6 @@
 pkgname=python-functools32
 version=3.2.3.post2
 revision=1
-archs=noarch
 wrksrc="functools32-${version/.post/-}"
 build_style=python2-module
 pycompile_module="functools32"
diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 88b09a1944f..bdca44ab56f 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -2,7 +2,6 @@
 pkgname=python-future
 version=0.18.2
 revision=1
-archs=noarch
 wrksrc="future-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ python3-future_package() {
 	alternatives="
 	 future:futurize:/usr/bin/futurize3
 	 future:pasteurize:/usr/bin/pasteurize3"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-futures/template b/srcpkgs/python-futures/template
index 12d1f4ae71f..3657171b7c9 100644
--- a/srcpkgs/python-futures/template
+++ b/srcpkgs/python-futures/template
@@ -2,7 +2,6 @@
 pkgname=python-futures
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="futures-${version}"
 build_style=python2-module
 pycompile_module="concurrent"
diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index 253ddaa07bd..be12400dee5 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -2,7 +2,6 @@
 pkgname=python-gitdb
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module
 pycompile_module="gitdb"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-gitdb_package() {
-	archs=noarch
 	depends="python3-smmap"
 	pycompile_module="gitdb"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 425fe1b7362..25a6dfa5265 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -2,7 +2,6 @@
 pkgname=python-github3
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module
 pycompile_module="github3"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-github3_package() {
-	archs=noarch
 	depends="python3-requests python3-uritemplate"
 	pycompile_module="github3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 0f71b4c7153..b7d621f71f9 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -2,7 +2,6 @@
 pkgname=python-gitlab
 version=1.12.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="gitlab"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-gitlab_package() {
-	archs=noarch
 	depends="python3-setuptools python3-requests python3-six"
 	pycompile_module="gitlab"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 7b3bb5a7bb7..2b05b8facce 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -2,7 +2,6 @@
 pkgname=python-gntp
 version=1.0.3
 revision=5
-archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module
 pycompile_module="gntp"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-gntp_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="gntp"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index b5dd94bf8e1..d3be663d966 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=python-gnupg
 version=0.4.6
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python gnupg"
@@ -20,7 +19,6 @@ post_install() {
 python3-gnupg_package() {
 	depends="python3 gnupg"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 		vlicense LICENSE.txt
diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index 027135d430c..348c347a094 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -2,7 +2,6 @@
 pkgname=python-gogs-client
 version=1.0.6
 revision=4
-archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module
 pycompile_module="gogs_client"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-gogs-client_package() {
-	archs=noarch
 	depends="python3-future python3-requests python3-attrs"
 	pycompile_module="gogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index a962f14522f..acf0b08270c 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -2,7 +2,6 @@
 pkgname=python-guessit
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module
 pycompile_module="guessit"
@@ -17,7 +16,6 @@ checksum=2dcd3f2acaf6c1a864f903f084ddd6a6b753f3107ae864355d7c8c1e9cb205b2
 alternatives="guessit:guessit:/usr/bin/guessit2"
 
 python3-guessit_package() {
-	archs=noarch
 	pycompile_module="guessit"
 	depends="python3 python3-rebulk python3-babelfish python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 7f2d2c5fa8a..c078bb1edda 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -2,7 +2,6 @@
 pkgname=python-h11
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc=h11-${version}
 build_style=python-module
 pycompile_module="h11"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-h11_package() {
-	archs=noarch
 	pycompile_module="h11"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index a914f21ecb7..13f16c5495c 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -2,7 +2,6 @@
 pkgname=python-habanero
 version=0.6.2
 revision=2
-archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module
 pycompile_module="habanero"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-habanero_package() {
-	archs=noarch
 	pycompile_module="habanero"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index ffbac313103..2855219bb2a 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -2,7 +2,6 @@
 pkgname=python-hpack
 version=3.0.0
 revision=2
-archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module
 pycompile_module="hpack"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hpack_package() {
-	archs=noarch
 	pycompile_module="hpack"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-html2text/template b/srcpkgs/python-html2text/template
index f83a3a4c020..5b4e911b0a3 100644
--- a/srcpkgs/python-html2text/template
+++ b/srcpkgs/python-html2text/template
@@ -3,7 +3,6 @@
 pkgname=python-html2text
 version=2019.8.11
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 2565de64fd2..9740f92e0f7 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -2,7 +2,6 @@
 pkgname=python-html5lib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-html5lib_package() {
-	archs=noarch
 	pycompile_module="html5lib"
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index e798b4fc1b3..7d9e0b7e45f 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -2,7 +2,6 @@
 pkgname=python-httmock
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module
 pycompile_module="httmock.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-httmock_package() {
-	archs=noarch
 	pycompile_module="httmock.py"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index 3a31c396621..0b52b6a8c0e 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python-httplib2
 version=0.14.0
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="httplib2-${version}"
 build_style=python-module
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-httplib2_package() {
-	archs=noarch
 	depends="python3 ca-certificates"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 2c6942ac329..c31e3301020 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -2,7 +2,6 @@
 pkgname=python-hyper-h2
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-hyper-h2_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3 python3-hpack python3-hyperframe"
 	pkg_install() {
diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index 6b544c2061c..3e097830d29 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperframe
 version=5.2.0
 revision=2
-archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module
 pycompile_module="hyperframe"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperframe_package() {
-	archs=noarch
 	pycompile_module="hyperframe"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hyperlink/template b/srcpkgs/python-hyperlink/template
index 945bf72ee59..8f09927f274 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperlink
 version=19.0.0
 revision=2
-archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module
 pycompile_module="hyperlink"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperlink_package() {
-	archs=noarch
 	depends="python3-idna"
 	pycompile_module="hyperlink"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index de55593fc02..abbb225b87b 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -2,7 +2,6 @@
 pkgname=python-hypothesis
 version=4.38.2
 revision=2
-archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python
 build_style=python-module
@@ -35,7 +34,6 @@ do_check() {
 }
 
 python3-hypothesis_package() {
-	archs=noarch
 	pycompile_module="hypothesis"
 	depends="python3-attrs python3-coverage"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index dbb7ddb8fd3..f0a50b1a760 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -2,7 +2,6 @@
 pkgname=python-icalendar
 version=4.0.6
 revision=1
-archs=noarch
 wrksrc="icalendar-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-icalendar_package() {
-	archs=noarch
 	depends="python3-setuptools python3-dateutil python3-pytz"
 	alternatives="icalendar:icalendar:/usr/bin/icalendar3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 9de25fa6392..74896b4e4c5 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -2,7 +2,6 @@
 pkgname=python-idna
 version=2.9
 revision=1
-archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-idna_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index f64c86812b5..e65fa624fb8 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -2,7 +2,6 @@
 pkgname=python-imagesize
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module
 pycompile_module="imagesize.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-imagesize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="imagesize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-importlib_metadata/template b/srcpkgs/python-importlib_metadata/template
index 227e67ed565..f4a2e9438d0 100644
--- a/srcpkgs/python-importlib_metadata/template
+++ b/srcpkgs/python-importlib_metadata/template
@@ -2,7 +2,6 @@
 pkgname=python-importlib_metadata
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-incremental/template b/srcpkgs/python-incremental/template
index 70477e26866..70c332e0274 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -2,7 +2,6 @@
 pkgname=python-incremental
 version=17.5.0
 revision=3
-archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module
 pycompile_module="incremental"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-incremental_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="incremental"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index 64e48fd9330..02f724b4bdf 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -2,7 +2,6 @@
 pkgname=python-inotify
 version=0.9.6
 revision=4
-archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-inotify_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyinotify.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ipaddr/template b/srcpkgs/python-ipaddr/template
index 9bd50773ae6..f17949a1822 100644
--- a/srcpkgs/python-ipaddr/template
+++ b/srcpkgs/python-ipaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddr
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="ipaddr-${version}"
 build_style=python2-module
 pycompile_module="ipaddr.py"
diff --git a/srcpkgs/python-ipaddress/template b/srcpkgs/python-ipaddress/template
index 8a2d6c80b31..4d598e1146a 100644
--- a/srcpkgs/python-ipaddress/template
+++ b/srcpkgs/python-ipaddress/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddress
 version=1.0.23
 revision=1
-archs=noarch
 wrksrc="ipaddress-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 3c53013fb9d..f44d919759b 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -2,7 +2,6 @@
 pkgname=python-iptools
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="iptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-iptools_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="iptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 1cc46a060d6..92d61d8166b 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -2,7 +2,6 @@
 pkgname=python-isbnlib
 version=3.9.6
 revision=2
-archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module
 pycompile_module="isbnlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-isbnlib_package() {
-	archs=noarch
 	pycompile_module="isbnlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a841866d439..4e59ea10e12 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -2,7 +2,6 @@
 pkgname=python-iso-8601
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module
 pycompile_module="iso8601"
diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index 74e4e813e64..bb5115ef04e 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -2,7 +2,6 @@
 pkgname=python-isodate
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module
 pycompile_module="isodate"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-isodate_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="isodate"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index cd8e43b69ea..bcc48aa6abd 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -2,7 +2,6 @@
 pkgname=python-isort
 version=4.3.21
 revision=2
-archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module
 pycompile_module="isort"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-isort_package() {
-	archs=noarch
 	pycompile_module="isort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index fe51cc78a9b..b02eeabc46a 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -2,7 +2,6 @@
 pkgname=python-itsdangerous
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-itsdangerous_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jaraco.functools/template b/srcpkgs/python-jaraco.functools/template
index 55c82a8101a..84aaea71b7e 100644
--- a/srcpkgs/python-jaraco.functools/template
+++ b/srcpkgs/python-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python-jaraco.functools
 version=2.0
 revision=3
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 0799a69c69f..5c0437ae78d 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -2,7 +2,6 @@
 pkgname=python-jedi
 version=0.17.2
 revision=2
-archs=noarch
 wrksrc="jedi-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jedi_package() {
-	archs=noarch
 	depends="python3-parso"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 6f1dfcecf0f..5716281b7fd 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -2,7 +2,6 @@
 pkgname=python-jmespath
 version=0.10.0
 revision=1
-archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jmespath_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="jmespath:jp.py:/usr/bin/jp.py3"
diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index fd103d123aa..c7e06343501 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonpointer
 version=2.0
 revision=2
-archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-jsonpointer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="jsonpointer.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index a245168a824..d70336fef15 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonrpclib
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module
 pycompile_module="jsonrpclib"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/j/jsonrpclib-pelix/jsonrpclib-pelix-${version}.tar.gz"
 checksum=19c558e169a51480b39548783067ca55046b62b2409ab4559931255e12f635de
 
 python3-jsonrpclib_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 326b5609d36..f62b9a370a1 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -3,7 +3,6 @@ pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
 revision=4
-archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-jsonschema_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="jsonschema"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 6668b240008..a1a5ba3cb30 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -2,7 +2,6 @@
 pkgname=python-kaptan
 version=0.5.12
 revision=2
-archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module
 pycompile_module="kaptan"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-kaptan_package() {
-	archs=noarch
 	pycompile_module="kaptan"
 	depends="python3 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index 50e1d7e6e78..c9ed9368215 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -2,7 +2,6 @@
 pkgname=python-keepalive
 version=0.5
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/k/keepalive/keepalive-${version}.tar.gz"
 checksum=3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1
 
 python3-keepalive_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="keepalive"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 917131d6d93..96ea9ebf05b 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -2,7 +2,6 @@
 pkgname=python-kitchen
 version=1.2.6
 revision=3
-archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module
 pycompile_module="kitchen"
@@ -16,7 +15,6 @@ distfiles="https://github.com/fedora-infra/kitchen/archive/${version}.tar.gz"
 checksum=6963dd84819713aafdd55e5314dcce6df5a37430b62fd9c48770e9f1a467b2b0
 
 python3-kitchen_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="kitchen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-larch/template b/srcpkgs/python-larch/template
index 7b9fb4a1e5e..9cdece3c5a1 100644
--- a/srcpkgs/python-larch/template
+++ b/srcpkgs/python-larch/template
@@ -2,7 +2,6 @@
 pkgname=python-larch
 version=1.20151025
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools python-tracing"
 makedepends="python-devel python-tracing"
diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 39fcc264979..9ab0a38ac90 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -2,7 +2,6 @@
 pkgname=python-ldap3
 version=2.6.1
 revision=2
-archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module
 pycompile_module="ldap3"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=f21d1a65e19ed5a691d7cf30af375e84663254e800ddc950bd7b6f9bb15d2c19
 
 python3-ldap3_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="ldap3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 20f43af5f7d..6e155bae91b 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -2,7 +2,6 @@
 pkgname=python-libtmux
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module
 pycompile_module="libtmux"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-libtmux_package() {
-	archs=noarch
 	pycompile_module="libtmux"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 778cecba7e9..c03de4dada8 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-lockfile
 version=0.12.2
 revision=4
-archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-pbr python3-pbr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-lockfile_package() {
-	archs=noarch
 	pycompile_module="lockfile"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index c190d529bfe..13d75a8a077 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -2,7 +2,6 @@
 pkgname=python-logfury
 version=0.1.2
 revision=5
-archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module
 pycompile_module="logfury"
@@ -29,7 +28,6 @@ do_check() {
 }
 
 python3-logfury_package() {
-	archs=noarch
 	pycompile_module="logfury"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 6bb26bb6cd2..2265a60b796 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -2,7 +2,6 @@
 pkgname=python-magic
 version=0.4.18
 revision=2
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python libmagic"
@@ -18,7 +17,6 @@ post_install() {
 }
 
 python3-magic_package() {
-	archs=noarch
 	depends="python3 libmagic"
 	# Beware: not an alternative
 	conflicts="python3-file-magic>=0"
diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index e9068f64202..88f400e3d29 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -2,7 +2,6 @@
 pkgname=python-markdown2
 version=2.3.8
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="markdown2"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-markdown2_package() {
-	archs=noarch
 	pycompile_module="markdown2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-matplotlib/template b/srcpkgs/python-matplotlib/template
index b155d980569..421a1930bda 100644
--- a/srcpkgs/python-matplotlib/template
+++ b/srcpkgs/python-matplotlib/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 python-matplotlib-data_package() {
-	archs=noarch
 	conf_files="/etc/matplotlibrc"
 	short_desc+=" - data files"
 	pkg_install() {
diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index 1e2ed6328b8..d20b004b852 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -2,7 +2,6 @@
 pkgname=python-mccabe
 version=0.6.1
 revision=3
-archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-mccabe_package() {
-	archs=noarch
 	pycompile_module="mccabe.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index ca29bbd0d23..a9be9b7ff2f 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -2,7 +2,6 @@
 pkgname=python-mechanize
 version=0.4.3
 revision=3
-archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module
 pycompile_module="mechanize"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mechanize_package() {
-	archs=noarch
 	depends="python3 python3-html5lib"
 	pycompile_module="mechanize"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index ef5c054ba75..56e75385714 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -2,7 +2,6 @@
 pkgname=python-mistune
 version=0.8.4
 revision=2
-archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module
 pycompile_module="mistune.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mistune_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mistune.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mock/template b/srcpkgs/python-mock/template
index 95196de39df..bf2ede1da91 100644
--- a/srcpkgs/python-mock/template
+++ b/srcpkgs/python-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-mock
 version=3.0.5
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="mock"
diff --git a/srcpkgs/python-monotonic/template b/srcpkgs/python-monotonic/template
index 2c1e997bea1..d291dc8b5bb 100644
--- a/srcpkgs/python-monotonic/template
+++ b/srcpkgs/python-monotonic/template
@@ -2,7 +2,6 @@
 pkgname=python-monotonic
 version=1.5
 revision=1
-archs=noarch
 wrksrc="monotonic-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-more-itertools/template b/srcpkgs/python-more-itertools/template
index 8b77456eed7..598f5e643b9 100644
--- a/srcpkgs/python-more-itertools/template
+++ b/srcpkgs/python-more-itertools/template
@@ -3,7 +3,6 @@ pkgname=python-more-itertools
 reverts="6.0.0_1"
 version=5.0.0
 revision=2
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python2-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 0389f8c2a28..2bb2a79ee73 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -2,7 +2,6 @@
 pkgname=python-mpd2
 version=1.0.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mpd"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-mpd2_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpd"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index 8fd4873dd62..ef9609f1eac 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -2,7 +2,6 @@
 pkgname=python-mpmath
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module
 pycompile_module="mpmath"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mpmath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpmath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-msp430-tools/template b/srcpkgs/python-msp430-tools/template
index 84c0fd78cb8..af7413be891 100644
--- a/srcpkgs/python-msp430-tools/template
+++ b/srcpkgs/python-msp430-tools/template
@@ -2,7 +2,6 @@
 pkgname=python-msp430-tools
 version=0.9.2
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="msp430"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index 992c7b76fe9..524ccf0cf27 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -2,7 +2,6 @@
 pkgname=python-mtranslate
 version=1.6
 revision=2
-archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module
 pycompile_module="mtranslate"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mtranslate_package() {
-	archs=noarch
 	pycompile_module="mtranslate"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-munkres/template b/srcpkgs/python-munkres/template
index 97694aeac84..a0d670f74a1 100644
--- a/srcpkgs/python-munkres/template
+++ b/srcpkgs/python-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python-munkres
 version=1.0.12
 revision=1
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python2-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index a17ca953a3a..69ddaaa6924 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -2,7 +2,6 @@
 pkgname=python-musicbrainzngs
 version=0.6
 revision=4
-archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"
 pycompile_module="musicbrainzngs"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-musicbrainzngs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="musicbrainzngs"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index ffad63a70a1..638453e695e 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -2,7 +2,6 @@
 pkgname=python-mygpoclient
 version=1.8
 revision=3
-archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module
 pycompile_module="mygpoclient"
@@ -30,7 +29,6 @@ python3-mygpoclient_package() {
 	 mygpoclient:mygpo-simple-client:/usr/bin/mygpo-simple-client3"
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="mygpoclient"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 75626b9f6d5..21d4346f554 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -2,7 +2,6 @@
 pkgname=python-namedlist
 version=1.7
 revision=6
-archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/namedlist/namedlist-${version}.tar.gz"
 checksum=190b39ceaf1d6b59999811259e61beb1b26aaa482fb8c95538294d551461c986
 
 python3-namedlist_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="namedlist.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 7101e297aad..ec6df73b102 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -2,7 +2,6 @@
 pkgname=python-natsort
 version=6.0.0
 revision=2
-archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module
 pycompile_module="natsort"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-natsort_package() {
-	archs=noarch
 	pycompile_module="natsort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 54b653f68a9..ddf490888c6 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -2,7 +2,6 @@
 pkgname=python-ndg_httpsclient
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module
 pycompile_module="ndg/httpsclient"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ndg_httpsclient_package() {
-	archs=noarch
 	depends="python3-openssl python3-pyasn1"
 	pycompile_module="ndg/httpsclient"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 20cc1c93134..69fa4080f1c 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-netaddr
 version=0.7.19
 revision=3
-archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module
 pycompile_module="netaddr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-netaddr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="netaddr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index f2cd7fe5c3f..2ad6f5bb304 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -2,7 +2,6 @@
 pkgname=python-nose
 version=1.3.7
 revision=4
-archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module
 pycompile_module="nose"
@@ -18,7 +17,6 @@ checksum=f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98
 alternatives="nose:nosetests:/usr/bin/nosetests2"
 
 python3-nose_package() {
-	archs=noarch
 	pycompile_module="nose"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index 058abbd4253..de6db0c3cac 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -2,7 +2,6 @@
 pkgname=python-nose2
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="nose2"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-nose2_package() {
-	archs=noarch
 	pycompile_module="nose2"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-coverage python3-six"
diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 2223850f22e..1e47ceb7e75 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -13,14 +13,12 @@ license="BSD-2-Clause"
 homepage="https://github.com/bad-day/npyscreen"
 distfiles="https://github.com/bad-day/npyscreen/archive/${version}.tar.gz"
 checksum=6703c22d6bad3131b075d7d242c611a3c7ba8eae03f6d3cb414e3d35dae94b29
-archs=noarch
 
 post_install() {
 	vlicense LICENCE
 }
 
 python3-npyscreen_package() {
-	archs=noarch
 	pycompile_module="npyscreen"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 0582fb326c1..7bb1ee3effe 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -2,7 +2,6 @@
 pkgname=python-ntplib
 version=0.3.3
 revision=4
-archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"
 pycompile_module="ntplib.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/ntplib/ntplib-${version}.tar.gz"
 checksum="c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"
 
 python3-ntplib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ntplib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index 2398adba276..9469fb2411e 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -2,7 +2,6 @@
 pkgname=python-oauth2client
 version=4.1.3
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauth2client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/o/oauth2client/oauth2client-${version}.tar.gz"
 checksum=d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6
 
 python3-oauth2client_package() {
-	archs=noarch
 	depends="python3-httplib2 python3-pyasn1 python3-pyasn1-modules
 	 python3-rsa python3-six"
 	pycompile_module="oauth2client"
diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 036f1b31c92..ba8887bb647 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-oauthlib
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-oauthlib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 803d7b67cd8..8d57d382f61 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -2,7 +2,6 @@
 pkgname=python-olefile
 version=0.46
 revision=2
-archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module
 pycompile_module="olefile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-olefile_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="olefile"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index d7ab230194d..92d746abf01 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -2,7 +2,6 @@
 pkgname=python-openssl
 version=19.1.0
 revision=1
-archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pyOpenSSL/pyOpenSSL-${version}.tar.gz"
 checksum=9a24494b2602aaf402be5c9e30a0b82d4a5c67528fe8fb475e3f3bc00dd69507
 
 python3-openssl_package() {
-	archs=noarch
 	depends="python3-cryptography python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 06042d12b90..3aff25e48ab 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -2,7 +2,6 @@
 pkgname=python-packaging
 version=19.1
 revision=3
-archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module
 pycompile_module="packaging"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-packaging_package() {
-	archs=noarch
 	pycompile_module="packaging"
 	depends="python3-attrs python3-parsing python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index 780e9008ea7..91331977858 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -2,7 +2,6 @@
 pkgname=python-pam
 version=1.8.4
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="pam.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pam_package() {
-	archs=noarch
 	depends="python3 pam"
 	pycompile_module="pam.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index 8650d20256f..119156c8578 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -2,7 +2,6 @@
 pkgname=python-pandocfilters
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module
 pycompile_module="pandocfilters.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pandocfilters_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pandocfilters.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index f1bca0aea24..54447c2eb96 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -2,7 +2,6 @@
 pkgname=python-paramiko
 version=2.7.1
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/paramiko/paramiko-${version}.tar.gz"
 checksum=920492895db8013f6cc0179293147f830b8c7b21fdfc839b6bad760c27459d9f
 
 python3-paramiko_package() {
-	archs=noarch
 	depends="python3-cryptography python3-pyasn1 python3-bcrypt python3-pynacl"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 9ccdc26d51e..0eda1fafae5 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -2,7 +2,6 @@
 pkgname=python-parse
 version=1.12.0
 revision=2
-archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module
 pycompile_module="parse.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-parse_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="parse.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 56d64c7cbaa..db4b7f35583 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -2,7 +2,6 @@
 pkgname=python-parsing
 version=2.4.6
 revision=1
-archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-parsing_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 49ed2fbdf20..93cbe8ef17d 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -2,7 +2,6 @@
 pkgname=python-parso
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index f46a3e92642..805563fc9a6 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -2,7 +2,6 @@
 pkgname=python-passlib
 version=1.7.1
 revision=3
-archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module
 pycompile_module="passlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-passlib_package() {
-	archs=noarch
 	pycompile_module="passlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathlib/template b/srcpkgs/python-pathlib/template
index 65704965145..b71e822c2e8 100644
--- a/srcpkgs/python-pathlib/template
+++ b/srcpkgs/python-pathlib/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="pathlib-${version}"
 build_style=python2-module
 pycompile_module="pathlib.py"
diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index fa600b78fbe..d879dbb709c 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib2
 version=2.3.4
 revision=3
-archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module
 pycompile_module="pathlib2"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pathlib2/pathlib2-${version}.tar.gz"
 checksum=446014523bb9be5c28128c4d2a10ad6bb60769e78bd85658fe44a450674e0ef8
 
 python3-pathlib2_package() {
-	archs=noarch
 	depends="python3-six python3-scandir"
 	pycompile_module="pathlib2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index bd4736ec45d..33d17e59452 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -2,7 +2,6 @@
 pkgname=python-pathspec
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module
 pycompile_module="pathspec"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-pathspec_package() {
-	archs=noarch
 	pycompile_module="pathspec"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 47dc6ef6a71..d8785d20444 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -2,7 +2,6 @@
 pkgname=python-pathtools
 version=0.1.2
 revision=2
-archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module
 pycompile_module="pathtools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pathtools_package() {
-	archs=noarch
 	pycompile_module="pathtools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index 956d0b4cad9..218cf6e1bae 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -2,7 +2,6 @@
 pkgname=python-pbkdf2
 version=1.3
 revision=4
-archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module
 pycompile_module="pbkdf2"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pbkdf2_package() {
-	archs=noarch
 	pycompile_module="pbkdf2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pbr/template b/srcpkgs/python-pbr/template
index 9c7216056fe..fca5c38e134 100644
--- a/srcpkgs/python-pbr/template
+++ b/srcpkgs/python-pbr/template
@@ -2,7 +2,6 @@
 pkgname=python-pbr
 version=5.4.3
 revision=2
-archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module
 pycompile_module="pbr"
@@ -17,7 +16,6 @@ checksum=2c8e420cd4ed4cec4e7999ee47409e876af575d4c35a45840d59e8b5f3155ab8
 alternatives="pbr:pbr:/usr/bin/pbr2"
 
 python3-pbr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pbr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ef7db98e491..ae37b56cb7c 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -2,7 +2,6 @@
 pkgname=python-pdfrw
 version=0.4
 revision=3
-archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 
 python3-pdfrw_package() {
 	replaces="python-pdfrw-example<${version}_${revision}"
-	archs=noarch
 	pycompile_module="pdfrw"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 03102c3d294..c17f54ee717 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -2,7 +2,6 @@
 pkgname=python-pexpect
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module
 pycompile_module="pexpect"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-pexpect_package() {
-	archs=noarch
 	depends="python3-ptyprocess"
 	pycompile_module="pexpect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index f98052f4151..a0120b06438 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -2,7 +2,6 @@
 pkgname=python-pgmigrate
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pgmigrate_package() {
-	archs=noarch
 	depends="python3 python3-sqlparse python3-psycopg2 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index a28b6e209e7..86291588854 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -2,7 +2,6 @@
 pkgname=python-pgpdump
 version=1.5
 revision=6
-archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/toofishes/python-pgpdump/archive/${version}.tar.gz
 checksum=05383f66e467e855299d1ed51161c6038ac338d9d10bd33476b574dc3bef64ff
 
 python3-pgpdump_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pgpdump"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index e3c9a17bfdc..dd4753a52af 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -2,7 +2,6 @@
 pkgname=python-picamera
 version=1.13
 revision=2
-archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module
 pycompile_module="picamera"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-picamera_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="picamera"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index c1d86826c15..2cbddcf65af 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -2,7 +2,6 @@
 pkgname=python-pickleshare
 version=0.7.5
 revision=2
-archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module
 pycompile_module="pickleshare.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pickleshare_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pickleshare.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index d44215124f4..58b3e982ca7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -2,7 +2,6 @@
 pkgname=python-pip
 version=20.0.2
 revision=1
-archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pip_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pip:pip:/usr/bin/pip3"
diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index 69490a04324..b5c3c76ad0f 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -2,7 +2,6 @@
 pkgname=python-pipenv
 version=2020.8.13
 revision=1
-archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ post_install() {
 }
 
 python3-pipenv_package() {
-	archs=noarch
 	depends="python3 python3-pip python3-virtualenv python3-virtualenv-clone"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="
diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index e9e5480907d..9a423f67e48 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -2,7 +2,6 @@
 pkgname=python-pkgconfig
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module
 pycompile_module="pkgconfig"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pkgconfig_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pkgconfig"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pluggy/template b/srcpkgs/python-pluggy/template
index e52dee341ec..89bedfb33d4 100644
--- a/srcpkgs/python-pluggy/template
+++ b/srcpkgs/python-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python-pluggy
 version=0.13.1
 revision=1
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-ply/template b/srcpkgs/python-ply/template
index 04a3defa6aa..0ea8ca0f182 100644
--- a/srcpkgs/python-ply/template
+++ b/srcpkgs/python-ply/template
@@ -2,7 +2,6 @@
 pkgname=python-ply
 version=3.11
 revision=2
-archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ply_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ply"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index 58fd20d3f73..6edc83ab027 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -2,7 +2,6 @@
 pkgname=python-podcastparser
 version=0.6.5
 revision=1
-archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -25,7 +24,6 @@ post_install() {
 
 python3-podcastparser_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove "usr/lib/python3*"
diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index 8b8d4b66c68..67e81743db3 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -2,7 +2,6 @@
 pkgname=python-polib
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-polib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="polib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 455051f5a50..88fa8a98417 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -2,7 +2,6 @@
 pkgname=python-portend
 version=2.5
 revision=2
-archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
 pycompile_module="portend.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-portend_package() {
-	archs=noarch
 	depends="python3-tempora"
 	pycompile_module="portend.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 6d8063fc43a..8cd4d8943da 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -2,7 +2,6 @@
 pkgname=python-pretend
 version=1.0.9
 revision=2
-archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module
 pycompile_module="pretend"
diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 0d6bd1db69d..80371bed0fa 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -2,7 +2,6 @@
 pkgname=python-progress
 version=1.5
 revision=2
-archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module
 pycompile_module="progress"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-progress_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="progress"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 7b71fbeffc2..ee3bd9aafad 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -2,7 +2,6 @@
 pkgname=python-prometheus_client
 version=0.7.1
 revision=2
-archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module
 pycompile_module="prometheus_client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/prometheus_client/prometheus_client-${version}.tar.gz"
 checksum=71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da
 
 python3-prometheus_client_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="prometheus_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index 70516738c27..614745d925b 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -3,7 +3,6 @@ pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.18
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index e0f00f41668..1d93496f287 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -2,7 +2,6 @@
 pkgname=python-prompt_toolkit2
 version=2.0.9
 revision=5
-archs=noarch
 build_style=meta
 short_desc="Python2 library for building command lines (removed package)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index b1da90de474..b4e6f91a33f 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -2,7 +2,6 @@
 pkgname=python-proselint
 version=0.10.2
 revision=2
-archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module
 pycompile_module="proselint"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-proselint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-click python3-future python3-six"
 	pycompile_module="proselint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 0485f0d930d..816bddbb2c0 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python-protobuf
 version=3.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-protobuf_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index fd2e51fa3ac..961bbff5e30 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -2,7 +2,6 @@
 pkgname=python-ptyprocess
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module
 pycompile_module="ptyprocess"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-ptyprocess_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ptyprocess"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 2a0559b4dc3..1256aeab468 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -2,7 +2,6 @@
 pkgname=python-py
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="py-${version}"
 build_style=python-module
 pycompile_module="py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-py_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index e9a10e88c15..8c54b620b8a 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -2,7 +2,6 @@
 pkgname=python-pyPEG2
 version=2.15.2
 revision=5
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/${pkgname#*-}/${pkgname#*-}-${version}.tar.gz"
 checksum=2b2d4f80d8e1a9370b2a91f4a25f4abf7f69b85c8da84cd23ec36451958a1f6d
 
 python3-pyPEG2_package() {
-	archs=noarch
 	depends="python3-lxml"
 	pycompile_module="pypeg2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index d5b2d967f4e..d3524454dbe 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -2,7 +2,6 @@
 pkgname=python-pyacoustid
 version=1.1.5
 revision=3
-archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyacoustid_package() {
-	archs=noarch
 	pycompile_module="acoustid.py chromaprint.py"
 	depends="chromaprint python3-audioread python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index f45976e5b0b..3a4cfe7f541 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyaes
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module
 pycompile_module="pyaes"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyaes_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyaes"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1-modules/template b/srcpkgs/python-pyasn1-modules/template
index b180252b96d..20626d431c6 100644
--- a/srcpkgs/python-pyasn1-modules/template
+++ b/srcpkgs/python-pyasn1-modules/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1-modules
 version=0.2.8
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyasn1_modules"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-pyasn1-modules_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="pyasn1_modules"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1/template b/srcpkgs/python-pyasn1/template
index 7f50c81b281..bb3e06272af 100644
--- a/srcpkgs/python-pyasn1/template
+++ b/srcpkgs/python-pyasn1/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1
 version=0.4.8
 revision=1
-archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyasn1_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index 04e85465121..647bd2d58d3 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -2,7 +2,6 @@
 pkgname=python-pycodestyle
 version=2.6.0
 revision=1
-archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pycodestyle_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle3"
diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index c4a4c9cafbd..a7cf612255f 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -2,7 +2,6 @@
 pkgname=python-pycountry
 version=19.8.18
 revision=1
-archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/pycountry/pycountry-${version}.tar.gz"
 checksum=3c57aa40adcf293d59bebaffbe60d8c39976fba78d846a018dc0c2ec9c6cb3cb
 
 python3-pycountry_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index d2e83aa79b2..b833ec6e2d2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -2,7 +2,6 @@
 pkgname=python-pycparser
 version=2.19
 revision=2
-archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module
 pycompile_module="pycparser"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pycparser_package() {
-	archs=noarch
 	depends="python3-ply"
 	pycompile_module="pycparser"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pydns/template b/srcpkgs/python-pydns/template
index 50f97da8ede..5d0027f9eee 100644
--- a/srcpkgs/python-pydns/template
+++ b/srcpkgs/python-pydns/template
@@ -2,7 +2,6 @@
 pkgname=python-pydns
 version=2.3.6
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="DNS"
diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index 193650442fc..694e8598c45 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -2,7 +2,6 @@
 pkgname=python-pyelftools
 version=0.25
 revision=2
-archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module
 pycompile_module="elftools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyelftools_package() {
-	archs=noarch
 	pycompile_module="elftools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 586cba32b89..97d5c43a109 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyflakes
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyflakes_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pyflakes:pyflakes:/usr/bin/pyflakes3"
diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index 397103c49f7..084f261cdf7 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -2,7 +2,6 @@
 pkgname=python-pyglet
 version=1.4.10
 revision=1
-archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools unzip"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pyglet_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pykka/template b/srcpkgs/python-pykka/template
index 512639c69c3..9c668bc01e2 100644
--- a/srcpkgs/python-pykka/template
+++ b/srcpkgs/python-pykka/template
@@ -2,7 +2,6 @@
 pkgname=python-pykka
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="Pykka-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/P/Pykka/Pykka-${version}.tar.gz"
 checksum=895cc2ed8779b65dd14a90ba3f4b8cb0f7904c7bf0710fe96a923019f8e82a39
 
 python3-pykka_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index b70bd73d4aa..34131d837e6 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -2,7 +2,6 @@
 pkgname=python-pyotp
 version=2.3.0
 revision=2
-archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module
 pycompile_module="pyotp"
@@ -26,7 +25,6 @@ post_install() {
 
 python3-pyotp_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="pyotp"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-pypcapfile/template b/srcpkgs/python-pypcapfile/template
index 73b767f61c2..ef4d475ff13 100644
--- a/srcpkgs/python-pypcapfile/template
+++ b/srcpkgs/python-pypcapfile/template
@@ -3,7 +3,6 @@ pkgname=python-pypcapfile
 version=0.12.0
 revision=1
 wrksrc="pypcapfile-${version}"
-archs=noarch
 build_style=python2-module
 pycompile_module="pcapfile"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 1286923b906..302c6765857 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -2,7 +2,6 @@
 pkgname=python-pyperclip
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_wrksrc=pyperclip-${version}
 build_style=python-module
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-pyperclip_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index 1bea9c2ffdf..8ff86f6f711 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -2,7 +2,6 @@
 pkgname=python-pyqtgraph
 version=0.10.0
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyqtgraph"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyqtgraph_package() {
-	archs=noarch
 	depends="python3-PyQt5 python3-numpy python3-PyOpenGL"
 	pycompile_module="pyqtgraph"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index cd81c4d0624..18387d894a8 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -2,7 +2,6 @@
 pkgname=python-pyrfc3339
 version=1.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"
 wrksrc="pyRFC3339-${version}"
@@ -23,7 +22,6 @@ python3-pyrfc3339_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-pytz"
 	pycompile_module="pyrfc3339"
-	archs=noarch
 	pkg_install() {
 		vlicense LICENSE.txt LICENSE
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-pyserial/template b/srcpkgs/python-pyserial/template
index 354be493b16..ea2ba7123ee 100644
--- a/srcpkgs/python-pyserial/template
+++ b/srcpkgs/python-pyserial/template
@@ -2,7 +2,6 @@
 pkgname=python-pyserial
 version=3.4
 revision=3
-archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyserial_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="serial"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index ca508a4a7cc..1396099515a 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -2,7 +2,6 @@
 pkgname=python-pysocks
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pysocks_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index be742c08ce4..42a6719080a 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -2,7 +2,6 @@
 pkgname=python-pysrt
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=b4f844ba33e4e7743e9db746492f3a193dc0bc112b153914698e7c1cdeb9b0b9
 alternatives="srt:srt:/usr/bin/srt2"
 
 python3-pysrt_package() {
-	archs=noarch
 	depends="python3 python3-chardet"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="srt:srt:/usr/bin/srt3"
diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 893045b8998..26c053a1158 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -2,7 +2,6 @@
 pkgname=python-pystache
 version=0.5.4
 revision=3
-archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module
 pycompile_module="pystache"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pystache_package() {
-	archs=noarch
 	pycompile_module="pystache"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 1efc2f9a488..86bcd331228 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -2,7 +2,6 @@
 pkgname=python-pyte
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module
 pycompile_module="pyte"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-pyte_package() {
-	archs=noarch
 	pycompile_module="pyte"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-wcwidth"
diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index 14255af8a35..3dd87c592dd 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-fixture-config
 version=1.3.0
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_fixture_config.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-fixture-config_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_fixture_config.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index 240e8773aaa..d963da9fb14 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-mock
 version=1.10.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_mock.py _pytest_mock_version.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-mock_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_mock.py _pytest_mock_version.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 5e2ffe71b6e..3c205b971de 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest
 version=4.6.9
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index 40f582962c8..81df887b425 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -2,7 +2,6 @@
 pkgname=python-pytz
 version=2019.3
 revision=2
-archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module
 pycompile_module="pytz"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pytz_package() {
-	archs=noarch
 	depends="python3 tzdata"
 	pycompile_module="pytz"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index 2ec53088636..bc6fb1ba8a5 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -2,7 +2,6 @@
 pkgname=python-pyudev
 version=0.21.0
 revision=3
-archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module
 pycompile_module="pyudev"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=5f4625f89347e465731866ddbe042a055bbc5092577356aa3d089ac5fb8efd94
 
 python3-pyudev_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 
diff --git a/srcpkgs/python-pyx/template b/srcpkgs/python-pyx/template
index 1ece52764ab..24a8edae5fb 100644
--- a/srcpkgs/python-pyx/template
+++ b/srcpkgs/python-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python-pyx
 version=0.12.1
 revision=4
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python2-module
 pycompile_module="pyx"
diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 35b568eb4e6..28c0ca61c67 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -2,7 +2,6 @@
 pkgname=python-pyzbar
 version=0.1.8
 revision=2
-archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module
 pycompile_module="pyzbar"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-pyzbar_package() {
-	archs=noarch
 	pycompile_module="pyzbar"
 	depends="libzbar python3"
 	alternatives="pyzbar:read_zbar:/usr/bin/read_zbar.py3"
diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index bf35c82757e..10f8455d835 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -2,7 +2,6 @@
 pkgname=python-qrcode
 version=6.1
 revision=2
-archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module
 pycompile_module="qrcode"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-qrcode_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="qrcode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 2603cae3584..741b7f63a76 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -2,7 +2,6 @@
 pkgname=python-random2
 version=1.0.1
 revision=4
-archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module
 pycompile_module="random2.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/random2/random2-${version}.zip"
 checksum=34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007
 
 python3-random2_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="random2.py"
 	pkg_install() {
diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index 83ff75c6e03..20e7a42f8d8 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -2,7 +2,6 @@
 pkgname=python-rarfile
 version=4.0
 revision=1
-archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-rarfile_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index 87382c21602..b7457cfda31 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -2,7 +2,6 @@
 pkgname=python-raven
 version=6.10.0
 revision=2
-archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module
 pycompile_module="raven"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-raven_package() {
-	archs=noarch
 	pycompile_module="raven"
 	depends="ca-certificates python3-setuptools"
 	alternatives="raven:raven:/usr/bin/raven3"
diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index f676dedfb2f..471a4d5ad1b 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -2,7 +2,6 @@
 pkgname=python-rdflib
 version=4.2.2
 revision=3
-archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ python3-rdflib_package() {
 	 rdflib:rdfgraphisomorphism:/usr/bin/rdfgraphisomorphism3
 	 rdflib:rdfpipe:/usr/bin/rdfpipe3
 	 rdflib:rdfs2dot:/usr/bin/rdfs2dot3"
-	archs=noarch
 	depends="python3-setuptools python3-isodate python3-parsing"
 	pycompile_module="rdflib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ace92da477b..46caca6191c 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -2,7 +2,6 @@
 pkgname=python-readability-lxml
 version=0.8.1
 revision=1
-archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/r/readability-lxml/readability-lxml-${version}.tar.gz"
 checksum=e51fea56b5909aaf886d307d48e79e096293255afa567b7d08bca94d25b1a4e1
 
 python3-readability-lxml_package() {
-	archs=noarch
 	depends="python3-lxml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 3bc58c3a7dd..ed683fde9ef 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -2,7 +2,6 @@
 pkgname=python-rebulk
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-rebulk_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index 194d682dc32..1729e362ed7 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -2,7 +2,6 @@
 pkgname=python-redis
 version=3.3.11
 revision=1
-archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-redis_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 2d1410fcd1b..6c66bce1309 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-mock
 version=1.5.2
 revision=3
-archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module
 pycompile_module="requests_mock"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-mock/requests-mock-${version}.tar.gz"
 checksum=7a5fa99db5e3a2a961b6f20ed40ee6baeff73503cf0a553cc4d679409e6170fb
 
 python3-requests-mock_package() {
-	archs=noarch
 	pycompile_module="requests_mock"
 	depends="python3-requests python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index e3e824b35b1..84cf752dcb0 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-oauthlib
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_oauthlib"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-requests-oauthlib_package() {
-	archs=noarch
 	depends="python3-requests python3-oauthlib"
 	pycompile_module="requests_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 13a81586221..62d763b2b5d 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-toolbelt
 version=0.9.1
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_toolbelt"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-toolbelt/requests-toolbelt-${version}.tar.gz"
 checksum=968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0
 
 python3-requests-toolbelt_package() {
-	archs=noarch
 	pycompile_module="requests_toolbelt"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index 1bd9f51333c..a2c68c7452a 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -2,7 +2,6 @@
 pkgname=python-requests
 version=2.23.0
 revision=1
-archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-requests_package() {
-	archs=noarch
 	depends="ca-certificates python3-chardet python3-urllib3 python3-idna"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index 2522872cc32..4543670a319 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -2,7 +2,6 @@
 pkgname=python-rfc6555
 version=0.0.0
 revision=2
-archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module
 pycompile_module="rfc6555"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/rfc6555/rfc6555-${version}.tar.gz"
 checksum=191cbba0315b53654155321e56a93466f42cd0a474b4f341df4d03264dcb5217
 
 python3-rfc6555_package() {
-	archs=noarch
 	pycompile_module="rfc6555"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index 72f32a9da0d..f9a3dbd72ad 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -3,7 +3,6 @@ pkgname=python-ripe-atlas-cousteau
 version=1.4.2
 revision=2
 build_style=python-module
-archs=noarch
 pycompile_module="ripe/atlas/cousteau"
 wrksrc="ripe-atlas-cousteau-${version}"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=91bfaaafe7561ccc7b91f555a5004c467d615b9f404739496a4ed6a22fcb07b7
 
 python3-ripe-atlas-cousteau_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="ripe/atlas/cousteau"
 	depends="python3-dateutil python3-socketIO-client"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 22abb48af46..3e9b273ed72 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -2,7 +2,6 @@
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module
 pycompile_module="ripe/atlas/sagan"
@@ -17,7 +16,6 @@ checksum=39d8c0864ec8d790fe46f45cb55020d8603fceb374c77cda46f96b71279af016
 
 python3-ripe-atlas-sagan_package() {
 	depends="python3-dateutil python3-pytz python3-cryptography"
-	archs=noarch
 	pycompile_module="ripe/atlas/sagan"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index 11e9bf2c60d..17e034b0edc 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -2,7 +2,6 @@
 pkgname=python-rsa
 version=4.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="rsa"
@@ -31,7 +30,6 @@ python3-rsa_package() {
 	 rsa:pyrsa-priv2pub:/usr/bin/pyrsa-priv2pub3
 	 rsa:pyrsa-sign:/usr/bin/pyrsa-sign3
 	 rsa:pyrsa-verify:/usr/bin/pyrsa-verify3"
-	archs=noarch
 	pycompile_module="rsa"
 	depends="python3-setuptools python3-pyasn1"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index 29aba6cc68b..70f276e67d2 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -2,7 +2,6 @@
 pkgname=python-s3transfer
 version=0.3.3
 revision=1
-archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/s3transfer/archive/${version}.tar.gz"
 checksum=0c8b0f7aaf32173d1475df0a453bfdc37be8207ea15c1d8415a590ef3986fc51
 
 python3-s3transfer_package() {
-	archs=noarch
 	depends="python3-botocore"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index 0db5b157ce1..49654ed01ce 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -2,7 +2,6 @@
 pkgname=python-scour
 version=0.37
 revision=2
-archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module
 pycompile_module="scour"
@@ -23,7 +22,6 @@ do_check() {
 }
 
 python3-scour_package() {
-	archs=noarch
 	pycompile_module="scour"
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-selectors2/template b/srcpkgs/python-selectors2/template
index 1ad45d8e7d3..c73fcb17309 100644
--- a/srcpkgs/python-selectors2/template
+++ b/srcpkgs/python-selectors2/template
@@ -2,7 +2,6 @@
 pkgname=python-selectors2
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="selectors2-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 94f56545695..68a97a3aa47 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -2,7 +2,6 @@
 pkgname=python-send2trash
 version=1.5.0
 revision=2
-archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module
 pycompile_module="send2trash"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-send2trash_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="send2trash"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index 658802bef0d..59083a2af5c 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python-serpent
 version=1.28
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-service_identity/template b/srcpkgs/python-service_identity/template
index e21a1520a75..d4957063827 100644
--- a/srcpkgs/python-service_identity/template
+++ b/srcpkgs/python-service_identity/template
@@ -2,7 +2,6 @@
 pkgname=python-service_identity
 version=18.1.0
 revision=2
-archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module
 pycompile_module="service_identity"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-service_identity_package() {
-	archs=noarch
 	depends="python3-attrs python3-pyasn1-modules python3-cryptography"
 	pycompile_module="service_identity"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index d71e746e12e..3e3aeaa589c 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -4,7 +4,6 @@ pkgname=python-setuptools
 # python2 support for setuptools ended at 44.0.0
 version=44.0.0
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 16de6daf662..67cd0c68998 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -2,7 +2,6 @@
 pkgname=python-sh
 version=1.13.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-sh_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index 6c95222fa7e..cbd435e04e5 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -2,7 +2,6 @@
 pkgname=python-simplebayes
 version=1.5.8
 revision=2
-archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module
 pycompile_module="simplebayes"
@@ -22,7 +21,6 @@ post_install() {
 python3-simplebayes_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="simplebayes"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index f352387fa1f..483244ed30f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -2,7 +2,6 @@
 pkgname=python-simplegeneric
 version=0.8.1
 revision=4
-archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/simplegeneric/simplegeneric-${version}.zip"
 checksum=dc972e06094b9af5b855b3df4a646395e43d1c9d0d39ed345b7393560d0b9173
 
 python3-simplegeneric_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="simplegeneric.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-singledispatch/template b/srcpkgs/python-singledispatch/template
index 9da989105f8..cc5f1468f5b 100644
--- a/srcpkgs/python-singledispatch/template
+++ b/srcpkgs/python-singledispatch/template
@@ -2,7 +2,6 @@
 pkgname=python-singledispatch
 version=3.4.0.3
 revision=1
-archs=noarch
 wrksrc="singledispatch-${version}"
 build_style=python2-module
 pycompile_module="singledispatch.py singledispatch_helpers.py"
diff --git a/srcpkgs/python-six/template b/srcpkgs/python-six/template
index bc47a16d28d..a57040dd697 100644
--- a/srcpkgs/python-six/template
+++ b/srcpkgs/python-six/template
@@ -2,7 +2,6 @@
 pkgname=python-six
 version=1.14.0
 revision=1
-archs=noarch
 wrksrc="six-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-six_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 8c8ea952285..5de11eb3f6b 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -2,7 +2,6 @@
 pkgname=python-smmap
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module
 pycompile_module="smmap"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-smmap_package() {
-	archs=noarch
 	pycompile_module="smmap"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 221478860e5..a3059e544d9 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -2,7 +2,6 @@
 pkgname=python-snowballstemmer
 version=1.2.1
 revision=4
-archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/snowballstemmer/snowballstemmer-${version}.tar.gz"
 checksum=919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128
 
 python3-snowballstemmer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="snowballstemmer"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 9495d7cf40b..7924c6d0cf4 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -2,7 +2,6 @@
 pkgname=python-socketIO-client
 version=0.7.2
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"
 wrksrc="socketIO-client-${version}"
@@ -22,7 +21,6 @@ post_install() {
 python3-socketIO-client_package() {
 	depends="python3-requests python3-six python3-websocket-client"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="socketIO_client"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 062cc3e6a8a..f412d7e4b4e 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -2,7 +2,6 @@
 pkgname=python-soupsieve
 version=1.9.5
 revision=2
-archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module
 pycompile_module="soupsieve"
@@ -34,7 +33,6 @@ post_install() {
 }
 
 python3-soupsieve_package() {
-	archs=noarch
 	pycompile_module="soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-spambayes/template b/srcpkgs/python-spambayes/template
index 9a85558c1d3..24d92de47dd 100644
--- a/srcpkgs/python-spambayes/template
+++ b/srcpkgs/python-spambayes/template
@@ -3,7 +3,6 @@ pkgname=python-spambayes
 version=1.1b3
 revision=1
 wrksrc=${pkgname#*-}-${version}
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python-lockfile python-pydns"
diff --git a/srcpkgs/python-sqlalchemy-migrate/template b/srcpkgs/python-sqlalchemy-migrate/template
index bb002660c0f..d9818bc1975 100644
--- a/srcpkgs/python-sqlalchemy-migrate/template
+++ b/srcpkgs/python-sqlalchemy-migrate/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlalchemy-migrate
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="migrate"
@@ -27,7 +26,6 @@ python3-sqlalchemy-migrate_package() {
 	alternatives="
 	 migrate:migrate-repository:/usr/bin/migrate-repository3
 	 migrate:migrate:/usr/bin/migrate3"
-	archs=noarch
 	depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
 	 python3-sqlparse python3-tempita"
 	pycompile_module="migrate"
diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 0f8c6f8ea2e..18369a5ab6b 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module
 pycompile_module="sqlparse"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-sqlparse_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="sqlparse"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 97bb4b48cb6..f032c8cb0b0 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -2,7 +2,6 @@
 pkgname=python-stem
 version=1.8.0
 revision=1
-archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module
 pycompile_module="stem"
@@ -18,7 +17,6 @@ checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
 
 python3-stem_package() {
-	archs=noarch
 	depends="python3-cryptography"
 	pycompile_module="stem"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 4f781304d3f..21efeca4d6a 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -2,7 +2,6 @@
 pkgname=python-stevedore
 version=1.30.1
 revision=2
-archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module
 pycompile_module="stevedore"
@@ -21,7 +20,6 @@ pre_build() {
 }
 
 python3-stevedore_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="stevedore"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 11f63f67bba..093db30e6da 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -2,7 +2,6 @@
 pkgname=python-stormssh
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc=storm-${version}
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-stormssh_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-paramiko python3-termcolor python3-Flask"
 	pycompile_module="storm"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 74dcf00ebdd..fe30efae2dc 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -2,7 +2,6 @@
 pkgname=python-subliminal
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-subliminal_package() {
-	archs=noarch
 	depends="python3 python3-guessit python3-babelfish python3-enzyme
 	 python3-BeautifulSoup4 python3-requests python3-click python3-dogpile.cache
 	 python3-stevedore python3-chardet python3-pysrt python3-six python3-appdirs
diff --git a/srcpkgs/python-tempita/template b/srcpkgs/python-tempita/template
index c1c75ee1cac..1c59ba302bf 100644
--- a/srcpkgs/python-tempita/template
+++ b/srcpkgs/python-tempita/template
@@ -2,7 +2,6 @@
 pkgname=python-tempita
 version=0.5.2
 revision=4
-archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/T/Tempita/Tempita-${version}.tar.gz"
 checksum=cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c
 
 python3-tempita_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="tempita"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index 194dc2718e5..166dd7c1157 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -2,7 +2,6 @@
 pkgname=python-tempora
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-tempora_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-pytz"
 	alternatives="tempora:calc-prorate:/usr/bin/calc-prorate3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 73c18fc79eb..f68d3be8832 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -2,7 +2,6 @@
 pkgname=python-termcolor
 version=1.1.0
 revision=6
-archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-termcolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="termcolor.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index d649364d88d..1777e9906e4 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -2,7 +2,6 @@
 pkgname=python-terminado
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module
 pycompile_module="terminado"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-terminado_package() {
-	archs=noarch
 	depends="python3-ptyprocess python3-tornado"
 	pycompile_module="terminado"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index abfc59900c0..da250a65f02 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -2,7 +2,6 @@
 pkgname=python-testpath
 version=0.4.2
 revision=2
-archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module
 pycompile_module="testpath"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-testpath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="testpath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index 24bac87af6a..2e7ca37e415 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -2,7 +2,6 @@
 pkgname=python-texttable
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module
 pycompile_module="texttable.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-texttable_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="texttable.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tkinter/template b/srcpkgs/python-tkinter/template
index f2b6d0bacf1..e9019fbc09c 100644
--- a/srcpkgs/python-tkinter/template
+++ b/srcpkgs/python-tkinter/template
@@ -76,7 +76,6 @@ do_install() {
 }
 
 idle-python_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python2 using Tkinter"
 	pycompile_dirs="usr/lib/python2.7/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 812d80343cc..350b4c93b51 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -2,7 +2,6 @@
 pkgname=python-tmuxp
 version=1.5.4
 revision=1
-archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module
 pycompile_module="tmuxp"
@@ -28,7 +27,6 @@ post_install() {
 }
 
 python3-tmuxp_package() {
-	archs=noarch
 	pycompile_module="tmuxp"
 	depends="python3 python3-setuptools python3-colorama python3-click python3-kaptan python3-libtmux"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 2fd6eaa0cea..d853e4385fd 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -2,7 +2,6 @@
 pkgname=python-toml
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module
 pycompile_module="toml"
@@ -20,7 +19,6 @@ pkg_install() {
 }
 
 python3-toml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="toml"
 	short_desc=${short_desc/Python2/Python3}
diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index f7ee7d037af..3d3c1dafc5a 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -2,7 +2,6 @@
 pkgname=python-tqdm
 version=4.48.2
 revision=1
-archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -27,7 +26,6 @@ python3-tqdm_package() {
 	alternatives="
 	 tqdm:tqdm:/usr/bin/tqdm3
 	 tqdm:tqdm.1:/usr/share/man/man1/tqdm3.1"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-tracing/template b/srcpkgs/python-tracing/template
index 4408f31be9f..7281f1f9ecd 100644
--- a/srcpkgs/python-tracing/template
+++ b/srcpkgs/python-tracing/template
@@ -2,7 +2,6 @@
 pkgname=python-tracing
 version=0.10
 revision=1
-archs=noarch
 wrksrc="python-tracing-tracing-${version}"
 build_style=python2-module
 pycompile_module="tracing"
diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 2df1a81c9be..4742cade8b8 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -2,7 +2,6 @@
 pkgname=python-ttystatus
 version=0.38
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://code.liw.fi/debian/pool/main/p/${pkgname}/${pkgname}_${version
 checksum=e544dd5b0f77ebc3bb5b4ace34bd3d2751e72956ec096c8ffb34beaead433628
 
 python3-ttystatus_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ttystatus"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index 2487511922a..f2a6afd286f 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -2,7 +2,6 @@
 pkgname=python-tweepy
 version=3.8.0
 revision=2
-archs=noarch
 wrksrc="tweepy-${version}"
 build_style=python-module
 pycompile_module="tweepy"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-tweepy_package() {
-	archs=noarch
 	pycompile_module="tweepy"
 	depends="python3-requests-oauthlib python3-six python3-pysocks"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index e5e7194078a..775fbf19426 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -2,7 +2,6 @@
 pkgname=python-twitter
 version=3.5
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="twitter"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ pre_build() {
 }
 
 python3-twitter_package() {
-	archs=noarch
 	pycompile_module="twitter"
 	depends="python3-future python3-requests python3-requests-oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-txgithub/template b/srcpkgs/python-txgithub/template
index e33466d59e3..ccd5f7b9747 100644
--- a/srcpkgs/python-txgithub/template
+++ b/srcpkgs/python-txgithub/template
@@ -2,7 +2,6 @@
 pkgname=python-txgithub
 version=15.0.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="txgithub"
diff --git a/srcpkgs/python-typing/template b/srcpkgs/python-typing/template
index dce911b6b1a..b5bd5971843 100644
--- a/srcpkgs/python-typing/template
+++ b/srcpkgs/python-typing/template
@@ -2,7 +2,6 @@
 pkgname=python-typing
 version=3.6.6
 revision=1
-archs=noarch
 wrksrc="typing-${version}"
 build_style=python2-module
 pycompile_module="typing.py"
diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 2ff5c497523..dfbb1fc9b34 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -2,7 +2,6 @@
 pkgname=python-unittest-mixins
 version=1.6
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="unittest_mixins"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/u/unittest-mixins/unittest-mixins-${version}.tar.gz"
 checksum=05363abe099f0724b7bb6d71d0ce1046078c868cb10b3f1ebdf3ca6593c52507
 
 python3-unittest-mixins_package() {
-	archs=noarch
 	pycompile_module="unittest_mixins"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index 0808a11e98d..f5ae56e2e2d 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -2,7 +2,6 @@
 pkgname=python-urbandict
 version=0.6.1
 revision=1
-archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=a19685ffa2450bea2df9bf328a6ce7c3c1e2213c95171ae2263b987cc54d201b
 alternatives="urbandicli:urbandicli:/usr/bin/urbandicli2"
 
 python3-urbandict_package() {
-	archs=noarch
 	alternatives="urbandicli:urbandicli:/usr/bin/urbandicli3"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3"
diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 5a44f7e24af..7598cdcb114 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -2,7 +2,6 @@
 pkgname=python-uritemplate
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-uritemplate_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 3f354488f86..fd464147487 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -2,7 +2,6 @@
 pkgname=python-urllib3
 version=1.25.8
 revision=1
-archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-urllib3_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urlnorm/template b/srcpkgs/python-urlnorm/template
index ae488dc3179..2a4a1ab6eab 100644
--- a/srcpkgs/python-urlnorm/template
+++ b/srcpkgs/python-urlnorm/template
@@ -2,7 +2,6 @@
 pkgname=python-urlnorm
 version=1.1.4
 revision=2
-archs=noarch
 wrksrc="urlnorm-${version}"
 build_style=python2-module
 pycompile_module="urlnorm"
diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index 62d214489e2..86bf7e4fae0 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -2,7 +2,6 @@
 pkgname=python-urwidtrees
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module
 pycompile_module="urwidtrees"
@@ -16,7 +15,6 @@ distfiles="https://github.com/pazz/urwidtrees/archive/${version}.tar.gz"
 checksum=703f4b161b930a26a461a3e3e695f94237ac75e2a52b87613e49093d9aa76034
 
 python3-urwidtrees_package() {
-	archs=noarch
 	pycompile_module="urwidtrees"
 	depends="python3-urwid"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index 4c7a5ef1bfb..15d10eb36fd 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -2,7 +2,6 @@
 pkgname=python-utils
 version=2.4.0
 revision=1
-archs=noarch
 wrksrc="python-utils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-utils_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 62c663bf18e..2683de6e90b 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -2,7 +2,6 @@
 pkgname=python-vint
 version=0.3.19
 revision=3
-archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module
 pycompile_module="vint"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-vint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-ansicolor python3-chardet python3-yaml"
 	pycompile_module="vint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-virtualenv-clone/template b/srcpkgs/python-virtualenv-clone/template
index 273b9ddf6d3..d028e73171b 100644
--- a/srcpkgs/python-virtualenv-clone/template
+++ b/srcpkgs/python-virtualenv-clone/template
@@ -2,7 +2,6 @@
 pkgname=python-virtualenv-clone
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="clonevirtualenv.py"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-virtualenv-clone_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="clonevirtualenv.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-virtualenv/template b/srcpkgs/python-virtualenv/template
index 831bf7705ca..6e44ecf9b3f 100644
--- a/srcpkgs/python-virtualenv/template
+++ b/srcpkgs/python-virtualenv/template
@@ -2,7 +2,6 @@
 pkgname=python-virtualenv
 version=20.0.20
 revision=1
-archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-virtualenv_package() {
-	archs=noarch
 	depends="python3-setuptools python3-appdirs python3-distlib python3-filelock python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="virtualenv:virtualenv:/usr/bin/virtualenv3"
diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index 624ade6f12b..32154cafe05 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -21,7 +21,6 @@ post_install() {
 
 python3-vispy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="vispy"
 	depends="python3-numpy"
 	pkg_install() {
diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 2c1c215527c..91bb0d96e17 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -2,7 +2,6 @@
 pkgname=python-vobject
 version=0.9.6.1
 revision=2
-archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module
 pycompile_module="vobject"
@@ -20,7 +19,6 @@ alternatives="
  vobject:ics_diff:/usr/bin/ics_diff2"
 
 python3-vobject_package() {
-	archs=noarch
 	pycompile_module="vobject"
 	depends="python3-setuptools python3-dateutil python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index 1dd5de27491..cd6da9e8785 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -2,7 +2,6 @@
 pkgname=python-voluptuous
 version=0.11.5
 revision=3
-archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module
 pycompile_module="voluptuous"
diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index 2eea6397f00..839e4edc91e 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -2,7 +2,6 @@
 pkgname=python-watchdog
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module
 pycompile_module="watchdog"
@@ -17,7 +16,6 @@ checksum=965f658d0732de3188211932aeb0bb457587f04f63ab4c1e33eab878e9de961d
 alternatives="watchdog:watchmedo:/usr/bin/watchmedo2"
 
 python3-watchdog_package() {
-	archs=noarch
 	pycompile_module="watchdog"
 	alternatives="watchdog:watchmedo:/usr/bin/watchmedo3"
 	depends="python3-setuptools python3-yaml python3-argh python3-pathtools"
diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 8ec6d17450c..e043794dc2d 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -2,7 +2,6 @@
 pkgname=python-wcwidth
 version=0.1.7
 revision=3
-archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module
 pycompile_module="wcwidth"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wcwidth_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 7ed3cfd1b4c..5e6673ed205 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -2,7 +2,6 @@
 pkgname=python-webassets
 version=0.12.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="webassets"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-webassets_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="webassets"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index f047a9e3c52..048c9bb5d3a 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -2,7 +2,6 @@
 pkgname=python-webencodings
 version=0.5.1
 revision=3
-archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module
 pycompile_module="webencodings"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/w/webencodings/webencodings-${version}.tar.gz"
 checksum=b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923
 
 python3-webencodings_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 3df8ab42b36..68773ce04ab 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -2,7 +2,6 @@
 pkgname=python-websocket-client
 version=0.56.0
 revision=2
-archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module
 pycompile_module="websocket"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-websocket-client_package() {
-	archs=noarch
 	depends="python3-six ca-certificates"
 	pycompile_module="websocket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 05fc8d1cc06..d3a346aa67e 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -2,7 +2,6 @@
 pkgname=python-wheel
 version=0.34.2
 revision=1
-archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wheel_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="wheel:wheel:usr/bin/wheel3"
diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index f8a69755b74..82b835789b0 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -2,7 +2,6 @@
 pkgname=python-wikipedia
 version=1.4.0
 revision=3
-archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module
 pycompile_module="wikipedia"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wikipedia_package() {
-	archs=noarch
 	pycompile_module="wikipedia"
 	depends="python3-BeautifulSoup4 python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index f8b131104e6..aab4fcc6e05 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -2,7 +2,6 @@
 pkgname=python-wsproto
 version=0.15.0
 revision=2
-archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module
 pycompile_module="wsproto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wsproto_package() {
-	archs=noarch
 	pycompile_module="wsproto"
 	depends="python3 python3-h11"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index 4e819c8bec7..b75ee56b800 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -2,7 +2,6 @@
 pkgname=python-xdg
 version=0.26
 revision=2
-archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module
 hostmakedepends="python python3"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/pyxdg/pyxdg-${version}.tar.gz"
 checksum=fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06
 
 python3-xdg_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="xdg"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 8c409c7f8c4..24933a8ee2e 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -2,7 +2,6 @@
 pkgname=python-xlib
 version=0.27
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python-six"
@@ -18,7 +17,6 @@ pre_build() {
 }
 
 python3-xlib_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index b8f25af9575..6991a03edaf 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -2,7 +2,6 @@
 pkgname=python-xmldiff
 version=2.4
 revision=1
-archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,14 +18,12 @@ alternatives="xmldiff:xmldiff:/usr/bin/xmldiff2"
 replaces="xmldiff>=0"
 
 xmldiff_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 python3-xmldiff_package() {
-	archs=noarch
 	depends="python3-lxml python3-six python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="xmldiff:xmldiff:/usr/bin/xmldiff3"
diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index b3d7ef042e8..925469ed211 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -2,7 +2,6 @@
 pkgname=python-xmltodict
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module
 pycompile_module="xmltodict.py"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-xmltodict_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="xmltodict.py"
 	depends="python3"
diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index d0b51ba637a..3ec999d2d8c 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -2,7 +2,6 @@
 pkgname=python-yamllint
 version=1.15.0
 revision=2
-archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module
 pycompile_module="yamllint"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-yamllint_package() {
-	archs=noarch
 	depends="python3-pathspec python3-setuptools python3-yaml"
 	pycompile_module="yamllint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index 4a44b0c926e..a254226ce8c 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-zc.lockfile
 version=2.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zc/lockfile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-zc.lockfile_package() {
-	archs=noarch
 	pycompile_module="zc/lockfile"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zipp/template b/srcpkgs/python-zipp/template
index c58f294006f..16c30842069 100644
--- a/srcpkgs/python-zipp/template
+++ b/srcpkgs/python-zipp/template
@@ -2,7 +2,6 @@
 pkgname=python-zipp
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="zipp-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 2c7390127ac..cdc08a374f0 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -2,7 +2,6 @@
 pkgname=python-zipstream
 version=1.1.4
 revision=4
-archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module
 pycompile_module="zipstream"
@@ -16,7 +15,6 @@ distfiles="https://github.com/allanlei/python-zipstream/archive/v${version}.tar.
 checksum=32a7a4bdb786914445589595273beffbbf9b6a0a3a3dc2cf19ea96114bd2abd7
 
 python3-zipstream_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="zipstream"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python3-3to2/template b/srcpkgs/python3-3to2/template
index 38558f1fcff..99e585a0a63 100644
--- a/srcpkgs/python3-3to2/template
+++ b/srcpkgs/python3-3to2/template
@@ -2,7 +2,6 @@
 pkgname=python3-3to2
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module
 pycompile_module="lib3to2"
diff --git a/srcpkgs/python3-CherryPy/template b/srcpkgs/python3-CherryPy/template
index 2b5fa77a786..b57d61c44db 100644
--- a/srcpkgs/python3-CherryPy/template
+++ b/srcpkgs/python3-CherryPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-CherryPy
 version=18.6.0
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ConfigArgParse/template b/srcpkgs/python3-ConfigArgParse/template
index ae8d5820cc8..793005a680f 100644
--- a/srcpkgs/python3-ConfigArgParse/template
+++ b/srcpkgs/python3-ConfigArgParse/template
@@ -2,7 +2,6 @@
 pkgname=python3-ConfigArgParse
 version=1.1
 revision=1
-archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python3-module
 pycompile_module="configargparse.py"
diff --git a/srcpkgs/python3-Django/template b/srcpkgs/python3-Django/template
index 9f1a08f968d..5d9a26ba6c3 100644
--- a/srcpkgs/python3-Django/template
+++ b/srcpkgs/python3-Django/template
@@ -2,7 +2,6 @@
 pkgname=python3-Django
 version=3.0.7
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-EasyProcess/template b/srcpkgs/python3-EasyProcess/template
index 725467884d4..bc740b46c59 100644
--- a/srcpkgs/python3-EasyProcess/template
+++ b/srcpkgs/python3-EasyProcess/template
@@ -2,7 +2,6 @@
 pkgname=python3-EasyProcess
 version=0.3
 revision=1
-archs=noarch
 wrksrc=EasyProcess-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-Mail/template b/srcpkgs/python3-Flask-Mail/template
index f1e31e984d0..01e568eacdf 100644
--- a/srcpkgs/python3-Flask-Mail/template
+++ b/srcpkgs/python3-Flask-Mail/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-Mail
 version=0.9.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-RESTful/template b/srcpkgs/python3-Flask-RESTful/template
index 74f5be02359..5900fc17409 100644
--- a/srcpkgs/python3-Flask-RESTful/template
+++ b/srcpkgs/python3-Flask-RESTful/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-RESTful
 version=0.3.8
 revision=1
-archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-SQLAlchemy/template b/srcpkgs/python3-Flask-SQLAlchemy/template
index 392425b0610..65d9a9da023 100644
--- a/srcpkgs/python3-Flask-SQLAlchemy/template
+++ b/srcpkgs/python3-Flask-SQLAlchemy/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-SQLAlchemy
 version=2.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-User/template b/srcpkgs/python3-Flask-User/template
index 1de87f20bf4..cae7df2f916 100644
--- a/srcpkgs/python3-Flask-User/template
+++ b/srcpkgs/python3-Flask-User/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-User
 version=1.0.2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Inflector/template b/srcpkgs/python3-Inflector/template
index e890c1ad256..2e777e3d1e2 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -2,7 +2,6 @@
 pkgname=python3-Inflector
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Markdown/template b/srcpkgs/python3-Markdown/template
index 3c2e12cbe8d..6373522906b 100644
--- a/srcpkgs/python3-Markdown/template
+++ b/srcpkgs/python3-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python3-Markdown
 version=3.2.2
 revision=1
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-MechanicalSoup/template b/srcpkgs/python3-MechanicalSoup/template
index 5a3b0b3eb03..379cfad07b1 100644
--- a/srcpkgs/python3-MechanicalSoup/template
+++ b/srcpkgs/python3-MechanicalSoup/template
@@ -2,7 +2,6 @@
 pkgname=python3-MechanicalSoup
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module
 pycompile_module="mechanicalsoup"
diff --git a/srcpkgs/python3-Pebble/template b/srcpkgs/python3-Pebble/template
index 0d91d52c6d1..b000c3120ae 100644
--- a/srcpkgs/python3-Pebble/template
+++ b/srcpkgs/python3-Pebble/template
@@ -2,7 +2,6 @@
 pkgname=python3-Pebble
 version=4.5.3
 revision=1
-archs=noarch
 wrksrc=Pebble-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyBrowserID/template b/srcpkgs/python3-PyBrowserID/template
index eefd0175f1b..a67482469c2 100644
--- a/srcpkgs/python3-PyBrowserID/template
+++ b/srcpkgs/python3-PyBrowserID/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyBrowserID
 version=0.14.0
 revision=3
-archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module
 pycompile_module="browserid"
diff --git a/srcpkgs/python3-PyFxA/template b/srcpkgs/python3-PyFxA/template
index 6fc6791efdd..47f332200e4 100644
--- a/srcpkgs/python3-PyFxA/template
+++ b/srcpkgs/python3-PyFxA/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyFxA
 version=0.7.3
 revision=2
-archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module
 pycompile_module="fxa"
diff --git a/srcpkgs/python3-PyPDF2/template b/srcpkgs/python3-PyPDF2/template
index 75289b4f3ca..bb9b668ba1b 100644
--- a/srcpkgs/python3-PyPDF2/template
+++ b/srcpkgs/python3-PyPDF2/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyPDF2
 version=1.26.0
 revision=1
-archs=noarch
 wrksrc="PyPDF2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyVirtualDisplay/template b/srcpkgs/python3-PyVirtualDisplay/template
index e7c42f99c4e..589e669a917 100644
--- a/srcpkgs/python3-PyVirtualDisplay/template
+++ b/srcpkgs/python3-PyVirtualDisplay/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyVirtualDisplay
 version=1.3.2
 revision=1
-archs=noarch
 wrksrc=PyVirtualDisplay-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-QtPy/template b/srcpkgs/python3-QtPy/template
index 2ddc8b313ee..6a32de69c52 100644
--- a/srcpkgs/python3-QtPy/template
+++ b/srcpkgs/python3-QtPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-QtPy
 version=1.9.0
 revision=1
-archs=noarch
 wrksrc=QtPy-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ReParser/template b/srcpkgs/python3-ReParser/template
index 5959de9d0e3..8de97219a45 100644
--- a/srcpkgs/python3-ReParser/template
+++ b/srcpkgs/python3-ReParser/template
@@ -2,7 +2,6 @@
 pkgname=python3-ReParser
 version=1.4.3
 revision=2
-archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module
 pycompile_module="reparser.py"
diff --git a/srcpkgs/python3-Ropper/template b/srcpkgs/python3-Ropper/template
index 6cf233bd99a..ea8c89c4de8 100644
--- a/srcpkgs/python3-Ropper/template
+++ b/srcpkgs/python3-Ropper/template
@@ -2,7 +2,6 @@
 pkgname=python3-Ropper
 version=1.13.5
 revision=1
-archs="noarch"
 wrksrc="Ropper-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-SecretStorage/template b/srcpkgs/python3-SecretStorage/template
index 864d1385411..1944bf60a4f 100644
--- a/srcpkgs/python3-SecretStorage/template
+++ b/srcpkgs/python3-SecretStorage/template
@@ -2,7 +2,6 @@
 pkgname=python3-SecretStorage
 version=3.1.2
 revision=1
-archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module
 pycompile_module="secretstorage"
diff --git a/srcpkgs/python3-SoCo/template b/srcpkgs/python3-SoCo/template
index 9a27dcdb264..b25879f7b83 100644
--- a/srcpkgs/python3-SoCo/template
+++ b/srcpkgs/python3-SoCo/template
@@ -2,7 +2,6 @@
 pkgname=python3-SoCo
 version=0.18.1
 revision=2
-archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module
 pycompile_module="soco"
diff --git a/srcpkgs/python3-Sphinx/template b/srcpkgs/python3-Sphinx/template
index bc4363063b0..8348d5888e8 100644
--- a/srcpkgs/python3-Sphinx/template
+++ b/srcpkgs/python3-Sphinx/template
@@ -2,7 +2,6 @@
 pkgname=python3-Sphinx
 version=3.1.2
 revision=1
-archs=noarch
 wrksrc=Sphinx-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Telethon/template b/srcpkgs/python3-Telethon/template
index 25ccd5200e5..008835cd554 100644
--- a/srcpkgs/python3-Telethon/template
+++ b/srcpkgs/python3-Telethon/template
@@ -2,7 +2,6 @@
 pkgname=python3-Telethon
 version=1.13.0
 revision=2
-archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-TxSNI/template b/srcpkgs/python3-TxSNI/template
index 22b38d1d3cf..a24785ee8f5 100644
--- a/srcpkgs/python3-TxSNI/template
+++ b/srcpkgs/python3-TxSNI/template
@@ -2,7 +2,6 @@
 pkgname=python3-TxSNI
 version=0.1.9
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="TxSNI-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-WebOb/template b/srcpkgs/python3-WebOb/template
index 53e63879f2c..51d94de11ce 100644
--- a/srcpkgs/python3-WebOb/template
+++ b/srcpkgs/python3-WebOb/template
@@ -2,7 +2,6 @@
 pkgname=python3-WebOb
 version=1.8.5
 revision=2
-archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module
 pycompile_module="webob"
diff --git a/srcpkgs/python3-XlsxWriter/template b/srcpkgs/python3-XlsxWriter/template
index b991457e01e..d8ed07a40e2 100644
--- a/srcpkgs/python3-XlsxWriter/template
+++ b/srcpkgs/python3-XlsxWriter/template
@@ -2,7 +2,6 @@
 pkgname=python3-XlsxWriter
 version=1.1.8
 revision=2
-archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module
 pycompile_module="XlsxWriter"
diff --git a/srcpkgs/python3-acme/template b/srcpkgs/python3-acme/template
index b8a0c7888c2..601c681e15a 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -2,7 +2,6 @@
 pkgname=python3-acme
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioamqp/template b/srcpkgs/python3-aioamqp/template
index 861cec8f543..cbe7c34a0f4 100644
--- a/srcpkgs/python3-aioamqp/template
+++ b/srcpkgs/python3-aioamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioamqp
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="aioamqp-aioamqp-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiodns/template b/srcpkgs/python3-aiodns/template
index bca5802ef69..147fc1a5591 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiodns
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiofiles/template b/srcpkgs/python3-aiofiles/template
index 61d4d081821..b588a2b1583 100644
--- a/srcpkgs/python3-aiofiles/template
+++ b/srcpkgs/python3-aiofiles/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiofiles
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp-cors/template b/srcpkgs/python3-aiohttp-cors/template
index b621716e3cd..ee29a0ee68e 100644
--- a/srcpkgs/python3-aiohttp-cors/template
+++ b/srcpkgs/python3-aiohttp-cors/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index f13b0598456..326c17ce4e5 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors2
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-sse-client/template b/srcpkgs/python3-aiohttp-sse-client/template
index 6599b036e97..b5e1aa5e3ca 100644
--- a/srcpkgs/python3-aiohttp-sse-client/template
+++ b/srcpkgs/python3-aiohttp-sse-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-sse-client
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp_socks/template b/srcpkgs/python3-aiohttp_socks/template
index 10ab967ef76..572903c6752 100644
--- a/srcpkgs/python3-aiohttp_socks/template
+++ b/srcpkgs/python3-aiohttp_socks/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp_socks
 version=0.2.2
 revision=2
-archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_socks"
diff --git a/srcpkgs/python3-aioinflux/template b/srcpkgs/python3-aioinflux/template
index d63da0c2ccc..08a7bfe251b 100644
--- a/srcpkgs/python3-aioinflux/template
+++ b/srcpkgs/python3-aioinflux/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioinflux
 version=0.9.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aionotify/template b/srcpkgs/python3-aionotify/template
index 93d857f71b6..15e147e5f99 100644
--- a/srcpkgs/python3-aionotify/template
+++ b/srcpkgs/python3-aionotify/template
@@ -2,7 +2,6 @@
 pkgname=python3-aionotify
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="aionotify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioredis/template b/srcpkgs/python3-aioredis/template
index c93ad443386..d6d1143b616 100644
--- a/srcpkgs/python3-aioredis/template
+++ b/srcpkgs/python3-aioredis/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioredis
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiorpcx/template b/srcpkgs/python3-aiorpcx/template
index 3e25da6752f..e78840575e7 100644
--- a/srcpkgs/python3-aiorpcx/template
+++ b/srcpkgs/python3-aiorpcx/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiorpcx
 version=0.18.4
 revision=1
-archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module
 pycompile_module="aiorpcx"
diff --git a/srcpkgs/python3-altgraph/template b/srcpkgs/python3-altgraph/template
index 2bf433edb6e..76f7663a6e6 100644
--- a/srcpkgs/python3-altgraph/template
+++ b/srcpkgs/python3-altgraph/template
@@ -2,7 +2,6 @@
 pkgname=python3-altgraph
 version=0.16.1
 revision=2
-archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module
 pycompile_module="altgraph"
diff --git a/srcpkgs/python3-aniso8601/template b/srcpkgs/python3-aniso8601/template
index 0253b89b5a3..667b0b101b7 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -2,7 +2,6 @@
 pkgname=python3-aniso8601
 version=8.0.0
 revision=2
-archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"
 build_style=python3-module
diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index cb3832799a1..723e1bacaa5 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -2,7 +2,6 @@
 pkgname=python3-ansible-lint
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="ansible-lint-${version}"
 build_style=python3-module
 pycompile_module="ansiblelint"
diff --git a/srcpkgs/python3-anytree/template b/srcpkgs/python3-anytree/template
index 5bd9b407017..1406d04febc 100644
--- a/srcpkgs/python3-anytree/template
+++ b/srcpkgs/python3-anytree/template
@@ -2,7 +2,6 @@
 pkgname=python3-anytree
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-applib/template b/srcpkgs/python3-applib/template
index 3a5a4ed5d40..717849c614f 100644
--- a/srcpkgs/python3-applib/template
+++ b/srcpkgs/python3-applib/template
@@ -2,7 +2,6 @@
 pkgname=python3-applib
 version=1.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="applib-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-argcomplete/template b/srcpkgs/python3-argcomplete/template
index 8b7a61dc11a..c637a4aedbc 100644
--- a/srcpkgs/python3-argcomplete/template
+++ b/srcpkgs/python3-argcomplete/template
@@ -3,7 +3,6 @@ pkgname=python3-argcomplete
 version=1.12.0
 revision=1
 wrksrc="argcomplete-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="argcomplete"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-astral/template b/srcpkgs/python3-astral/template
index d290eee7806..9553913111e 100644
--- a/srcpkgs/python3-astral/template
+++ b/srcpkgs/python3-astral/template
@@ -2,7 +2,6 @@
 pkgname=python3-astral
 version=2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-astroid/template b/srcpkgs/python3-astroid/template
index 261dfacd70c..302fe6f914a 100644
--- a/srcpkgs/python3-astroid/template
+++ b/srcpkgs/python3-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python3-astroid
 version=2.3.3
 revision=3
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-async-timeout/template b/srcpkgs/python3-async-timeout/template
index 854584fb5b2..729fe1b46c7 100644
--- a/srcpkgs/python3-async-timeout/template
+++ b/srcpkgs/python3-async-timeout/template
@@ -2,7 +2,6 @@
 pkgname=python3-async-timeout
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module
 pycompile_module="async_timeout"
diff --git a/srcpkgs/python3-async_generator/template b/srcpkgs/python3-async_generator/template
index 20d9f7ea0d1..16d43ef99cf 100644
--- a/srcpkgs/python3-async_generator/template
+++ b/srcpkgs/python3-async_generator/template
@@ -2,7 +2,6 @@
 pkgname=python3-async_generator
 version=1.10
 revision=2
-archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module
 pycompile_module="async_generator"
diff --git a/srcpkgs/python3-atspi/template b/srcpkgs/python3-atspi/template
index a33a374fe18..f3024c4ceb5 100644
--- a/srcpkgs/python3-atspi/template
+++ b/srcpkgs/python3-atspi/template
@@ -2,7 +2,6 @@
 pkgname=python3-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
diff --git a/srcpkgs/python3-authres/template b/srcpkgs/python3-authres/template
index 27f543c33ba..666a0fb7c06 100644
--- a/srcpkgs/python3-authres/template
+++ b/srcpkgs/python3-authres/template
@@ -2,7 +2,6 @@
 pkgname=python3-authres
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="authres-${version}"
 build_style=python3-module
 pycompile_module=authres
diff --git a/srcpkgs/python3-autobahn/template b/srcpkgs/python3-autobahn/template
index fb3c80d8bb7..69d75e9178a 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -2,7 +2,6 @@
 pkgname=python3-autobahn
 version=20.7.1
 revision=1
-archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-blessed/template b/srcpkgs/python3-blessed/template
index a4a2274bd89..abdd6bb18a5 100644
--- a/srcpkgs/python3-blessed/template
+++ b/srcpkgs/python3-blessed/template
@@ -2,7 +2,6 @@
 pkgname=python3-blessed
 version=1.17.9
 revision=1
-archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-bokeh/template b/srcpkgs/python3-bokeh/template
index 18d8258acb3..fc07fd29ea2 100644
--- a/srcpkgs/python3-bokeh/template
+++ b/srcpkgs/python3-bokeh/template
@@ -2,7 +2,6 @@
 pkgname=python3-bokeh
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 make_build_args="--build-js"
diff --git a/srcpkgs/python3-boltons/template b/srcpkgs/python3-boltons/template
index 78f0f03a762..4921021252a 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -2,7 +2,6 @@
 pkgname=python3-boltons
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module
 pycompile_module="boltons"
diff --git a/srcpkgs/python3-boto3/template b/srcpkgs/python3-boto3/template
index 3c7510e1b3b..5fd7a3b6f6d 100644
--- a/srcpkgs/python3-boto3/template
+++ b/srcpkgs/python3-boto3/template
@@ -2,7 +2,6 @@
 pkgname=python3-boto3
 version=1.14.42
 revision=1
-archs=noarch
 wrksrc="boto3-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-breathe/template b/srcpkgs/python3-breathe/template
index b82c89493ff..423a0faa578 100644
--- a/srcpkgs/python3-breathe/template
+++ b/srcpkgs/python3-breathe/template
@@ -2,7 +2,6 @@
 pkgname=python3-breathe
 version=4.19.2
 revision=1
-archs=noarch
 wrksrc="breathe-${version}"
 build_style=python3-module
 _pyreqs="python3-Sphinx python3-docutils python3-six"
diff --git a/srcpkgs/python3-cachetools/template b/srcpkgs/python3-cachetools/template
index 6b14d89eff2..7220d8cdb09 100644
--- a/srcpkgs/python3-cachetools/template
+++ b/srcpkgs/python3-cachetools/template
@@ -2,7 +2,6 @@
 pkgname=python3-cachetools
 version=4.1.0
 revision=1
-archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-canonicaljson/template b/srcpkgs/python3-canonicaljson/template
index 1cbe15f14ae..923055294fd 100644
--- a/srcpkgs/python3-canonicaljson/template
+++ b/srcpkgs/python3-canonicaljson/template
@@ -2,7 +2,6 @@
 pkgname=python3-canonicaljson
 version=1.1.4
 revision=2
-archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module
 pycompile_module="canonicaljson.py"
diff --git a/srcpkgs/python3-casttube/template b/srcpkgs/python3-casttube/template
index 9e5544b0101..9d6798ee872 100644
--- a/srcpkgs/python3-casttube/template
+++ b/srcpkgs/python3-casttube/template
@@ -2,7 +2,6 @@
 pkgname=python3-casttube
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module
 pycompile_module="casttube"
diff --git a/srcpkgs/python3-certifi/template b/srcpkgs/python3-certifi/template
index 35807ad3642..185bf0b31ab 100644
--- a/srcpkgs/python3-certifi/template
+++ b/srcpkgs/python3-certifi/template
@@ -2,7 +2,6 @@
 pkgname=python3-certifi
 version=2020.06.20
 revision=1
-archs=noarch
 wrksrc="python-certifi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-changelogs/template b/srcpkgs/python3-changelogs/template
index d9a7784cf3b..8f4cb4a66b1 100644
--- a/srcpkgs/python3-changelogs/template
+++ b/srcpkgs/python3-changelogs/template
@@ -2,7 +2,6 @@
 pkgname=python3-changelogs
 version=0.14.0
 revision=2
-archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module
 pycompile_module="changelogs"
diff --git a/srcpkgs/python3-chess/template b/srcpkgs/python3-chess/template
index 3bf7847302e..82abdbe0fc6 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -2,7 +2,6 @@
 pkgname=python3-chess
 version=0.30.1
 revision=1
-archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-chromecast/template b/srcpkgs/python3-chromecast/template
index e83286d30ce..1f581a88eb8 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -2,7 +2,6 @@
 pkgname=python3-chromecast
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module
 pycompile_module="pychromecast"
diff --git a/srcpkgs/python3-cjkwrap/template b/srcpkgs/python3-cjkwrap/template
index fa951f26223..04fbf1440af 100644
--- a/srcpkgs/python3-cjkwrap/template
+++ b/srcpkgs/python3-cjkwrap/template
@@ -2,7 +2,6 @@
 pkgname=python3-cjkwrap
 version=2.2
 revision=2
-archs=noarch
 wrksrc="cjkwrap-v${version}"
 build_style=python3-module
 pycompile_module="cjkwrap.py"
diff --git a/srcpkgs/python3-cli-ui/template b/srcpkgs/python3-cli-ui/template
index b8e8c97d96f..47ed99e080f 100644
--- a/srcpkgs/python3-cli-ui/template
+++ b/srcpkgs/python3-cli-ui/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli-ui
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module
 pycompile_module="cli_ui"
diff --git a/srcpkgs/python3-cli_helpers/template b/srcpkgs/python3-cli_helpers/template
index 87b284e3cb5..d576e3f3e11 100644
--- a/srcpkgs/python3-cli_helpers/template
+++ b/srcpkgs/python3-cli_helpers/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli_helpers
 version=1.2.1
 revision=2
-archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module
 pycompile_module="cli_helpers"
diff --git a/srcpkgs/python3-click-plugins/template b/srcpkgs/python3-click-plugins/template
index 0ef6ce6b248..54b2de90f7d 100644
--- a/srcpkgs/python3-click-plugins/template
+++ b/srcpkgs/python3-click-plugins/template
@@ -2,7 +2,6 @@
 pkgname=python3-click-plugins
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module
 pycompile_module="click-plugins"
diff --git a/srcpkgs/python3-cloudscraper/template b/srcpkgs/python3-cloudscraper/template
index 01cac007c83..57575537070 100644
--- a/srcpkgs/python3-cloudscraper/template
+++ b/srcpkgs/python3-cloudscraper/template
@@ -2,7 +2,6 @@
 pkgname=python3-cloudscraper
 version=1.2.40
 revision=1
-archs=noarch
 wrksrc=cloudscraper-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-cmdln/template b/srcpkgs/python3-cmdln/template
index 2b7e21f3980..d0f84304fca 100644
--- a/srcpkgs/python3-cmdln/template
+++ b/srcpkgs/python3-cmdln/template
@@ -2,7 +2,6 @@
 pkgname=python3-cmdln
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module
 pycompile_module="cmdln.py"
diff --git a/srcpkgs/python3-colorclass/template b/srcpkgs/python3-colorclass/template
index ed8d2d2ea02..3874e6504d5 100644
--- a/srcpkgs/python3-colorclass/template
+++ b/srcpkgs/python3-colorclass/template
@@ -2,7 +2,6 @@
 pkgname=python3-colorclass
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module
 pycompile_module="colorclass"
diff --git a/srcpkgs/python3-crccheck/template b/srcpkgs/python3-crccheck/template
index a0a86e0ae2c..31d05495d2d 100644
--- a/srcpkgs/python3-crccheck/template
+++ b/srcpkgs/python3-crccheck/template
@@ -2,7 +2,6 @@
 pkgname=python3-crccheck
 version=0.6
 revision=2
-archs=noarch
 wrksrc="crccheck-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dateparser/template b/srcpkgs/python3-dateparser/template
index e36395eea8a..16257fd04ed 100644
--- a/srcpkgs/python3-dateparser/template
+++ b/srcpkgs/python3-dateparser/template
@@ -2,7 +2,6 @@
 pkgname=python3-dateparser
 version=0.7.6
 revision=1
-archs=noarch
 wrksrc=dateparser-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dbusmock/template b/srcpkgs/python3-dbusmock/template
index d8330a210c0..aa46bf5ad74 100644
--- a/srcpkgs/python3-dbusmock/template
+++ b/srcpkgs/python3-dbusmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-dbusmock
 version=0.19
 revision=1
-archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-deprecation/template b/srcpkgs/python3-deprecation/template
index 5983a0aadbf..0c87034caf2 100644
--- a/srcpkgs/python3-deprecation/template
+++ b/srcpkgs/python3-deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-deprecation
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-discid/template b/srcpkgs/python3-discid/template
index de3f5e571db..981445e5136 100644
--- a/srcpkgs/python3-discid/template
+++ b/srcpkgs/python3-discid/template
@@ -2,7 +2,6 @@
 pkgname=python3-discid
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module
 pycompile_module=discid
diff --git a/srcpkgs/python3-distlib/template b/srcpkgs/python3-distlib/template
index ff983ca9b6d..36186ff0700 100644
--- a/srcpkgs/python3-distlib/template
+++ b/srcpkgs/python3-distlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-distlib
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="distlib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dkimpy/template b/srcpkgs/python3-dkimpy/template
index 836f46d7aec..c334ec70bf6 100644
--- a/srcpkgs/python3-dkimpy/template
+++ b/srcpkgs/python3-dkimpy/template
@@ -2,7 +2,6 @@
 pkgname=python3-dkimpy
 version=1.0.0
 revision=2
-archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python3-module
 pycompile_module="dkim"
@@ -30,7 +29,6 @@ post_install() {
 
 python-dkimpy_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-dkimpy"
 	short_desc+=" - transitional dummy package"
 }
diff --git a/srcpkgs/python3-doi/template b/srcpkgs/python3-doi/template
index 29b9036922c..04c80853ecc 100644
--- a/srcpkgs/python3-doi/template
+++ b/srcpkgs/python3-doi/template
@@ -2,7 +2,6 @@
 pkgname=python3-doi
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="python-doi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dpkt/template b/srcpkgs/python3-dpkt/template
index 5ca1a6b1dbb..8045291e788 100644
--- a/srcpkgs/python3-dpkt/template
+++ b/srcpkgs/python3-dpkt/template
@@ -2,7 +2,6 @@
 pkgname=python3-dpkt
 version=1.9.2
 revision=1
-archs=noarch
 wrksrc="dpkt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-easygui/template b/srcpkgs/python3-easygui/template
index a9a2f66d865..82e665df9b6 100644
--- a/srcpkgs/python3-easygui/template
+++ b/srcpkgs/python3-easygui/template
@@ -2,7 +2,6 @@
 pkgname=python3-easygui
 version=0.98.1
 revision=2
-archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module
 pycompile_module="easygui"
diff --git a/srcpkgs/python3-elementpath/template b/srcpkgs/python3-elementpath/template
index 916ce845b66..631c2624e72 100644
--- a/srcpkgs/python3-elementpath/template
+++ b/srcpkgs/python3-elementpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-elementpath
 version=1.4.6
 revision=1
-archs=noarch
 wrksrc=elementpath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-eliot/template b/srcpkgs/python3-eliot/template
index eca2c769d45..e139012e680 100644
--- a/srcpkgs/python3-eliot/template
+++ b/srcpkgs/python3-eliot/template
@@ -2,7 +2,6 @@
 pkgname=python3-eliot
 version=1.12.0
 revision=1
-archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-enchant/template b/srcpkgs/python3-enchant/template
index 1540cc34bc8..6c7f5a8837d 100644
--- a/srcpkgs/python3-enchant/template
+++ b/srcpkgs/python3-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python3-enchant
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools enchant-devel"
diff --git a/srcpkgs/python3-etesync/template b/srcpkgs/python3-etesync/template
index c0822245056..6c2218c4732 100644
--- a/srcpkgs/python3-etesync/template
+++ b/srcpkgs/python3-etesync/template
@@ -2,7 +2,6 @@
 pkgname=python3-etesync
 version=0.11.1
 revision=1
-archs=noarch
 wrksrc="etesync-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ffmpeg-python/template b/srcpkgs/python3-ffmpeg-python/template
index 137a864711f..ba0c070ffe5 100644
--- a/srcpkgs/python3-ffmpeg-python/template
+++ b/srcpkgs/python3-ffmpeg-python/template
@@ -2,7 +2,6 @@
 pkgname=python3-ffmpeg-python
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="ffmpeg-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fido2/template b/srcpkgs/python3-fido2/template
index fcf8a219ca2..bf76019c3a6 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -3,7 +3,6 @@ pkgname=python3-fido2
 _pkgname=fido2
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-filebytes/template b/srcpkgs/python3-filebytes/template
index 8a7236c705a..1953ab8b4b5 100644
--- a/srcpkgs/python3-filebytes/template
+++ b/srcpkgs/python3-filebytes/template
@@ -2,7 +2,6 @@
 pkgname=python3-filebytes
 version=0.10.2
 revision=1
-archs="noarch"
 wrksrc="filebytes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fishnet/template b/srcpkgs/python3-fishnet/template
index 6280ae8e966..f49689f6843 100644
--- a/srcpkgs/python3-fishnet/template
+++ b/srcpkgs/python3-fishnet/template
@@ -2,7 +2,6 @@
 pkgname=python3-fishnet
 version=1.15.18
 revision=2
-archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module
 pycompile_module="fishnet.py"
diff --git a/srcpkgs/python3-flexmock/template b/srcpkgs/python3-flexmock/template
index 8a7c9a2894d..39e01adee6c 100644
--- a/srcpkgs/python3-flexmock/template
+++ b/srcpkgs/python3-flexmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-flexmock
 version=0.10.4
 revision=2
-archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module
 pycompile_module="flexmock.py"
diff --git a/srcpkgs/python3-freezegun/template b/srcpkgs/python3-freezegun/template
index d8c96e1f1c6..465965a5489 100644
--- a/srcpkgs/python3-freezegun/template
+++ b/srcpkgs/python3-freezegun/template
@@ -2,7 +2,6 @@
 pkgname=python3-freezegun
 version=0.3.15
 revision=1
-archs=noarch
 wrksrc="freezegun-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index 739000a887c..73280ccab1a 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -2,7 +2,6 @@
 pkgname=python3-frozendict
 version=1.2
 revision=2
-archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module
 pycompile_module="frozendict"
diff --git a/srcpkgs/python3-furl/template b/srcpkgs/python3-furl/template
index 5fc53ba21de..71ae4e650d8 100644
--- a/srcpkgs/python3-furl/template
+++ b/srcpkgs/python3-furl/template
@@ -2,7 +2,6 @@
 pkgname=python3-furl
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="furl-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-geojson/template b/srcpkgs/python3-geojson/template
index 90e7d5a0e60..01bd91ec9ab 100644
--- a/srcpkgs/python3-geojson/template
+++ b/srcpkgs/python3-geojson/template
@@ -2,7 +2,6 @@
 pkgname=python3-geojson
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module
 pycompile_module="geojson"
diff --git a/srcpkgs/python3-gitchangelog/template b/srcpkgs/python3-gitchangelog/template
index cc1945f2623..d8ea98a34a5 100644
--- a/srcpkgs/python3-gitchangelog/template
+++ b/srcpkgs/python3-gitchangelog/template
@@ -2,7 +2,6 @@
 pkgname=python3-gitchangelog
 version=3.0.4
 revision=2
-archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module
 pycompile_module="gitchangelog"
diff --git a/srcpkgs/python3-google-api-core/template b/srcpkgs/python3-google-api-core/template
index e2f78f172cb..bcfa3fa83b4 100644
--- a/srcpkgs/python3-google-api-core/template
+++ b/srcpkgs/python3-google-api-core/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-core
 version=1.17.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-api-python-client/template b/srcpkgs/python3-google-api-python-client/template
index 12859dd49ec..34000c8412f 100644
--- a/srcpkgs/python3-google-api-python-client/template
+++ b/srcpkgs/python3-google-api-python-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-python-client
 version=1.8.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-auth-httplib2/template b/srcpkgs/python3-google-auth-httplib2/template
index 230494ba905..7cade87f4ca 100644
--- a/srcpkgs/python3-google-auth-httplib2/template
+++ b/srcpkgs/python3-google-auth-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth-httplib2
 version=0.0.3
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-google-auth/template b/srcpkgs/python3-google-auth/template
index 8e18145cda9..7067d8daeb5 100644
--- a/srcpkgs/python3-google-auth/template
+++ b/srcpkgs/python3-google-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth
 version=1.16.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-googleapis-common-protos/template b/srcpkgs/python3-googleapis-common-protos/template
index 1b0747910e0..326f783ddab 100644
--- a/srcpkgs/python3-googleapis-common-protos/template
+++ b/srcpkgs/python3-googleapis-common-protos/template
@@ -2,7 +2,6 @@
 pkgname=python3-googleapis-common-protos
 version=1.51.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-graphviz/template b/srcpkgs/python3-graphviz/template
index 2e7ec3bd76a..f1282e5d36c 100644
--- a/srcpkgs/python3-graphviz/template
+++ b/srcpkgs/python3-graphviz/template
@@ -2,7 +2,6 @@
 pkgname=python3-graphviz
 version=0.13.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="graphviz"
diff --git a/srcpkgs/python3-hawkauthlib/template b/srcpkgs/python3-hawkauthlib/template
index 1456fa7d814..4fc1166f99c 100644
--- a/srcpkgs/python3-hawkauthlib/template
+++ b/srcpkgs/python3-hawkauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-hawkauthlib
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module
 pycompile_module="hawkauthlib"
diff --git a/srcpkgs/python3-hjson/template b/srcpkgs/python3-hjson/template
index 9cd01b86f08..c4d60a580a8 100644
--- a/srcpkgs/python3-hjson/template
+++ b/srcpkgs/python3-hjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-hjson
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="hjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hkdf/template b/srcpkgs/python3-hkdf/template
index 0faaf05b5fe..fef3e6d4dc7 100644
--- a/srcpkgs/python3-hkdf/template
+++ b/srcpkgs/python3-hkdf/template
@@ -2,7 +2,6 @@
 pkgname=python3-hkdf
 version=0.0.3
 revision=2
-archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module
 pycompile_module="hkdf.py"
diff --git a/srcpkgs/python3-html2text/template b/srcpkgs/python3-html2text/template
index 54e9dab354b..e06075d34be 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -2,7 +2,6 @@
 pkgname=python3-html2text
 version=2020.1.16
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python3-humanize/template b/srcpkgs/python3-humanize/template
index cbf4398d976..7062c5589b8 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -2,7 +2,6 @@
 pkgname=python3-humanize
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hypercorn/template b/srcpkgs/python3-hypercorn/template
index a2280eba7fd..c2eabe98d17 100644
--- a/srcpkgs/python3-hypercorn/template
+++ b/srcpkgs/python3-hypercorn/template
@@ -2,7 +2,6 @@
 pkgname=python3-hypercorn
 version=0.10.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-i3ipc/template b/srcpkgs/python3-i3ipc/template
index df0c16a161b..72518ad93a3 100644
--- a/srcpkgs/python3-i3ipc/template
+++ b/srcpkgs/python3-i3ipc/template
@@ -2,7 +2,6 @@
 pkgname=python3-i3ipc
 version=2.2.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index 0608fb7278c..75126a355ca 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -2,7 +2,6 @@
 pkgname=python3-idna-ssl
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module
 pycompile_module="idna_ssl.py"
diff --git a/srcpkgs/python3-ifaddr/template b/srcpkgs/python3-ifaddr/template
index 803404735be..e1e78db4e0a 100644
--- a/srcpkgs/python3-ifaddr/template
+++ b/srcpkgs/python3-ifaddr/template
@@ -2,7 +2,6 @@
 pkgname=python3-ifaddr
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-influxdb/template b/srcpkgs/python3-influxdb/template
index 366eea281af..62b135c20b7 100644
--- a/srcpkgs/python3-influxdb/template
+++ b/srcpkgs/python3-influxdb/template
@@ -2,7 +2,6 @@
 pkgname=python3-influxdb
 version=5.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python-setuptools"
diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index f40bfc437bb..6343085ce87 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython
 version=7.17.0
 revision=1
-archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_genutils/template b/srcpkgs/python3-ipython_genutils/template
index b2754424178..190fa6f9b5f 100644
--- a/srcpkgs/python3-ipython_genutils/template
+++ b/srcpkgs/python3-ipython_genutils/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_genutils
 version=0.2.0
 revision=4
-archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_ipykernel/template b/srcpkgs/python3-ipython_ipykernel/template
index c3c0232c14a..19864960761 100644
--- a/srcpkgs/python3-ipython_ipykernel/template
+++ b/srcpkgs/python3-ipython_ipykernel/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_ipykernel
 version=5.2.0
 revision=1
-archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-ipython
diff --git a/srcpkgs/python3-irc/template b/srcpkgs/python3-irc/template
index 714c11dc943..5e4f518e5c3 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -2,7 +2,6 @@
 pkgname=python3-irc
 version=17.1
 revision=2
-archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module
 pycompile_module="irc"
diff --git a/srcpkgs/python3-itunespy/template b/srcpkgs/python3-itunespy/template
index 7a04a945dbd..6ef6b151473 100644
--- a/srcpkgs/python3-itunespy/template
+++ b/srcpkgs/python3-itunespy/template
@@ -2,7 +2,6 @@
 pkgname=python3-itunespy
 version=1.6
 revision=1
-archs=noarch
 wrksrc="itunespy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-janus/template b/srcpkgs/python3-janus/template
index b7388d96975..e7ca53a5773 100644
--- a/srcpkgs/python3-janus/template
+++ b/srcpkgs/python3-janus/template
@@ -2,7 +2,6 @@
 pkgname=python3-janus
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="janus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.classes/template b/srcpkgs/python3-jaraco.classes/template
index 6dbe89cb7f9..15e4996dedc 100644
--- a/srcpkgs/python3-jaraco.classes/template
+++ b/srcpkgs/python3-jaraco.classes/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.classes
 version=3.1.0
 revision=1
-archs=noarch
 wrksrc="jaraco.classes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.collections/template b/srcpkgs/python3-jaraco.collections/template
index 64f78eb4300..0a29387cf13 100644
--- a/srcpkgs/python3-jaraco.collections/template
+++ b/srcpkgs/python3-jaraco.collections/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.collections
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="jaraco.collections-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.functools/template b/srcpkgs/python3-jaraco.functools/template
index ca1ebb066d5..31a7711c5a7 100644
--- a/srcpkgs/python3-jaraco.functools/template
+++ b/srcpkgs/python3-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.functools
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.text/template b/srcpkgs/python3-jaraco.text/template
index a64ba0db7cb..f971a0326a7 100644
--- a/srcpkgs/python3-jaraco.text/template
+++ b/srcpkgs/python3-jaraco.text/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.text
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="jaraco.text-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco/template b/srcpkgs/python3-jaraco/template
index d6ab6b23228..a718dfc9736 100644
--- a/srcpkgs/python3-jaraco/template
+++ b/srcpkgs/python3-jaraco/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco
 version=1.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Namespace package declaration for jaraco (Python3)"
 maintainer="bra1nwave <bra1nwave@protonmail.com>"
diff --git a/srcpkgs/python3-jeepney/template b/srcpkgs/python3-jeepney/template
index 6654f4a7c97..691180ca473 100644
--- a/srcpkgs/python3-jeepney/template
+++ b/srcpkgs/python3-jeepney/template
@@ -2,7 +2,6 @@
 pkgname=python3-jeepney
 version=0.4.3
 revision=1
-archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-josepy/template b/srcpkgs/python3-josepy/template
index 903bd7028ed..cff1341c508 100644
--- a/srcpkgs/python3-josepy/template
+++ b/srcpkgs/python3-josepy/template
@@ -2,7 +2,6 @@
 pkgname=python3-josepy
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module
 pycompile_module="josepy"
diff --git a/srcpkgs/python3-jsondiff/template b/srcpkgs/python3-jsondiff/template
index 9e22f1dc42b..f196830147b 100644
--- a/srcpkgs/python3-jsondiff/template
+++ b/srcpkgs/python3-jsondiff/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsondiff
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="jsondiff-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jsonrpc-server/template b/srcpkgs/python3-jsonrpc-server/template
index b51e185efe9..a259f1f9a37 100644
--- a/srcpkgs/python3-jsonrpc-server/template
+++ b/srcpkgs/python3-jsonrpc-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsonrpc-server
 version=0.3.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_client/template b/srcpkgs/python3-jupyter_client/template
index 6cba34ab0b8..8291700d9ae 100644
--- a/srcpkgs/python3-jupyter_client/template
+++ b/srcpkgs/python3-jupyter_client/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_client
 version=6.1.0
 revision=1
-archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 4b404987cd8..9d03069b213 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_console
 version=6.1.0
 revision=4
-archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template
index ea75fa510a7..5ab8150f31a 100644
--- a/srcpkgs/python3-jupyter_core/template
+++ b/srcpkgs/python3-jupyter_core/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_core
 version=4.6.3
 revision=1
-archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 
 python3-jupyter_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-jupyter_notebook python3-jupyter_console
 	 python3-jupyter_ipywidgets"
 	short_desc="Jupyter metapackage for Void Linux"
diff --git a/srcpkgs/python3-jupyter_ipywidgets/template b/srcpkgs/python3-jupyter_ipywidgets/template
index 7e64279aeec..17b0445e2c8 100644
--- a/srcpkgs/python3-jupyter_ipywidgets/template
+++ b/srcpkgs/python3-jupyter_ipywidgets/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_ipywidgets
 version=7.5.1
 revision=1
-archs=noarch
 _widgetsnbextver=3.5.0
 wrksrc="ipywidgets-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-jupyter_nbconvert/template b/srcpkgs/python3-jupyter_nbconvert/template
index dba1d5a980e..b2c31bbf512 100644
--- a/srcpkgs/python3-jupyter_nbconvert/template
+++ b/srcpkgs/python3-jupyter_nbconvert/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbconvert
 version=5.6.1
 revision=1
-archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_nbformat/template b/srcpkgs/python3-jupyter_nbformat/template
index a46c5697212..8c0e41c0e77 100644
--- a/srcpkgs/python3-jupyter_nbformat/template
+++ b/srcpkgs/python3-jupyter_nbformat/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbformat
 version=5.0.4
 revision=1
-archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_notebook/template b/srcpkgs/python3-jupyter_notebook/template
index cc1727d2ee0..37a127cea7a 100644
--- a/srcpkgs/python3-jupyter_notebook/template
+++ b/srcpkgs/python3-jupyter_notebook/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_notebook
 version=6.0.3
 revision=1
-archs=noarch
 wrksrc="notebook-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_qtconsole/template b/srcpkgs/python3-jupyter_qtconsole/template
index 0c062662763..65a3a05c1ec 100644
--- a/srcpkgs/python3-jupyter_qtconsole/template
+++ b/srcpkgs/python3-jupyter_qtconsole/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_qtconsole
 version=4.7.1
 revision=1
-archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_widgetsnbextension/template b/srcpkgs/python3-jupyter_widgetsnbextension/template
index e1fe046894c..f64149d86f6 100644
--- a/srcpkgs/python3-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python3-jupyter_widgetsnbextension/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_widgetsnbextension
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyring/template b/srcpkgs/python3-keyring/template
index 97e10618eee..0585163b07e 100644
--- a/srcpkgs/python3-keyring/template
+++ b/srcpkgs/python3-keyring/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyring
 version=21.2.1
 revision=1
-archs=noarch
 wrksrc="keyring-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyrings-alt/template b/srcpkgs/python3-keyrings-alt/template
index 3052d257d1c..1ac1a6331ee 100644
--- a/srcpkgs/python3-keyrings-alt/template
+++ b/srcpkgs/python3-keyrings-alt/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyrings-alt
 version=3.4.0
 revision=2
-archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-language-server/template b/srcpkgs/python3-language-server/template
index 8ac0842f3b9..333431b4280 100644
--- a/srcpkgs/python3-language-server/template
+++ b/srcpkgs/python3-language-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-language-server
 version=0.34.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macaroons/template b/srcpkgs/python3-macaroons/template
index 7dfb4f3f588..542ba921643 100644
--- a/srcpkgs/python3-macaroons/template
+++ b/srcpkgs/python3-macaroons/template
@@ -2,7 +2,6 @@
 pkgname=python3-macaroons
 version=0.13.0
 revision=3
-archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index 5e65f7993dd..7d966f69d09 100644
--- a/srcpkgs/python3-macholib/template
+++ b/srcpkgs/python3-macholib/template
@@ -2,7 +2,6 @@
 pkgname=python3-macholib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-markdown-math/template b/srcpkgs/python3-markdown-math/template
index b49d58dd79c..b54cf2cd2fc 100644
--- a/srcpkgs/python3-markdown-math/template
+++ b/srcpkgs/python3-markdown-math/template
@@ -2,7 +2,6 @@
 pkgname=python3-markdown-math
 version=0.7
 revision=1
-archs=noarch
 wrksrc=python-markdown-math-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-marshmallow/template b/srcpkgs/python3-marshmallow/template
index 2a3b2329389..7eaba150dd1 100644
--- a/srcpkgs/python3-marshmallow/template
+++ b/srcpkgs/python3-marshmallow/template
@@ -2,7 +2,6 @@
 pkgname=python3-marshmallow
 version=3.7.0
 revision=1
-archs=noarch
 wrksrc="marshmallow-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index b5056f1eba5..3ecf932aa24 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 python3-matplotlib-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove "${py3_sitelib}/matplotlib/mpl-data"
diff --git a/srcpkgs/python3-matrix-nio/template b/srcpkgs/python3-matrix-nio/template
index fe28e1596f8..a8d00ffa34e 100644
--- a/srcpkgs/python3-matrix-nio/template
+++ b/srcpkgs/python3-matrix-nio/template
@@ -2,7 +2,6 @@
 pkgname=python3-matrix-nio
 version=0.14.1
 revision=1
-archs=noarch
 wrksrc="matrix-nio-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-minidb/template b/srcpkgs/python3-minidb/template
index 140964b7a8a..540527fe2c6 100644
--- a/srcpkgs/python3-minidb/template
+++ b/srcpkgs/python3-minidb/template
@@ -2,7 +2,6 @@
 pkgname=python3-minidb
 version=2.0.2
 revision=3
-archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module
 pycompile_module="minidb.py"
diff --git a/srcpkgs/python3-mock/template b/srcpkgs/python3-mock/template
index 5506d4a70c2..134b61f8bad 100644
--- a/srcpkgs/python3-mock/template
+++ b/srcpkgs/python3-mock/template
@@ -2,7 +2,6 @@
 pkgname=python3-mock
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="mock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index 113e728c9d8..32d046f3c80 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -2,7 +2,6 @@
 pkgname=python3-more-itertools
 version=8.0.2
 revision=1
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python3-mpv/template b/srcpkgs/python3-mpv/template
index 984b7baa224..88d23b1690e 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -2,7 +2,6 @@
 pkgname=python3-mpv
 version=0.4.5
 revision=1
-archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-msoffcrypto-tool/template b/srcpkgs/python3-msoffcrypto-tool/template
index 6ae64cb2b1d..943bee51b52 100644
--- a/srcpkgs/python3-msoffcrypto-tool/template
+++ b/srcpkgs/python3-msoffcrypto-tool/template
@@ -2,7 +2,6 @@
 pkgname=python3-msoffcrypto-tool
 version=4.10.2
 revision=2
-archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-munkres/template b/srcpkgs/python3-munkres/template
index d0d0a013e80..3a0291a6d93 100644
--- a/srcpkgs/python3-munkres/template
+++ b/srcpkgs/python3-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python3-munkres
 version=1.1.2
 revision=2
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python3-musicpd/template b/srcpkgs/python3-musicpd/template
index 8c6ba2fb451..6808849a0e6 100644
--- a/srcpkgs/python3-musicpd/template
+++ b/srcpkgs/python3-musicpd/template
@@ -2,7 +2,6 @@
 pkgname=python3-musicpd
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module
 pycompile_module="musicpd.py"
diff --git a/srcpkgs/python3-mypy/template b/srcpkgs/python3-mypy/template
index 5d7f93d5772..32a13b25d45 100644
--- a/srcpkgs/python3-mypy/template
+++ b/srcpkgs/python3-mypy/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy
 version=0.761
 revision=1
-archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module
 pycompile_module="mypy"
diff --git a/srcpkgs/python3-mypy_extensions/template b/srcpkgs/python3-mypy_extensions/template
index e2d12256de5..4112db6fb62 100644
--- a/srcpkgs/python3-mypy_extensions/template
+++ b/srcpkgs/python3-mypy_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy_extensions
 version=0.4.3
 revision=2
-archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module
 pycompile_module="mypy_extensions.py"
diff --git a/srcpkgs/python3-nbxmpp/template b/srcpkgs/python3-nbxmpp/template
index b73a21dfe39..f739c098e51 100644
--- a/srcpkgs/python3-nbxmpp/template
+++ b/srcpkgs/python3-nbxmpp/template
@@ -2,7 +2,6 @@
 pkgname=python3-nbxmpp
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -17,7 +16,6 @@ checksum=ca60c9bd1527fbeac305df90c670f11f2fe79f1304dad1efa0315f7484a34d43
 
 python-nbxmpp_package() {
 	build_style=meta
-	archs=noarch
 	# Someone bumped this package to 1.0.0, which doesn't support Python 2
 	short_desc+=" - Python 2 - removed package"
 }
diff --git a/srcpkgs/python3-neovim/template b/srcpkgs/python3-neovim/template
index b5c705bbafd..cb61c800dac 100644
--- a/srcpkgs/python3-neovim/template
+++ b/srcpkgs/python3-neovim/template
@@ -2,7 +2,6 @@
 pkgname=python3-neovim
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-networkx/template b/srcpkgs/python3-networkx/template
index b993e4427c3..8fdaa74adb4 100644
--- a/srcpkgs/python3-networkx/template
+++ b/srcpkgs/python3-networkx/template
@@ -2,7 +2,6 @@
 pkgname=python3-networkx
 version=2.4
 revision=1
-archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools unzip"
diff --git a/srcpkgs/python3-nose-random/template b/srcpkgs/python3-nose-random/template
index 868d57cd494..e0b97430a9e 100644
--- a/srcpkgs/python3-nose-random/template
+++ b/srcpkgs/python3-nose-random/template
@@ -2,7 +2,6 @@
 pkgname=python3-nose-random
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="nose-random-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-notify2/template b/srcpkgs/python3-notify2/template
index 8416e98cc32..80cc7a2b5a2 100644
--- a/srcpkgs/python3-notify2/template
+++ b/srcpkgs/python3-notify2/template
@@ -2,7 +2,6 @@
 pkgname=python3-notify2
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="notify2-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/python3-ntlm-auth/template b/srcpkgs/python3-ntlm-auth/template
index fc9746b14aa..0b02fa3b67a 100644
--- a/srcpkgs/python3-ntlm-auth/template
+++ b/srcpkgs/python3-ntlm-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-ntlm-auth
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="ntlm-auth-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-oletools/template b/srcpkgs/python3-oletools/template
index 68a14274ad2..327895d5394 100644
--- a/srcpkgs/python3-oletools/template
+++ b/srcpkgs/python3-oletools/template
@@ -2,7 +2,6 @@
 pkgname=python3-oletools
 version=0.55
 revision=2
-archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module
 pycompile_module="oletools"
diff --git a/srcpkgs/python3-opcua/template b/srcpkgs/python3-opcua/template
index 16583e68089..872986836b8 100644
--- a/srcpkgs/python3-opcua/template
+++ b/srcpkgs/python3-opcua/template
@@ -2,7 +2,6 @@
 pkgname=python3-opcua
 version=0.98.11
 revision=1
-archs=noarch
 wrksrc="opcua-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-orderedmultidict/template b/srcpkgs/python3-orderedmultidict/template
index e6df82104cd..74d1a68bf9d 100644
--- a/srcpkgs/python3-orderedmultidict/template
+++ b/srcpkgs/python3-orderedmultidict/template
@@ -2,7 +2,6 @@
 pkgname=python3-orderedmultidict
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="orderedmultidict-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pafy/template b/srcpkgs/python3-pafy/template
index 8d3fafaf789..d6086f4a59a 100644
--- a/srcpkgs/python3-pafy/template
+++ b/srcpkgs/python3-pafy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pafy
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools youtube-dl"
diff --git a/srcpkgs/python3-pamqp/template b/srcpkgs/python3-pamqp/template
index 8c66eb482de..a3e7ab9c06b 100644
--- a/srcpkgs/python3-pamqp/template
+++ b/srcpkgs/python3-pamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pamqp
 version=2.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parsedatetime/template b/srcpkgs/python3-parsedatetime/template
index 71855b7c3ff..a77e82725e6 100644
--- a/srcpkgs/python3-parsedatetime/template
+++ b/srcpkgs/python3-parsedatetime/template
@@ -2,7 +2,6 @@
 pkgname=python3-parsedatetime
 version=2.6
 revision=1
-archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parso/template b/srcpkgs/python3-parso/template
index 5fed4bfb7ee..6c5b0e5f653 100644
--- a/srcpkgs/python3-parso/template
+++ b/srcpkgs/python3-parso/template
@@ -2,7 +2,6 @@
 pkgname=python3-parso
 version=0.8.0
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-path-and-address/template b/srcpkgs/python3-path-and-address/template
index 5c6825009ec..64d7a075e84 100644
--- a/srcpkgs/python3-path-and-address/template
+++ b/srcpkgs/python3-path-and-address/template
@@ -2,7 +2,6 @@
 pkgname=python3-path-and-address
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="path-and-address-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pcodedmp/template b/srcpkgs/python3-pcodedmp/template
index eb52c809fae..27f4310bf93 100644
--- a/srcpkgs/python3-pcodedmp/template
+++ b/srcpkgs/python3-pcodedmp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pcodedmp
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module
 pycompile_module="pcodedmp"
diff --git a/srcpkgs/python3-pefile/template b/srcpkgs/python3-pefile/template
index 8791f06640b..ed3c2befb4e 100644
--- a/srcpkgs/python3-pefile/template
+++ b/srcpkgs/python3-pefile/template
@@ -2,7 +2,6 @@
 pkgname=python3-pefile
 version=2019.4.18
 revision=2
-archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module
 pycompile_module="pefile.py peutils.py ordlookup"
diff --git a/srcpkgs/python3-pem/template b/srcpkgs/python3-pem/template
index ad51601c006..ce1123185ad 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -2,7 +2,6 @@
 pkgname=python3-pem
 version=19.3.0
 revision=1
-archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module
 pycompile_module="pem"
diff --git a/srcpkgs/python3-perf/template b/srcpkgs/python3-perf/template
index dff80be01bc..8b82eaf55cc 100644
--- a/srcpkgs/python3-perf/template
+++ b/srcpkgs/python3-perf/template
@@ -2,7 +2,6 @@
 pkgname=python3-perf
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module
 pycompile_module="pyperf"
diff --git a/srcpkgs/python3-pgspecial/template b/srcpkgs/python3-pgspecial/template
index 34b660dfc07..4bfc6073872 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgspecial
 version=1.11.9
 revision=2
-archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module
 pycompile_module="pgspecial"
diff --git a/srcpkgs/python3-pgzero/template b/srcpkgs/python3-pgzero/template
index 8b8f477112d..d8ab268d5e7 100644
--- a/srcpkgs/python3-pgzero/template
+++ b/srcpkgs/python3-pgzero/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgzero
 version=1.2
 revision=2
-archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module
 pycompile_module="pgzero pgzrun.py"
diff --git a/srcpkgs/python3-phonenumbers/template b/srcpkgs/python3-phonenumbers/template
index dd96963adfe..83671f70f6c 100644
--- a/srcpkgs/python3-phonenumbers/template
+++ b/srcpkgs/python3-phonenumbers/template
@@ -2,7 +2,6 @@
 pkgname=python3-phonenumbers
 version=8.11.5
 revision=1
-archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pipx/template b/srcpkgs/python3-pipx/template
index 8899230c814..7b6adf3f245 100644
--- a/srcpkgs/python3-pipx/template
+++ b/srcpkgs/python3-pipx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pipx
 version=0.15.4.0
 revision=1
-archs=noarch
 wrksrc="pipx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pkginfo/template b/srcpkgs/python3-pkginfo/template
index b7cb5ec9165..1cdddd5d541 100644
--- a/srcpkgs/python3-pkginfo/template
+++ b/srcpkgs/python3-pkginfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-pkginfo
 version=1.5.0.1
 revision=2
-archs=noarch
 wrksrc=pkginfo-${version}
 build_style=python3-module
 depends="python3"
diff --git a/srcpkgs/python3-plotly/template b/srcpkgs/python3-plotly/template
index 9cefb0a2702..02bbccfb709 100644
--- a/srcpkgs/python3-plotly/template
+++ b/srcpkgs/python3-plotly/template
@@ -2,7 +2,6 @@
 pkgname=python3-plotly
 version=4.9.0
 revision=1
-archs=noarch
 wrksrc="plotly-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pluggy/template b/srcpkgs/python3-pluggy/template
index d5baa4e7406..b65f092ed16 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pluggy
 version=0.13.1
 revision=3
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pmw/template b/srcpkgs/python3-pmw/template
index 289b5ef1d0d..bcc1167153f 100644
--- a/srcpkgs/python3-pmw/template
+++ b/srcpkgs/python3-pmw/template
@@ -2,7 +2,6 @@
 pkgname=python3-pmw
 version=2.0.1
 revision=2
-archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"
 license="MIT"
diff --git a/srcpkgs/python3-precis-i18n/template b/srcpkgs/python3-precis-i18n/template
index be7bb0b0b56..1faac093297 100644
--- a/srcpkgs/python3-precis-i18n/template
+++ b/srcpkgs/python3-precis-i18n/template
@@ -2,7 +2,6 @@
 pkgname=python3-precis-i18n
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module
 pycompile_module="precis_i18n"
diff --git a/srcpkgs/python3-priority/template b/srcpkgs/python3-priority/template
index 177129a7a42..3be207c7132 100644
--- a/srcpkgs/python3-priority/template
+++ b/srcpkgs/python3-priority/template
@@ -2,7 +2,6 @@
 pkgname=python3-priority
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-prompt_toolkit/template b/srcpkgs/python3-prompt_toolkit/template
index fc95924342e..9c4ad5e64ca 100644
--- a/srcpkgs/python3-prompt_toolkit/template
+++ b/srcpkgs/python3-prompt_toolkit/template
@@ -2,7 +2,6 @@
 pkgname=python3-prompt_toolkit
 version=3.0.6
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pulsectl/template b/srcpkgs/python3-pulsectl/template
index 5dd314d56ab..69b7ccc34f1 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -2,7 +2,6 @@
 pkgname=python3-pulsectl
 version=19.10.4
 revision=1
-archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module
 pycompile_module="pulsectl"
diff --git a/srcpkgs/python3-pure-protobuf/template b/srcpkgs/python3-pure-protobuf/template
index 2c23b4204f7..47058bbe288 100644
--- a/srcpkgs/python3-pure-protobuf/template
+++ b/srcpkgs/python3-pure-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python3-pure-protobuf
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc=protobuf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-py-cpuinfo/template b/srcpkgs/python3-py-cpuinfo/template
index c9b1a5211c1..e240b6a329a 100644
--- a/srcpkgs/python3-py-cpuinfo/template
+++ b/srcpkgs/python3-py-cpuinfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-py-cpuinfo
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc="py-cpuinfo-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template
index adbe4c10dbd..27d9c341d35 100644
--- a/srcpkgs/python3-pybind11/template
+++ b/srcpkgs/python3-pybind11/template
@@ -2,7 +2,6 @@
 pkgname=python3-pybind11
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="pybind11-${version}"
 build_style=python3-module
 make_install_args="--install-headers=/usr/include/pybind11"
diff --git a/srcpkgs/python3-pydbus/template b/srcpkgs/python3-pydbus/template
index 5ecd28aca88..e36bcde8126 100644
--- a/srcpkgs/python3-pydbus/template
+++ b/srcpkgs/python3-pydbus/template
@@ -2,7 +2,6 @@
 pkgname=python3-pydbus
 version=0.6.0
 revision=1
-archs=noarch
 wrksrc="pydbus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyfiglet/template b/srcpkgs/python3-pyfiglet/template
index a4a67b12d42..a8d61f0516e 100644
--- a/srcpkgs/python3-pyfiglet/template
+++ b/srcpkgs/python3-pyfiglet/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyfiglet
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"
 pycompile_module="pyfiglet"
diff --git a/srcpkgs/python3-pyinfra/template b/srcpkgs/python3-pyinfra/template
index dd18497b965..e80407a2bce 100644
--- a/srcpkgs/python3-pyinfra/template
+++ b/srcpkgs/python3-pyinfra/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyinfra
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="pyinfra-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykeepass/template b/srcpkgs/python3-pykeepass/template
index 96a53ac1ffa..095827914f3 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykeepass
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykwalify/template b/srcpkgs/python3-pykwalify/template
index 76398effff3..5eedaefcd74 100644
--- a/srcpkgs/python3-pykwalify/template
+++ b/srcpkgs/python3-pykwalify/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykwalify
 version=1.7.0
 revision=3
-archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylast/template b/srcpkgs/python3-pylast/template
index 7884038e532..d2067019ef1 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylast
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module
 pycompile_module="pylast"
diff --git a/srcpkgs/python3-pylibgen/template b/srcpkgs/python3-pylibgen/template
index 30fb465a637..37f2f92e0b1 100644
--- a/srcpkgs/python3-pylibgen/template
+++ b/srcpkgs/python3-pylibgen/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylibgen
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylru/template b/srcpkgs/python3-pylru/template
index 0329ab72c30..4fefac7f5cb 100644
--- a/srcpkgs/python3-pylru/template
+++ b/srcpkgs/python3-pylru/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylru
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pysdl2/template b/srcpkgs/python3-pysdl2/template
index 3efdca5b667..cc444a25125 100644
--- a/srcpkgs/python3-pysdl2/template
+++ b/srcpkgs/python3-pysdl2/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysdl2
 version=0.9.6
 revision=2
-archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module
 pycompile_module="sdl2"
diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index ee77908b933..6f619aefd13 100644
--- a/srcpkgs/python3-pyside2/template
+++ b/srcpkgs/python3-pyside2/template
@@ -77,23 +77,19 @@ libpyside2-python3_package() {
 libpyside-python3_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside-phonon_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyenet_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/python3-pysigset/template b/srcpkgs/python3-pysigset/template
index 50d9162ea70..91ba4976691 100644
--- a/srcpkgs/python3-pysigset/template
+++ b/srcpkgs/python3-pysigset/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysigset
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module
 pycompile_module="pysigset.py"
diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index 0c90d33a9e5..3830286e059 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-asyncio
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module
 pycompile_module="pytest_asyncio"
diff --git a/srcpkgs/python3-pytest-cov/template b/srcpkgs/python3-pytest-cov/template
index 3d4d7435e44..ad2fde9fa0f 100644
--- a/srcpkgs/python3-pytest-cov/template
+++ b/srcpkgs/python3-pytest-cov/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-cov
 version=2.10.0
 revision=1
-archs=noarch
 wrksrc="pytest-cov-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-qt/template b/srcpkgs/python3-pytest-qt/template
index a15bc15a4f3..2c82b27b522 100644
--- a/srcpkgs/python3-pytest-qt/template
+++ b/srcpkgs/python3-pytest-qt/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-qt
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc=pytest-qt-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-xvfb/template b/srcpkgs/python3-pytest-xvfb/template
index 9e3aa7822d4..05372f207c1 100644
--- a/srcpkgs/python3-pytest-xvfb/template
+++ b/srcpkgs/python3-pytest-xvfb/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-xvfb
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=pytest-xvfb-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template
index 3df0405f1e2..69f9b1b53f9 100644
--- a/srcpkgs/python3-pytest/template
+++ b/srcpkgs/python3-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest
 version=5.3.5
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pythondialog/template b/srcpkgs/python3-pythondialog/template
index b55866f51e6..11ac0d5a105 100644
--- a/srcpkgs/python3-pythondialog/template
+++ b/srcpkgs/python3-pythondialog/template
@@ -2,7 +2,6 @@
 pkgname=python3-pythondialog
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="pythondialog-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytools/template b/srcpkgs/python3-pytools/template
index 446df179c07..38e39a68179 100644
--- a/srcpkgs/python3-pytools/template
+++ b/srcpkgs/python3-pytools/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytools
 version=2020.4
 revision=1
-archs=noarch
 wrksrc=${pkgname#*-}-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pywinrm/template b/srcpkgs/python3-pywinrm/template
index 7a57b8efcb3..961a9ebacc4 100644
--- a/srcpkgs/python3-pywinrm/template
+++ b/srcpkgs/python3-pywinrm/template
@@ -2,7 +2,6 @@
 pkgname=python3-pywinrm
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pywinrm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyx/template b/srcpkgs/python3-pyx/template
index f8de127e420..24bd6b68960 100644
--- a/srcpkgs/python3-pyx/template
+++ b/srcpkgs/python3-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyx
 version=0.15
 revision=1
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-quart/template b/srcpkgs/python3-quart/template
index 8e0e7d59be7..a465bbf4abf 100644
--- a/srcpkgs/python3-quart/template
+++ b/srcpkgs/python3-quart/template
@@ -2,7 +2,6 @@
 pkgname=python3-quart
 version=0.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-readlike/template b/srcpkgs/python3-readlike/template
index 43159962442..a3c5353492f 100644
--- a/srcpkgs/python3-readlike/template
+++ b/srcpkgs/python3-readlike/template
@@ -2,7 +2,6 @@
 pkgname=python3-readlike
 version=0.1.3
 revision=2
-archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module
 pycompile_module="readlike.py"
diff --git a/srcpkgs/python3-repoze.sphinx.autointerface/template b/srcpkgs/python3-repoze.sphinx.autointerface/template
index 684c7f90d05..7fbafc4e955 100644
--- a/srcpkgs/python3-repoze.sphinx.autointerface/template
+++ b/srcpkgs/python3-repoze.sphinx.autointerface/template
@@ -2,7 +2,6 @@
 pkgname=python3-repoze.sphinx.autointerface
 version=0.8
 revision=3
-archs=noarch
 wrksrc="repoze.sphinx.autointerface-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-file/template b/srcpkgs/python3-requests-file/template
index 1f459fa55ab..e8197152c4a 100644
--- a/srcpkgs/python3-requests-file/template
+++ b/srcpkgs/python3-requests-file/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-file
 version=1.4.3
 revision=1
-archs=noarch
 wrksrc="requests-file-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-ntlm/template b/srcpkgs/python3-requests-ntlm/template
index 7ca189d6abf..8bdf509f291 100644
--- a/srcpkgs/python3-requests-ntlm/template
+++ b/srcpkgs/python3-requests-ntlm/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-ntlm
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="requests-ntlm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-unixsocket/template b/srcpkgs/python3-requests-unixsocket/template
index fd389ec2d13..5731168d162 100644
--- a/srcpkgs/python3-requests-unixsocket/template
+++ b/srcpkgs/python3-requests-unixsocket/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-unixsocket
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module
 pycompile_module="requests_unixsocket"
diff --git a/srcpkgs/python3-rss2email/template b/srcpkgs/python3-rss2email/template
index 69e67d93deb..37634807bee 100644
--- a/srcpkgs/python3-rss2email/template
+++ b/srcpkgs/python3-rss2email/template
@@ -2,7 +2,6 @@
 pkgname=python3-rss2email
 version=3.11
 revision=2
-archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module
 pycompile_module="rss2email"
diff --git a/srcpkgs/python3-s-tui/template b/srcpkgs/python3-s-tui/template
index 5864e90c91a..a70b25ef150 100644
--- a/srcpkgs/python3-s-tui/template
+++ b/srcpkgs/python3-s-tui/template
@@ -2,7 +2,6 @@
 pkgname=python3-s-tui
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-saml2/template b/srcpkgs/python3-saml2/template
index a8d2798b61c..740d5301c49 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -2,7 +2,6 @@
 pkgname=python3-saml2
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-scruffy/template b/srcpkgs/python3-scruffy/template
index 62a21a74eca..b10f0b25cad 100644
--- a/srcpkgs/python3-scruffy/template
+++ b/srcpkgs/python3-scruffy/template
@@ -2,7 +2,6 @@
 pkgname=python3-scruffy
 version=0.3.8.1
 revision=2
-archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module
 pycompile_module="scruffy"
diff --git a/srcpkgs/python3-semanticversion/template b/srcpkgs/python3-semanticversion/template
index 766eeb160f8..2a0ad41ef16 100644
--- a/srcpkgs/python3-semanticversion/template
+++ b/srcpkgs/python3-semanticversion/template
@@ -2,7 +2,6 @@
 pkgname=python3-semanticversion
 version=2.8.5
 revision=1
-archs=noarch
 wrksrc="semantic_version-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sentry/template b/srcpkgs/python3-sentry/template
index c340cbb7820..5f0bdb07a64 100644
--- a/srcpkgs/python3-sentry/template
+++ b/srcpkgs/python3-sentry/template
@@ -2,7 +2,6 @@
 pkgname=python3-sentry
 version=0.15.1
 revision=1
-archs=noarch
 wrksrc="sentry-python-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-serpent/template b/srcpkgs/python3-serpent/template
index 538bfcd1786..8776d167bfc 100644
--- a/srcpkgs/python3-serpent/template
+++ b/srcpkgs/python3-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python3-serpent
 version=1.30.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-setuptools/template b/srcpkgs/python3-setuptools/template
index 9bf5b316e66..15654c0c639 100644
--- a/srcpkgs/python3-setuptools/template
+++ b/srcpkgs/python3-setuptools/template
@@ -2,7 +2,6 @@
 pkgname=python3-setuptools
 version=49.2.1
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python3-module
 hostmakedepends="python3-devel"
diff --git a/srcpkgs/python3-shodan/template b/srcpkgs/python3-shodan/template
index 390f9d79322..b5324dac9ac 100644
--- a/srcpkgs/python3-shodan/template
+++ b/srcpkgs/python3-shodan/template
@@ -2,7 +2,6 @@
 pkgname=python3-shodan
 version=1.23.0
 revision=1
-archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-signedjson/template b/srcpkgs/python3-signedjson/template
index 5002ade8f79..744a1f36a5b 100644
--- a/srcpkgs/python3-signedjson/template
+++ b/srcpkgs/python3-signedjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-signedjson
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-slugify/template b/srcpkgs/python3-slugify/template
index 012bb98f063..7a6a44e664d 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -4,7 +4,6 @@ pkgname=python3-slugify
 # doesn't work with newer versions
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module
 pycompile_module="slugify"
diff --git a/srcpkgs/python3-sortedcontainers/template b/srcpkgs/python3-sortedcontainers/template
index 41d87d4ebd0..df9e9d97a2c 100644
--- a/srcpkgs/python3-sortedcontainers/template
+++ b/srcpkgs/python3-sortedcontainers/template
@@ -2,7 +2,6 @@
 pkgname=python3-sortedcontainers
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module
 pycompile_module="sortedcontainers"
diff --git a/srcpkgs/python3-spake2/template b/srcpkgs/python3-spake2/template
index dc0cdced747..7f34a47eb26 100644
--- a/srcpkgs/python3-spake2/template
+++ b/srcpkgs/python3-spake2/template
@@ -2,7 +2,6 @@
 pkgname=python3-spake2
 version=0.8
 revision=2
-archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module
 pycompile_module="spake2"
diff --git a/srcpkgs/python3-sphinx_rtd_theme/template b/srcpkgs/python3-sphinx_rtd_theme/template
index 8447a451a74..93e6cb4a4dd 100644
--- a/srcpkgs/python3-sphinx_rtd_theme/template
+++ b/srcpkgs/python3-sphinx_rtd_theme/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinx_rtd_theme
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-applehelp/template b/srcpkgs/python3-sphinxcontrib-applehelp/template
index 90bfc78adf8..30948b589f8 100644
--- a/srcpkgs/python3-sphinxcontrib-applehelp/template
+++ b/srcpkgs/python3-sphinxcontrib-applehelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-applehelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-applehelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-devhelp/template b/srcpkgs/python3-sphinxcontrib-devhelp/template
index 0244d826d17..f670cfdf187 100644
--- a/srcpkgs/python3-sphinxcontrib-devhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-devhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-devhelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-devhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-htmlhelp/template b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
index 33dac6dbfad..582aefdf76e 100644
--- a/srcpkgs/python3-sphinxcontrib-htmlhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-htmlhelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-htmlhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-jsmath/template b/srcpkgs/python3-sphinxcontrib-jsmath/template
index 266ff00b88b..ce87ffcd71b 100644
--- a/srcpkgs/python3-sphinxcontrib-jsmath/template
+++ b/srcpkgs/python3-sphinxcontrib-jsmath/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-jsmath
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-jsmath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-qthelp/template b/srcpkgs/python3-sphinxcontrib-qthelp/template
index 2335cb13cb8..b324a4bce8b 100644
--- a/srcpkgs/python3-sphinxcontrib-qthelp/template
+++ b/srcpkgs/python3-sphinxcontrib-qthelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-qthelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-qthelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-serializinghtml/template b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
index 82ddabe65ed..6b2d69ee7ca 100644
--- a/srcpkgs/python3-sphinxcontrib-serializinghtml/template
+++ b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-serializinghtml
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-serializinghtml-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-websupport/template b/srcpkgs/python3-sphinxcontrib-websupport/template
index 945577df1fd..7c2451bd69f 100644
--- a/srcpkgs/python3-sphinxcontrib-websupport/template
+++ b/srcpkgs/python3-sphinxcontrib-websupport/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-websupport
 version=1.2.3
 revision=1
-archs=noarch
 wrksrc="sphinxcontrib-websupport-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib/template b/srcpkgs/python3-sphinxcontrib/template
index d52fd02ab76..ef3686233a6 100644
--- a/srcpkgs/python3-sphinxcontrib/template
+++ b/srcpkgs/python3-sphinxcontrib/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib
 version=1.0
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/python3-subunit/template b/srcpkgs/python3-subunit/template
index a617b3db63a..7609e9fea85 100644
--- a/srcpkgs/python3-subunit/template
+++ b/srcpkgs/python3-subunit/template
@@ -2,7 +2,6 @@
 pkgname=python3-subunit
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=subunit-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sympy/template b/srcpkgs/python3-sympy/template
index 77f7747a999..3546c85c48c 100644
--- a/srcpkgs/python3-sympy/template
+++ b/srcpkgs/python3-sympy/template
@@ -2,7 +2,6 @@
 pkgname=python3-sympy
 version=1.6.1
 revision=1
-archs=noarch
 wrksrc="sympy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tabulate/template b/srcpkgs/python3-tabulate/template
index 16956529913..1fba151f70d 100644
--- a/srcpkgs/python3-tabulate/template
+++ b/srcpkgs/python3-tabulate/template
@@ -2,7 +2,6 @@
 pkgname=python3-tabulate
 version=0.8.6
 revision=1
-archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module
 pycompile_module="tabulate.py"
diff --git a/srcpkgs/python3-terminaltables/template b/srcpkgs/python3-terminaltables/template
index 4f781eab76d..151d95641b1 100644
--- a/srcpkgs/python3-terminaltables/template
+++ b/srcpkgs/python3-terminaltables/template
@@ -2,7 +2,6 @@
 pkgname=python3-terminaltables
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module
 pycompile_module="terminaltables"
diff --git a/srcpkgs/python3-text-unidecode/template b/srcpkgs/python3-text-unidecode/template
index b3b5aa95575..6219e336eb5 100644
--- a/srcpkgs/python3-text-unidecode/template
+++ b/srcpkgs/python3-text-unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python3-text-unidecode
 version=1.2
 revision=2
-archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module
 pycompile_module="text_unidecode"
diff --git a/srcpkgs/python3-tinycss/template b/srcpkgs/python3-tinycss/template
index 3b4717c234e..7ca826988cd 100644
--- a/srcpkgs/python3-tinycss/template
+++ b/srcpkgs/python3-tinycss/template
@@ -2,7 +2,6 @@
 pkgname=python3-tinycss
 version=0.4
 revision=2
-archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module
 pycompile_module="tinycss"
diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index f77446c5e61..ff6bb2699e5 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -77,7 +77,6 @@ do_install() {
 }
 
 idle-python3_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python3 using Tkinter"
 	pycompile_dirs="usr/lib/python${version%.*}/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python3-tldextract/template b/srcpkgs/python3-tldextract/template
index 2a9392a5dcc..57ea2de0c41 100644
--- a/srcpkgs/python3-tldextract/template
+++ b/srcpkgs/python3-tldextract/template
@@ -2,7 +2,6 @@
 pkgname=python3-tldextract
 version=2.2.2
 revision=1
-archs=noarch
 wrksrc="tldextract-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template
index 92a11a42629..c352f646664 100644
--- a/srcpkgs/python3-traitlets/template
+++ b/srcpkgs/python3-traitlets/template
@@ -2,7 +2,6 @@
 pkgname=python3-traitlets
 version=4.3.3
 revision=3
-archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 5ea767b5a7d..a307014e474 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-transifex-client
 version=0.13.6
 revision=2
-archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module
 pycompile_module="txclib"
diff --git a/srcpkgs/python3-treq/template b/srcpkgs/python3-treq/template
index 075f90e49ef..c87126db99f 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -2,7 +2,6 @@
 pkgname=python3-treq
 version=20.3.0
 revision=1
-archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-trimesh/template b/srcpkgs/python3-trimesh/template
index 15f6715ce1d..fd7b93ac971 100644
--- a/srcpkgs/python3-trimesh/template
+++ b/srcpkgs/python3-trimesh/template
@@ -2,7 +2,6 @@
 pkgname=python3-trimesh
 version=3.7.4
 revision=1
-archs=noarch
 wrksrc="trimesh-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index bd1c82d0611..917fdb2e038 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -2,7 +2,6 @@
 pkgname=python3-txacme
 version=0.9.3
 revision=1
-archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txaio/template b/srcpkgs/python3-txaio/template
index d9ee273d235..f686ef8848c 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -2,7 +2,6 @@
 pkgname=python3-txaio
 version=20.4.1
 revision=1
-archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-txtorcon/template b/srcpkgs/python3-txtorcon/template
index d2ad88b06d1..8ad2b861ca9 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -2,7 +2,6 @@
 pkgname=python3-txtorcon
 version=20.0.0
 revision=1
-archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-typing_extensions/template b/srcpkgs/python3-typing_extensions/template
index 57405689d4e..d9beffc7950 100644
--- a/srcpkgs/python3-typing_extensions/template
+++ b/srcpkgs/python3-typing_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-typing_extensions
 version=3.7.4.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tzlocal/template b/srcpkgs/python3-tzlocal/template
index 7ea15464075..c78db3d0b47 100644
--- a/srcpkgs/python3-tzlocal/template
+++ b/srcpkgs/python3-tzlocal/template
@@ -2,7 +2,6 @@
 pkgname=python3-tzlocal
 version=2.1
 revision=2
-archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-unpaddedbase64/template b/srcpkgs/python3-unpaddedbase64/template
index 06a47db3b64..2cb5d9b8c2b 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -2,7 +2,6 @@
 pkgname=python3-unpaddedbase64
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module
 pycompile_module="unpaddedbase64.py"
diff --git a/srcpkgs/python3-urlgrabber/template b/srcpkgs/python3-urlgrabber/template
index eef67c8e13c..6d19cd95f28 100644
--- a/srcpkgs/python3-urlgrabber/template
+++ b/srcpkgs/python3-urlgrabber/template
@@ -2,7 +2,6 @@
 pkgname=python3-urlgrabber
 version=4.0.0
 revision=2
-archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module
 pycompile_module="urlgrabber"
diff --git a/srcpkgs/python3-usb/template b/srcpkgs/python3-usb/template
index 1e27b46961b..fe8676e84bf 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,6 @@
 pkgname=python3-usb
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="pyusb-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-userpath/template b/srcpkgs/python3-userpath/template
index 4d53e7b5dea..5d5b22e7774 100644
--- a/srcpkgs/python3-userpath/template
+++ b/srcpkgs/python3-userpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-userpath
 version=1.4.1
 revision=1
-archs=noarch
 wrksrc="userpath-${version}"
 build_style=python3-module
 pycompile_module="userpath"
diff --git a/srcpkgs/python3-validators/template b/srcpkgs/python3-validators/template
index 2d790254c96..cfaf8b9e8e9 100644
--- a/srcpkgs/python3-validators/template
+++ b/srcpkgs/python3-validators/template
@@ -2,7 +2,6 @@
 pkgname=python3-validators
 version=0.14.2
 revision=1
-archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virustotal-api/template b/srcpkgs/python3-virustotal-api/template
index fc362c03b39..016265c95e4 100644
--- a/srcpkgs/python3-virustotal-api/template
+++ b/srcpkgs/python3-virustotal-api/template
@@ -2,7 +2,6 @@
 pkgname=python3-virustotal-api
 version=1.1.11
 revision=2
-archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module
 pycompile_module="virus_total_apis"
diff --git a/srcpkgs/python3-xapp/template b/srcpkgs/python3-xapp/template
index 6e746704ad8..4a914d36443 100644
--- a/srcpkgs/python3-xapp/template
+++ b/srcpkgs/python3-xapp/template
@@ -2,7 +2,6 @@
 pkgname=python3-xapp
 version=2.0.1
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="xapp"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xdg-variables/template b/srcpkgs/python3-xdg-variables/template
index 589302d33bc..836f8b61878 100644
--- a/srcpkgs/python3-xdg-variables/template
+++ b/srcpkgs/python3-xdg-variables/template
@@ -2,7 +2,6 @@
 pkgname=python3-xdg-variables
 version=4.0.1
 revision=1
-archs=noarch
 wrksrc="xdg-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xlrd/template b/srcpkgs/python3-xlrd/template
index 9f7b29580e4..4a8b4fb520e 100644
--- a/srcpkgs/python3-xlrd/template
+++ b/srcpkgs/python3-xlrd/template
@@ -2,7 +2,6 @@
 pkgname=python3-xlrd
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xmlschema/template b/srcpkgs/python3-xmlschema/template
index ca29e40cd32..cbec9fe2a81 100644
--- a/srcpkgs/python3-xmlschema/template
+++ b/srcpkgs/python3-xmlschema/template
@@ -2,7 +2,6 @@
 pkgname=python3-xmlschema
 version=1.2.2
 revision=1
-archs=noarch
 wrksrc=xmlschema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-yapf/template b/srcpkgs/python3-yapf/template
index 33111cd732d..482acbbe0f5 100644
--- a/srcpkgs/python3-yapf/template
+++ b/srcpkgs/python3-yapf/template
@@ -2,7 +2,6 @@
 pkgname=python3-yapf
 version=0.29.0
 revision=1
-archs=noarch
 wrksrc="yapf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zeroconf/template b/srcpkgs/python3-zeroconf/template
index 422b84e9f90..e13531b7f41 100644
--- a/srcpkgs/python3-zeroconf/template
+++ b/srcpkgs/python3-zeroconf/template
@@ -2,7 +2,6 @@
 pkgname=python3-zeroconf
 version=0.28.0
 revision=1
-archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.cachedescriptors/template b/srcpkgs/python3-zope.cachedescriptors/template
index 1f1fae5b27b..c0a56526d58 100644
--- a/srcpkgs/python3-zope.cachedescriptors/template
+++ b/srcpkgs/python3-zope.cachedescriptors/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.cachedescriptors
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module
 pycompile_module="zope/cachedescriptors"
diff --git a/srcpkgs/python3-zope.component/template b/srcpkgs/python3-zope.component/template
index 5dddba61bb3..eee2bb67f5c 100644
--- a/srcpkgs/python3-zope.component/template
+++ b/srcpkgs/python3-zope.component/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.component
 version=4.6.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.configuration/template b/srcpkgs/python3-zope.configuration/template
index a18339a5d7a..859ea5a13e3 100644
--- a/srcpkgs/python3-zope.configuration/template
+++ b/srcpkgs/python3-zope.configuration/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.configuration
 version=4.4.0
 revision=1
-archs=noarch
 wrksrc="zope.configuration-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/python3-zope.copy/template b/srcpkgs/python3-zope.copy/template
index 7007acb96b4..2872fc4446a 100644
--- a/srcpkgs/python3-zope.copy/template
+++ b/srcpkgs/python3-zope.copy/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.copy
 version=4.2
 revision=2
-archs=noarch
 wrksrc="zope.copy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deferredimport/template b/srcpkgs/python3-zope.deferredimport/template
index 7e8ff8fca5c..d2baacf3065 100644
--- a/srcpkgs/python3-zope.deferredimport/template
+++ b/srcpkgs/python3-zope.deferredimport/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deferredimport
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.deferredimport-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deprecation/template b/srcpkgs/python3-zope.deprecation/template
index 854c67dfa8a..5939729f835 100644
--- a/srcpkgs/python3-zope.deprecation/template
+++ b/srcpkgs/python3-zope.deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deprecation
 version=4.4.0
 revision=3
-archs=noarch
 wrksrc="zope.deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.event/template b/srcpkgs/python3-zope.event/template
index 0ca1af6cfc4..222189cc613 100644
--- a/srcpkgs/python3-zope.event/template
+++ b/srcpkgs/python3-zope.event/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.event
 version=4.4
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="zope/event"
diff --git a/srcpkgs/python3-zope.exceptions/template b/srcpkgs/python3-zope.exceptions/template
index e918cea8c7e..8719bd54a11 100644
--- a/srcpkgs/python3-zope.exceptions/template
+++ b/srcpkgs/python3-zope.exceptions/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.exceptions
 version=4.3
 revision=2
-archs=noarch
 wrksrc="zope.exceptions-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.hookable/template b/srcpkgs/python3-zope.hookable/template
index 774cf286c8e..e721baf6117 100644
--- a/srcpkgs/python3-zope.hookable/template
+++ b/srcpkgs/python3-zope.hookable/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.hookable
 version=5.0.1
 revision=1
-archs=noarch
 wrksrc="zope.hookable-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.location/template b/srcpkgs/python3-zope.location/template
index c2d6435dcf4..425cc0c04a1 100644
--- a/srcpkgs/python3-zope.location/template
+++ b/srcpkgs/python3-zope.location/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.location
 version=4.2
 revision=3
-archs=noarch
 wrksrc="zope.location-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.schema/template b/srcpkgs/python3-zope.schema/template
index 7c45510564d..82d51060bc5 100644
--- a/srcpkgs/python3-zope.schema/template
+++ b/srcpkgs/python3-zope.schema/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.schema
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc=zope.schema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testing/template b/srcpkgs/python3-zope.testing/template
index 9fd4dd19dcd..7c547615b68 100644
--- a/srcpkgs/python3-zope.testing/template
+++ b/srcpkgs/python3-zope.testing/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testing
 version=4.7
 revision=2
-archs=noarch
 wrksrc="zope.testing-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testrunner/template b/srcpkgs/python3-zope.testrunner/template
index 85413372686..80cf55a1715 100644
--- a/srcpkgs/python3-zope.testrunner/template
+++ b/srcpkgs/python3-zope.testrunner/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testrunner
 version=5.1
 revision=2
-archs=noarch
 wrksrc="zope.testrunner-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinxcontrib"
diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 98c4e1581e4..613217153a3 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -2,7 +2,6 @@
 pkgname=pywal
 version=3.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pywal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/qalculate/template b/srcpkgs/qalculate/template
index c5d041892f4..dbd193635bb 100644
--- a/srcpkgs/qalculate/template
+++ b/srcpkgs/qalculate/template
@@ -16,7 +16,6 @@ distfiles="https://github.com/Qalculate/libqalculate/releases/download/v${versio
 checksum=28c46dc8dd975f253627d80c55a6feab7c44d965dce3ceffefc3cafc9a97c457
 
 libqalculate-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/qalculate
diff --git a/srcpkgs/qdirstat/template b/srcpkgs/qdirstat/template
index 40be76ac8ef..4490a4e1272 100644
--- a/srcpkgs/qdirstat/template
+++ b/srcpkgs/qdirstat/template
@@ -23,7 +23,6 @@ post_install() {
 qdirstat-cache-writer_package() {
 	short_desc+=" - headless scanner"
 	depends="perl"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/qdirstat-cache-writer
 		vman man/qdirstat-cache-writer.1
diff --git a/srcpkgs/qmc2-flyers/template b/srcpkgs/qmc2-flyers/template
index 91f26dd0a18..bd62c4093a5 100644
--- a/srcpkgs/qmc2-flyers/template
+++ b/srcpkgs/qmc2-flyers/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="599660060753ce7118d9abc4b77f4644985d1341e1f3ca7c1f34d1a7a2e8030d"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2-snapshots/template b/srcpkgs/qmc2-snapshots/template
index fee8f052012..df2fcbc12c8 100644
--- a/srcpkgs/qmc2-snapshots/template
+++ b/srcpkgs/qmc2-snapshots/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="97684b11d4811ca1c3c24d31c359b7ac6ac90436e3fbce9e4966670697516d4f"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2/template b/srcpkgs/qmc2/template
index f362582dff5..1f72e9dd200 100644
--- a/srcpkgs/qmc2/template
+++ b/srcpkgs/qmc2/template
@@ -81,7 +81,6 @@ do_install() {
 		> ${DESTDIR}/usr/share/applications/qchdman.desktop
 }
 qmc2-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		local _ddir
diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template
index bd991d71e04..f999b249f94 100644
--- a/srcpkgs/qmk/template
+++ b/srcpkgs/qmk/template
@@ -2,7 +2,6 @@
 pkgname=qmk
 version=0.0.35
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-appdirs
diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 8063350ba06..4a3c282d40f 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -2,7 +2,6 @@
 pkgname=qomui
 version=0.8.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="qomui"
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/qrintf/template b/srcpkgs/qrintf/template
index 8b4ae6e9f0c..cd4cd8bee34 100644
--- a/srcpkgs/qrintf/template
+++ b/srcpkgs/qrintf/template
@@ -2,7 +2,6 @@
 pkgname=qrintf
 version=0.9.2
 revision=2
-archs=noarch
 depends="perl"
 short_desc="A sprintf accelerator for GCC and Clang"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/qtcreator/template b/srcpkgs/qtcreator/template
index e8cc8990fe0..23e69c35eed 100644
--- a/srcpkgs/qtcreator/template
+++ b/srcpkgs/qtcreator/template
@@ -71,7 +71,6 @@ qtcreator-full_package() {
 
 qtcreator-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/quixand/template b/srcpkgs/quixand/template
index 0574f90aa7e..2c6bd03be74 100644
--- a/srcpkgs/quixand/template
+++ b/srcpkgs/quixand/template
@@ -2,7 +2,6 @@
 pkgname=quixand
 version=2020
 revision=1
-archs=noarch
 depends="bash encfs"
 short_desc="Tool for creating single-use unrecoverable encrypted sandboxes"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index ba19de245ad..177ad99b74c 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -2,7 +2,6 @@
 pkgname=quodlibet
 version=4.3.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"
 hostmakedepends="intltool python3-devel"
diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 14204d37ae9..9832c8af68c 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,5 +1,4 @@
 # Template file for 'qutebrowser'
-# not noarch as the package might be built with different backend for each arch
 pkgname=qutebrowser
 version=1.13.1
 revision=1
diff --git a/srcpkgs/qytdl/template b/srcpkgs/qytdl/template
index b620c498a25..2733e6726e8 100644
--- a/srcpkgs/qytdl/template
+++ b/srcpkgs/qytdl/template
@@ -2,7 +2,6 @@
 pkgname=qytdl
 version=1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/qytdl/src"
 depends="desktop-file-utils python3-PyQt5 python3-youtube-dl"
diff --git a/srcpkgs/racket/template b/srcpkgs/racket/template
index dab6e5ec43c..41c9537b0e8 100644
--- a/srcpkgs/racket/template
+++ b/srcpkgs/racket/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 racket-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="racket>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/radicale/template b/srcpkgs/radicale/template
index 5cf0cc8da0d..30c1b9bfb8a 100644
--- a/srcpkgs/radicale/template
+++ b/srcpkgs/radicale/template
@@ -2,7 +2,6 @@
 pkgname=radicale
 version=1.1.6
 revision=4
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 pycompile_module="radicale"
diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 6fd785c5484..a762f1e41dd 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -2,7 +2,6 @@
 pkgname=radicale2
 version=2.1.12
 revision=1
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index d88da9b1ee1..33ecef3a239 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -2,7 +2,6 @@
 pkgname=ranger
 version=1.9.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="ranger"
 hostmakedepends="python3"
diff --git a/srcpkgs/rapidjson/template b/srcpkgs/rapidjson/template
index c1f3f32ba6d..0f8553674cb 100644
--- a/srcpkgs/rapidjson/template
+++ b/srcpkgs/rapidjson/template
@@ -3,7 +3,6 @@ pkgname=rapidjson
 version=1.1.0
 revision=2
 build_style=cmake
-archs=noarch
 short_desc="A fast JSON parser/generator for C++ with both SAX/DOM style API"
 maintainer="Alexander Egorenkov <egorenar-dev@posteo.net>"
 license="BSD, MIT"
diff --git a/srcpkgs/rapidxml/template b/srcpkgs/rapidxml/template
index 35418273bb4..6a19d381165 100644
--- a/srcpkgs/rapidxml/template
+++ b/srcpkgs/rapidxml/template
@@ -2,7 +2,6 @@
 pkgname=rapidxml
 version=1.13
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 short_desc="XML parser written in C++"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/rapydscript-ng/template b/srcpkgs/rapydscript-ng/template
index 681fe9781cc..92101d56f44 100644
--- a/srcpkgs/rapydscript-ng/template
+++ b/srcpkgs/rapydscript-ng/template
@@ -2,7 +2,6 @@
 pkgname=rapydscript-ng
 version=0.7.20
 revision=2
-archs=noarch
 hostmakedepends="nodejs"
 depends="nodejs"
 short_desc="Transpiler for a Python like language to JavaScript"
diff --git a/srcpkgs/rcm/template b/srcpkgs/rcm/template
index 2f84ba88ad3..9f7e44a091c 100644
--- a/srcpkgs/rcm/template
+++ b/srcpkgs/rcm/template
@@ -2,7 +2,6 @@
 pkgname=rcm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 checkdepends="python3-cram"
 depends="perl"
diff --git a/srcpkgs/rdumpfs/template b/srcpkgs/rdumpfs/template
index 12d80550d06..20709eb0c20 100644
--- a/srcpkgs/rdumpfs/template
+++ b/srcpkgs/rdumpfs/template
@@ -2,7 +2,6 @@
 pkgname=rdumpfs
 version=0.1
 revision=3
-archs=noarch
 depends="rsync bash"
 short_desc="A rsync-based dump file system backup tool"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/rebar3/template b/srcpkgs/rebar3/template
index 5243045ee94..f3cd96fead5 100644
--- a/srcpkgs/rebar3/template
+++ b/srcpkgs/rebar3/template
@@ -2,7 +2,6 @@
 pkgname=rebar3
 version=3.13.2
 revision=1
-archs=noarch
 hostmakedepends=erlang
 depends="erlang>=22"
 short_desc="Erlang build tool to compile, test, and release applications"
diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index fa2cb9cf445..14ddd26a73e 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -2,7 +2,6 @@
 pkgname=rednotebook
 version=2.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="desktop-file-utils gtksourceview hicolor-icon-theme python3-enchant
diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template
index 0f4e4047520..c9d037f10cb 100644
--- a/srcpkgs/remhind/template
+++ b/srcpkgs/remhind/template
@@ -2,7 +2,6 @@
 pkgname=remhind
 version=0.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel"
 depends="python3-icalendar python3-dateutil python3-gobject python3-toml
diff --git a/srcpkgs/rex/template b/srcpkgs/rex/template
index 0f294444ade..908ce0c2060 100644
--- a/srcpkgs/rex/template
+++ b/srcpkgs/rex/template
@@ -2,7 +2,6 @@
 pkgname=rex
 version=1.12.1
 revision=1
-archs=noarch
 wrksrc="Rex-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-AWS-Signature4 perl-Clone-Choose
diff --git a/srcpkgs/rinse/template b/srcpkgs/rinse/template
index 289fb177632..f626b75ad7a 100644
--- a/srcpkgs/rinse/template
+++ b/srcpkgs/rinse/template
@@ -2,7 +2,6 @@
 pkgname=rinse
 version=3.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_check_target=test
 hostmakedepends="dpkg"
diff --git a/srcpkgs/ripe-atlas-tools/template b/srcpkgs/ripe-atlas-tools/template
index c5e21c4b8dc..07bf1dceef1 100644
--- a/srcpkgs/ripe-atlas-tools/template
+++ b/srcpkgs/ripe-atlas-tools/template
@@ -2,7 +2,6 @@
 pkgname=ripe-atlas-tools
 version=2.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/rkhunter/template b/srcpkgs/rkhunter/template
index 743af812a78..968cad3cc7b 100644
--- a/srcpkgs/rkhunter/template
+++ b/srcpkgs/rkhunter/template
@@ -2,7 +2,6 @@
 pkgname=rkhunter
 version=1.4.6
 revision=1
-archs=noarch
 conf_files="/etc/rkhunter.conf"
 make_dirs="/var/lib/rkhunter/tmp 0750 root root"
 makedepends="curl"
diff --git a/srcpkgs/rocksndiamonds/template b/srcpkgs/rocksndiamonds/template
index bdfbca30b26..a3693182c43 100644
--- a/srcpkgs/rocksndiamonds/template
+++ b/srcpkgs/rocksndiamonds/template
@@ -36,7 +36,6 @@ do_install() {
 
 rocksndiamonds-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/rocksndiamonds
 	}
diff --git a/srcpkgs/rpi-firmware/template b/srcpkgs/rpi-firmware/template
index faa8fa28222..45b6d58bc23 100644
--- a/srcpkgs/rpi-firmware/template
+++ b/srcpkgs/rpi-firmware/template
@@ -5,7 +5,6 @@ _gitshort="${_githash:0:7}"
 pkgname=rpi-firmware
 version=20200326
 revision=1
-archs=noarch
 wrksrc="firmware-${_githash}"
 short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
 maintainer="Peter Bui <pbui@github.bx612.space>"
diff --git a/srcpkgs/rpmextract/template b/srcpkgs/rpmextract/template
index e1e325f7a6c..5b568f72ba8 100644
--- a/srcpkgs/rpmextract/template
+++ b/srcpkgs/rpmextract/template
@@ -2,7 +2,6 @@
 pkgname=rpmextract
 version=1.1
 revision=3
-archs=noarch
 depends="bsdtar coreutils"
 short_desc="Script to convert or extract RPM archives (contains rpm2cpio)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/rsnapshot/template b/srcpkgs/rsnapshot/template
index 8dafcc87bcd..cb86ba6e78b 100644
--- a/srcpkgs/rsnapshot/template
+++ b/srcpkgs/rsnapshot/template
@@ -2,7 +2,6 @@
 pkgname=rsnapshot
 version=1.4.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl rsync openssh"
 makedepends="perl-Lchown"
diff --git a/srcpkgs/rtl8812au-dkms/template b/srcpkgs/rtl8812au-dkms/template
index 49548f69a76..7fb637158b4 100644
--- a/srcpkgs/rtl8812au-dkms/template
+++ b/srcpkgs/rtl8812au-dkms/template
@@ -4,7 +4,6 @@ version=20200702
 revision=1
 _modver=5.6.4.2
 _gitrev=3110ad65d0f03532bd97b1017cae67ca86dd34f6
-archs=noarch
 wrksrc="rtl8812au-${_modver}-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8812AU/8821AU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rtl8822bu-dkms/template b/srcpkgs/rtl8822bu-dkms/template
index 9f87620427d..1db7fe4eef0 100644
--- a/srcpkgs/rtl8822bu-dkms/template
+++ b/srcpkgs/rtl8822bu-dkms/template
@@ -3,7 +3,6 @@ pkgname=rtl8822bu-dkms
 version=20200407
 revision=1
 _gitrev=9438d453ec5b4878b7d4a2b4bcf87b37df09c3fb
-archs=noarch
 wrksrc="rtl8822bu-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8822BU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rtv/template b/srcpkgs/rtv/template
index 3a67da91e61..969b780a72c 100644
--- a/srcpkgs/rtv/template
+++ b/srcpkgs/rtv/template
@@ -2,7 +2,6 @@
 pkgname=rtv
 version=1.27.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="rtv"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index de6652231aa..dec05bd21d0 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -2,7 +2,6 @@
 pkgname=rubber
 version=1.5.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 virtual?tex"
diff --git a/srcpkgs/ruby-addressable/template b/srcpkgs/ruby-addressable/template
index 0495e0176ec..0cc0fcd7a3d 100644
--- a/srcpkgs/ruby-addressable/template
+++ b/srcpkgs/ruby-addressable/template
@@ -2,7 +2,6 @@
 pkgname=ruby-addressable
 version=2.7.0
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-public_suffix>=2.0.2 ruby-public_suffix<5.0"
 short_desc="Replacement for Ruby's standard library URI implementation"
diff --git a/srcpkgs/ruby-asciidoctor/template b/srcpkgs/ruby-asciidoctor/template
index f70d94c165d..dba6815ad74 100644
--- a/srcpkgs/ruby-asciidoctor/template
+++ b/srcpkgs/ruby-asciidoctor/template
@@ -2,7 +2,6 @@
 pkgname=ruby-asciidoctor
 version=2.0.10
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Ruby implementation of AsciiDoc"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-concurrent-ruby/template b/srcpkgs/ruby-concurrent-ruby/template
index f702b3a2c09..c19d4a72091 100644
--- a/srcpkgs/ruby-concurrent-ruby/template
+++ b/srcpkgs/ruby-concurrent-ruby/template
@@ -2,7 +2,6 @@
 pkgname=ruby-concurrent-ruby
 version=1.1.5
 revision=3
-archs="noarch"
 build_style=gem
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-connection_pool/template b/srcpkgs/ruby-connection_pool/template
index 0ef9ffee343..4bde99058f1 100644
--- a/srcpkgs/ruby-connection_pool/template
+++ b/srcpkgs/ruby-connection_pool/template
@@ -2,7 +2,6 @@
 pkgname=ruby-connection_pool
 version=2.2.2
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Generic connection pool for Ruby"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-deep_merge/template b/srcpkgs/ruby-deep_merge/template
index 851a1fd4901..fe8fa774354 100644
--- a/srcpkgs/ruby-deep_merge/template
+++ b/srcpkgs/ruby-deep_merge/template
@@ -2,7 +2,6 @@
 pkgname=ruby-deep_merge
 version=1.2.1
 revision=2
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-ethon/template b/srcpkgs/ruby-ethon/template
index 6e19f1641e3..47c14e97059 100644
--- a/srcpkgs/ruby-ethon/template
+++ b/srcpkgs/ruby-ethon/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ethon
 version=0.12.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-ffi>=1.3.0"
 short_desc="Lightweight wrapper around libcurl"
diff --git a/srcpkgs/ruby-faraday/template b/srcpkgs/ruby-faraday/template
index 517f7afa39e..cb902fa55de 100644
--- a/srcpkgs/ruby-faraday/template
+++ b/srcpkgs/ruby-faraday/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday
 version=1.0.1
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-multipart-post>=1.2 ruby-multipart-post<3"
 short_desc="HTTP/REST API client library"
diff --git a/srcpkgs/ruby-faraday_middleware/template b/srcpkgs/ruby-faraday_middleware/template
index c300a0b5f86..869d7ca04ac 100644
--- a/srcpkgs/ruby-faraday_middleware/template
+++ b/srcpkgs/ruby-faraday_middleware/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday_middleware
 version=1.0.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-faraday>=1.0"
 short_desc="Various middleware for Faraday"
diff --git a/srcpkgs/ruby-filesize/template b/srcpkgs/ruby-filesize/template
index dad1a39f098..32284c510a6 100644
--- a/srcpkgs/ruby-filesize/template
+++ b/srcpkgs/ruby-filesize/template
@@ -2,7 +2,6 @@
 pkgname=ruby-filesize
 version=0.2.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Small class for handling filesizes"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-gh/template b/srcpkgs/ruby-gh/template
index 0a9899994f1..2972f27ff15 100644
--- a/srcpkgs/ruby-gh/template
+++ b/srcpkgs/ruby-gh/template
@@ -2,7 +2,6 @@
 pkgname=ruby-gh
 version=0.15.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.4.0 ruby-backports ruby-faraday>=0.8
  ruby-multi_json>=1.0 ruby-net-http-persistent>=2.9 ruby-net-http-pipeline"
diff --git a/srcpkgs/ruby-highline/template b/srcpkgs/ruby-highline/template
index 5064e4167c3..c21e6f4b1c6 100644
--- a/srcpkgs/ruby-highline/template
+++ b/srcpkgs/ruby-highline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-highline
 version=2.0.3
 revision=2
-archs=noarch
 build_style=gem
 short_desc="High-level IO library for comamndline interfaces"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-httparty/template b/srcpkgs/ruby-httparty/template
index 7a26fe321e7..fb88f3ae633 100644
--- a/srcpkgs/ruby-httparty/template
+++ b/srcpkgs/ruby-httparty/template
@@ -2,7 +2,6 @@
 pkgname=ruby-httparty
 version=0.17.1
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types>=3.0 ruby-multi_xml>=0.5.2"
 short_desc="Makes http fun! Also, makes consuming restful web services dead easy"
diff --git a/srcpkgs/ruby-launchy/template b/srcpkgs/ruby-launchy/template
index 1586ac19625..fd42c758b4e 100644
--- a/srcpkgs/ruby-launchy/template
+++ b/srcpkgs/ruby-launchy/template
@@ -2,7 +2,6 @@
 pkgname=ruby-launchy
 version=2.4.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.3 ruby-addressable<3.0"
 short_desc="Helper class for launching cross-platform applications"
diff --git a/srcpkgs/ruby-manpages/template b/srcpkgs/ruby-manpages/template
index 2521b71af56..491ed093d46 100644
--- a/srcpkgs/ruby-manpages/template
+++ b/srcpkgs/ruby-manpages/template
@@ -2,7 +2,6 @@
 pkgname=ruby-manpages
 version=0.6.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Gem to add man pages support to ruby gems"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-mime-types-data/template b/srcpkgs/ruby-mime-types-data/template
index d8b3958fc44..3da961f2eaa 100644
--- a/srcpkgs/ruby-mime-types-data/template
+++ b/srcpkgs/ruby-mime-types-data/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types-data
 version=3.2019.1009
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Registry for MIME media type definitions"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mime-types/template b/srcpkgs/ruby-mime-types/template
index 1512f5f9a6c..aef14485633 100644
--- a/srcpkgs/ruby-mime-types/template
+++ b/srcpkgs/ruby-mime-types/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types
 version=3.3
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types-data>=3.2015"
 short_desc="Library for registry and information about MIME types"
diff --git a/srcpkgs/ruby-multi_json/template b/srcpkgs/ruby-multi_json/template
index 71c3623f0fb..cff882e742c 100644
--- a/srcpkgs/ruby-multi_json/template
+++ b/srcpkgs/ruby-multi_json/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_json
 version=1.14.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Common interface for multiple JSON parsing libraries"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multi_xml/template b/srcpkgs/ruby-multi_xml/template
index 3a4628c9e29..a8d30d74535 100644
--- a/srcpkgs/ruby-multi_xml/template
+++ b/srcpkgs/ruby-multi_xml/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_xml
 version=0.6.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multipart-post/template b/srcpkgs/ruby-multipart-post/template
index a2b21ce7627..44c2119aa04 100644
--- a/srcpkgs/ruby-multipart-post/template
+++ b/srcpkgs/ruby-multipart-post/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multipart-post
 version=2.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Use with Net::HTTP to do multipart form posts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mustache/template b/srcpkgs/ruby-mustache/template
index 96ebfb59b27..b7d9bf4f416 100644
--- a/srcpkgs/ruby-mustache/template
+++ b/srcpkgs/ruby-mustache/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mustache
 version=1.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Framework-agnostic way to render logic-free views"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-net-http-persistent/template b/srcpkgs/ruby-net-http-persistent/template
index afae4ea0308..bd3dc9240a3 100644
--- a/srcpkgs/ruby-net-http-persistent/template
+++ b/srcpkgs/ruby-net-http-persistent/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-persistent
 version=3.1.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-connection_pool>=2.2 ruby-connection_pool<3.0"
 short_desc="Manages persistent connections using Net::HTTP"
diff --git a/srcpkgs/ruby-net-http-pipeline/template b/srcpkgs/ruby-net-http-pipeline/template
index 0cb6aa687ff..8b7762613ea 100644
--- a/srcpkgs/ruby-net-http-pipeline/template
+++ b/srcpkgs/ruby-net-http-pipeline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-pipeline
 version=1.0.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="HTTP/1.1 pipelining implementation atop Net::HTTP"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-public_suffix/template b/srcpkgs/ruby-public_suffix/template
index ec94bd34ca3..d588f22de24 100644
--- a/srcpkgs/ruby-public_suffix/template
+++ b/srcpkgs/ruby-public_suffix/template
@@ -2,7 +2,6 @@
 pkgname=ruby-public_suffix
 version=4.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Parse domain names into top level domain, domain and subdomains"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-pusher-client/template b/srcpkgs/ruby-pusher-client/template
index 9b41bbf12ef..fac92ca2968 100644
--- a/srcpkgs/ruby-pusher-client/template
+++ b/srcpkgs/ruby-pusher-client/template
@@ -2,7 +2,6 @@
 pkgname=ruby-pusher-client
 version=0.6.2
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-websocket>=1.0 ruby-websocket<2.0"
 short_desc="Client for consuming WebSockets from http://pusher.com"
diff --git a/srcpkgs/ruby-rainbow/template b/srcpkgs/ruby-rainbow/template
index dc2c03331d4..96fc7360c7c 100644
--- a/srcpkgs/ruby-rainbow/template
+++ b/srcpkgs/ruby-rainbow/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rainbow
 version=3.0.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Colorize printed text on ANSI terminals"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-rb-readline/template b/srcpkgs/ruby-rb-readline/template
index 5457b9cd5d1..2d78ead9d50 100644
--- a/srcpkgs/ruby-rb-readline/template
+++ b/srcpkgs/ruby-rb-readline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rb-readline
 version=0.5.5
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby"
 short_desc="Pure Ruby implementation of GNU readline library"
diff --git a/srcpkgs/ruby-ronn/template b/srcpkgs/ruby-ronn/template
index cada3abd52d..01515c05e6a 100644
--- a/srcpkgs/ruby-ronn/template
+++ b/srcpkgs/ruby-ronn/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ronn
 version=0.7.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-hpricot ruby-mustache ruby-rdiscount groff"
 short_desc="Strick markdown-like format for manpages"
diff --git a/srcpkgs/ruby-rubysl-singleton/template b/srcpkgs/ruby-rubysl-singleton/template
index a2b64a23ca4..184f71f3375 100644
--- a/srcpkgs/ruby-rubysl-singleton/template
+++ b/srcpkgs/ruby-rubysl-singleton/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rubysl-singleton
 version=2.0.0
 revision=2
-archs="noarch"
 build_style=gemspec
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-semantic_puppet/template b/srcpkgs/ruby-semantic_puppet/template
index e7af95f9e7a..758c6cef565 100644
--- a/srcpkgs/ruby-semantic_puppet/template
+++ b/srcpkgs/ruby-semantic_puppet/template
@@ -2,7 +2,6 @@
 pkgname=ruby-semantic_puppet
 version=1.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Tools for working with Semantic Versions"
 maintainer="eater <=@eater.me>"
diff --git a/srcpkgs/ruby-sync/template b/srcpkgs/ruby-sync/template
index 20771ee9b5e..5155a3e1359 100644
--- a/srcpkgs/ruby-sync/template
+++ b/srcpkgs/ruby-sync/template
@@ -2,7 +2,6 @@
 pkgname=ruby-sync
 version=0.5.0
 revision=1
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-travis/template b/srcpkgs/ruby-travis/template
index 2eaa35cad8e..3e236aa25b4 100644
--- a/srcpkgs/ruby-travis/template
+++ b/srcpkgs/ruby-travis/template
@@ -2,7 +2,6 @@
 pkgname=ruby-travis
 version=1.9.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-backports ruby-faraday>=1.0 ruby-faraday_middleware>=1.0
  ruby-gh>=0.13 ruby-highline>=2.0 ruby-launchy>=2.1 ruby-pusher-client>=0.4
diff --git a/srcpkgs/ruby-typhoeus/template b/srcpkgs/ruby-typhoeus/template
index 33447f4b2bf..f6945c9fd7e 100644
--- a/srcpkgs/ruby-typhoeus/template
+++ b/srcpkgs/ruby-typhoeus/template
@@ -2,7 +2,6 @@
 pkgname=ruby-typhoeus
 version=1.3.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-ethon>=0.9.0"
 short_desc="Parallel HTTP requests runner"
diff --git a/srcpkgs/ruby-websocket/template b/srcpkgs/ruby-websocket/template
index 83c913113f1..56ee82430b9 100644
--- a/srcpkgs/ruby-websocket/template
+++ b/srcpkgs/ruby-websocket/template
@@ -2,7 +2,6 @@
 pkgname=ruby-websocket
 version=1.2.8
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Universal Ruby library to handle WebSocket protocol"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby/template b/srcpkgs/ruby/template
index 5159f3c3b88..1cd48b464d7 100644
--- a/srcpkgs/ruby/template
+++ b/srcpkgs/ruby/template
@@ -105,7 +105,6 @@ post_install() {
 
 ruby-devel-doc_package() {
 	short_desc+=" - HTML C API documentation files"
-	archs=noarch
 	pkg_install() {
 		if [ -d "${DESTDIR}/usr/share/doc" ]; then
 			vmove usr/share/doc
@@ -133,7 +132,6 @@ ruby-devel_package() {
 ruby-ri_package() {
 	depends="ruby-${version}_${revision}"
 	short_desc="Ruby Interactive reference"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/ri
 		if [ -d "${DESTDIR}/usr/share/ri" ]; then
diff --git a/srcpkgs/run-mailcap/template b/srcpkgs/run-mailcap/template
index a09c1f8ef01..4947cf0d13c 100644
--- a/srcpkgs/run-mailcap/template
+++ b/srcpkgs/run-mailcap/template
@@ -2,7 +2,6 @@
 pkgname=run-mailcap
 version=3.64
 revision=1
-archs=noarch
 wrksrc="mime-support-${version}ubuntu1"
 depends="perl"
 short_desc="Execute programs via entries in the mailcap file"
diff --git a/srcpkgs/runelite-launcher/template b/srcpkgs/runelite-launcher/template
index f4717951c59..f2bd9af220c 100644
--- a/srcpkgs/runelite-launcher/template
+++ b/srcpkgs/runelite-launcher/template
@@ -2,7 +2,6 @@
 pkgname=runelite-launcher
 version=2.1.3
 revision=1
-archs=noarch
 wrksrc="launcher-${version}"
 hostmakedepends="apache-maven-bin"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/runit-iptables/template b/srcpkgs/runit-iptables/template
index c35cdc4738f..4761418d8a3 100644
--- a/srcpkgs/runit-iptables/template
+++ b/srcpkgs/runit-iptables/template
@@ -2,7 +2,6 @@
 pkgname=runit-iptables
 version=20180616
 revision=1
-archs=noarch
 depends="runit-void iptables"
 short_desc="Restore iptables rules on boot"
 maintainer="Nicolas Porcel <nicolasporcel06@gmail.com>"
diff --git a/srcpkgs/runit-kdump/template b/srcpkgs/runit-kdump/template
index 0c7f8ea464d..c220d4215ee 100644
--- a/srcpkgs/runit-kdump/template
+++ b/srcpkgs/runit-kdump/template
@@ -2,7 +2,6 @@
 pkgname=runit-kdump
 version=20150226
 revision=4
-archs=noarch
 make_dirs="/var/crash 0755 root root"
 depends="runit-void makedumpfile kexec-tools"
 short_desc="Crashkernel/kdump support for runit to save vmcore to disk"
diff --git a/srcpkgs/runit-nftables/template b/srcpkgs/runit-nftables/template
index d07cb42cae5..4ca82522948 100644
--- a/srcpkgs/runit-nftables/template
+++ b/srcpkgs/runit-nftables/template
@@ -2,7 +2,6 @@
 pkgname=runit-nftables
 version=20200123
 revision=1
-archs=noarch
 depends="runit-void nftables"
 short_desc="Restore nftables rules on boot"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/runit-swap/template b/srcpkgs/runit-swap/template
index 20147c8555d..f0a8416d38f 100644
--- a/srcpkgs/runit-swap/template
+++ b/srcpkgs/runit-swap/template
@@ -10,7 +10,6 @@ maintainer="Andrea Brancaleoni <abc@pompel.me>"
 license="GPL-3"
 homepage="https://github.com/thypon/runit-swap"
 conf_files="/etc/runit/swap.conf"
-archs=noarch
 distfiles="$homepage/archive/v$version.tar.gz"
 checksum=a66730777fb084564e7fae67f2017d775b757b6b6c0c319802f71bed2184e958
 
diff --git a/srcpkgs/rust/template b/srcpkgs/rust/template
index cba2feba4d2..942457e523c 100644
--- a/srcpkgs/rust/template
+++ b/srcpkgs/rust/template
@@ -298,7 +298,6 @@ do_install() {
 
 rust-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/rxvt-unicode/template b/srcpkgs/rxvt-unicode/template
index d07e838a818..5360b4486be 100644
--- a/srcpkgs/rxvt-unicode/template
+++ b/srcpkgs/rxvt-unicode/template
@@ -77,7 +77,6 @@ post_install() {
 
 rxvt-unicode-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/s3cmd/template b/srcpkgs/s3cmd/template
index 8043233efb5..5b3527c19a4 100644
--- a/srcpkgs/s3cmd/template
+++ b/srcpkgs/s3cmd/template
@@ -2,7 +2,6 @@
 pkgname=s3cmd
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-dateutil"
diff --git a/srcpkgs/s6-dns/template b/srcpkgs/s6-dns/template
index 9a0227f2806..fa8a6f34c9c 100644
--- a/srcpkgs/s6-dns/template
+++ b/srcpkgs/s6-dns/template
@@ -21,7 +21,6 @@ post_install() {
 }
 
 s6-dns-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-linux-utils/template b/srcpkgs/s6-linux-utils/template
index 224125b1117..e84aa08fc56 100644
--- a/srcpkgs/s6-linux-utils/template
+++ b/srcpkgs/s6-linux-utils/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-linux-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-networking/template b/srcpkgs/s6-networking/template
index 832b56ba251..2d08e3a7964 100644
--- a/srcpkgs/s6-networking/template
+++ b/srcpkgs/s6-networking/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-networking-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-portable-utils/template b/srcpkgs/s6-portable-utils/template
index c163ea31eae..a9fa76d8e25 100644
--- a/srcpkgs/s6-portable-utils/template
+++ b/srcpkgs/s6-portable-utils/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 s6-portable-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-rc/template b/srcpkgs/s6-rc/template
index 6257ef291ba..805aa90e284 100644
--- a/srcpkgs/s6-rc/template
+++ b/srcpkgs/s6-rc/template
@@ -34,7 +34,6 @@ s6-rc-devel_package() {
 }
 
 s6-rc-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6/template b/srcpkgs/s6/template
index baecf1ee007..f54f828e685 100644
--- a/srcpkgs/s6/template
+++ b/srcpkgs/s6/template
@@ -27,7 +27,6 @@ post_install() {
 }
 
 s6-doc_package() {
-	archs=noarch
 	short_desc="Documentation for s6"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/sabnzbd/template b/srcpkgs/sabnzbd/template
index a45b6535c33..e0364e3e746 100644
--- a/srcpkgs/sabnzbd/template
+++ b/srcpkgs/sabnzbd/template
@@ -2,7 +2,6 @@
 pkgname=sabnzbd
 version=2.3.9
 revision=1
-archs=noarch
 wrksrc="SABnzbd-${version}"
 pycompile_dirs="/usr/share/sabnzbd"
 depends="par2cmdline python-cheetah python-configobj python-feedparser
diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index c237bc503d8..6b7c5f51007 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -2,7 +2,6 @@
 pkgname=safeeyes
 version=2.0.9
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/salt/template b/srcpkgs/salt/template
index 80525f92686..7472d3975a8 100644
--- a/srcpkgs/salt/template
+++ b/srcpkgs/salt/template
@@ -2,7 +2,6 @@
 pkgname=salt
 version=3001.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-yaml python3-Jinja2 python3-requests python3-pyzmq
diff --git a/srcpkgs/sandfox/template b/srcpkgs/sandfox/template
index 36bd2571bd6..24e20f3c806 100644
--- a/srcpkgs/sandfox/template
+++ b/srcpkgs/sandfox/template
@@ -2,7 +2,6 @@
 pkgname=sandfox
 version=1.1.4
 revision=2
-archs=noarch
 depends="bash inotify-tools lsof"
 short_desc="Runs Firefox and other apps in a filesystem sandbox"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/sauerbraten/template b/srcpkgs/sauerbraten/template
index bb0c9b8acb9..636a3b446ba 100644
--- a/srcpkgs/sauerbraten/template
+++ b/srcpkgs/sauerbraten/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 sauerbraten-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmkdir usr/share/$sourcepkg
diff --git a/srcpkgs/sbcl/template b/srcpkgs/sbcl/template
index 2f58d4153f8..6eee1a27abe 100644
--- a/srcpkgs/sbcl/template
+++ b/srcpkgs/sbcl/template
@@ -56,7 +56,6 @@ do_install() {
 }
 
 sbcl-source_package() {
-	archs="noarch"
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" -- source files"
 	pkg_install() {
diff --git a/srcpkgs/sbt/template b/srcpkgs/sbt/template
index df79423b267..c2e90eb2d97 100644
--- a/srcpkgs/sbt/template
+++ b/srcpkgs/sbt/template
@@ -2,7 +2,6 @@
 pkgname=sbt
 version=1.3.10
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="virtual?java-environment"
 short_desc="Interactive build tool for Scala and Java"
diff --git a/srcpkgs/scanmem/template b/srcpkgs/scanmem/template
index b9bbb2f89fc..0cdd4271f7b 100644
--- a/srcpkgs/scanmem/template
+++ b/srcpkgs/scanmem/template
@@ -41,7 +41,6 @@ libscanmem-devel_package() {
 gameconqueror_package() {
 	short_desc="GameConqueror is a GUI front-end for scanmem, providing more features"
 	depends="polkit gtk+3 python3-gobject lib${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		cd $DESTDIR
diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 36972bfd461..45bec58f751 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -2,7 +2,6 @@
 pkgname=scapy
 version=2.4.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="scapy"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/schedule/template b/srcpkgs/schedule/template
index 0a5b7c03d6b..4348334a32b 100644
--- a/srcpkgs/schedule/template
+++ b/srcpkgs/schedule/template
@@ -2,7 +2,6 @@
 pkgname=schedule
 version=8.0.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Framework to schedule jobs in a multiuser multitasking environment"
diff --git a/srcpkgs/screenFetch/template b/srcpkgs/screenFetch/template
index 4a3d5a9dcaa..6b98d688755 100644
--- a/srcpkgs/screenFetch/template
+++ b/srcpkgs/screenFetch/template
@@ -2,7 +2,6 @@
 pkgname=screenFetch
 version=3.9.1
 revision=1
-archs=noarch
 depends="bash bc xdpyinfo"
 short_desc="Bash screenshot information tool"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/screenkey/template b/srcpkgs/screenkey/template
index b4feb736b89..8205bff7a23 100644
--- a/srcpkgs/screenkey/template
+++ b/srcpkgs/screenkey/template
@@ -2,7 +2,6 @@
 pkgname=screenkey
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-setuptools python3-distutils-extra"
 depends="python3-gobject"
diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index e3ce1bc7ff2..10f41dd685b 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -2,7 +2,6 @@
 pkgname=screenplain
 version=0.9.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-reportlab"
diff --git a/srcpkgs/seafile-libclient/template b/srcpkgs/seafile-libclient/template
index 4db42506d81..1b25ea59255 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -39,7 +39,6 @@ seafile-libclient-devel_package() {
 seafile-libclient-python3_package() {
 	short_desc="Cloud storage system - Python3 bindings"
 	depends="libsearpc-python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
@@ -49,7 +48,6 @@ seafile-cli_package() {
 	short_desc="Cloud storage system - client CLI"
 	depends="seafile-libclient-python3 ${sourcepkg}>=${version}_${revision}"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/seaf-cli
 		vmove usr/share/man/man1/seaf-cli.1
diff --git a/srcpkgs/sendEmail/template b/srcpkgs/sendEmail/template
index a60e0941572..508aca8aeeb 100644
--- a/srcpkgs/sendEmail/template
+++ b/srcpkgs/sendEmail/template
@@ -2,7 +2,6 @@
 pkgname=sendEmail
 version=1.56
 revision=1
-archs=noarch
 wrksrc="${pkgname}-v${version}"
 depends="perl-Net-SSLeay"
 short_desc="Lightweight, command line SMTP email client"
diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index 8191947a20b..d7b357a5940 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -2,7 +2,6 @@
 pkgname=setconf
 version=0.7.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="setconf.py"
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-setconf_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" - transitional dummy package"
 	depends="setconf"
diff --git a/srcpkgs/shared-color-targets/template b/srcpkgs/shared-color-targets/template
index 45b350d0b63..4b7f7dfab0a 100644
--- a/srcpkgs/shared-color-targets/template
+++ b/srcpkgs/shared-color-targets/template
@@ -2,7 +2,6 @@
 pkgname=shared-color-targets
 version=0.1.7
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Shared color targets for creating color profiles"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shared-desktop-ontologies/template b/srcpkgs/shared-desktop-ontologies/template
index d8ac5283177..6260f372e5e 100644
--- a/srcpkgs/shared-desktop-ontologies/template
+++ b/srcpkgs/shared-desktop-ontologies/template
@@ -2,7 +2,6 @@
 pkgname=shared-desktop-ontologies
 version=0.11.0
 revision=3
-archs=noarch
 build_style=cmake
 short_desc="Provide RDF vocabularies for the Semantic Desktop"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 4cd7da661b0..5b204fff7e9 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -55,12 +55,10 @@ python3-shiboken_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
 
 libshiboken-python3_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/shorewall/template b/srcpkgs/shorewall/template
index 30efdba8869..e0d82656e85 100644
--- a/srcpkgs/shorewall/template
+++ b/srcpkgs/shorewall/template
@@ -2,7 +2,6 @@
 pkgname=shorewall
 version=5.2.7
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="shorewall-core perl"
 short_desc="Iptables-based firewall for Linux systems"
@@ -37,7 +36,6 @@ do_install() {
 }
 
 shorewall-core_package() {
-	archs=noarch
 	depends="iptables iproute2"
 	short_desc+=" - Core Shorewall files"
 	pkg_install() {
@@ -47,7 +45,6 @@ shorewall-core_package() {
 }
 
 shorewall6_package() {
-	archs=noarch
 	depends="shorewall"
 	conf_files="/etc/$pkgname/*"
 	short_desc+=" - IPv6 support"
diff --git a/srcpkgs/shunit2/template b/srcpkgs/shunit2/template
index f909503b0f6..77babcece07 100644
--- a/srcpkgs/shunit2/template
+++ b/srcpkgs/shunit2/template
@@ -2,7 +2,6 @@
 pkgname=shunit2
 version=2.1.8
 revision=1
-archs=noarch
 depends="bash"
 checkdepends="zsh ksh"
 short_desc="Unit testing framework for Unix shell scripts based on xUnit"
diff --git a/srcpkgs/sickbeard/template b/srcpkgs/sickbeard/template
index a056d33f0b9..8499ed6ea0a 100644
--- a/srcpkgs/sickbeard/template
+++ b/srcpkgs/sickbeard/template
@@ -2,7 +2,6 @@
 pkgname=sickbeard
 version=507
 revision=3
-archs=noarch
 wrksrc="Sick-Beard-build-${version}"
 pycompile_dirs="/usr/share/${pkgname}"
 depends="python-cheetah"
diff --git a/srcpkgs/signond/template b/srcpkgs/signond/template
index fc1bdebe712..c72b3932ea6 100644
--- a/srcpkgs/signond/template
+++ b/srcpkgs/signond/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 signond-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/sigrok-firmware-fx2lafw/template b/srcpkgs/sigrok-firmware-fx2lafw/template
index 5c92bc1c0ac..7f9a574fa2d 100644
--- a/srcpkgs/sigrok-firmware-fx2lafw/template
+++ b/srcpkgs/sigrok-firmware-fx2lafw/template
@@ -2,7 +2,6 @@
 pkgname=sigrok-firmware-fx2lafw
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname}-bin-${version}"
 short_desc="Sigrok fx2lafw Firmware files"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/skalibs/template b/srcpkgs/skalibs/template
index 7b838abda1b..05dbcc04fa1 100644
--- a/srcpkgs/skalibs/template
+++ b/srcpkgs/skalibs/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 skalibs-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/slim-void-theme/template b/srcpkgs/slim-void-theme/template
index 373d6b644e4..8598b5cc0bc 100644
--- a/srcpkgs/slim-void-theme/template
+++ b/srcpkgs/slim-void-theme/template
@@ -2,7 +2,6 @@
 pkgname=slim-void-theme
 version=1.0.0
 revision=1
-archs=noarch
 depends="slim"
 short_desc="Fancy SLiM theme for Void Linux"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
diff --git a/srcpkgs/snazzer/template b/srcpkgs/snazzer/template
index 40828a47362..a42c9a541bd 100644
--- a/srcpkgs/snazzer/template
+++ b/srcpkgs/snazzer/template
@@ -2,7 +2,6 @@
 pkgname=snazzer
 version=0.0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl pod2mdoc"
 depends="sudo btrfs-progs"
diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3a88e08a988..8ae8caf4337 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -2,7 +2,6 @@
 pkgname=sonata
 version=1.7b1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-mpd2 python3-gobject gtk+3 ${hostmakedepends}"
diff --git a/srcpkgs/sound-icons/template b/srcpkgs/sound-icons/template
index ee30809549f..84a4de4011d 100644
--- a/srcpkgs/sound-icons/template
+++ b/srcpkgs/sound-icons/template
@@ -2,7 +2,6 @@
 pkgname=sound-icons
 version=0.1
 revision=1
-archs=noarch
 short_desc="Sounds for speech enabled applications"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/sound-theme-freedesktop/template b/srcpkgs/sound-theme-freedesktop/template
index 5edc5cb8440..b2147d82046 100644
--- a/srcpkgs/sound-theme-freedesktop/template
+++ b/srcpkgs/sound-theme-freedesktop/template
@@ -2,7 +2,6 @@
 pkgname=sound-theme-freedesktop
 version=0.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="Freedesktop sound theme"
diff --git a/srcpkgs/soundconverter/template b/srcpkgs/soundconverter/template
index 1bda4743513..2dfe30d25e3 100644
--- a/srcpkgs/soundconverter/template
+++ b/srcpkgs/soundconverter/template
@@ -2,7 +2,6 @@
 pkgname=soundconverter
 version=3.0.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/${pkgname}/python/${pkgname}"
 hostmakedepends="glib intltool pkg-config python3-gobject"
diff --git a/srcpkgs/soundfont-fluid/template b/srcpkgs/soundfont-fluid/template
index dfbe2f089a7..96318df36e2 100644
--- a/srcpkgs/soundfont-fluid/template
+++ b/srcpkgs/soundfont-fluid/template
@@ -2,7 +2,6 @@
 pkgname=soundfont-fluid
 version=3.1
 revision=3
-archs=noarch
 wrksrc="fluid-soundfont-${version}"
 short_desc="FluidR3 Soundfont"
 maintainer="Nick Hahn <nick.hahn@hotmail.de>"
diff --git a/srcpkgs/source-sans-pro/template b/srcpkgs/source-sans-pro/template
index 510f5a74e91..059f669b8bb 100644
--- a/srcpkgs/source-sans-pro/template
+++ b/srcpkgs/source-sans-pro/template
@@ -3,7 +3,6 @@ pkgname=source-sans-pro
 version=3.006
 revision=1
 _relver="3.006R"
-archs=noarch
 wrksrc="source-sans-pro-${_relver/\//-}"
 depends="font-util"
 short_desc="Sans serif font family for user interface environments"
diff --git a/srcpkgs/spampd/template b/srcpkgs/spampd/template
index 69d884a75df..1058d4bb5a7 100644
--- a/srcpkgs/spampd/template
+++ b/srcpkgs/spampd/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="http://www.worlddesign.com/index.cfm/page/software/open-source/spampd.htm"
 distfiles="https://github.com/downloads/mpaperno/$pkgname/$pkgname-$version.tar.gz"
 checksum=c980e55f46c7757fd45294e5268766253123490d0158d2ee36ad5700ddf823bb
-archs=noarch
 system_accounts="_spampd"
 _spampd_homedir="/var/lib/spampd"
 
diff --git a/srcpkgs/sparsehash/template b/srcpkgs/sparsehash/template
index b6e1725d3a3..919e516f4d8 100644
--- a/srcpkgs/sparsehash/template
+++ b/srcpkgs/sparsehash/template
@@ -2,7 +2,6 @@
 pkgname=sparsehash
 version=2.0.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Library that contains several hash-map implementations"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/spdx-licenses-list/template b/srcpkgs/spdx-licenses-list/template
index 98b05b520d8..c12a3616660 100644
--- a/srcpkgs/spdx-licenses-list/template
+++ b/srcpkgs/spdx-licenses-list/template
@@ -4,7 +4,6 @@
 pkgname=spdx-licenses-list
 version=3.10
 revision=1
-archs=noarch
 wrksrc="license-list-data-${version}"
 short_desc="SPDX License List"
 maintainer="mobinmob <mobinmob@disroot.org>"
@@ -22,7 +21,6 @@ do_install() {
 }
 
 spdx-licenses-text_package() {
-	archs=noarch
 	short_desc="SPDX licenses in plain text"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -31,7 +29,6 @@ spdx-licenses-text_package() {
 }
 
 spdx-licenses-json_package() {
-	archs=noarch
 	short_desc="SPDX licenses in JSON"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -40,7 +37,6 @@ spdx-licenses-json_package() {
 }
 
 spdx-licenses-html_package() {
-	archs=noarch
 	short_desc="SPDX licenses in HTML"
 	pkg_install() {
 		vmkdir usr/share/spdx
diff --git a/srcpkgs/spectre-meltdown-checker/template b/srcpkgs/spectre-meltdown-checker/template
index ba940726dc1..4873a59248e 100644
--- a/srcpkgs/spectre-meltdown-checker/template
+++ b/srcpkgs/spectre-meltdown-checker/template
@@ -2,7 +2,6 @@
 pkgname=spectre-meltdown-checker
 version=0.43
 revision=1
-archs=noarch
 short_desc="Spectre & Meltdown vulnerability/mitigation checker for Linux"
 depends="binutils"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/speed-dreams/template b/srcpkgs/speed-dreams/template
index 6a32ccc1b49..f269e718af2 100644
--- a/srcpkgs/speed-dreams/template
+++ b/srcpkgs/speed-dreams/template
@@ -34,7 +34,6 @@ esac
 
 speed-dreams-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/speed-dreams-2
 	}
diff --git a/srcpkgs/speedometer/template b/srcpkgs/speedometer/template
index 3c287fcdca7..12c6f43a0e2 100644
--- a/srcpkgs/speedometer/template
+++ b/srcpkgs/speedometer/template
@@ -2,7 +2,6 @@
 pkgname=speedometer
 version=2.8
 revision=3
-archs=noarch
 wrksrc="speedometer-release-${version}"
 depends="python-urwid"
 short_desc="Monitor network traffic or speed/progress of a file transfer"
diff --git a/srcpkgs/speedtest-cli/template b/srcpkgs/speedtest-cli/template
index c65d9fd631d..04b63b8f57a 100644
--- a/srcpkgs/speedtest-cli/template
+++ b/srcpkgs/speedtest-cli/template
@@ -2,7 +2,6 @@
 pkgname=speedtest-cli
 version=2.1.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/spice-protocol/template b/srcpkgs/spice-protocol/template
index 819c2977712..f4b952ce5df 100644
--- a/srcpkgs/spice-protocol/template
+++ b/srcpkgs/spice-protocol/template
@@ -2,7 +2,6 @@
 pkgname=spice-protocol
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="spice-protocol-v${version}"
 build_style=meson
 short_desc="SPICE protocol headers"
diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template
index e7a76a818bf..31842d87272 100644
--- a/srcpkgs/sqlmap/template
+++ b/srcpkgs/sqlmap/template
@@ -2,7 +2,6 @@
 pkgname=sqlmap
 version=1.4.8
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/sqlmap"
 depends="python3"
 short_desc="Automatic SQL injection and database takeover tool"
diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index b9d1f6f8054..3c549b131da 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -2,7 +2,6 @@
 pkgname=ssh-audit
 version=2.2.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="SSH server auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index 518bbd264c3..32031d0fd57 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -2,7 +2,6 @@
 pkgname=sshuttle
 version=1.0.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools iptables"
diff --git a/srcpkgs/ssoma/template b/srcpkgs/ssoma/template
index e2ea3eb961c..d618cba28ac 100644
--- a/srcpkgs/ssoma/template
+++ b/srcpkgs/ssoma/template
@@ -2,7 +2,6 @@
 pkgname=ssoma
 version=0.2.0
 revision=2
-archs=noarch
 make_install_target="install install-man prefix=/usr"
 build_style=perl-module
 depends="perl perl-Email-LocalDelivery perl-Email-MIME perl-File-Path-Expand
diff --git a/srcpkgs/st/template b/srcpkgs/st/template
index c1ff40e2496..4c3281adff6 100644
--- a/srcpkgs/st/template
+++ b/srcpkgs/st/template
@@ -29,7 +29,6 @@ post_install() {
 
 st-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/starfighter/template b/srcpkgs/starfighter/template
index 1b357256b2f..d465bacc52a 100644
--- a/srcpkgs/starfighter/template
+++ b/srcpkgs/starfighter/template
@@ -21,7 +21,6 @@ pre_configure() {
 
 starfighter-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/starfighter
 	}
diff --git a/srcpkgs/startup/template b/srcpkgs/startup/template
index 4a163d65afc..9180c0b7962 100644
--- a/srcpkgs/startup/template
+++ b/srcpkgs/startup/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 startup-tools_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} python3-dbus python3-gobject"
 	short_desc+=" - monitoring and analysis tools"
 	pkg_install() {
diff --git a/srcpkgs/statnot/template b/srcpkgs/statnot/template
index e1817d8f43a..e5bfff9f5e3 100644
--- a/srcpkgs/statnot/template
+++ b/srcpkgs/statnot/template
@@ -2,7 +2,6 @@
 pkgname=statnot
 version=0.0.4
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="pygtk python3-dbus xsetroot"
 short_desc="Notification system for lightweight window managers"
diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index d75e88837cc..b3d4de94217 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -2,7 +2,6 @@
 pkgname=stcgal
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/steam-fonts/template b/srcpkgs/steam-fonts/template
index b0f2aa192b5..fe6f3074b6f 100644
--- a/srcpkgs/steam-fonts/template
+++ b/srcpkgs/steam-fonts/template
@@ -2,7 +2,6 @@
 pkgname=steam-fonts
 version=1.0.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="font-util"
 short_desc="Fonts to fix scrambled or missing text in steam menus"
diff --git a/srcpkgs/stellarium/template b/srcpkgs/stellarium/template
index f3d91387947..38d1518ad50 100644
--- a/srcpkgs/stellarium/template
+++ b/srcpkgs/stellarium/template
@@ -16,7 +16,6 @@ checksum=400ef964c2a1612157a4b219464ea919b4e330322a0db894835b6e11c4af5e9b
 
 stellarium-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stellarium
 	}
diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index abe5f3b563c..4c507387804 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -2,7 +2,6 @@
 pkgname=stig
 version=0.10.1a
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel"
diff --git a/srcpkgs/stk/template b/srcpkgs/stk/template
index 8df159eb8a9..30029aa02bd 100644
--- a/srcpkgs/stk/template
+++ b/srcpkgs/stk/template
@@ -66,7 +66,6 @@ post_install() {
 
 stk-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stk
 	}
diff --git a/srcpkgs/stlarch-font/template b/srcpkgs/stlarch-font/template
index 1c123b7cf0e..ab9e37e4ed1 100644
--- a/srcpkgs/stlarch-font/template
+++ b/srcpkgs/stlarch-font/template
@@ -2,7 +2,6 @@
 pkgname=stlarch-font
 version=1.5
 revision=2
-archs=noarch
 wrksrc="stlarch_font-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/stow/template b/srcpkgs/stow/template
index 4fc87c43888..e3c02065e3c 100644
--- a/srcpkgs/stow/template
+++ b/srcpkgs/stow/template
@@ -2,7 +2,6 @@
 pkgname=stow
 version=2.3.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_target="test"
 hostmakedepends="perl"
diff --git a/srcpkgs/straw-viewer/template b/srcpkgs/straw-viewer/template
index fc327f581ab..22c8507b358 100644
--- a/srcpkgs/straw-viewer/template
+++ b/srcpkgs/straw-viewer/template
@@ -2,7 +2,6 @@
 pkgname=straw-viewer
 version=0.0.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index 44de1bc6fbb..d40a2a23262 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -2,7 +2,6 @@
 pkgname=streamlink
 version=1.5.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycryptodome python3-pycountry
diff --git a/srcpkgs/strip-nondeterminism/template b/srcpkgs/strip-nondeterminism/template
index 5065be2d273..a3129bf6856 100644
--- a/srcpkgs/strip-nondeterminism/template
+++ b/srcpkgs/strip-nondeterminism/template
@@ -2,7 +2,6 @@
 pkgname=strip-nondeterminism
 version=1.6.3
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-Archive-Zip"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/supertux2/template b/srcpkgs/supertux2/template
index 4b7053c6b95..0678b74eeb4 100644
--- a/srcpkgs/supertux2/template
+++ b/srcpkgs/supertux2/template
@@ -22,7 +22,6 @@ checksum=26a9e56ea2d284148849f3239177d777dda5b675a10ab2d76ee65854c91ff598
 
 supertux2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/supertux2
 	}
diff --git a/srcpkgs/supertuxkart/template b/srcpkgs/supertuxkart/template
index 664c79b2529..89985781f68 100644
--- a/srcpkgs/supertuxkart/template
+++ b/srcpkgs/supertuxkart/template
@@ -20,7 +20,6 @@ checksum=e9b02b0b11ab68aacaec38306903feffe59a501224805cd3645cebf10e880ae8
 
 supertuxkart-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		# these script only serve a prupose for developing, not to the package
 		rm "${DESTDIR}/usr/share/supertuxkart/data/po/extract_strings_from_XML.py"
diff --git a/srcpkgs/surfraw/template b/srcpkgs/surfraw/template
index eb49d652edf..3229c598c11 100644
--- a/srcpkgs/surfraw/template
+++ b/srcpkgs/surfraw/template
@@ -8,7 +8,6 @@ build_style=gnu-configure
 short_desc="Command line interface to variety of search engines"
 maintainer="Evan Deaubl <evan@deaubl.name>"
 license="Public Domain"
-archs=noarch
 hostmakedepends="automake perl"
 depends="perl"
 homepage="https://gitlab.com/surfraw/Surfraw"
diff --git a/srcpkgs/sv-helper/template b/srcpkgs/sv-helper/template
index 183ceb72944..74d90c83601 100644
--- a/srcpkgs/sv-helper/template
+++ b/srcpkgs/sv-helper/template
@@ -2,7 +2,6 @@
 pkgname=sv-helper
 version=2.0.2
 revision=1
-archs=noarch
 depends="runit"
 short_desc="Utilities to help administer a runit-as-pid1 system"
 maintainer="bougyman <tj@rubyists.com>"
diff --git a/srcpkgs/swaks/template b/srcpkgs/swaks/template
index e9394bf0b20..3cc608976cf 100644
--- a/srcpkgs/swaks/template
+++ b/srcpkgs/swaks/template
@@ -2,7 +2,6 @@
 pkgname=swaks
 version=20190914.0
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl perl-IO-Socket-INET6 perl-Net-DNS"
 short_desc="Swiss Army Knife for SMTP"
diff --git a/srcpkgs/sway/template b/srcpkgs/sway/template
index fa8e1850c50..2cf0434b1fc 100644
--- a/srcpkgs/sway/template
+++ b/srcpkgs/sway/template
@@ -34,7 +34,6 @@ post_install() {
 grimshot_package() {
 	short_desc="Helper for screenshots within sway"
 	depends="grim slurp sway wl-clipboard jq libnotify"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/bin/grimshot
 		vmove usr/share/man/man1/grimshot.1
diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index 382aec82c63..d09fbe29119 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -2,7 +2,6 @@
 pkgname=synapse
 version=1.18.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jsonschema python3-frozendict python3-canonicaljson
diff --git a/srcpkgs/syncplay/template b/srcpkgs/syncplay/template
index 83accc1983a..7c3239a484d 100644
--- a/srcpkgs/syncplay/template
+++ b/srcpkgs/syncplay/template
@@ -2,7 +2,6 @@
 pkgname=syncplay
 version=1.6.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/lib/syncplay/syncplay"
 depends="desktop-file-utils python3-pyside2 python3-Twisted
diff --git a/srcpkgs/syncthing-gtk/template b/srcpkgs/syncthing-gtk/template
index aaaa57a1c9e..f50ef18abb8 100644
--- a/srcpkgs/syncthing-gtk/template
+++ b/srcpkgs/syncthing-gtk/template
@@ -3,7 +3,6 @@ pkgname=syncthing-gtk
 reverts="0.14.36_1"
 version=0.9.4.4
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="syncthing python-dateutil libnotify librsvg python-bcrypt
diff --git a/srcpkgs/system-config-printer/template b/srcpkgs/system-config-printer/template
index c9fd88c7344..400e213b05e 100644
--- a/srcpkgs/system-config-printer/template
+++ b/srcpkgs/system-config-printer/template
@@ -20,7 +20,6 @@ distfiles="${homepage}/releases/download/${version}/system-config-printer-${vers
 checksum=ab4a4553f536487bf2be1143529749ed9926edd84bd97c2b42666a7111d60b7f
 
 python3-cupshelpers_package() {
-	archs=noarch
 	depends="python3-cups python3-dbus python3-requests"
 	short_desc="Python utility modules around the CUPS printing system"
 	pycompile_module="cupshelpers"
diff --git a/srcpkgs/t-prot/template b/srcpkgs/t-prot/template
index 96c7b10b41f..56123e4c6ba 100644
--- a/srcpkgs/t-prot/template
+++ b/srcpkgs/t-prot/template
@@ -5,7 +5,6 @@ revision=2
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD"
 depends="perl perl-Locale-gettext"
-archs=noarch
 homepage="http://www.escape.de/~tolot/mutt/"
 short_desc="TOFU protection - display filter for RFC822 messages"
 distfiles="http://www.escape.de/~tolot/mutt/t-prot/downloads/${pkgname}-${version}.tar.gz"
diff --git a/srcpkgs/t2ec/template b/srcpkgs/t2ec/template
index f90c7b2898c..5ad009c76ed 100644
--- a/srcpkgs/t2ec/template
+++ b/srcpkgs/t2ec/template
@@ -2,7 +2,6 @@
 pkgname=t2ec
 version=1.3
 revision=1
-archs=noarch
 depends="python3 acpi xbacklight alsa-utils wireless_tools wget jgmenu"
 short_desc="Scripts to display info icons and controls in Tint2 or other panels"
 maintainer="nwg-piotr <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/taisei/template b/srcpkgs/taisei/template
index e99bbc6f538..543044d052e 100644
--- a/srcpkgs/taisei/template
+++ b/srcpkgs/taisei/template
@@ -20,7 +20,6 @@ post_install() {
 
 taisei-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/taisei
 	}
diff --git a/srcpkgs/tango-icon-theme/template b/srcpkgs/tango-icon-theme/template
index 666bb9a533f..b0cc8257bc6 100644
--- a/srcpkgs/tango-icon-theme/template
+++ b/srcpkgs/tango-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=tango-icon-theme
 version=0.8.90
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="ImageMagick icon-naming-utils intltool pkg-config"
 makedepends="icon-naming-utils libmagick-devel"
diff --git a/srcpkgs/tcllib/template b/srcpkgs/tcllib/template
index a06f1295075..089c9fb4715 100644
--- a/srcpkgs/tcllib/template
+++ b/srcpkgs/tcllib/template
@@ -2,7 +2,6 @@
 pkgname=tcllib
 version=1.20
 revision=1
-archs=noarch
 wrksrc="tcllib-tcllib-${version/./-}"
 build_style=gnu-configure
 hostmakedepends="pkg-config tcl"
diff --git a/srcpkgs/tdrop/template b/srcpkgs/tdrop/template
index 9d454df944a..eccfdbef043 100644
--- a/srcpkgs/tdrop/template
+++ b/srcpkgs/tdrop/template
@@ -2,7 +2,6 @@
 pkgname=tdrop
 version=0.3.0
 revision=1
-archs=noarch
 depends="bash xdotool xprop xwininfo"
 short_desc="Turn terminal emulator or any program into dropdown window"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/tegaki-zinnia-japanese/template b/srcpkgs/tegaki-zinnia-japanese/template
index c6e9c64cef8..83766bce8d7 100644
--- a/srcpkgs/tegaki-zinnia-japanese/template
+++ b/srcpkgs/tegaki-zinnia-japanese/template
@@ -9,7 +9,6 @@ license="GPL-2"
 hostmakedepends="unzip"
 distfiles="https://github.com/tegaki/tegaki/releases/download/v0.3/${pkgname}-${version}.zip"
 checksum=07861bbb5440d74e705864721f12a5ce1c7f21a869f9c95ff21433d8994aafda
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/tegaki/models/zinnia
diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index bd60dcc57a6..1d3f6602f83 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -2,7 +2,6 @@
 pkgname=tekaim
 version=1.6.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="curl maim python3 xclip"
diff --git a/srcpkgs/telepathy-python/template b/srcpkgs/telepathy-python/template
index 41a0e0d03cb..f5e41c305e8 100644
--- a/srcpkgs/telepathy-python/template
+++ b/srcpkgs/telepathy-python/template
@@ -2,7 +2,6 @@
 pkgname=telepathy-python
 version=0.15.19
 revision=7
-archs=noarch
 build_style=gnu-configure
 pycompile_module="telepathy"
 hostmakedepends="automake python libxslt"
diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 83b1bca4edd..a7508ab0d78 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -2,7 +2,6 @@
 pkgname=telepresence
 version=0.105
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-pip python3-setuptools git"
 depends="kubectl fuse-sshfs torsocks openssh conntrack-tools iptables"
diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index d9efe27f2db..1431154fd64 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -2,7 +2,6 @@
 pkgname=termdown
 version=1.17.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-dateutil python3-click python3-pyfiglet"
diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index ba3fcfdc8d6..7867869fda7 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -2,7 +2,6 @@
 pkgname=terminal_markdown_viewer
 version=1.6.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mdv"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/terminator/template b/srcpkgs/terminator/template
index bc95ee7924b..1e0b9517f25 100644
--- a/srcpkgs/terminator/template
+++ b/srcpkgs/terminator/template
@@ -2,7 +2,6 @@
 pkgname=terminator
 version=1.91
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="terminatorlib"
 hostmakedepends="intltool python"
diff --git a/srcpkgs/terminus-font/template b/srcpkgs/terminus-font/template
index 4a296a8f0ce..8efc808c4b2 100644
--- a/srcpkgs/terminus-font/template
+++ b/srcpkgs/terminus-font/template
@@ -2,7 +2,6 @@
 pkgname=terminus-font
 version=4.48
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--x11dir=/usr/share/fonts/X11/misc
  --psfdir=/usr/share/kbd/consolefonts"
diff --git a/srcpkgs/termsyn-font/template b/srcpkgs/termsyn-font/template
index 2d6f574bda5..f59be231eb7 100644
--- a/srcpkgs/termsyn-font/template
+++ b/srcpkgs/termsyn-font/template
@@ -2,7 +2,6 @@
 pkgname=termsyn-font
 version=1.8.7
 revision=2
-archs=noarch
 wrksrc="termsyn-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/termtosvg/template b/srcpkgs/termtosvg/template
index 431d0945140..6c60000ecbe 100644
--- a/srcpkgs/termtosvg/template
+++ b/srcpkgs/termtosvg/template
@@ -2,7 +2,6 @@
 pkgname=termtosvg
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyte python3-lxml python3-wcwidth"
diff --git a/srcpkgs/tesseract-ocr/template b/srcpkgs/tesseract-ocr/template
index f0313da0ce6..8aa75de7ac9 100644
--- a/srcpkgs/tesseract-ocr/template
+++ b/srcpkgs/tesseract-ocr/template
@@ -108,7 +108,6 @@ tesseract-ocr-devel_package() {
 }
 tesseract-ocr-basic_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-all>=0"
@@ -120,7 +119,6 @@ tesseract-ocr-basic_package() {
 }
 tesseract-ocr-all_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-basic>=0"
@@ -143,7 +141,6 @@ tesseract-ocr-all_package() {
 	done
 }
 tesseract-ocr-afr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Afrikaans language data"
 	pkg_install() {
@@ -151,7 +148,6 @@ tesseract-ocr-afr_package() {
 	}
 }
 tesseract-ocr-amh_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Amharic language data"
 	pkg_install() {
@@ -159,7 +155,6 @@ tesseract-ocr-amh_package() {
 	}
 }
 tesseract-ocr-ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic language data"
 	pkg_install() {
@@ -167,7 +162,6 @@ tesseract-ocr-ara_package() {
 	}
 }
 tesseract-ocr-asm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Assamese language data"
 	pkg_install() {
@@ -175,7 +169,6 @@ tesseract-ocr-asm_package() {
 	}
 }
 tesseract-ocr-aze_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani language data"
 	pkg_install() {
@@ -183,7 +176,6 @@ tesseract-ocr-aze_package() {
 	}
 }
 tesseract-ocr-aze_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani (cyrillic) language data"
 	pkg_install() {
@@ -191,7 +183,6 @@ tesseract-ocr-aze_cyrl_package() {
 	}
 }
 tesseract-ocr-bel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Belarusian language data"
 	pkg_install() {
@@ -199,7 +190,6 @@ tesseract-ocr-bel_package() {
 	}
 }
 tesseract-ocr-ben_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali language data"
 	pkg_install() {
@@ -207,7 +197,6 @@ tesseract-ocr-ben_package() {
 	}
 }
 tesseract-ocr-bod_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan language data"
 	pkg_install() {
@@ -215,7 +204,6 @@ tesseract-ocr-bod_package() {
 	}
 }
 tesseract-ocr-bos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bosnian language data"
 	pkg_install() {
@@ -223,7 +211,6 @@ tesseract-ocr-bos_package() {
 	}
 }
 tesseract-ocr-bre_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Breton language data"
 	pkg_install() {
@@ -231,7 +218,6 @@ tesseract-ocr-bre_package() {
 	}
 }
 tesseract-ocr-bul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bulgarian language data"
 	pkg_install() {
@@ -239,7 +225,6 @@ tesseract-ocr-bul_package() {
 	}
 }
 tesseract-ocr-cat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Catalan language data"
 	pkg_install() {
@@ -247,7 +232,6 @@ tesseract-ocr-cat_package() {
 	}
 }
 tesseract-ocr-ceb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cebuano language data"
 	pkg_install() {
@@ -255,7 +239,6 @@ tesseract-ocr-ceb_package() {
 	}
 }
 tesseract-ocr-ces_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Czech language data"
 	pkg_install() {
@@ -263,7 +246,6 @@ tesseract-ocr-ces_package() {
 	}
 }
 tesseract-ocr-chi_sim_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Simplified) language data"
 	pkg_install() {
@@ -271,7 +253,6 @@ tesseract-ocr-chi_sim_package() {
 	}
 }
 tesseract-ocr-chi_tra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Traditional) language data"
 	pkg_install() {
@@ -279,7 +260,6 @@ tesseract-ocr-chi_tra_package() {
 	}
 }
 tesseract-ocr-chr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee language data"
 	pkg_install() {
@@ -287,7 +267,6 @@ tesseract-ocr-chr_package() {
 	}
 }
 tesseract-ocr-cos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Corsican language data"
 	pkg_install() {
@@ -295,7 +274,6 @@ tesseract-ocr-cos_package() {
 	}
 }
 tesseract-ocr-cym_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Welsh language data"
 	pkg_install() {
@@ -303,7 +281,6 @@ tesseract-ocr-cym_package() {
 	}
 }
 tesseract-ocr-dan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Danish language data"
 	pkg_install() {
@@ -311,7 +288,6 @@ tesseract-ocr-dan_package() {
 	}
 }
 tesseract-ocr-deu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - German language data"
 	pkg_install() {
@@ -319,7 +295,6 @@ tesseract-ocr-deu_package() {
 	}
 }
 tesseract-ocr-div_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dhivehi language data"
 	pkg_install() {
@@ -327,7 +302,6 @@ tesseract-ocr-div_package() {
 	}
 }
 tesseract-ocr-dzo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dzongkha language data"
 	pkg_install() {
@@ -335,7 +309,6 @@ tesseract-ocr-dzo_package() {
 	}
 }
 tesseract-ocr-ell_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek language data"
 	pkg_install() {
@@ -343,7 +316,6 @@ tesseract-ocr-ell_package() {
 	}
 }
 tesseract-ocr-eng_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - English language data"
 	pkg_install() {
@@ -351,7 +323,6 @@ tesseract-ocr-eng_package() {
 	}
 }
 tesseract-ocr-enm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle English (1100-1500) language data"
 	pkg_install() {
@@ -359,7 +330,6 @@ tesseract-ocr-enm_package() {
 	}
 }
 tesseract-ocr-epo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Esperanto language data"
 	pkg_install() {
@@ -367,7 +337,6 @@ tesseract-ocr-epo_package() {
 	}
 }
 tesseract-ocr-est_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Estonian language data"
 	pkg_install() {
@@ -375,7 +344,6 @@ tesseract-ocr-est_package() {
 	}
 }
 tesseract-ocr-eus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Basque language data"
 	pkg_install() {
@@ -383,7 +351,6 @@ tesseract-ocr-eus_package() {
 	}
 }
 tesseract-ocr-fao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Faroese language data"
 	pkg_install() {
@@ -391,7 +358,6 @@ tesseract-ocr-fao_package() {
 	}
 }
 tesseract-ocr-fas_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Persian language data"
 	pkg_install() {
@@ -399,7 +365,6 @@ tesseract-ocr-fas_package() {
 	}
 }
 tesseract-ocr-fil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Filipino language data"
 	pkg_install() {
@@ -407,7 +372,6 @@ tesseract-ocr-fil_package() {
 	}
 }
 tesseract-ocr-fin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Finnish language data"
 	pkg_install() {
@@ -415,7 +379,6 @@ tesseract-ocr-fin_package() {
 	}
 }
 tesseract-ocr-fra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - French language data"
 	pkg_install() {
@@ -423,7 +386,6 @@ tesseract-ocr-fra_package() {
 	}
 }
 tesseract-ocr-frk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frankish language data"
 	pkg_install() {
@@ -431,7 +393,6 @@ tesseract-ocr-frk_package() {
 	}
 }
 tesseract-ocr-frm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle French (ca. 1400-1600) language data"
 	pkg_install() {
@@ -439,7 +400,6 @@ tesseract-ocr-frm_package() {
 	}
 }
 tesseract-ocr-fry_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frisian language data"
 	pkg_install() {
@@ -447,7 +407,6 @@ tesseract-ocr-fry_package() {
 	}
 }
 tesseract-ocr-gla_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Scottish Gaelic language data"
 	pkg_install() {
@@ -455,7 +414,6 @@ tesseract-ocr-gla_package() {
 	}
 }
 tesseract-ocr-gle_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Irish language data"
 	pkg_install() {
@@ -463,7 +421,6 @@ tesseract-ocr-gle_package() {
 	}
 }
 tesseract-ocr-glg_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Galician language data"
 	pkg_install() {
@@ -471,7 +428,6 @@ tesseract-ocr-glg_package() {
 	}
 }
 tesseract-ocr-grc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ancient Greek Language data"
 	pkg_install() {
@@ -479,7 +435,6 @@ tesseract-ocr-grc_package() {
 	}
 }
 tesseract-ocr-guj_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati Language data"
 	pkg_install() {
@@ -487,7 +442,6 @@ tesseract-ocr-guj_package() {
 	}
 }
 tesseract-ocr-hat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Haitian language data"
 	pkg_install() {
@@ -495,7 +449,6 @@ tesseract-ocr-hat_package() {
 	}
 }
 tesseract-ocr-heb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew language data"
 	pkg_install() {
@@ -503,7 +456,6 @@ tesseract-ocr-heb_package() {
 	}
 }
 tesseract-ocr-hin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hindi language data"
 	pkg_install() {
@@ -511,7 +463,6 @@ tesseract-ocr-hin_package() {
 	}
 }
 tesseract-ocr-hrv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Croatian language data"
 	pkg_install() {
@@ -519,7 +470,6 @@ tesseract-ocr-hrv_package() {
 	}
 }
 tesseract-ocr-hun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hungarian language data"
 	pkg_install() {
@@ -527,7 +477,6 @@ tesseract-ocr-hun_package() {
 	}
 }
 tesseract-ocr-hye_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian language data"
 	pkg_install() {
@@ -535,7 +484,6 @@ tesseract-ocr-hye_package() {
 	}
 }
 tesseract-ocr-iku_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Inuktitut language data"
 	pkg_install() {
@@ -543,7 +491,6 @@ tesseract-ocr-iku_package() {
 	}
 }
 tesseract-ocr-ind_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Indonesian language data"
 	pkg_install() {
@@ -551,7 +498,6 @@ tesseract-ocr-ind_package() {
 	}
 }
 tesseract-ocr-isl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Icelandic language data"
 	pkg_install() {
@@ -559,7 +505,6 @@ tesseract-ocr-isl_package() {
 	}
 }
 tesseract-ocr-ita_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian language data"
 	pkg_install() {
@@ -567,7 +512,6 @@ tesseract-ocr-ita_package() {
 	}
 }
 tesseract-ocr-ita_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian (Old) language data"
 	pkg_install() {
@@ -575,7 +519,6 @@ tesseract-ocr-ita_old_package() {
 	}
 }
 tesseract-ocr-jav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Javanese language data"
 	pkg_install() {
@@ -583,7 +526,6 @@ tesseract-ocr-jav_package() {
 	}
 }
 tesseract-ocr-jpn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese language data"
 	pkg_install() {
@@ -591,7 +533,6 @@ tesseract-ocr-jpn_package() {
 	}
 }
 tesseract-ocr-kan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada language data"
 	pkg_install() {
@@ -599,7 +540,6 @@ tesseract-ocr-kan_package() {
 	}
 }
 tesseract-ocr-kat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian language data"
 	pkg_install() {
@@ -607,7 +547,6 @@ tesseract-ocr-kat_package() {
 	}
 }
 tesseract-ocr-kat_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian (old) language data"
 	pkg_install() {
@@ -615,7 +554,6 @@ tesseract-ocr-kat_old_package() {
 	}
 }
 tesseract-ocr-kaz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kazakh language data"
 	pkg_install() {
@@ -623,7 +561,6 @@ tesseract-ocr-kaz_package() {
 	}
 }
 tesseract-ocr-khm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Central Khmer language data"
 	pkg_install() {
@@ -631,7 +568,6 @@ tesseract-ocr-khm_package() {
 	}
 }
 tesseract-ocr-kir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kirghiz language data"
 	pkg_install() {
@@ -639,7 +575,6 @@ tesseract-ocr-kir_package() {
 	}
 }
 tesseract-ocr-kor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Korean language data"
 	pkg_install() {
@@ -647,7 +582,6 @@ tesseract-ocr-kor_package() {
 	}
 }
 tesseract-ocr-kur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish language data"
 	pkg_install() {
@@ -655,7 +589,6 @@ tesseract-ocr-kur_package() {
 	}
 }
 tesseract-ocr-kur_ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish (Arabic) language data"
 	pkg_install() {
@@ -663,7 +596,6 @@ tesseract-ocr-kur_ara_package() {
 	}
 }
 tesseract-ocr-lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao language data"
 	pkg_install() {
@@ -671,7 +603,6 @@ tesseract-ocr-lao_package() {
 	}
 }
 tesseract-ocr-lat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin language data"
 	pkg_install() {
@@ -679,7 +610,6 @@ tesseract-ocr-lat_package() {
 	}
 }
 tesseract-ocr-lav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latvian language data"
 	pkg_install() {
@@ -687,7 +617,6 @@ tesseract-ocr-lav_package() {
 	}
 }
 tesseract-ocr-lit_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lithuanian language data"
 	pkg_install() {
@@ -695,7 +624,6 @@ tesseract-ocr-lit_package() {
 	}
 }
 tesseract-ocr-ltz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Luxembourgish language data"
 	pkg_install() {
@@ -703,7 +631,6 @@ tesseract-ocr-ltz_package() {
 	}
 }
 tesseract-ocr-mal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam language data"
 	pkg_install() {
@@ -711,7 +638,6 @@ tesseract-ocr-mal_package() {
 	}
 }
 tesseract-ocr-mar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Marathi language data"
 	pkg_install() {
@@ -719,7 +645,6 @@ tesseract-ocr-mar_package() {
 	}
 }
 tesseract-ocr-mkd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Macedonian language data"
 	pkg_install() {
@@ -727,7 +652,6 @@ tesseract-ocr-mkd_package() {
 	}
 }
 tesseract-ocr-mlt_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maltese language data"
 	pkg_install() {
@@ -735,7 +659,6 @@ tesseract-ocr-mlt_package() {
 	}
 }
 tesseract-ocr-mon_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Mongolian language data"
 	pkg_install() {
@@ -743,7 +666,6 @@ tesseract-ocr-mon_package() {
 	}
 }
 tesseract-ocr-mri_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maori language data"
 	pkg_install() {
@@ -751,7 +673,6 @@ tesseract-ocr-mri_package() {
 	}
 }
 tesseract-ocr-msa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malay language data"
 	pkg_install() {
@@ -759,7 +680,6 @@ tesseract-ocr-msa_package() {
 	}
 }
 tesseract-ocr-mya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Burmese language data"
 	pkg_install() {
@@ -767,7 +687,6 @@ tesseract-ocr-mya_package() {
 	}
 }
 tesseract-ocr-nep_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Nepalese language data"
 	pkg_install() {
@@ -775,7 +694,6 @@ tesseract-ocr-nep_package() {
 	}
 }
 tesseract-ocr-nld_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dutch language data"
 	pkg_install() {
@@ -783,7 +701,6 @@ tesseract-ocr-nld_package() {
 	}
 }
 tesseract-ocr-nor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Norwegian language data"
 	pkg_install() {
@@ -791,7 +708,6 @@ tesseract-ocr-nor_package() {
 	}
 }
 tesseract-ocr-oci_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Occitan (post 1500) language data"
 	pkg_install() {
@@ -799,7 +715,6 @@ tesseract-ocr-oci_package() {
 	}
 }
 tesseract-ocr-ori_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya language data"
 	pkg_install() {
@@ -807,7 +722,6 @@ tesseract-ocr-ori_package() {
 	}
 }
 tesseract-ocr-pan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Panjabi language data"
 	pkg_install() {
@@ -815,7 +729,6 @@ tesseract-ocr-pan_package() {
 	}
 }
 tesseract-ocr-pol_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Polish language data"
 	pkg_install() {
@@ -823,7 +736,6 @@ tesseract-ocr-pol_package() {
 	}
 }
 tesseract-ocr-por_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Portuguese language data"
 	pkg_install() {
@@ -831,7 +743,6 @@ tesseract-ocr-por_package() {
 	}
 }
 tesseract-ocr-pus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Pushto language data"
 	pkg_install() {
@@ -839,7 +750,6 @@ tesseract-ocr-pus_package() {
 	}
 }
 tesseract-ocr-que_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Quechua language data"
 	pkg_install() {
@@ -847,7 +757,6 @@ tesseract-ocr-que_package() {
 	}
 }
 tesseract-ocr-ron_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Romanian language data"
 	pkg_install() {
@@ -855,7 +764,6 @@ tesseract-ocr-ron_package() {
 	}
 }
 tesseract-ocr-rus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Russian language data"
 	pkg_install() {
@@ -863,7 +771,6 @@ tesseract-ocr-rus_package() {
 	}
 }
 tesseract-ocr-san_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sanskrit language data"
 	pkg_install() {
@@ -871,7 +778,6 @@ tesseract-ocr-san_package() {
 	}
 }
 tesseract-ocr-sin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala language data"
 	pkg_install() {
@@ -879,7 +785,6 @@ tesseract-ocr-sin_package() {
 	}
 }
 tesseract-ocr-slk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovakian language data"
 	pkg_install() {
@@ -887,7 +792,6 @@ tesseract-ocr-slk_package() {
 	}
 }
 tesseract-ocr-slv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovenian language data"
 	pkg_install() {
@@ -895,7 +799,6 @@ tesseract-ocr-slv_package() {
 	}
 }
 tesseract-ocr-snd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sindhi language data"
 	pkg_install() {
@@ -903,7 +806,6 @@ tesseract-ocr-snd_package() {
 	}
 }
 tesseract-ocr-spa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish language data"
 	pkg_install() {
@@ -911,7 +813,6 @@ tesseract-ocr-spa_package() {
 	}
 }
 tesseract-ocr-spa_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish (Old) language data"
 	pkg_install() {
@@ -919,7 +820,6 @@ tesseract-ocr-spa_old_package() {
 	}
 }
 tesseract-ocr-sqi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Albanian language data"
 	pkg_install() {
@@ -927,7 +827,6 @@ tesseract-ocr-sqi_package() {
 	}
 }
 tesseract-ocr-srp_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian language data"
 	pkg_install() {
@@ -935,7 +834,6 @@ tesseract-ocr-srp_package() {
 	}
 }
 tesseract-ocr-srp_latn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian (Latin) language data"
 	pkg_install() {
@@ -943,7 +841,6 @@ tesseract-ocr-srp_latn_package() {
 	}
 }
 tesseract-ocr-sun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sundanese language data"
 	pkg_install() {
@@ -951,7 +848,6 @@ tesseract-ocr-sun_package() {
 	}
 }
 tesseract-ocr-swa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swahili language data"
 	pkg_install() {
@@ -959,7 +855,6 @@ tesseract-ocr-swa_package() {
 	}
 }
 tesseract-ocr-swe_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swedish language data"
 	pkg_install() {
@@ -967,7 +862,6 @@ tesseract-ocr-swe_package() {
 	}
 }
 tesseract-ocr-syr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac language data"
 	pkg_install() {
@@ -975,7 +869,6 @@ tesseract-ocr-syr_package() {
 	}
 }
 tesseract-ocr-tam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil language data"
 	pkg_install() {
@@ -983,7 +876,6 @@ tesseract-ocr-tam_package() {
 	}
 }
 tesseract-ocr-tat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tatar language data"
 	pkg_install() {
@@ -991,7 +883,6 @@ tesseract-ocr-tat_package() {
 	}
 }
 tesseract-ocr-tel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu language data"
 	pkg_install() {
@@ -999,7 +890,6 @@ tesseract-ocr-tel_package() {
 	}
 }
 tesseract-ocr-tgk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tajik language data"
 	pkg_install() {
@@ -1007,7 +897,6 @@ tesseract-ocr-tgk_package() {
 	}
 }
 tesseract-ocr-tgl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tagalog language data"
 	pkg_install() {
@@ -1015,7 +904,6 @@ tesseract-ocr-tgl_package() {
 	}
 }
 tesseract-ocr-tha_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai language data"
 	pkg_install() {
@@ -1023,7 +911,6 @@ tesseract-ocr-tha_package() {
 	}
 }
 tesseract-ocr-tir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tigrinya language data"
 	pkg_install() {
@@ -1031,7 +918,6 @@ tesseract-ocr-tir_package() {
 	}
 }
 tesseract-ocr-ton_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tonga language data"
 	pkg_install() {
@@ -1039,7 +925,6 @@ tesseract-ocr-ton_package() {
 	}
 }
 tesseract-ocr-tur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Turkish language data"
 	pkg_install() {
@@ -1047,7 +932,6 @@ tesseract-ocr-tur_package() {
 	}
 }
 tesseract-ocr-uig_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uighur language data"
 	pkg_install() {
@@ -1055,7 +939,6 @@ tesseract-ocr-uig_package() {
 	}
 }
 tesseract-ocr-ukr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ukrainian language data"
 	pkg_install() {
@@ -1063,7 +946,6 @@ tesseract-ocr-ukr_package() {
 	}
 }
 tesseract-ocr-urd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Urdu language data"
 	pkg_install() {
@@ -1071,7 +953,6 @@ tesseract-ocr-urd_package() {
 	}
 }
 tesseract-ocr-uzb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek language data"
 	pkg_install() {
@@ -1079,7 +960,6 @@ tesseract-ocr-uzb_package() {
 	}
 }
 tesseract-ocr-uzb_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek (Cyrillic) language data"
 	pkg_install() {
@@ -1087,7 +967,6 @@ tesseract-ocr-uzb_cyrl_package() {
 	}
 }
 tesseract-ocr-vie_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese language data"
 	pkg_install() {
@@ -1095,7 +974,6 @@ tesseract-ocr-vie_package() {
 	}
 }
 tesseract-ocr-yid_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yiddish language data"
 	pkg_install() {
@@ -1103,7 +981,6 @@ tesseract-ocr-yid_package() {
 	}
 }
 tesseract-ocr-yor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yoruba language data"
 	pkg_install() {
@@ -1111,7 +988,6 @@ tesseract-ocr-yor_package() {
 	}
 }
 tesseract-ocr-script-Arabic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic script data"
 	pkg_install() {
@@ -1119,7 +995,6 @@ tesseract-ocr-script-Arabic_package() {
 	}
 }
 tesseract-ocr-script-Armenian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian script data"
 	pkg_install() {
@@ -1127,7 +1002,6 @@ tesseract-ocr-script-Armenian_package() {
 	}
 }
 tesseract-ocr-script-Bengali_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali script data"
 	pkg_install() {
@@ -1135,7 +1009,6 @@ tesseract-ocr-script-Bengali_package() {
 	}
 }
 tesseract-ocr-script-Canadian_Aboriginal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Canadian Aboriginal script data"
 	pkg_install() {
@@ -1143,7 +1016,6 @@ tesseract-ocr-script-Canadian_Aboriginal_package() {
 	}
 }
 tesseract-ocr-script-Cherokee_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee script data"
 	pkg_install() {
@@ -1151,7 +1023,6 @@ tesseract-ocr-script-Cherokee_package() {
 	}
 }
 tesseract-ocr-script-Cyrillic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cyrillic script data"
 	pkg_install() {
@@ -1159,7 +1030,6 @@ tesseract-ocr-script-Cyrillic_package() {
 	}
 }
 tesseract-ocr-script-Devanagari_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Devanagari script data"
 	pkg_install() {
@@ -1167,7 +1037,6 @@ tesseract-ocr-script-Devanagari_package() {
 	}
 }
 tesseract-ocr-script-Ethiopic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ethiopic script data"
 	pkg_install() {
@@ -1175,7 +1044,6 @@ tesseract-ocr-script-Ethiopic_package() {
 	}
 }
 tesseract-ocr-script-Fraktur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Fraktur script data"
 	pkg_install() {
@@ -1183,7 +1051,6 @@ tesseract-ocr-script-Fraktur_package() {
 	}
 }
 tesseract-ocr-script-Georgian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian script data"
 	pkg_install() {
@@ -1191,7 +1058,6 @@ tesseract-ocr-script-Georgian_package() {
 	}
 }
 tesseract-ocr-script-Greek_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek script data"
 	pkg_install() {
@@ -1199,7 +1065,6 @@ tesseract-ocr-script-Greek_package() {
 	}
 }
 tesseract-ocr-script-Gujarati_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati script data"
 	pkg_install() {
@@ -1207,7 +1072,6 @@ tesseract-ocr-script-Gujarati_package() {
 	}
 }
 tesseract-ocr-script-Gurmukhi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gurmukhi script data"
 	pkg_install() {
@@ -1215,7 +1079,6 @@ tesseract-ocr-script-Gurmukhi_package() {
 	}
 }
 tesseract-ocr-script-HanS_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanS script data"
 	pkg_install() {
@@ -1223,7 +1086,6 @@ tesseract-ocr-script-HanS_package() {
 	}
 }
 tesseract-ocr-script-HanT_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanT script data"
 	pkg_install() {
@@ -1231,7 +1093,6 @@ tesseract-ocr-script-HanT_package() {
 	}
 }
 tesseract-ocr-script-Hangul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hangul script data"
 	pkg_install() {
@@ -1239,7 +1100,6 @@ tesseract-ocr-script-Hangul_package() {
 	}
 }
 tesseract-ocr-script-Hebrew_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew script data"
 	pkg_install() {
@@ -1247,7 +1107,6 @@ tesseract-ocr-script-Hebrew_package() {
 	}
 }
 tesseract-ocr-script-Japanese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese script data"
 	pkg_install() {
@@ -1255,7 +1114,6 @@ tesseract-ocr-script-Japanese_package() {
 	}
 }
 tesseract-ocr-script-Kannada_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada script data"
 	pkg_install() {
@@ -1263,7 +1121,6 @@ tesseract-ocr-script-Kannada_package() {
 	}
 }
 tesseract-ocr-script-Khmer_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Khmer script data"
 	pkg_install() {
@@ -1271,7 +1128,6 @@ tesseract-ocr-script-Khmer_package() {
 	}
 }
 tesseract-ocr-script-Lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao script data"
 	pkg_install() {
@@ -1279,7 +1135,6 @@ tesseract-ocr-script-Lao_package() {
 	}
 }
 tesseract-ocr-script-Latin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin script data"
 	pkg_install() {
@@ -1287,7 +1142,6 @@ tesseract-ocr-script-Latin_package() {
 	}
 }
 tesseract-ocr-script-Malayalam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam script data"
 	pkg_install() {
@@ -1295,7 +1149,6 @@ tesseract-ocr-script-Malayalam_package() {
 	}
 }
 tesseract-ocr-script-Myanmar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Myanmar script data"
 	pkg_install() {
@@ -1303,7 +1156,6 @@ tesseract-ocr-script-Myanmar_package() {
 	}
 }
 tesseract-ocr-script-Oriya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya script data"
 	pkg_install() {
@@ -1311,7 +1163,6 @@ tesseract-ocr-script-Oriya_package() {
 	}
 }
 tesseract-ocr-script-Sinhala_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala script data"
 	pkg_install() {
@@ -1319,7 +1170,6 @@ tesseract-ocr-script-Sinhala_package() {
 	}
 }
 tesseract-ocr-script-Syriac_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac script data"
 	pkg_install() {
@@ -1327,7 +1177,6 @@ tesseract-ocr-script-Syriac_package() {
 	}
 }
 tesseract-ocr-script-Tamil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil script data"
 	pkg_install() {
@@ -1335,7 +1184,6 @@ tesseract-ocr-script-Tamil_package() {
 	}
 }
 tesseract-ocr-script-Telugu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu script data"
 	pkg_install() {
@@ -1343,7 +1191,6 @@ tesseract-ocr-script-Telugu_package() {
 	}
 }
 tesseract-ocr-script-Thaana_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thaana script data"
 	pkg_install() {
@@ -1351,7 +1198,6 @@ tesseract-ocr-script-Thaana_package() {
 	}
 }
 tesseract-ocr-script-Thai_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai script data"
 	pkg_install() {
@@ -1359,7 +1205,6 @@ tesseract-ocr-script-Thai_package() {
 	}
 }
 tesseract-ocr-script-Tibetan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan script data"
 	pkg_install() {
@@ -1367,7 +1212,6 @@ tesseract-ocr-script-Tibetan_package() {
 	}
 }
 tesseract-ocr-script-Vietnamese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese script data"
 	pkg_install() {
diff --git a/srcpkgs/testssl.sh/template b/srcpkgs/testssl.sh/template
index 2480aa2bce2..493fac73a21 100644
--- a/srcpkgs/testssl.sh/template
+++ b/srcpkgs/testssl.sh/template
@@ -2,7 +2,6 @@
 pkgname=testssl.sh
 version=3.0.2
 revision=1
-archs=noarch
 depends="libressl bind-utils"
 short_desc="Command line tool which checks a server for the support of TLS/SSL"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/tewi-font/template b/srcpkgs/tewi-font/template
index 49e301745d3..4ce6b7c79a1 100644
--- a/srcpkgs/tewi-font/template
+++ b/srcpkgs/tewi-font/template
@@ -2,7 +2,6 @@
 pkgname=tewi-font
 version=2.0.2
 revision=2
-archs=noarch
 hostmakedepends="bdftopcf python3"
 depends="font-util xbps-triggers"
 short_desc="Programming monospace bitmap font"
diff --git a/srcpkgs/texi2html/template b/srcpkgs/texi2html/template
index 9726abd7e4d..7fb2c48e317 100644
--- a/srcpkgs/texi2html/template
+++ b/srcpkgs/texi2html/template
@@ -2,7 +2,6 @@
 pkgname=texi2html
 version=5.0
 revision=1
-archs=noarch
 build_style="gnu-configure"
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/texlive-basic/template b/srcpkgs/texlive-basic/template
index 52fbfee52a3..e04c946eb94 100644
--- a/srcpkgs/texlive-basic/template
+++ b/srcpkgs/texlive-basic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-basic
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-bibtexextra/template b/srcpkgs/texlive-bibtexextra/template
index e5954e1c364..1f159c9846c 100644
--- a/srcpkgs/texlive-bibtexextra/template
+++ b/srcpkgs/texlive-bibtexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-bibtexextra
 version=2020.55376
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional BibTeX styles and bibliography databases"
diff --git a/srcpkgs/texlive-core/template b/srcpkgs/texlive-core/template
index 694c8bcb3d0..d5d5c0fa530 100644
--- a/srcpkgs/texlive-core/template
+++ b/srcpkgs/texlive-core/template
@@ -2,7 +2,6 @@
 pkgname=texlive-core
 version=2020.55416
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - core texmf distribution"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-fontsextra/template b/srcpkgs/texlive-fontsextra/template
index a80ea7cd234..f7df53cab6f 100644
--- a/srcpkgs/texlive-fontsextra/template
+++ b/srcpkgs/texlive-fontsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-fontsextra
 version=2020.55407
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - All sorts of extra fonts"
diff --git a/srcpkgs/texlive-formatsextra/template b/srcpkgs/texlive-formatsextra/template
index 85704c43687..d38d08aa8c4 100644
--- a/srcpkgs/texlive-formatsextra/template
+++ b/srcpkgs/texlive-formatsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-formatsextra
 version=2020.54498
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Collection of extra TeX 'formats'"
diff --git a/srcpkgs/texlive-full/template b/srcpkgs/texlive-full/template
index d6e1c127e0c..249f34ffc48 100644
--- a/srcpkgs/texlive-full/template
+++ b/srcpkgs/texlive-full/template
@@ -2,7 +2,6 @@
 pkgname=texlive-full
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-most>=2020
  texlive-lang>=2020"
diff --git a/srcpkgs/texlive-games/template b/srcpkgs/texlive-games/template
index d5a8209c893..463ef3f8267 100644
--- a/srcpkgs/texlive-games/template
+++ b/srcpkgs/texlive-games/template
@@ -2,7 +2,6 @@
 pkgname=texlive-games
 version=2020.55271
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting board games"
diff --git a/srcpkgs/texlive-humanities/template b/srcpkgs/texlive-humanities/template
index e1b06eacfd4..9c08fa051d8 100644
--- a/srcpkgs/texlive-humanities/template
+++ b/srcpkgs/texlive-humanities/template
@@ -2,7 +2,6 @@
 pkgname=texlive-humanities
 version=2020.55389
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra texlive-pictures"
 short_desc="TeX Live - Packages for humanities, law, linguistics, etc"
diff --git a/srcpkgs/texlive-lang/template b/srcpkgs/texlive-lang/template
index 11469a71bf2..5a33e9cb289 100644
--- a/srcpkgs/texlive-lang/template
+++ b/srcpkgs/texlive-lang/template
@@ -2,7 +2,6 @@
 pkgname=texlive-lang
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-core>=2020.55416
  texlive-langchinese>=2020.55162
diff --git a/srcpkgs/texlive-langchinese/template b/srcpkgs/texlive-langchinese/template
index 4fa5ee940eb..81301b1aa92 100644
--- a/srcpkgs/texlive-langchinese/template
+++ b/srcpkgs/texlive-langchinese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langchinese
 version=2020.55162
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Chinese"
diff --git a/srcpkgs/texlive-langcyrillic/template b/srcpkgs/texlive-langcyrillic/template
index 80b953954c5..6e351e93600 100644
--- a/srcpkgs/texlive-langcyrillic/template
+++ b/srcpkgs/texlive-langcyrillic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langcyrillic
 version=2020.54594
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Cyrillic text"
diff --git a/srcpkgs/texlive-langextra/template b/srcpkgs/texlive-langextra/template
index ac20ff46333..2cfe79bdcb5 100644
--- a/srcpkgs/texlive-langextra/template
+++ b/srcpkgs/texlive-langextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langextra
 version=2020.55417
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra"
 short_desc="TeX Live - Packages for a bunch of extra languages"
diff --git a/srcpkgs/texlive-langgreek/template b/srcpkgs/texlive-langgreek/template
index fe279f6ea13..9c45215780f 100644
--- a/srcpkgs/texlive-langgreek/template
+++ b/srcpkgs/texlive-langgreek/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langgreek
 version=2020.54512
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Greek"
diff --git a/srcpkgs/texlive-langjapanese/template b/srcpkgs/texlive-langjapanese/template
index cd10461aea0..3beac842576 100644
--- a/srcpkgs/texlive-langjapanese/template
+++ b/srcpkgs/texlive-langjapanese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langjapanese
 version=2020.55320
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Japanese"
diff --git a/srcpkgs/texlive-langkorean/template b/srcpkgs/texlive-langkorean/template
index 281ac6c1864..cec6361c8f7 100644
--- a/srcpkgs/texlive-langkorean/template
+++ b/srcpkgs/texlive-langkorean/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langkorean
 version=2020.54519
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Korean"
diff --git a/srcpkgs/texlive-latexextra/template b/srcpkgs/texlive-latexextra/template
index 6e393f78f8d..d7b9bc0dd5c 100644
--- a/srcpkgs/texlive-latexextra/template
+++ b/srcpkgs/texlive-latexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-latexextra
 version=2020.55418
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="perl-File-Which python3-Pygments texlive-core texlive-pictures"
 short_desc="TeX Live - Collection of LaTeX addon packages"
diff --git a/srcpkgs/texlive-minimal/template b/srcpkgs/texlive-minimal/template
index c71ac097c6a..62dca76c0de 100644
--- a/srcpkgs/texlive-minimal/template
+++ b/srcpkgs/texlive-minimal/template
@@ -2,7 +2,6 @@
 pkgname=texlive-minimal
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-core>=2020.55416"
diff --git a/srcpkgs/texlive-most/template b/srcpkgs/texlive-most/template
index 408fe2f9de5..bc62b2a5667 100644
--- a/srcpkgs/texlive-most/template
+++ b/srcpkgs/texlive-most/template
@@ -2,7 +2,6 @@
 pkgname=texlive-most
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-music/template b/srcpkgs/texlive-music/template
index b8a2488a15d..b0f8c9f7546 100644
--- a/srcpkgs/texlive-music/template
+++ b/srcpkgs/texlive-music/template
@@ -2,7 +2,6 @@
 pkgname=texlive-music
 version=2020.54758
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="fontforge python3 texlive-core"
 short_desc="TeX Live - Music typesetting packages"
diff --git a/srcpkgs/texlive-pictures/template b/srcpkgs/texlive-pictures/template
index dee8054f190..24da6c2ea0a 100644
--- a/srcpkgs/texlive-pictures/template
+++ b/srcpkgs/texlive-pictures/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pictures
 version=2020.55342
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Packages for drawing graphics"
diff --git a/srcpkgs/texlive-pstricks/template b/srcpkgs/texlive-pstricks/template
index c76855241de..71103d1b1ee 100644
--- a/srcpkgs/texlive-pstricks/template
+++ b/srcpkgs/texlive-pstricks/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pstricks
 version=2020.55289
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional PSTricks packages"
diff --git a/srcpkgs/texlive-publishers/template b/srcpkgs/texlive-publishers/template
index 1e5f646ccf7..cd2e983a9ca 100644
--- a/srcpkgs/texlive-publishers/template
+++ b/srcpkgs/texlive-publishers/template
@@ -2,7 +2,6 @@
 pkgname=texlive-publishers
 version=2020.55415
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - Classes and packages for certain publishers"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-science/template b/srcpkgs/texlive-science/template
index 68f358537f7..093e2564709 100644
--- a/srcpkgs/texlive-science/template
+++ b/srcpkgs/texlive-science/template
@@ -2,7 +2,6 @@
 pkgname=texlive-science
 version=2020.55390
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting for mathematatics and science disciplines"
diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 708971811d3..5dc0263184b 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -2,7 +2,6 @@
 pkgname=thefuck
 version=3.29
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/thinkpad-scripts/template b/srcpkgs/thinkpad-scripts/template
index 855d42492fb..9d283afe28a 100644
--- a/srcpkgs/thinkpad-scripts/template
+++ b/srcpkgs/thinkpad-scripts/template
@@ -2,7 +2,6 @@
 pkgname=thinkpad-scripts
 version=4.12.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="tps"
 hostmakedepends="gettext python3-setuptools"
diff --git a/srcpkgs/tlp/template b/srcpkgs/tlp/template
index 5b2496afefe..b9ccfcb4614 100644
--- a/srcpkgs/tlp/template
+++ b/srcpkgs/tlp/template
@@ -2,7 +2,6 @@
 pkgname=tlp
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="TLP-${version}"
 depends="hdparm bash iw util-linux ethtool perl"
 short_desc="Advanced power management tool for Linux"
@@ -39,7 +38,6 @@ do_install() {
 
 tlp-rdw_package() {
 	short_desc="Control the radio device wizard"
-	archs=noarch
 	depends="tlp NetworkManager"
 	pkg_install() {
 		vmove usr/bin/tlp-rdw
diff --git a/srcpkgs/tmux-xpanes/template b/srcpkgs/tmux-xpanes/template
index b01bffc32c6..1499c4eca3a 100644
--- a/srcpkgs/tmux-xpanes/template
+++ b/srcpkgs/tmux-xpanes/template
@@ -2,7 +2,6 @@
 pkgname=tmux-xpanes
 version=4.1.2
 revision=1
-archs=noarch
 short_desc="Awesome way to create multiple tmux panes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="MIT"
diff --git a/srcpkgs/tmuxc/template b/srcpkgs/tmuxc/template
index 7eeffc8c64c..b18a9446d7f 100644
--- a/srcpkgs/tmuxc/template
+++ b/srcpkgs/tmuxc/template
@@ -2,7 +2,6 @@
 pkgname=tmuxc
 version=1.7.1
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Local and remote tmux window manager"
 maintainer="Zach Dykstra <dykstra.zachary@gmail.com>"
diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 676412b8d0b..8903b8ad3d6 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -2,7 +2,6 @@
 pkgname=todoman
 version=3.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="todoman"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index e3754e566d1..b614799e0ab 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -2,7 +2,6 @@
 pkgname=toot
 version=0.27.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-requests python3-setuptools python3-wcwidth
diff --git a/srcpkgs/tpm/template b/srcpkgs/tpm/template
index f3c68898e70..7e2ad566087 100644
--- a/srcpkgs/tpm/template
+++ b/srcpkgs/tpm/template
@@ -2,7 +2,6 @@
 pkgname=tpm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="gnupg2"
diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 32f4977ac46..967f7ffc3a6 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -2,7 +2,6 @@
 pkgname=trackma
 version=0.8.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-urwid python3-gobject"
diff --git a/srcpkgs/treeline/template b/srcpkgs/treeline/template
index d19c90b8d3f..6237ae92cc7 100644
--- a/srcpkgs/treeline/template
+++ b/srcpkgs/treeline/template
@@ -2,7 +2,6 @@
 pkgname=treeline
 version=3.1.2
 revision=1
-archs=noarch
 wrksrc="TreeLine-${version}"
 pycompile_dirs="usr/share/treeline"
 hostmakedepends="python3"
diff --git a/srcpkgs/tremc/template b/srcpkgs/tremc/template
index 8bba9b83fd1..a47e023c000 100644
--- a/srcpkgs/tremc/template
+++ b/srcpkgs/tremc/template
@@ -2,7 +2,6 @@
 pkgname=tremc
 version=0.9.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3"
 short_desc="Console client for the BitTorrent client Transmission"
diff --git a/srcpkgs/trident-icons/template b/srcpkgs/trident-icons/template
index a446b5418f1..236c488866f 100644
--- a/srcpkgs/trident-icons/template
+++ b/srcpkgs/trident-icons/template
@@ -2,7 +2,6 @@
 pkgname=trident-icons
 version=2020.03.27
 revision=1
-archs=noarch
 short_desc="Icon themes from Project Trident"
 maintainer="Ken Moore <ken@project-trident.org>"
 license="MIT,GPL-3.0-only"
diff --git a/srcpkgs/triehash/template b/srcpkgs/triehash/template
index 0c7ea1ae50e..6de5e09ced8 100644
--- a/srcpkgs/triehash/template
+++ b/srcpkgs/triehash/template
@@ -2,7 +2,6 @@
 pkgname=triehash
 version=0.3
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Generator for order-preserving minimal perfect hash functions"
 maintainer="mobinmob <mobinmob@disroot.org>"
diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index cd18ec521b8..605e8ab747c 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -2,7 +2,6 @@
 pkgname=tryton
 version=5.4.2
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="tryton"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/ttf-bitstream-vera/template b/srcpkgs/ttf-bitstream-vera/template
index 5e97f056bd0..bcd09ea572b 100644
--- a/srcpkgs/ttf-bitstream-vera/template
+++ b/srcpkgs/ttf-bitstream-vera/template
@@ -2,7 +2,6 @@
 pkgname=ttf-bitstream-vera
 version=1.10
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="Bitstream Vera fonts"
 maintainer="human <human@neet.fi>"
diff --git a/srcpkgs/ttf-material-icons/template b/srcpkgs/ttf-material-icons/template
index 51a2409a66d..aa9610410ce 100644
--- a/srcpkgs/ttf-material-icons/template
+++ b/srcpkgs/ttf-material-icons/template
@@ -3,7 +3,6 @@ pkgname=ttf-material-icons
 version=3.0.1
 revision=2
 wrksrc=material-design-icons-${version}
-archs=noarch
 short_desc="Material Design icons by Google"
 maintainer="Michael Carlberg <c@rlberg.se>"
 license=CC
diff --git a/srcpkgs/ttf-ubuntu-font-family/template b/srcpkgs/ttf-ubuntu-font-family/template
index 75d5ac88c83..e5af168fe51 100644
--- a/srcpkgs/ttf-ubuntu-font-family/template
+++ b/srcpkgs/ttf-ubuntu-font-family/template
@@ -2,7 +2,6 @@
 pkgname=ttf-ubuntu-font-family
 version=0.83
 revision=2
-archs=noarch
 wrksrc="ubuntu-font-family-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 132d5a5cd3c..2340955960e 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -2,7 +2,6 @@
 pkgname=tuimoji
 version=1.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index f57449896bb..101cace447d 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -2,7 +2,6 @@
 pkgname=tuir
 version=1.29.0
 revision=1
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/turses/template b/srcpkgs/turses/template
index e5d2e11c97a..4fb893c86a7 100644
--- a/srcpkgs/turses/template
+++ b/srcpkgs/turses/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="https://pypi.org/project/turses/"
 distfiles="${PYPI_SITE}/t/turses/turses-${version}.tar.gz"
 checksum=46a61541d1acd1338561a198b3011081b91f118415c08b111444cdb24685b396
-archs=noarch
 
 pre_build() {
 	# The package isn't updated for a time and the dependencies have been updated
diff --git a/srcpkgs/tuxpaint-stamps/template b/srcpkgs/tuxpaint-stamps/template
index 2602dfbc666..ae5188f0d6c 100644
--- a/srcpkgs/tuxpaint-stamps/template
+++ b/srcpkgs/tuxpaint-stamps/template
@@ -2,7 +2,6 @@
 pkgname=tuxpaint-stamps
 version=2020.05.29
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_target="install-all"
 short_desc="Stamps set for tuxpaint"
diff --git a/srcpkgs/tuxpaint/template b/srcpkgs/tuxpaint/template
index 6613a1191f3..3ef250ee0e0 100644
--- a/srcpkgs/tuxpaint/template
+++ b/srcpkgs/tuxpaint/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 tuxpaint-data_package() {
-	archs=noarch
 	short_desc="${short_desc} - data and docs"
 	python_version=2
 	pkg_install() {
diff --git a/srcpkgs/tvbrowser/template b/srcpkgs/tvbrowser/template
index ebe21cc5a34..6f88a7f919b 100644
--- a/srcpkgs/tvbrowser/template
+++ b/srcpkgs/tvbrowser/template
@@ -2,7 +2,6 @@
 pkgname=tvbrowser
 version=4.2.1
 revision=1
-archs=noarch
 depends="java-runtime>=11 hicolor-icon-theme bash"
 short_desc="Ad free open source TV guide for more than 1000 channels"
 maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
diff --git a/srcpkgs/twaindsm/template b/srcpkgs/twaindsm/template
index 15292267fec..f9d5e082692 100644
--- a/srcpkgs/twaindsm/template
+++ b/srcpkgs/twaindsm/template
@@ -39,7 +39,6 @@ twaindsm-devel_package() {
 
 twaindsm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${pkgname}
 		mv ${wrksrc}/TWAIN_DSM/doc/html ${PKGDESTDIR}/usr/share/doc/${pkgname}
diff --git a/srcpkgs/twemoji/template b/srcpkgs/twemoji/template
index e0201e88a96..c6b9e888ff9 100644
--- a/srcpkgs/twemoji/template
+++ b/srcpkgs/twemoji/template
@@ -2,7 +2,6 @@
 pkgname=twemoji
 version=12.0.1
 revision=1
-archs=noarch
 wrksrc="TwitterColorEmoji-SVGinOT-Linux-${version}"
 depends="font-util"
 short_desc="Twitter emoji font set in color and b&w"
diff --git a/srcpkgs/txt2man/template b/srcpkgs/txt2man/template
index edb10e56599..c385f2411ea 100644
--- a/srcpkgs/txt2man/template
+++ b/srcpkgs/txt2man/template
@@ -2,7 +2,6 @@
 pkgname=txt2man
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc=${pkgname}-${pkgname}-${version}
 short_desc="Converts text to man page"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/tzdata/template b/srcpkgs/tzdata/template
index 74d2f335c61..2f68c5040b0 100644
--- a/srcpkgs/tzdata/template
+++ b/srcpkgs/tzdata/template
@@ -2,7 +2,6 @@
 pkgname=tzdata
 version=2020a
 revision=1
-archs=noarch
 wrksrc=tzdata
 create_wrksrc=yes
 hostmakedepends="tzutils"
diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 382a653d9d4..b5a025a8a4c 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -2,7 +2,6 @@
 pkgname=tzupdate
 version=2.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests"
diff --git a/srcpkgs/u-boot-menu/template b/srcpkgs/u-boot-menu/template
index f080279af82..d6524f0d859 100644
--- a/srcpkgs/u-boot-menu/template
+++ b/srcpkgs/u-boot-menu/template
@@ -2,7 +2,6 @@
 pkgname=u-boot-menu
 version=0.1
 revision=1
-archs=noarch
 conf_files="/etc/default/extlinux"
 short_desc="Create an u-boot menu with currently available kernels"
 maintainer="Remi Pommarel <repk@triplefau.lt>"
diff --git a/srcpkgs/uberwriter/template b/srcpkgs/uberwriter/template
index aa00c32f261..dd1d70f7564 100644
--- a/srcpkgs/uberwriter/template
+++ b/srcpkgs/uberwriter/template
@@ -6,7 +6,6 @@ _subversion=public1-beta
 wrksrc=uberwriter_bugfixes
 build_style=python2-module
 pycompile_module=$pkgname
-archs=noarch
 patch_args='-p1'
 hostmakedepends="python-distutils-extra intltool"
 depends="python-enchant python-gobject pandoc ttf-ubuntu-font-family"
diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 36515e7f3f7..98a5d43d727 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -2,7 +2,6 @@
 pkgname=udiskie
 version=2.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-gobject"
 depends="gtk+3 libnotify python3-docopt python3-gobject python3-keyutils
diff --git a/srcpkgs/ufetch/template b/srcpkgs/ufetch/template
index 1303de65884..c62d05690ba 100644
--- a/srcpkgs/ufetch/template
+++ b/srcpkgs/ufetch/template
@@ -2,7 +2,6 @@
 pkgname=ufetch
 version=0.2
 revision=1
-archs=noarch
 wrksrc="ufetch-v${version}"
 depends="xbps coreutils ncurses"
 short_desc="Tiny system info for Void"
diff --git a/srcpkgs/ufoai/template b/srcpkgs/ufoai/template
index 6463d2c47c6..e98c615766f 100644
--- a/srcpkgs/ufoai/template
+++ b/srcpkgs/ufoai/template
@@ -69,7 +69,6 @@ post_install() {
 
 ufoai-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/ufoai/base/*.pk3
 		vmove usr/share/ufoai/base/i18n
diff --git a/srcpkgs/ufw-extras/template b/srcpkgs/ufw-extras/template
index 0054a0ac19e..eba36a4314d 100644
--- a/srcpkgs/ufw-extras/template
+++ b/srcpkgs/ufw-extras/template
@@ -2,7 +2,6 @@
 pkgname=ufw-extras
 version=0.5
 revision=1
-archs=noarch
 depends="ufw"
 short_desc="Extra configuration files for Uncomplicated Firewall (ufw)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index 0bf2a3a0b76..b8d8bb58c80 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -2,7 +2,6 @@
 pkgname=ufw
 version=0.36
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="ufw"
 conf_files="
diff --git a/srcpkgs/uhd/template b/srcpkgs/uhd/template
index b0484732ea9..e6d1ea9cbb1 100644
--- a/srcpkgs/uhd/template
+++ b/srcpkgs/uhd/template
@@ -39,7 +39,6 @@ uhd-devel_package() {
 
 uhd-doc_package() {
 	short_desc+=" - doc files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/unicode-emoji/template b/srcpkgs/unicode-emoji/template
index bc674e3aa54..17d2be29376 100644
--- a/srcpkgs/unicode-emoji/template
+++ b/srcpkgs/unicode-emoji/template
@@ -2,7 +2,6 @@
 pkgname=unicode-emoji
 version=12.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Unicode Emoji Data Files"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index 6e81970800d..0a320f621e8 100644
--- a/srcpkgs/unknown-horizons/template
+++ b/srcpkgs/unknown-horizons/template
@@ -2,7 +2,6 @@
 pkgname=unknown-horizons
 version=2019.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"
 depends="python3 fifengine python3-yaml"
diff --git a/srcpkgs/unoconv/template b/srcpkgs/unoconv/template
index 1a6c2c913e9..2015cb36e57 100644
--- a/srcpkgs/unoconv/template
+++ b/srcpkgs/unoconv/template
@@ -2,7 +2,6 @@
 pkgname=unoconv
 version=0.9.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="asciidoc git"
 depends="python"
diff --git a/srcpkgs/unp/template b/srcpkgs/unp/template
index ba43e043502..eb2f0624d42 100644
--- a/srcpkgs/unp/template
+++ b/srcpkgs/unp/template
@@ -2,7 +2,6 @@
 pkgname=unp
 version="2.0~pre7+nmu1"
 revision=2
-archs=noarch
 hostmakedepends="gettext"
 makedepends="perl"
 depends="perl"
diff --git a/srcpkgs/urbanterror-data/template b/srcpkgs/urbanterror-data/template
index 987dca0e366..e0e08224843 100644
--- a/srcpkgs/urbanterror-data/template
+++ b/srcpkgs/urbanterror-data/template
@@ -2,7 +2,6 @@
 pkgname=urbanterror-data
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="UrbanTerror43"
 hostmakedepends="unzip"
 short_desc="Urbanterror data files"
diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index 2bb1688dad7..c13e6dafaba 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -2,7 +2,6 @@
 pkgname=urlscan
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index ee56c05689f..dc4a775cf9b 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -2,7 +2,6 @@
 pkgname=urlwatch
 version=2.17
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urxvt-perls/template b/srcpkgs/urxvt-perls/template
index 8a62a338283..7ee582152ed 100644
--- a/srcpkgs/urxvt-perls/template
+++ b/srcpkgs/urxvt-perls/template
@@ -2,7 +2,6 @@
 pkgname=urxvt-perls
 version=2.3
 revision=1
-archs=noarch
 depends="rxvt-unicode perl"
 short_desc="Perl extensions for the rxvt-unicode terminal emulator"
 maintainer="nem <nem@posteo.net>"
diff --git a/srcpkgs/usb-modeswitch-data/template b/srcpkgs/usb-modeswitch-data/template
index b23431f54f1..51b3c653b76 100644
--- a/srcpkgs/usb-modeswitch-data/template
+++ b/srcpkgs/usb-modeswitch-data/template
@@ -2,7 +2,6 @@
 pkgname=usb-modeswitch-data
 version=20191128
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="RULESDIR=/usr/lib/udev/rules.d"
 short_desc="Mode switching tool for controlling 'multi-mode' USB devices (data files)"
diff --git a/srcpkgs/vala-panel-appmenu/template b/srcpkgs/vala-panel-appmenu/template
index 0913a270047..83f9d0ed72e 100644
--- a/srcpkgs/vala-panel-appmenu/template
+++ b/srcpkgs/vala-panel-appmenu/template
@@ -86,7 +86,6 @@ mate-panel-appmenu_package() {
 
 vala-panel-appmenu-data_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/locale
 		vmove usr/share/glib-2.0/schemas/org.valapanel.appmenu.gschema.xml
diff --git a/srcpkgs/vala/template b/srcpkgs/vala/template
index a3001e75b98..869939edd02 100644
--- a/srcpkgs/vala/template
+++ b/srcpkgs/vala/template
@@ -46,7 +46,6 @@ vala-devel_package() {
 }
 
 vala-doc_package() {
-	archs=noarch
 	depends="vala-${version}_${revision}"
 	short_desc+=" - devhelp documentation"
 	pkg_install() {
diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index 651d1c87641..20a00f3549d 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -2,7 +2,6 @@
 pkgname=variety
 version=0.8.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"
 pycompile_dirs="usr/share/variety/plugins"
diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 708204afda2..dfc929efe9c 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -2,7 +2,6 @@
 pkgname=vdirsyncer
 version=0.16.7
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/vdrift/template b/srcpkgs/vdrift/template
index 290288696f6..900d01481d9 100644
--- a/srcpkgs/vdrift/template
+++ b/srcpkgs/vdrift/template
@@ -35,7 +35,6 @@ post_install() {
 
 vdrift-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/vdrift
 	}
diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 6ca85d4e766..54065817a84 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -2,7 +2,6 @@
 pkgname=vidcutter
 version=6.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/vigra/template b/srcpkgs/vigra/template
index 09ffcff4f2a..ac7a79db23e 100644
--- a/srcpkgs/vigra/template
+++ b/srcpkgs/vigra/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 vigra-doc_package() {
-	archs=noarch
 	depends="vigra>=${version}_${revision}"
 	short_desc+=" - documentation"
 	pkg_install() {
diff --git a/srcpkgs/vim-colorschemes/template b/srcpkgs/vim-colorschemes/template
index a018fc4d501..01683376b04 100644
--- a/srcpkgs/vim-colorschemes/template
+++ b/srcpkgs/vim-colorschemes/template
@@ -3,7 +3,6 @@ pkgname=vim-colorschemes
 version=20170822
 revision=1
 _commit=eab315701f4627967fd62582eefc4e37a3745786
-archs=noarch
 short_desc="Vim colorschemes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="GPL-3"
diff --git a/srcpkgs/vim-gnupg/template b/srcpkgs/vim-gnupg/template
index 9cb1d79f000..903af68738d 100644
--- a/srcpkgs/vim-gnupg/template
+++ b/srcpkgs/vim-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=vim-gnupg
 version=2.6.1
 revision=1
-archs=noarch
 depends="vim-common gnupg"
 short_desc="Plugin for transparent editing of gpg encrypted files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 4585d99624f..e0becffaea6 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -112,7 +112,6 @@ do_install() {
 vim-common_package() {
 	short_desc+=" - common files"
 	depends="xxd"
-	archs=noarch
 	alternatives="
 	 vi:ex:/usr/bin/vim
 	 vi:ex.1:/usr/share/man/man1/vim.1
diff --git a/srcpkgs/vips/template b/srcpkgs/vips/template
index 5639fbcb01f..cc50b2ac39f 100644
--- a/srcpkgs/vips/template
+++ b/srcpkgs/vips/template
@@ -69,7 +69,6 @@ libvips-devel_package() {
 }
 
 libvips-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/gtk-doc
diff --git a/srcpkgs/virt-manager/template b/srcpkgs/virt-manager/template
index db7734b6812..1920a937ab3 100644
--- a/srcpkgs/virt-manager/template
+++ b/srcpkgs/virt-manager/template
@@ -2,7 +2,6 @@
 pkgname=virt-manager
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-devel glib-devel gtk-update-icon-cache
  python3-gobject libosinfo libvirt-python3 libxml2-python3 python3-requests"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 virt-manager-tools_package() {
-	archs=noarch
 	short_desc="Programs to create and clone virtual machines"
 	depends="libosinfo python3-gobject libvirt-python3 python3-urllib3 libxml2-python3 python3-requests"
 	pycompile_dirs="/usr/share/${sourcepkg}"
diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index ebf37c59c6c..8a658600f70 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -2,7 +2,6 @@
 pkgname=virtme
 version=0.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="virtme"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/virtualbox-ose/template b/srcpkgs/virtualbox-ose/template
index f1184e6a6fc..ef5aed6c95e 100644
--- a/srcpkgs/virtualbox-ose/template
+++ b/srcpkgs/virtualbox-ose/template
@@ -121,7 +121,6 @@ virtualbox-ose-dkms_package() {
 	short_desc+=" - kernel module sources for dkms"
 	dkms_modules="virtualbox-ose ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
@@ -169,7 +168,6 @@ virtualbox-ose-guest-dkms_package() {
 	short_desc+=" - guest addition module source for dkms"
 	dkms_modules="virtualbox-ose-guest ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 1f0c2efee86..cce2a96ee3b 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -2,7 +2,6 @@
 pkgname=virtualenvwrapper
 version=4.8.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"
 hostmakedepends="python3-setuptools python3-pbr"
diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index c5c3ae7c82e..9a57496edc3 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -2,7 +2,6 @@
 pkgname=visidata
 version=1.5.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="visidata"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/void-artwork/template b/srcpkgs/void-artwork/template
index ecfc2b9b5e6..dc9f08cc3cc 100644
--- a/srcpkgs/void-artwork/template
+++ b/srcpkgs/void-artwork/template
@@ -2,7 +2,6 @@
 pkgname=void-artwork
 version=20170517
 revision=2
-archs=noarch
 short_desc="Void Linux artwork"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-release-keys/template b/srcpkgs/void-release-keys/template
index f9451a73b7b..f0c7a46f354 100644
--- a/srcpkgs/void-release-keys/template
+++ b/srcpkgs/void-release-keys/template
@@ -2,7 +2,6 @@
 pkgname=void-release-keys
 version=1
 revision=1
-archs=noarch
 short_desc="Void Linux Release Keys"
 maintainer="Void Release Engineering <releases@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-repo-nonfree/template b/srcpkgs/void-repo-nonfree/template
index 02410a5b72a..98706c49041 100644
--- a/srcpkgs/void-repo-nonfree/template
+++ b/srcpkgs/void-repo-nonfree/template
@@ -2,7 +2,6 @@
 pkgname=void-repo-nonfree
 version=9
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Void Linux drop-in file for the nonfree repository"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -34,7 +33,6 @@ do_install() {
 }
 
 void-repo-debug_package() {
-	archs=noarch
 	short_desc="${short_desc/nonfree/debug}"
 	pkg_install() {
 		vmove usr/share/xbps.d/20-repository-debug.conf
diff --git a/srcpkgs/void-updates/template b/srcpkgs/void-updates/template
index 97236f068c8..d90cbfb3ca5 100644
--- a/srcpkgs/void-updates/template
+++ b/srcpkgs/void-updates/template
@@ -2,7 +2,6 @@
 pkgname=void-updates
 version=20190330
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="git curl"
 short_desc="Void Linux package updates"
diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 96caefc6958..fede8f9e3ec 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -2,7 +2,6 @@
 pkgname=volctl
 version=0.7.5
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject pulseaudio desktop-file-utils"
diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index 23731b3e01d..501df81b4fc 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -2,7 +2,6 @@
 pkgname=voltron
 version=0.1.7
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-blessed python3-Flask python3-Pygments python3-pysigset
diff --git a/srcpkgs/vpm/template b/srcpkgs/vpm/template
index a1b826c402f..daf0db65ffc 100644
--- a/srcpkgs/vpm/template
+++ b/srcpkgs/vpm/template
@@ -2,7 +2,6 @@
 pkgname=vpm
 version=1.3
 revision=1
-archs=noarch
 short_desc="XBPS package management helper for VoidLinux"
 maintainer="Armin Jenewein <github@m2m.pm>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/vpnc-scripts/template b/srcpkgs/vpnc-scripts/template
index 811bd9a3d95..dd58c857083 100644
--- a/srcpkgs/vpnc-scripts/template
+++ b/srcpkgs/vpnc-scripts/template
@@ -2,7 +2,6 @@
 pkgname=vpnc-scripts
 version=20190611
 revision=1
-archs=noarch
 short_desc="Network configuration scripts for VPNC and OpenConnect"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
diff --git a/srcpkgs/vpnd/template b/srcpkgs/vpnd/template
index fa4222ae372..9f062291564 100644
--- a/srcpkgs/vpnd/template
+++ b/srcpkgs/vpnd/template
@@ -2,7 +2,6 @@
 pkgname=vpnd
 version=0.1.3
 revision=1
-archs=noarch
 depends="bash"
 conf_files="/etc/vpnd.conf"
 short_desc="Package update notifier daemon for Void Linux"
diff --git a/srcpkgs/vsv/template b/srcpkgs/vsv/template
index 0144340eb46..230f5b52ff5 100644
--- a/srcpkgs/vsv/template
+++ b/srcpkgs/vsv/template
@@ -2,7 +2,6 @@
 pkgname=vsv
 version=1.3.4
 revision=1
-archs=noarch
 depends="bash coreutils psmisc"
 short_desc="Manage and view runit services"
 maintainer="Dave Eddy <dave@daveeddy.com>"
diff --git a/srcpkgs/warsow-data/template b/srcpkgs/warsow-data/template
index c9c80e71f84..01e9a2e71ef 100644
--- a/srcpkgs/warsow-data/template
+++ b/srcpkgs/warsow-data/template
@@ -2,7 +2,6 @@
 pkgname=warsow-data
 version=2.1
 revision=1
-archs=noarch
 wrksrc="warsow_${version/./}"
 short_desc="Free online multiplayer competitive FPS (data files)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/warzone2100/template b/srcpkgs/warzone2100/template
index cc425c6072a..7f0319dfcd8 100644
--- a/srcpkgs/warzone2100/template
+++ b/srcpkgs/warzone2100/template
@@ -19,7 +19,6 @@ checksum=ea2cd7f016118a89244ebef8ce9424f71c060bcd5895b791d3e1cec02b555b69
 nocross="fails to detect SDL2 when cross-compiling"
 
 warzone2100-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/wayland-protocols/template b/srcpkgs/wayland-protocols/template
index 353d3f3d7f7..160dae706f9 100644
--- a/srcpkgs/wayland-protocols/template
+++ b/srcpkgs/wayland-protocols/template
@@ -2,7 +2,6 @@
 pkgname=wayland-protocols
 version=1.20
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config wayland-devel automake"
 depends="libffi-devel"
diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index 5676d81988e..978b31053fb 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -2,7 +2,6 @@
 pkgname=weather
 version=2.4
 revision=1
-archs=noarch
 depends="python3"
 conf_files="/etc/weatherrc"
 short_desc="CLI utility for current (METAR) weather conditions and forecasts"
diff --git a/srcpkgs/wee-slack/template b/srcpkgs/wee-slack/template
index 95487cde249..9d083c4dc73 100644
--- a/srcpkgs/wee-slack/template
+++ b/srcpkgs/wee-slack/template
@@ -2,7 +2,6 @@
 pkgname=wee-slack
 version=2.6.0
 revision=1
-archs=noarch
 depends="weechat weechat-python python3-websocket-client"
 short_desc="WeeChat plugin for Slack.com"
 maintainer="Renato Aguiar <renato@renatoaguiar.net>"
diff --git a/srcpkgs/wesnoth/template b/srcpkgs/wesnoth/template
index 92921f571fe..39b4751be6f 100644
--- a/srcpkgs/wesnoth/template
+++ b/srcpkgs/wesnoth/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 wesnoth-data_package() {
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/wesnoth
 	}
diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index 3d086157137..33bd15c4dd9 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -2,7 +2,6 @@
 pkgname=wfuzz
 version=2.4.7
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-chardet python3-curl python3-future python3-lxml python3-parse
diff --git a/srcpkgs/wgetpaste/template b/srcpkgs/wgetpaste/template
index 94cb687eedc..56eed95485a 100644
--- a/srcpkgs/wgetpaste/template
+++ b/srcpkgs/wgetpaste/template
@@ -2,7 +2,6 @@
 pkgname=wgetpaste
 version=2.29
 revision=1
-archs=noarch
 depends="bash wget"
 short_desc="Script that automates pasting to a number of pastebin services"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/when/template b/srcpkgs/when/template
index eb7f52f0996..5da95abdee0 100644
--- a/srcpkgs/when/template
+++ b/srcpkgs/when/template
@@ -2,7 +2,6 @@
 pkgname=when
 version=1.1.39
 revision=1
-archs=noarch
 wrksrc=when_dist
 depends="perl"
 short_desc="Minimalistic personal calendar program"
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index fe0fe79d3c8..c32f08c91aa 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -2,7 +2,6 @@
 pkgname=wicd
 version=1.7.4
 revision=4
-archs=noarch
 pycompile_module="wicd"
 pycompile_dirs="usr/lib/wicd usr/share/wicd"
 hostmakedepends="python python-setuptools python-Babel"
@@ -43,7 +42,6 @@ do_install() {
 }
 
 wicd-gtk_package() {
-	archs=noarch
 	depends="wicd>=${version} pygtk python-notify shared-mime-info desktop-file-utils hicolor-icon-theme"
 	short_desc+=" - GTK UI"
 	pycompile_dirs="usr/share/wicd/gtk"
diff --git a/srcpkgs/widelands-maps/template b/srcpkgs/widelands-maps/template
index 5f856fd6089..f375a49f63d 100644
--- a/srcpkgs/widelands-maps/template
+++ b/srcpkgs/widelands-maps/template
@@ -8,7 +8,6 @@ license="GPL-2"
 homepage="http://wl.widelands.org/maps/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum=2029d8e72efedaa2f81f3b99d2d14f732964ac71bf5d563ae18321ace5ddf531
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/widelands
diff --git a/srcpkgs/widelands/template b/srcpkgs/widelands/template
index 061040d9ae4..d2c65c04fda 100644
--- a/srcpkgs/widelands/template
+++ b/srcpkgs/widelands/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 widelands-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/widelands
diff --git a/srcpkgs/wifi-firmware/template b/srcpkgs/wifi-firmware/template
index d48d21b3aec..c044014a7f0 100644
--- a/srcpkgs/wifi-firmware/template
+++ b/srcpkgs/wifi-firmware/template
@@ -2,7 +2,6 @@
 pkgname=wifi-firmware
 version=1.3
 revision=3
-archs=noarch
 build_style=meta
 depends="ipw2100-firmware ipw2200-firmware zd1211-firmware"
 short_desc="WiFi firmware meta-package"
diff --git a/srcpkgs/wifish/template b/srcpkgs/wifish/template
index 64252790947..b8c4067ddee 100644
--- a/srcpkgs/wifish/template
+++ b/srcpkgs/wifish/template
@@ -5,7 +5,6 @@ revision=1
 depends="wpa_supplicant gawk"
 short_desc="Simple wifi tool"
 maintainer="bougyman <bougyman@rubyists.com>"
-archs=noarch
 license="wtfpl"
 homepage="http://github.com/bougyman/wifish"
 distfiles="https://github.com/bougyman/wifish/archive/${version}.tar.gz"
diff --git a/srcpkgs/wine-gecko/template b/srcpkgs/wine-gecko/template
index 6216c6c8dff..fd0988a88c8 100644
--- a/srcpkgs/wine-gecko/template
+++ b/srcpkgs/wine-gecko/template
@@ -2,7 +2,6 @@
 pkgname=wine-gecko
 version=2.47.1
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mozilla Gecko Layout Engine for WINE (32bit)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine-mono/template b/srcpkgs/wine-mono/template
index 02072ab807b..e74c5ed0166 100644
--- a/srcpkgs/wine-mono/template
+++ b/srcpkgs/wine-mono/template
@@ -2,7 +2,6 @@
 pkgname=wine-mono
 version=5.1.0
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mono built for running .NET applications with WINE"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine/template b/srcpkgs/wine/template
index 7dbe6bcf9ef..3038037adcb 100644
--- a/srcpkgs/wine/template
+++ b/srcpkgs/wine/template
@@ -89,7 +89,6 @@ wine-devel_package() {
 }
 
 wine-common_package() {
-	archs="noarch"
 	short_desc+=" - common files"
 	binfmts="/usr/bin/wine --magic MZ"
 	pkg_install() {
diff --git a/srcpkgs/winetricks/template b/srcpkgs/winetricks/template
index 57358041ee6..a352cfb6092 100644
--- a/srcpkgs/winetricks/template
+++ b/srcpkgs/winetricks/template
@@ -2,7 +2,6 @@
 pkgname=winetricks
 version=20200412
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="cabextract unzip xmessage" # actually it depends on wine
 short_desc="Script to install various redistributable runtime libraries in Wine"
diff --git a/srcpkgs/wok/template b/srcpkgs/wok/template
index bd1b6278e8c..42beab7a00b 100644
--- a/srcpkgs/wok/template
+++ b/srcpkgs/wok/template
@@ -2,7 +2,6 @@
 pkgname=wok
 version=1.1.1
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="wok"
 hostmakedepends="python-devel python-setuptools"
diff --git a/srcpkgs/words-mnemonic/template b/srcpkgs/words-mnemonic/template
index 65fd6f5b177..41ac40b25e5 100644
--- a/srcpkgs/words-mnemonic/template
+++ b/srcpkgs/words-mnemonic/template
@@ -3,7 +3,6 @@ pkgname=words-mnemonic
 version=20150217
 revision=3
 build_style=fetch
-archs=noarch
 short_desc="Word list from the Mnemonic encoder project"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 # see https://github.com/singpolyma/mnemonicode/blob/master/mn_wordlist.c
diff --git a/srcpkgs/words-web2/template b/srcpkgs/words-web2/template
index 262f92db486..8865f605e81 100644
--- a/srcpkgs/words-web2/template
+++ b/srcpkgs/words-web2/template
@@ -13,7 +13,6 @@ distfiles="https://svnweb.freebsd.org/base/head/share/dict/README?revision=25790
 checksum="0bebe63be8ea1263c04c9ef40fbb1a88c242b0b53db32bd6c8d27ad5afffb183
  a80b7cac20dff2fd92e59bb58d2d581efa9b965756a8c8f03f754d3d98e92723
  9313e251fee3e56204db2b284346d61c3a80ce613d7a077c5674f15f9cb33ab3"
-archs=noarch
 
 do_install() {
 	vinstall web2 0644 /usr/share/dict
diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 4692074cd04..d63a74663f6 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -2,7 +2,6 @@
 pkgname=wpgtk
 version=6.1.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject python3-Pillow pywal libxslt"
diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 621e1c85428..8e5e71f1505 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -2,7 +2,6 @@
 pkgname=wpull
 version=2.0.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="wpull"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/wqy-microhei/template b/srcpkgs/wqy-microhei/template
index 77071b31ae5..9e517eb721a 100644
--- a/srcpkgs/wqy-microhei/template
+++ b/srcpkgs/wqy-microhei/template
@@ -2,7 +2,6 @@
 pkgname=wqy-microhei
 version=0.2.0.beta
 revision=2
-archs=noarch
 wrksrc=wqy-microhei
 depends="font-util"
 short_desc="A Sans-Serif style high quality CJK outline font"
diff --git a/srcpkgs/xapian-core/template b/srcpkgs/xapian-core/template
index 1b9cf9e8837..429bead39c0 100644
--- a/srcpkgs/xapian-core/template
+++ b/srcpkgs/xapian-core/template
@@ -31,7 +31,6 @@ xapian-core-devel_package() {
 }
 xapian-core-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/xbitmaps/template b/srcpkgs/xbitmaps/template
index 7cb547e43a1..9a0dcef9d50 100644
--- a/srcpkgs/xbitmaps/template
+++ b/srcpkgs/xbitmaps/template
@@ -2,7 +2,6 @@
 pkgname=xbitmaps
 version=1.1.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Common X11 bitmaps"
 license="MIT"
diff --git a/srcpkgs/xbps-triggers/template b/srcpkgs/xbps-triggers/template
index b28d198b1ce..a40698e1f8e 100644
--- a/srcpkgs/xbps-triggers/template
+++ b/srcpkgs/xbps-triggers/template
@@ -2,7 +2,6 @@
 pkgname=xbps-triggers
 version=0.116
 revision=1
-archs=noarch
 bootstrap=yes
 short_desc="XBPS triggers for Void Linux"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/xcb-proto/template b/srcpkgs/xcb-proto/template
index afc0d260a23..a3d18c56f59 100644
--- a/srcpkgs/xcb-proto/template
+++ b/srcpkgs/xcb-proto/template
@@ -2,7 +2,6 @@
 pkgname=xcb-proto
 version=1.14
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="libxml2"
diff --git a/srcpkgs/xcursor-themes/template b/srcpkgs/xcursor-themes/template
index 4c70ce9ef0e..2ff2cc9a9aa 100644
--- a/srcpkgs/xcursor-themes/template
+++ b/srcpkgs/xcursor-themes/template
@@ -2,7 +2,6 @@
 pkgname=xcursor-themes
 version=1.0.6
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config xcursorgen xorg-util-macros"
 makedepends="libXcursor-devel libXrender-devel"
diff --git a/srcpkgs/xcursor-vanilla-dmz/template b/srcpkgs/xcursor-vanilla-dmz/template
index 30f2bf17cd6..8c6ebd634a7 100644
--- a/srcpkgs/xcursor-vanilla-dmz/template
+++ b/srcpkgs/xcursor-vanilla-dmz/template
@@ -3,7 +3,6 @@ pkgname=xcursor-vanilla-dmz
 version=0.4.5
 revision=1
 wrksrc="dmz-cursor-theme-${version}"
-archs=noarch
 hostmakedepends="xcursorgen"
 short_desc="Vanilla DMZ cursor theme (White)"
 maintainer="Jerry Tegno <jerrytegno@gmail.com>"
diff --git a/srcpkgs/xdg-utils/template b/srcpkgs/xdg-utils/template
index 9a235ca2f69..164dbf476d4 100644
--- a/srcpkgs/xdg-utils/template
+++ b/srcpkgs/xdg-utils/template
@@ -2,7 +2,6 @@
 pkgname=xdg-utils
 version=1.1.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="xmlto lynx"
 short_desc="Tools to assist applications with various desktop integration tasks"
diff --git a/srcpkgs/xdgmenumaker/template b/srcpkgs/xdgmenumaker/template
index c9ee447c743..7a28d5f39eb 100644
--- a/srcpkgs/xdgmenumaker/template
+++ b/srcpkgs/xdgmenumaker/template
@@ -2,7 +2,6 @@
 pkgname=xdgmenumaker
 version=1.5
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-xdg python3-gobject gobject-introspection python3-Pillow"
 short_desc="Automatic menu generator for WMs, such as, fluxbox, icewm, jwm, pekwm"
diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 85b33af2222..b5c76c4af46 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -2,7 +2,6 @@
 pkgname=xdot
 version=1.1
 revision=3
-archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module
 pycompile_module="xdot"
diff --git a/srcpkgs/xed/template b/srcpkgs/xed/template
index 9754a340873..8c42a2d9d21 100644
--- a/srcpkgs/xed/template
+++ b/srcpkgs/xed/template
@@ -2,7 +2,6 @@
 pkgname=xed
 version=0.9.1
 revision=1
-archs=noarch
 depends="tk"
 short_desc="The standard text editor, for X11"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/xerces-c/template b/srcpkgs/xerces-c/template
index 100094350f7..c0353e3ee22 100644
--- a/srcpkgs/xerces-c/template
+++ b/srcpkgs/xerces-c/template
@@ -43,7 +43,6 @@ libxerces-c-devel_package() {
 
 xerces-c-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vdoc "CREDITS"
 		vcopy "${wrksrc}/doc"           "/usr/share/doc/${pkgname}"
diff --git a/srcpkgs/xfwm4-themes/template b/srcpkgs/xfwm4-themes/template
index bdfeb031906..3308a5ee525 100644
--- a/srcpkgs/xfwm4-themes/template
+++ b/srcpkgs/xfwm4-themes/template
@@ -2,7 +2,6 @@
 pkgname=xfwm4-themes
 version=4.10.0
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="Themes for the XFCE window manager"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/xkb-qwerty-fr/template b/srcpkgs/xkb-qwerty-fr/template
index 8cd62b9ecdf..5be0f9487ec 100644
--- a/srcpkgs/xkb-qwerty-fr/template
+++ b/srcpkgs/xkb-qwerty-fr/template
@@ -2,7 +2,6 @@
 pkgname=xkb-qwerty-fr
 version=0.5
 revision=1
-archs=noarch
 short_desc="French qwerty X11 keymap"
 maintainer="Franklin Delehelle <franklin.delehelle@odena.eu>"
 license="GPL-2"
diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 37fb6872079..5e6e998f14e 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -2,7 +2,6 @@
 pkgname=xkcdpass
 version=1.17.3
 revision=2
-archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module
 pycompile_module="xkcdpass"
diff --git a/srcpkgs/xkeyboard-config/template b/srcpkgs/xkeyboard-config/template
index afee6371174..0329d0d17c8 100644
--- a/srcpkgs/xkeyboard-config/template
+++ b/srcpkgs/xkeyboard-config/template
@@ -2,7 +2,6 @@
 pkgname=xkeyboard-config
 version=2.30
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-xkb-rules-symlink=xfree86,xorg --enable-compat-rules"
 hostmakedepends="pkg-config libxslt intltool python3"
diff --git a/srcpkgs/xmltoman/template b/srcpkgs/xmltoman/template
index 2f74978bea7..a1d3a628a61 100644
--- a/srcpkgs/xmltoman/template
+++ b/srcpkgs/xmltoman/template
@@ -11,4 +11,3 @@ license="GPL-3"
 homepage="https://sourceforge.net/projects/xmltoman"
 distfiles="https://github.com/Distrotech/xmltoman/archive/${version}.tar.gz"
 checksum=2ab86b74fe364a866d84c14b20cbd42a09fa85c629deeff52376bbf890854feb
-archs=noarch
diff --git a/srcpkgs/xmoto/template b/srcpkgs/xmoto/template
index ae400bdce0a..3c3bde96533 100644
--- a/srcpkgs/xmoto/template
+++ b/srcpkgs/xmoto/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 xmoto-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/xmoto
diff --git a/srcpkgs/xonotic-data-low/template b/srcpkgs/xonotic-data-low/template
index ffca0a897af..253b8c407dd 100644
--- a/srcpkgs/xonotic-data-low/template
+++ b/srcpkgs/xonotic-data-low/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data-low
 version=0.8.2
 revision=1
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="A free, fast-paced crossplatform FPS (Lower Quality data files)"
diff --git a/srcpkgs/xonotic-data/template b/srcpkgs/xonotic-data/template
index f274258d867..c604fcd5af0 100644
--- a/srcpkgs/xonotic-data/template
+++ b/srcpkgs/xonotic-data/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="Free, fast-paced crossplatform first-person shooter (data files)"
diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 0ee5e68af59..c32a27a31d3 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -2,7 +2,6 @@
 pkgname=xonsh
 version=0.9.18
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 short_desc="Python-powered, cross-platform, Unix-gazing shell"
diff --git a/srcpkgs/xorg-cf-files/template b/srcpkgs/xorg-cf-files/template
index bdc733ade0a..e1b05da5fcd 100644
--- a/srcpkgs/xorg-cf-files/template
+++ b/srcpkgs/xorg-cf-files/template
@@ -2,7 +2,6 @@
 pkgname=xorg-cf-files
 version=1.0.6
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config automake xorg-util-macros font-util"
 short_desc="X.Org imake program and related utilities"
diff --git a/srcpkgs/xorg-util-macros/template b/srcpkgs/xorg-util-macros/template
index aa98fafc833..987949ce97d 100644
--- a/srcpkgs/xorg-util-macros/template
+++ b/srcpkgs/xorg-util-macros/template
@@ -3,7 +3,6 @@ pkgname=xorg-util-macros
 version=1.19.2
 revision=1
 wrksrc="${pkgname/xorg-/}-${version}"
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="X.org autotool macros"
diff --git a/srcpkgs/xtools/template b/srcpkgs/xtools/template
index d1b5e0fe4f2..82a4e91cacc 100644
--- a/srcpkgs/xtools/template
+++ b/srcpkgs/xtools/template
@@ -2,7 +2,6 @@
 pkgname=xtools
 version=0.61
 revision=1
-archs="noarch"
 build_style=gnu-makefile
 depends="bash curl findutils git make spdx-licenses-list xbps"
 short_desc="Opinionated helpers for working with XBPS"
diff --git a/srcpkgs/xtrans/template b/srcpkgs/xtrans/template
index 77dbb83a9f6..c21c51b6bbc 100644
--- a/srcpkgs/xtrans/template
+++ b/srcpkgs/xtrans/template
@@ -2,7 +2,6 @@
 pkgname=xtrans
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="Network API translation layer to insulate X"
diff --git a/srcpkgs/xye/template b/srcpkgs/xye/template
index 11094ab555b..d58f407d888 100644
--- a/srcpkgs/xye/template
+++ b/srcpkgs/xye/template
@@ -23,7 +23,6 @@ post_install() {
 
 xye-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/xye
 	}
diff --git a/srcpkgs/yadm/template b/srcpkgs/yadm/template
index 7b5ebbbc028..4db6f2e0035 100644
--- a/srcpkgs/yadm/template
+++ b/srcpkgs/yadm/template
@@ -2,7 +2,6 @@
 pkgname=yadm
 version=2.5.0
 revision=1
-archs=noarch
 depends="bash git gnupg"
 short_desc="Yet Another Dotfiles Manager"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/yaru-plus/template b/srcpkgs/yaru-plus/template
index 72c63ec663b..cf3ca7997c2 100644
--- a/srcpkgs/yaru-plus/template
+++ b/srcpkgs/yaru-plus/template
@@ -2,7 +2,6 @@
 pkgname=yaru-plus
 version=3.0
 revision=1
-archs=noarch
 short_desc="Elegant Canonical's Yaru-based third-party icons theme"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/yaru/template b/srcpkgs/yaru/template
index 6d00563b8a6..b084a1e6af5 100644
--- a/srcpkgs/yaru/template
+++ b/srcpkgs/yaru/template
@@ -2,7 +2,6 @@
 pkgname=yaru
 version=20.10.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="glib-devel sassc pkg-config"
 makedepends="gtk+3-devel libglib-devel"
diff --git a/srcpkgs/yelp-tools/template b/srcpkgs/yelp-tools/template
index 9e8a670e6b0..1403206a26a 100644
--- a/srcpkgs/yelp-tools/template
+++ b/srcpkgs/yelp-tools/template
@@ -2,7 +2,6 @@
 pkgname=yelp-tools
 version=3.32.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config itstool libxslt"
 makedepends="yelp-xsl"
diff --git a/srcpkgs/yelp-xsl/template b/srcpkgs/yelp-xsl/template
index f74a7fba67c..152f3f364ae 100644
--- a/srcpkgs/yelp-xsl/template
+++ b/srcpkgs/yelp-xsl/template
@@ -2,7 +2,6 @@
 pkgname=yelp-xsl
 version=3.36.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/you-get/template b/srcpkgs/you-get/template
index b0bf348d351..ac69df8355b 100644
--- a/srcpkgs/you-get/template
+++ b/srcpkgs/you-get/template
@@ -2,7 +2,6 @@
 pkgname=you-get
 version=0.4.1456
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pysocks python3-setuptools"
diff --git a/srcpkgs/youtube-dl/template b/srcpkgs/youtube-dl/template
index 8e35e276ee9..a274d72d5bc 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -2,7 +2,6 @@
 pkgname=youtube-dl
 version=2020.07.28
 revision=1
-archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/youtube-viewer/template b/srcpkgs/youtube-viewer/template
index c05d02ffa15..66eb9b9b46e 100644
--- a/srcpkgs/youtube-viewer/template
+++ b/srcpkgs/youtube-viewer/template
@@ -2,7 +2,6 @@
 pkgname=youtube-viewer
 version=3.7.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index c6bcf76d96f..07a4dc4dc98 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -2,7 +2,6 @@
 pkgname=yq
 version=2.10.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-yaml"
diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index bef3366f910..846f47d53f4 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -2,7 +2,6 @@
 pkgname=ytcc
 version=1.8.2
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-SQLAlchemy python3-feedparser python3-lxml python3-youtube-dl
diff --git a/srcpkgs/ytmdl/template b/srcpkgs/ytmdl/template
index e0780f0413a..06d181fed1b 100644
--- a/srcpkgs/ytmdl/template
+++ b/srcpkgs/ytmdl/template
@@ -2,7 +2,6 @@
 pkgname=ytmdl
 version=2020.07.09
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="ffmpeg youtube-dl python3-mutagen python3-requests python3-colorama
diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index bc9e6e418c2..3354bb9b407 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -2,7 +2,6 @@
 pkgname=yturl
 version=2.0.2
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools texinfo"
 depends="python3-setuptools python3-requests python3-six"
diff --git a/srcpkgs/yubikey-manager/template b/srcpkgs/yubikey-manager/template
index 75886e00e81..04184e8a4c6 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -2,7 +2,6 @@
 pkgname=yubikey-manager
 version=3.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="libu2f-host python3-fido2 python3-openssl python3-usb python3-pyscard
diff --git a/srcpkgs/zabbix/template b/srcpkgs/zabbix/template
index ec9f7e7b298..b923a819714 100644
--- a/srcpkgs/zabbix/template
+++ b/srcpkgs/zabbix/template
@@ -95,7 +95,6 @@ zabbix-proxy_package() {
 }
 
 zabbix-frontend-php_package() {
-	archs=noarch
 	depends="zabbix php-gd php-mysql"
 	short_desc="Zabbix Networking Monitoring PHP Frontend"
 	pkg_install() {
diff --git a/srcpkgs/zd1211-firmware/template b/srcpkgs/zd1211-firmware/template
index d53a71b7fde..4cd21ae7995 100644
--- a/srcpkgs/zd1211-firmware/template
+++ b/srcpkgs/zd1211-firmware/template
@@ -2,7 +2,6 @@
 pkgname=zd1211-firmware
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Firmware for the Zydas 1211 wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zeek/template b/srcpkgs/zeek/template
index cbf9712b60e..957cc03dbe9 100644
--- a/srcpkgs/zeek/template
+++ b/srcpkgs/zeek/template
@@ -52,7 +52,6 @@ zeek-devel_package() {
 }
 
 bro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
@@ -61,13 +60,11 @@ bro_package() {
 binpac_package() {
 	short_desc+=" - protocol parser compiler (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 }
 
 binpac-devel_package() {
 	short_desc+=" - protocol parser compiler library (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}-devel>=${version}_${revision}"
 }
diff --git a/srcpkgs/zeroinstall/template b/srcpkgs/zeroinstall/template
index 817adfdc493..bf36b23c393 100644
--- a/srcpkgs/zeroinstall/template
+++ b/srcpkgs/zeroinstall/template
@@ -30,7 +30,6 @@ pre_build() {
 
 zeroinstall-injector_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="zeroinstall-${version}_${revision}"
 }
diff --git a/srcpkgs/zfs-auto-snapshot/template b/srcpkgs/zfs-auto-snapshot/template
index 113dfd3c30b..0a9d0ea7aeb 100644
--- a/srcpkgs/zfs-auto-snapshot/template
+++ b/srcpkgs/zfs-auto-snapshot/template
@@ -2,7 +2,6 @@
 pkgname=zfs-auto-snapshot
 version=1.2.4
 revision=2
-archs=noarch
 wrksrc="${pkgname}-upstream-${version}"
 build_style=gnu-makefile
 short_desc="ZFS automatic snapshot service"
diff --git a/srcpkgs/zfs-prune-snapshots/template b/srcpkgs/zfs-prune-snapshots/template
index 431c2b71db7..5eaba5c26b3 100644
--- a/srcpkgs/zfs-prune-snapshots/template
+++ b/srcpkgs/zfs-prune-snapshots/template
@@ -2,7 +2,6 @@
 pkgname=zfs-prune-snapshots
 version=1.1.0
 revision=2
-archs="noarch"
 build_style=gnu-makefile
 hostmakedepends="make"
 depends="bash zfs"
diff --git a/srcpkgs/zfsbootmenu/template b/srcpkgs/zfsbootmenu/template
index 231083d8e79..1fba506f1b1 100644
--- a/srcpkgs/zfsbootmenu/template
+++ b/srcpkgs/zfsbootmenu/template
@@ -2,7 +2,6 @@
 pkgname=zfsbootmenu
 version=1.3.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/zfsbootmenu/config.ini"
 depends="dracut zfs fzf kexec-tools bash pigz mbuffer perl-Config-IniFiles perl-Sort-Versions"
diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 993198a9f63..def5a357e83 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -2,7 +2,6 @@
 pkgname=zim
 version=0.73.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-gobject python3-xdg gtk+3"
 depends="python3-gobject python3-xdg gtk+3 desktop-file-utils"
diff --git a/srcpkgs/zola/template b/srcpkgs/zola/template
index 23ba73020a2..0e6d2337a88 100644
--- a/srcpkgs/zola/template
+++ b/srcpkgs/zola/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 gutenberg_package() {
-	archs=noarch
 	depends="zola-${version}_${revision}"
 	short_desc="Transition package for Zola"
 	pkg_install() {
diff --git a/srcpkgs/zookeeper/template b/srcpkgs/zookeeper/template
index fc972d0ab4a..e5ab729f23e 100644
--- a/srcpkgs/zookeeper/template
+++ b/srcpkgs/zookeeper/template
@@ -2,7 +2,6 @@
 pkgname=zookeeper
 version=3.4.13
 revision=1
-archs=noarch
 depends="virtual?java-runtime"
 short_desc="Distributed hierarchical key-value store"
 maintainer="Mickael Fortunato <morsi.morsicus@gmail.com>"
diff --git a/srcpkgs/zramen/template b/srcpkgs/zramen/template
index 8245a3b7c25..1e446d7dfdb 100644
--- a/srcpkgs/zramen/template
+++ b/srcpkgs/zramen/template
@@ -2,7 +2,6 @@
 pkgname=zramen
 version=0.2.1
 revision=1
-archs=noarch
 depends="virtual?awk bash bc coreutils grep kmod util-linux"
 short_desc="Manage zram swap space"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/zsh-autosuggestions/template b/srcpkgs/zsh-autosuggestions/template
index 5e5b225037c..bccaa490981 100644
--- a/srcpkgs/zsh-autosuggestions/template
+++ b/srcpkgs/zsh-autosuggestions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-autosuggestions
 version=0.6.4
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like autosuggestions for zsh"
 maintainer="vinnyA3 <vincent.aceto@gmail.com>"
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index 2256bf9a127..8bc854c48f9 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-completions
 version=0.32.0
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Additional completions for Zsh"
 maintainer="Alexander Gehrke <void@qwertyuiop.de>"
diff --git a/srcpkgs/zsh-history-substring-search/template b/srcpkgs/zsh-history-substring-search/template
index 151f412cee2..dc84a8e5192 100644
--- a/srcpkgs/zsh-history-substring-search/template
+++ b/srcpkgs/zsh-history-substring-search/template
@@ -2,7 +2,6 @@
 pkgname=zsh-history-substring-search
 version=1.0.2
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like history search feature for zsh"
 maintainer="Young-Jin Park <youngjinpark20@gmail.com>"
diff --git a/srcpkgs/zsh-syntax-highlighting/template b/srcpkgs/zsh-syntax-highlighting/template
index 66b89fedfc8..0e8aabcdf37 100644
--- a/srcpkgs/zsh-syntax-highlighting/template
+++ b/srcpkgs/zsh-syntax-highlighting/template
@@ -2,7 +2,6 @@
 pkgname=zsh-syntax-highlighting
 version=0.7.1
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish shell like syntax highlighting for Zsh"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zynaddsubfx/template b/srcpkgs/zynaddsubfx/template
index 2361d8bd548..26b769db868 100644
--- a/srcpkgs/zynaddsubfx/template
+++ b/srcpkgs/zynaddsubfx/template
@@ -57,7 +57,6 @@ post_install() {
 }
 zynaddsubfx-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/${sourcepkg}
 	}
diff --git a/srcpkgs/zzz-user-hooks/template b/srcpkgs/zzz-user-hooks/template
index 7301509092f..8d9404e48ec 100644
--- a/srcpkgs/zzz-user-hooks/template
+++ b/srcpkgs/zzz-user-hooks/template
@@ -2,7 +2,6 @@
 pkgname=zzz-user-hooks
 version=1.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 checkdepends="shellcheck"

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (32 preceding siblings ...)
  2020-08-21 22:26 ` [PR PATCH] [Updated] " fosslinux
@ 2020-08-21 22:27 ` fosslinux
  2020-08-21 22:29 ` [PR PATCH] [Updated] " fosslinux
                   ` (53 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-21 22:27 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 281 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-678541474

Comment:
FWIW, I ran `sed -i '/ *archs=.*noarch.*/d' srcpkgs/*/template` and then `grep noarch -r srcpkgs` and removed any irrelevant comments etc.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR PATCH] [Updated] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (33 preceding siblings ...)
  2020-08-21 22:27 ` fosslinux
@ 2020-08-21 22:29 ` fosslinux
  2020-08-21 22:29 ` fosslinux
                   ` (52 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-21 22:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

There is an updated pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages noarch
https://github.com/void-linux/void-packages/pull/24357

[wip] common: disable creation of noarch packages.
This change disables the creation of noarch packages.

I believe that most package maintainers are of the same opinion that noarch causes far more problems than it solves. For some time on IRC there has been continued discussion about disabling it. This is what this PR attempts to achieve.

This still supports `archs=noarch` but IMO this is misleading if it dosen't actually create a package with the noarch arch. This is why I have made `archs=noarch` just mean `noarch=yes`. This is how I think all future packages should declare noarch: `noarch=yes`. I also considered `data_only=yes` or `arch_independent=yes` but I don't really like either of those.

The reason noarch even still exists is because it is a useful shorthand for `nodebug=yes`, `nostrip=yes`, etc etc.

The removed 32-bit block about noarch is useless because noarch already forces `noshlibprovides`.

NB: Right now, this is a MVP and still needs some more work.

Pinging @q66 @the-maldridge 

A patch file from https://github.com/void-linux/void-packages/pull/24357.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-noarch-24357.patch --]
[-- Type: text/x-diff, Size: 1071659 bytes --]

From ae29e30773e214f379cd01938200a9c5526212ee Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Wed, 19 Aug 2020 16:44:41 +1000
Subject: [PATCH 1/2] common: disable creation of noarch packages.

---
 common/hooks/do-pkg/00-gen-pkg.sh                    |  6 ++----
 common/hooks/post-install/06-strip-and-debug-pkgs.sh |  2 +-
 common/hooks/post-pkg/00-register-pkg.sh             |  6 ++----
 common/hooks/pre-pkg/04-generate-runtime-deps.sh     |  2 +-
 common/hooks/pre-pkg/05-prepare-32bit.sh             | 11 -----------
 common/hooks/pre-pkg/06-shlib-provides.sh            |  2 +-
 common/xbps-src/shutils/common.sh                    |  8 +-------
 common/xbps-src/shutils/pkgtarget.sh                 |  2 +-
 8 files changed, 9 insertions(+), 30 deletions(-)

diff --git a/common/hooks/do-pkg/00-gen-pkg.sh b/common/hooks/do-pkg/00-gen-pkg.sh
index b809a6dc5eb..f0b70c8eebb 100644
--- a/common/hooks/do-pkg/00-gen-pkg.sh
+++ b/common/hooks/do-pkg/00-gen-pkg.sh
@@ -104,14 +104,12 @@ hook() {
 	local arch= binpkg= repo= _pkgver= _desc= _pkgn= _pkgv= _provides= \
 		_replaces= _reverts= f= found_dbg_subpkg=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 
diff --git a/common/hooks/post-install/06-strip-and-debug-pkgs.sh b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
index 44d8a51fe93..b59dde5ab3c 100644
--- a/common/hooks/post-install/06-strip-and-debug-pkgs.sh
+++ b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
@@ -59,7 +59,7 @@ create_debug_pkg() {
 hook() {
 	local fname= x= f= _soname= STRIPCMD=
 
-	if [ -n "$nostrip" -o "${archs// /}" = "noarch" ]; then
+	if [ -n "$nostrip" ]; then
 		return 0
 	fi
 
diff --git a/common/hooks/post-pkg/00-register-pkg.sh b/common/hooks/post-pkg/00-register-pkg.sh
index 5dc28c999c9..ce641cfc850 100644
--- a/common/hooks/post-pkg/00-register-pkg.sh
+++ b/common/hooks/post-pkg/00-register-pkg.sh
@@ -13,14 +13,12 @@ registerpkg() {
 hook() {
 	local arch= binpkg= pkgdir=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 	if [ -n "$repository" ]; then
diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
index 6e45b7dd3c3..8ffd3a71d8e 100644
--- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh
+++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
@@ -56,7 +56,7 @@ hook() {
 
     mapshlibs=$XBPS_COMMONDIR/shlibs
 
-    if [ "${archs// /}" = "noarch" -o -n "$noverifyrdeps" ]; then
+    if [ -n "$noverifyrdeps" ]; then
         store_pkgdestdir_rundeps
         return 0
     fi
diff --git a/common/hooks/pre-pkg/05-prepare-32bit.sh b/common/hooks/pre-pkg/05-prepare-32bit.sh
index fd6fdf88217..f3612959cb5 100644
--- a/common/hooks/pre-pkg/05-prepare-32bit.sh
+++ b/common/hooks/pre-pkg/05-prepare-32bit.sh
@@ -20,10 +20,6 @@ hook() {
 	if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
 		return
 	fi 
-	# Ignore noarch pkgs.
-	if [ "${archs// /}" = "noarch" ]; then
-		return
-	fi
 	if [ -z "$lib32mode" ]; then
 		# Library mode, copy only relevant files to new destdir.
 		#
@@ -106,13 +102,6 @@ hook() {
 				printf "${pkgn}-32bit${pkgv} " >> ${destdir32}/rdeps
 				continue
 			fi
-			# If dependency is noarch do not change it to 32bit.
-			_arch=$($XBPS_QUERY_CMD -R --property=architecture "$f")
-			if [ "${_arch}" = "noarch" ]; then
-				echo "   RDEP: $f -> ${pkgn}${pkgv} (noarch)"
-				printf "${pkgn}${pkgv} " >> ${destdir32}/rdeps
-				continue
-			fi
 			# If dependency does not have "shlib-provides" do not
 			# change it to 32bit.
 			for x in ${subpackages}; do
diff --git a/common/hooks/pre-pkg/06-shlib-provides.sh b/common/hooks/pre-pkg/06-shlib-provides.sh
index cdc94de3bc9..08e3c42b302 100644
--- a/common/hooks/pre-pkg/06-shlib-provides.sh
+++ b/common/hooks/pre-pkg/06-shlib-provides.sh
@@ -45,7 +45,7 @@ collect_sonames() {
 hook() {
 	local _destdir32=${XBPS_DESTDIR}/${pkgname}-32bit-${version}
 
-	if [ -z "$shlib_provides" -a "${archs// /}" = "noarch" -o -n "$noshlibprovides" ]; then
+	if [ -z "$shlib_provides" -o -n "$noshlibprovides" ]; then
 		return 0
 	fi
 
diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh
index e8bcf577c6b..1564a174bf2 100644
--- a/common/xbps-src/shutils/common.sh
+++ b/common/xbps-src/shutils/common.sh
@@ -395,7 +395,6 @@ setup_pkg() {
         source_file ${XBPS_SRCPKGDIR}/${basepkg}/template
     fi
 
-
     # Check if required vars weren't set.
     _vars="pkgname version short_desc revision homepage license"
     for f in ${_vars}; do
@@ -457,12 +456,7 @@ setup_pkg() {
     fi
     makejobs="-j$XBPS_MAKEJOBS"
 
-    # strip whitespaces to make "  noarch  " valid too.
-    if [ "${archs// /}" = "noarch" ]; then
-        arch="noarch"
-    else
-        arch="$XBPS_TARGET_MACHINE"
-    fi
+    arch="$XBPS_TARGET_MACHINE"
     if [ -n "$XBPS_BINPKG_EXISTS" ]; then
         local _binpkgver="$($XBPS_QUERY_XCMD -R -ppkgver $pkgver 2>/dev/null)"
         if [ "$_binpkgver" = "$pkgver" ]; then
diff --git a/common/xbps-src/shutils/pkgtarget.sh b/common/xbps-src/shutils/pkgtarget.sh
index 090ec5c1a3e..fa70816fe24 100644
--- a/common/xbps-src/shutils/pkgtarget.sh
+++ b/common/xbps-src/shutils/pkgtarget.sh
@@ -3,7 +3,7 @@
 check_pkg_arch() {
     local cross="$1" _arch f match nonegation
 
-    if [ -n "$archs" -a "${archs// /}" != "noarch" ]; then
+    if [ -n "$archs" ]; then
         if [ -n "$cross" ]; then
             _arch="$XBPS_TARGET_MACHINE"
         elif [ -n "$XBPS_ARCH" ]; then

From 3f233ebadcfe890b6d978cfa5b3b40dfd69c9184 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Sat, 22 Aug 2020 08:29:05 +1000
Subject: [PATCH 2/2] srcpkgs: remove archs=noarch.

---
 srcpkgs/0ad-data/template                     |   1 -
 srcpkgs/66/template                           |   1 -
 srcpkgs/7kaa/template                         |   1 -
 srcpkgs/Adapta/template                       |   1 -
 srcpkgs/Autodia/template                      |   1 -
 srcpkgs/CImg/template                         |   1 -
 srcpkgs/Cataclysm-DDA/template                |   2 -
 srcpkgs/Cendric/template                      |   1 -
 srcpkgs/ClusterSSH/template                   |   1 -
 srcpkgs/ETL/template                          |   1 -
 srcpkgs/Electron-Cash/template                |   1 -
 srcpkgs/Fonts-TLWG/template                   |   2 -
 srcpkgs/GCP-Guest-Environment/template        |   1 -
 srcpkgs/Grammalecte/template                  |   1 -
 srcpkgs/ISOEnts/template                      |   1 -
 srcpkgs/Komikku/template                      |   1 -
 srcpkgs/LanguageTool/template                 |   1 -
 srcpkgs/MoinMoin/template                     |   1 -
 srcpkgs/OpenCPN-gshhs-crude/template          |   5 -
 srcpkgs/OpenLP/template                       |   1 -
 srcpkgs/OpenRCT2/template                     |   1 -
 srcpkgs/PhotoCollage/template                 |   1 -
 srcpkgs/ProofGeneral/template                 |   1 -
 srcpkgs/PyInstaller/template                  |   1 -
 srcpkgs/Pyrex/template                        |   1 -
 srcpkgs/ReText/template                       |   1 -
 srcpkgs/SMC/template                          |   1 -
 srcpkgs/SPIRV-Headers/template                |   1 -
 srcpkgs/Solaar/template                       |   1 -
 srcpkgs/TSC/template                          |   1 -
 srcpkgs/TwitchNotifier/template               |   1 -
 srcpkgs/Uranium/template                      |   1 -
 srcpkgs/Vulkan-Headers/template               |   1 -
 srcpkgs/WiringPi/template                     |   1 -
 srcpkgs/WoeUSB/template                       |   1 -
 srcpkgs/XyGrib-maps/template                  |   1 -
 srcpkgs/abcde/template                        |   1 -
 srcpkgs/abi-compliance-checker/template       |   1 -
 srcpkgs/ack/template                          |   1 -
 srcpkgs/acpilight/template                    |   1 -
 srcpkgs/acr/template                          |   1 -
 srcpkgs/adapta-kde/template                   |   1 -
 srcpkgs/adwaita-icon-theme/template           |   1 -
 srcpkgs/adwaita-plus/template                 |   1 -
 srcpkgs/afew/template                         |   1 -
 srcpkgs/aisleriot/template                    |   1 -
 srcpkgs/alacritty/template                    |   1 -
 srcpkgs/albatross-themes/template             |   1 -
 srcpkgs/alienfx/template                      |   1 -
 srcpkgs/alot/template                         |   1 -
 srcpkgs/alsa-firmware/template                |   1 -
 srcpkgs/amiri-font/template                   |   1 -
 srcpkgs/ampache/template                      |   1 -
 srcpkgs/angrysearch/template                  |   1 -
 srcpkgs/anki/template                         |   1 -
 srcpkgs/ansi/template                         |   1 -
 srcpkgs/ansible/template                      |   1 -
 srcpkgs/antlr3-bin/template                   |   1 -
 srcpkgs/apache-ant/template                   |   2 -
 srcpkgs/apache-jmeter/template                |   1 -
 srcpkgs/apache-maven/template                 |   1 -
 srcpkgs/apache-storm/template                 |   1 -
 srcpkgs/apache-tomcat/template                |   3 -
 srcpkgs/apparmor/template                     |   1 -
 srcpkgs/apt/template                          |   1 -
 srcpkgs/arandr/template                       |   1 -
 srcpkgs/arc-theme/template                    |   1 -
 srcpkgs/archlabs-themes/template              |   1 -
 srcpkgs/argtable/template                     |   1 -
 srcpkgs/artwiz-fonts/template                 |   1 -
 srcpkgs/asciidoc/template                     |   1 -
 srcpkgs/asciinema/template                    |   1 -
 srcpkgs/asciiquarium/template                 |   1 -
 srcpkgs/aspell-ru/template                    |   1 -
 srcpkgs/astromenace/template                  |   1 -
 srcpkgs/asus-kbd-backlight/template           |   1 -
 srcpkgs/atool/template                        |   1 -
 srcpkgs/audit/template                        |   1 -
 srcpkgs/auto-auto-complete/template           |   1 -
 srcpkgs/autoconf-archive/template             |   1 -
 srcpkgs/autoconf/template                     |   1 -
 srcpkgs/autoconf213/template                  |   1 -
 srcpkgs/autojump/template                     |   1 -
 srcpkgs/automake/template                     |   1 -
 srcpkgs/autorandr/template                    |   1 -
 srcpkgs/avahi-discover/template               |   4 -
 srcpkgs/avideo/template                       |   1 -
 srcpkgs/awoken-icons/template                 |   3 -
 srcpkgs/aws-cli/template                      |   1 -
 srcpkgs/awsume/template                       |   1 -
 srcpkgs/azote/template                        |   1 -
 srcpkgs/b43-firmware-classic/template         |   1 -
 srcpkgs/b43-firmware/template                 |   1 -
 srcpkgs/bCNC/template                         |   1 -
 srcpkgs/backblaze-b2/template                 |   2 -
 srcpkgs/backintime-qt/template                |   1 -
 srcpkgs/backintime/template                   |   1 -
 srcpkgs/bandit/template                       |   1 -
 srcpkgs/bash-completion/template              |   1 -
 srcpkgs/bash-preexec/template                 |   1 -
 srcpkgs/bashmount/template                    |   1 -
 srcpkgs/bats/template                         |   1 -
 srcpkgs/bdf2psf/template                      |   1 -
 srcpkgs/beard/template                        |   1 -
 srcpkgs/beets/template                        |   1 -
 srcpkgs/betterlockscreen/template             |   1 -
 srcpkgs/biber/template                        |   1 -
 srcpkgs/binutils/template                     |   1 -
 srcpkgs/binwalk/template                      |   1 -
 srcpkgs/biosdisk/template                     |   1 -
 srcpkgs/bitfighter/template                   |   1 -
 srcpkgs/black/template                        |   1 -
 srcpkgs/blackbird-themes/template             |   1 -
 srcpkgs/blackbox/template                     |   1 -
 srcpkgs/blazeblogger/template                 |   1 -
 srcpkgs/bleachbit/template                    |   1 -
 srcpkgs/bluebird-themes/template              |   1 -
 srcpkgs/boost/template                        |   1 -
 srcpkgs/bootiso/template                      |   1 -
 srcpkgs/borgmatic/template                    |   1 -
 srcpkgs/boswars/template                      |   1 -
 srcpkgs/botan/template                        |   1 -
 srcpkgs/breeze-cursors/template               |   8 -
 srcpkgs/breeze/template                       |   1 -
 srcpkgs/brise/template                        |   1 -
 srcpkgs/broadcom-bt-firmware/template         |   1 -
 srcpkgs/bsdbuild/template                     |   1 -
 srcpkgs/btrfs-backup/template                 |   1 -
 srcpkgs/bucklespring/template                 |   1 -
 srcpkgs/buildbot-slave/template               |   1 -
 srcpkgs/buildbot/template                     |   1 -
 srcpkgs/buku/template                         |   1 -
 srcpkgs/buku_run/template                     |   1 -
 srcpkgs/bum/template                          |   1 -
 srcpkgs/bumblebee-status/template             |   1 -
 srcpkgs/burp2-server/template                 |   1 -
 srcpkgs/bwidget/template                      |   1 -
 srcpkgs/byobu/template                        |   1 -
 srcpkgs/bzrtools/template                     |   1 -
 srcpkgs/c/template                            |   1 -
 srcpkgs/ca-certificates/template              |   1 -
 srcpkgs/caffeine-ng/template                  |   1 -
 srcpkgs/calligra/template                     |   1 -
 srcpkgs/cantarell-fonts/template              |   1 -
 srcpkgs/canto-next/template                   |   1 -
 srcpkgs/carton/template                       |   1 -
 srcpkgs/castero/template                      |   1 -
 srcpkgs/catch2/template                       |   1 -
 srcpkgs/catfish/template                      |   1 -
 srcpkgs/ccsm/template                         |   1 -
 srcpkgs/cdemu-client/template                 |   1 -
 srcpkgs/cdm/template                          |   1 -
 srcpkgs/cdogs-sdl/template                    |   1 -
 srcpkgs/cegui/template                        |   2 -
 srcpkgs/cegui07/template                      |   2 -
 srcpkgs/cereal/template                       |   1 -
 srcpkgs/certbot/template                      |   1 -
 srcpkgs/chatty/template                       |   1 -
 srcpkgs/checkbashisms/template                |   1 -
 srcpkgs/checksec/template                     |   1 -
 srcpkgs/cherry-font/template                  |   1 -
 srcpkgs/cherrytree/template                   |   1 -
 srcpkgs/cinnamon-translations/template        |   1 -
 srcpkgs/ckbcomp/template                      |   1 -
 srcpkgs/cldr-emoji-annotation/template        |   1 -
 .../template                                  |   1 -
 srcpkgs/clerk/template                        |   1 -
 srcpkgs/clipmenu/template                     |   1 -
 srcpkgs/cloc/template                         |   1 -
 srcpkgs/clyrics/template                      |   1 -
 srcpkgs/cmake-vala/template                   |   1 -
 srcpkgs/cmc/template                          |   1 -
 srcpkgs/coccigrep/template                    |   1 -
 srcpkgs/coin3/template                        |   1 -
 srcpkgs/collectl/template                     |   1 -
 srcpkgs/colordiff/template                    |   1 -
 srcpkgs/compiz-bcop/template                  |   1 -
 srcpkgs/composer/template                     |   1 -
 srcpkgs/coreboot-utils/template               |   1 -
 srcpkgs/couchpotato/template                  |   1 -
 srcpkgs/coursera-dl/template                  |   1 -
 srcpkgs/cowsay-temoc/template                 |   1 -
 srcpkgs/cowsay/template                       |   1 -
 srcpkgs/cozy/template                         |   1 -
 srcpkgs/cpanminus/template                    |   1 -
 srcpkgs/cpuset/template                       |   1 -
 srcpkgs/create_ap/template                    |   1 -
 srcpkgs/criu/template                         |   1 -
 srcpkgs/ctop/template                         |   1 -
 srcpkgs/culmus/template                       |   1 -
 srcpkgs/cura-fdm-materials/template           |   1 -
 srcpkgs/cura/template                         |   1 -
 srcpkgs/curseradio/template                   |   1 -
 srcpkgs/cvs2svn/template                      |   1 -
 srcpkgs/cycle/template                        |   1 -
 srcpkgs/d-feet/template                       |   1 -
 srcpkgs/db/template                           |   1 -
 srcpkgs/ddclient/template                     |   1 -
 srcpkgs/ddgr/template                         |   1 -
 srcpkgs/deepin-gtk-theme/template             |   1 -
 srcpkgs/deepin-icon-theme/template            |   1 -
 srcpkgs/deerportal/template                   |   1 -
 srcpkgs/deheader/template                     |   1 -
 srcpkgs/dehydrated/template                   |   1 -
 srcpkgs/dejavu-fonts-ttf/template             |   1 -
 srcpkgs/deluge/template                       |   3 -
 srcpkgs/devedeng/template                     |   1 -
 srcpkgs/dex/template                          |   1 -
 srcpkgs/dhcpcd-gtk/template                   |   1 -
 srcpkgs/diffoscope/template                   |   1 -
 srcpkgs/dina-font/template                    |   1 -
 srcpkgs/ditaa/template                        |   1 -
 srcpkgs/dkimproxy/template                    |   2 -
 srcpkgs/dnssec-anchors/template               |   1 -
 srcpkgs/docbook-dsssl/template                |   1 -
 srcpkgs/docbook-xml/template                  |   1 -
 srcpkgs/docbook-xsl-ns/template               |   1 -
 srcpkgs/docbook-xsl/template                  |   1 -
 srcpkgs/docbook/template                      |   1 -
 srcpkgs/docker-compose/template               |   1 -
 srcpkgs/docx2txt/template                     |   1 -
 srcpkgs/dot-xsession/template                 |   1 -
 srcpkgs/downloader-cli/template               |   1 -
 srcpkgs/dpdk/template                         |   1 -
 srcpkgs/dracut/template                       |   1 -
 srcpkgs/dreampie/template                     |   1 -
 srcpkgs/drist/template                        |   1 -
 srcpkgs/dstat/template                        |   1 -
 srcpkgs/dtrx/template                         |   1 -
 srcpkgs/duiadns/template                      |   1 -
 srcpkgs/durden/template                       |   1 -
 srcpkgs/easyrsa/template                      |   1 -
 srcpkgs/econnman/template                     |   1 -
 srcpkgs/edx-dl/template                       |   1 -
 srcpkgs/eigen/template                        |   1 -
 srcpkgs/eigen2/template                       |   1 -
 srcpkgs/eigen3.2/template                     |   1 -
 srcpkgs/ekushey-fonts-ttf/template            |   1 -
 srcpkgs/electrum-ltc/template                 |   1 -
 srcpkgs/electrum/template                     |   1 -
 srcpkgs/emacs-ess/template                    |   1 -
 srcpkgs/emacs/template                        |   1 -
 srcpkgs/emerald-themes/template               |   1 -
 srcpkgs/encodings/template                    |   1 -
 srcpkgs/endless-sky-gl21/template             |   1 -
 srcpkgs/endless-sky/template                  |   1 -
 srcpkgs/enigma/template                       |   2 -
 srcpkgs/envypn-font/template                  |   1 -
 srcpkgs/erlang/template                       |   1 -
 srcpkgs/escrotum/template                     |   1 -
 srcpkgs/eselect/template                      |   1 -
 srcpkgs/etcetera/template                     |   1 -
 srcpkgs/etckeeper/template                    |   1 -
 srcpkgs/etesync-dav/template                  |   1 -
 srcpkgs/etr/template                          |   1 -
 srcpkgs/execline/template                     |   1 -
 srcpkgs/exiftool/template                     |   1 -
 srcpkgs/extra-cmake-modules/template          |   1 -
 srcpkgs/eyeD3/template                        |   1 -
 srcpkgs/faba-icon-theme/template              |   1 -
 srcpkgs/faenza-icon-theme/template            |   1 -
 srcpkgs/faience-icon-theme/template           |   1 -
 srcpkgs/fail2ban/template                     |   1 -
 srcpkgs/fake-hwclock/template                 |   1 -
 srcpkgs/fava/template                         |   1 -
 srcpkgs/fbmenugen/template                    |   1 -
 srcpkgs/ferm/template                         |   1 -
 srcpkgs/fff/template                          |   1 -
 srcpkgs/ffscreencast/template                 |   1 -
 srcpkgs/fgit/template                         |   1 -
 srcpkgs/fierce/template                       |   1 -
 srcpkgs/figlet-fonts/template                 |   1 -
 srcpkgs/fillets-ng/template                   |   1 -
 srcpkgs/flake8/template                       |   2 -
 srcpkgs/flare-engine/template                 |   1 -
 srcpkgs/flare-game/template                   |   1 -
 srcpkgs/flickcurl/template                    |   1 -
 srcpkgs/flightgear/template                   |   1 -
 srcpkgs/flinks/template                       |   1 -
 srcpkgs/flowblade/template                    |   1 -
 srcpkgs/foliate/template                      |   1 -
 srcpkgs/font-3270/template                    |   1 -
 srcpkgs/font-FixedMisc/template               |   1 -
 srcpkgs/font-Hasklig/template                 |   1 -
 srcpkgs/font-Siji/template                    |   1 -
 srcpkgs/font-adobe-100dpi/template            |   1 -
 srcpkgs/font-adobe-75dpi/template             |   1 -
 srcpkgs/font-adobe-source-code-pro/template   |   2 -
 srcpkgs/font-adobe-utopia-100dpi/template     |   1 -
 srcpkgs/font-adobe-utopia-75dpi/template      |   1 -
 srcpkgs/font-adobe-utopia-type1/template      |   1 -
 srcpkgs/font-alias/template                   |   1 -
 srcpkgs/font-awesome/template                 |   1 -
 srcpkgs/font-awesome5/template                |   1 -
 srcpkgs/font-b612/template                    |   1 -
 srcpkgs/font-bh-100dpi/template               |   1 -
 srcpkgs/font-bh-75dpi/template                |   1 -
 .../font-bh-lucidatypewriter-100dpi/template  |   1 -
 .../font-bh-lucidatypewriter-75dpi/template   |   1 -
 srcpkgs/font-bh-ttf/template                  |   1 -
 srcpkgs/font-bh-type1/template                |   1 -
 srcpkgs/font-bitstream-100dpi/template        |   1 -
 srcpkgs/font-bitstream-75dpi/template         |   1 -
 srcpkgs/font-bitstream-speedo/template        |   1 -
 srcpkgs/font-bitstream-type1/template         |   1 -
 srcpkgs/font-cozette/template                 |   1 -
 srcpkgs/font-cursor-misc/template             |   1 -
 srcpkgs/font-daewoo-misc/template             |   1 -
 srcpkgs/font-dec-misc/template                |   1 -
 srcpkgs/font-fantasque-sans-ttf/template      |   1 -
 srcpkgs/font-fira-otf/template                |   2 -
 srcpkgs/font-firacode/template                |   1 -
 srcpkgs/font-fontin/template                  |   1 -
 srcpkgs/font-hack-ttf/template                |   1 -
 srcpkgs/font-hanazono/template                |   1 -
 srcpkgs/font-hermit-otf/template              |   1 -
 srcpkgs/font-ibm-plex-ttf/template            |   1 -
 srcpkgs/font-ibm-type1/template               |   1 -
 srcpkgs/font-inconsolata-otf/template         |   1 -
 srcpkgs/font-ionicons-ttf/template            |   1 -
 srcpkgs/font-iosevka/template                 |   1 -
 srcpkgs/font-isas-misc/template               |   1 -
 srcpkgs/font-jis-misc/template                |   1 -
 srcpkgs/font-kakwafont/template               |   1 -
 srcpkgs/font-libertine-ttf/template           |   2 -
 srcpkgs/font-manjari/template                 |   1 -
 .../font-material-design-icons-ttf/template   |   1 -
 srcpkgs/font-micro-misc/template              |   1 -
 srcpkgs/font-misc-misc/template               |   1 -
 srcpkgs/font-mplus-ttf/template               |   1 -
 srcpkgs/font-mutt-misc/template               |   1 -
 srcpkgs/font-open-dyslexic-ttf/template       |   1 -
 srcpkgs/font-sarasa-gothic/template           |   1 -
 srcpkgs/font-schumacher-misc/template         |   1 -
 srcpkgs/font-sil-abyssinica/template          |   1 -
 srcpkgs/font-sil-alkalami/template            |   1 -
 srcpkgs/font-sil-andika/template              |   1 -
 srcpkgs/font-sil-annapurna/template           |   1 -
 srcpkgs/font-sil-awami-nastaliq/template      |   1 -
 srcpkgs/font-sil-charis/template              |   1 -
 srcpkgs/font-sil-doulos/template              |   1 -
 srcpkgs/font-sil-ezra/template                |   1 -
 srcpkgs/font-sil-galatia/template             |   1 -
 srcpkgs/font-sil-gentium/template             |   1 -
 srcpkgs/font-sil-harmattan/template           |   1 -
 srcpkgs/font-sil-lateef/template              |   1 -
 srcpkgs/font-sil-mingzat/template             |   1 -
 srcpkgs/font-sil-mondulkiri/template          |   1 -
 srcpkgs/font-sil-namdhinggo/template          |   1 -
 srcpkgs/font-sil-nuosu/template               |   1 -
 srcpkgs/font-sil-padauk/template              |   1 -
 srcpkgs/font-sil-scheherazade/template        |   1 -
 srcpkgs/font-sil-sophia-nubian/template       |   1 -
 srcpkgs/font-sil-tai-heritage-pro/template    |   1 -
 srcpkgs/font-sony-misc/template               |   1 -
 srcpkgs/font-spleen/template                  |   1 -
 srcpkgs/font-sun-misc/template                |   1 -
 srcpkgs/font-symbola/template                 |   1 -
 srcpkgs/font-tamsyn/template                  |   1 -
 srcpkgs/font-tamzen/template                  |   1 -
 srcpkgs/font-unifont-bdf/template             |   1 -
 srcpkgs/font-vazir/template                   |   1 -
 srcpkgs/font-vollkorn-ttf/template            |   1 -
 srcpkgs/font-weather-icons/template           |   1 -
 srcpkgs/fontconfig/template                   |   1 -
 srcpkgs/fonts-croscore-ttf/template           |   1 -
 srcpkgs/fonts-droid-ttf/template              |   1 -
 srcpkgs/fonts-nanum-ttf/template              |   1 -
 srcpkgs/fonts-roboto-ttf/template             |   1 -
 srcpkgs/fonttools/template                    |   1 -
 srcpkgs/foomatic-db-nonfree/template          |   1 -
 srcpkgs/foomatic-db/template                  |   1 -
 srcpkgs/foot/template                         |   1 -
 srcpkgs/fortune-mod-anarchism/template        |   1 -
 srcpkgs/fortune-mod-de/template               |   1 -
 srcpkgs/fortune-mod-void/template             |   1 -
 srcpkgs/freedroidRPG/template                 |   1 -
 srcpkgs/freefont-ttf/template                 |   1 -
 srcpkgs/freeorion/template                    |   1 -
 srcpkgs/freepats/template                     |   1 -
 srcpkgs/freeplane/template                    |   1 -
 srcpkgs/freerouting/template                  |   1 -
 srcpkgs/freetds/template                      |   1 -
 srcpkgs/fsharp/template                       |   1 -
 srcpkgs/gajim/template                        |   1 -
 srcpkgs/gallery-dl/template                   |   1 -
 srcpkgs/gandi-cli/template                    |   1 -
 srcpkgs/gccmakedep/template                   |   1 -
 srcpkgs/gcdemu/template                       |   1 -
 srcpkgs/gconfmm/template                      |   1 -
 srcpkgs/gcovr/template                        |   1 -
 srcpkgs/gdash/template                        |   1 -
 srcpkgs/gdown/template                        |   1 -
 srcpkgs/geda/template                         |   2 -
 srcpkgs/gef/template                          |   1 -
 srcpkgs/geoip-data/template                   |   1 -
 srcpkgs/gespeaker/template                    |   1 -
 srcpkgs/geteltorito/template                  |   1 -
 srcpkgs/getmail/template                      |   1 -
 srcpkgs/gettext/template                      |   1 -
 srcpkgs/ghc/template                          |   1 -
 srcpkgs/ghi/template                          |   1 -
 srcpkgs/giac/template                         |   1 -
 srcpkgs/gimme/template                        |   1 -
 srcpkgs/gist/template                         |   1 -
 srcpkgs/git-cal/template                      |   1 -
 srcpkgs/git-cola/template                     |   1 -
 srcpkgs/git-extras/template                   |   1 -
 srcpkgs/git-filter-repo/template              |   1 -
 srcpkgs/git-review/template                   |   1 -
 srcpkgs/git-revise/template                   |   1 -
 srcpkgs/git-secret/template                   |   1 -
 srcpkgs/git-toolbelt/template                 |   1 -
 srcpkgs/git/template                          |   5 -
 srcpkgs/gitflow/template                      |   1 -
 srcpkgs/gitolite/template                     |   1 -
 srcpkgs/glances/template                      |   1 -
 srcpkgs/glibc/template                        |   1 -
 srcpkgs/glibmm/template                       |   1 -
 srcpkgs/glm/template                          |   1 -
 srcpkgs/glog/template                         |   1 -
 srcpkgs/gmsh/template                         |   1 -
 srcpkgs/gmsl/template                         |   1 -
 srcpkgs/gmusicbrowser/template                |   1 -
 srcpkgs/gnome-backgrounds/template            |   1 -
 srcpkgs/gnome-colors-icon-theme/template      |   1 -
 srcpkgs/gnome-common/template                 |   1 -
 srcpkgs/gnome-doc-utils/template              |   1 -
 srcpkgs/gnome-getting-started-docs/template   |   1 -
 srcpkgs/gnome-icon-theme-extras/template      |   1 -
 srcpkgs/gnome-icon-theme-symbolic/template    |   1 -
 srcpkgs/gnome-icon-theme-xfce/template        |   1 -
 srcpkgs/gnome-icon-theme/template             |   1 -
 srcpkgs/gnome-js-common/template              |   1 -
 srcpkgs/gnome-mime-data/template              |   1 -
 srcpkgs/gnome-passwordsafe/template           |   1 -
 srcpkgs/gnome-shell-extensions/template       |   1 -
 srcpkgs/gnome-themes-extra/template           |   1 -
 srcpkgs/gnome-tweaks/template                 |   2 -
 srcpkgs/gnome-user-docs/template              |   1 -
 srcpkgs/gnome-video-effects/template          |   1 -
 srcpkgs/gns3-gui/template                     |   1 -
 srcpkgs/gns3-net-converter/template           |   1 -
 srcpkgs/gnupod/template                       |   1 -
 srcpkgs/gnuradio/template                     |   1 -
 srcpkgs/gnustep-gui/template                  |   1 -
 srcpkgs/gohufont/template                     |   1 -
 srcpkgs/google-cloud-sdk/template             |   1 -
 srcpkgs/google-fonts-ttf/template             |   1 -
 srcpkgs/gpodder/template                      |   1 -
 srcpkgs/gradle/template                       |   1 -
 srcpkgs/gramps/template                       |   1 -
 srcpkgs/grc/template                          |   1 -
 srcpkgs/greg/template                         |   1 -
 srcpkgs/greybird-themes/template              |   1 -
 srcpkgs/grip/template                         |   1 -
 srcpkgs/grml-zsh-config/template              |   1 -
 srcpkgs/groff/template                        |   1 -
 srcpkgs/grub-terminus/template                |   1 -
 srcpkgs/grub/template                         |   5 -
 srcpkgs/gscan2pdf/template                    |   1 -
 srcpkgs/gscreenshot/template                  |   1 -
 srcpkgs/gsfonts/template                      |   1 -
 srcpkgs/gtk-doc/template                      |   1 -
 srcpkgs/gtk-theme-united-gnome/template       |   1 -
 srcpkgs/guake/template                        |   1 -
 srcpkgs/gufw/template                         |   1 -
 srcpkgs/guilt/template                        |   1 -
 srcpkgs/gyazo/template                        |   1 -
 srcpkgs/hamster-applet/template               |   1 -
 srcpkgs/hashboot/template                     |   1 -
 srcpkgs/hedgewars/template                    |   1 -
 srcpkgs/hg-git/template                       |   1 -
 srcpkgs/hicolor-icon-theme/template           |   1 -
 srcpkgs/hiera/template                        |   1 -
 srcpkgs/hostfw/template                       |   1 -
 srcpkgs/hostmux/template                      |   1 -
 srcpkgs/hosts-update/template                 |   1 -
 srcpkgs/httpie/template                       |   2 -
 srcpkgs/hunspell-da_DK/template               |   1 -
 srcpkgs/hunspell-de_CH/template               |   1 -
 srcpkgs/hunspell-de_DE/template               |   1 -
 srcpkgs/hunspell-el_GR/template               |   1 -
 srcpkgs/hunspell-en_AU/template               |   1 -
 srcpkgs/hunspell-en_GB-ize/template           |   1 -
 srcpkgs/hunspell-en_US/template               |   1 -
 srcpkgs/hunspell-es_ES/template               |   1 -
 srcpkgs/hunspell-fr_FR/template               |   4 -
 srcpkgs/hunspell-hr_HR/template               |   1 -
 srcpkgs/hunspell-it_IT/template               |   1 -
 srcpkgs/hunspell-pl_PL/template               |   1 -
 srcpkgs/hunspell-pt_BR/template               |   1 -
 srcpkgs/hunspell-ru_RU-ieyo/template          |   1 -
 srcpkgs/hunspell-ru_RU/template               |   1 -
 srcpkgs/hunspell-sv_SE/template               |   1 -
 srcpkgs/hwids/template                        |   1 -
 srcpkgs/i3blocks-blocklets/template           |   1 -
 srcpkgs/i3lock-fancy/template                 |   1 -
 srcpkgs/iana-etc/template                     |   1 -
 srcpkgs/ibus-avro/template                    |   1 -
 srcpkgs/icdiff/template                       |   2 -
 srcpkgs/ice-ssb/template                      |   1 -
 srcpkgs/icecat/template                       |  93 -----------
 srcpkgs/icedtea-sound/template                |   1 -
 srcpkgs/icon-naming-utils/template            |   1 -
 srcpkgs/imgp/template                         |   1 -
 srcpkgs/indic-otf/template                    |   1 -
 srcpkgs/indicator-doom-cpu/template           |   1 -
 srcpkgs/iniparser/template                    |   2 -
 srcpkgs/intltool/template                     |   1 -
 srcpkgs/inxi/template                         |   1 -
 srcpkgs/io.elementary.stylesheet/template     |   1 -
 srcpkgs/ioprof/template                       |   1 -
 srcpkgs/iotop/template                        |   1 -
 srcpkgs/ipafont-fonts-otf/template            |   1 -
 srcpkgs/ipcalc/template                       |   1 -
 srcpkgs/ipw2100-firmware/template             |   1 -
 srcpkgs/ipw2200-firmware/template             |   1 -
 srcpkgs/iscan-data/template                   |   1 -
 srcpkgs/iso-codes/template                    |   1 -
 srcpkgs/itstool/template                      |   1 -
 srcpkgs/jadx/template                         |   1 -
 srcpkgs/java-commons-io/template              |   1 -
 srcpkgs/javahelp2/template                    |   1 -
 srcpkgs/jrnl/template                         |   1 -
 srcpkgs/kadu/template                         |   1 -
 srcpkgs/kaitai-struct-compiler/template       |   1 -
 srcpkgs/kapidox/template                      |   1 -
 srcpkgs/kbd/template                          |   1 -
 srcpkgs/key-mon/template                      |   1 -
 srcpkgs/keychain/template                     |   1 -
 srcpkgs/khal/template                         |   1 -
 srcpkgs/khard/template                        |   1 -
 srcpkgs/khmer-fonts-ttf/template              |   1 -
 srcpkgs/kicad-footprints/template             |   1 -
 srcpkgs/kicad-i18n/template                   |   1 -
 srcpkgs/kicad-packages3D/template             |   1 -
 srcpkgs/kicad-symbols/template                |   1 -
 srcpkgs/kicad-templates/template              |   1 -
 srcpkgs/kickassembler/template                |   1 -
 srcpkgs/kitty/template                        |   1 -
 srcpkgs/kobodeluxe/template                   |   1 -
 srcpkgs/kodi-binary-addons/template           |   1 -
 srcpkgs/kpcli/template                        |   1 -
 srcpkgs/kshdb/template                        |   1 -
 srcpkgs/kupfer/template                       |   1 -
 srcpkgs/laditools/template                    |   1 -
 srcpkgs/ladspa-sdk/template                   |   2 -
 srcpkgs/laptop-mode/template                  |   1 -
 srcpkgs/leiningen/template                    |   1 -
 srcpkgs/leocad/template                       |   1 -
 srcpkgs/lesspipe/template                     |   1 -
 srcpkgs/lfe/template                          |   1 -
 srcpkgs/lfm/template                          |   1 -
 srcpkgs/lftpfs/template                       |   1 -
 srcpkgs/libbytesize/template                  |   1 -
 srcpkgs/libcap-ng/template                    |   1 -
 srcpkgs/libchewing/template                   |   1 -
 srcpkgs/libclc-git/template                   |   1 -
 srcpkgs/libcppunit/template                   |   1 -
 srcpkgs/libdwarf/template                     |   1 -
 srcpkgs/libe-book/template                    |   1 -
 srcpkgs/liberation-fonts-ttf/template         |   1 -
 srcpkgs/libfreehand/template                  |   1 -
 srcpkgs/libgphoto2/template                   |   1 -
 srcpkgs/libinput-gestures/template            |   1 -
 srcpkgs/libmwaw/template                      |   1 -
 srcpkgs/libosmgpsmap/template                 |   1 -
 srcpkgs/libquvi-scripts/template              |   1 -
 srcpkgs/libreoffice/template                  |   2 -
 srcpkgs/libsearpc/template                    |   2 -
 srcpkgs/libsoxr/template                      |   1 -
 srcpkgs/libvpx5/template                      |   1 -
 srcpkgs/libwaylandpp/template                 |   1 -
 srcpkgs/lightdm-webkit2-greeter/template      |   1 -
 srcpkgs/lilypond-doc/template                 |   1 -
 srcpkgs/linux-firmware-dvb/template           |   1 -
 srcpkgs/linux-firmware/template               |   5 -
 srcpkgs/lltag/template                        |   1 -
 srcpkgs/llvm10/template                       |   1 -
 srcpkgs/llvm6.0/template                      |   1 -
 srcpkgs/llvm7/template                        |   1 -
 srcpkgs/llvm8/template                        |   1 -
 srcpkgs/llvm9/template                        |   1 -
 srcpkgs/lollypop/template                     |   1 -
 srcpkgs/lua54-MessagePack/template            |   1 -
 srcpkgs/lua54-stdlib-debug/template           |   1 -
 srcpkgs/lua54-stdlib-normalize/template       |   1 -
 srcpkgs/lua54-vicious/template                |   1 -
 srcpkgs/luarocks-lua53/template               |   4 -
 srcpkgs/lugaru/template                       |   1 -
 srcpkgs/lutris/template                       |   1 -
 srcpkgs/lxde-common/template                  |   1 -
 srcpkgs/lxde-icon-theme/template              |   1 -
 srcpkgs/lxdm-theme-vdojo/template             |   1 -
 srcpkgs/lxmenu-data/template                  |   1 -
 srcpkgs/lxqt-build-tools/template             |   1 -
 srcpkgs/magic-wormhole/template               |   1 -
 srcpkgs/mailpile/template                     |   1 -
 srcpkgs/make-ca/template                      |   1 -
 srcpkgs/makepasswd/template                   |   1 -
 srcpkgs/makeself/template                     |   1 -
 srcpkgs/man-pages-posix/template              |   1 -
 srcpkgs/man-pages/template                    |   2 -
 srcpkgs/mantablockscreen/template             |   1 -
 srcpkgs/manuskript/template                   |   1 -
 srcpkgs/mariadb/template                      |   1 -
 srcpkgs/marvin/template                       |   1 -
 srcpkgs/mate-applets/template                 |   1 -
 srcpkgs/mate-backgrounds/template             |   1 -
 srcpkgs/mate-common/template                  |   1 -
 srcpkgs/mate-icon-theme-faenza/template       |   1 -
 srcpkgs/mate-icon-theme/template              |   1 -
 srcpkgs/mate-menu/template                    |   1 -
 srcpkgs/mate-themes/template                  |   1 -
 srcpkgs/mate-tweak/template                   |   1 -
 srcpkgs/mate-user-guide/template              |   1 -
 srcpkgs/mathjax/template                      |   1 -
 srcpkgs/maxima/template                       |   3 -
 srcpkgs/mb2md/template                        |   1 -
 srcpkgs/mcomix/template                       |   1 -
 srcpkgs/mdds/template                         |   1 -
 srcpkgs/mdevd/template                        |   1 -
 srcpkgs/med/template                          |   1 -
 srcpkgs/media-player-info/template            |   1 -
 srcpkgs/meld/template                         |   1 -
 srcpkgs/menulibre/template                    |   1 -
 srcpkgs/menumaker/template                    |   1 -
 srcpkgs/menutray/template                     |   1 -
 srcpkgs/meson-cmake-wrapper/template          |   1 -
 srcpkgs/meson/template                        |   1 -
 srcpkgs/mime-types/template                   |   1 -
 srcpkgs/mimeo/template                        |   1 -
 srcpkgs/mimms/template                        |   1 -
 srcpkgs/minigalaxy/template                   |   1 -
 srcpkgs/miro-video-converter/template         |   1 -
 srcpkgs/mkchromecast/template                 |   1 -
 srcpkgs/mkfontscale/template                  |   1 -
 srcpkgs/mkinitcpio-encryptssh/template        |   1 -
 srcpkgs/mkinitcpio/template                   |   6 -
 srcpkgs/mlt/template                          |   3 -
 srcpkgs/mm-common/template                    |   1 -
 .../mobile-broadband-provider-info/template   |   1 -
 srcpkgs/mog/template                          |   1 -
 srcpkgs/mongoose/template                     |   1 -
 srcpkgs/mons/template                         |   1 -
 srcpkgs/mopidy-local/template                 |   1 -
 srcpkgs/mopidy-mpd/template                   |   1 -
 srcpkgs/mopidy/template                       |   1 -
 srcpkgs/mozo/template                         |   1 -
 srcpkgs/mpd-sima/template                     |   1 -
 srcpkgs/mps-youtube/template                  |   1 -
 srcpkgs/msbuild-bin/template                  |   1 -
 srcpkgs/msttcorefonts/template                |   1 -
 srcpkgs/mtm/template                          |   1 -
 srcpkgs/mu/template                           |   1 -
 srcpkgs/mugshot/template                      |   1 -
 srcpkgs/multibootusb/template                 |   1 -
 srcpkgs/mutagen/template                      |   2 -
 srcpkgs/mymcplus/template                     |   1 -
 srcpkgs/mypaint-brushes/template              |   1 -
 srcpkgs/mypaint-brushes1/template             |   1 -
 srcpkgs/myrepos/template                      |   1 -
 srcpkgs/nagstamon/template                    |   1 -
 srcpkgs/nautilus-python/template              |   1 -
 srcpkgs/ncurses/template                      |   2 -
 srcpkgs/neofetch/template                     |   1 -
 srcpkgs/neovim-remote/template                |   1 -
 srcpkgs/nerd-fonts/template                   |   3 -
 srcpkgs/netbsd-wtf/template                   |   1 -
 srcpkgs/netdata/template                      |   2 -
 srcpkgs/netsurf-buildsystem/template          |   1 -
 srcpkgs/nicotine+/template                    |   1 -
 srcpkgs/nmap/template                         |   1 -
 srcpkgs/notmuch/template                      |   3 -
 srcpkgs/noto-fonts-cjk/template               |   1 -
 srcpkgs/noto-fonts-emoji/template             |   1 -
 srcpkgs/noto-fonts-ttf/template               |   1 -
 srcpkgs/novaboot/template                     |   1 -
 srcpkgs/nsss/template                         |   1 -
 srcpkgs/ntp/template                          |   1 -
 srcpkgs/num-utils/template                    |   1 -
 srcpkgs/numix-themes/template                 |   1 -
 srcpkgs/nyx/template                          |   1 -
 srcpkgs/oblogout/template                     |   1 -
 srcpkgs/obmenu-generator/template             |   1 -
 srcpkgs/obmenu/template                       |   1 -
 srcpkgs/offlineimap/template                  |   1 -
 srcpkgs/ohsnap-font/template                  |   1 -
 srcpkgs/ok.sh/template                        |   1 -
 srcpkgs/oniguruma/template                    |   1 -
 srcpkgs/onionshare/template                   |   1 -
 srcpkgs/opencl-clhpp/template                 |   1 -
 srcpkgs/opencl2-headers/template              |   1 -
 srcpkgs/openjdk8/template                     |   4 -
 srcpkgs/openlierox/template                   |   1 -
 srcpkgs/openra/template                       |   1 -
 srcpkgs/openresolv/template                   |   1 -
 srcpkgs/opensonic/template                    |   1 -
 srcpkgs/opensurge/template                    |   1 -
 srcpkgs/opentmpfiles/template                 |   1 -
 srcpkgs/openttd/template                      |   1 -
 srcpkgs/opentyrian/template                   |   1 -
 srcpkgs/orca/template                         |   1 -
 srcpkgs/orjail/template                       |   1 -
 srcpkgs/osinfo-db/template                    |   1 -
 srcpkgs/othman/template                       |   1 -
 srcpkgs/overpass-otf/template                 |   1 -
 srcpkgs/oxygen-icons5/template                |   1 -
 srcpkgs/pam-base/template                     |   1 -
 srcpkgs/pantalaimon/template                  |   1 -
 srcpkgs/paper-gtk-theme/template              |   1 -
 srcpkgs/paper-icon-theme/template             |   1 -
 srcpkgs/papirus-folders/template              |   1 -
 srcpkgs/papirus-icon-theme/template           |   1 -
 srcpkgs/parallel/template                     |   1 -
 srcpkgs/pass-git-helper/template              |   1 -
 srcpkgs/pass-import/template                  |   1 -
 srcpkgs/pass-otp/template                     |   1 -
 srcpkgs/pass-update/template                  |   1 -
 srcpkgs/pass/template                         |   1 -
 srcpkgs/pastebinit/template                   |   1 -
 srcpkgs/pcb/template                          |   1 -
 srcpkgs/pdd/template                          |   1 -
 srcpkgs/pdf.js/template                       |   1 -
 srcpkgs/peframe/template                      |   1 -
 srcpkgs/pelican/template                      |   1 -
 srcpkgs/percona-toolkit/template              |   1 -
 srcpkgs/perl-ACL-Lite/template                |   1 -
 srcpkgs/perl-AWS-Signature4/template          |   1 -
 srcpkgs/perl-Algorithm-Diff/template          |   1 -
 srcpkgs/perl-Alien-Build/template             |   1 -
 srcpkgs/perl-Alien-wxWidgets/template         |   1 -
 srcpkgs/perl-Alien/template                   |   1 -
 srcpkgs/perl-AnyEvent-I3/template             |   1 -
 srcpkgs/perl-AnyEvent/template                |   1 -
 .../perl-Apache-LogFormat-Compiler/template   |   1 -
 srcpkgs/perl-AppConfig/template               |   1 -
 srcpkgs/perl-Archive-Extract/template         |   1 -
 srcpkgs/perl-Archive-Zip/template             |   1 -
 srcpkgs/perl-Authen-SASL/template             |   1 -
 srcpkgs/perl-B-Hooks-EndOfScope/template      |   1 -
 srcpkgs/perl-Business-ISBN-Data/template      |   1 -
 srcpkgs/perl-Business-ISBN/template           |   1 -
 srcpkgs/perl-Business-ISMN/template           |   1 -
 srcpkgs/perl-Business-ISSN/template           |   1 -
 srcpkgs/perl-CGI/template                     |   1 -
 srcpkgs/perl-CPAN-Changes/template            |   1 -
 srcpkgs/perl-CPAN-Common-Index/template       |   1 -
 srcpkgs/perl-CPAN-DistnameInfo/template       |   1 -
 srcpkgs/perl-CPAN-Meta-Check/template         |   1 -
 srcpkgs/perl-Canary-Stability/template        |   1 -
 srcpkgs/perl-Capture-Tiny/template            |   1 -
 srcpkgs/perl-Carp-Clan/template               |   1 -
 srcpkgs/perl-Class-Accessor/template          |   1 -
 srcpkgs/perl-Class-Data-Inheritable/template  |   1 -
 srcpkgs/perl-Class-Factory-Util/template      |   1 -
 srcpkgs/perl-Class-Inspector/template         |   1 -
 srcpkgs/perl-Class-Load/template              |   1 -
 srcpkgs/perl-Class-Method-Modifiers/template  |   1 -
 srcpkgs/perl-Class-Singleton/template         |   1 -
 srcpkgs/perl-Class-Tiny/template              |   1 -
 srcpkgs/perl-Clipboard/template               |   1 -
 srcpkgs/perl-Clone-Choose/template            |   1 -
 srcpkgs/perl-Clone-PP/template                |   1 -
 srcpkgs/perl-Config-AutoConf/template         |   1 -
 srcpkgs/perl-Config-General/template          |   1 -
 .../perl-Config-INI-Reader-Ordered/template   |   1 -
 srcpkgs/perl-Config-INI/template              |   1 -
 srcpkgs/perl-Config-IniFiles/template         |   1 -
 srcpkgs/perl-Config-Simple/template           |   1 -
 srcpkgs/perl-Config-Tiny/template             |   1 -
 srcpkgs/perl-Convert-BinHex/template          |   1 -
 srcpkgs/perl-Cookie-Baker/template            |   1 -
 srcpkgs/perl-Crypt-Blowfish_PP/template       |   1 -
 srcpkgs/perl-Crypt-CBC/template               |   1 -
 srcpkgs/perl-Crypt-DES_EDE3/template          |   1 -
 srcpkgs/perl-Crypt-DH/template                |   1 -
 srcpkgs/perl-Crypt-OpenSSL-Guess/template     |   1 -
 srcpkgs/perl-Crypt-PasswdMD5/template         |   1 -
 srcpkgs/perl-Crypt-RC4/template               |   1 -
 srcpkgs/perl-Danga-Socket/template            |   1 -
 srcpkgs/perl-Data-Compare/template            |   1 -
 srcpkgs/perl-Data-Dump/template               |   1 -
 srcpkgs/perl-Data-Dx/template                 |   1 -
 srcpkgs/perl-Data-OptList/template            |   1 -
 srcpkgs/perl-Data-Section-Simple/template     |   1 -
 srcpkgs/perl-Data-Uniqid/template             |   1 -
 srcpkgs/perl-Data-Validate-IP/template        |   1 -
 srcpkgs/perl-Date-Calc/template               |   1 -
 srcpkgs/perl-Date-Manip/template              |   1 -
 .../perl-DateTime-Calendar-Julian/template    |   1 -
 srcpkgs/perl-DateTime-Format-Builder/template |   1 -
 .../perl-DateTime-Format-Strptime/template    |   1 -
 srcpkgs/perl-DateTime-Locale/template         |   1 -
 srcpkgs/perl-DateTime-TimeZone/template       |   1 -
 srcpkgs/perl-Devel-CheckLib/template          |   1 -
 srcpkgs/perl-Devel-GlobalDestruction/template |   1 -
 srcpkgs/perl-Devel-StackTrace-AsHTML/template |   1 -
 srcpkgs/perl-Devel-StackTrace/template        |   1 -
 srcpkgs/perl-Devel-Symdump/template           |   1 -
 srcpkgs/perl-Digest-HMAC/template             |   1 -
 srcpkgs/perl-Digest-Perl-MD5/template         |   1 -
 srcpkgs/perl-Dist-CheckConflicts/template     |   1 -
 srcpkgs/perl-Email-Date-Format/template       |   1 -
 srcpkgs/perl-Email-FolderType/template        |   1 -
 srcpkgs/perl-Email-LocalDelivery/template     |   1 -
 srcpkgs/perl-Email-MIME-ContentType/template  |   1 -
 srcpkgs/perl-Email-MIME-Encodings/template    |   1 -
 srcpkgs/perl-Email-MIME/template              |   1 -
 srcpkgs/perl-Email-MessageID/template         |   1 -
 srcpkgs/perl-Email-Simple/template            |   1 -
 srcpkgs/perl-Encode-Locale/template           |   1 -
 srcpkgs/perl-Eval-Closure/template            |   1 -
 srcpkgs/perl-Exception-Class/template         |   1 -
 srcpkgs/perl-Expect/template                  |   1 -
 srcpkgs/perl-Exporter-Tiny/template           |   1 -
 srcpkgs/perl-ExtUtils-Config/template         |   1 -
 srcpkgs/perl-ExtUtils-CppGuess/template       |   1 -
 srcpkgs/perl-ExtUtils-Depends/template        |   1 -
 srcpkgs/perl-ExtUtils-Helpers/template        |   1 -
 srcpkgs/perl-ExtUtils-InstallPaths/template   |   1 -
 srcpkgs/perl-ExtUtils-LibBuilder/template     |   1 -
 .../perl-ExtUtils-MakeMaker-CPANfile/template |   1 -
 srcpkgs/perl-ExtUtils-PkgConfig/template      |   1 -
 srcpkgs/perl-ExtUtils-XSpp/template           |   1 -
 srcpkgs/perl-FFI-CheckLib/template            |   1 -
 srcpkgs/perl-File-BaseDir/template            |   1 -
 srcpkgs/perl-File-Copy-Recursive/template     |   1 -
 srcpkgs/perl-File-DesktopEntry/template       |   1 -
 srcpkgs/perl-File-Find-Rule/template          |   1 -
 srcpkgs/perl-File-Flock-Retry/template        |   1 -
 srcpkgs/perl-File-HomeDir/template            |   1 -
 srcpkgs/perl-File-KeePass/template            |   1 -
 srcpkgs/perl-File-Listing/template            |   1 -
 srcpkgs/perl-File-MimeInfo/template           |   1 -
 srcpkgs/perl-File-Next/template               |   1 -
 srcpkgs/perl-File-Path-Expand/template        |   1 -
 srcpkgs/perl-File-Remove/template             |   1 -
 srcpkgs/perl-File-Rename/template             |   1 -
 srcpkgs/perl-File-ShareDir-Install/template   |   1 -
 srcpkgs/perl-File-ShareDir/template           |   1 -
 srcpkgs/perl-File-Slurp-Tiny/template         |   1 -
 srcpkgs/perl-File-Slurp/template              |   1 -
 srcpkgs/perl-File-Slurper/template            |   1 -
 srcpkgs/perl-File-Which/template              |   1 -
 srcpkgs/perl-File-Write-Rotate/template       |   1 -
 srcpkgs/perl-File-chdir/template              |   1 -
 srcpkgs/perl-File-pushd/template              |   1 -
 srcpkgs/perl-Filesys-Notify-Simple/template   |   1 -
 srcpkgs/perl-Font-TTF/template                |   1 -
 srcpkgs/perl-Getopt-Compact/template          |   1 -
 srcpkgs/perl-GooCanvas2/template              |   1 -
 srcpkgs/perl-Graphics-ColorUtils/template     |   1 -
 srcpkgs/perl-Gtk2-Ex-Simple-List/template     |   1 -
 srcpkgs/perl-Gtk3-SimpleList/template         |   1 -
 srcpkgs/perl-Gtk3/template                    |   1 -
 srcpkgs/perl-HTML-Form/template               |   1 -
 srcpkgs/perl-HTML-Tagset/template             |   1 -
 srcpkgs/perl-HTML-Tree/template               |   1 -
 srcpkgs/perl-HTTP-Cookies/template            |   1 -
 srcpkgs/perl-HTTP-Daemon/template             |   1 -
 srcpkgs/perl-HTTP-Date/template               |   1 -
 srcpkgs/perl-HTTP-Entity-Parser/template      |   1 -
 srcpkgs/perl-HTTP-Headers-Fast/template       |   1 -
 srcpkgs/perl-HTTP-Message/template            |   1 -
 srcpkgs/perl-HTTP-MultiPartParser/template    |   1 -
 srcpkgs/perl-HTTP-Negotiate/template          |   1 -
 srcpkgs/perl-HTTP-Response-Encoding/template  |   1 -
 srcpkgs/perl-HTTP-Server-Simple/template      |   1 -
 srcpkgs/perl-HTTP-Tinyish/template            |   1 -
 srcpkgs/perl-Hash-Merge/template              |   1 -
 srcpkgs/perl-Hash-MultiValue/template         |   1 -
 srcpkgs/perl-IO-CaptureOutput/template        |   1 -
 srcpkgs/perl-IO-HTML/template                 |   1 -
 srcpkgs/perl-IO-SessionData/template          |   1 -
 srcpkgs/perl-IO-Socket-INET6/template         |   1 -
 srcpkgs/perl-IO-Socket-SSL/template           |   1 -
 srcpkgs/perl-IO-Socket-Socks/template         |   1 -
 srcpkgs/perl-IO-String/template               |   1 -
 srcpkgs/perl-IO-Stty/template                 |   1 -
 srcpkgs/perl-IO-stringy/template              |   1 -
 srcpkgs/perl-IPC-Run/template                 |   1 -
 srcpkgs/perl-IPC-Run3/template                |   1 -
 srcpkgs/perl-IPC-System-Simple/template       |   1 -
 srcpkgs/perl-Importer/template                |   1 -
 srcpkgs/perl-Inline-C/template                |   1 -
 srcpkgs/perl-Inline/template                  |   1 -
 srcpkgs/perl-JSON-MaybeXS/template            |   1 -
 srcpkgs/perl-JSON/template                    |   1 -
 srcpkgs/perl-Keyword-Declare/template         |   1 -
 srcpkgs/perl-Keyword-Simple/template          |   1 -
 srcpkgs/perl-LWP-MediaTypes/template          |   1 -
 srcpkgs/perl-LWP-Protocol-https/template      |   1 -
 srcpkgs/perl-LWP-Protocol-socks/template      |   1 -
 srcpkgs/perl-LWP/template                     |   1 -
 srcpkgs/perl-Lingua-Translit/template         |   1 -
 srcpkgs/perl-Linux-DesktopFiles/template      |   1 -
 srcpkgs/perl-Linux-Distribution/template      |   1 -
 srcpkgs/perl-List-AllUtils/template           |   1 -
 srcpkgs/perl-List-MoreUtils/template          |   1 -
 srcpkgs/perl-List-SomeUtils/template          |   1 -
 srcpkgs/perl-List-UtilsBy/template            |   1 -
 srcpkgs/perl-Locale-PO/template               |   1 -
 srcpkgs/perl-Log-Log4perl/template            |   1 -
 srcpkgs/perl-MIME-Charset/template            |   1 -
 srcpkgs/perl-MIME-Types/template              |   1 -
 srcpkgs/perl-MIME-tools/template              |   1 -
 srcpkgs/perl-MP3-Info/template                |   1 -
 srcpkgs/perl-MP3-Tag/template                 |   1 -
 srcpkgs/perl-MRO-Compat/template              |   1 -
 srcpkgs/perl-Mail-Box/template                |   1 -
 srcpkgs/perl-Mail-DKIM/template               |   1 -
 srcpkgs/perl-Mail-Message/template            |   1 -
 srcpkgs/perl-Mail-POP3Client/template         |   1 -
 srcpkgs/perl-Mail-Sendmail/template           |   1 -
 srcpkgs/perl-Mail-Transport/template          |   1 -
 srcpkgs/perl-MailTools/template               |   1 -
 srcpkgs/perl-Menlo-Legacy/template            |   1 -
 srcpkgs/perl-Menlo/template                   |   1 -
 srcpkgs/perl-Mixin-Linewise/template          |   1 -
 srcpkgs/perl-Module-Build-Tiny/template       |   1 -
 srcpkgs/perl-Module-Build/template            |   1 -
 srcpkgs/perl-Module-CPANfile/template         |   1 -
 srcpkgs/perl-Module-Find/template             |   1 -
 srcpkgs/perl-Module-Implementation/template   |   1 -
 srcpkgs/perl-Module-Manifest/template         |   1 -
 srcpkgs/perl-Module-Pluggable/template        |   1 -
 srcpkgs/perl-Module-Runtime/template          |   1 -
 srcpkgs/perl-Mojolicious/template             |   1 -
 srcpkgs/perl-Monkey-Patch-Action/template     |   1 -
 srcpkgs/perl-Moo/template                     |   1 -
 srcpkgs/perl-Mozilla-CA/template              |   1 -
 srcpkgs/perl-Net-DNS-Resolver-Mock/template   |   1 -
 srcpkgs/perl-Net-DNS/template                 |   1 -
 srcpkgs/perl-Net-HTTP/template                |   1 -
 srcpkgs/perl-Net-IMAP-Client/template         |   1 -
 srcpkgs/perl-Net-IMAP-Simple/template         |   1 -
 srcpkgs/perl-Net-MPD/template                 |   1 -
 srcpkgs/perl-Net-OpenSSH/template             |   1 -
 srcpkgs/perl-Net-SFTP-Foreign/template        |   1 -
 srcpkgs/perl-Net-SMTP-SSL/template            |   1 -
 srcpkgs/perl-Net-Server/template              |   1 -
 srcpkgs/perl-Number-Compare/template          |   1 -
 srcpkgs/perl-Number-Format/template           |   1 -
 srcpkgs/perl-OLE-Storage_Lite/template        |   1 -
 srcpkgs/perl-Object-MultiType/template        |   1 -
 srcpkgs/perl-Object-Realize-Later/template    |   1 -
 srcpkgs/perl-PDF-API2/template                |   1 -
 srcpkgs/perl-POSIX-strftime-Compiler/template |   1 -
 srcpkgs/perl-PPR/template                     |   1 -
 .../perl-Package-DeprecationManager/template  |   1 -
 srcpkgs/perl-Package-Stash/template           |   1 -
 srcpkgs/perl-Parallel-ForkManager/template    |   1 -
 .../perl-Params-ValidationCompiler/template   |   1 -
 srcpkgs/perl-Parse-CPAN-Meta/template         |   1 -
 srcpkgs/perl-Parse-PMFile/template            |   1 -
 srcpkgs/perl-Parse-RecDescent/template        |   1 -
 srcpkgs/perl-Parse-Yapp/template              |   1 -
 srcpkgs/perl-PatchReader/template             |   1 -
 srcpkgs/perl-Path-Tiny/template               |   1 -
 srcpkgs/perl-Pegex/template                   |   1 -
 .../perl-Plack-Middleware-Deflater/template   |   1 -
 .../template                                  |   1 -
 srcpkgs/perl-Plack/template                   |   1 -
 srcpkgs/perl-Pod-Coverage/template            |   1 -
 srcpkgs/perl-Pod-Simple-Text-Termcap/template |   1 -
 srcpkgs/perl-Probe-Perl/template              |   1 -
 srcpkgs/perl-Proc-Daemontools/template        |   1 -
 srcpkgs/perl-Proc-Govern/template             |   1 -
 srcpkgs/perl-Proc-PID-File/template           |   1 -
 srcpkgs/perl-Readonly/template                |   1 -
 srcpkgs/perl-Ref-Util/template                |   1 -
 srcpkgs/perl-Regexp-Common/template           |   1 -
 srcpkgs/perl-Regexp-Grammars/template         |   1 -
 srcpkgs/perl-Reply/template                   |   1 -
 srcpkgs/perl-Role-Tiny/template               |   1 -
 srcpkgs/perl-SGMLSpm/template                 |   1 -
 srcpkgs/perl-SOAP-Lite/template               |   1 -
 srcpkgs/perl-SUPER/template                   |   1 -
 srcpkgs/perl-Scope-Guard/template             |   1 -
 srcpkgs/perl-Set-IntSpan/template             |   1 -
 srcpkgs/perl-Sort-Naturally/template          |   1 -
 srcpkgs/perl-Sort-Versions/template           |   1 -
 srcpkgs/perl-Specio/template                  |   1 -
 srcpkgs/perl-Spiffy/template                  |   1 -
 srcpkgs/perl-Spreadsheet-ParseExcel/template  |   1 -
 srcpkgs/perl-Spreadsheet-ParseXLSX/template   |   1 -
 srcpkgs/perl-Stow/template                    |   1 -
 srcpkgs/perl-Stream-Buffered/template         |   1 -
 srcpkgs/perl-String-Escape/template           |   1 -
 srcpkgs/perl-String-ShellQuote/template       |   1 -
 srcpkgs/perl-Sub-Delete/template              |   1 -
 .../perl-Sub-Exporter-Progressive/template    |   1 -
 srcpkgs/perl-Sub-Exporter/template            |   1 -
 srcpkgs/perl-Sub-Info/template                |   1 -
 srcpkgs/perl-Sub-Install/template             |   1 -
 srcpkgs/perl-Sub-Quote/template               |   1 -
 srcpkgs/perl-Sub-Uplevel/template             |   1 -
 srcpkgs/perl-Svsh/template                    |   1 -
 srcpkgs/perl-Sys-Syscall/template             |   1 -
 srcpkgs/perl-Term-Animation/template          |   1 -
 srcpkgs/perl-Term-ExtendedColor/template      |   1 -
 srcpkgs/perl-Term-ShellUI/template            |   1 -
 srcpkgs/perl-Term-Table/template              |   1 -
 srcpkgs/perl-Test-Base/template               |   1 -
 srcpkgs/perl-Test-CPAN-Meta/template          |   1 -
 srcpkgs/perl-Test-Class/template              |   1 -
 srcpkgs/perl-Test-Cmd/template                |   1 -
 srcpkgs/perl-Test-Command/template            |   1 -
 srcpkgs/perl-Test-Deep/template               |   1 -
 srcpkgs/perl-Test-Differences/template        |   1 -
 srcpkgs/perl-Test-DistManifest/template       |   1 -
 srcpkgs/perl-Test-Exception/template          |   1 -
 srcpkgs/perl-Test-FailWarnings/template       |   1 -
 srcpkgs/perl-Test-Fatal/template              |   1 -
 srcpkgs/perl-Test-File-ShareDir/template      |   1 -
 srcpkgs/perl-Test-File/template               |   1 -
 srcpkgs/perl-Test-HTTP-Server-Simple/template |   1 -
 srcpkgs/perl-Test-Inter/template              |   1 -
 srcpkgs/perl-Test-MockModule/template         |   1 -
 srcpkgs/perl-Test-Most/template               |   1 -
 srcpkgs/perl-Test-Needs/template              |   1 -
 srcpkgs/perl-Test-NoWarnings/template         |   1 -
 srcpkgs/perl-Test-Output/template             |   1 -
 srcpkgs/perl-Test-Pod-Coverage/template       |   1 -
 srcpkgs/perl-Test-Pod/template                |   1 -
 srcpkgs/perl-Test-Requires/template           |   1 -
 srcpkgs/perl-Test-RequiresInternet/template   |   1 -
 srcpkgs/perl-Test-Script/template             |   1 -
 srcpkgs/perl-Test-SharedFork/template         |   1 -
 srcpkgs/perl-Test-Simple/template             |   1 -
 srcpkgs/perl-Test-Subroutines/template        |   1 -
 srcpkgs/perl-Test-TCP/template                |   1 -
 srcpkgs/perl-Test-Time/template               |   1 -
 srcpkgs/perl-Test-Trap/template               |   1 -
 srcpkgs/perl-Test-UseAllModules/template      |   1 -
 srcpkgs/perl-Test-Warn/template               |   1 -
 srcpkgs/perl-Test-Warnings/template           |   1 -
 srcpkgs/perl-Test-Weaken/template             |   1 -
 srcpkgs/perl-Test-Without-Module/template     |   1 -
 srcpkgs/perl-Test-YAML/template               |   1 -
 srcpkgs/perl-Test-utf8/template               |   1 -
 srcpkgs/perl-Test2-Plugin-NoWarnings/template |   1 -
 srcpkgs/perl-Test2-Suite/template             |   1 -
 srcpkgs/perl-Text-ASCIITable/template         |   1 -
 srcpkgs/perl-Text-Aligner/template            |   1 -
 srcpkgs/perl-Text-Autoformat/template         |   1 -
 srcpkgs/perl-Text-CSV/template                |   1 -
 srcpkgs/perl-Text-Diff/template               |   1 -
 srcpkgs/perl-Text-Glob/template               |   1 -
 srcpkgs/perl-Text-Markdown/template           |   1 -
 srcpkgs/perl-Text-Reform/template             |   1 -
 srcpkgs/perl-Text-Roman/template              |   1 -
 srcpkgs/perl-Text-Table/template              |   1 -
 srcpkgs/perl-Text-Unidecode/template          |   1 -
 srcpkgs/perl-Text-WrapI18N/template           |   1 -
 srcpkgs/perl-Text-XLogfile/template           |   1 -
 srcpkgs/perl-Tie-Cycle/template               |   1 -
 srcpkgs/perl-Tie-Handle-Offset/template       |   1 -
 srcpkgs/perl-Tie-IxHash/template              |   1 -
 srcpkgs/perl-Time-Duration/template           |   1 -
 srcpkgs/perl-Time-modules/template            |   1 -
 srcpkgs/perl-TimeDate/template                |   1 -
 srcpkgs/perl-Tree-DAG_Node/template           |   1 -
 srcpkgs/perl-Try-Tiny/template                |   1 -
 srcpkgs/perl-Types-Serialiser/template        |   1 -
 srcpkgs/perl-URI/template                     |   1 -
 srcpkgs/perl-Unicode-Tussle/template          |   1 -
 srcpkgs/perl-Unix-Uptime/template             |   1 -
 srcpkgs/perl-User-Identity/template           |   1 -
 srcpkgs/perl-WL/template                      |   1 -
 srcpkgs/perl-WWW-Form-UrlEncoded/template     |   1 -
 srcpkgs/perl-WWW-Mechanize/template           |   1 -
 srcpkgs/perl-WWW-RobotRules/template          |   1 -
 srcpkgs/perl-WebService-MusicBrainz/template  |   1 -
 srcpkgs/perl-X11-Protocol-Other/template      |   1 -
 srcpkgs/perl-X11-Protocol/template            |   1 -
 srcpkgs/perl-XML-LibXML-PrettyPrint/template  |   1 -
 srcpkgs/perl-XML-LibXML-Simple/template       |   1 -
 srcpkgs/perl-XML-NamespaceSupport/template    |   1 -
 srcpkgs/perl-XML-Parser-Lite/template         |   1 -
 srcpkgs/perl-XML-SAX-Base/template            |   1 -
 srcpkgs/perl-XML-SAX/template                 |   1 -
 srcpkgs/perl-XML-Simple/template              |   1 -
 srcpkgs/perl-XML-Smart/template               |   1 -
 srcpkgs/perl-XML-Twig/template                |   1 -
 srcpkgs/perl-XML-Writer/template              |   1 -
 srcpkgs/perl-XML-XPath/template               |   1 -
 srcpkgs/perl-YAML-Tiny/template               |   1 -
 srcpkgs/perl-YAML/template                    |   1 -
 srcpkgs/perl-common-sense/template            |   1 -
 srcpkgs/perl-local-lib/template               |   1 -
 srcpkgs/perl-namespace-autoclean/template     |   1 -
 srcpkgs/perl-namespace-clean/template         |   1 -
 srcpkgs/perl-rename/template                  |   1 -
 srcpkgs/perl-strictures/template              |   1 -
 srcpkgs/perl-tainting/template                |   1 -
 srcpkgs/perltidy/template                     |   1 -
 srcpkgs/persepolis/template                   |   1 -
 srcpkgs/peru/template                         |   1 -
 srcpkgs/pex/template                          |   1 -
 srcpkgs/pfetch/template                       |   1 -
 srcpkgs/pgcli/template                        |   1 -
 srcpkgs/phoronix-test-suite/template          |   1 -
 srcpkgs/phpMyAdmin/template                   |   1 -
 srcpkgs/picard/template                       |   1 -
 srcpkgs/pingus/template                       |   1 -
 srcpkgs/pioneer/template                      |   1 -
 srcpkgs/piper/template                        |   1 -
 srcpkgs/pipewire/template                     |   1 -
 srcpkgs/plantuml/template                     |   1 -
 srcpkgs/plasma-workspace-wallpapers/template  |   1 -
 srcpkgs/plata-theme/template                  |   1 -
 srcpkgs/platformio/template                   |   1 -
 srcpkgs/playitslowly/template                 |   1 -
 srcpkgs/plymouth/template                     |   1 -
 srcpkgs/pmbootstrap/template                  |   1 -
 srcpkgs/po4a/template                         |   1 -
 srcpkgs/pockyt/template                       |   1 -
 srcpkgs/podman-compose/template               |   1 -
 srcpkgs/polysh/template                       |   1 -
 srcpkgs/pony-stable/template                  |   1 -
 srcpkgs/ponyc/template                        |   1 -
 srcpkgs/ponysay/template                      |   1 -
 srcpkgs/poppler-data/template                 |   1 -
 srcpkgs/postgresql/template                   |   1 -
 srcpkgs/postgresql12/template                 |   1 -
 srcpkgs/printrun/template                     |   1 -
 srcpkgs/pritunl-client/template               |   1 -
 srcpkgs/profile-cleaner/template              |   1 -
 srcpkgs/protonvpn-cli/template                |   1 -
 srcpkgs/pslist/template                       |   1 -
 srcpkgs/psuinfo/template                      |   1 -
 srcpkgs/public-inbox/template                 |   1 -
 srcpkgs/pulsemixer/template                   |   1 -
 srcpkgs/puppet/template                       |   1 -
 srcpkgs/py3status/template                    |   1 -
 srcpkgs/pychess/template                      |   1 -
 srcpkgs/pycp/template                         |   1 -
 srcpkgs/pylint/template                       |   1 -
 srcpkgs/pyradio/template                      |   1 -
 srcpkgs/pysolfc-cardsets/template             |   1 -
 srcpkgs/pysolfc/template                      |   1 -
 srcpkgs/pystopwatch/template                  |   1 -
 srcpkgs/python-Arrow/template                 |   2 -
 srcpkgs/python-Babel/template                 |   2 -
 srcpkgs/python-BeautifulSoup4/template        |   2 -
 srcpkgs/python-Cheroot/template               |   2 -
 srcpkgs/python-CherryPy/template              |   1 -
 srcpkgs/python-Django/template                |   1 -
 srcpkgs/python-Flask-Assets/template          |   2 -
 srcpkgs/python-Flask-Babel/template           |   2 -
 srcpkgs/python-Flask-Login/template           |   2 -
 srcpkgs/python-Flask-OAuthlib/template        |   2 -
 srcpkgs/python-Flask-Script/template          |   2 -
 srcpkgs/python-Flask-WTF/template             |   2 -
 srcpkgs/python-Flask/template                 |   2 -
 srcpkgs/python-GitPython/template             |   2 -
 srcpkgs/python-IPy/template                   |   2 -
 srcpkgs/python-Jinja2/template                |   2 -
 srcpkgs/python-Mako/template                  |   2 -
 srcpkgs/python-Markdown/template              |   1 -
 srcpkgs/python-Markups/template               |   2 -
 srcpkgs/python-MiniMock/template              |   2 -
 srcpkgs/python-PyHamcrest/template            |   2 -
 srcpkgs/python-PyOpenGL/template              |   2 -
 srcpkgs/python-Pygments/template              |   2 -
 srcpkgs/python-Pyro4/template                 |   2 -
 srcpkgs/python-SPARQLWrapper/template         |   2 -
 srcpkgs/python-Unidecode/template             |   2 -
 srcpkgs/python-WTForms/template               |   2 -
 srcpkgs/python-Werkzeug/template              |   2 -
 srcpkgs/python-Whoosh/template                |   2 -
 srcpkgs/python-Yapsy/template                 |   2 -
 srcpkgs/python-aalib/template                 |   2 -
 srcpkgs/python-alabaster/template             |   2 -
 srcpkgs/python-alembic/template               |   2 -
 srcpkgs/python-ansicolor/template             |   2 -
 srcpkgs/python-appdirs/template               |   2 -
 srcpkgs/python-argh/template                  |   2 -
 srcpkgs/python-arxiv2bib/template             |   2 -
 srcpkgs/python-asn1crypto/template            |   2 -
 srcpkgs/python-astroid/template               |   1 -
 srcpkgs/python-atomicwrites/template          |   2 -
 srcpkgs/python-atspi/template                 |   1 -
 srcpkgs/python-attrs/template                 |   2 -
 srcpkgs/python-audioread/template             |   2 -
 srcpkgs/python-automat/template               |   2 -
 srcpkgs/python-axolotl/template               |   2 -
 srcpkgs/python-b2sdk/template                 |   1 -
 srcpkgs/python-babelfish/template             |   2 -
 srcpkgs/python-backcall/template              |   2 -
 .../python-backports.configparser/template    |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 srcpkgs/python-backports/template             |   1 -
 srcpkgs/python-backports_abc/template         |   1 -
 srcpkgs/python-bibtexparser/template          |   2 -
 srcpkgs/python-bitbucket-api/template         |   2 -
 srcpkgs/python-bleach/template                |   2 -
 srcpkgs/python-blessings/template             |   2 -
 srcpkgs/python-blinker/template               |   2 -
 srcpkgs/python-boto/template                  |   2 -
 srcpkgs/python-botocore/template              |   2 -
 srcpkgs/python-bottle/template                |   2 -
 srcpkgs/python-cached-property/template       |   2 -
 srcpkgs/python-cairocffi/template             |   2 -
 srcpkgs/python-chardet/template               |   2 -
 srcpkgs/python-chroot/template                |   2 -
 srcpkgs/python-cliapp/template                |   1 -
 srcpkgs/python-click-log/template             |   2 -
 srcpkgs/python-click-threading/template       |   2 -
 srcpkgs/python-click/template                 |   2 -
 srcpkgs/python-codespell/template             |   2 -
 srcpkgs/python-colorama/template              |   2 -
 srcpkgs/python-configobj/template             |   2 -
 srcpkgs/python-constantly/template            |   2 -
 srcpkgs/python-construct/template             |   2 -
 srcpkgs/python-contextlib2/template           |   1 -
 srcpkgs/python-cram/template                  |   2 -
 srcpkgs/python-cryptography_vectors/template  |   1 -
 srcpkgs/python-css-parser/template            |   2 -
 srcpkgs/python-cssselect/template             |   2 -
 srcpkgs/python-cssutils/template              |   2 -
 srcpkgs/python-curtsies/template              |   2 -
 srcpkgs/python-cycler/template                |   2 -
 srcpkgs/python-daemonize/template             |   2 -
 srcpkgs/python-dateutil/template              |   2 -
 srcpkgs/python-decorator/template             |   2 -
 srcpkgs/python-defusedxml/template            |   2 -
 srcpkgs/python-discogs_client/template        |   2 -
 srcpkgs/python-distutils-extra/template       |   2 -
 srcpkgs/python-dnspython/template             |   2 -
 srcpkgs/python-docker-pycreds/template        |   2 -
 srcpkgs/python-docker/template                |   2 -
 srcpkgs/python-dockerpty/template             |   2 -
 srcpkgs/python-docopt/template                |   2 -
 srcpkgs/python-docutils/template              |   2 -
 srcpkgs/python-dogpile.cache/template         |   2 -
 srcpkgs/python-dominate/template              |   2 -
 srcpkgs/python-ecdsa/template                 |   2 -
 srcpkgs/python-editor/template                |   2 -
 srcpkgs/python-empy/template                  |   2 -
 srcpkgs/python-enchant/template               |   1 -
 srcpkgs/python-entrypoints/template           |   2 -
 srcpkgs/python-enum34/template                |   1 -
 srcpkgs/python-envdir/template                |   2 -
 srcpkgs/python-enzyme/template                |   2 -
 srcpkgs/python-ewmh/template                  |   2 -
 srcpkgs/python-exifread/template              |   2 -
 srcpkgs/python-fasteners/template             |   2 -
 srcpkgs/python-feedgenerator/template         |   2 -
 srcpkgs/python-feedparser/template            |   2 -
 srcpkgs/python-filetype/template              |   2 -
 srcpkgs/python-flaky/template                 |   2 -
 srcpkgs/python-funcsigs/template              |   1 -
 srcpkgs/python-functools32/template           |   1 -
 srcpkgs/python-future/template                |   2 -
 srcpkgs/python-futures/template               |   1 -
 srcpkgs/python-gitdb/template                 |   2 -
 srcpkgs/python-github3/template               |   2 -
 srcpkgs/python-gitlab/template                |   2 -
 srcpkgs/python-gntp/template                  |   2 -
 srcpkgs/python-gnupg/template                 |   2 -
 srcpkgs/python-gogs-client/template           |   2 -
 srcpkgs/python-guessit/template               |   2 -
 srcpkgs/python-h11/template                   |   2 -
 srcpkgs/python-habanero/template              |   2 -
 srcpkgs/python-hpack/template                 |   2 -
 srcpkgs/python-html2text/template             |   1 -
 srcpkgs/python-html5lib/template              |   2 -
 srcpkgs/python-httmock/template               |   2 -
 srcpkgs/python-httplib2/template              |   2 -
 srcpkgs/python-hyper-h2/template              |   2 -
 srcpkgs/python-hyperframe/template            |   2 -
 srcpkgs/python-hyperlink/template             |   2 -
 srcpkgs/python-hypothesis/template            |   2 -
 srcpkgs/python-icalendar/template             |   2 -
 srcpkgs/python-idna/template                  |   2 -
 srcpkgs/python-imagesize/template             |   2 -
 srcpkgs/python-importlib_metadata/template    |   1 -
 srcpkgs/python-incremental/template           |   2 -
 srcpkgs/python-inotify/template               |   2 -
 srcpkgs/python-ipaddr/template                |   1 -
 srcpkgs/python-ipaddress/template             |   1 -
 srcpkgs/python-iptools/template               |   2 -
 srcpkgs/python-isbnlib/template               |   2 -
 srcpkgs/python-iso-8601/template              |   1 -
 srcpkgs/python-isodate/template               |   2 -
 srcpkgs/python-isort/template                 |   2 -
 srcpkgs/python-itsdangerous/template          |   2 -
 srcpkgs/python-jaraco.functools/template      |   1 -
 srcpkgs/python-jedi/template                  |   2 -
 srcpkgs/python-jmespath/template              |   2 -
 srcpkgs/python-jsonpointer/template           |   2 -
 srcpkgs/python-jsonrpclib/template            |   2 -
 srcpkgs/python-jsonschema/template            |   2 -
 srcpkgs/python-kaptan/template                |   2 -
 srcpkgs/python-keepalive/template             |   2 -
 srcpkgs/python-kitchen/template               |   2 -
 srcpkgs/python-larch/template                 |   1 -
 srcpkgs/python-ldap3/template                 |   2 -
 srcpkgs/python-libtmux/template               |   2 -
 srcpkgs/python-lockfile/template              |   2 -
 srcpkgs/python-logfury/template               |   2 -
 srcpkgs/python-magic/template                 |   2 -
 srcpkgs/python-markdown2/template             |   2 -
 srcpkgs/python-matplotlib/template            |   1 -
 srcpkgs/python-mccabe/template                |   2 -
 srcpkgs/python-mechanize/template             |   2 -
 srcpkgs/python-mistune/template               |   2 -
 srcpkgs/python-mock/template                  |   1 -
 srcpkgs/python-monotonic/template             |   1 -
 srcpkgs/python-more-itertools/template        |   1 -
 srcpkgs/python-mpd2/template                  |   2 -
 srcpkgs/python-mpmath/template                |   2 -
 srcpkgs/python-msp430-tools/template          |   1 -
 srcpkgs/python-mtranslate/template            |   2 -
 srcpkgs/python-munkres/template               |   1 -
 srcpkgs/python-musicbrainzngs/template        |   2 -
 srcpkgs/python-mygpoclient/template           |   2 -
 srcpkgs/python-namedlist/template             |   2 -
 srcpkgs/python-natsort/template               |   2 -
 srcpkgs/python-ndg_httpsclient/template       |   2 -
 srcpkgs/python-netaddr/template               |   2 -
 srcpkgs/python-nose/template                  |   2 -
 srcpkgs/python-nose2/template                 |   2 -
 srcpkgs/python-npyscreen/template             |   2 -
 srcpkgs/python-ntplib/template                |   2 -
 srcpkgs/python-oauth2client/template          |   2 -
 srcpkgs/python-oauthlib/template              |   2 -
 srcpkgs/python-olefile/template               |   2 -
 srcpkgs/python-openssl/template               |   2 -
 srcpkgs/python-packaging/template             |   2 -
 srcpkgs/python-pam/template                   |   2 -
 srcpkgs/python-pandocfilters/template         |   2 -
 srcpkgs/python-paramiko/template              |   2 -
 srcpkgs/python-parse/template                 |   2 -
 srcpkgs/python-parsing/template               |   2 -
 srcpkgs/python-parso/template                 |   1 -
 srcpkgs/python-passlib/template               |   2 -
 srcpkgs/python-pathlib/template               |   1 -
 srcpkgs/python-pathlib2/template              |   2 -
 srcpkgs/python-pathspec/template              |   2 -
 srcpkgs/python-pathtools/template             |   2 -
 srcpkgs/python-pbkdf2/template                |   2 -
 srcpkgs/python-pbr/template                   |   2 -
 srcpkgs/python-pdfrw/template                 |   2 -
 srcpkgs/python-pexpect/template               |   2 -
 srcpkgs/python-pgmigrate/template             |   2 -
 srcpkgs/python-pgpdump/template               |   2 -
 srcpkgs/python-picamera/template              |   2 -
 srcpkgs/python-pickleshare/template           |   2 -
 srcpkgs/python-pip/template                   |   2 -
 srcpkgs/python-pipenv/template                |   2 -
 srcpkgs/python-pkgconfig/template             |   2 -
 srcpkgs/python-pluggy/template                |   1 -
 srcpkgs/python-ply/template                   |   2 -
 srcpkgs/python-podcastparser/template         |   2 -
 srcpkgs/python-polib/template                 |   2 -
 srcpkgs/python-portend/template               |   2 -
 srcpkgs/python-pretend/template               |   1 -
 srcpkgs/python-progress/template              |   2 -
 srcpkgs/python-prometheus_client/template     |   2 -
 srcpkgs/python-prompt_toolkit1/template       |   1 -
 srcpkgs/python-prompt_toolkit2/template       |   1 -
 srcpkgs/python-proselint/template             |   2 -
 srcpkgs/python-protobuf/template              |   2 -
 srcpkgs/python-ptyprocess/template            |   2 -
 srcpkgs/python-py/template                    |   2 -
 srcpkgs/python-pyPEG2/template                |   2 -
 srcpkgs/python-pyacoustid/template            |   2 -
 srcpkgs/python-pyaes/template                 |   2 -
 srcpkgs/python-pyasn1-modules/template        |   2 -
 srcpkgs/python-pyasn1/template                |   2 -
 srcpkgs/python-pycodestyle/template           |   2 -
 srcpkgs/python-pycountry/template             |   2 -
 srcpkgs/python-pycparser/template             |   2 -
 srcpkgs/python-pydns/template                 |   1 -
 srcpkgs/python-pyelftools/template            |   2 -
 srcpkgs/python-pyflakes/template              |   2 -
 srcpkgs/python-pyglet/template                |   2 -
 srcpkgs/python-pykka/template                 |   2 -
 srcpkgs/python-pyotp/template                 |   2 -
 srcpkgs/python-pypcapfile/template            |   1 -
 srcpkgs/python-pyperclip/template             |   2 -
 srcpkgs/python-pyqtgraph/template             |   2 -
 srcpkgs/python-pyrfc3339/template             |   2 -
 srcpkgs/python-pyserial/template              |   2 -
 srcpkgs/python-pysocks/template               |   2 -
 srcpkgs/python-pysrt/template                 |   2 -
 srcpkgs/python-pystache/template              |   2 -
 srcpkgs/python-pyte/template                  |   2 -
 srcpkgs/python-pytest-fixture-config/template |   2 -
 srcpkgs/python-pytest-mock/template           |   2 -
 srcpkgs/python-pytest/template                |   1 -
 srcpkgs/python-pytz/template                  |   2 -
 srcpkgs/python-pyudev/template                |   2 -
 srcpkgs/python-pyx/template                   |   1 -
 srcpkgs/python-pyzbar/template                |   2 -
 srcpkgs/python-qrcode/template                |   2 -
 srcpkgs/python-random2/template               |   2 -
 srcpkgs/python-rarfile/template               |   2 -
 srcpkgs/python-raven/template                 |   2 -
 srcpkgs/python-rdflib/template                |   2 -
 srcpkgs/python-readability-lxml/template      |   2 -
 srcpkgs/python-rebulk/template                |   2 -
 srcpkgs/python-redis/template                 |   2 -
 srcpkgs/python-requests-mock/template         |   2 -
 srcpkgs/python-requests-oauthlib/template     |   2 -
 srcpkgs/python-requests-toolbelt/template     |   2 -
 srcpkgs/python-requests/template              |   2 -
 srcpkgs/python-rfc6555/template               |   2 -
 srcpkgs/python-ripe-atlas-cousteau/template   |   2 -
 srcpkgs/python-ripe-atlas-sagan/template      |   2 -
 srcpkgs/python-rsa/template                   |   2 -
 srcpkgs/python-s3transfer/template            |   2 -
 srcpkgs/python-scour/template                 |   2 -
 srcpkgs/python-selectors2/template            |   1 -
 srcpkgs/python-send2trash/template            |   2 -
 srcpkgs/python-serpent/template               |   1 -
 srcpkgs/python-service_identity/template      |   2 -
 srcpkgs/python-setuptools/template            |   1 -
 srcpkgs/python-sh/template                    |   2 -
 srcpkgs/python-simplebayes/template           |   2 -
 srcpkgs/python-simplegeneric/template         |   2 -
 srcpkgs/python-singledispatch/template        |   1 -
 srcpkgs/python-six/template                   |   2 -
 srcpkgs/python-smmap/template                 |   2 -
 srcpkgs/python-snowballstemmer/template       |   2 -
 srcpkgs/python-socketIO-client/template       |   2 -
 srcpkgs/python-soupsieve/template             |   2 -
 srcpkgs/python-spambayes/template             |   1 -
 srcpkgs/python-sqlalchemy-migrate/template    |   2 -
 srcpkgs/python-sqlparse/template              |   2 -
 srcpkgs/python-stem/template                  |   2 -
 srcpkgs/python-stevedore/template             |   2 -
 srcpkgs/python-stormssh/template              |   2 -
 srcpkgs/python-subliminal/template            |   2 -
 srcpkgs/python-tempita/template               |   2 -
 srcpkgs/python-tempora/template               |   2 -
 srcpkgs/python-termcolor/template             |   2 -
 srcpkgs/python-terminado/template             |   2 -
 srcpkgs/python-testpath/template              |   2 -
 srcpkgs/python-texttable/template             |   2 -
 srcpkgs/python-tkinter/template               |   1 -
 srcpkgs/python-tmuxp/template                 |   2 -
 srcpkgs/python-toml/template                  |   2 -
 srcpkgs/python-tqdm/template                  |   2 -
 srcpkgs/python-tracing/template               |   1 -
 srcpkgs/python-ttystatus/template             |   2 -
 srcpkgs/python-tweepy/template                |   2 -
 srcpkgs/python-twitter/template               |   2 -
 srcpkgs/python-txgithub/template              |   1 -
 srcpkgs/python-typing/template                |   1 -
 srcpkgs/python-unittest-mixins/template       |   2 -
 srcpkgs/python-urbandict/template             |   2 -
 srcpkgs/python-uritemplate/template           |   2 -
 srcpkgs/python-urllib3/template               |   2 -
 srcpkgs/python-urlnorm/template               |   1 -
 srcpkgs/python-urwidtrees/template            |   2 -
 srcpkgs/python-utils/template                 |   2 -
 srcpkgs/python-vint/template                  |   2 -
 srcpkgs/python-vispy/template                 |   1 -
 srcpkgs/python-vobject/template               |   2 -
 srcpkgs/python-voluptuous/template            |   1 -
 srcpkgs/python-watchdog/template              |   2 -
 srcpkgs/python-wcwidth/template               |   2 -
 srcpkgs/python-webassets/template             |   2 -
 srcpkgs/python-webencodings/template          |   2 -
 srcpkgs/python-websocket-client/template      |   2 -
 srcpkgs/python-wheel/template                 |   2 -
 srcpkgs/python-wikipedia/template             |   2 -
 srcpkgs/python-wsproto/template               |   2 -
 srcpkgs/python-xdg/template                   |   2 -
 srcpkgs/python-xlib/template                  |   2 -
 srcpkgs/python-xmldiff/template               |   3 -
 srcpkgs/python-xmltodict/template             |   2 -
 srcpkgs/python-yamllint/template              |   2 -
 srcpkgs/python-zc.lockfile/template           |   2 -
 srcpkgs/python-zipp/template                  |   1 -
 srcpkgs/python-zipstream/template             |   2 -
 srcpkgs/python3-3to2/template                 |   1 -
 srcpkgs/python3-CherryPy/template             |   1 -
 srcpkgs/python3-ConfigArgParse/template       |   1 -
 srcpkgs/python3-Django/template               |   1 -
 srcpkgs/python3-EasyProcess/template          |   1 -
 srcpkgs/python3-Flask-Mail/template           |   1 -
 srcpkgs/python3-Flask-RESTful/template        |   1 -
 srcpkgs/python3-Flask-SQLAlchemy/template     |   1 -
 srcpkgs/python3-Flask-User/template           |   1 -
 srcpkgs/python3-Inflector/template            |   1 -
 srcpkgs/python3-Markdown/template             |   1 -
 srcpkgs/python3-MechanicalSoup/template       |   1 -
 srcpkgs/python3-Pebble/template               |   1 -
 srcpkgs/python3-PyBrowserID/template          |   1 -
 srcpkgs/python3-PyFxA/template                |   1 -
 srcpkgs/python3-PyPDF2/template               |   1 -
 srcpkgs/python3-PyVirtualDisplay/template     |   1 -
 srcpkgs/python3-QtPy/template                 |   1 -
 srcpkgs/python3-ReParser/template             |   1 -
 srcpkgs/python3-Ropper/template               |   1 -
 srcpkgs/python3-SecretStorage/template        |   1 -
 srcpkgs/python3-SoCo/template                 |   1 -
 srcpkgs/python3-Sphinx/template               |   1 -
 srcpkgs/python3-Telethon/template             |   1 -
 srcpkgs/python3-TxSNI/template                |   1 -
 srcpkgs/python3-WebOb/template                |   1 -
 srcpkgs/python3-XlsxWriter/template           |   1 -
 srcpkgs/python3-acme/template                 |   1 -
 srcpkgs/python3-aioamqp/template              |   1 -
 srcpkgs/python3-aiodns/template               |   1 -
 srcpkgs/python3-aiofiles/template             |   1 -
 srcpkgs/python3-aiohttp-cors/template         |   1 -
 srcpkgs/python3-aiohttp-cors2/template        |   1 -
 srcpkgs/python3-aiohttp-sse-client/template   |   1 -
 srcpkgs/python3-aiohttp_socks/template        |   1 -
 srcpkgs/python3-aioinflux/template            |   1 -
 srcpkgs/python3-aionotify/template            |   1 -
 srcpkgs/python3-aioredis/template             |   1 -
 srcpkgs/python3-aiorpcx/template              |   1 -
 srcpkgs/python3-altgraph/template             |   1 -
 srcpkgs/python3-aniso8601/template            |   1 -
 srcpkgs/python3-ansible-lint/template         |   1 -
 srcpkgs/python3-anytree/template              |   1 -
 srcpkgs/python3-applib/template               |   1 -
 srcpkgs/python3-argcomplete/template          |   1 -
 srcpkgs/python3-astral/template               |   1 -
 srcpkgs/python3-astroid/template              |   1 -
 srcpkgs/python3-async-timeout/template        |   1 -
 srcpkgs/python3-async_generator/template      |   1 -
 srcpkgs/python3-atspi/template                |   1 -
 srcpkgs/python3-authres/template              |   1 -
 srcpkgs/python3-autobahn/template             |   1 -
 srcpkgs/python3-blessed/template              |   1 -
 srcpkgs/python3-bokeh/template                |   1 -
 srcpkgs/python3-boltons/template              |   1 -
 srcpkgs/python3-boto3/template                |   1 -
 srcpkgs/python3-breathe/template              |   1 -
 srcpkgs/python3-cachetools/template           |   1 -
 srcpkgs/python3-canonicaljson/template        |   1 -
 srcpkgs/python3-casttube/template             |   1 -
 srcpkgs/python3-certifi/template              |   1 -
 srcpkgs/python3-changelogs/template           |   1 -
 srcpkgs/python3-chess/template                |   1 -
 srcpkgs/python3-chromecast/template           |   1 -
 srcpkgs/python3-cjkwrap/template              |   1 -
 srcpkgs/python3-cli-ui/template               |   1 -
 srcpkgs/python3-cli_helpers/template          |   1 -
 srcpkgs/python3-click-plugins/template        |   1 -
 srcpkgs/python3-cloudscraper/template         |   1 -
 srcpkgs/python3-cmdln/template                |   1 -
 srcpkgs/python3-colorclass/template           |   1 -
 srcpkgs/python3-crccheck/template             |   1 -
 srcpkgs/python3-dateparser/template           |   1 -
 srcpkgs/python3-dbusmock/template             |   1 -
 srcpkgs/python3-deprecation/template          |   1 -
 srcpkgs/python3-discid/template               |   1 -
 srcpkgs/python3-distlib/template              |   1 -
 srcpkgs/python3-dkimpy/template               |   2 -
 srcpkgs/python3-doi/template                  |   1 -
 srcpkgs/python3-dpkt/template                 |   1 -
 srcpkgs/python3-easygui/template              |   1 -
 srcpkgs/python3-elementpath/template          |   1 -
 srcpkgs/python3-eliot/template                |   1 -
 srcpkgs/python3-enchant/template              |   1 -
 srcpkgs/python3-etesync/template              |   1 -
 srcpkgs/python3-ffmpeg-python/template        |   1 -
 srcpkgs/python3-fido2/template                |   1 -
 srcpkgs/python3-filebytes/template            |   1 -
 srcpkgs/python3-fishnet/template              |   1 -
 srcpkgs/python3-flexmock/template             |   1 -
 srcpkgs/python3-freezegun/template            |   1 -
 srcpkgs/python3-frozendict/template           |   1 -
 srcpkgs/python3-furl/template                 |   1 -
 srcpkgs/python3-geojson/template              |   1 -
 srcpkgs/python3-gitchangelog/template         |   1 -
 srcpkgs/python3-google-api-core/template      |   1 -
 .../python3-google-api-python-client/template |   1 -
 srcpkgs/python3-google-auth-httplib2/template |   1 -
 srcpkgs/python3-google-auth/template          |   1 -
 .../python3-googleapis-common-protos/template |   1 -
 srcpkgs/python3-graphviz/template             |   1 -
 srcpkgs/python3-hawkauthlib/template          |   1 -
 srcpkgs/python3-hjson/template                |   1 -
 srcpkgs/python3-hkdf/template                 |   1 -
 srcpkgs/python3-html2text/template            |   1 -
 srcpkgs/python3-humanize/template             |   1 -
 srcpkgs/python3-hypercorn/template            |   1 -
 srcpkgs/python3-i3ipc/template                |   1 -
 srcpkgs/python3-idna-ssl/template             |   1 -
 srcpkgs/python3-ifaddr/template               |   1 -
 srcpkgs/python3-influxdb/template             |   1 -
 srcpkgs/python3-ipython/template              |   1 -
 srcpkgs/python3-ipython_genutils/template     |   1 -
 srcpkgs/python3-ipython_ipykernel/template    |   1 -
 srcpkgs/python3-irc/template                  |   1 -
 srcpkgs/python3-itunespy/template             |   1 -
 srcpkgs/python3-janus/template                |   1 -
 srcpkgs/python3-jaraco.classes/template       |   1 -
 srcpkgs/python3-jaraco.collections/template   |   1 -
 srcpkgs/python3-jaraco.functools/template     |   1 -
 srcpkgs/python3-jaraco.text/template          |   1 -
 srcpkgs/python3-jaraco/template               |   1 -
 srcpkgs/python3-jeepney/template              |   1 -
 srcpkgs/python3-josepy/template               |   1 -
 srcpkgs/python3-jsondiff/template             |   1 -
 srcpkgs/python3-jsonrpc-server/template       |   1 -
 srcpkgs/python3-jupyter_client/template       |   1 -
 srcpkgs/python3-jupyter_console/template      |   1 -
 srcpkgs/python3-jupyter_core/template         |   2 -
 srcpkgs/python3-jupyter_ipywidgets/template   |   1 -
 srcpkgs/python3-jupyter_nbconvert/template    |   1 -
 srcpkgs/python3-jupyter_nbformat/template     |   1 -
 srcpkgs/python3-jupyter_notebook/template     |   1 -
 srcpkgs/python3-jupyter_qtconsole/template    |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-keyring/template              |   1 -
 srcpkgs/python3-keyrings-alt/template         |   1 -
 srcpkgs/python3-language-server/template      |   1 -
 srcpkgs/python3-macaroons/template            |   1 -
 srcpkgs/python3-macholib/template             |   1 -
 srcpkgs/python3-markdown-math/template        |   1 -
 srcpkgs/python3-marshmallow/template          |   1 -
 srcpkgs/python3-matplotlib/template           |   1 -
 srcpkgs/python3-matrix-nio/template           |   1 -
 srcpkgs/python3-minidb/template               |   1 -
 srcpkgs/python3-mock/template                 |   1 -
 srcpkgs/python3-more-itertools/template       |   1 -
 srcpkgs/python3-mpv/template                  |   1 -
 srcpkgs/python3-msoffcrypto-tool/template     |   1 -
 srcpkgs/python3-munkres/template              |   1 -
 srcpkgs/python3-musicpd/template              |   1 -
 srcpkgs/python3-mypy/template                 |   1 -
 srcpkgs/python3-mypy_extensions/template      |   1 -
 srcpkgs/python3-nbxmpp/template               |   2 -
 srcpkgs/python3-neovim/template               |   1 -
 srcpkgs/python3-networkx/template             |   1 -
 srcpkgs/python3-nose-random/template          |   1 -
 srcpkgs/python3-notify2/template              |   1 -
 srcpkgs/python3-ntlm-auth/template            |   1 -
 srcpkgs/python3-oletools/template             |   1 -
 srcpkgs/python3-opcua/template                |   1 -
 srcpkgs/python3-orderedmultidict/template     |   1 -
 srcpkgs/python3-pafy/template                 |   1 -
 srcpkgs/python3-pamqp/template                |   1 -
 srcpkgs/python3-parsedatetime/template        |   1 -
 srcpkgs/python3-parso/template                |   1 -
 srcpkgs/python3-path-and-address/template     |   1 -
 srcpkgs/python3-pcodedmp/template             |   1 -
 srcpkgs/python3-pefile/template               |   1 -
 srcpkgs/python3-pem/template                  |   1 -
 srcpkgs/python3-perf/template                 |   1 -
 srcpkgs/python3-pgspecial/template            |   1 -
 srcpkgs/python3-pgzero/template               |   1 -
 srcpkgs/python3-phonenumbers/template         |   1 -
 srcpkgs/python3-pipx/template                 |   1 -
 srcpkgs/python3-pkginfo/template              |   1 -
 srcpkgs/python3-plotly/template               |   1 -
 srcpkgs/python3-pluggy/template               |   1 -
 srcpkgs/python3-pmw/template                  |   1 -
 srcpkgs/python3-precis-i18n/template          |   1 -
 srcpkgs/python3-priority/template             |   1 -
 srcpkgs/python3-prompt_toolkit/template       |   1 -
 srcpkgs/python3-pulsectl/template             |   1 -
 srcpkgs/python3-pure-protobuf/template        |   1 -
 srcpkgs/python3-py-cpuinfo/template           |   1 -
 srcpkgs/python3-pybind11/template             |   1 -
 srcpkgs/python3-pydbus/template               |   1 -
 srcpkgs/python3-pyfiglet/template             |   1 -
 srcpkgs/python3-pyinfra/template              |   1 -
 srcpkgs/python3-pykeepass/template            |   1 -
 srcpkgs/python3-pykwalify/template            |   1 -
 srcpkgs/python3-pylast/template               |   1 -
 srcpkgs/python3-pylibgen/template             |   1 -
 srcpkgs/python3-pylru/template                |   1 -
 srcpkgs/python3-pysdl2/template               |   1 -
 srcpkgs/python3-pyside2/template              |   4 -
 srcpkgs/python3-pysigset/template             |   1 -
 srcpkgs/python3-pytest-asyncio/template       |   1 -
 srcpkgs/python3-pytest-cov/template           |   1 -
 srcpkgs/python3-pytest-qt/template            |   1 -
 srcpkgs/python3-pytest-xvfb/template          |   1 -
 srcpkgs/python3-pytest/template               |   1 -
 srcpkgs/python3-pythondialog/template         |   1 -
 srcpkgs/python3-pytools/template              |   1 -
 srcpkgs/python3-pywinrm/template              |   1 -
 srcpkgs/python3-pyx/template                  |   1 -
 srcpkgs/python3-quart/template                |   1 -
 srcpkgs/python3-readlike/template             |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-requests-file/template        |   1 -
 srcpkgs/python3-requests-ntlm/template        |   1 -
 srcpkgs/python3-requests-unixsocket/template  |   1 -
 srcpkgs/python3-rss2email/template            |   1 -
 srcpkgs/python3-s-tui/template                |   1 -
 srcpkgs/python3-saml2/template                |   1 -
 srcpkgs/python3-scruffy/template              |   1 -
 srcpkgs/python3-semanticversion/template      |   1 -
 srcpkgs/python3-sentry/template               |   1 -
 srcpkgs/python3-serpent/template              |   1 -
 srcpkgs/python3-setuptools/template           |   1 -
 srcpkgs/python3-shodan/template               |   1 -
 srcpkgs/python3-signedjson/template           |   1 -
 srcpkgs/python3-slugify/template              |   1 -
 srcpkgs/python3-sortedcontainers/template     |   1 -
 srcpkgs/python3-spake2/template               |   1 -
 srcpkgs/python3-sphinx_rtd_theme/template     |   1 -
 .../python3-sphinxcontrib-applehelp/template  |   1 -
 .../python3-sphinxcontrib-devhelp/template    |   1 -
 .../python3-sphinxcontrib-htmlhelp/template   |   1 -
 srcpkgs/python3-sphinxcontrib-jsmath/template |   1 -
 srcpkgs/python3-sphinxcontrib-qthelp/template |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-sphinxcontrib/template        |   1 -
 srcpkgs/python3-subunit/template              |   1 -
 srcpkgs/python3-sympy/template                |   1 -
 srcpkgs/python3-tabulate/template             |   1 -
 srcpkgs/python3-terminaltables/template       |   1 -
 srcpkgs/python3-text-unidecode/template       |   1 -
 srcpkgs/python3-tinycss/template              |   1 -
 srcpkgs/python3-tkinter/template              |   1 -
 srcpkgs/python3-tldextract/template           |   1 -
 srcpkgs/python3-traitlets/template            |   1 -
 srcpkgs/python3-transifex-client/template     |   1 -
 srcpkgs/python3-treq/template                 |   1 -
 srcpkgs/python3-trimesh/template              |   1 -
 srcpkgs/python3-txacme/template               |   1 -
 srcpkgs/python3-txaio/template                |   1 -
 srcpkgs/python3-txtorcon/template             |   1 -
 srcpkgs/python3-typing_extensions/template    |   1 -
 srcpkgs/python3-tzlocal/template              |   1 -
 srcpkgs/python3-unpaddedbase64/template       |   1 -
 srcpkgs/python3-urlgrabber/template           |   1 -
 srcpkgs/python3-usb/template                  |   1 -
 srcpkgs/python3-userpath/template             |   1 -
 srcpkgs/python3-validators/template           |   1 -
 srcpkgs/python3-virtualenv-clone/template     |   1 -
 srcpkgs/python3-virtualenv/template           |   1 -
 srcpkgs/python3-virustotal-api/template       |   1 -
 srcpkgs/python3-xapp/template                 |   1 -
 srcpkgs/python3-xdg-variables/template        |   1 -
 srcpkgs/python3-xlrd/template                 |   1 -
 srcpkgs/python3-xmlschema/template            |   1 -
 srcpkgs/python3-yapf/template                 |   1 -
 srcpkgs/python3-youtube-search/template       |   1 -
 srcpkgs/python3-zeroconf/template             |   1 -
 .../python3-zope.cachedescriptors/template    |   1 -
 srcpkgs/python3-zope.component/template       |   1 -
 srcpkgs/python3-zope.configuration/template   |   1 -
 srcpkgs/python3-zope.copy/template            |   1 -
 srcpkgs/python3-zope.deferredimport/template  |   1 -
 srcpkgs/python3-zope.deprecation/template     |   1 -
 srcpkgs/python3-zope.event/template           |   1 -
 srcpkgs/python3-zope.exceptions/template      |   1 -
 srcpkgs/python3-zope.hookable/template        |   1 -
 srcpkgs/python3-zope.location/template        |   1 -
 srcpkgs/python3-zope.schema/template          |   1 -
 srcpkgs/python3-zope.testing/template         |   1 -
 srcpkgs/python3-zope.testrunner/template      |   1 -
 srcpkgs/pywal/template                        |   1 -
 srcpkgs/qalculate/template                    |   1 -
 srcpkgs/qdirstat/template                     |   1 -
 srcpkgs/qmc2-flyers/template                  |   1 -
 srcpkgs/qmc2-snapshots/template               |   1 -
 srcpkgs/qmc2/template                         |   1 -
 srcpkgs/qmk/template                          |   1 -
 srcpkgs/qomui/template                        |   1 -
 srcpkgs/qrintf/template                       |   1 -
 srcpkgs/qtcreator/template                    |   1 -
 srcpkgs/quixand/template                      |   1 -
 srcpkgs/quodlibet/template                    |   1 -
 srcpkgs/qutebrowser/template                  |   1 -
 srcpkgs/qytdl/template                        |   1 -
 srcpkgs/racket/template                       |   1 -
 srcpkgs/radicale/template                     |   1 -
 srcpkgs/radicale2/template                    |   1 -
 srcpkgs/ranger/template                       |   1 -
 srcpkgs/rapidjson/template                    |   1 -
 srcpkgs/rapidxml/template                     |   1 -
 srcpkgs/rapydscript-ng/template               |   1 -
 srcpkgs/rcm/template                          |   1 -
 srcpkgs/rdumpfs/template                      |   1 -
 srcpkgs/rebar3/template                       |   1 -
 srcpkgs/rednotebook/template                  |   1 -
 srcpkgs/remhind/template                      |   1 -
 srcpkgs/rex/template                          |   1 -
 srcpkgs/rinse/template                        |   1 -
 srcpkgs/ripe-atlas-tools/template             |   1 -
 srcpkgs/rkhunter/template                     |   1 -
 srcpkgs/rocksndiamonds/template               |   1 -
 srcpkgs/rpi-firmware/template                 |   1 -
 srcpkgs/rpmextract/template                   |   1 -
 srcpkgs/rsnapshot/template                    |   1 -
 srcpkgs/rtl8812au-dkms/template               |   1 -
 srcpkgs/rtl8822bu-dkms/template               |   1 -
 srcpkgs/rubber/template                       |   1 -
 srcpkgs/ruby-addressable/template             |   1 -
 srcpkgs/ruby-asciidoctor/template             |   1 -
 srcpkgs/ruby-concurrent-ruby/template         |   1 -
 srcpkgs/ruby-connection_pool/template         |   1 -
 srcpkgs/ruby-deep_merge/template              |   1 -
 srcpkgs/ruby-ethon/template                   |   1 -
 srcpkgs/ruby-faraday/template                 |   1 -
 srcpkgs/ruby-faraday_middleware/template      |   1 -
 srcpkgs/ruby-filesize/template                |   1 -
 srcpkgs/ruby-gh/template                      |   1 -
 srcpkgs/ruby-highline/template                |   1 -
 srcpkgs/ruby-httparty/template                |   1 -
 srcpkgs/ruby-launchy/template                 |   1 -
 srcpkgs/ruby-manpages/template                |   1 -
 srcpkgs/ruby-mime-types-data/template         |   1 -
 srcpkgs/ruby-mime-types/template              |   1 -
 srcpkgs/ruby-multi_json/template              |   1 -
 srcpkgs/ruby-multi_xml/template               |   1 -
 srcpkgs/ruby-multipart-post/template          |   1 -
 srcpkgs/ruby-mustache/template                |   1 -
 srcpkgs/ruby-net-http-persistent/template     |   1 -
 srcpkgs/ruby-net-http-pipeline/template       |   1 -
 srcpkgs/ruby-public_suffix/template           |   1 -
 srcpkgs/ruby-pusher-client/template           |   1 -
 srcpkgs/ruby-rainbow/template                 |   1 -
 srcpkgs/ruby-rb-readline/template             |   1 -
 srcpkgs/ruby-ronn/template                    |   1 -
 srcpkgs/ruby-rubysl-singleton/template        |   1 -
 srcpkgs/ruby-semantic_puppet/template         |   1 -
 srcpkgs/ruby-sync/template                    |   1 -
 srcpkgs/ruby-travis/template                  |   1 -
 srcpkgs/ruby-typhoeus/template                |   1 -
 srcpkgs/ruby-websocket/template               |   1 -
 srcpkgs/ruby/template                         |   2 -
 srcpkgs/run-mailcap/template                  |   1 -
 srcpkgs/runelite-launcher/template            |   1 -
 srcpkgs/runit-iptables/template               |   1 -
 srcpkgs/runit-kdump/template                  |   1 -
 srcpkgs/runit-nftables/template               |   1 -
 srcpkgs/runit-swap/template                   |   1 -
 srcpkgs/rust/template                         |   1 -
 srcpkgs/rxvt-unicode/template                 |   1 -
 srcpkgs/s3cmd/template                        |   1 -
 srcpkgs/s6-dns/template                       |   1 -
 srcpkgs/s6-linux-utils/template               |   1 -
 srcpkgs/s6-networking/template                |   1 -
 srcpkgs/s6-portable-utils/template            |   1 -
 srcpkgs/s6-rc/template                        |   1 -
 srcpkgs/s6/template                           |   1 -
 srcpkgs/sabnzbd/template                      |   1 -
 srcpkgs/safeeyes/template                     |   1 -
 srcpkgs/salt/template                         |   1 -
 srcpkgs/sandfox/template                      |   1 -
 srcpkgs/sauerbraten/template                  |   1 -
 srcpkgs/sbcl/template                         |   1 -
 srcpkgs/sbt/template                          |   1 -
 srcpkgs/scanmem/template                      |   1 -
 srcpkgs/scapy/template                        |   1 -
 srcpkgs/schedule/template                     |   1 -
 srcpkgs/screenFetch/template                  |   1 -
 srcpkgs/screenkey/template                    |   1 -
 srcpkgs/screenplain/template                  |   1 -
 srcpkgs/seafile-libclient/template            |   2 -
 srcpkgs/sendEmail/template                    |   1 -
 srcpkgs/setconf/template                      |   2 -
 srcpkgs/shared-color-targets/template         |   1 -
 srcpkgs/shared-desktop-ontologies/template    |   1 -
 srcpkgs/shiboken2/template                    |   2 -
 srcpkgs/shorewall/template                    |   3 -
 srcpkgs/shunit2/template                      |   1 -
 srcpkgs/sickbeard/template                    |   1 -
 srcpkgs/signond/template                      |   1 -
 srcpkgs/sigrok-firmware-fx2lafw/template      |   1 -
 srcpkgs/skalibs/template                      |   1 -
 srcpkgs/slim-void-theme/template              |   1 -
 srcpkgs/snazzer/template                      |   1 -
 srcpkgs/sonata/template                       |   1 -
 srcpkgs/sound-icons/template                  |   1 -
 srcpkgs/sound-theme-freedesktop/template      |   1 -
 srcpkgs/soundconverter/template               |   1 -
 srcpkgs/soundfont-fluid/template              |   1 -
 srcpkgs/source-sans-pro/template              |   1 -
 srcpkgs/spampd/template                       |   1 -
 srcpkgs/sparsehash/template                   |   1 -
 srcpkgs/spdx-licenses-list/template           |   4 -
 srcpkgs/spectre-meltdown-checker/template     |   1 -
 srcpkgs/speed-dreams/template                 |   1 -
 srcpkgs/speedometer/template                  |   1 -
 srcpkgs/speedtest-cli/template                |   1 -
 srcpkgs/spice-protocol/template               |   1 -
 srcpkgs/sqlmap/template                       |   1 -
 srcpkgs/ssh-audit/template                    |   1 -
 srcpkgs/sshuttle/template                     |   1 -
 srcpkgs/ssoma/template                        |   1 -
 srcpkgs/st/template                           |   1 -
 srcpkgs/starfighter/template                  |   1 -
 srcpkgs/startup/template                      |   1 -
 srcpkgs/statnot/template                      |   1 -
 srcpkgs/stcgal/template                       |   1 -
 srcpkgs/steam-fonts/template                  |   1 -
 srcpkgs/stellarium/template                   |   1 -
 srcpkgs/stig/template                         |   1 -
 srcpkgs/stk/template                          |   1 -
 srcpkgs/stlarch-font/template                 |   1 -
 srcpkgs/stow/template                         |   1 -
 srcpkgs/straw-viewer/template                 |   1 -
 srcpkgs/streamlink/template                   |   1 -
 srcpkgs/strip-nondeterminism/template         |   1 -
 srcpkgs/supertux2/template                    |   1 -
 srcpkgs/supertuxkart/template                 |   1 -
 srcpkgs/surfraw/template                      |   1 -
 srcpkgs/sv-helper/template                    |   1 -
 srcpkgs/swaks/template                        |   1 -
 srcpkgs/sway/template                         |   1 -
 srcpkgs/synapse/template                      |   1 -
 srcpkgs/syncplay/template                     |   1 -
 srcpkgs/syncthing-gtk/template                |   1 -
 srcpkgs/system-config-printer/template        |   1 -
 srcpkgs/t-prot/template                       |   1 -
 srcpkgs/t2ec/template                         |   1 -
 srcpkgs/taisei/template                       |   1 -
 srcpkgs/tango-icon-theme/template             |   1 -
 srcpkgs/tcllib/template                       |   1 -
 srcpkgs/tdrop/template                        |   1 -
 srcpkgs/tegaki-zinnia-japanese/template       |   1 -
 srcpkgs/tekaim/template                       |   1 -
 srcpkgs/telepathy-python/template             |   1 -
 srcpkgs/telepresence/template                 |   1 -
 srcpkgs/termdown/template                     |   1 -
 srcpkgs/terminal_markdown_viewer/template     |   1 -
 srcpkgs/terminator/template                   |   1 -
 srcpkgs/terminus-font/template                |   1 -
 srcpkgs/termsyn-font/template                 |   1 -
 srcpkgs/termtosvg/template                    |   1 -
 srcpkgs/tesseract-ocr/template                | 156 ------------------
 srcpkgs/testssl.sh/template                   |   1 -
 srcpkgs/tewi-font/template                    |   1 -
 srcpkgs/texi2html/template                    |   1 -
 srcpkgs/texlive-basic/template                |   1 -
 srcpkgs/texlive-bibtexextra/template          |   1 -
 srcpkgs/texlive-core/template                 |   1 -
 srcpkgs/texlive-fontsextra/template           |   1 -
 srcpkgs/texlive-formatsextra/template         |   1 -
 srcpkgs/texlive-full/template                 |   1 -
 srcpkgs/texlive-games/template                |   1 -
 srcpkgs/texlive-humanities/template           |   1 -
 srcpkgs/texlive-lang/template                 |   1 -
 srcpkgs/texlive-langchinese/template          |   1 -
 srcpkgs/texlive-langcyrillic/template         |   1 -
 srcpkgs/texlive-langextra/template            |   1 -
 srcpkgs/texlive-langgreek/template            |   1 -
 srcpkgs/texlive-langjapanese/template         |   1 -
 srcpkgs/texlive-langkorean/template           |   1 -
 srcpkgs/texlive-latexextra/template           |   1 -
 srcpkgs/texlive-minimal/template              |   1 -
 srcpkgs/texlive-most/template                 |   1 -
 srcpkgs/texlive-music/template                |   1 -
 srcpkgs/texlive-pictures/template             |   1 -
 srcpkgs/texlive-pstricks/template             |   1 -
 srcpkgs/texlive-publishers/template           |   1 -
 srcpkgs/texlive-science/template              |   1 -
 srcpkgs/thefuck/template                      |   1 -
 srcpkgs/thinkpad-scripts/template             |   1 -
 srcpkgs/tlp/template                          |   2 -
 srcpkgs/tmux-xpanes/template                  |   1 -
 srcpkgs/tmuxc/template                        |   1 -
 srcpkgs/todoman/template                      |   1 -
 srcpkgs/toot/template                         |   1 -
 srcpkgs/tpm/template                          |   1 -
 srcpkgs/trackma/template                      |   1 -
 srcpkgs/treeline/template                     |   1 -
 srcpkgs/tremc/template                        |   1 -
 srcpkgs/trident-icons/template                |   1 -
 srcpkgs/triehash/template                     |   1 -
 srcpkgs/tryton/template                       |   1 -
 srcpkgs/ttf-bitstream-vera/template           |   1 -
 srcpkgs/ttf-material-icons/template           |   1 -
 srcpkgs/ttf-ubuntu-font-family/template       |   1 -
 srcpkgs/tuimoji/template                      |   1 -
 srcpkgs/tuir/template                         |   2 -
 srcpkgs/turses/template                       |   1 -
 srcpkgs/tuxpaint-stamps/template              |   1 -
 srcpkgs/tuxpaint/template                     |   1 -
 srcpkgs/tvbrowser/template                    |   1 -
 srcpkgs/twaindsm/template                     |   1 -
 srcpkgs/twemoji/template                      |   1 -
 srcpkgs/txt2man/template                      |   1 -
 srcpkgs/tzdata/template                       |   1 -
 srcpkgs/tzupdate/template                     |   1 -
 srcpkgs/u-boot-menu/template                  |   1 -
 srcpkgs/uberwriter/template                   |   1 -
 srcpkgs/udiskie/template                      |   1 -
 srcpkgs/ufetch/template                       |   1 -
 srcpkgs/ufoai/template                        |   1 -
 srcpkgs/ufw-extras/template                   |   1 -
 srcpkgs/ufw/template                          |   1 -
 srcpkgs/uhd/template                          |   1 -
 srcpkgs/unicode-emoji/template                |   1 -
 srcpkgs/unknown-horizons/template             |   1 -
 srcpkgs/unoconv/template                      |   1 -
 srcpkgs/unp/template                          |   1 -
 srcpkgs/urbanterror-data/template             |   1 -
 srcpkgs/urlscan/template                      |   1 -
 srcpkgs/urlwatch/template                     |   1 -
 srcpkgs/urxvt-perls/template                  |   1 -
 srcpkgs/usb-modeswitch-data/template          |   1 -
 srcpkgs/vala-panel-appmenu/template           |   1 -
 srcpkgs/vala/template                         |   1 -
 srcpkgs/variety/template                      |   1 -
 srcpkgs/vdirsyncer/template                   |   1 -
 srcpkgs/vdrift/template                       |   1 -
 srcpkgs/vidcutter/template                    |   1 -
 srcpkgs/vigra/template                        |   1 -
 srcpkgs/vim-colorschemes/template             |   1 -
 srcpkgs/vim-gnupg/template                    |   1 -
 srcpkgs/vim/template                          |   1 -
 srcpkgs/vips/template                         |   1 -
 srcpkgs/virt-manager/template                 |   2 -
 srcpkgs/virtme/template                       |   1 -
 srcpkgs/virtualbox-ose/template               |   2 -
 srcpkgs/virtualenvwrapper/template            |   1 -
 srcpkgs/visidata/template                     |   1 -
 srcpkgs/void-artwork/template                 |   1 -
 srcpkgs/void-docs/template                    |   1 -
 srcpkgs/void-release-keys/template            |   1 -
 srcpkgs/void-repo-nonfree/template            |   2 -
 srcpkgs/void-updates/template                 |   1 -
 srcpkgs/volctl/template                       |   1 -
 srcpkgs/voltron/template                      |   1 -
 srcpkgs/vpm/template                          |   1 -
 srcpkgs/vpnc-scripts/template                 |   1 -
 srcpkgs/vpnd/template                         |   1 -
 srcpkgs/vsv/template                          |   1 -
 srcpkgs/warsow-data/template                  |   1 -
 srcpkgs/warzone2100/template                  |   1 -
 srcpkgs/wayland-protocols/template            |   1 -
 srcpkgs/weather/template                      |   1 -
 srcpkgs/wee-slack/template                    |   1 -
 srcpkgs/wesnoth/template                      |   1 -
 srcpkgs/wfuzz/template                        |   1 -
 srcpkgs/wgetpaste/template                    |   1 -
 srcpkgs/when/template                         |   1 -
 srcpkgs/wicd/template                         |   2 -
 srcpkgs/widelands-maps/template               |   1 -
 srcpkgs/widelands/template                    |   1 -
 srcpkgs/wifi-firmware/template                |   1 -
 srcpkgs/wifish/template                       |   1 -
 srcpkgs/wine-gecko/template                   |   1 -
 srcpkgs/wine-mono/template                    |   1 -
 srcpkgs/wine/template                         |   1 -
 srcpkgs/winetricks/template                   |   1 -
 srcpkgs/wok/template                          |   1 -
 srcpkgs/words-mnemonic/template               |   1 -
 srcpkgs/words-web2/template                   |   1 -
 srcpkgs/wpgtk/template                        |   1 -
 srcpkgs/wpull/template                        |   1 -
 srcpkgs/wqy-microhei/template                 |   1 -
 srcpkgs/xapian-core/template                  |   1 -
 srcpkgs/xbitmaps/template                     |   1 -
 srcpkgs/xbps-triggers/template                |   1 -
 srcpkgs/xcb-proto/template                    |   1 -
 srcpkgs/xcursor-themes/template               |   1 -
 srcpkgs/xcursor-vanilla-dmz/template          |   1 -
 srcpkgs/xdg-utils/template                    |   1 -
 srcpkgs/xdgmenumaker/template                 |   1 -
 srcpkgs/xdot/template                         |   1 -
 srcpkgs/xed/template                          |   1 -
 srcpkgs/xerces-c/template                     |   1 -
 srcpkgs/xfwm4-themes/template                 |   1 -
 srcpkgs/xkb-qwerty-fr/template                |   1 -
 srcpkgs/xkcdpass/template                     |   1 -
 srcpkgs/xkeyboard-config/template             |   1 -
 srcpkgs/xmltoman/template                     |   1 -
 srcpkgs/xmoto/template                        |   1 -
 srcpkgs/xonotic-data-low/template             |   1 -
 srcpkgs/xonotic-data/template                 |   1 -
 srcpkgs/xonsh/template                        |   1 -
 srcpkgs/xorg-cf-files/template                |   1 -
 srcpkgs/xorg-util-macros/template             |   1 -
 srcpkgs/xtools/template                       |   1 -
 srcpkgs/xtrans/template                       |   1 -
 srcpkgs/xye/template                          |   1 -
 srcpkgs/yadm/template                         |   1 -
 srcpkgs/yaru-plus/template                    |   1 -
 srcpkgs/yaru/template                         |   1 -
 srcpkgs/yelp-tools/template                   |   1 -
 srcpkgs/yelp-xsl/template                     |   1 -
 srcpkgs/you-get/template                      |   1 -
 srcpkgs/youtube-dl/template                   |   1 -
 srcpkgs/youtube-viewer/template               |   1 -
 srcpkgs/yq/template                           |   1 -
 srcpkgs/ytcc/template                         |   1 -
 srcpkgs/ytmdl/template                        |   1 -
 srcpkgs/yturl/template                        |   1 -
 srcpkgs/yubikey-manager/template              |   1 -
 srcpkgs/zabbix/template                       |   1 -
 srcpkgs/zd1211-firmware/template              |   1 -
 srcpkgs/zeek/template                         |   3 -
 srcpkgs/zeroinstall/template                  |   1 -
 srcpkgs/zfs-auto-snapshot/template            |   1 -
 srcpkgs/zfs-prune-snapshots/template          |   1 -
 srcpkgs/zfsbootmenu/template                  |   1 -
 srcpkgs/zim/template                          |   1 -
 srcpkgs/zola/template                         |   1 -
 srcpkgs/zookeeper/template                    |   1 -
 srcpkgs/zramen/template                       |   1 -
 srcpkgs/zsh-autosuggestions/template          |   1 -
 srcpkgs/zsh-completions/template              |   1 -
 srcpkgs/zsh-history-substring-search/template |   1 -
 srcpkgs/zsh-syntax-highlighting/template      |   1 -
 srcpkgs/zynaddsubfx/template                  |   1 -
 srcpkgs/zzz-user-hooks/template               |   1 -
 2111 files changed, 2743 deletions(-)

diff --git a/srcpkgs/0ad-data/template b/srcpkgs/0ad-data/template
index 325dfbf5cc6..f9e93d4c324 100644
--- a/srcpkgs/0ad-data/template
+++ b/srcpkgs/0ad-data/template
@@ -2,7 +2,6 @@
 pkgname=0ad-data
 version=0.0.23b
 revision=1
-archs=noarch
 wrksrc="0ad-${version}-alpha"
 short_desc="Historically-based real-time strategy game (data files)"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/66/template b/srcpkgs/66/template
index ccd676575f9..cd81c7d184d 100644
--- a/srcpkgs/66/template
+++ b/srcpkgs/66/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 66-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}-${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/7kaa/template b/srcpkgs/7kaa/template
index ade56365ec1..5bd2a6a693f 100644
--- a/srcpkgs/7kaa/template
+++ b/srcpkgs/7kaa/template
@@ -20,7 +20,6 @@ pre_configure() {
 }
 
 7kaa-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/7kaa
diff --git a/srcpkgs/Adapta/template b/srcpkgs/Adapta/template
index 03a736b1cc8..7c1029ba44a 100644
--- a/srcpkgs/Adapta/template
+++ b/srcpkgs/Adapta/template
@@ -2,7 +2,6 @@
 pkgname=Adapta
 version=3.95.0.11
 revision=2
-archs=noarch
 wrksrc="adapta-gtk-theme-$version"
 build_style=gnu-configure
 hostmakedepends="automake glib-devel inkscape parallel pkg-config
diff --git a/srcpkgs/Autodia/template b/srcpkgs/Autodia/template
index 83cb4e1fcca..8e91247e940 100644
--- a/srcpkgs/Autodia/template
+++ b/srcpkgs/Autodia/template
@@ -2,7 +2,6 @@
 pkgname=Autodia
 version=2.14
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/CImg/template b/srcpkgs/CImg/template
index a1df4972bfc..2db3a8d4108 100644
--- a/srcpkgs/CImg/template
+++ b/srcpkgs/CImg/template
@@ -2,7 +2,6 @@
 pkgname=CImg
 version=2.9.1
 revision=1
-archs=noarch
 wrksrc="CImg-v.${version}"
 depends="libgraphicsmagick-devel fftw-devel"
 short_desc="Open-source C++ toolkit for image processing"
diff --git a/srcpkgs/Cataclysm-DDA/template b/srcpkgs/Cataclysm-DDA/template
index 6b7ef57eed1..b04b27b7d32 100644
--- a/srcpkgs/Cataclysm-DDA/template
+++ b/srcpkgs/Cataclysm-DDA/template
@@ -57,7 +57,6 @@ Cataclysm-DDA-tiles_package() {
 
 Cataclysm-DDA-tiles-data_package() {
 	short_desc+=" - tiles data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cataclysm-dda/gfx
 		vmove usr/share/cataclysm-dda/sound
@@ -66,7 +65,6 @@ Cataclysm-DDA-tiles-data_package() {
 
 Cataclysm-DDA-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/Cendric/template b/srcpkgs/Cendric/template
index 6f5c16f479b..6dcc1f33e70 100644
--- a/srcpkgs/Cendric/template
+++ b/srcpkgs/Cendric/template
@@ -24,7 +24,6 @@ post_install() {
 Cendric-data_package() {
 	short_desc+=" - data files"
 	repository=nonfree
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/ClusterSSH/template b/srcpkgs/ClusterSSH/template
index ade9b7fefa0..a614f1643c3 100644
--- a/srcpkgs/ClusterSSH/template
+++ b/srcpkgs/ClusterSSH/template
@@ -2,7 +2,6 @@
 pkgname=ClusterSSH
 version=4.14
 revision=1
-archs=noarch
 wrksrc="clusterssh-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="xterm openssh
diff --git a/srcpkgs/ETL/template b/srcpkgs/ETL/template
index 7b8b01956c3..111f96217d0 100644
--- a/srcpkgs/ETL/template
+++ b/srcpkgs/ETL/template
@@ -3,7 +3,6 @@ pkgname=ETL
 reverts="1.3.11_1"
 version=1.2.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Extended Template Library"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/Electron-Cash/template b/srcpkgs/Electron-Cash/template
index 6cf5a5db45c..131db532944 100644
--- a/srcpkgs/Electron-Cash/template
+++ b/srcpkgs/Electron-Cash/template
@@ -2,7 +2,6 @@
 pkgname=Electron-Cash
 version=4.0.12
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-PyQt5 python3-PyQt5-svg python3-qrcode python3-dateutil
diff --git a/srcpkgs/Fonts-TLWG/template b/srcpkgs/Fonts-TLWG/template
index 0baf7333541..42b5d2a74ee 100644
--- a/srcpkgs/Fonts-TLWG/template
+++ b/srcpkgs/Fonts-TLWG/template
@@ -2,7 +2,6 @@
 pkgname=Fonts-TLWG
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="fonts-tlwg-${version}"
 build_style=gnu-configure
 configure_args="--with-ttfdir=/usr/share/fonts/TTF --with-otfdir=/usr/share/fonts/OTF
@@ -22,7 +21,6 @@ post_install() {
 }
 
 Fonts-TLWG-otf_package() {
-	archs=noarch
 	short_desc="Thai fonts OTF"
 	font_dirs="/usr/share/fonts/OTF"
 	pkg_install() {
diff --git a/srcpkgs/GCP-Guest-Environment/template b/srcpkgs/GCP-Guest-Environment/template
index 77e5e396d4f..2c3db4f6f20 100644
--- a/srcpkgs/GCP-Guest-Environment/template
+++ b/srcpkgs/GCP-Guest-Environment/template
@@ -2,7 +2,6 @@
 pkgname=GCP-Guest-Environment
 version=20191210
 revision=1
-archs=noarch
 wrksrc="compute-image-packages-${version}"
 build_wrksrc="packages/python-google-compute-engine"
 build_style=python2-module
diff --git a/srcpkgs/Grammalecte/template b/srcpkgs/Grammalecte/template
index 00e2bbb34a8..f62e8343202 100644
--- a/srcpkgs/Grammalecte/template
+++ b/srcpkgs/Grammalecte/template
@@ -2,7 +2,6 @@
 pkgname=Grammalecte
 version=1.6.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=python3-module
 hostmakedepends="python3-setuptools bsdtar"
diff --git a/srcpkgs/ISOEnts/template b/srcpkgs/ISOEnts/template
index 3f44042e507..0727d8647d6 100644
--- a/srcpkgs/ISOEnts/template
+++ b/srcpkgs/ISOEnts/template
@@ -2,7 +2,6 @@
 pkgname=ISOEnts
 version=1986
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip bsdtar"
 depends="xmlcatmgr"
diff --git a/srcpkgs/Komikku/template b/srcpkgs/Komikku/template
index 9822ee43fc8..06eeaa5ed38 100644
--- a/srcpkgs/Komikku/template
+++ b/srcpkgs/Komikku/template
@@ -2,7 +2,6 @@
 pkgname=Komikku
 version=0.15.1
 revision=1
-archs=noarch
 wrksrc=Komikku-v${version}
 build_style=meson
 hostmakedepends="appstream-glib desktop-file-utils glib-devel gettext
diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
index a73cc80c9e5..ea588136f8a 100644
--- a/srcpkgs/LanguageTool/template
+++ b/srcpkgs/LanguageTool/template
@@ -2,7 +2,6 @@
 pkgname=LanguageTool
 version=4.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Checks your writing in more than 20 languages"
diff --git a/srcpkgs/MoinMoin/template b/srcpkgs/MoinMoin/template
index 2c13dc6a06f..998546ac5b9 100644
--- a/srcpkgs/MoinMoin/template
+++ b/srcpkgs/MoinMoin/template
@@ -2,7 +2,6 @@
 pkgname=MoinMoin
 version=1.9.10
 revision=1
-archs=noarch
 wrksrc=moin-${version}
 build_style=python2-module
 pycompile_module="MoinMoin jabberbot"
diff --git a/srcpkgs/OpenCPN-gshhs-crude/template b/srcpkgs/OpenCPN-gshhs-crude/template
index b2c64e94093..027b3c7a66b 100644
--- a/srcpkgs/OpenCPN-gshhs-crude/template
+++ b/srcpkgs/OpenCPN-gshhs-crude/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://opencpn.org/"
 distfiles="https://launchpad.net/~opencpn/+archive/ubuntu/opencpn/+files/opencpn-gshhs_${version}.orig.tar.xz"
 checksum=bb45b68af09d5a995594748f507cd533505264f0483c8cb8425693331cccf203
-archs=noarch
 
 do_install() {
 	for file in gshhs/*; do
@@ -19,7 +18,6 @@ do_install() {
 
 OpenCPN-gshhs-low_package() {
 	short_desc="${short_desc/Crude/Low}"
-	archs=noarch
 	depends="OpenCPN-gshhs-crude"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-c-1.dat
@@ -30,7 +28,6 @@ OpenCPN-gshhs-low_package() {
 
 OpenCPN-gshhs-intermediate_package() {
 	short_desc="${short_desc/Crude/Intermediate}"
-	archs=noarch
 	depends="OpenCPN-gshhs-low"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-i-1.dat
@@ -41,7 +38,6 @@ OpenCPN-gshhs-intermediate_package() {
 
 OpenCPN-gshhs-high_package() {
 	short_desc="${short_desc/Crude/High}"
-	archs=noarch
 	depends="OpenCPN-gshhs-intermediate"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-h-1.dat
@@ -52,7 +48,6 @@ OpenCPN-gshhs-high_package() {
 
 OpenCPN-gshhs-full_package() {
 	short_desc="${short_desc/Crude/Full}"
-	archs=noarch
 	depends="OpenCPN-gshhs-high"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-f-1.dat
diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index ccae6d0282e..f8ea2a4b35b 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -2,7 +2,6 @@
 pkgname=OpenLP
 version=2.4.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="openlp"
 hostmakedepends="python3-setuptools qt5-host-tools"
diff --git a/srcpkgs/OpenRCT2/template b/srcpkgs/OpenRCT2/template
index 5b0c68a5f80..14e114c58fc 100644
--- a/srcpkgs/OpenRCT2/template
+++ b/srcpkgs/OpenRCT2/template
@@ -53,7 +53,6 @@ post_extract() {
 
 OpenRCT2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openrct2
 	}
diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index e649885fda0..7f06aff8d51 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -2,7 +2,6 @@
 pkgname=PhotoCollage
 version=1.4.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3"
 depends="python3-Pillow python3-gobject"
diff --git a/srcpkgs/ProofGeneral/template b/srcpkgs/ProofGeneral/template
index 208e58f8d68..1b0aaf72921 100644
--- a/srcpkgs/ProofGeneral/template
+++ b/srcpkgs/ProofGeneral/template
@@ -3,7 +3,6 @@ pkgname=ProofGeneral
 version=4.4
 revision=2
 wrksrc="PG-${version}"
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="emacs which"
 depends="emacs perl"
diff --git a/srcpkgs/PyInstaller/template b/srcpkgs/PyInstaller/template
index ad2dadf10f3..4b3d02468de 100644
--- a/srcpkgs/PyInstaller/template
+++ b/srcpkgs/PyInstaller/template
@@ -2,7 +2,6 @@
 pkgname=PyInstaller
 version=3.6
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3 python3-altgraph"
diff --git a/srcpkgs/Pyrex/template b/srcpkgs/Pyrex/template
index 5ab3598b1c0..c1d90574aaf 100644
--- a/srcpkgs/Pyrex/template
+++ b/srcpkgs/Pyrex/template
@@ -2,7 +2,6 @@
 pkgname=Pyrex
 version=0.9.9
 revision=4
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python-devel"
diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index a6551fbdf7c..5d657ed46ca 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -2,7 +2,6 @@
 pkgname=ReText
 version=7.0.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ReText"
 wrksrc="${pkgname,,}-${version}"
diff --git a/srcpkgs/SMC/template b/srcpkgs/SMC/template
index 00f9763bfdd..623bde41157 100644
--- a/srcpkgs/SMC/template
+++ b/srcpkgs/SMC/template
@@ -37,7 +37,6 @@ post_install() {
 
 SMC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/smc
 	}
diff --git a/srcpkgs/SPIRV-Headers/template b/srcpkgs/SPIRV-Headers/template
index 6cc87dc386c..a5e9c17a3ce 100644
--- a/srcpkgs/SPIRV-Headers/template
+++ b/srcpkgs/SPIRV-Headers/template
@@ -2,7 +2,6 @@
 pkgname=SPIRV-Headers
 version=1.5.3
 revision=1
-archs=noarch
 build_style=cmake
 short_desc="Machine-readable files for the SPIR-V Registry"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index da77237f898..3d03d7b4966 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -2,7 +2,6 @@
 pkgname=Solaar
 version=1.0.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyudev"
diff --git a/srcpkgs/TSC/template b/srcpkgs/TSC/template
index 10150e7481c..f28c36a1aa1 100644
--- a/srcpkgs/TSC/template
+++ b/srcpkgs/TSC/template
@@ -25,7 +25,6 @@ post_install() {
 
 TSC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tsc
 	}
diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 3bbba11db49..549e5635542 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -6,7 +6,6 @@ build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"
 depends="python3-gobject python3-requests libnotify"
-archs=noarch
 short_desc="Daemon that notifies you about your followed channels on Twitch.TV"
 maintainer="Giedrius Statkevičius <giedriuswork@gmail.com>"
 license="GPL-3"
diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 29e9ed3761b..df2902a9edd 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -2,7 +2,6 @@
 pkgname=Uranium
 version=4.6.2
 revision=2
-archs=noarch
 build_style=cmake
 pycompile_dirs="usr/lib/uranium/plugins"
 hostmakedepends="python3"
diff --git a/srcpkgs/Vulkan-Headers/template b/srcpkgs/Vulkan-Headers/template
index 2fae2dda25b..3c089e9f79f 100644
--- a/srcpkgs/Vulkan-Headers/template
+++ b/srcpkgs/Vulkan-Headers/template
@@ -2,7 +2,6 @@
 pkgname=Vulkan-Headers
 version=1.2.141
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=cmake
 short_desc="Vulkan header files"
diff --git a/srcpkgs/WiringPi/template b/srcpkgs/WiringPi/template
index 562506c41b5..b9e5c5cbff7 100644
--- a/srcpkgs/WiringPi/template
+++ b/srcpkgs/WiringPi/template
@@ -104,7 +104,6 @@ WiringPi-gpio_package() {
 
 WiringPi-examples_package() {
 	short_desc+=" - examples"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/share/examples
 	}
diff --git a/srcpkgs/WoeUSB/template b/srcpkgs/WoeUSB/template
index 1bb0efa56ff..1ac9d5134a1 100644
--- a/srcpkgs/WoeUSB/template
+++ b/srcpkgs/WoeUSB/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 WoeUSB-cli_package() {
-	archs=noarch
 	depends="bash grub ntfs-3g parted wget"
 	short_desc+=" - command line only"
 	pkg_install() {
diff --git a/srcpkgs/XyGrib-maps/template b/srcpkgs/XyGrib-maps/template
index 797bb62d81a..6c5f0672785 100644
--- a/srcpkgs/XyGrib-maps/template
+++ b/srcpkgs/XyGrib-maps/template
@@ -11,7 +11,6 @@ license="GPL-3.0-or-later"
 homepage="https://opengribs.org"
 distfiles="https://github.com/opengribs/XyGrib/releases/download/v${_xygribver}/XyGrib___High_Resolution_Maps.tar.gz"
 checksum=164d0bca0ab118f242d6d10dfb6e6b2f3eacdcf2781b532336e02a2d223a0d0d
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/XyGrib
diff --git a/srcpkgs/abcde/template b/srcpkgs/abcde/template
index 49fe4f97768..b2a8e0117b2 100644
--- a/srcpkgs/abcde/template
+++ b/srcpkgs/abcde/template
@@ -2,7 +2,6 @@
 pkgname=abcde
 version=2.9.3
 revision=1
-archs=noarch
 conf_files="/etc/${pkgname}.conf"
 depends="cd-discid perl-MusicBrainz-DiscID perl-WebService-MusicBrainz vorbis-tools"
 short_desc="CLI audio CD encoder and tagger"
diff --git a/srcpkgs/abi-compliance-checker/template b/srcpkgs/abi-compliance-checker/template
index 644acae70e6..14e8a5e27e3 100644
--- a/srcpkgs/abi-compliance-checker/template
+++ b/srcpkgs/abi-compliance-checker/template
@@ -2,7 +2,6 @@
 pkgname=abi-compliance-checker
 version=2.3
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="binutils ctags perl"
 checkdepends="binutils ctags"
diff --git a/srcpkgs/ack/template b/srcpkgs/ack/template
index 47d3e6c3550..b3ec895eee3 100644
--- a/srcpkgs/ack/template
+++ b/srcpkgs/ack/template
@@ -2,7 +2,6 @@
 pkgname=ack
 version=3.3.1
 revision=1
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=perl-module
 hostmakedepends="perl perl-File-Next"
diff --git a/srcpkgs/acpilight/template b/srcpkgs/acpilight/template
index 89236bd4c3f..40288bad23b 100644
--- a/srcpkgs/acpilight/template
+++ b/srcpkgs/acpilight/template
@@ -2,7 +2,6 @@
 pkgname=acpilight
 version=1.2
 revision=1
-archs=noarch
 wrksrc="acpilight-v${version}"
 depends="python3"
 short_desc="Backward-compatibile xbacklight replacement"
diff --git a/srcpkgs/acr/template b/srcpkgs/acr/template
index 773799454b6..6ec88da7519 100644
--- a/srcpkgs/acr/template
+++ b/srcpkgs/acr/template
@@ -2,7 +2,6 @@
 pkgname=acr
 version=1.9.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="AutoConf Replacement"
 maintainer="Felipe Nogueira <contato.fnog@gmail.com>"
diff --git a/srcpkgs/adapta-kde/template b/srcpkgs/adapta-kde/template
index 1fc16324be1..25278735438 100644
--- a/srcpkgs/adapta-kde/template
+++ b/srcpkgs/adapta-kde/template
@@ -2,7 +2,6 @@
 pkgname=adapta-kde
 version=20180828
 revision=1
-archs=noarch
 short_desc="Port of the popular GTK theme Adapta for Plasma 5 desktop"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/adwaita-icon-theme/template b/srcpkgs/adwaita-icon-theme/template
index febd2915be6..b3ba7687d1b 100644
--- a/srcpkgs/adwaita-icon-theme/template
+++ b/srcpkgs/adwaita-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-icon-theme
 version=3.36.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 depends="librsvg"
diff --git a/srcpkgs/adwaita-plus/template b/srcpkgs/adwaita-plus/template
index c5faf56aeb2..b0f0962ec9c 100644
--- a/srcpkgs/adwaita-plus/template
+++ b/srcpkgs/adwaita-plus/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-plus
 version=5.0
 revision=1
-archs=noarch
 short_desc="Modern third-party icons theme based on GNOME's Adwaita"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index 2b2614a4eba..1084b32e97a 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -2,7 +2,6 @@
 pkgname=afew
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx pkg-config"
 depends="notmuch-python3 python3-dkimpy python3-chardet notmuch"
diff --git a/srcpkgs/aisleriot/template b/srcpkgs/aisleriot/template
index 1b5b594ddd9..29a66674f63 100644
--- a/srcpkgs/aisleriot/template
+++ b/srcpkgs/aisleriot/template
@@ -20,7 +20,6 @@ checksum=eed8edb267a9fa61651b1d3a22a83f51415a4e55d76d5ae737e18a9e9477016b
 
 aisleriot-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/alacritty/template b/srcpkgs/alacritty/template
index 74ddfcd6d65..479c02990c4 100644
--- a/srcpkgs/alacritty/template
+++ b/srcpkgs/alacritty/template
@@ -28,7 +28,6 @@ post_install() {
 
 alacritty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/albatross-themes/template b/srcpkgs/albatross-themes/template
index ca8ff1b363c..1473a296df5 100644
--- a/srcpkgs/albatross-themes/template
+++ b/srcpkgs/albatross-themes/template
@@ -2,7 +2,6 @@
 pkgname=albatross-themes
 version=1.7.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant black GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/alienfx/template b/srcpkgs/alienfx/template
index 62ee564ad4b..f48ad0461aa 100644
--- a/srcpkgs/alienfx/template
+++ b/srcpkgs/alienfx/template
@@ -2,7 +2,6 @@
 pkgname=alienfx
 version=2.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="alienfx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index c3b1fb07414..8ea0a60ed04 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -2,7 +2,6 @@
 pkgname=alot
 version=0.9.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools python3-Twisted notmuch-python3 python3-configobj
diff --git a/srcpkgs/alsa-firmware/template b/srcpkgs/alsa-firmware/template
index 63d37de92b1..45d6a2be1f1 100644
--- a/srcpkgs/alsa-firmware/template
+++ b/srcpkgs/alsa-firmware/template
@@ -2,7 +2,6 @@
 pkgname=alsa-firmware
 version=1.2.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-hotplug-dir=/usr/lib/firmware"
 short_desc="Advanced Linux Sound Architecture (ALSA) firmware"
diff --git a/srcpkgs/amiri-font/template b/srcpkgs/amiri-font/template
index 039962190ae..f1de46736dd 100644
--- a/srcpkgs/amiri-font/template
+++ b/srcpkgs/amiri-font/template
@@ -2,7 +2,6 @@
 pkgname=amiri-font
 version=0.113
 revision=1
-archs=noarch
 wrksrc="Amiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/ampache/template b/srcpkgs/ampache/template
index 3639557449a..99b249cda74 100644
--- a/srcpkgs/ampache/template
+++ b/srcpkgs/ampache/template
@@ -2,7 +2,6 @@
 pkgname=ampache
 version=3.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="php mysql"
diff --git a/srcpkgs/angrysearch/template b/srcpkgs/angrysearch/template
index 88a6954ac85..3bd8eee7f3c 100644
--- a/srcpkgs/angrysearch/template
+++ b/srcpkgs/angrysearch/template
@@ -5,7 +5,6 @@ revision=2
 wrksrc="ANGRYsearch-${version}"
 hostmakedepends="python3"
 depends="python3-PyQt5 xdg-utils"
-archs=noarch
 short_desc="Instant file search"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/anki/template b/srcpkgs/anki/template
index a25bc0d4e7e..92e66d28c52 100644
--- a/srcpkgs/anki/template
+++ b/srcpkgs/anki/template
@@ -2,7 +2,6 @@
 pkgname=anki
 version=2.1.15
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="python3-PyQt5-webengine python3-requests python3-SQLAlchemy
  python3-PyAudio python3-mpv python3-Markdown python3-send2trash
diff --git a/srcpkgs/ansi/template b/srcpkgs/ansi/template
index be114d5203b..705b26bad4e 100644
--- a/srcpkgs/ansi/template
+++ b/srcpkgs/ansi/template
@@ -2,7 +2,6 @@
 pkgname=ansi
 version=2.0.4
 revision=1
-archs=noarch
 depends="bash"
 short_desc="ANSI escape codes in pure Bash"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 94c470574ae..581ce88bc5e 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -2,7 +2,6 @@
 pkgname=ansible
 version=2.9.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-cryptography python3-Jinja2 python3-paramiko
diff --git a/srcpkgs/antlr3-bin/template b/srcpkgs/antlr3-bin/template
index 305df8ae69e..2ed87245670 100644
--- a/srcpkgs/antlr3-bin/template
+++ b/srcpkgs/antlr3-bin/template
@@ -2,7 +2,6 @@
 pkgname=antlr3-bin
 version=3.4
 revision=1
-archs=noarch
 build_style=fetch
 depends="virtual?java-runtime"
 short_desc="Parser generator for C++, C#, Java, and Python"
diff --git a/srcpkgs/apache-ant/template b/srcpkgs/apache-ant/template
index 80a738985a0..4db3a4aa0be 100644
--- a/srcpkgs/apache-ant/template
+++ b/srcpkgs/apache-ant/template
@@ -2,7 +2,6 @@
 pkgname=apache-ant
 version=1.10.8
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-runtime"
 short_desc="Java library and command-line tool that help building software"
@@ -42,7 +41,6 @@ do_install() {
 apache-ant-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove $_prefix/manual
 	}
diff --git a/srcpkgs/apache-jmeter/template b/srcpkgs/apache-jmeter/template
index 73f8f06fd96..eaa6eda1d05 100644
--- a/srcpkgs/apache-jmeter/template
+++ b/srcpkgs/apache-jmeter/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 apache-jmeter-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apache-maven/template b/srcpkgs/apache-maven/template
index a6c9fd3e5a2..956b472f373 100644
--- a/srcpkgs/apache-maven/template
+++ b/srcpkgs/apache-maven/template
@@ -2,7 +2,6 @@
 pkgname=apache-maven
 version=3.6.3
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-environment"
 short_desc="Software project management and comprehension tool"
diff --git a/srcpkgs/apache-storm/template b/srcpkgs/apache-storm/template
index 6ae346a0557..3efd37f6052 100644
--- a/srcpkgs/apache-storm/template
+++ b/srcpkgs/apache-storm/template
@@ -2,7 +2,6 @@
 pkgname=apache-storm
 version=2.2.0
 revision=2
-archs=noarch
 depends="virtual?java-runtime python3 bash"
 short_desc="Distributed realtime computation system"
 maintainer="bougyman <bougyman@voidlinux.org>"
diff --git a/srcpkgs/apache-tomcat/template b/srcpkgs/apache-tomcat/template
index 7cab7d1d9af..d8abc369365 100644
--- a/srcpkgs/apache-tomcat/template
+++ b/srcpkgs/apache-tomcat/template
@@ -40,7 +40,6 @@ post_install() {
 }
 
 apache-tomcat-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -58,7 +57,6 @@ apache-tomcat-examples_package() {
 }
 
 apache-tomcat-manager_package() {
-	archs=noarch
 	short_desc+=" - Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -67,7 +65,6 @@ apache-tomcat-manager_package() {
 }
 
 apache-tomcat-host-manager_package() {
-	archs=noarch
 	short_desc+=" - Host Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index cd7073fdcfb..3fc8aaea479 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -63,7 +63,6 @@ post_install() {
 }
 
 apparmor-vim_package() {
-	archs=noarch
 	short_desc+=" - Vim syntax"
 	depends="vim"
 	pkg_install() {
diff --git a/srcpkgs/apt/template b/srcpkgs/apt/template
index 8578ed028e2..1fb3ee57e46 100644
--- a/srcpkgs/apt/template
+++ b/srcpkgs/apt/template
@@ -29,7 +29,6 @@ apt-devel_package() {
 }
 
 apt-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation files"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 5e5bd84dd13..b361ccbf48d 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -2,7 +2,6 @@
 pkgname=arandr
 version=0.1.10
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-docutils"
 depends="python3-gobject xrandr python3"
diff --git a/srcpkgs/arc-theme/template b/srcpkgs/arc-theme/template
index ccc5f35ea5f..3afd69b34f1 100644
--- a/srcpkgs/arc-theme/template
+++ b/srcpkgs/arc-theme/template
@@ -2,7 +2,6 @@
 pkgname=arc-theme
 version=20200513
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_script="./autogen.sh"
 hostmakedepends="automake glib-devel pkg-config
diff --git a/srcpkgs/archlabs-themes/template b/srcpkgs/archlabs-themes/template
index aa648d35457..a565615ea6f 100644
--- a/srcpkgs/archlabs-themes/template
+++ b/srcpkgs/archlabs-themes/template
@@ -4,7 +4,6 @@ version=20180503
 revision=2
 _commit=73d0900117daefedf6c76dd0e71538bb954f1b10
 wrksrc="ArchLabs-Themes-${_commit}"
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Themes used in ArchLabs"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/argtable/template b/srcpkgs/argtable/template
index 7083e703a50..6719ab7f4fc 100644
--- a/srcpkgs/argtable/template
+++ b/srcpkgs/argtable/template
@@ -26,7 +26,6 @@ argtable-devel_package() {
 argtable-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/artwiz-fonts/template b/srcpkgs/artwiz-fonts/template
index ceea828ee9c..b19ad6d26af 100644
--- a/srcpkgs/artwiz-fonts/template
+++ b/srcpkgs/artwiz-fonts/template
@@ -2,7 +2,6 @@
 pkgname=artwiz-fonts
 version=1.3
 revision=4
-archs=noarch
 create_wrksrc=yes
 depends="font-util mkfontdir"
 short_desc="Small futuristic ASCII fonts for X"
diff --git a/srcpkgs/asciidoc/template b/srcpkgs/asciidoc/template
index 5665577bacb..377800871a9 100644
--- a/srcpkgs/asciidoc/template
+++ b/srcpkgs/asciidoc/template
@@ -2,7 +2,6 @@
 pkgname=asciidoc
 version=9.0.2
 revision=1
-archs=noarch
 wrksrc=${pkgname}-py3-${version}
 build_style=gnu-configure
 hostmakedepends="automake docbook-xsl libxslt python3"
diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 38b8871753c..551a15be881 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -2,7 +2,6 @@
 pkgname=asciinema
 version=2.0.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/asciiquarium/template b/srcpkgs/asciiquarium/template
index 128674e7a6e..6f9217a19e1 100644
--- a/srcpkgs/asciiquarium/template
+++ b/srcpkgs/asciiquarium/template
@@ -2,7 +2,6 @@
 pkgname=asciiquarium
 version=1.1
 revision=2
-archs=noarch
 wrksrc="${pkgname}_${version}"
 depends="perl perl-Term-Animation perl-Curses"
 short_desc="Enjoy the mysteries of the sea from the safety of your own terminal"
diff --git a/srcpkgs/aspell-ru/template b/srcpkgs/aspell-ru/template
index f0a6d0fa52d..6c61de58593 100644
--- a/srcpkgs/aspell-ru/template
+++ b/srcpkgs/aspell-ru/template
@@ -14,7 +14,6 @@ checksum=5c29b6ccce57bc3f7c4fb0510d330446b9c769e59c92bdfede27333808b6e646
 
 words-ru_package() {
 	short_desc="Russian dictionary word list"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/dict
 		precat *.cwl |
diff --git a/srcpkgs/astromenace/template b/srcpkgs/astromenace/template
index ae6bbc38330..55613a3d8f6 100644
--- a/srcpkgs/astromenace/template
+++ b/srcpkgs/astromenace/template
@@ -34,7 +34,6 @@ do_install() {
 
 astromenace-data_package() {
 	short_desc+=" - data file"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/astromenace
 		vcopy ${wrksrc}/gamedata usr/share/astromenace
diff --git a/srcpkgs/asus-kbd-backlight/template b/srcpkgs/asus-kbd-backlight/template
index e58e8341650..cc612d3a809 100644
--- a/srcpkgs/asus-kbd-backlight/template
+++ b/srcpkgs/asus-kbd-backlight/template
@@ -3,7 +3,6 @@ pkgname=asus-kbd-backlight
 version=1.2
 revision=1
 create_wrksrc=yes
-archs=noarch
 depends="bash"
 short_desc="Helper for adjusting keyboard backlight brightness in Asus Zenbook"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/atool/template b/srcpkgs/atool/template
index 56264dd3e16..84019be7c53 100644
--- a/srcpkgs/atool/template
+++ b/srcpkgs/atool/template
@@ -2,7 +2,6 @@
 pkgname=atool
 version=0.39.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index 4d8d2fbe12a..521e12ec4f1 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 libaudit-common_package() {
-	archs=noarch
 	short_desc+=" - Library common files"
 	pkg_install() {
 		vmove etc/libaudit.conf
diff --git a/srcpkgs/auto-auto-complete/template b/srcpkgs/auto-auto-complete/template
index 2fa45c4fc47..d4eefd9d547 100644
--- a/srcpkgs/auto-auto-complete/template
+++ b/srcpkgs/auto-auto-complete/template
@@ -2,7 +2,6 @@
 pkgname=auto-auto-complete
 version=7.2
 revision=4
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3 texinfo"
 depends="python3"
diff --git a/srcpkgs/autoconf-archive/template b/srcpkgs/autoconf-archive/template
index b04bb9a7905..ea9665901cb 100644
--- a/srcpkgs/autoconf-archive/template
+++ b/srcpkgs/autoconf-archive/template
@@ -2,7 +2,6 @@
 pkgname=autoconf-archive
 version=2019.01.06
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="texinfo"
 depends="autoconf"
diff --git a/srcpkgs/autoconf/template b/srcpkgs/autoconf/template
index a7aecf1359e..954bfea8d2c 100644
--- a/srcpkgs/autoconf/template
+++ b/srcpkgs/autoconf/template
@@ -2,7 +2,6 @@
 pkgname=autoconf
 version=2.69
 revision=8
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl m4 help2man"
 depends="virtual?awk m4 perl"
diff --git a/srcpkgs/autoconf213/template b/srcpkgs/autoconf213/template
index a1ecfe21fa9..7d471a040cf 100644
--- a/srcpkgs/autoconf213/template
+++ b/srcpkgs/autoconf213/template
@@ -2,7 +2,6 @@
 pkgname=autoconf213
 version=2.13
 revision=3
-archs=noarch
 wrksrc="autoconf-${version}"
 build_style=gnu-configure
 configure_args="--program-suffix='-2.13'"
diff --git a/srcpkgs/autojump/template b/srcpkgs/autojump/template
index 2448a2dd894..de499da67e1 100644
--- a/srcpkgs/autojump/template
+++ b/srcpkgs/autojump/template
@@ -2,7 +2,6 @@
 pkgname=autojump
 version=22.5.3
 revision=2
-archs=noarch
 wrksrc="${pkgname}-release-v${version}"
 hostmakedepends="python3"
 depends="python3"
diff --git a/srcpkgs/automake/template b/srcpkgs/automake/template
index f9752f9efb1..ae473c521f5 100644
--- a/srcpkgs/automake/template
+++ b/srcpkgs/automake/template
@@ -3,7 +3,6 @@
 pkgname=automake
 version=1.16.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_args="${makejobs}"
 hostmakedepends="perl autoconf"
diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index b86b81a50ce..86d7d32723d 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -2,7 +2,6 @@
 pkgname=autorandr
 version=1.10.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools pkg-config"
 depends="python3-setuptools xrandr"
diff --git a/srcpkgs/avahi-discover/template b/srcpkgs/avahi-discover/template
index 1c4249f1036..de7039cffa5 100644
--- a/srcpkgs/avahi-discover/template
+++ b/srcpkgs/avahi-discover/template
@@ -103,7 +103,6 @@ do_install() {
 avahi-python3-utils_package() {
 	depends="avahi-python3>=${version}_${revision}"
 	short_desc="Avahi python utilities"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		vmove usr/bin/avahi-bookmarks
@@ -114,14 +113,12 @@ avahi-python3-utils_package() {
 avahi-python-utils_package() {
 	short_desc="Avahi python utilities - transitional dummy pkg"
 	depends="avahi-python3-utils>=${version}_${revision}"
-	archs=noarch
 	build_style=meta
 }
 
 avahi-python_package() {
 	depends="python-dbus"
 	short_desc="Python utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py2_sitelib}/avahi
 	}
@@ -130,7 +127,6 @@ avahi-python_package() {
 avahi-python3_package() {
 	depends="python3-dbus"
 	short_desc="Python3 utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py3_sitelib}/avahi
 	}
diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index af1491295da..19c6845f242 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -2,7 +2,6 @@
 pkgname=avideo
 version=2017.9.27
 revision=5
-archs=noarch
 wrksrc="avideo"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/awoken-icons/template b/srcpkgs/awoken-icons/template
index f52c4f48187..ede6ea0c9d0 100644
--- a/srcpkgs/awoken-icons/template
+++ b/srcpkgs/awoken-icons/template
@@ -2,7 +2,6 @@
 pkgname=awoken-icons
 version=2.5.2
 revision=4
-archs=noarch
 wrksrc=AwOken-2.5
 hostmakedepends="unzip"
 short_desc="Simple and quite complete icon set, Token-style"
@@ -39,7 +38,6 @@ do_install() {
 awoken-icons-dark_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - Dark icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenDark
 	}
@@ -48,7 +46,6 @@ awoken-icons-dark_package() {
 awoken-icons-white_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - White icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenWhite
 	}
diff --git a/srcpkgs/aws-cli/template b/srcpkgs/aws-cli/template
index c8fadf32d2e..8bc1de2fa00 100644
--- a/srcpkgs/aws-cli/template
+++ b/srcpkgs/aws-cli/template
@@ -2,7 +2,6 @@
 pkgname=aws-cli
 version=1.18.105
 revision=1
-archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/awsume/template b/srcpkgs/awsume/template
index 0f6c21d60d1..3c01a09de16 100644
--- a/srcpkgs/awsume/template
+++ b/srcpkgs/awsume/template
@@ -2,7 +2,6 @@
 pkgname=awsume
 version=4.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 makedepends="python3-argcomplete python3-boto3 python3-colorama python3-coverage
  python3-pluggy python3-psutil python3-xmltodict python3-yaml"
diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 9b5756804ea..bdb24fa3c1a 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -2,7 +2,6 @@
 pkgname=azote
 version=1.7.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3>=3.4 python3-setuptools python3-gobject python3-Pillow gtk+3 feh python3-send2trash xrandr grim slurp ImageMagick python3-yaml"
diff --git a/srcpkgs/b43-firmware-classic/template b/srcpkgs/b43-firmware-classic/template
index b38e6ac7ee6..0bc8d62447e 100644
--- a/srcpkgs/b43-firmware-classic/template
+++ b/srcpkgs/b43-firmware-classic/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware-classic
 version=5.100.138
 revision=1
-archs=noarch
 wrksrc="broadcom-wl-${version}"
 hostmakedepends="b43-fwcutter"
 short_desc="Firmware for Broadcom B43 wireless (trusted release)"
diff --git a/srcpkgs/b43-firmware/template b/srcpkgs/b43-firmware/template
index e5f894b81e7..45cbdd4cc08 100644
--- a/srcpkgs/b43-firmware/template
+++ b/srcpkgs/b43-firmware/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware
 version=6.30.163.46
 revision=1
-archs=noarch
 wrksrc="${pkgname}"
 create_wrksrc=yes
 hostmakedepends="b43-fwcutter"
diff --git a/srcpkgs/bCNC/template b/srcpkgs/bCNC/template
index 2e715c512a9..ede158da583 100644
--- a/srcpkgs/bCNC/template
+++ b/srcpkgs/bCNC/template
@@ -2,7 +2,6 @@
 pkgname=bCNC
 version=0.9.14.306
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyserial python3-Pillow python3-tkinter python3-numpy python3-scipy"
diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template
index ef7fbca68b6..cac24c685cc 100644
--- a/srcpkgs/backblaze-b2/template
+++ b/srcpkgs/backblaze-b2/template
@@ -2,7 +2,6 @@
 pkgname=backblaze-b2
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="b2-${version}"
 build_style=python3-module
 pycompile_module="b2"
@@ -43,6 +42,5 @@ do_check() {
 python-b2_package() {
 	depends="backblaze-b2>=${version}_${revision}"
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional package"
 }
diff --git a/srcpkgs/backintime-qt/template b/srcpkgs/backintime-qt/template
index 8453da9bafb..422529bf923 100644
--- a/srcpkgs/backintime-qt/template
+++ b/srcpkgs/backintime-qt/template
@@ -2,7 +2,6 @@
 pkgname=backintime-qt
 version=1.2.1
 revision=1
-archs=noarch
 wrksrc=backintime-${version}
 build_wrksrc="qt"
 build_style=configure
diff --git a/srcpkgs/backintime/template b/srcpkgs/backintime/template
index 2dfc98051f7..6c95fcd722a 100644
--- a/srcpkgs/backintime/template
+++ b/srcpkgs/backintime/template
@@ -2,7 +2,6 @@
 pkgname=backintime
 version=1.2.1
 revision=1
-archs=noarch
 build_wrksrc="common"
 build_style=configure
 configure_args="--python3"
diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index d29873ecf61..0709b663aa7 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -2,7 +2,6 @@
 pkgname=bandit
 version=1.6.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="bandit"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bash-completion/template b/srcpkgs/bash-completion/template
index 704b0784688..080e387f5e6 100644
--- a/srcpkgs/bash-completion/template
+++ b/srcpkgs/bash-completion/template
@@ -2,7 +2,6 @@
 pkgname=bash-completion
 version=2.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_args="profiledir=/etc/bash/bashrc.d"
 depends="bash"
diff --git a/srcpkgs/bash-preexec/template b/srcpkgs/bash-preexec/template
index 771ff0426ff..6d71655eecf 100644
--- a/srcpkgs/bash-preexec/template
+++ b/srcpkgs/bash-preexec/template
@@ -2,7 +2,6 @@
 pkgname=bash-preexec
 version=0.3.7
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Preexec and Precmd functions for Bash just like Zsh"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/bashmount/template b/srcpkgs/bashmount/template
index 1c797678452..68d2880e75a 100644
--- a/srcpkgs/bashmount/template
+++ b/srcpkgs/bashmount/template
@@ -2,7 +2,6 @@
 pkgname=bashmount
 version=4.3.0
 revision=1
-archs=noarch
 conf_files="/etc/$pkgname.conf"
 depends="bash util-linux"
 short_desc="Tool to mount and unmount removable media"
diff --git a/srcpkgs/bats/template b/srcpkgs/bats/template
index 890b0d14e54..ded7e5ee315 100644
--- a/srcpkgs/bats/template
+++ b/srcpkgs/bats/template
@@ -2,7 +2,6 @@
 pkgname=bats
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="bats-core-${version}"
 depends="bash"
 short_desc="Bash Automated Testing System"
diff --git a/srcpkgs/bdf2psf/template b/srcpkgs/bdf2psf/template
index d431bc560c9..3258f1871e5 100644
--- a/srcpkgs/bdf2psf/template
+++ b/srcpkgs/bdf2psf/template
@@ -2,7 +2,6 @@
 pkgname=bdf2psf
 version=1.196
 revision=1
-archs=noarch
 wrksrc="console-setup-${version}"
 depends="perl"
 short_desc="Generate console fonts from BDF source fonts"
diff --git a/srcpkgs/beard/template b/srcpkgs/beard/template
index 93d69607399..5e1180c49bf 100644
--- a/srcpkgs/beard/template
+++ b/srcpkgs/beard/template
@@ -2,7 +2,6 @@
 pkgname=beard
 version=0.3
 revision=1
-archs=noarch
 short_desc="Simple hibernation daemon"
 maintainer="Samantha Baldwin <fuhsaz+void@cryptic.li>"
 license="Unlicense"
diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index bf0240f1f54..8ebdcc4a42c 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -2,7 +2,6 @@
 pkgname=beets
 version=1.4.9
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-munkres python3-musicbrainzngs
diff --git a/srcpkgs/betterlockscreen/template b/srcpkgs/betterlockscreen/template
index c38dd536e77..a438c298aca 100644
--- a/srcpkgs/betterlockscreen/template
+++ b/srcpkgs/betterlockscreen/template
@@ -2,7 +2,6 @@
 pkgname=betterlockscreen
 version=3.0.1
 revision=2
-archs=noarch
 depends="ImageMagick bash bc feh i3lock-color xdpyinfo xrandr xrdb"
 short_desc="Sweet looking lockscreen for linux system"
 maintainer="Aleksander Zien <Aleks@nderZien.com>"
diff --git a/srcpkgs/biber/template b/srcpkgs/biber/template
index 23b94472d1e..af2ddfb4abe 100644
--- a/srcpkgs/biber/template
+++ b/srcpkgs/biber/template
@@ -2,7 +2,6 @@
 pkgname=biber
 version=2.14
 revision=2
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 06a279cff2c..8592e590c0c 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -120,7 +120,6 @@ binutils-devel_package() {
 }
 
 binutils-doc_package() {
-	archs=noarch
 	short_desc+=" - info files"
 	pkg_install() {
 		vmove usr/share/info
diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index fccd523d584..c646a08f2e7 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -2,7 +2,6 @@
 pkgname=binwalk
 version=2.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"
 hostmakedepends="python3"
diff --git a/srcpkgs/biosdisk/template b/srcpkgs/biosdisk/template
index 324d249d36c..d13ebdac57e 100644
--- a/srcpkgs/biosdisk/template
+++ b/srcpkgs/biosdisk/template
@@ -3,7 +3,6 @@ pkgname=biosdisk
 version=1.01
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="syslinux wget cdrtools"
 short_desc="Utility for creating Dell BIOS flash disks"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/bitfighter/template b/srcpkgs/bitfighter/template
index a91443cbc3c..ae01e4bca51 100644
--- a/srcpkgs/bitfighter/template
+++ b/srcpkgs/bitfighter/template
@@ -28,7 +28,6 @@ post_install() {
 
 bitfighter-data_package() {
 	short_desc+=" - classic level pack"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/bitfighter
 	}
diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index ab7bf23c85e..1798d9ed60d 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -2,7 +2,6 @@
 pkgname=black
 version=19.10b0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3 _black_version.py"
 hostmakedepends="git python3-setuptools"
diff --git a/srcpkgs/blackbird-themes/template b/srcpkgs/blackbird-themes/template
index 0e4de2ad703..3fc7e9c99bf 100644
--- a/srcpkgs/blackbird-themes/template
+++ b/srcpkgs/blackbird-themes/template
@@ -2,7 +2,6 @@
 pkgname=blackbird-themes
 version=0.4
 revision=3
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant dark GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/blackbox/template b/srcpkgs/blackbox/template
index cc7fbdc68b0..01f6dc23602 100644
--- a/srcpkgs/blackbox/template
+++ b/srcpkgs/blackbox/template
@@ -2,7 +2,6 @@
 pkgname=blackbox
 version=1.20181219
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Safely store secrets in Git/Mercurial/Subversion"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
diff --git a/srcpkgs/blazeblogger/template b/srcpkgs/blazeblogger/template
index 0eb8d776fc8..78acb7129b3 100644
--- a/srcpkgs/blazeblogger/template
+++ b/srcpkgs/blazeblogger/template
@@ -2,7 +2,6 @@
 pkgname=blazeblogger
 version=1.2.0
 revision=2
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="CLI blogging CMS"
diff --git a/srcpkgs/bleachbit/template b/srcpkgs/bleachbit/template
index 524794f0cb2..b1f81bdb656 100644
--- a/srcpkgs/bleachbit/template
+++ b/srcpkgs/bleachbit/template
@@ -2,7 +2,6 @@
 pkgname=bleachbit
 version=4.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/bleachbit"
 make_install_args="prefix=/usr"
diff --git a/srcpkgs/bluebird-themes/template b/srcpkgs/bluebird-themes/template
index 47034af481c..2e61b2a8592 100644
--- a/srcpkgs/bluebird-themes/template
+++ b/srcpkgs/bluebird-themes/template
@@ -2,7 +2,6 @@
 pkgname=bluebird-themes
 version=1.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant blue GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 5412f16a2b2..af8127f262a 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -136,7 +136,6 @@ boost-python3-1.72_package() {
 	}
 }
 boost-build_package() {
-	archs=noarch
 	conf_files="/etc/site-config.jam"
 	short_desc+=" - Boost.Build framework"
 	pkg_install() {
diff --git a/srcpkgs/bootiso/template b/srcpkgs/bootiso/template
index 78a6205c546..e3450b9e665 100644
--- a/srcpkgs/bootiso/template
+++ b/srcpkgs/bootiso/template
@@ -2,7 +2,6 @@
 pkgname=bootiso
 version=4.1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="prefix=/usr"
 depends="bash binutils coreutils curl dosfstools e2fsprogs eudev exfat-utils
diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 9ca5df9724f..03471b6d123 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -2,7 +2,6 @@
 pkgname=borgmatic
 version=1.5.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="borg python3-setuptools python3-ruamel.yaml python3-pykwalify
diff --git a/srcpkgs/boswars/template b/srcpkgs/boswars/template
index 4587f93cfd0..2ac87925dec 100644
--- a/srcpkgs/boswars/template
+++ b/srcpkgs/boswars/template
@@ -56,7 +56,6 @@ do_install() {
 
 boswars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/boswars/campaigns
 		vmove usr/share/boswars/doc
diff --git a/srcpkgs/botan/template b/srcpkgs/botan/template
index 49d382d1bcc..5c997e49231 100644
--- a/srcpkgs/botan/template
+++ b/srcpkgs/botan/template
@@ -88,7 +88,6 @@ post_install() {
 
 botan-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/breeze-cursors/template b/srcpkgs/breeze-cursors/template
index 579ad8ffaa8..80256b0ccbd 100644
--- a/srcpkgs/breeze-cursors/template
+++ b/srcpkgs/breeze-cursors/template
@@ -2,7 +2,6 @@
 pkgname=breeze-cursors
 version=1.0
 revision=2
-archs=noarch
 create_wrksrc=yes
 build_style=meta
 depends="breeze-amber-cursor-theme
@@ -56,49 +55,42 @@ do_install() {
 }
 
 breeze-amber-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Amber cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Amber
 	}
 }
 breeze-blue-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Blue cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Blue
 	}
 }
 breeze-contrast-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Contrast cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Contrast
 	}
 }
 breeze-hacked-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Hacked cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Hacked
 	}
 }
 breeze-obsidian-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Obsidian cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Obsidian
 	}
 }
 breeze-purple-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Purple cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Purple
 	}
 }
 breeze-red-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Red cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Red
diff --git a/srcpkgs/breeze/template b/srcpkgs/breeze/template
index 03dbbb2240b..3958629f68c 100644
--- a/srcpkgs/breeze/template
+++ b/srcpkgs/breeze/template
@@ -23,7 +23,6 @@ fi
 
 breeze-snow-cursor-theme_package() {
 	short_desc="Breeze Snow cursor theme"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Snow
 	}
diff --git a/srcpkgs/brise/template b/srcpkgs/brise/template
index 442ffddc383..7c50e282036 100644
--- a/srcpkgs/brise/template
+++ b/srcpkgs/brise/template
@@ -2,7 +2,6 @@
 pkgname=brise
 version=0.38.20180515
 revision=2
-archs=noarch
 wrksrc=brise
 build_style=gnu-makefile
 hostmakedepends="pkg-config librime-devel"
diff --git a/srcpkgs/broadcom-bt-firmware/template b/srcpkgs/broadcom-bt-firmware/template
index 8aeef706d15..20e8a30acb4 100644
--- a/srcpkgs/broadcom-bt-firmware/template
+++ b/srcpkgs/broadcom-bt-firmware/template
@@ -3,7 +3,6 @@ pkgname=broadcom-bt-firmware
 version=12.0.1.1105
 revision=1
 _patch=_p1
-archs=noarch
 wrksrc="${pkgname}-${version}${_patch}"
 hostmakedepends="perl"
 short_desc="Broadcom Bluetooth firmware for Linux kernel"
diff --git a/srcpkgs/bsdbuild/template b/srcpkgs/bsdbuild/template
index 11115999c94..95e00c88829 100644
--- a/srcpkgs/bsdbuild/template
+++ b/srcpkgs/bsdbuild/template
@@ -2,7 +2,6 @@
 pkgname=bsdbuild
 version=3.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-manpages --with-manlinks"
 hostmakedepends="groff perl"
diff --git a/srcpkgs/btrfs-backup/template b/srcpkgs/btrfs-backup/template
index 55a3800a857..32cda1dc0c2 100644
--- a/srcpkgs/btrfs-backup/template
+++ b/srcpkgs/btrfs-backup/template
@@ -3,7 +3,6 @@ pkgname=btrfs-backup
 version=0.3.1
 revision=2
 wrksrc="${pkgname/-/_}-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="${pkgname/-/_}"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bucklespring/template b/srcpkgs/bucklespring/template
index ac9bfd3b499..1edf3c6af4c 100644
--- a/srcpkgs/bucklespring/template
+++ b/srcpkgs/bucklespring/template
@@ -27,7 +27,6 @@ do_install() {
 
 bucklespring-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/buildbot-slave/template b/srcpkgs/buildbot-slave/template
index 976fd7e689f..8437af6f6da 100644
--- a/srcpkgs/buildbot-slave/template
+++ b/srcpkgs/buildbot-slave/template
@@ -2,7 +2,6 @@
 pkgname=buildbot-slave
 version=0.8.14
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="buildslave"
 hostmakedepends="python"
diff --git a/srcpkgs/buildbot/template b/srcpkgs/buildbot/template
index 9bee50ec737..d687c8ad989 100644
--- a/srcpkgs/buildbot/template
+++ b/srcpkgs/buildbot/template
@@ -3,7 +3,6 @@ pkgname=buildbot
 reverts="2.4.1_1"
 version=0.8.14
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="buildbot"
 pycompile_dirs="usr/share/buildbot/contrib"
diff --git a/srcpkgs/buku/template b/srcpkgs/buku/template
index 5a5be1e8d2c..276f227bcf1 100644
--- a/srcpkgs/buku/template
+++ b/srcpkgs/buku/template
@@ -2,7 +2,6 @@
 pkgname=buku
 version=4.3
 revision=1
-archs=noarch
 depends="python3-urllib3 python3-BeautifulSoup4 python3-cryptography python3-html5lib"
 short_desc="Cmdline bookmark management utility"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/buku_run/template b/srcpkgs/buku_run/template
index a353c85bcd3..4f73ddec5f6 100644
--- a/srcpkgs/buku_run/template
+++ b/srcpkgs/buku_run/template
@@ -2,7 +2,6 @@
 pkgname=buku_run
 version=0.1.1
 revision=1
-archs=noarch
 conf_files="/etc/buku_run.config"
 depends="rofi gawk sed buku bash"
 short_desc="Rofi frontend for buku bookmarks manager"
diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 20f200e74d6..fecc2f4a967 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -2,7 +2,6 @@
 pkgname=bum
 version=0.1.3
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="bum"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bumblebee-status/template b/srcpkgs/bumblebee-status/template
index 48cc3d02b04..51c9ded64da 100644
--- a/srcpkgs/bumblebee-status/template
+++ b/srcpkgs/bumblebee-status/template
@@ -2,7 +2,6 @@
 pkgname=bumblebee-status
 version=1.9.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}/bumblebee"
 depends="python-netifaces python-psutil python-requests"
 short_desc="Modular, theme-able status line generator for the i3 window manager"
diff --git a/srcpkgs/burp2-server/template b/srcpkgs/burp2-server/template
index 9845f6afe9e..1c48742389a 100644
--- a/srcpkgs/burp2-server/template
+++ b/srcpkgs/burp2-server/template
@@ -79,7 +79,6 @@ burp2-client_package() {
 
 burp2-doc_package() {
 	short_desc="${_desc} - Doc and examples"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/burp
 		vmove usr/share/examples
diff --git a/srcpkgs/bwidget/template b/srcpkgs/bwidget/template
index b6c57fccb25..8ddb29704a1 100644
--- a/srcpkgs/bwidget/template
+++ b/srcpkgs/bwidget/template
@@ -2,7 +2,6 @@
 pkgname=bwidget
 version=1.9.14
 revision=1
-archs=noarch
 makedepends="tk"
 depends="tk"
 short_desc="Set of extension widgets for Tcl/Tk"
diff --git a/srcpkgs/byobu/template b/srcpkgs/byobu/template
index 29c355cb943..869573ebd2d 100644
--- a/srcpkgs/byobu/template
+++ b/srcpkgs/byobu/template
@@ -2,7 +2,6 @@
 pkgname=byobu
 version=5.133
 revision=1
-archs=noarch
 build_style=gnu-configure
 depends="tmux"
 short_desc="Open source text-based window manager and terminal multiplexer"
diff --git a/srcpkgs/bzrtools/template b/srcpkgs/bzrtools/template
index 0c31b0fa84e..410a040f186 100644
--- a/srcpkgs/bzrtools/template
+++ b/srcpkgs/bzrtools/template
@@ -2,7 +2,6 @@
 pkgname=bzrtools
 version=2.6.0
 revision=3
-archs=noarch
 wrksrc=bzrtools
 build_style=python2-module
 pycompile_module="bzrlib/plugins/bzrtools"
diff --git a/srcpkgs/c/template b/srcpkgs/c/template
index 47c95d3060e..b6109733e43 100644
--- a/srcpkgs/c/template
+++ b/srcpkgs/c/template
@@ -2,7 +2,6 @@
 pkgname=c
 version=0.14
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Compile and execute C scripts in one go!"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ca-certificates/template b/srcpkgs/ca-certificates/template
index 9d20f346e84..dcacb5c773e 100644
--- a/srcpkgs/ca-certificates/template
+++ b/srcpkgs/ca-certificates/template
@@ -3,7 +3,6 @@ pkgname=ca-certificates
 version=20200601
 revision=1
 bootstrap=yes
-archs=noarch
 conf_files="/etc/ca-certificates.conf"
 wrksrc="work"
 hostmakedepends="libressl"
diff --git a/srcpkgs/caffeine-ng/template b/srcpkgs/caffeine-ng/template
index 455b2f225c4..6e3786c57c5 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -2,7 +2,6 @@
 pkgname=caffeine-ng
 version=3.4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/calligra/template b/srcpkgs/calligra/template
index d5255ff73ba..d4cb9b6a83f 100644
--- a/srcpkgs/calligra/template
+++ b/srcpkgs/calligra/template
@@ -140,7 +140,6 @@ calligra-words_package() {
 }
 calligra-handbook_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - Documentation (removed temporarily)"
 	#pkg_install() {
 	#	cd ${wrksrc}/build/doc/calligra
diff --git a/srcpkgs/cantarell-fonts/template b/srcpkgs/cantarell-fonts/template
index 8715c4773b3..2c0c2d779a1 100644
--- a/srcpkgs/cantarell-fonts/template
+++ b/srcpkgs/cantarell-fonts/template
@@ -2,7 +2,6 @@
 pkgname=cantarell-fonts
 version=0.201
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dfontsdir=/usr/share/fonts/cantarell -Duseprebuilt=true -Dbuildappstream=true"
 hostmakedepends="gettext pkg-config meson appstream-glib"
diff --git a/srcpkgs/canto-next/template b/srcpkgs/canto-next/template
index fa28bde891b..97506b3ec8f 100644
--- a/srcpkgs/canto-next/template
+++ b/srcpkgs/canto-next/template
@@ -2,7 +2,6 @@
 pkgname=canto-next
 version=0.9.7
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-feedparser"
diff --git a/srcpkgs/carton/template b/srcpkgs/carton/template
index e86b18fdf73..03d59e07782 100644
--- a/srcpkgs/carton/template
+++ b/srcpkgs/carton/template
@@ -3,7 +3,6 @@ pkgname=carton
 version=1.0.34
 revision=1
 wrksrc="Carton-v${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl perl-Class-Tiny perl-JSON perl-Menlo-Legacy
  perl-Module-CPANfile perl-Path-Tiny perl-Try-Tiny"
diff --git a/srcpkgs/castero/template b/srcpkgs/castero/template
index 2d6c421eee3..d387ef06fc7 100644
--- a/srcpkgs/castero/template
+++ b/srcpkgs/castero/template
@@ -2,7 +2,6 @@
 pkgname=castero
 version=0.8.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-cjkwrap
diff --git a/srcpkgs/catch2/template b/srcpkgs/catch2/template
index f8795cb6c77..5db5be90243 100644
--- a/srcpkgs/catch2/template
+++ b/srcpkgs/catch2/template
@@ -2,7 +2,6 @@
 pkgname=catch2
 version=2.11.1
 revision=1
-archs=noarch
 wrksrc="Catch2-${version}"
 build_style=cmake
 configure_args="-DCATCH_USE_VALGRIND=OFF -DCATCH_BUILD_TESTING=ON
diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 38df0a0adef..be2df4a62a7 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -2,7 +2,6 @@
 pkgname=catfish
 version=1.4.13
 revision=2
-archs=noarch
 wrksrc="catfish-catfish-${version}"
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-gobject"
diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index bda81960c5a..45673882a8b 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -2,7 +2,6 @@
 pkgname=ccsm
 version=0.8.18
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"
 makedepends="compiz-core-devel compizconfig-python python3-cairo-devel pygtk-devel"
diff --git a/srcpkgs/cdemu-client/template b/srcpkgs/cdemu-client/template
index 36d40de4bb5..4b338aa5977 100644
--- a/srcpkgs/cdemu-client/template
+++ b/srcpkgs/cdemu-client/template
@@ -2,7 +2,6 @@
 pkgname=cdemu-client
 version=3.2.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DCMAKE_INSTALL_COMPLETIONSDIR=/usr/share/bash-completion/completions"
 hostmakedepends="python3 intltool pkg-config"
diff --git a/srcpkgs/cdm/template b/srcpkgs/cdm/template
index ae30eaaef91..5cca3eeae03 100644
--- a/srcpkgs/cdm/template
+++ b/srcpkgs/cdm/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://github.com/evertiro/cdm"
 distfiles="https://github.com/evertiro/cdm/archive/${version}.tar.gz"
 checksum=530042165ce65cdff3ec62ba9f077d0e8c6744c13f5d449d84fe2506a79d2e56
-archs=noarch
 
 do_install() {
 	sed -i 's| /| $PKGDESTDIR/|g' install.sh
diff --git a/srcpkgs/cdogs-sdl/template b/srcpkgs/cdogs-sdl/template
index 89932232310..3cbdea2430c 100644
--- a/srcpkgs/cdogs-sdl/template
+++ b/srcpkgs/cdogs-sdl/template
@@ -18,7 +18,6 @@ CFLAGS="-Wno-restrict -Wno-format-truncation -Wno-stringop-overflow -Wno-stringo
 
 cdogs-sdl-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cdogs
 	}
diff --git a/srcpkgs/cegui/template b/srcpkgs/cegui/template
index 78f0c103ba7..582040e301e 100644
--- a/srcpkgs/cegui/template
+++ b/srcpkgs/cegui/template
@@ -55,14 +55,12 @@ post_install() {
 }
 cegui-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cegui-${version%%.*}
 	}
 }
 cegui-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/build/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cegui07/template b/srcpkgs/cegui07/template
index b5d0f735ffb..e9f1849e1fb 100644
--- a/srcpkgs/cegui07/template
+++ b/srcpkgs/cegui07/template
@@ -68,14 +68,12 @@ post_install() {
 
 cegui07-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/CEGUI
 	}
 }
 cegui07-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cereal/template b/srcpkgs/cereal/template
index c454ed85833..284bffeaeb6 100644
--- a/srcpkgs/cereal/template
+++ b/srcpkgs/cereal/template
@@ -2,7 +2,6 @@
 pkgname=cereal
 version=1.3.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DSKIP_PORTABILITY_TEST=1 -DTHREAD_SAFE=ON -DWITH_WERROR=OFF"
 short_desc="Header-only C++ serialization library"
diff --git a/srcpkgs/certbot/template b/srcpkgs/certbot/template
index 157e67923f6..0d5bb56d508 100644
--- a/srcpkgs/certbot/template
+++ b/srcpkgs/certbot/template
@@ -2,7 +2,6 @@
 pkgname=certbot
 version=1.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-acme python3-ConfigArgParse python3-configobj
diff --git a/srcpkgs/chatty/template b/srcpkgs/chatty/template
index 16bbc44096d..12d262ccabf 100644
--- a/srcpkgs/chatty/template
+++ b/srcpkgs/chatty/template
@@ -2,7 +2,6 @@
 pkgname=chatty
 version=0.12
 revision=1
-archs=noarch
 hostmakedepends="gradle"
 depends="virtual?java-runtime"
 short_desc="Twitch Chat Client for Desktop"
diff --git a/srcpkgs/checkbashisms/template b/srcpkgs/checkbashisms/template
index 88b2877e8a8..d23f71a29f1 100644
--- a/srcpkgs/checkbashisms/template
+++ b/srcpkgs/checkbashisms/template
@@ -2,7 +2,6 @@
 pkgname=checkbashisms
 version=2.20.4
 revision=1
-archs=noarch
 wrksrc="devscripts-${version}"
 depends="perl"
 checkdepends="shunit2 perl"
diff --git a/srcpkgs/checksec/template b/srcpkgs/checksec/template
index 354e288dc80..89a74ccbe62 100644
--- a/srcpkgs/checksec/template
+++ b/srcpkgs/checksec/template
@@ -2,7 +2,6 @@
 pkgname=checksec
 version=2.2.3
 revision=1
-archs=noarch
 wrksrc="checksec.sh-${version}"
 depends="binutils"
 short_desc="Check for protections like RELRO, NoExec, Stack protection, ASLR, PIE"
diff --git a/srcpkgs/cherry-font/template b/srcpkgs/cherry-font/template
index 496d45988d1..fa1aba8854c 100644
--- a/srcpkgs/cherry-font/template
+++ b/srcpkgs/cherry-font/template
@@ -2,7 +2,6 @@
 pkgname=cherry-font
 version=1.4
 revision=1
-archs=noarch
 wrksrc="cherry-${version}"
 hostmakedepends="bdftopcf"
 depends="font-util"
diff --git a/srcpkgs/cherrytree/template b/srcpkgs/cherrytree/template
index dc9530ce871..6e2d3a36ce3 100644
--- a/srcpkgs/cherrytree/template
+++ b/srcpkgs/cherrytree/template
@@ -2,7 +2,6 @@
 pkgname=cherrytree
 version=0.38.9
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_dirs="usr/share/cherrytree/modules"
 hostmakedepends="gettext python-devel desktop-file-utils"
diff --git a/srcpkgs/cinnamon-translations/template b/srcpkgs/cinnamon-translations/template
index e71998a63fb..aa0dab242cb 100644
--- a/srcpkgs/cinnamon-translations/template
+++ b/srcpkgs/cinnamon-translations/template
@@ -2,7 +2,6 @@
 pkgname=cinnamon-translations
 version=4.6.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="gettext"
 short_desc="Translations for Cinnamon and Nemo"
diff --git a/srcpkgs/ckbcomp/template b/srcpkgs/ckbcomp/template
index 225cb9d35dd..ce832e74d67 100644
--- a/srcpkgs/ckbcomp/template
+++ b/srcpkgs/ckbcomp/template
@@ -2,7 +2,6 @@
 pkgname=ckbcomp
 version=1.195
 revision=1
-archs=noarch
 wrksrc="console-setup"
 depends="perl"
 short_desc="Compile a XKB keyboard description to a keymap suitable for loadkeys"
diff --git a/srcpkgs/cldr-emoji-annotation/template b/srcpkgs/cldr-emoji-annotation/template
index 7910b83971b..ec997cbd749 100644
--- a/srcpkgs/cldr-emoji-annotation/template
+++ b/srcpkgs/cldr-emoji-annotation/template
@@ -3,7 +3,6 @@ pkgname=cldr-emoji-annotation
 version=36.12.120191002.0
 revision=1
 _tag=${version%.*}_${version##*.}
-archs=noarch
 wrksrc="${pkgname}-${_tag}"
 build_style=gnu-configure
 short_desc="Emoji annotation files in CLDR"
diff --git a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
index a2d541c8896..aa598cb15b8 100644
--- a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
+++ b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
@@ -4,7 +4,6 @@ version=7.0.2
 revision=1
 _devuan_rel="1+devuan2.0"
 build_style=fetch
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Dark-purpified GTK3 port of Clearlooks theme"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/clerk/template b/srcpkgs/clerk/template
index a04c6f2cef6..d365c54ed65 100644
--- a/srcpkgs/clerk/template
+++ b/srcpkgs/clerk/template
@@ -2,7 +2,6 @@
 pkgname=clerk
 version=4.0.5
 revision=1
-archs=noarch
 depends="rofi fzf tmux mpc perl-Net-MPD perl-Data-MessagePack perl-File-Slurper
 perl-Config-Simple perl-Try-Tiny perl-IPC-Run perl-HTTP-Date perl-Data-Section-Simple"
 short_desc="MPD client written in Perl using rofi or fzf"
diff --git a/srcpkgs/clipmenu/template b/srcpkgs/clipmenu/template
index 4176172d179..012affa76b6 100644
--- a/srcpkgs/clipmenu/template
+++ b/srcpkgs/clipmenu/template
@@ -2,7 +2,6 @@
 pkgname=clipmenu
 version=6.1.0
 revision=1
-archs=noarch
 depends="bash dmenu"
 short_desc="Clipboard management using dmenu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cloc/template b/srcpkgs/cloc/template
index 72213537232..efe880ccef1 100644
--- a/srcpkgs/cloc/template
+++ b/srcpkgs/cloc/template
@@ -2,7 +2,6 @@
 pkgname=cloc
 version=1.86
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Count Lines of Code"
diff --git a/srcpkgs/clyrics/template b/srcpkgs/clyrics/template
index 5a0144c5b30..6d9b04e6067 100644
--- a/srcpkgs/clyrics/template
+++ b/srcpkgs/clyrics/template
@@ -2,7 +2,6 @@
 pkgname=clyrics
 version=0.12
 revision=1
-archs=noarch
 depends="perl-LWP-Protocol-https perl-WWW-Mechanize"
 short_desc="Extensible lyrics fetcher, with daemon support for cmus and mocp"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cmake-vala/template b/srcpkgs/cmake-vala/template
index 94222b5da1a..c263c7a5ad5 100644
--- a/srcpkgs/cmake-vala/template
+++ b/srcpkgs/cmake-vala/template
@@ -2,7 +2,6 @@
 pkgname=cmake-vala
 version=1
 revision=1
-archs=noarch
 wrksrc="cmake-vala-r${version}"
 build_style=cmake
 depends="cmake"
diff --git a/srcpkgs/cmc/template b/srcpkgs/cmc/template
index 34a50561d1d..d834639933b 100644
--- a/srcpkgs/cmc/template
+++ b/srcpkgs/cmc/template
@@ -2,7 +2,6 @@
 pkgname=cmc
 version=1.1.4
 revision=1
-archs=noarch
 short_desc="SSH ControlMaster Controller"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
 license="MIT"
diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 8c45bc12fa4..abef9a7f6a8 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -2,7 +2,6 @@
 pkgname=coccigrep
 version=1.20
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="coccinelle python3-Pygments"
diff --git a/srcpkgs/coin3/template b/srcpkgs/coin3/template
index 4150c863e9f..acb1e4a0b88 100644
--- a/srcpkgs/coin3/template
+++ b/srcpkgs/coin3/template
@@ -67,7 +67,6 @@ coin3-devel_package() {
 
 coin3-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/collectl/template b/srcpkgs/collectl/template
index aec4b83ff46..a3d0ba59310 100644
--- a/srcpkgs/collectl/template
+++ b/srcpkgs/collectl/template
@@ -2,7 +2,6 @@
 pkgname=collectl
 version=4.3.1
 revision=1
-archs=noarch
 conf_files="/etc/collectl.conf"
 depends="perl perl-Term-ReadKey"
 short_desc="Collects data that describes the current system status"
diff --git a/srcpkgs/colordiff/template b/srcpkgs/colordiff/template
index bf7fea1873c..f01e98f5616 100644
--- a/srcpkgs/colordiff/template
+++ b/srcpkgs/colordiff/template
@@ -2,7 +2,6 @@
 pkgname=colordiff
 version=1.0.19
 revision=1
-archs=noarch
 depends="perl"
 conf_files="/etc/colordiffrc /etc/colordiffrc-lightbg /etc/colordiffrc-gitdiff"
 short_desc="Colorizes output of diff"
diff --git a/srcpkgs/compiz-bcop/template b/srcpkgs/compiz-bcop/template
index c1a82cb881b..667863577fb 100644
--- a/srcpkgs/compiz-bcop/template
+++ b/srcpkgs/compiz-bcop/template
@@ -2,7 +2,6 @@
 pkgname=compiz-bcop
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/composer/template b/srcpkgs/composer/template
index 353603a5118..03e0b111389 100644
--- a/srcpkgs/composer/template
+++ b/srcpkgs/composer/template
@@ -2,7 +2,6 @@
 pkgname=composer
 version=1.10.10
 revision=1
-archs=noarch
 build_style=fetch
 depends="php"
 short_desc="Dependency manager for PHP"
diff --git a/srcpkgs/coreboot-utils/template b/srcpkgs/coreboot-utils/template
index e6c57472ea1..47ffc16a9db 100644
--- a/srcpkgs/coreboot-utils/template
+++ b/srcpkgs/coreboot-utils/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 coreboot-utils-me_cleaner_package() {
-	archs=noarch
 	python_version=3
 	depends="python3"
 	short_desc="Tool for partial deblobbing Intel ME/TXE firmware images"
diff --git a/srcpkgs/couchpotato/template b/srcpkgs/couchpotato/template
index 3d7e27004d1..1e4572fcdac 100644
--- a/srcpkgs/couchpotato/template
+++ b/srcpkgs/couchpotato/template
@@ -2,7 +2,6 @@
 pkgname=couchpotato
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="CouchPotatoServer-build-${version}"
 pycompile_dirs="/usr/share/couchpotato"
 make_dirs="
diff --git a/srcpkgs/coursera-dl/template b/srcpkgs/coursera-dl/template
index 4609573f7f4..fff37f018d4 100644
--- a/srcpkgs/coursera-dl/template
+++ b/srcpkgs/coursera-dl/template
@@ -2,7 +2,6 @@
 pkgname=coursera-dl
 version=0.11.5
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="coursera"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/cowsay-temoc/template b/srcpkgs/cowsay-temoc/template
index f03a4d1775e..efaba0d3fed 100644
--- a/srcpkgs/cowsay-temoc/template
+++ b/srcpkgs/cowsay-temoc/template
@@ -9,7 +9,6 @@ license="GPL-3"
 homepage="https://github.com/kulinacs/cowsay-temoc"
 distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=6667a37a0de41fb46750bce4847fee97da251e9bea4dc5a33b5c0e432b795c8d
-archs=noarch
 
 do_install() {
 	vinstall temoc.cow 644 /usr/share/cows/
diff --git a/srcpkgs/cowsay/template b/srcpkgs/cowsay/template
index efa372b3aa5..97d67b9fd40 100644
--- a/srcpkgs/cowsay/template
+++ b/srcpkgs/cowsay/template
@@ -2,7 +2,6 @@
 pkgname=cowsay
 version=3.04
 revision=2
-archs=noarch
 wrksrc="rank-amateur-cowsay-${pkgname}-${version}"
 depends="perl"
 short_desc="Configurable speaking/thinking cow (and a bit more)"
diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index fc9bc66212b..f9d769162d5 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -2,7 +2,6 @@
 pkgname=cozy
 version=0.6.18
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config glib-devel python3 python3-distro python3-peewee
  python3-mutagen python3-gobject-devel"
diff --git a/srcpkgs/cpanminus/template b/srcpkgs/cpanminus/template
index 490ecd111b2..7e385544b1d 100644
--- a/srcpkgs/cpanminus/template
+++ b/srcpkgs/cpanminus/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/App-cpanminus"
 distfiles="${CPAN_SITE}/App/App-${pkgname}-${version}.tar.gz"
 checksum=9b60767fe40752ef7a9d3f13f19060a63389a5c23acc3e9827e19b75500f81f3
-archs=noarch
diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index 12b54631617..dd9b32549b5 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -2,7 +2,6 @@
 pkgname=cpuset
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/create_ap/template b/srcpkgs/create_ap/template
index 481ba622def..2bb58047096 100644
--- a/srcpkgs/create_ap/template
+++ b/srcpkgs/create_ap/template
@@ -2,7 +2,6 @@
 pkgname=create_ap
 version=0.4.6
 revision=2
-archs=noarch
 conf_files="/etc/create_ap.conf"
 build_style=gnu-makefile
 depends="bash dnsmasq hostapd iproute2 iptables iw procps-ng util-linux"
diff --git a/srcpkgs/criu/template b/srcpkgs/criu/template
index 0f7b55853f3..9d52f8ce024 100644
--- a/srcpkgs/criu/template
+++ b/srcpkgs/criu/template
@@ -37,7 +37,6 @@ criu-devel_package() {
 }
 
 criu-python_package() {
-	archs=noarch
 	depends="python-protobuf python-ipaddr criu-${version}_${revision}"
 	short_desc="Python2 bindings for criu and crit cli util"
 	pkg_install() {
diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index 5231b4a4cb3..b57e7aa642c 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -2,7 +2,6 @@
 pkgname=ctop
 version=1.0.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/culmus/template b/srcpkgs/culmus/template
index dc6599990ef..d5cc36e1ef4 100644
--- a/srcpkgs/culmus/template
+++ b/srcpkgs/culmus/template
@@ -2,7 +2,6 @@
 pkgname=culmus
 version=0.133
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="A collection of Type1 and TrueType free Hebrew fonts"
 maintainer="DirectorX <void.directorx@protonmail.com>"
diff --git a/srcpkgs/cura-fdm-materials/template b/srcpkgs/cura-fdm-materials/template
index dbb8191c009..8832e5bc43b 100644
--- a/srcpkgs/cura-fdm-materials/template
+++ b/srcpkgs/cura-fdm-materials/template
@@ -3,7 +3,6 @@ pkgname=cura-fdm-materials
 reverts="2019.08.21_1"
 version=4.6.2
 revision=1
-archs=noarch
 wrksrc="fdm_materials-${version}"
 build_style=cmake
 short_desc="FDM Material database"
diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index de72770b145..653689aa557 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -2,7 +2,6 @@
 pkgname=cura
 version=4.6.2
 revision=1
-archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake
 configure_args="-DCURA_VERSION=${version}
diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index f5afe3bba34..518da660991 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -2,7 +2,6 @@
 pkgname=curseradio
 version=0.0.20171017
 revision=4
-archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"
 build_style=python3-module
diff --git a/srcpkgs/cvs2svn/template b/srcpkgs/cvs2svn/template
index 55e679f2abe..f8b13d2ac0b 100644
--- a/srcpkgs/cvs2svn/template
+++ b/srcpkgs/cvs2svn/template
@@ -2,7 +2,6 @@
 pkgname=cvs2svn
 version=2.5.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_build_args="man"
 hostmakedepends="python"
diff --git a/srcpkgs/cycle/template b/srcpkgs/cycle/template
index 58649da6482..8affc847c16 100644
--- a/srcpkgs/cycle/template
+++ b/srcpkgs/cycle/template
@@ -2,7 +2,6 @@
 pkgname=cycle
 version=0.3.2
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/cycle"
 hostmakedepends="python"
 depends="wxPython"
diff --git a/srcpkgs/d-feet/template b/srcpkgs/d-feet/template
index beac13b35c3..e984f2af90f 100644
--- a/srcpkgs/d-feet/template
+++ b/srcpkgs/d-feet/template
@@ -2,7 +2,6 @@
 pkgname=d-feet
 version=0.3.15
 revision=3
-archs=noarch
 build_style=meson
 pycompile_module="dfeet"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"
diff --git a/srcpkgs/db/template b/srcpkgs/db/template
index b7519609b9e..bdd42a64e9e 100644
--- a/srcpkgs/db/template
+++ b/srcpkgs/db/template
@@ -32,7 +32,6 @@ db-devel_package() {
 }
 db-doc_package() {
 	short_desc+=" - documentation files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/ddclient/template b/srcpkgs/ddclient/template
index 37d85a49f4c..8d3fd068633 100644
--- a/srcpkgs/ddclient/template
+++ b/srcpkgs/ddclient/template
@@ -2,7 +2,6 @@
 pkgname=ddclient
 version=3.9.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="perl-Data-Validate-IP perl-IO-Socket-SSL"
 short_desc="Perl client used to update dynamic DNS"
diff --git a/srcpkgs/ddgr/template b/srcpkgs/ddgr/template
index d4142bb59b9..25ef4695ac8 100644
--- a/srcpkgs/ddgr/template
+++ b/srcpkgs/ddgr/template
@@ -2,7 +2,6 @@
 pkgname=ddgr
 version=1.9
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-requests"
 short_desc="DuckDuckGo from the terminal"
diff --git a/srcpkgs/deepin-gtk-theme/template b/srcpkgs/deepin-gtk-theme/template
index becf7701621..26865e28adb 100644
--- a/srcpkgs/deepin-gtk-theme/template
+++ b/srcpkgs/deepin-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-gtk-theme
 version=17.10.11
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Deepin GTK Theme"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/deepin-icon-theme/template b/srcpkgs/deepin-icon-theme/template
index 60902c27771..ff19188a5a7 100644
--- a/srcpkgs/deepin-icon-theme/template
+++ b/srcpkgs/deepin-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-icon-theme
 version=2020.04.13
 revision=1
-archs=noarch
 hostmakedepends="xcursorgen"
 depends="papirus-icon-theme"
 short_desc="Deepin Icon Theme"
diff --git a/srcpkgs/deerportal/template b/srcpkgs/deerportal/template
index c027c258e68..ac55e4ee30e 100644
--- a/srcpkgs/deerportal/template
+++ b/srcpkgs/deerportal/template
@@ -14,7 +14,6 @@ checksum=a79a6286c9be1c6073f5d8fe79e45b309425f597d0532d2a042cd8369f57725d
 
 deerportal-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/deheader/template b/srcpkgs/deheader/template
index f3809a35a44..4fa6ef39046 100644
--- a/srcpkgs/deheader/template
+++ b/srcpkgs/deheader/template
@@ -3,7 +3,6 @@ pkgname=deheader
 version=1.6
 revision=3
 create_wrksrc=yes
-archs=noarch
 hostmakedepends="tar"
 depends="python"
 short_desc="C and C++ header analyzer"
diff --git a/srcpkgs/dehydrated/template b/srcpkgs/dehydrated/template
index c7b3ce7abb9..74875e6a3c7 100644
--- a/srcpkgs/dehydrated/template
+++ b/srcpkgs/dehydrated/template
@@ -2,7 +2,6 @@
 pkgname=dehydrated
 version=0.6.5
 revision=1
-archs=noarch
 depends="curl"
 short_desc="Acme client implemented as a shell-script – just add water"
 maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
diff --git a/srcpkgs/dejavu-fonts-ttf/template b/srcpkgs/dejavu-fonts-ttf/template
index 88bc1960c99..ba0a43f8c64 100644
--- a/srcpkgs/dejavu-fonts-ttf/template
+++ b/srcpkgs/dejavu-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=dejavu-fonts-ttf
 version=2.37
 revision=1
-archs=noarch
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
 short_desc="DejaVu family of TrueType fonts"
diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index bb48e58ef6f..00afd733aec 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -2,7 +2,6 @@
 pkgname=deluge
 version=2.0.3
 revision=6
-archs=noarch
 build_style=python3-module
 # TODO package python3-slimit to minify javascript
 hostmakedepends="intltool python3-setuptools python3-wheel"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 deluge-gtk_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - GTK+ frontend"
 	depends="${sourcepkg}-${version}_${revision} python3-gobject"
@@ -42,7 +40,6 @@ deluge-gtk_package() {
 	}
 }
 deluge-web_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - Web frontend"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index e3bb19e3fc8..a32f186450f 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -2,7 +2,6 @@
 pkgname=devedeng
 version=4.16.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"
 hostmakedepends="gettext python3"
diff --git a/srcpkgs/dex/template b/srcpkgs/dex/template
index 88b5552b070..06af8b30b5d 100644
--- a/srcpkgs/dex/template
+++ b/srcpkgs/dex/template
@@ -2,7 +2,6 @@
 pkgname=dex
 version=0.8.0
 revision=2
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANPREFIX=/usr/share/man"
 hostmakedepends="python3-Sphinx"
diff --git a/srcpkgs/dhcpcd-gtk/template b/srcpkgs/dhcpcd-gtk/template
index af5bddc45c5..62ddaa13e59 100644
--- a/srcpkgs/dhcpcd-gtk/template
+++ b/srcpkgs/dhcpcd-gtk/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 dhcpcd-icons_package() {
-	archs=noarch
 	short_desc+=" - icon set"
 	depends="hicolor-icon-theme"
 	replaces="dhcpcd-gtk<0.7.4"
diff --git a/srcpkgs/diffoscope/template b/srcpkgs/diffoscope/template
index a45bc5d7959..d3f8896c50a 100644
--- a/srcpkgs/diffoscope/template
+++ b/srcpkgs/diffoscope/template
@@ -2,7 +2,6 @@
 pkgname=diffoscope
 version=147
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-magic python3-libarchive-c python3-setuptools
diff --git a/srcpkgs/dina-font/template b/srcpkgs/dina-font/template
index 2d4a740eacc..dcc1660f28e 100644
--- a/srcpkgs/dina-font/template
+++ b/srcpkgs/dina-font/template
@@ -2,7 +2,6 @@
 pkgname=dina-font
 version=2.93
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="bdftopcf font-util unzip"
 depends="font-util"
diff --git a/srcpkgs/ditaa/template b/srcpkgs/ditaa/template
index c7978f18bd4..3734b1316a3 100644
--- a/srcpkgs/ditaa/template
+++ b/srcpkgs/ditaa/template
@@ -2,7 +2,6 @@
 pkgname=ditaa
 version=0.11.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=fetch
 depends="virtual?java-environment"
diff --git a/srcpkgs/dkimproxy/template b/srcpkgs/dkimproxy/template
index de0eec306ba..a31f3a895aa 100644
--- a/srcpkgs/dkimproxy/template
+++ b/srcpkgs/dkimproxy/template
@@ -3,8 +3,6 @@ pkgname=dkimproxy
 version=1.4.1
 revision=1
 build_style=gnu-configure
-# dkimproxy is written in perl, so noarch
-archs=noarch
 hostmakedepends="perl perl-Net-Server perl-Mail-DKIM"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/dnssec-anchors/template b/srcpkgs/dnssec-anchors/template
index 18b24b4f80d..33e43584acd 100644
--- a/srcpkgs/dnssec-anchors/template
+++ b/srcpkgs/dnssec-anchors/template
@@ -8,7 +8,6 @@ short_desc="DNSSEC trust anchors for the root zone"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
 homepage="http://data.iana.org/root-anchors/"
-archs=noarch
 
 do_install() {
 	# Generate using unbound-anchor(1).
diff --git a/srcpkgs/docbook-dsssl/template b/srcpkgs/docbook-dsssl/template
index 2530523b127..e8cbf4a1161 100644
--- a/srcpkgs/docbook-dsssl/template
+++ b/srcpkgs/docbook-dsssl/template
@@ -2,7 +2,6 @@
 pkgname=docbook-dsssl
 version=1.79
 revision=3
-archs=noarch
 makedepends="xmlcatmgr docbook-xml"
 depends="${makedepends}"
 short_desc="DSSSL stylesheets for the DocBook DTD"
diff --git a/srcpkgs/docbook-xml/template b/srcpkgs/docbook-xml/template
index ef5634c0603..9ee76e8cd83 100644
--- a/srcpkgs/docbook-xml/template
+++ b/srcpkgs/docbook-xml/template
@@ -2,7 +2,6 @@
 pkgname=docbook-xml
 version=4.5
 revision=4
-archs=noarch
 wrksrc="docbook"
 hostmakedepends="bsdtar"
 makedepends="xmlcatmgr"
diff --git a/srcpkgs/docbook-xsl-ns/template b/srcpkgs/docbook-xsl-ns/template
index 6c34d9b171b..5e3baf038f8 100644
--- a/srcpkgs/docbook-xsl-ns/template
+++ b/srcpkgs/docbook-xsl-ns/template
@@ -3,7 +3,6 @@ pkgname=docbook-xsl-ns
 # keep in sync with docbook-xsl
 version=1.79.1
 revision=1
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Cameron Nemo <cnemo@tutanota.com>"
diff --git a/srcpkgs/docbook-xsl/template b/srcpkgs/docbook-xsl/template
index 0d63b09dfbe..da08cd74cdb 100644
--- a/srcpkgs/docbook-xsl/template
+++ b/srcpkgs/docbook-xsl/template
@@ -4,7 +4,6 @@ reverts="1.79.2_1"
 # keep in sync with docbook-xsl-ns
 version=1.79.1
 revision=7
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/docbook/template b/srcpkgs/docbook/template
index a36660f122b..710a65e699c 100644
--- a/srcpkgs/docbook/template
+++ b/srcpkgs/docbook/template
@@ -2,7 +2,6 @@
 pkgname=docbook
 version=4.5
 revision=4
-archs=noarch
 hostmakedepends="bsdtar"
 depends="xmlcatmgr ISOEnts"
 short_desc="SGML DTD designed for computer documentation"
diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index d381a1091d0..c61787c2473 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -2,7 +2,6 @@
 pkgname=docker-compose
 version=1.25.5
 revision=1
-archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/docx2txt/template b/srcpkgs/docx2txt/template
index 709713d475f..aaea19e0205 100644
--- a/srcpkgs/docx2txt/template
+++ b/srcpkgs/docx2txt/template
@@ -2,7 +2,6 @@
 pkgname=docx2txt
 version=1.4
 revision=2
-archs=noarch
 conf_files="/etc/docx2txt.config"
 depends="perl unzip"
 short_desc="Docx (MS Word) to Text convertor"
diff --git a/srcpkgs/dot-xsession/template b/srcpkgs/dot-xsession/template
index e5fe04677e9..fd21ba7c217 100644
--- a/srcpkgs/dot-xsession/template
+++ b/srcpkgs/dot-xsession/template
@@ -2,7 +2,6 @@
 pkgname=dot-xsession
 version=0.1
 revision=2
-archs=noarch
 depends="xmessage"
 short_desc="XSession file to run the users ~/.xsession"
 maintainer="Florian Wagner <florian@wagner-flo.net>"
diff --git a/srcpkgs/downloader-cli/template b/srcpkgs/downloader-cli/template
index 2e5b1ed2d59..92781e2363b 100644
--- a/srcpkgs/downloader-cli/template
+++ b/srcpkgs/downloader-cli/template
@@ -2,7 +2,6 @@
 pkgname=downloader-cli
 version=0.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-urllib3 python3-downloader-cli"
diff --git a/srcpkgs/dpdk/template b/srcpkgs/dpdk/template
index 0f3b5630b7b..bc6b9148a62 100644
--- a/srcpkgs/dpdk/template
+++ b/srcpkgs/dpdk/template
@@ -33,7 +33,6 @@ post_install() {
 
 dpdk-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/dracut/template b/srcpkgs/dracut/template
index f4f52be097a..68ef7f8e37b 100644
--- a/srcpkgs/dracut/template
+++ b/srcpkgs/dracut/template
@@ -57,7 +57,6 @@ post_install() {
 dracut-network_package() {
 	depends="dhclient ${sourcepkg}-${version}_${revision}"
 	short_desc+=" - network modules"
-	archs=noarch
 	pkg_install() {
 		for f in 40network 90livenet 95fcoe 95iscsi \
 			95nbd 95nfs 95zfcp 95znet; do
diff --git a/srcpkgs/dreampie/template b/srcpkgs/dreampie/template
index edd0f48298b..bf8d07ea53f 100644
--- a/srcpkgs/dreampie/template
+++ b/srcpkgs/dreampie/template
@@ -2,7 +2,6 @@
 pkgname=dreampie
 version=1.2.1
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="dreampielib"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/drist/template b/srcpkgs/drist/template
index 89f39b7eec8..99700b7f90f 100644
--- a/srcpkgs/drist/template
+++ b/srcpkgs/drist/template
@@ -2,7 +2,6 @@
 pkgname=drist
 version=1.04
 revision=1
-archs=noarch
 wrksrc=$pkgname-v$version
 build_style=gnu-makefile
 depends="openssh rsync"
diff --git a/srcpkgs/dstat/template b/srcpkgs/dstat/template
index 3ec983e85db..084d1426889 100644
--- a/srcpkgs/dstat/template
+++ b/srcpkgs/dstat/template
@@ -2,7 +2,6 @@
 pkgname=dstat
 version=0.7.4
 revision=2
-archs=noarch
 makedepends="python3"
 depends="python3-six"
 short_desc="Versatile tool for generating system resource statistics"
diff --git a/srcpkgs/dtrx/template b/srcpkgs/dtrx/template
index 6ccec18f5b2..e7d8af1c2eb 100644
--- a/srcpkgs/dtrx/template
+++ b/srcpkgs/dtrx/template
@@ -2,7 +2,6 @@
 pkgname=dtrx
 version=7.1
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python"
diff --git a/srcpkgs/duiadns/template b/srcpkgs/duiadns/template
index ae34b00cb95..30c1a9ec4e0 100644
--- a/srcpkgs/duiadns/template
+++ b/srcpkgs/duiadns/template
@@ -2,7 +2,6 @@
 pkgname=duiadns
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-netifaces python3-netaddr python3-requests"
diff --git a/srcpkgs/durden/template b/srcpkgs/durden/template
index 54a4bc1759b..c4de0863636 100644
--- a/srcpkgs/durden/template
+++ b/srcpkgs/durden/template
@@ -9,7 +9,6 @@ license="BSD-3-Clause"
 homepage="http://durden.arcan-fe.com/"
 distfiles="https://github.com/letoram/${pkgname}/archive/${version}.tar.gz"
 checksum=f0cb0cdc6d16b4807efab5b6152b9f26813dccd2d66af5f1d80494769f840915
-archs=noarch
 
 do_install() {
 	vbin distr/durden
diff --git a/srcpkgs/easyrsa/template b/srcpkgs/easyrsa/template
index 517dd6ff50b..fb5adbec8db 100644
--- a/srcpkgs/easyrsa/template
+++ b/srcpkgs/easyrsa/template
@@ -2,7 +2,6 @@
 pkgname=easyrsa
 version=3.0.7
 revision=1
-archs="noarch"
 wrksrc="EasyRSA-${version}"
 depends="libressl"
 short_desc="Simple shell based CA utility"
diff --git a/srcpkgs/econnman/template b/srcpkgs/econnman/template
index 9568c2e2adf..f8750ebb914 100644
--- a/srcpkgs/econnman/template
+++ b/srcpkgs/econnman/template
@@ -2,7 +2,6 @@
 pkgname=econnman
 version=1.1.0
 revision=5
-archs=noarch
 _gitrev=18e7be6bf80df6b86965ba93391b205339fc7267
 wrksrc=${pkgname}-${_gitrev}
 build_style=gnu-configure
diff --git a/srcpkgs/edx-dl/template b/srcpkgs/edx-dl/template
index 1ea89343e7a..1f0b0d53010 100644
--- a/srcpkgs/edx-dl/template
+++ b/srcpkgs/edx-dl/template
@@ -2,7 +2,6 @@
 pkgname=edx-dl
 version=0.1.13
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-html5lib python3-setuptools
diff --git a/srcpkgs/eigen/template b/srcpkgs/eigen/template
index 8344fbf98ec..7d283094bf7 100644
--- a/srcpkgs/eigen/template
+++ b/srcpkgs/eigen/template
@@ -2,7 +2,6 @@
 pkgname=eigen
 version=3.3.7
 revision=2
-archs=noarch
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/eigen2/template b/srcpkgs/eigen2/template
index 08087b4900b..dffc3ffe0fa 100644
--- a/srcpkgs/eigen2/template
+++ b/srcpkgs/eigen2/template
@@ -3,7 +3,6 @@ pkgname=eigen2
 reverts="3.2.2_1"
 version=2.0.17
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b23437e61a07"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 2.x)"
diff --git a/srcpkgs/eigen3.2/template b/srcpkgs/eigen3.2/template
index eaedcc6fe2a..5ac0fc384ac 100644
--- a/srcpkgs/eigen3.2/template
+++ b/srcpkgs/eigen3.2/template
@@ -2,7 +2,6 @@
 pkgname=eigen3.2
 version=3.2.10
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b9cd8366d4e8"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
diff --git a/srcpkgs/ekushey-fonts-ttf/template b/srcpkgs/ekushey-fonts-ttf/template
index 406a5f88969..3eb10b23313 100644
--- a/srcpkgs/ekushey-fonts-ttf/template
+++ b/srcpkgs/ekushey-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=ekushey-fonts-ttf
 version=20191020
 revision=1
-archs=noarch
 build_style=fetch
 depends="font-util"
 short_desc="Bengali fonts from Ekushey project"
diff --git a/srcpkgs/electrum-ltc/template b/srcpkgs/electrum-ltc/template
index 550fda484e6..0f9ed450bbf 100644
--- a/srcpkgs/electrum-ltc/template
+++ b/srcpkgs/electrum-ltc/template
@@ -2,7 +2,6 @@
 pkgname=electrum-ltc
 version=3.3.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx
diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 835fbf25533..839b59a6ba2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -2,7 +2,6 @@
 pkgname=electrum
 version=3.3.8
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"
 hostmakedepends="python3-PyQt5-devel-tools python3-setuptools"
diff --git a/srcpkgs/emacs-ess/template b/srcpkgs/emacs-ess/template
index 40338f2f137..a03e71623f5 100644
--- a/srcpkgs/emacs-ess/template
+++ b/srcpkgs/emacs-ess/template
@@ -3,7 +3,6 @@ pkgname=emacs-ess
 reverts="18.10r1_1"
 version=18.10.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="ess-${version}"
 makedepends="emacs perl"
diff --git a/srcpkgs/emacs/template b/srcpkgs/emacs/template
index 420ef0fa14f..4e2f9c7fdea 100755
--- a/srcpkgs/emacs/template
+++ b/srcpkgs/emacs/template
@@ -81,7 +81,6 @@ do_install() {
 
 emacs-common_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/emacs
 		vmove usr/share/man
diff --git a/srcpkgs/emerald-themes/template b/srcpkgs/emerald-themes/template
index 7e17b4bfad9..a9e11467bae 100644
--- a/srcpkgs/emerald-themes/template
+++ b/srcpkgs/emerald-themes/template
@@ -2,7 +2,6 @@
 pkgname=emerald-themes
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config"
 makedepends="emerald-devel"
diff --git a/srcpkgs/encodings/template b/srcpkgs/encodings/template
index eb2ef08e8e6..f4be9fec9d6 100644
--- a/srcpkgs/encodings/template
+++ b/srcpkgs/encodings/template
@@ -2,7 +2,6 @@
 pkgname=encodings
 version=1.0.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config font-util"
 depends="font-util"
diff --git a/srcpkgs/endless-sky-gl21/template b/srcpkgs/endless-sky-gl21/template
index ead1c34e626..f69b748b665 100644
--- a/srcpkgs/endless-sky-gl21/template
+++ b/srcpkgs/endless-sky-gl21/template
@@ -18,7 +18,6 @@ checksum=46918d0cc35aaeb1219194099223e3338245aa04aa3f29fd76e3376bf5779376
 
 endless-sky-gl21-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 829bdf28df7..4aa6fcffc44 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -15,7 +15,6 @@ checksum=31f76ac11666415478678d924174d43a620a7fd1093e95131776aed12b912eb4
 
 endless-sky-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/enigma/template b/srcpkgs/enigma/template
index 89f359f80c7..3d11662e5da 100644
--- a/srcpkgs/enigma/template
+++ b/srcpkgs/enigma/template
@@ -31,7 +31,6 @@ post_install() {
 
 enigma-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/enigma
 	}
@@ -39,7 +38,6 @@ enigma-data_package() {
 
 enigma-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/envypn-font/template b/srcpkgs/envypn-font/template
index 9f3d7de3075..146c2b130ce 100644
--- a/srcpkgs/envypn-font/template
+++ b/srcpkgs/envypn-font/template
@@ -2,7 +2,6 @@
 pkgname=envypn-font
 version=1.7.1
 revision=3
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="Readable bitmap font inspired by Envy Code R"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template
index 371e9404e69..35c9bed4ee9 100644
--- a/srcpkgs/erlang/template
+++ b/srcpkgs/erlang/template
@@ -59,7 +59,6 @@ post_install() {
 erlang-doc_package() {
 	short_desc="Erlang programming language documentation and examples"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/erlang/doc
 		for i in $(cd ${DESTDIR}; find usr/lib/erlang -type d \( -path '*/examples' -o -path '*/doc/html' \))
diff --git a/srcpkgs/escrotum/template b/srcpkgs/escrotum/template
index 44cec111737..5438e8a4c14 100644
--- a/srcpkgs/escrotum/template
+++ b/srcpkgs/escrotum/template
@@ -2,7 +2,6 @@
 pkgname=escrotum
 version=0.2.1
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="escrotum"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/eselect/template b/srcpkgs/eselect/template
index 04111ebc945..fd987f2c034 100644
--- a/srcpkgs/eselect/template
+++ b/srcpkgs/eselect/template
@@ -2,7 +2,6 @@
 pkgname=eselect
 version=1.4.16
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libtool"
 depends="bash"
diff --git a/srcpkgs/etcetera/template b/srcpkgs/etcetera/template
index d6723467c4b..0af51a75c49 100644
--- a/srcpkgs/etcetera/template
+++ b/srcpkgs/etcetera/template
@@ -2,7 +2,6 @@
 pkgname=etcetera
 version=1.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Config file management with a touch of wisdom"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/etckeeper/template b/srcpkgs/etckeeper/template
index 26cffae3768..210c55a62dd 100644
--- a/srcpkgs/etckeeper/template
+++ b/srcpkgs/etckeeper/template
@@ -2,7 +2,6 @@
 pkgname=etckeeper
 version=1.18.14
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/etckeeper/etckeeper.conf"
 hostmakedepends="perl"
diff --git a/srcpkgs/etesync-dav/template b/srcpkgs/etesync-dav/template
index 03763f96644..3c8b547f230 100644
--- a/srcpkgs/etesync-dav/template
+++ b/srcpkgs/etesync-dav/template
@@ -2,7 +2,6 @@
 pkgname=etesync-dav
 version=0.17.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-etesync radicale2 python3-Flask python3-Flask-WTF"
diff --git a/srcpkgs/etr/template b/srcpkgs/etr/template
index f3af59d2220..6414c6a8c9c 100644
--- a/srcpkgs/etr/template
+++ b/srcpkgs/etr/template
@@ -15,7 +15,6 @@ checksum=4b2899314eda8d0826504ab274acb13ab0dab58b6d0641587749dfa77757da17
 
 etr-data_package() {
  	short_desc+=" - data files"
- 	archs=noarch
  	pkg_install() {
  		vmove usr/share/etr
  	}
diff --git a/srcpkgs/execline/template b/srcpkgs/execline/template
index 92c5df11259..a46f5673de0 100644
--- a/srcpkgs/execline/template
+++ b/srcpkgs/execline/template
@@ -35,7 +35,6 @@ post_install() {
 }
 
 execline-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/exiftool/template b/srcpkgs/exiftool/template
index 0b7a65d50d9..390ef84235e 100644
--- a/srcpkgs/exiftool/template
+++ b/srcpkgs/exiftool/template
@@ -2,7 +2,6 @@
 pkgname=exiftool
 version=12.04
 revision=1
-archs=noarch
 wrksrc="Image-ExifTool-${version}"
 build_style=perl-module
 hostmakedepends="perl tar"
diff --git a/srcpkgs/extra-cmake-modules/template b/srcpkgs/extra-cmake-modules/template
index 99601e6ce62..5a958049219 100644
--- a/srcpkgs/extra-cmake-modules/template
+++ b/srcpkgs/extra-cmake-modules/template
@@ -2,7 +2,6 @@
 pkgname=extra-cmake-modules
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_HTML_DOCS=OFF -DBUILD_TESTING=OFF"
 hostmakedepends="python3-Sphinx qt5-tools"
diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index ee7f68f9e36..bbdbde91e85 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -2,7 +2,6 @@
 pkgname=eyeD3
 version=0.9.5
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-grako python3-pylast python3-setuptools python3-deprecation
diff --git a/srcpkgs/faba-icon-theme/template b/srcpkgs/faba-icon-theme/template
index 7624d10a4db..6fc98c76314 100644
--- a/srcpkgs/faba-icon-theme/template
+++ b/srcpkgs/faba-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faba-icon-theme
 version=4.3
 revision=1
-archs=noarch
 build_style=meson
 short_desc="Sexy, modern FreeDesktop icon set with Tango and elementary influences"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/faenza-icon-theme/template b/srcpkgs/faenza-icon-theme/template
index f05167001e4..447ffeef02e 100644
--- a/srcpkgs/faenza-icon-theme/template
+++ b/srcpkgs/faenza-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faenza-icon-theme
 version=1.3.1
 revision=2
-archs=noarch
 wrksrc="faenza-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme"
 short_desc="Faenza icon theme"
diff --git a/srcpkgs/faience-icon-theme/template b/srcpkgs/faience-icon-theme/template
index 27a4fb5be9a..426205bbf78 100644
--- a/srcpkgs/faience-icon-theme/template
+++ b/srcpkgs/faience-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faience-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="faience-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme faenza-icon-theme"
 short_desc="An icon theme based on Faenza"
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index cde2f25630f..3b823a5bc16 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -2,7 +2,6 @@
 pkgname=fail2ban
 version=0.11.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
diff --git a/srcpkgs/fake-hwclock/template b/srcpkgs/fake-hwclock/template
index 16731b49dfe..c1f33f221ac 100644
--- a/srcpkgs/fake-hwclock/template
+++ b/srcpkgs/fake-hwclock/template
@@ -2,7 +2,6 @@
 pkgname=fake-hwclock
 version=0.11
 revision=1
-archs=noarch
 wrksrc=git
 short_desc="Save/restore system clock on machines without working RTC hardware"
 maintainer="Ivan Gonzalez Polanco <ivan14polanco@gmail.com>"
diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 44628c261d2..80685a4e52a 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -2,7 +2,6 @@
 pkgname=fava
 version=1.15
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-Babel python3-Cheroot python3-Flask-Babel python3-Flask
diff --git a/srcpkgs/fbmenugen/template b/srcpkgs/fbmenugen/template
index 7b7659eb98d..ad03431b85f 100644
--- a/srcpkgs/fbmenugen/template
+++ b/srcpkgs/fbmenugen/template
@@ -2,7 +2,6 @@
 pkgname=fbmenugen
 version=0.84
 revision=1
-archs=noarch
 depends="fluxbox perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Fluxbox menu generator (with support for icons)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ferm/template b/srcpkgs/ferm/template
index 42241669552..1b0c4538c56 100644
--- a/srcpkgs/ferm/template
+++ b/srcpkgs/ferm/template
@@ -2,7 +2,6 @@
 pkgname=ferm
 version=2.5.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl iptables"
 short_desc="Frontend for iptables"
diff --git a/srcpkgs/fff/template b/srcpkgs/fff/template
index 310793c894f..dfe012ccbd1 100644
--- a/srcpkgs/fff/template
+++ b/srcpkgs/fff/template
@@ -2,7 +2,6 @@
 pkgname=fff
 version=2.1
 revision=1
-archs=noarch
 depends="bash coreutils xdg-utils"
 short_desc="Simple file manager written in bash"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/ffscreencast/template b/srcpkgs/ffscreencast/template
index 10653116d67..76bc9df0078 100644
--- a/srcpkgs/ffscreencast/template
+++ b/srcpkgs/ffscreencast/template
@@ -2,7 +2,6 @@
 pkgname=ffscreencast
 version=0.6.4
 revision=1
-archs=noarch
 depends="alsa-utils bash ffmpeg v4l-utils xdpyinfo"
 maintainer="Orphaned <orphan@voidlinux.org>"
 short_desc="Desktop-recording with video overlay and multi monitor support"
diff --git a/srcpkgs/fgit/template b/srcpkgs/fgit/template
index e298b9f4a71..1b031ec91c3 100644
--- a/srcpkgs/fgit/template
+++ b/srcpkgs/fgit/template
@@ -2,7 +2,6 @@
 pkgname=fgit
 version=1.0.2
 revision=1
-archs=noarch
 checkdepends="git"
 depends="bash git ncurses"
 short_desc="Run a Git command in several repositories"
diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 1d395274898..09062d70808 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -2,7 +2,6 @@
 pkgname=fierce
 version=1.4.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="fierce"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/figlet-fonts/template b/srcpkgs/figlet-fonts/template
index 36746d35612..be340f68c7a 100644
--- a/srcpkgs/figlet-fonts/template
+++ b/srcpkgs/figlet-fonts/template
@@ -2,7 +2,6 @@
 pkgname=figlet-fonts
 version=20150508
 revision=3
-archs=noarch
 create_wrksrc=yes
 depends="figlet perl"
 short_desc="Additional fonts for figlet"
diff --git a/srcpkgs/fillets-ng/template b/srcpkgs/fillets-ng/template
index 65f3ac43898..6b4be8c84e4 100644
--- a/srcpkgs/fillets-ng/template
+++ b/srcpkgs/fillets-ng/template
@@ -19,7 +19,6 @@ build_wrksrc="fillets-ng-${version}"
 
 fillets-ng-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/games
 		mv ${wrksrc}/fillets-ng-data-${version} ${PKGDESTDIR}/usr/share/games/fillets-ng
diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index 4834f0a0bf5..f87bc737a3d 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -2,7 +2,6 @@
 pkgname=flake8
 version=3.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycodestyle>=2.6.0<2.7.0
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-flake8_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="flake8>=${version}_${revision}"
diff --git a/srcpkgs/flare-engine/template b/srcpkgs/flare-engine/template
index 707157f38d9..59244d516f3 100644
--- a/srcpkgs/flare-engine/template
+++ b/srcpkgs/flare-engine/template
@@ -16,7 +16,6 @@ checksum=035ffd936d9e120dc2eb792779a0b7ff64574d4a29a1124946deaf7946d1059d
 
 flare-engine-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/flare
 	}
diff --git a/srcpkgs/flare-game/template b/srcpkgs/flare-game/template
index 9da28107b18..b769140e001 100644
--- a/srcpkgs/flare-game/template
+++ b/srcpkgs/flare-game/template
@@ -2,7 +2,6 @@
 pkgname=flare-game
 version=1.11
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DDATADIR=share/flare"
 depends="flare-engine>=${version}"
diff --git a/srcpkgs/flickcurl/template b/srcpkgs/flickcurl/template
index e1e33187b4c..c0800a39453 100644
--- a/srcpkgs/flickcurl/template
+++ b/srcpkgs/flickcurl/template
@@ -12,7 +12,6 @@ distfiles="http://download.dajobe.org/flickcurl/flickcurl-${version}.tar.gz"
 checksum=ff42a36c7c1c7d368246f6bc9b7d792ed298348e5f0f5d432e49f6803562f5a3
 
 flickcurl-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation (HTML Version)"
 	pkg_install() {
diff --git a/srcpkgs/flightgear/template b/srcpkgs/flightgear/template
index cbf60cc058c..c84d1fd9a44 100644
--- a/srcpkgs/flightgear/template
+++ b/srcpkgs/flightgear/template
@@ -41,7 +41,6 @@ post_install() {
 
 flightgear-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/flightgear
 		mv ${XBPS_BUILDDIR}/fgdata ${PKGDESTDIR}/usr/share/flightgear
diff --git a/srcpkgs/flinks/template b/srcpkgs/flinks/template
index 780aead102c..4fbd59497a1 100644
--- a/srcpkgs/flinks/template
+++ b/srcpkgs/flinks/template
@@ -2,7 +2,6 @@
 pkgname=flinks
 version=0.4.3
 revision=5
-archs=noarch
 build_style=python3-module
 pycompile_module="flinkspkg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/flowblade/template b/srcpkgs/flowblade/template
index c011d7dc115..b22f56309ba 100644
--- a/srcpkgs/flowblade/template
+++ b/srcpkgs/flowblade/template
@@ -2,7 +2,6 @@
 pkgname=flowblade
 version=2.4
 revision=2
-archs=noarch
 build_wrksrc=flowblade-trunk
 build_style=python3-module
 make_install_args="--install-lib=${DESTDIR}/usr/share/pyshared"
diff --git a/srcpkgs/foliate/template b/srcpkgs/foliate/template
index a3fc5ed2fe2..498172d4904 100644
--- a/srcpkgs/foliate/template
+++ b/srcpkgs/foliate/template
@@ -2,7 +2,6 @@
 pkgname=foliate
 version=2.4.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config gettext gjs glib-devel"
 depends="webkit2gtk gjs"
diff --git a/srcpkgs/font-3270/template b/srcpkgs/font-3270/template
index 2031b872668..5ec94a8b6fb 100644
--- a/srcpkgs/font-3270/template
+++ b/srcpkgs/font-3270/template
@@ -2,7 +2,6 @@
 pkgname=font-3270
 version=2.0.3
 revision=1
-archs=noarch
 wrksrc="3270font-${version}"
 build_style=gnu-makefile
 make_build_target="font"
diff --git a/srcpkgs/font-FixedMisc/template b/srcpkgs/font-FixedMisc/template
index 7f937497043..e4605c4079a 100644
--- a/srcpkgs/font-FixedMisc/template
+++ b/srcpkgs/font-FixedMisc/template
@@ -2,7 +2,6 @@
 pkgname=font-FixedMisc
 version=20200214
 revision=1
-archs=noarch
 wrksrc=FixedMisc
 hostmakedepends="bdftopcf"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Hasklig/template b/srcpkgs/font-Hasklig/template
index 656492ec093..bdd229dc9ec 100644
--- a/srcpkgs/font-Hasklig/template
+++ b/srcpkgs/font-Hasklig/template
@@ -2,7 +2,6 @@
 pkgname=font-Hasklig
 version=1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Siji/template b/srcpkgs/font-Siji/template
index cfd7e82ad6e..2dd7a1d88de 100644
--- a/srcpkgs/font-Siji/template
+++ b/srcpkgs/font-Siji/template
@@ -2,7 +2,6 @@
 pkgname=font-Siji
 version=0.0.0.20171022
 revision=1
-archs=noarch
 _githash=9d88311bb127b21672b2d4b43eed1ab0e494f143
 wrksrc="siji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/font-adobe-100dpi/template b/srcpkgs/font-adobe-100dpi/template
index 43c280a256a..da546a985b2 100644
--- a/srcpkgs/font-adobe-100dpi/template
+++ b/srcpkgs/font-adobe-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-75dpi/template b/srcpkgs/font-adobe-75dpi/template
index deb1d71ba1d..38965635fea 100644
--- a/srcpkgs/font-adobe-75dpi/template
+++ b/srcpkgs/font-adobe-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-source-code-pro/template b/srcpkgs/font-adobe-source-code-pro/template
index 093d75e286a..527d1f93c7d 100644
--- a/srcpkgs/font-adobe-source-code-pro/template
+++ b/srcpkgs/font-adobe-source-code-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-source-code-pro
 version=2.030R
 revision=2
-archs=noarch
 wrksrc="source-code-pro-${version}-ro-1.050R-it"
 depends="font-util"
 short_desc="Monospaced font family for user interface and coding environments"
@@ -20,7 +19,6 @@ do_install() {
 }
 
 font-sourcecodepro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/font-adobe-utopia-100dpi/template b/srcpkgs/font-adobe-utopia-100dpi/template
index 058691db022..182bd2973fa 100644
--- a/srcpkgs/font-adobe-utopia-100dpi/template
+++ b/srcpkgs/font-adobe-utopia-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-100dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-75dpi/template b/srcpkgs/font-adobe-utopia-75dpi/template
index bce9f9887f6..e5b0fc347e9 100644
--- a/srcpkgs/font-adobe-utopia-75dpi/template
+++ b/srcpkgs/font-adobe-utopia-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-75dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-type1/template b/srcpkgs/font-adobe-utopia-type1/template
index 0e7d539142e..5a3b04053e0 100644
--- a/srcpkgs/font-adobe-utopia-type1/template
+++ b/srcpkgs/font-adobe-utopia-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-type1
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-alias/template b/srcpkgs/font-alias/template
index 906543427b5..e399f0f92b8 100644
--- a/srcpkgs/font-alias/template
+++ b/srcpkgs/font-alias/template
@@ -2,7 +2,6 @@
 pkgname=font-alias
 version=1.0.3
 revision=4
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard aliases for X11 PCF fonts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/font-awesome/template b/srcpkgs/font-awesome/template
index a675bd4ad11..aacc7a44ad3 100644
--- a/srcpkgs/font-awesome/template
+++ b/srcpkgs/font-awesome/template
@@ -3,7 +3,6 @@ pkgname=font-awesome
 reverts="5.0.8_1 5.0.9_1 5.0.10_1"
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc=Font-Awesome-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-awesome5/template b/srcpkgs/font-awesome5/template
index 78cfb9f1146..0fc0a94f97d 100644
--- a/srcpkgs/font-awesome5/template
+++ b/srcpkgs/font-awesome5/template
@@ -2,7 +2,6 @@
 pkgname=font-awesome5
 version=5.14.0
 revision=1
-archs=noarch
 wrksrc="Font-Awesome-${version}"
 depends="font-util"
 short_desc="Iconic font (version 5)"
diff --git a/srcpkgs/font-b612/template b/srcpkgs/font-b612/template
index 0d6d974aa0a..45e731de6a5 100644
--- a/srcpkgs/font-b612/template
+++ b/srcpkgs/font-b612/template
@@ -2,7 +2,6 @@
 pkgname=font-b612
 version=1.008
 revision=1
-archs=noarch
 wrksrc="b612-${version}"
 depends="font-util xbps-triggers"
 short_desc="Highly legible font family designed for aircraft cockpit screens"
diff --git a/srcpkgs/font-bh-100dpi/template b/srcpkgs/font-bh-100dpi/template
index 0eee5166e2f..aa70e1e4597 100644
--- a/srcpkgs/font-bh-100dpi/template
+++ b/srcpkgs/font-bh-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-75dpi/template b/srcpkgs/font-bh-75dpi/template
index 99b51be90b5..291b0eca237 100644
--- a/srcpkgs/font-bh-75dpi/template
+++ b/srcpkgs/font-bh-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-100dpi/template b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
index 3840bad1134..c513a84160d 100644
--- a/srcpkgs/font-bh-lucidatypewriter-100dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-75dpi/template b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
index 6110fa4f547..2bc610d24c0 100644
--- a/srcpkgs/font-bh-lucidatypewriter-75dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-ttf/template b/srcpkgs/font-bh-ttf/template
index 955b9e6f14d..26acfa6544d 100644
--- a/srcpkgs/font-bh-ttf/template
+++ b/srcpkgs/font-bh-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-ttf
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-type1/template b/srcpkgs/font-bh-type1/template
index f7135cd6d50..ddd695e5312 100644
--- a/srcpkgs/font-bh-type1/template
+++ b/srcpkgs/font-bh-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-100dpi/template b/srcpkgs/font-bitstream-100dpi/template
index 08dbeee24a0..a7b0b8dde8f 100644
--- a/srcpkgs/font-bitstream-100dpi/template
+++ b/srcpkgs/font-bitstream-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-75dpi/template b/srcpkgs/font-bitstream-75dpi/template
index c6853fa8cd8..c1f60fb03da 100644
--- a/srcpkgs/font-bitstream-75dpi/template
+++ b/srcpkgs/font-bitstream-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-speedo/template b/srcpkgs/font-bitstream-speedo/template
index 96bdb122283..0e0f4880d57 100644
--- a/srcpkgs/font-bitstream-speedo/template
+++ b/srcpkgs/font-bitstream-speedo/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-speedo
 version=1.0.2
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf mkfontscale"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-bitstream-type1/template b/srcpkgs/font-bitstream-type1/template
index d6e4e2f8700..f8ed3355afe 100644
--- a/srcpkgs/font-bitstream-type1/template
+++ b/srcpkgs/font-bitstream-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-cozette/template b/srcpkgs/font-cozette/template
index fc1118ac3a4..4e3f8553fa0 100644
--- a/srcpkgs/font-cozette/template
+++ b/srcpkgs/font-cozette/template
@@ -2,7 +2,6 @@
 pkgname=font-cozette
 version=1.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="font-util"
 depends="font-util"
diff --git a/srcpkgs/font-cursor-misc/template b/srcpkgs/font-cursor-misc/template
index e01946f7dde..0d2d54e4a8e 100644
--- a/srcpkgs/font-cursor-misc/template
+++ b/srcpkgs/font-cursor-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-cursor-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-daewoo-misc/template b/srcpkgs/font-daewoo-misc/template
index da7e8c4ba1e..8dbd3cf7268 100644
--- a/srcpkgs/font-daewoo-misc/template
+++ b/srcpkgs/font-daewoo-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-daewoo-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-dec-misc/template b/srcpkgs/font-dec-misc/template
index a4bfec05b01..afa30bf8715 100644
--- a/srcpkgs/font-dec-misc/template
+++ b/srcpkgs/font-dec-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-dec-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-fantasque-sans-ttf/template b/srcpkgs/font-fantasque-sans-ttf/template
index 3f28af2faa8..3b79bdff398 100644
--- a/srcpkgs/font-fantasque-sans-ttf/template
+++ b/srcpkgs/font-fantasque-sans-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-fantasque-sans-ttf
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Handwriting-like programming typeface"
diff --git a/srcpkgs/font-fira-otf/template b/srcpkgs/font-fira-otf/template
index 921fcb8d30d..afaf098e6b7 100644
--- a/srcpkgs/font-fira-otf/template
+++ b/srcpkgs/font-fira-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-fira-otf
 version=4.202
 revision=3
-archs=noarch
 wrksrc="Fira-${version}"
 depends="font-util xbps-triggers"
 short_desc="Mozilla's new typeface OTF, used in Firefox OS"
@@ -23,7 +22,6 @@ do_install() {
 }
 
 font-fira-ttf_package() {
-	archs=noarch
 	font_dirs="/usr/share/fonts/TTF"
 	depends="font-util xbps-triggers"
 	pkg_install() {
diff --git a/srcpkgs/font-firacode/template b/srcpkgs/font-firacode/template
index 36df04b7ab1..1699c5211ad 100644
--- a/srcpkgs/font-firacode/template
+++ b/srcpkgs/font-firacode/template
@@ -2,7 +2,6 @@
 pkgname=font-firacode
 version=5.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="FiraCode: monospaced font with programming ligatures"
diff --git a/srcpkgs/font-fontin/template b/srcpkgs/font-fontin/template
index e91405490f5..c0ab17f0e66 100644
--- a/srcpkgs/font-fontin/template
+++ b/srcpkgs/font-fontin/template
@@ -2,7 +2,6 @@
 pkgname=font-fontin
 version=0.0.20151027
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hack-ttf/template b/srcpkgs/font-hack-ttf/template
index 2cec70ff0f0..5929977d6e3 100644
--- a/srcpkgs/font-hack-ttf/template
+++ b/srcpkgs/font-hack-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-hack-ttf
 version=3.003
 revision=1
 wrksrc="Hack-${version}"
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="A typeface designed for source code"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/font-hanazono/template b/srcpkgs/font-hanazono/template
index 0a529e23b0a..cbec1c249ac 100644
--- a/srcpkgs/font-hanazono/template
+++ b/srcpkgs/font-hanazono/template
@@ -3,7 +3,6 @@ pkgname=font-hanazono
 version=20170904
 _revision=68253
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hermit-otf/template b/srcpkgs/font-hermit-otf/template
index 20b784a8149..f20f2fd0e07 100644
--- a/srcpkgs/font-hermit-otf/template
+++ b/srcpkgs/font-hermit-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-hermit-otf
 version=2.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-ibm-plex-ttf/template b/srcpkgs/font-ibm-plex-ttf/template
index 98c9e838f9f..5cdd47ebd0a 100644
--- a/srcpkgs/font-ibm-plex-ttf/template
+++ b/srcpkgs/font-ibm-plex-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-plex-ttf
 version=5.1.0
 revision=1
-archs=noarch
 wrksrc="plex-${version}"
 depends="font-util"
 short_desc="IBM’s typeface, IBM Plex (TTF variant)"
diff --git a/srcpkgs/font-ibm-type1/template b/srcpkgs/font-ibm-type1/template
index aaa4caaab00..549768b91c5 100644
--- a/srcpkgs/font-ibm-type1/template
+++ b/srcpkgs/font-ibm-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-inconsolata-otf/template b/srcpkgs/font-inconsolata-otf/template
index 566e9b29479..65eff0728b6 100644
--- a/srcpkgs/font-inconsolata-otf/template
+++ b/srcpkgs/font-inconsolata-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-inconsolata-otf
 version=001.010
 revision=3
-archs=noarch
 build_style=fetch
 depends="font-util xbps-triggers"
 short_desc="Sans-serif monotype font designed for code listings"
diff --git a/srcpkgs/font-ionicons-ttf/template b/srcpkgs/font-ionicons-ttf/template
index b4fa51931b7..6ac73c9ebc4 100644
--- a/srcpkgs/font-ionicons-ttf/template
+++ b/srcpkgs/font-ionicons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ionicons-ttf
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="ionicons-$version"
 depends="font-util"
 short_desc="Icon font from the Ionic Framework"
diff --git a/srcpkgs/font-iosevka/template b/srcpkgs/font-iosevka/template
index a112064928e..de46bec7644 100644
--- a/srcpkgs/font-iosevka/template
+++ b/srcpkgs/font-iosevka/template
@@ -2,7 +2,6 @@
 pkgname=font-iosevka
 version=3.3.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Slender monospace sans-serif and slab-serif typeface"
diff --git a/srcpkgs/font-isas-misc/template b/srcpkgs/font-isas-misc/template
index 033459448c4..81f16f13ba2 100644
--- a/srcpkgs/font-isas-misc/template
+++ b/srcpkgs/font-isas-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-isas-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-jis-misc/template b/srcpkgs/font-jis-misc/template
index 45638227181..ff60c4b7f17 100644
--- a/srcpkgs/font-jis-misc/template
+++ b/srcpkgs/font-jis-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-jis-misc
 version=1.0.3
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-kakwafont/template b/srcpkgs/font-kakwafont/template
index 89859db95b3..525f489efeb 100644
--- a/srcpkgs/font-kakwafont/template
+++ b/srcpkgs/font-kakwafont/template
@@ -2,7 +2,6 @@
 pkgname=font-kakwafont
 version=0.1.1
 revision=3
-archs=noarch
 wrksrc="kakwafont-${version}"
 build_style=gnu-makefile
 make_install_args="INDEX=false"
diff --git a/srcpkgs/font-libertine-ttf/template b/srcpkgs/font-libertine-ttf/template
index b0521e80e57..7197d3e7c9c 100644
--- a/srcpkgs/font-libertine-ttf/template
+++ b/srcpkgs/font-libertine-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-libertine-ttf
 version=5.3.0
 revision=1
 _date=2012_07_02
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Libertine TTF Fonts - Libre multilingual font family"
@@ -26,7 +25,6 @@ do_install() {
 }
 
 font-libertine-otf_package() {
-	archs=noarch
 	depends="font-util xbps-triggers"
 	short_desc="Libertine OTF Fonts - Libre multilingual font family"
 	font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-manjari/template b/srcpkgs/font-manjari/template
index 459d5de5210..87745816524 100644
--- a/srcpkgs/font-manjari/template
+++ b/srcpkgs/font-manjari/template
@@ -2,7 +2,6 @@
 pkgname=font-manjari
 version=1.810
 revision=3
-archs="noarch"
 create_wrksrc=yes
 depends="font-util"
 short_desc="Malayalam font with smooth curves"
diff --git a/srcpkgs/font-material-design-icons-ttf/template b/srcpkgs/font-material-design-icons-ttf/template
index 70565c4255b..9e9fb6c2991 100644
--- a/srcpkgs/font-material-design-icons-ttf/template
+++ b/srcpkgs/font-material-design-icons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-material-design-icons-ttf
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="material-design-icons-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-micro-misc/template b/srcpkgs/font-micro-misc/template
index 9d07f30c819..6c91e2f0558 100644
--- a/srcpkgs/font-micro-misc/template
+++ b/srcpkgs/font-micro-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-micro-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-misc-misc/template b/srcpkgs/font-misc-misc/template
index bb14ad13e66..454fbcb197f 100644
--- a/srcpkgs/font-misc-misc/template
+++ b/srcpkgs/font-misc-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-misc-misc
 version=1.1.2
 revision=6
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-mplus-ttf/template b/srcpkgs/font-mplus-ttf/template
index 102d839baac..880a2a7d01b 100644
--- a/srcpkgs/font-mplus-ttf/template
+++ b/srcpkgs/font-mplus-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-mplus-ttf
 version=063a
 revision=1
-archs=noarch
 wrksrc="mplus-TESTFLIGHT-${version}"
 depends="fontconfig font-util"
 short_desc="M+ Japanese outline fonts"
diff --git a/srcpkgs/font-mutt-misc/template b/srcpkgs/font-mutt-misc/template
index ec6d140c270..abb8702ad6b 100644
--- a/srcpkgs/font-mutt-misc/template
+++ b/srcpkgs/font-mutt-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-mutt-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-open-dyslexic-ttf/template b/srcpkgs/font-open-dyslexic-ttf/template
index 4b2d57d022a..ae5c3307e9c 100644
--- a/srcpkgs/font-open-dyslexic-ttf/template
+++ b/srcpkgs/font-open-dyslexic-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-open-dyslexic-ttf
 version=20160623
 revision=2
-archs=noarch
 wrksrc="open-dyslexic-${version}-Stable"
 depends="font-util xbps-triggers"
 short_desc="Font created to increase readability for readers with dyslexia"
diff --git a/srcpkgs/font-sarasa-gothic/template b/srcpkgs/font-sarasa-gothic/template
index 8f5d2624504..8ea9f4795c7 100644
--- a/srcpkgs/font-sarasa-gothic/template
+++ b/srcpkgs/font-sarasa-gothic/template
@@ -2,7 +2,6 @@
 pkgname=font-sarasa-gothic
 version=0.12.9
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="CJK programming font based on Iosevka and Source Han Sans"
diff --git a/srcpkgs/font-schumacher-misc/template b/srcpkgs/font-schumacher-misc/template
index e4515207d37..20b0dd7f7dc 100644
--- a/srcpkgs/font-schumacher-misc/template
+++ b/srcpkgs/font-schumacher-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-schumacher-misc
 version=1.1.2
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-sil-abyssinica/template b/srcpkgs/font-sil-abyssinica/template
index 1c48dbfedd6..87bca44c4e4 100644
--- a/srcpkgs/font-sil-abyssinica/template
+++ b/srcpkgs/font-sil-abyssinica/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-abyssinica
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AbyssinicaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-alkalami/template b/srcpkgs/font-sil-alkalami/template
index 684c7b7d0d3..b6638f07c83 100644
--- a/srcpkgs/font-sil-alkalami/template
+++ b/srcpkgs/font-sil-alkalami/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-alkalami
 version=1.100
 revision=1
-archs=noarch
 wrksrc="Alkalami-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-andika/template b/srcpkgs/font-sil-andika/template
index 4b869085776..9cd574eac8e 100644
--- a/srcpkgs/font-sil-andika/template
+++ b/srcpkgs/font-sil-andika/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-andika
 version=5.000
 revision=1
-archs=noarch
 wrksrc="Andika-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-annapurna/template b/srcpkgs/font-sil-annapurna/template
index 388779d980f..0dd4a688a54 100644
--- a/srcpkgs/font-sil-annapurna/template
+++ b/srcpkgs/font-sil-annapurna/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-annapurna
 version=1.204
 revision=1
-archs=noarch
 wrksrc="AnnapurnaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-awami-nastaliq/template b/srcpkgs/font-sil-awami-nastaliq/template
index f09cd252e08..436b8c16390 100644
--- a/srcpkgs/font-sil-awami-nastaliq/template
+++ b/srcpkgs/font-sil-awami-nastaliq/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-awami-nastaliq
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AwamiNastaliq-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-charis/template b/srcpkgs/font-sil-charis/template
index cdff5cb6265..dc864c2e18b 100644
--- a/srcpkgs/font-sil-charis/template
+++ b/srcpkgs/font-sil-charis/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-charis
 version=5.000
 revision=1
-archs=noarch
 wrksrc="CharisSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-doulos/template b/srcpkgs/font-sil-doulos/template
index 67fd84dd976..557fa77a560 100644
--- a/srcpkgs/font-sil-doulos/template
+++ b/srcpkgs/font-sil-doulos/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-doulos
 version=5.000
 revision=1
-archs=noarch
 wrksrc="DoulosSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-ezra/template b/srcpkgs/font-sil-ezra/template
index 1573ff7d06e..b0879ce22b6 100644
--- a/srcpkgs/font-sil-ezra/template
+++ b/srcpkgs/font-sil-ezra/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-ezra
 version=2.51
 revision=1
-archs=noarch
 wrksrc="EzraSIL${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-galatia/template b/srcpkgs/font-sil-galatia/template
index 06742db160b..217d92847c6 100644
--- a/srcpkgs/font-sil-galatia/template
+++ b/srcpkgs/font-sil-galatia/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-galatia
 version=2.1
 revision=1
-archs=noarch
 wrksrc="GalSIL${version/./}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-gentium/template b/srcpkgs/font-sil-gentium/template
index a06cf2d5a9c..9926b9fd944 100644
--- a/srcpkgs/font-sil-gentium/template
+++ b/srcpkgs/font-sil-gentium/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-gentium
 version=5.000
 revision=1
-archs=noarch
 wrksrc="GentiumPlus-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-harmattan/template b/srcpkgs/font-sil-harmattan/template
index 465b63a7244..fbcc81cadd3 100644
--- a/srcpkgs/font-sil-harmattan/template
+++ b/srcpkgs/font-sil-harmattan/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-harmattan
 version=1.001
 revision=1
-archs=noarch
 wrksrc="Harmattan-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-lateef/template b/srcpkgs/font-sil-lateef/template
index d8ab4d2a7b2..8a91a92737a 100644
--- a/srcpkgs/font-sil-lateef/template
+++ b/srcpkgs/font-sil-lateef/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-lateef
 version=1.200
 revision=1
-archs=noarch
 wrksrc="LateefGR-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mingzat/template b/srcpkgs/font-sil-mingzat/template
index 1e227ee5603..079ca445bec 100644
--- a/srcpkgs/font-sil-mingzat/template
+++ b/srcpkgs/font-sil-mingzat/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mingzat
 version=1.000
 revision=1
-archs=noarch
 wrksrc="Mingzat-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mondulkiri/template b/srcpkgs/font-sil-mondulkiri/template
index 483056df803..3b8b09c0548 100644
--- a/srcpkgs/font-sil-mondulkiri/template
+++ b/srcpkgs/font-sil-mondulkiri/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mondulkiri
 version=7.100
 revision=1
-archs=noarch
 wrksrc="Mondulkiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-namdhinggo/template b/srcpkgs/font-sil-namdhinggo/template
index 9de1acbc5a7..d353210bf1e 100644
--- a/srcpkgs/font-sil-namdhinggo/template
+++ b/srcpkgs/font-sil-namdhinggo/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-namdhinggo
 version=1.004
 revision=1
-archs=noarch
 wrksrc="NamdhinggoSIL"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-nuosu/template b/srcpkgs/font-sil-nuosu/template
index 0ae86abefaa..1286c1acb86 100644
--- a/srcpkgs/font-sil-nuosu/template
+++ b/srcpkgs/font-sil-nuosu/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-nuosu
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=NuosuSIL
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-padauk/template b/srcpkgs/font-sil-padauk/template
index 8bbb222dff3..21b37341367 100644
--- a/srcpkgs/font-sil-padauk/template
+++ b/srcpkgs/font-sil-padauk/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-padauk
 version=4.000
 revision=1
-archs=noarch
 wrksrc="Padauk-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-scheherazade/template b/srcpkgs/font-sil-scheherazade/template
index 78a2ce6ee96..77e7c97c8da 100644
--- a/srcpkgs/font-sil-scheherazade/template
+++ b/srcpkgs/font-sil-scheherazade/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-scheherazade
 version=2.100
 revision=1
-archs=noarch
 wrksrc="Scheherazade-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-sophia-nubian/template b/srcpkgs/font-sil-sophia-nubian/template
index 2a97740dff3..597002945d8 100644
--- a/srcpkgs/font-sil-sophia-nubian/template
+++ b/srcpkgs/font-sil-sophia-nubian/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-sophia-nubian
 version=1.0
 revision=1
-archs=noarch
 wrksrc="SophiaNubian"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-tai-heritage-pro/template b/srcpkgs/font-sil-tai-heritage-pro/template
index 0d7283cd4ea..b94f9fc966a 100644
--- a/srcpkgs/font-sil-tai-heritage-pro/template
+++ b/srcpkgs/font-sil-tai-heritage-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-tai-heritage-pro
 version=2.600
 revision=1
-archs=noarch
 wrksrc="TaiHeritagePro-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sony-misc/template b/srcpkgs/font-sony-misc/template
index d7ffef11ed0..765bf6e3555 100644
--- a/srcpkgs/font-sony-misc/template
+++ b/srcpkgs/font-sony-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sony-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-spleen/template b/srcpkgs/font-spleen/template
index 381dabe5554..20e99cd62d8 100644
--- a/srcpkgs/font-spleen/template
+++ b/srcpkgs/font-spleen/template
@@ -2,7 +2,6 @@
 pkgname=font-spleen
 version=1.8.1
 revision=1
-archs=noarch
 wrksrc="spleen-${version}"
 build_style=gnu-makefile
 make_cmd=bmake
diff --git a/srcpkgs/font-sun-misc/template b/srcpkgs/font-sun-misc/template
index d556d006daa..423c85625a7 100644
--- a/srcpkgs/font-sun-misc/template
+++ b/srcpkgs/font-sun-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sun-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-symbola/template b/srcpkgs/font-symbola/template
index 23fa865c2ee..d14241ab6ba 100644
--- a/srcpkgs/font-symbola/template
+++ b/srcpkgs/font-symbola/template
@@ -2,7 +2,6 @@
 pkgname=font-symbola
 version=13.00
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-tamsyn/template b/srcpkgs/font-tamsyn/template
index b76186c2128..3c532eba7bb 100644
--- a/srcpkgs/font-tamsyn/template
+++ b/srcpkgs/font-tamsyn/template
@@ -2,7 +2,6 @@
 pkgname=font-tamsyn
 version=1.11
 revision=1
-archs=noarch
 wrksrc=tamsyn-font-${version}
 depends="font-util xbps-triggers"
 short_desc="A monospaced programming font for the console and X11"
diff --git a/srcpkgs/font-tamzen/template b/srcpkgs/font-tamzen/template
index a5621ff3a29..b20f7c77964 100644
--- a/srcpkgs/font-tamzen/template
+++ b/srcpkgs/font-tamzen/template
@@ -2,7 +2,6 @@
 pkgname=font-tamzen
 version=1.11.4
 revision=1
-archs=noarch
 wrksrc="tamzen-font-Tamzen-${version}"
 makedepends="font-util"
 depends="$makedepends"
diff --git a/srcpkgs/font-unifont-bdf/template b/srcpkgs/font-unifont-bdf/template
index a10e7ae5d7d..b7559c941f1 100644
--- a/srcpkgs/font-unifont-bdf/template
+++ b/srcpkgs/font-unifont-bdf/template
@@ -2,7 +2,6 @@
 pkgname=font-unifont-bdf
 version=13.0.02
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="GNU Unifont Glyphs"
diff --git a/srcpkgs/font-vazir/template b/srcpkgs/font-vazir/template
index 2c1eb8a10c8..d83ca102c7f 100755
--- a/srcpkgs/font-vazir/template
+++ b/srcpkgs/font-vazir/template
@@ -2,7 +2,6 @@
 pkgname=font-vazir
 version=26.0.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Persian (Farsi) Font - قلم (فونت) فارسی وزیر"
diff --git a/srcpkgs/font-vollkorn-ttf/template b/srcpkgs/font-vollkorn-ttf/template
index 43889413a0e..37291fafcd1 100644
--- a/srcpkgs/font-vollkorn-ttf/template
+++ b/srcpkgs/font-vollkorn-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-vollkorn-ttf
 version=4.105
 revision=1
 create_wrksrc=yes
-archs=noarch
 font_dirs="/usr/share/fonts/TTF"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-weather-icons/template b/srcpkgs/font-weather-icons/template
index 02b461ad41d..56f10f6b81d 100644
--- a/srcpkgs/font-weather-icons/template
+++ b/srcpkgs/font-weather-icons/template
@@ -2,7 +2,6 @@
 pkgname=font-weather-icons
 version=2.0.10
 revision=1
-archs=noarch
 wrksrc="weather-icons-${version}"
 depends="font-util"
 short_desc="215 Weather Themed Icons"
diff --git a/srcpkgs/fontconfig/template b/srcpkgs/fontconfig/template
index 18504e4503f..a2afdf88d0e 100644
--- a/srcpkgs/fontconfig/template
+++ b/srcpkgs/fontconfig/template
@@ -42,7 +42,6 @@ fontconfig-devel_package() {
 
 fontconfig-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fonts-croscore-ttf/template b/srcpkgs/fonts-croscore-ttf/template
index 2014d2fda6e..0f1bd7ef6ab 100644
--- a/srcpkgs/fonts-croscore-ttf/template
+++ b/srcpkgs/fonts-croscore-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-croscore-ttf
 version=1.31.0
 revision=2
-archs=noarch
 wrksrc="croscorefonts-${version}"
 depends="font-util xbps-triggers"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonts-droid-ttf/template b/srcpkgs/fonts-droid-ttf/template
index cae1c2979c2..90808815e94 100644
--- a/srcpkgs/fonts-droid-ttf/template
+++ b/srcpkgs/fonts-droid-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-droid-ttf
 version=20150613
 revision=1
-archs=noarch
 _githash=f5de525ee3547b8a69a21aec1e1a3175bc06f442
 create_wrksrc=yes
 depends="font-util"
diff --git a/srcpkgs/fonts-nanum-ttf/template b/srcpkgs/fonts-nanum-ttf/template
index 6a2e826673d..0c96fb5aa2b 100644
--- a/srcpkgs/fonts-nanum-ttf/template
+++ b/srcpkgs/fonts-nanum-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-nanum-ttf
 version=20180306
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 depends="font-util"
 short_desc="Nanum Korean fonts"
diff --git a/srcpkgs/fonts-roboto-ttf/template b/srcpkgs/fonts-roboto-ttf/template
index 2a268ab3c74..839ca2eabf7 100644
--- a/srcpkgs/fonts-roboto-ttf/template
+++ b/srcpkgs/fonts-roboto-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-roboto-ttf
 version=2.138
 revision=1
-archs=noarch
 wrksrc=roboto-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonttools/template b/srcpkgs/fonttools/template
index f94f794b2a2..fc25b5b0476 100644
--- a/srcpkgs/fonttools/template
+++ b/srcpkgs/fonttools/template
@@ -2,7 +2,6 @@
 pkgname=fonttools
 version=4.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/foomatic-db-nonfree/template b/srcpkgs/foomatic-db-nonfree/template
index bfdbd503f51..d909dcfdb41 100644
--- a/srcpkgs/foomatic-db-nonfree/template
+++ b/srcpkgs/foomatic-db-nonfree/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db-nonfree
 version=20200527
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=gnu-configure
 hostmakedepends="tar"
diff --git a/srcpkgs/foomatic-db/template b/srcpkgs/foomatic-db/template
index 07b9adddb78..7035fcc7b0a 100644
--- a/srcpkgs/foomatic-db/template
+++ b/srcpkgs/foomatic-db/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db
 version=20180118
 revision=1
-archs=noarch
 build_style=gnu-configure
 ceeate_wrksrc=yes
 hostmakedepends="tar"
diff --git a/srcpkgs/foot/template b/srcpkgs/foot/template
index 50991a6d351..f27b2bfaff0 100644
--- a/srcpkgs/foot/template
+++ b/srcpkgs/foot/template
@@ -21,7 +21,6 @@ post_install() {
 
 foot-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/fortune-mod-anarchism/template b/srcpkgs/fortune-mod-anarchism/template
index 6c27b0e9dcb..dba867fd63a 100644
--- a/srcpkgs/fortune-mod-anarchism/template
+++ b/srcpkgs/fortune-mod-anarchism/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-anarchism
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=blag-fortune
 build_style=gnu-makefile
 hostmakedepends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-de/template b/srcpkgs/fortune-mod-de/template
index 5f3d1dec7c7..84ff7076b3b 100644
--- a/srcpkgs/fortune-mod-de/template
+++ b/srcpkgs/fortune-mod-de/template
@@ -3,7 +3,6 @@ pkgname=fortune-mod-de
 reverts="1.0_2"
 version=0.34
 revision=1
-archs=noarch
 wrksrc="fortunes-de-upstream-${version}"
 hostmakedepends="fortune-mod"
 depends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-void/template b/srcpkgs/fortune-mod-void/template
index 55b5faab036..508db37b084 100644
--- a/srcpkgs/fortune-mod-void/template
+++ b/srcpkgs/fortune-mod-void/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-void
 version=20200307
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="fortune-mod"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/freedroidRPG/template b/srcpkgs/freedroidRPG/template
index b1cb939802a..a1ecfc60bc3 100644
--- a/srcpkgs/freedroidRPG/template
+++ b/srcpkgs/freedroidRPG/template
@@ -42,7 +42,6 @@ post_install() {
 
 freedroidRPG-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freedroidrpg
 	}
diff --git a/srcpkgs/freefont-ttf/template b/srcpkgs/freefont-ttf/template
index ec248d2f8c7..cae4908ae39 100644
--- a/srcpkgs/freefont-ttf/template
+++ b/srcpkgs/freefont-ttf/template
@@ -2,7 +2,6 @@
 pkgname=freefont-ttf
 version=20120503
 revision=7
-archs=noarch
 wrksrc="freefont-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers>=0.58"
diff --git a/srcpkgs/freeorion/template b/srcpkgs/freeorion/template
index 3078bee0d7b..9960b817536 100644
--- a/srcpkgs/freeorion/template
+++ b/srcpkgs/freeorion/template
@@ -25,7 +25,6 @@ post_extract() {
 freeorion-data_package() {
 	short_desc+=" - data files"
 	license="GPL-2.0-or-later, CC-BY-SA-3.0"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freeorion
 	}
diff --git a/srcpkgs/freepats/template b/srcpkgs/freepats/template
index a8d1bae328a..c96cdb5f5ee 100644
--- a/srcpkgs/freepats/template
+++ b/srcpkgs/freepats/template
@@ -2,7 +2,6 @@
 pkgname="freepats"
 version=20060219
 revision=5
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Free patch set for MIDI audio synthesis"
 maintainer="David <kalichakra@zoho.com>"
diff --git a/srcpkgs/freeplane/template b/srcpkgs/freeplane/template
index bb5875f7e7e..02f94d50ad1 100644
--- a/srcpkgs/freeplane/template
+++ b/srcpkgs/freeplane/template
@@ -2,7 +2,6 @@
 pkgname=freeplane
 version=1.8.6
 revision=1
-archs=noarch
 hostmakedepends="apache-ant openjdk8 unzip gradle"
 depends="virtual?java-runtime"
 short_desc="Application for Mind Mapping, Knowledge Management, Project Management"
diff --git a/srcpkgs/freerouting/template b/srcpkgs/freerouting/template
index 49af416078a..ae53f2e7e2d 100644
--- a/srcpkgs/freerouting/template
+++ b/srcpkgs/freerouting/template
@@ -2,7 +2,6 @@
 pkgname=freerouting
 version=1.4.4
 revision=1
-archs=noarch
 hostmakedepends="gradle openjdk11"
 depends="openjdk11"
 short_desc="Advanced PCB autorouter"
diff --git a/srcpkgs/freetds/template b/srcpkgs/freetds/template
index 43620742759..3aee702fe80 100644
--- a/srcpkgs/freetds/template
+++ b/srcpkgs/freetds/template
@@ -30,7 +30,6 @@ freetds-devel_package() {
 
 freetds-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fsharp/template b/srcpkgs/fsharp/template
index ef9f9b4ccbd..89cc3df9291 100644
--- a/srcpkgs/fsharp/template
+++ b/srcpkgs/fsharp/template
@@ -2,7 +2,6 @@
 pkgname=fsharp
 version=10.2.1
 revision=1
-archs=noarch
 lib32disabled=yes
 build_style=gnu-makefile
 hostmakedepends="msbuild-bin"
diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 51d5ea67a6c..1d6d1a72386 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -2,7 +2,6 @@
 pkgname=gajim
 version=1.2.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-gobject python3-nbxmpp python3-pyasn1 python3-setuptools
diff --git a/srcpkgs/gallery-dl/template b/srcpkgs/gallery-dl/template
index 2a361f53274..1d9283c9bf3 100644
--- a/srcpkgs/gallery-dl/template
+++ b/srcpkgs/gallery-dl/template
@@ -2,7 +2,6 @@
 pkgname=gallery-dl
 version=1.14.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-setuptools"
diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index fc6d3ba3320..4102d7fd7a0 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -2,7 +2,6 @@
 pkgname=gandi-cli
 version=1.5
 revision=2
-archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module
 pycompile_module="gandi/cli"
diff --git a/srcpkgs/gccmakedep/template b/srcpkgs/gccmakedep/template
index 29d6fdaafe0..267d448d92d 100644
--- a/srcpkgs/gccmakedep/template
+++ b/srcpkgs/gccmakedep/template
@@ -2,7 +2,6 @@
 pkgname=gccmakedep
 version=1.0.3
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="The gccmakedep program calls 'gcc -M' to output makefile rules"
 maintainer="Markus Berger <pulux@pf4sh.de>"
diff --git a/srcpkgs/gcdemu/template b/srcpkgs/gcdemu/template
index e12b1c932d2..b05436b54e9 100644
--- a/srcpkgs/gcdemu/template
+++ b/srcpkgs/gcdemu/template
@@ -2,7 +2,6 @@
 pkgname=gcdemu
 version=3.2.4
 revision=1
-archs=noarch
 wrksrc="gcdemu-${version}"
 build_style=cmake
 hostmakedepends="python3 intltool"
diff --git a/srcpkgs/gconfmm/template b/srcpkgs/gconfmm/template
index 5122dc300a3..2f96108e38b 100644
--- a/srcpkgs/gconfmm/template
+++ b/srcpkgs/gconfmm/template
@@ -28,7 +28,6 @@ gconfmm-devel_package() {
 if [ -z "$CROSS_BUILD" ]; then
 gconfmm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index a6b8de8f0cc..28c9f87dcaa 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -2,7 +2,6 @@
 pkgname=gcovr
 version=4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gdash/template b/srcpkgs/gdash/template
index 34e8e9afabb..7a566534167 100644
--- a/srcpkgs/gdash/template
+++ b/srcpkgs/gdash/template
@@ -35,7 +35,6 @@ post_install() {
 
 gdash-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/gdash
 	}
diff --git a/srcpkgs/gdown/template b/srcpkgs/gdown/template
index 8365ff593dd..b54b6173ac4 100644
--- a/srcpkgs/gdown/template
+++ b/srcpkgs/gdown/template
@@ -2,7 +2,6 @@
 pkgname=gdown
 version=3.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-filelock python3-requests python3-six python3-tqdm
diff --git a/srcpkgs/geda/template b/srcpkgs/geda/template
index fbce8bbf734..ec733d4f572 100644
--- a/srcpkgs/geda/template
+++ b/srcpkgs/geda/template
@@ -43,7 +43,6 @@ geda-devel_package() {
 	}
 }
 geda-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - documentation and exmaple files"
 	pkg_install() {
@@ -51,7 +50,6 @@ geda-doc_package() {
 	}
 }
 geda-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/gEDA
diff --git a/srcpkgs/gef/template b/srcpkgs/gef/template
index 16af44ee93e..b854e0b45f6 100644
--- a/srcpkgs/gef/template
+++ b/srcpkgs/gef/template
@@ -2,7 +2,6 @@
 pkgname=gef
 version=2020.06
 revision=1
-archs="noarch"
 pycompile_dirs="usr/share/gef"
 depends="keystone-python3 capstone-python3 unicorn-python3 python3-Ropper"
 short_desc="GDB Enhanced Features for exploit devs & reversers"
diff --git a/srcpkgs/geoip-data/template b/srcpkgs/geoip-data/template
index 2a1991ebf9b..dec0162c948 100644
--- a/srcpkgs/geoip-data/template
+++ b/srcpkgs/geoip-data/template
@@ -7,7 +7,6 @@ short_desc="Non-DNS IP-to-country resolver C library and utilities (data files)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="CC-BY-SA-4.0"
 homepage="https://dev.maxmind.com/geoip/legacy/geolite/"
-archs=noarch
 broken="broken URLs, downloads unversioned files that change daily!"
 
 do_fetch() {
diff --git a/srcpkgs/gespeaker/template b/srcpkgs/gespeaker/template
index bf29ef22410..23052bdb887 100644
--- a/srcpkgs/gespeaker/template
+++ b/srcpkgs/gespeaker/template
@@ -2,7 +2,6 @@
 pkgname=gespeaker
 version=0.8.6
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_dirs="/usr/share/gespeaker"
 hostmakedepends="gettext python"
diff --git a/srcpkgs/geteltorito/template b/srcpkgs/geteltorito/template
index c0be0b6e7a1..75ba25e607a 100644
--- a/srcpkgs/geteltorito/template
+++ b/srcpkgs/geteltorito/template
@@ -4,7 +4,6 @@ version=0.6
 revision=1
 wrksrc=${pkgname}
 depends="perl"
-archs=noarch
 short_desc="El Torito boot image extractor"
 maintainer="bra1nwave <brainwave@openmailbox.org>"
 license="GPL-2"
diff --git a/srcpkgs/getmail/template b/srcpkgs/getmail/template
index 51a5c4a109f..9f030553bda 100644
--- a/srcpkgs/getmail/template
+++ b/srcpkgs/getmail/template
@@ -2,7 +2,6 @@
 pkgname=getmail
 version=5.14
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="getmailcore"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/gettext/template b/srcpkgs/gettext/template
index 4495f83401f..7ecc61efe19 100644
--- a/srcpkgs/gettext/template
+++ b/srcpkgs/gettext/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gettext-devel-examples_package() {
-	archs=noarch
 	short_desc+=" - examples for development"
 	pkg_install() {
 		vmove usr/share/doc/gettext
diff --git a/srcpkgs/ghc/template b/srcpkgs/ghc/template
index e81da479cf0..925ad8693ca 100644
--- a/srcpkgs/ghc/template
+++ b/srcpkgs/ghc/template
@@ -86,7 +86,6 @@ post_install() {
 }
 
 ghc-doc_package() {
-	archs=noarch
 	short_desc+=" -- documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/ghi/template b/srcpkgs/ghi/template
index 907f7588841..9c2ab5da38c 100644
--- a/srcpkgs/ghi/template
+++ b/srcpkgs/ghi/template
@@ -2,7 +2,6 @@
 pkgname=ghi
 version=1.2.0
 revision=1
-archs=noarch
 depends="ruby"
 short_desc="GitHub command line interface"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/giac/template b/srcpkgs/giac/template
index 3d4a32c02e6..7247d9a4f27 100644
--- a/srcpkgs/giac/template
+++ b/srcpkgs/giac/template
@@ -38,7 +38,6 @@ giac-devel_package() {
 
 giac-doc_package() {
 	short_desc+=" - Documentation and Examples"
-	archs=noarch
 	pkg_install() {
 		vmove "usr/share/giac/doc"
 		vmove "usr/share/giac/examples"
diff --git a/srcpkgs/gimme/template b/srcpkgs/gimme/template
index 1893b659fae..4feac731cae 100644
--- a/srcpkgs/gimme/template
+++ b/srcpkgs/gimme/template
@@ -2,7 +2,6 @@
 pkgname=gimme
 version=1.5.4
 revision=1
-archs=noarch
 depends="bash curl git"
 short_desc="Shell script that knows how to install Go"
 maintainer="Alif Rachmawadi <arch@subosito.com>"
diff --git a/srcpkgs/gist/template b/srcpkgs/gist/template
index 39759f57e23..84c876b440e 100644
--- a/srcpkgs/gist/template
+++ b/srcpkgs/gist/template
@@ -2,7 +2,6 @@
 pkgname=gist
 version=5.1.0
 revision=1
-archs=noarch
 hostmakedepends="ruby"
 depends="ruby"
 short_desc="Uploads content to gist.github.com"
diff --git a/srcpkgs/git-cal/template b/srcpkgs/git-cal/template
index e05b6da5964..d4bba56af28 100644
--- a/srcpkgs/git-cal/template
+++ b/srcpkgs/git-cal/template
@@ -2,7 +2,6 @@
 pkgname=git-cal
 version=0.9.1
 revision=3
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/git-cola/template b/srcpkgs/git-cola/template
index bddc3f3fabd..9771e35eaab 100644
--- a/srcpkgs/git-cola/template
+++ b/srcpkgs/git-cola/template
@@ -2,7 +2,6 @@
 pkgname=git-cola
 version=3.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"
 hostmakedepends="python3"
diff --git a/srcpkgs/git-extras/template b/srcpkgs/git-extras/template
index 749b7c1291b..8a19b08ffb7 100644
--- a/srcpkgs/git-extras/template
+++ b/srcpkgs/git-extras/template
@@ -2,7 +2,6 @@
 pkgname=git-extras
 version=6.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="util-linux"
 depends="bash git"
diff --git a/srcpkgs/git-filter-repo/template b/srcpkgs/git-filter-repo/template
index 321464c7159..8d8a7b58010 100644
--- a/srcpkgs/git-filter-repo/template
+++ b/srcpkgs/git-filter-repo/template
@@ -2,7 +2,6 @@
 pkgname=git-filter-repo
 version=2.27.0
 revision=1
-archs=noarch
 depends="git python3"
 checkdepends="git python3 perl rsync dos2unix"
 short_desc="Versatile tool for rewriting git history"
diff --git a/srcpkgs/git-review/template b/srcpkgs/git-review/template
index 0ade5e3c4f2..5a8338df4c0 100644
--- a/srcpkgs/git-review/template
+++ b/srcpkgs/git-review/template
@@ -2,7 +2,6 @@
 pkgname=git-review
 version=1.28.0
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-requests"
diff --git a/srcpkgs/git-revise/template b/srcpkgs/git-revise/template
index 6d3071429b9..aa7b45340cf 100644
--- a/srcpkgs/git-revise/template
+++ b/srcpkgs/git-revise/template
@@ -2,7 +2,6 @@
 pkgname=git-revise
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="git python3-setuptools"
diff --git a/srcpkgs/git-secret/template b/srcpkgs/git-secret/template
index 01541c9b061..888033ef4ab 100644
--- a/srcpkgs/git-secret/template
+++ b/srcpkgs/git-secret/template
@@ -2,7 +2,6 @@
 pkgname=git-secret
 version=0.3.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="PREFIX=/usr"
 depends="bash gawk gnupg coreutils"
diff --git a/srcpkgs/git-toolbelt/template b/srcpkgs/git-toolbelt/template
index e79805ad5b0..223c14d450b 100644
--- a/srcpkgs/git-toolbelt/template
+++ b/srcpkgs/git-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=git-toolbelt
 version=1.5.0
 revision=1
-archs=noarch
 depends="git moreutils fzf"
 short_desc="Helper tools to make everyday life with Git much easier"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/git/template b/srcpkgs/git/template
index 5e258d0c20e..3dd8e39bd00 100644
--- a/srcpkgs/git/template
+++ b/srcpkgs/git/template
@@ -62,7 +62,6 @@ post_install() {
 }
 
 git-cvs_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} cvs cvsps2 perl-DBD-SQLite"
 	short_desc+=" - CVS support"
 	pkg_install() {
@@ -88,7 +87,6 @@ git-svn_package() {
 }
 
 gitk_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc="Git repository browser"
 	license="GPL-2.0-or-later"
@@ -100,7 +98,6 @@ gitk_package() {
 }
 
 git-gui_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc+=" - GUI tool"
 	license="GPL-2.0-or-later"
@@ -115,7 +112,6 @@ git-gui_package() {
 
 git-all_package() {
 	build_style=meta
-	archs=noarch
 	depends="${subpackages/git-all/}"
 	short_desc+=" - meta-package for complete Git installation"
 }
@@ -131,7 +127,6 @@ git-libsecret_package() {
 
 git-netrc_package() {
 	depends="git-${version}_${revision}"
-	archs=noarch
 	short_desc+=" - netrc credential helper"
 	pkg_install() {
 		vmove usr/libexec/git-core/git-credential-netrc
diff --git a/srcpkgs/gitflow/template b/srcpkgs/gitflow/template
index 79c4e1adf5c..481ee2eee2e 100644
--- a/srcpkgs/gitflow/template
+++ b/srcpkgs/gitflow/template
@@ -5,7 +5,6 @@ version=20120925
 revision=2
 _commit=15aab26490facf285acef56cb5d61025eacb3a69
 _shflags_commit=2fb06af13de884e9680f14a00c82e52a67c867f1
-archs=noarch
 hostmakedepends="perl"
 depends="git"
 short_desc="Git extensions to provide high-level repository operations"
diff --git a/srcpkgs/gitolite/template b/srcpkgs/gitolite/template
index 0374c3a991c..ad7d25cd8fe 100644
--- a/srcpkgs/gitolite/template
+++ b/srcpkgs/gitolite/template
@@ -2,7 +2,6 @@
 pkgname=gitolite
 version=3.6.11
 revision=2
-archs=noarch
 depends="git perl"
 short_desc="Access control layer on top of git"
 maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index daeec2ddd7d..f669611d1a9 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -2,7 +2,6 @@
 pkgname=glances
 version=3.1.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-future python3-psutil"
diff --git a/srcpkgs/glibc/template b/srcpkgs/glibc/template
index 4ea327aa1fa..f8e03d38093 100644
--- a/srcpkgs/glibc/template
+++ b/srcpkgs/glibc/template
@@ -201,7 +201,6 @@ glibc-devel_package() {
 	}
 }
 glibc-locales_package() {
-	archs="noarch"
 	conf_files="/etc/default/libc-locales"
 	short_desc+=" - locale data files"
 	pkg_install() {
diff --git a/srcpkgs/glibmm/template b/srcpkgs/glibmm/template
index bc373d3a90b..d3ffc563daf 100644
--- a/srcpkgs/glibmm/template
+++ b/srcpkgs/glibmm/template
@@ -18,7 +18,6 @@ post_patch() {
 }
 
 glibmm-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/glm/template b/srcpkgs/glm/template
index ae1a892e664..b978a0b992c 100644
--- a/srcpkgs/glm/template
+++ b/srcpkgs/glm/template
@@ -2,7 +2,6 @@
 pkgname=glm
 version=0.9.9.7
 revision=1
-archs=noarch
 wrksrc=glm
 hostmakedepends="dos2unix unzip"
 short_desc="C++ mathematics library for graphics programming"
diff --git a/srcpkgs/glog/template b/srcpkgs/glog/template
index 080a737fb35..dc33e06913a 100644
--- a/srcpkgs/glog/template
+++ b/srcpkgs/glog/template
@@ -27,7 +27,6 @@ glog-devel_package() {
 
 glog-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gmsh/template b/srcpkgs/gmsh/template
index 5d36aaf6eb6..dfac5740dd1 100644
--- a/srcpkgs/gmsh/template
+++ b/srcpkgs/gmsh/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gmsh-doc_package() {
-	archs=noarch
 	short_desc+=" - document and demo files"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/gmsl/template b/srcpkgs/gmsl/template
index 37ec5bcd993..050d9e3af4b 100644
--- a/srcpkgs/gmsl/template
+++ b/srcpkgs/gmsl/template
@@ -2,7 +2,6 @@
 pkgname=gmsl
 version=1.1.8
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="make"
 short_desc="GNU Make Standard Library"
diff --git a/srcpkgs/gmusicbrowser/template b/srcpkgs/gmusicbrowser/template
index a84cce8f01a..55c006dd40d 100644
--- a/srcpkgs/gmusicbrowser/template
+++ b/srcpkgs/gmusicbrowser/template
@@ -2,7 +2,6 @@
 pkgname=gmusicbrowser
 version=1.1.15
 revision=7
-archs=noarch
 hostmakedepends="perl gettext"
 depends="perl-Gtk2 perl-Glib-Object-Introspection gst-plugins-good1
  gst-plugins-bad1 gst-plugins-ugly1"
diff --git a/srcpkgs/gnome-backgrounds/template b/srcpkgs/gnome-backgrounds/template
index 0b1ee427353..67984a56c47 100644
--- a/srcpkgs/gnome-backgrounds/template
+++ b/srcpkgs/gnome-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=gnome-backgrounds
 version=3.36.0
 revision=2
-archs=noarch
 build_style=meson
 hostmakedepends=gettext
 short_desc="Set of background images for the GNOME Desktop"
diff --git a/srcpkgs/gnome-colors-icon-theme/template b/srcpkgs/gnome-colors-icon-theme/template
index 79f36d85e89..02e88ced0a8 100644
--- a/srcpkgs/gnome-colors-icon-theme/template
+++ b/srcpkgs/gnome-colors-icon-theme/template
@@ -1,7 +1,6 @@
 pkgname=gnome-colors-icon-theme
 version=5.5.1
 revision=1
-archs=noarch
 depends="gtk-update-icon-cache hicolor-icon-theme gnome-icon-theme"
 short_desc="GNOME-Colors icon theme"
 maintainer="Peter Bui <pnutzh4x0r@gmail.com>"
diff --git a/srcpkgs/gnome-common/template b/srcpkgs/gnome-common/template
index f8eb31e1333..bf33a8497dd 100644
--- a/srcpkgs/gnome-common/template
+++ b/srcpkgs/gnome-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-common
 version=3.18.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-autoconf-archive"
 hostmakedepends="automake"
diff --git a/srcpkgs/gnome-doc-utils/template b/srcpkgs/gnome-doc-utils/template
index d2fa2e9e4cd..75458a7081b 100644
--- a/srcpkgs/gnome-doc-utils/template
+++ b/srcpkgs/gnome-doc-utils/template
@@ -2,7 +2,6 @@
 pkgname=gnome-doc-utils
 version=0.20.10
 revision=5
-archs=noarch
 build_style=gnu-configure
 configure_args="--disable-scrollkeeper"
 hostmakedepends="pkg-config intltool python3 libxml2-python3 libxslt-python
diff --git a/srcpkgs/gnome-getting-started-docs/template b/srcpkgs/gnome-getting-started-docs/template
index 5bec93490ba..ca718090c24 100644
--- a/srcpkgs/gnome-getting-started-docs/template
+++ b/srcpkgs/gnome-getting-started-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-getting-started-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gnome-doc-utils intltool itstool pkg-config"
 short_desc="Getting Started documentation for GNOME"
diff --git a/srcpkgs/gnome-icon-theme-extras/template b/srcpkgs/gnome-icon-theme-extras/template
index ca52449b6f0..e907872b567 100644
--- a/srcpkgs/gnome-icon-theme-extras/template
+++ b/srcpkgs/gnome-icon-theme-extras/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-extras
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool icon-naming-utils gtk-update-icon-cache"
 makedepends="icon-naming-utils gnome-icon-theme"
diff --git a/srcpkgs/gnome-icon-theme-symbolic/template b/srcpkgs/gnome-icon-theme-symbolic/template
index a76da8de756..ec9d64ae185 100644
--- a/srcpkgs/gnome-icon-theme-symbolic/template
+++ b/srcpkgs/gnome-icon-theme-symbolic/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-symbolic
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="GTK_UPDATE_ICON_CACHE=/bin/true"
 hostmakedepends="pkg-config intltool icon-naming-utils"
diff --git a/srcpkgs/gnome-icon-theme-xfce/template b/srcpkgs/gnome-icon-theme-xfce/template
index 7ef56da2cbd..b08bca158a7 100644
--- a/srcpkgs/gnome-icon-theme-xfce/template
+++ b/srcpkgs/gnome-icon-theme-xfce/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-xfce
 version=0.6
 revision=2
-archs=noarch
 wrksrc="gnome-icon-theme-xfce"
 short_desc="Theme adding missing icons for Xfce"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/gnome-icon-theme/template b/srcpkgs/gnome-icon-theme/template
index e8a46ea8457..1f31970af43 100644
--- a/srcpkgs/gnome-icon-theme/template
+++ b/srcpkgs/gnome-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-icon-mapping"
 hostmakedepends="pkg-config intltool librsvg icon-naming-utils gtk-update-icon-cache"
diff --git a/srcpkgs/gnome-js-common/template b/srcpkgs/gnome-js-common/template
index 263813cf2c8..50582aa152a 100644
--- a/srcpkgs/gnome-js-common/template
+++ b/srcpkgs/gnome-js-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-js-common
 version=0.1.2
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="GNOME JavaScript common modules"
diff --git a/srcpkgs/gnome-mime-data/template b/srcpkgs/gnome-mime-data/template
index e79860e1820..3ca5cd0ab8f 100644
--- a/srcpkgs/gnome-mime-data/template
+++ b/srcpkgs/gnome-mime-data/template
@@ -2,7 +2,6 @@
 pkgname=gnome-mime-data
 version=2.18.0
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool shared-mime-info"
 makedepends="shared-mime-info"
diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index c4609214612..5c2775ffd5d 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -2,7 +2,6 @@
 pkgname=gnome-passwordsafe
 version=3.99.2
 revision=1
-archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson
 hostmakedepends="gettext glib-devel pkg-config gobject-introspection python3-pykeepass"
diff --git a/srcpkgs/gnome-shell-extensions/template b/srcpkgs/gnome-shell-extensions/template
index 97168b40f66..e6d61b34979 100644
--- a/srcpkgs/gnome-shell-extensions/template
+++ b/srcpkgs/gnome-shell-extensions/template
@@ -2,7 +2,6 @@
 pkgname=gnome-shell-extensions
 version=3.34.1
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dextension_set=all"
 hostmakedepends="pkg-config"
diff --git a/srcpkgs/gnome-themes-extra/template b/srcpkgs/gnome-themes-extra/template
index 02ea840e0bc..21981054da4 100644
--- a/srcpkgs/gnome-themes-extra/template
+++ b/srcpkgs/gnome-themes-extra/template
@@ -19,7 +19,6 @@ if [ "$CROSS_BUILD" ]; then
 fi
 
 gnome-themes-standard_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="gnome-themes-extra-${version}_${revision}"
diff --git a/srcpkgs/gnome-tweaks/template b/srcpkgs/gnome-tweaks/template
index 557005fad57..c00e5838422 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -2,7 +2,6 @@
 pkgname=gnome-tweaks
 version=3.34.0
 revision=3
-archs=noarch
 build_style=meson
 hostmakedepends="gettext"
 depends="gtk+3 dconf gnome-settings-daemon mutter libnotify python3-gobject libhandy"
@@ -15,7 +14,6 @@ checksum=003326fab46e6faad9485924bca503f0c583e3b4553d6f673406eda396205250
 replaces="gnome-tweak-tool>=0"
 
 gnome-tweak-tool_package() {
-	archs=noarch
 	build_style=meta
 	depends="gnome-tweaks>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/gnome-user-docs/template b/srcpkgs/gnome-user-docs/template
index 4cb55396e37..90b4044d402 100644
--- a/srcpkgs/gnome-user-docs/template
+++ b/srcpkgs/gnome-user-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-user-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext pkg-config itstool gnome-doc-utils"
 makedepends="yelp"
diff --git a/srcpkgs/gnome-video-effects/template b/srcpkgs/gnome-video-effects/template
index 08320ba36db..fa6bd46b9a7 100644
--- a/srcpkgs/gnome-video-effects/template
+++ b/srcpkgs/gnome-video-effects/template
@@ -2,7 +2,6 @@
 pkgname=gnome-video-effects
 version=0.5.0
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool gettext"
 makedepends="gstreamer1-devel"
diff --git a/srcpkgs/gns3-gui/template b/srcpkgs/gns3-gui/template
index 9ea3c9b78ad..f3c04137a40 100644
--- a/srcpkgs/gns3-gui/template
+++ b/srcpkgs/gns3-gui/template
@@ -2,7 +2,6 @@
 pkgname=gns3-gui
 version=2.2.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-psutil python3-jsonschema python3-sentry
diff --git a/srcpkgs/gns3-net-converter/template b/srcpkgs/gns3-net-converter/template
index 70b6c90e8c8..48afd26125b 100644
--- a/srcpkgs/gns3-net-converter/template
+++ b/srcpkgs/gns3-net-converter/template
@@ -2,7 +2,6 @@
 pkgname=gns3-net-converter
 version=1.3.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gnupod/template b/srcpkgs/gnupod/template
index d4e80ce6c9c..06caedf5738 100644
--- a/srcpkgs/gnupod/template
+++ b/srcpkgs/gnupod/template
@@ -2,7 +2,6 @@
 pkgname=gnupod
 version=0.99.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-Digest-SHA1 perl-XML-Parser perl-Unicode-String perl-MP3-Info perl-TimeDate"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/gnuradio/template b/srcpkgs/gnuradio/template
index 8c7c6e80eee..56969321295 100644
--- a/srcpkgs/gnuradio/template
+++ b/srcpkgs/gnuradio/template
@@ -31,7 +31,6 @@ post_install() {
 
 gnuradio-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gnustep-gui/template b/srcpkgs/gnustep-gui/template
index c6253ca745d..3c1cdbadfe0 100644
--- a/srcpkgs/gnustep-gui/template
+++ b/srcpkgs/gnustep-gui/template
@@ -18,7 +18,6 @@ nocross="objc doesn't get cross build at present within gcc"
 
 gnustep-gui-data_package() {
 	short_desc+=" - assets"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/GNUstep/Sounds
 		vmove usr/lib/GNUstep/Images
diff --git a/srcpkgs/gohufont/template b/srcpkgs/gohufont/template
index c6e43d9c0d1..3218d1befc3 100644
--- a/srcpkgs/gohufont/template
+++ b/srcpkgs/gohufont/template
@@ -2,7 +2,6 @@
 pkgname=gohufont
 version=2.1
 revision=2
-archs=noarch
 makedepends="font-util xbps-triggers"
 depends="$makedepends"
 short_desc="Programming monospace bitmap"
diff --git a/srcpkgs/google-cloud-sdk/template b/srcpkgs/google-cloud-sdk/template
index 62c449829cd..1b094157ca4 100644
--- a/srcpkgs/google-cloud-sdk/template
+++ b/srcpkgs/google-cloud-sdk/template
@@ -2,7 +2,6 @@
 pkgname=google-cloud-sdk
 version=303.0.0
 revision=1
-archs=noarch
 wrksrc=$pkgname
 depends="python3"
 short_desc="Command-line interface for Google Cloud Platform products and services"
diff --git a/srcpkgs/google-fonts-ttf/template b/srcpkgs/google-fonts-ttf/template
index 25ac61c5dbe..b5fdf32bd7b 100644
--- a/srcpkgs/google-fonts-ttf/template
+++ b/srcpkgs/google-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=google-fonts-ttf
 version=20190605
 revision=1
-archs=noarch
 _githash=87776223497b72be361b5c08ba16e9c659209f37
 wrksrc="fonts-${_githash}"
 depends="font-util cantarell-fonts noto-fonts-ttf"
diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 8ce466aaa83..580a64d140d 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -2,7 +2,6 @@
 pkgname=gpodder
 version=3.10.16
 revision=1
-archs=noarch
 wrksrc="gpodder-${version}"
 hostmakedepends="python3 intltool"
 depends="eyeD3 gtk+3 hicolor-icon-theme python3-dbus python3-gobject
diff --git a/srcpkgs/gradle/template b/srcpkgs/gradle/template
index bf4775cd7a7..5d4a15e50a8 100644
--- a/srcpkgs/gradle/template
+++ b/srcpkgs/gradle/template
@@ -2,7 +2,6 @@
 pkgname=gradle
 version=6.4.1
 revision=1
-archs=noarch
 depends="virtual?java-environment"
 short_desc="Build system for Java/C/C++ software"
 maintainer="Adrian Siekierka <kontakt@asie.pl>"
diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 35e3245ef62..a24b860e37f 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -2,7 +2,6 @@
 pkgname=gramps
 version=5.1.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config intltool python3"
 depends="gtk+3 python3-gobject python3-bsddb3"
diff --git a/srcpkgs/grc/template b/srcpkgs/grc/template
index 9efca90352e..a59c5e97f14 100644
--- a/srcpkgs/grc/template
+++ b/srcpkgs/grc/template
@@ -2,7 +2,6 @@
 pkgname=grc
 version=1.11.3
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Colouriser for logfiles and output of commands"
 maintainer="Georg Schabel <gescha@posteo.de>"
diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 237e2ac9ae9..ca6c9f42667 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -2,7 +2,6 @@
 pkgname=greg
 version=0.4.7
 revision=6
-archs=noarch
 build_style=python3-module
 pycompile_module="greg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/greybird-themes/template b/srcpkgs/greybird-themes/template
index 1ce9e214cb1..447ad0da879 100644
--- a/srcpkgs/greybird-themes/template
+++ b/srcpkgs/greybird-themes/template
@@ -2,7 +2,6 @@
 pkgname=greybird-themes
 version=3.22.12
 revision=1
-archs=noarch
 wrksrc="Greybird-${version}"
 build_style=meson
 hostmakedepends="sassc ninja glib-devel gdk-pixbuf-devel librsvg-devel"
diff --git a/srcpkgs/grip/template b/srcpkgs/grip/template
index 6acfe00b299..6459d6bb386 100755
--- a/srcpkgs/grip/template
+++ b/srcpkgs/grip/template
@@ -2,7 +2,6 @@
 pkgname=grip
 version=4.5.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-docopt python3-Flask python3-Markdown python3-path-and-address python3-Pygments python3-requests"
diff --git a/srcpkgs/grml-zsh-config/template b/srcpkgs/grml-zsh-config/template
index 1931c4d1f01..8b674961375 100644
--- a/srcpkgs/grml-zsh-config/template
+++ b/srcpkgs/grml-zsh-config/template
@@ -2,7 +2,6 @@
 pkgname=grml-zsh-config
 version=0.17.4
 revision=1
-archs=noarch
 wrksrc="grml-etc-core-${version}"
 short_desc="Grml's zsh setup"
 maintainer="Christian Poulwey <christian.poulwey@t-online.de>"
diff --git a/srcpkgs/groff/template b/srcpkgs/groff/template
index 690b26c94ff..a6c8419d0df 100644
--- a/srcpkgs/groff/template
+++ b/srcpkgs/groff/template
@@ -50,7 +50,6 @@ libgroff_package() {
 
 groff-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/grub-terminus/template b/srcpkgs/grub-terminus/template
index 5f53c77384d..9b5e867d4df 100644
--- a/srcpkgs/grub-terminus/template
+++ b/srcpkgs/grub-terminus/template
@@ -2,7 +2,6 @@
 pkgname=grub-terminus
 version=0.2
 revision=1
-archs=noarch
 hostmakedepends="grub-utils terminus-font"
 short_desc="Terminus bold fonts for GRUB"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/grub/template b/srcpkgs/grub/template
index 77c6cfbff2f..0c4642323d7 100644
--- a/srcpkgs/grub/template
+++ b/srcpkgs/grub/template
@@ -162,7 +162,6 @@ grub-utils_package() {
 	}
 }
 grub-x86_64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - x86_64 EFI support"
 	pkg_install() {
@@ -170,7 +169,6 @@ grub-x86_64-efi_package() {
 	}
 }
 grub-i386-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - i386 EFI support"
 	pkg_install() {
@@ -178,7 +176,6 @@ grub-i386-efi_package() {
 	}
 }
 grub-i386-coreboot_package() {
-	archs=noarch
 	depends="grub>=$version"
 	short_desc+=" - i386 coreboot support"
 	pkg_install() {
@@ -200,7 +197,6 @@ grub-xen_package() {
 	}
 }
 grub-arm64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - arm64 EFI support"
 	pkg_install() {
@@ -208,7 +204,6 @@ grub-arm64-efi_package() {
 	}
 }
 grub-powerpc-ieee1275_package() {
-	archs=noarch
 	depends="grub>=$version powerpc-utils"
 	short_desc+=" - powerpc Open Firmware support"
 	pkg_install() {
diff --git a/srcpkgs/gscan2pdf/template b/srcpkgs/gscan2pdf/template
index 6e01328a391..201cccf6224 100644
--- a/srcpkgs/gscan2pdf/template
+++ b/srcpkgs/gscan2pdf/template
@@ -2,7 +2,6 @@
 pkgname=gscan2pdf
 version=2.8.2
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl gettext"
 makedepends="ImageMagick djvulibre libmagick-perl perl-Config-General
diff --git a/srcpkgs/gscreenshot/template b/srcpkgs/gscreenshot/template
index 5537910592e..13964d4fbab 100644
--- a/srcpkgs/gscreenshot/template
+++ b/srcpkgs/gscreenshot/template
@@ -2,7 +2,6 @@
 pkgname=gscreenshot
 version=2.12.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="gtk+3 python3-setuptools python3-Pillow python3-gobject scrot"
diff --git a/srcpkgs/gsfonts/template b/srcpkgs/gsfonts/template
index 5d76979e0ed..511a929ceb7 100644
--- a/srcpkgs/gsfonts/template
+++ b/srcpkgs/gsfonts/template
@@ -2,7 +2,6 @@
 pkgname=gsfonts
 version=8.11
 revision=5
-archs=noarch
 wrksrc=fonts
 makedepends="font-util font-misc-misc"
 depends="${makedepends}"
diff --git a/srcpkgs/gtk-doc/template b/srcpkgs/gtk-doc/template
index 439da0d796e..d56054d12f6 100644
--- a/srcpkgs/gtk-doc/template
+++ b/srcpkgs/gtk-doc/template
@@ -2,7 +2,6 @@
 pkgname=gtk-doc
 version=1.32
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="usr/share/gtk-doc/python/gtkdoc"
 hostmakedepends="gettext docbook-xml docbook-xsl itstool libxslt pkg-config python3"
diff --git a/srcpkgs/gtk-theme-united-gnome/template b/srcpkgs/gtk-theme-united-gnome/template
index 3523498a780..355bf483d67 100644
--- a/srcpkgs/gtk-theme-united-gnome/template
+++ b/srcpkgs/gtk-theme-united-gnome/template
@@ -2,7 +2,6 @@
 pkgname=gtk-theme-united-gnome
 version=2.2
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="gnome-themes-standard gtk+3 gtk-engine-murrine"
 short_desc="GTK2/3 + GNOME Shell theme based on a Ubuntu 18.04 design concept"
diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 885fed99f0b..564d719856b 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -2,7 +2,6 @@
 pkgname=guake
 version=3.6.3
 revision=3
-archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"
 pycompile_module="guake"
diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index 1b87f809fe9..348c7ca7da8 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -2,7 +2,6 @@
 pkgname=gufw
 version=20.04.1
 revision=1
-archs=noarch
 wrksrc="gufw-${version}"
 build_style=python3-module
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/guilt/template b/srcpkgs/guilt/template
index 3c17d8cc879..76449857b96 100644
--- a/srcpkgs/guilt/template
+++ b/srcpkgs/guilt/template
@@ -4,7 +4,6 @@ version=0.36
 revision=2
 _githash=22d785dd24329170f66e7696da38b3e90e033d61
 _gitshort="${_githash:0:7}"
-archs=noarch
 wrksrc="guilt-${_gitshort}"
 build_style=gnu-makefile
 make_build_args="-C Documentation"
diff --git a/srcpkgs/gyazo/template b/srcpkgs/gyazo/template
index 3661570514a..261d2f6e175 100644
--- a/srcpkgs/gyazo/template
+++ b/srcpkgs/gyazo/template
@@ -4,7 +4,6 @@ version=1.2.1
 revision=1
 wrksrc="Gyazo-for-Linux-${version}"
 depends="ruby xclip ImageMagick"
-archs=noarch
 short_desc="Seriously Instant Screen-Grabbing"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
 license="GPL-2"
diff --git a/srcpkgs/hamster-applet/template b/srcpkgs/hamster-applet/template
index ce244c38f10..aa6e23f26b3 100644
--- a/srcpkgs/hamster-applet/template
+++ b/srcpkgs/hamster-applet/template
@@ -2,7 +2,6 @@
 pkgname=hamster-applet
 version=2.91.2
 revision=10
-archs=noarch
 build_style=waf
 pycompile_module="hamster"
 hostmakedepends="pkg-config intltool gnome-doc-utils docbook2x"
diff --git a/srcpkgs/hashboot/template b/srcpkgs/hashboot/template
index 67c071e4f9e..49dbe3478f4 100644
--- a/srcpkgs/hashboot/template
+++ b/srcpkgs/hashboot/template
@@ -2,7 +2,6 @@
 pkgname=hashboot
 version=0.9.14
 revision=1
-archs=noarch
 hostmakedepends="asciidoc"
 short_desc="Check integrity of files in /boot, mbr & (mostly) coreboot bios"
 maintainer="teldra <teldra@rotce.de>"
diff --git a/srcpkgs/hedgewars/template b/srcpkgs/hedgewars/template
index 40cdb1086b4..c7418ec778b 100644
--- a/srcpkgs/hedgewars/template
+++ b/srcpkgs/hedgewars/template
@@ -56,7 +56,6 @@ post_install() {
 
 hedgewars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/hedgewars/Data
 	}
diff --git a/srcpkgs/hg-git/template b/srcpkgs/hg-git/template
index 15f981d8563..4a47998a4a3 100644
--- a/srcpkgs/hg-git/template
+++ b/srcpkgs/hg-git/template
@@ -3,7 +3,6 @@ pkgname=hg-git
 version=0.8.12
 revision=1
 wrksrc="durin42-hg-git-c651bb6fcf33"
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python python-dulwich"
diff --git a/srcpkgs/hicolor-icon-theme/template b/srcpkgs/hicolor-icon-theme/template
index 35798239a5e..51d207c4a3c 100644
--- a/srcpkgs/hicolor-icon-theme/template
+++ b/srcpkgs/hicolor-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=hicolor-icon-theme
 version=0.17
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard icon theme called hicolor"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/hiera/template b/srcpkgs/hiera/template
index b8cd47376ba..69f4928eff1 100644
--- a/srcpkgs/hiera/template
+++ b/srcpkgs/hiera/template
@@ -2,7 +2,6 @@
 pkgname=hiera
 version=3.6.0
 revision=2
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/hostfw/template b/srcpkgs/hostfw/template
index 445c9bee74e..00484a3f5b9 100644
--- a/srcpkgs/hostfw/template
+++ b/srcpkgs/hostfw/template
@@ -2,7 +2,6 @@
 pkgname=hostfw
 version=0.6.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="iptables"
 short_desc="Simple host-based permit-by-exception iptables generation script"
diff --git a/srcpkgs/hostmux/template b/srcpkgs/hostmux/template
index c261e9487ec..4a7bd2f0dfa 100644
--- a/srcpkgs/hostmux/template
+++ b/srcpkgs/hostmux/template
@@ -2,7 +2,6 @@
 pkgname=hostmux
 version=1.4.0
 revision=1
-archs=noarch
 depends="tmux"
 short_desc="A small wrapper for tmux to easily connect to a series of hosts via ssh"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/hosts-update/template b/srcpkgs/hosts-update/template
index 4dc11da9b3a..12b123f5182 100644
--- a/srcpkgs/hosts-update/template
+++ b/srcpkgs/hosts-update/template
@@ -2,7 +2,6 @@
 pkgname=hosts-update
 version=1.37
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="bash curl"
 short_desc="Updates /etc/hosts with the mvps blocklist"
diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 2cb04c88273..6de3cef38ba 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -2,7 +2,6 @@
 pkgname=httpie
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests python3-Pygments"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-httpie_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="httpie>=${version}_${revision}"
diff --git a/srcpkgs/hunspell-da_DK/template b/srcpkgs/hunspell-da_DK/template
index 8fffc8f3f32..ebbf69fde46 100644
--- a/srcpkgs/hunspell-da_DK/template
+++ b/srcpkgs/hunspell-da_DK/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-da_DK
 version=2.4
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Danish da_DK dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_CH/template b/srcpkgs/hunspell-de_CH/template
index c23fb3ad0a0..6af64522019 100644
--- a/srcpkgs/hunspell-de_CH/template
+++ b/srcpkgs/hunspell-de_CH/template
@@ -3,7 +3,6 @@ pkgname=hunspell-de_CH
 version=20170112
 revision=1
 _version="${version:0:4}-${version:4:2}.${version:6:2}"
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="German (Switzerland) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_DE/template b/srcpkgs/hunspell-de_DE/template
index f7da2d64d4c..94733999f27 100644
--- a/srcpkgs/hunspell-de_DE/template
+++ b/srcpkgs/hunspell-de_DE/template
@@ -11,7 +11,6 @@ short_desc="German (Germany) dictionary for hunspell"
 distfiles="https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries/${_version}/@@download/file/dict-de_DE-frami_${_version}.oxt>dict-de.zip"
 checksum=af515015e306c634373b5382808a39691200de3439811d2f1502e9b91c23b46a
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall ${wrksrc}/de_DE_frami/de_DE_frami.aff 644 usr/share/hunspell de_DE.aff
diff --git a/srcpkgs/hunspell-el_GR/template b/srcpkgs/hunspell-el_GR/template
index 698057e616e..aaedf9fe65d 100644
--- a/srcpkgs/hunspell-el_GR/template
+++ b/srcpkgs/hunspell-el_GR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-el_GR
 version=0.4.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Greek el_GR dictionary for hunspell"
 maintainer="Nicholas Christopoulos <nereus@freemail.gr>"
diff --git a/srcpkgs/hunspell-en_AU/template b/srcpkgs/hunspell-en_AU/template
index f8f3b94e6ab..7b11e8840e5 100644
--- a/srcpkgs/hunspell-en_AU/template
+++ b/srcpkgs/hunspell-en_AU/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_AU
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Australian English en_AU dictionary for hunspell"
diff --git a/srcpkgs/hunspell-en_GB-ize/template b/srcpkgs/hunspell-en_GB-ize/template
index 41001a413a8..82b38cb25f3 100644
--- a/srcpkgs/hunspell-en_GB-ize/template
+++ b/srcpkgs/hunspell-en_GB-ize/template
@@ -4,7 +4,6 @@ _variant="ize"
 pkgname=${_vpkgname}-${_variant}
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="English dictionary for hunspell ${_variant} variant"
diff --git a/srcpkgs/hunspell-en_US/template b/srcpkgs/hunspell-en_US/template
index 0d100851774..807577870f1 100644
--- a/srcpkgs/hunspell-en_US/template
+++ b/srcpkgs/hunspell-en_US/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_US
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="American English en_US dictionary for hunspell"
diff --git a/srcpkgs/hunspell-es_ES/template b/srcpkgs/hunspell-es_ES/template
index f24f904620f..b08aaabb2a6 100644
--- a/srcpkgs/hunspell-es_ES/template
+++ b/srcpkgs/hunspell-es_ES/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-es_ES
 version=2.5
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Spanish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-fr_FR/template b/srcpkgs/hunspell-fr_FR/template
index 9ad9c70a087..7cd93fe29c6 100644
--- a/srcpkgs/hunspell-fr_FR/template
+++ b/srcpkgs/hunspell-fr_FR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-fr_FR
 version=6.4.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="French dictionary for hunspell"
@@ -24,7 +23,6 @@ hunspell-fr_FR-moderne_package() {
 	short_desc+=" - Moderne Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -37,7 +35,6 @@ hunspell-fr_FR-reforme1990_package() {
 	short_desc+=" - Reforme 1990 Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -50,7 +47,6 @@ hunspell-fr_FR-toutesvariantes_package() {
 	short_desc+=" - All variant in one file"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
diff --git a/srcpkgs/hunspell-hr_HR/template b/srcpkgs/hunspell-hr_HR/template
index a72930fe333..b0ab1484e90 100644
--- a/srcpkgs/hunspell-hr_HR/template
+++ b/srcpkgs/hunspell-hr_HR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-hr_HR
 version=20030928
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Croatian (Croatia) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-it_IT/template b/srcpkgs/hunspell-it_IT/template
index 44d83a79ae6..9d0e0c3186c 100644
--- a/srcpkgs/hunspell-it_IT/template
+++ b/srcpkgs/hunspell-it_IT/template
@@ -3,7 +3,6 @@ pkgname=hunspell-it_IT
 version=4.2
 revision=1
 build_style=fetch
-archs=noarch
 hostmakedepends="unzip"
 short_desc="Italian dictionary for hunspell"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
diff --git a/srcpkgs/hunspell-pl_PL/template b/srcpkgs/hunspell-pl_PL/template
index 31158cc9bec..4cb3ceb10fe 100644
--- a/srcpkgs/hunspell-pl_PL/template
+++ b/srcpkgs/hunspell-pl_PL/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pl_PL
 version=20191005
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Polish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-pt_BR/template b/srcpkgs/hunspell-pt_BR/template
index 4920979d7d3..91b14b275af 100644
--- a/srcpkgs/hunspell-pt_BR/template
+++ b/srcpkgs/hunspell-pt_BR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pt_BR
 version=3.2
 revision=2
-archs=noarch
 build_style=fetch
 hostmakedepends="unzip"
 short_desc="Brazillian Portuguese dictionary for hunspell"
diff --git a/srcpkgs/hunspell-ru_RU-ieyo/template b/srcpkgs/hunspell-ru_RU-ieyo/template
index dcc45866c09..82f485a910a 100644
--- a/srcpkgs/hunspell-ru_RU-ieyo/template
+++ b/srcpkgs/hunspell-ru_RU-ieyo/template
@@ -10,7 +10,6 @@ homepage="http://extensions.openoffice.org/en/projectrelease/russkiy-orfografich
 distfiles="${SOURCEFORGE_SITE}/project/aoo-extensions/5149/3/dict_ru_ru-aot-${version}-ieyo.oxt>dict-ru_RU-ieyo.zip"
 checksum=3b374cf18f00fd0a9b6514eb8413438ce5d425a2e04435ffd81d8acc7ee1e578
 create_wrksrc=yes
-archs=noarch
 provides="hunspell-ru_RU-${version}_${revision}"
 conflicts="hunspell-ru_RU"
 
diff --git a/srcpkgs/hunspell-ru_RU/template b/srcpkgs/hunspell-ru_RU/template
index 862bed568c1..ffd028dbcda 100644
--- a/srcpkgs/hunspell-ru_RU/template
+++ b/srcpkgs/hunspell-ru_RU/template
@@ -10,7 +10,6 @@ homepage="https://extensions.libreoffice.org/extensions/russian-spellcheck-dicti
 distfiles="https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group/${version/./-}/@@download/file/dict_ru_ru-aot-${version}.oxt>dict-ru.zip"
 checksum=ee9b0575e9f8caf1d0a948fb644aed864de47aaf3bc24d2b77f288fec7f8d4c4
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall russian-aot.aff 644 usr/share/hunspell ru_RU.aff
diff --git a/srcpkgs/hunspell-sv_SE/template b/srcpkgs/hunspell-sv_SE/template
index d36dd1359fa..991a74da507 100644
--- a/srcpkgs/hunspell-sv_SE/template
+++ b/srcpkgs/hunspell-sv_SE/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-sv_SE
 version=2.41
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Swedish sv_SE dictionary for hunspell"
diff --git a/srcpkgs/hwids/template b/srcpkgs/hwids/template
index 05feaae9dc1..0d99a8f959b 100644
--- a/srcpkgs/hwids/template
+++ b/srcpkgs/hwids/template
@@ -2,7 +2,6 @@
 pkgname=hwids
 version=20200306
 revision=1
-archs=noarch
 wrksrc="hwids-hwids-${version}"
 short_desc="Hardware Identification Databases"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/i3blocks-blocklets/template b/srcpkgs/i3blocks-blocklets/template
index 82d7380e856..b70dabb34c5 100644
--- a/srcpkgs/i3blocks-blocklets/template
+++ b/srcpkgs/i3blocks-blocklets/template
@@ -2,7 +2,6 @@
 pkgname=i3blocks-blocklets
 version=1.4.0
 revision=2
-archs=noarch
 wrksrc="i3blocks-contrib-${version}"
 depends="i3blocks>=1.5"
 short_desc="Flexible scheduler for i3bar"
diff --git a/srcpkgs/i3lock-fancy/template b/srcpkgs/i3lock-fancy/template
index 5bb3502b4ed..4b3e2ed4663 100644
--- a/srcpkgs/i3lock-fancy/template
+++ b/srcpkgs/i3lock-fancy/template
@@ -2,7 +2,6 @@
 pkgname=i3lock-fancy
 version=0.2
 revision=1
-archs=noarch
 depends="util-linux bash ImageMagick i3lock wmctrl gawk"
 short_desc="Fancy lockscreen using i3lock"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iana-etc/template b/srcpkgs/iana-etc/template
index cf2c419b23c..8717a999a08 100644
--- a/srcpkgs/iana-etc/template
+++ b/srcpkgs/iana-etc/template
@@ -3,7 +3,6 @@ pkgname=iana-etc
 version=20190504
 revision=1
 bootstrap=yes
-archs=noarch
 short_desc="Unix /etc/services and /etc/protocols files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
diff --git a/srcpkgs/ibus-avro/template b/srcpkgs/ibus-avro/template
index 78350f5f4df..5ae42e15aa6 100644
--- a/srcpkgs/ibus-avro/template
+++ b/srcpkgs/ibus-avro/template
@@ -2,7 +2,6 @@
 pkgname=ibus-avro
 version=1.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_target="installdeb"
 hostmakedepends="automake pkg-config"
diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 396448b86f4..6dfcb6e3de2 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -3,7 +3,6 @@ pkgname=icdiff
 version=1.9.5
 revision=2
 wrksrc="${pkgname}-release-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="icdiff.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-icdiff_package() {
-	archs=noarch
 	depends="python3 python3-setuptools"
 	pycompile_module="icdiff.py"
 	alternatives="
diff --git a/srcpkgs/ice-ssb/template b/srcpkgs/ice-ssb/template
index c06941257c1..c4c7625a15a 100644
--- a/srcpkgs/ice-ssb/template
+++ b/srcpkgs/ice-ssb/template
@@ -2,7 +2,6 @@
 pkgname=ice-ssb
 version=6.0.8
 revision=1
-archs=noarch
 wrksrc="ice-$version"
 depends="gtk+3 python3-BeautifulSoup4 python3-gobject python3-requests"
 short_desc="Site Specific Browsers (SSBs) manager"
diff --git a/srcpkgs/icecat/template b/srcpkgs/icecat/template
index 2cdfa5dc264..e3271443af8 100644
--- a/srcpkgs/icecat/template
+++ b/srcpkgs/icecat/template
@@ -208,7 +208,6 @@ do_install() {
 icecat-i18n-ach_package() {
 	short_desc+=" - Acholi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -217,7 +216,6 @@ icecat-i18n-ach_package() {
 icecat-i18n-af_package() {
 	short_desc+=" - Afrikaans language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -226,7 +224,6 @@ icecat-i18n-af_package() {
 icecat-i18n-an_package() {
 	short_desc+=" - Aragonese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -235,7 +232,6 @@ icecat-i18n-an_package() {
 icecat-i18n-ar_package() {
 	short_desc+=" - Arabic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -244,7 +240,6 @@ icecat-i18n-ar_package() {
 icecat-i18n-ast_package() {
 	short_desc+=" - Asturian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -253,7 +248,6 @@ icecat-i18n-ast_package() {
 icecat-i18n-az_package() {
 	short_desc+=" - Azerbaijani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -262,7 +256,6 @@ icecat-i18n-az_package() {
 icecat-i18n-be_package() {
 	short_desc+=" - Belarusian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -271,7 +264,6 @@ icecat-i18n-be_package() {
 icecat-i18n-bg_package() {
 	short_desc+=" - Bulgarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -280,7 +272,6 @@ icecat-i18n-bg_package() {
 icecat-i18n-bn_package() {
 	short_desc+=" - Bengali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -289,7 +280,6 @@ icecat-i18n-bn_package() {
 icecat-i18n-br_package() {
 	short_desc+=" - Breton language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -298,7 +288,6 @@ icecat-i18n-br_package() {
 icecat-i18n-bs_package() {
 	short_desc+=" - Bosnian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -307,7 +296,6 @@ icecat-i18n-bs_package() {
 icecat-i18n-ca_package() {
 	short_desc+=" - Catalan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -316,7 +304,6 @@ icecat-i18n-ca_package() {
 icecat-i18n-cak_package() {
 	short_desc+=" - Kaqchikel language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -325,7 +312,6 @@ icecat-i18n-cak_package() {
 icecat-i18n-cs_package() {
 	short_desc+=" - Czech language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -334,7 +320,6 @@ icecat-i18n-cs_package() {
 icecat-i18n-cy_package() {
 	short_desc+=" - Welsh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -343,7 +328,6 @@ icecat-i18n-cy_package() {
 icecat-i18n-da_package() {
 	short_desc+=" - Danish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -352,7 +336,6 @@ icecat-i18n-da_package() {
 icecat-i18n-de_package() {
 	short_desc+=" - German language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -361,7 +344,6 @@ icecat-i18n-de_package() {
 icecat-i18n-dsb_package() {
 	short_desc+=" - Lower Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -370,7 +352,6 @@ icecat-i18n-dsb_package() {
 icecat-i18n-el_package() {
 	short_desc+=" - Greek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -379,7 +360,6 @@ icecat-i18n-el_package() {
 icecat-i18n-en-CA_package() {
 	short_desc+=" - English (Canada) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -388,7 +368,6 @@ icecat-i18n-en-CA_package() {
 icecat-i18n-en-GB_package() {
 	short_desc+=" - English (British) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -397,7 +376,6 @@ icecat-i18n-en-GB_package() {
 icecat-i18n-en-US_package() {
 	short_desc+=" - English (US) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -406,7 +384,6 @@ icecat-i18n-en-US_package() {
 icecat-i18n-eo_package() {
 	short_desc+=" - Esperanto language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -415,7 +392,6 @@ icecat-i18n-eo_package() {
 icecat-i18n-es-AR_package() {
 	short_desc+=" - Spanish (Argentina) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -424,7 +400,6 @@ icecat-i18n-es-AR_package() {
 icecat-i18n-es-CL_package() {
 	short_desc+=" - Spanish (Chile) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -433,7 +408,6 @@ icecat-i18n-es-CL_package() {
 icecat-i18n-es-ES_package() {
 	short_desc+=" - Spanish (Spain) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -442,7 +416,6 @@ icecat-i18n-es-ES_package() {
 icecat-i18n-es-MX_package() {
 	short_desc+=" - Spanish (Mexico) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -451,7 +424,6 @@ icecat-i18n-es-MX_package() {
 icecat-i18n-et_package() {
 	short_desc+=" - Estonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -460,7 +432,6 @@ icecat-i18n-et_package() {
 icecat-i18n-eu_package() {
 	short_desc+=" - Basque language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -469,7 +440,6 @@ icecat-i18n-eu_package() {
 icecat-i18n-fa_package() {
 	short_desc+=" - Persian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -478,7 +448,6 @@ icecat-i18n-fa_package() {
 icecat-i18n-ff_package() {
 	short_desc+=" - Fulah language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -487,7 +456,6 @@ icecat-i18n-ff_package() {
 icecat-i18n-fi_package() {
 	short_desc+=" - Finnish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -496,7 +464,6 @@ icecat-i18n-fi_package() {
 icecat-i18n-fr_package() {
 	short_desc+=" - French language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -505,7 +472,6 @@ icecat-i18n-fr_package() {
 icecat-i18n-fy-NL_package() {
 	short_desc+=" - Frisian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -514,7 +480,6 @@ icecat-i18n-fy-NL_package() {
 icecat-i18n-ga-IE_package() {
 	short_desc+=" - Irish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -523,7 +488,6 @@ icecat-i18n-ga-IE_package() {
 icecat-i18n-gd_package() {
 	short_desc+=" - Gaelic (Scotland) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -532,7 +496,6 @@ icecat-i18n-gd_package() {
 icecat-i18n-gl_package() {
 	short_desc+=" - Galician language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -541,7 +504,6 @@ icecat-i18n-gl_package() {
 icecat-i18n-gn_package() {
 	short_desc+=" - Guarani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -550,7 +512,6 @@ icecat-i18n-gn_package() {
 icecat-i18n-gu-IN_package() {
 	short_desc+=" - Gujarati (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -559,7 +520,6 @@ icecat-i18n-gu-IN_package() {
 icecat-i18n-he_package() {
 	short_desc+=" - Hebrew language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -568,7 +528,6 @@ icecat-i18n-he_package() {
 icecat-i18n-hi-IN_package() {
 	short_desc+=" - Hindi (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -577,7 +536,6 @@ icecat-i18n-hi-IN_package() {
 icecat-i18n-hr_package() {
 	short_desc+=" - Croatian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -586,7 +544,6 @@ icecat-i18n-hr_package() {
 icecat-i18n-hsb_package() {
 	short_desc+=" - Upper Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -595,7 +552,6 @@ icecat-i18n-hsb_package() {
 icecat-i18n-hu_package() {
 	short_desc+=" - Hungarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -604,7 +560,6 @@ icecat-i18n-hu_package() {
 icecat-i18n-hy-AM_package() {
 	short_desc+=" - Armenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -613,7 +568,6 @@ icecat-i18n-hy-AM_package() {
 icecat-i18n-ia_package() {
 	short_desc+=" - Interlingua language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -622,7 +576,6 @@ icecat-i18n-ia_package() {
 icecat-i18n-id_package() {
 	short_desc+=" - Indonesian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -631,7 +584,6 @@ icecat-i18n-id_package() {
 icecat-i18n-is_package() {
 	short_desc+=" - Icelandic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -640,7 +592,6 @@ icecat-i18n-is_package() {
 icecat-i18n-it_package() {
 	short_desc+=" - Italian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -649,7 +600,6 @@ icecat-i18n-it_package() {
 icecat-i18n-ja_package() {
 	short_desc+=" - Japanese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -658,7 +608,6 @@ icecat-i18n-ja_package() {
 icecat-i18n-ka_package() {
 	short_desc+=" - Georgian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -667,7 +616,6 @@ icecat-i18n-ka_package() {
 icecat-i18n-kab_package() {
 	short_desc+=" - Kabyle language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -676,7 +624,6 @@ icecat-i18n-kab_package() {
 icecat-i18n-kk_package() {
 	short_desc+=" - Kazakh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -685,7 +632,6 @@ icecat-i18n-kk_package() {
 icecat-i18n-km_package() {
 	short_desc+=" - Khmer language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -694,7 +640,6 @@ icecat-i18n-km_package() {
 icecat-i18n-kn_package() {
 	short_desc+=" - Kannada language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -703,7 +648,6 @@ icecat-i18n-kn_package() {
 icecat-i18n-ko_package() {
 	short_desc+=" - Korean language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -712,7 +656,6 @@ icecat-i18n-ko_package() {
 icecat-i18n-lij_package() {
 	short_desc+=" - Ligurian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -721,7 +664,6 @@ icecat-i18n-lij_package() {
 icecat-i18n-lt_package() {
 	short_desc+=" - Lithuanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -730,7 +672,6 @@ icecat-i18n-lt_package() {
 icecat-i18n-lv_package() {
 	short_desc+=" - Latvian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -739,7 +680,6 @@ icecat-i18n-lv_package() {
 icecat-i18n-mk_package() {
 	short_desc+=" - Macedonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -748,7 +688,6 @@ icecat-i18n-mk_package() {
 icecat-i18n-mr_package() {
 	short_desc+=" - Marathi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -757,7 +696,6 @@ icecat-i18n-mr_package() {
 icecat-i18n-ms_package() {
 	short_desc+=" - Malay language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -766,7 +704,6 @@ icecat-i18n-ms_package() {
 icecat-i18n-my_package() {
 	short_desc+=" - Burmese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -775,7 +712,6 @@ icecat-i18n-my_package() {
 icecat-i18n-nb-NO_package() {
 	short_desc+=" - Norwegian (Bokmål) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -784,7 +720,6 @@ icecat-i18n-nb-NO_package() {
 icecat-i18n-ne-NP_package() {
 	short_desc+=" - Nepali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -793,7 +728,6 @@ icecat-i18n-ne-NP_package() {
 icecat-i18n-nl_package() {
 	short_desc+=" - Dutch language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -802,7 +736,6 @@ icecat-i18n-nl_package() {
 icecat-i18n-nn-NO_package() {
 	short_desc+=" - Norwegian (Nynorsk) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -811,7 +744,6 @@ icecat-i18n-nn-NO_package() {
 icecat-i18n-oc_package() {
 	short_desc+=" - Occitan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -820,7 +752,6 @@ icecat-i18n-oc_package() {
 icecat-i18n-pa-IN_package() {
 	short_desc+=" - Punjabi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -829,7 +760,6 @@ icecat-i18n-pa-IN_package() {
 icecat-i18n-pl_package() {
 	short_desc+=" - Polish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -838,7 +768,6 @@ icecat-i18n-pl_package() {
 icecat-i18n-pt-BR_package() {
 	short_desc+=" - Portuguese (Brazilian) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -847,7 +776,6 @@ icecat-i18n-pt-BR_package() {
 icecat-i18n-pt-PT_package() {
 	short_desc+=" - Portuguese (Portugal) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -856,7 +784,6 @@ icecat-i18n-pt-PT_package() {
 icecat-i18n-rm_package() {
 	short_desc+=" - Romansh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -865,7 +792,6 @@ icecat-i18n-rm_package() {
 icecat-i18n-ro_package() {
 	short_desc+=" - Romanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -874,7 +800,6 @@ icecat-i18n-ro_package() {
 icecat-i18n-ru_package() {
 	short_desc+=" - Russian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -883,7 +808,6 @@ icecat-i18n-ru_package() {
 icecat-i18n-si_package() {
 	short_desc+=" - Sinhala language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -892,7 +816,6 @@ icecat-i18n-si_package() {
 icecat-i18n-sk_package() {
 	short_desc+=" - Slovak language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -901,7 +824,6 @@ icecat-i18n-sk_package() {
 icecat-i18n-sl_package() {
 	short_desc+=" - Slovenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -910,7 +832,6 @@ icecat-i18n-sl_package() {
 icecat-i18n-son_package() {
 	short_desc+=" - Songhai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -919,7 +840,6 @@ icecat-i18n-son_package() {
 icecat-i18n-sq_package() {
 	short_desc+=" - Albanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -928,7 +848,6 @@ icecat-i18n-sq_package() {
 icecat-i18n-sr_package() {
 	short_desc+=" - Serbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -937,7 +856,6 @@ icecat-i18n-sr_package() {
 icecat-i18n-sv-SE_package() {
 	short_desc+=" - Swedish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -946,7 +864,6 @@ icecat-i18n-sv-SE_package() {
 icecat-i18n-ta_package() {
 	short_desc+=" - Tamil language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -955,7 +872,6 @@ icecat-i18n-ta_package() {
 icecat-i18n-te_package() {
 	short_desc+=" - Telugu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -964,7 +880,6 @@ icecat-i18n-te_package() {
 icecat-i18n-th_package() {
 	short_desc+=" - Thai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -973,7 +888,6 @@ icecat-i18n-th_package() {
 icecat-i18n-tr_package() {
 	short_desc+=" - Turkish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -982,7 +896,6 @@ icecat-i18n-tr_package() {
 icecat-i18n-uk_package() {
 	short_desc+=" - Ukrainian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -991,7 +904,6 @@ icecat-i18n-uk_package() {
 icecat-i18n-ur_package() {
 	short_desc+=" - Urdu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1000,7 +912,6 @@ icecat-i18n-ur_package() {
 icecat-i18n-uz_package() {
 	short_desc+=" - Uzbek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1009,7 +920,6 @@ icecat-i18n-uz_package() {
 icecat-i18n-vi_package() {
 	short_desc+=" - Vietnamese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1018,7 +928,6 @@ icecat-i18n-vi_package() {
 icecat-i18n-xh_package() {
 	short_desc+=" - Xhosa language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1027,7 +936,6 @@ icecat-i18n-xh_package() {
 icecat-i18n-zh-CN_package() {
 	short_desc+=" - Chinese (simplified) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1036,7 +944,6 @@ icecat-i18n-zh-CN_package() {
 icecat-i18n-zh-TW_package() {
 	short_desc+=" - Chinese (traditional) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
diff --git a/srcpkgs/icedtea-sound/template b/srcpkgs/icedtea-sound/template
index 4ad965c6806..ef2c242eedf 100644
--- a/srcpkgs/icedtea-sound/template
+++ b/srcpkgs/icedtea-sound/template
@@ -15,7 +15,6 @@ checksum=6ff852b82ae7db7a95981271037eb3a3d52c59581e3b27a638a7c6bc8eecb4a3
 
 icedtea-sound-doc_package() {
 	short_desc+=" - docs"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/icon-naming-utils/template b/srcpkgs/icon-naming-utils/template
index f069d604e37..e530a4c40c3 100644
--- a/srcpkgs/icon-naming-utils/template
+++ b/srcpkgs/icon-naming-utils/template
@@ -2,7 +2,6 @@
 pkgname=icon-naming-utils
 version=0.8.90
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Simple"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/imgp/template b/srcpkgs/imgp/template
index 872b3db406c..f7df8788ae5 100644
--- a/srcpkgs/imgp/template
+++ b/srcpkgs/imgp/template
@@ -2,7 +2,6 @@
 pkgname=imgp
 version=2.7
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-Pillow"
 short_desc="Multi-core batch image resizer and rotator"
diff --git a/srcpkgs/indic-otf/template b/srcpkgs/indic-otf/template
index 4f37e66f3ce..a4717a0a1ca 100644
--- a/srcpkgs/indic-otf/template
+++ b/srcpkgs/indic-otf/template
@@ -2,7 +2,6 @@
 pkgname=indic-otf
 version=0.2
 revision=3
-archs=noarch
 wrksrc=indic
 build_wrksrc=OpenType
 makedepends="font-util xbps-triggers"
diff --git a/srcpkgs/indicator-doom-cpu/template b/srcpkgs/indicator-doom-cpu/template
index 33158f90a16..7ebac683ada 100644
--- a/srcpkgs/indicator-doom-cpu/template
+++ b/srcpkgs/indicator-doom-cpu/template
@@ -2,7 +2,6 @@
 pkgname=indicator-doom-cpu
 version=1.0.1
 revision=1
-archs=noarch
 depends="python-gobject"
 short_desc="CPU load indicator showing the dying face from the video game DOOM"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/iniparser/template b/srcpkgs/iniparser/template
index 63eb336c7ea..5cef8a0a774 100644
--- a/srcpkgs/iniparser/template
+++ b/srcpkgs/iniparser/template
@@ -58,14 +58,12 @@ iniparser-devel_package() {
 }
 iniparser-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/iniparser
 	}
 }
 iniparser-example_package() {
 	short_desc+=" - example code"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/iniparser/example
 	}
diff --git a/srcpkgs/intltool/template b/srcpkgs/intltool/template
index 852e1e00ca2..00f0595c822 100644
--- a/srcpkgs/intltool/template
+++ b/srcpkgs/intltool/template
@@ -2,7 +2,6 @@
 pkgname=intltool
 version=0.51.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Parser"
 makedepends="perl-XML-Parser gettext"
diff --git a/srcpkgs/inxi/template b/srcpkgs/inxi/template
index 4126ef12968..df16132b791 100644
--- a/srcpkgs/inxi/template
+++ b/srcpkgs/inxi/template
@@ -2,7 +2,6 @@
 pkgname=inxi
 version=3.1.04
 revision=1
-archs=noarch
 wrksrc="inxi-${version}-1"
 depends="dmidecode file glxinfo pciutils perl usbutils xdpyinfo xprop xrandr
  procps-ng"
diff --git a/srcpkgs/io.elementary.stylesheet/template b/srcpkgs/io.elementary.stylesheet/template
index 6b40406712d..bf13584ffc7 100644
--- a/srcpkgs/io.elementary.stylesheet/template
+++ b/srcpkgs/io.elementary.stylesheet/template
@@ -2,7 +2,6 @@
 pkgname=io.elementary.stylesheet
 version=5.4.2
 revision=1
-archs=noarch
 wrksrc="stylesheet-${version}"
 build_style=meson
 short_desc="GTK Stylesheet for elementary OS"
diff --git a/srcpkgs/ioprof/template b/srcpkgs/ioprof/template
index 32b327b4677..26c0306eeb1 100644
--- a/srcpkgs/ioprof/template
+++ b/srcpkgs/ioprof/template
@@ -2,7 +2,6 @@
 pkgname=ioprof
 version=2.0.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="perl blktrace"
 short_desc="Linux I/O profiler"
diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 522bf32a7c2..1cde442db97 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -2,7 +2,6 @@
 pkgname=iotop
 version=0.6
 revision=6
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/ipafont-fonts-otf/template b/srcpkgs/ipafont-fonts-otf/template
index cd7a474d169..37223a3949d 100644
--- a/srcpkgs/ipafont-fonts-otf/template
+++ b/srcpkgs/ipafont-fonts-otf/template
@@ -3,7 +3,6 @@ pkgname=ipafont-fonts-otf
 version=003.03
 revision=3
 _pkgver=${version/./}
-archs=noarch
 wrksrc="IPAfont${_pkgver}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/ipcalc/template b/srcpkgs/ipcalc/template
index 6a35f924f0d..b9d7374e56a 100644
--- a/srcpkgs/ipcalc/template
+++ b/srcpkgs/ipcalc/template
@@ -2,7 +2,6 @@
 pkgname=ipcalc
 version=0.41
 revision=2
-archs=noarch
 depends="perl"
 short_desc="Calculator for IPv4 addresses"
 maintainer="allan <mail@may.mooo.com>"
diff --git a/srcpkgs/ipw2100-firmware/template b/srcpkgs/ipw2100-firmware/template
index 91d72d07724..ea086f6f90f 100644
--- a/srcpkgs/ipw2100-firmware/template
+++ b/srcpkgs/ipw2100-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2100-firmware
 _distname=ipw2100-fw
 version=1.3
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 create_wrksrc=yes
 short_desc="Firmware for the Intel PRO/Wireless 2100 wifi cards"
diff --git a/srcpkgs/ipw2200-firmware/template b/srcpkgs/ipw2200-firmware/template
index f6accfe3dbb..418eb943478 100644
--- a/srcpkgs/ipw2200-firmware/template
+++ b/srcpkgs/ipw2200-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2200-firmware
 _distname=ipw2200-fw
 version=3.1
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 short_desc="Firmware for the Intel PRO/Wireless 2200BG wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iscan-data/template b/srcpkgs/iscan-data/template
index 2953cb34344..bd5452da2e5 100644
--- a/srcpkgs/iscan-data/template
+++ b/srcpkgs/iscan-data/template
@@ -3,7 +3,6 @@ pkgname=iscan-data
 version=1.39.0
 revision=2
 _srcrev=1
-archs=noarch
 build_style=gnu-configure
 maintainer="Orphaned <orphan@voidlinux.org>"
 hostmakedepends="libxslt"
diff --git a/srcpkgs/iso-codes/template b/srcpkgs/iso-codes/template
index fc7a09d4007..af6c55a68ff 100644
--- a/srcpkgs/iso-codes/template
+++ b/srcpkgs/iso-codes/template
@@ -2,7 +2,6 @@
 pkgname=iso-codes
 version=4.5.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext python3"
 short_desc="List of country, language and currency names"
diff --git a/srcpkgs/itstool/template b/srcpkgs/itstool/template
index a3f124f23d7..9ac9bb0a603 100644
--- a/srcpkgs/itstool/template
+++ b/srcpkgs/itstool/template
@@ -2,7 +2,6 @@
 pkgname=itstool
 version=2.0.6
 revision=3
-archs=noarch
 build_style=gnu-configure
 configure_args="PYTHON=/usr/bin/python3"
 hostmakedepends="python3 libxml2-python3"
diff --git a/srcpkgs/jadx/template b/srcpkgs/jadx/template
index cde9ed2a8d4..fd52cd29d15 100644
--- a/srcpkgs/jadx/template
+++ b/srcpkgs/jadx/template
@@ -2,7 +2,6 @@
 pkgname=jadx
 version=1.1.0
 revision=1
-archs=noarch
 hostmakedepends="openjdk8 gradle"
 short_desc="Decompiler for Dalvik bytecode"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/java-commons-io/template b/srcpkgs/java-commons-io/template
index ffabff135f4..7a7601e085e 100644
--- a/srcpkgs/java-commons-io/template
+++ b/srcpkgs/java-commons-io/template
@@ -3,7 +3,6 @@ _origname=commons-io
 pkgname=java-commons-io
 version=2.6
 revision=1
-archs=noarch
 wrksrc="${_origname}-${version}-src"
 hostmakedepends="openjdk8 apache-maven which"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/javahelp2/template b/srcpkgs/javahelp2/template
index d3f7c69614d..afc69de8a88 100644
--- a/srcpkgs/javahelp2/template
+++ b/srcpkgs/javahelp2/template
@@ -4,7 +4,6 @@ version=2.0.05.20170719
 revision=1
 _gitver=3ca862d8626096770598a3a256886d205246f4a4
 wrksrc=javahelp-${_gitver}
-archs=noarch
 short_desc="Java based help system"
 hostmakedepends="openjdk8 apache-ant unzip which"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index b184ef09508..eb91cd9e2d9 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -2,7 +2,6 @@
 pkgname=jrnl
 version=1.9.8
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/kadu/template b/srcpkgs/kadu/template
index da8c8c086ff..1e4dc39ce37 100644
--- a/srcpkgs/kadu/template
+++ b/srcpkgs/kadu/template
@@ -55,7 +55,6 @@ pre_configure() {
 
 kadu-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons
 		vmove "usr/share/kadu/configuration/*.ui"
diff --git a/srcpkgs/kaitai-struct-compiler/template b/srcpkgs/kaitai-struct-compiler/template
index 011a403ca88..2901be0f58c 100644
--- a/srcpkgs/kaitai-struct-compiler/template
+++ b/srcpkgs/kaitai-struct-compiler/template
@@ -2,7 +2,6 @@
 pkgname=kaitai-struct-compiler
 version=0.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Compiler for the Kaitai declarative binary format parsing language"
diff --git a/srcpkgs/kapidox/template b/srcpkgs/kapidox/template
index 90b1e006254..6c74bf04220 100644
--- a/srcpkgs/kapidox/template
+++ b/srcpkgs/kapidox/template
@@ -2,7 +2,6 @@
 pkgname=kapidox
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 pycompile_module="kapidox"
 hostmakedepends="kcoreaddons extra-cmake-modules python"
diff --git a/srcpkgs/kbd/template b/srcpkgs/kbd/template
index 2680406aae9..72bc3eab653 100644
--- a/srcpkgs/kbd/template
+++ b/srcpkgs/kbd/template
@@ -53,7 +53,6 @@ post_install() {
 kbd-data_package() {
 	short_desc+=" - keymaps, console fonts and unicode maps"
 	replaces="kbd<2.0.1_1"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kbd/consolefonts
 		vmove usr/share/kbd/consoletrans
diff --git a/srcpkgs/key-mon/template b/srcpkgs/key-mon/template
index b483fd36c03..e42745bcbfb 100644
--- a/srcpkgs/key-mon/template
+++ b/srcpkgs/key-mon/template
@@ -2,7 +2,6 @@
 pkgname=key-mon
 version=1.17
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="keymon"
 hostmakedepends="python"
diff --git a/srcpkgs/keychain/template b/srcpkgs/keychain/template
index 617d205a587..20eaaf9f319 100644
--- a/srcpkgs/keychain/template
+++ b/srcpkgs/keychain/template
@@ -2,7 +2,6 @@
 pkgname=keychain
 version=2.8.5
 revision=1
-archs=noarch
 short_desc="Keychain manager for ssh-agent and gpg-agent"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="http://www.funtoo.org/wiki/Keychain"
diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index a73516695bf..af4605226e5 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -2,7 +2,6 @@
 pkgname=khal
 version=0.10.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="khal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index ff62c013202..d9f7ddbc972 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -2,7 +2,6 @@
 pkgname=khard
 version=0.15.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="khard"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/khmer-fonts-ttf/template b/srcpkgs/khmer-fonts-ttf/template
index e1791f740fe..749da440514 100644
--- a/srcpkgs/khmer-fonts-ttf/template
+++ b/srcpkgs/khmer-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=khmer-fonts-ttf
 version=5.0
 revision=1
-archs=noarch
 wrksrc="All_KhmerOS_${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/kicad-footprints/template b/srcpkgs/kicad-footprints/template
index 5beb079dea1..c3ba4a8375c 100644
--- a/srcpkgs/kicad-footprints/template
+++ b/srcpkgs/kicad-footprints/template
@@ -2,7 +2,6 @@
 pkgname=kicad-footprints
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad footprint libraries"
diff --git a/srcpkgs/kicad-i18n/template b/srcpkgs/kicad-i18n/template
index 8e9da8555cd..19b43b59a43 100644
--- a/srcpkgs/kicad-i18n/template
+++ b/srcpkgs/kicad-i18n/template
@@ -3,7 +3,6 @@ pkgname=kicad-i18n
 version=5.1.6
 revision=1
 _commit=5ad171ce5c8d90f4740517c2adecb310d8be51bd
-archs=noarch
 wrksrc="${pkgname}-${version}-${_commit}"
 build_style=cmake
 hostmakedepends="gettext"
diff --git a/srcpkgs/kicad-packages3D/template b/srcpkgs/kicad-packages3D/template
index cf606628cd2..d7e3636491c 100644
--- a/srcpkgs/kicad-packages3D/template
+++ b/srcpkgs/kicad-packages3D/template
@@ -2,7 +2,6 @@
 pkgname=kicad-packages3D
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad 3D model libraries"
diff --git a/srcpkgs/kicad-symbols/template b/srcpkgs/kicad-symbols/template
index 61e9021634b..b37b74386a4 100644
--- a/srcpkgs/kicad-symbols/template
+++ b/srcpkgs/kicad-symbols/template
@@ -2,7 +2,6 @@
 pkgname=kicad-symbols
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad symbol libraries"
diff --git a/srcpkgs/kicad-templates/template b/srcpkgs/kicad-templates/template
index 68412310182..5d4adb6a74f 100644
--- a/srcpkgs/kicad-templates/template
+++ b/srcpkgs/kicad-templates/template
@@ -2,7 +2,6 @@
 pkgname=kicad-templates
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad templates"
diff --git a/srcpkgs/kickassembler/template b/srcpkgs/kickassembler/template
index 938ec12394b..5b4bafa5fc9 100644
--- a/srcpkgs/kickassembler/template
+++ b/srcpkgs/kickassembler/template
@@ -2,7 +2,6 @@
 pkgname=kickassembler
 version=4.19
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="virtual?java-environment"
 hostmakedepends="unzip"
diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index 8c672f481b4..51608cf3e53 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -41,7 +41,6 @@ do_install() {
 
 kitty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/kobodeluxe/template b/srcpkgs/kobodeluxe/template
index 60539b09390..5a1ee26d3e4 100644
--- a/srcpkgs/kobodeluxe/template
+++ b/srcpkgs/kobodeluxe/template
@@ -29,7 +29,6 @@ post_install() {
 
 kobodeluxe-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kobo-deluxe
 	}
diff --git a/srcpkgs/kodi-binary-addons/template b/srcpkgs/kodi-binary-addons/template
index 50784a8adcb..f1eefbe8e23 100644
--- a/srcpkgs/kodi-binary-addons/template
+++ b/srcpkgs/kodi-binary-addons/template
@@ -2,7 +2,6 @@
 pkgname=kodi-binary-addons
 version=18.6
 revision=1
-archs=noarch
 build_style=meta
 depends="kodi-addon-pvr-zattoo kodi-addon-game-libretro
  kodi-addon-peripheral-joystick kodi-addon-inputstream-rtmp
diff --git a/srcpkgs/kpcli/template b/srcpkgs/kpcli/template
index 3201920ce88..073b3925444 100644
--- a/srcpkgs/kpcli/template
+++ b/srcpkgs/kpcli/template
@@ -2,7 +2,6 @@
 pkgname=kpcli
 version=3.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="perl perl-Crypt-Rijndael perl-Sort-Naturally perl-Term-ReadKey perl-Term-ShellUI perl-File-KeePass perl-Clone perl-Term-ReadLine-Gnu perl-XML-Parser"
 short_desc="KeePass Command Line Interface"
diff --git a/srcpkgs/kshdb/template b/srcpkgs/kshdb/template
index ee22e70d994..6653ee3de18 100644
--- a/srcpkgs/kshdb/template
+++ b/srcpkgs/kshdb/template
@@ -2,7 +2,6 @@
 pkgname=kshdb
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="automake ksh"
 depends="ksh python3"
diff --git a/srcpkgs/kupfer/template b/srcpkgs/kupfer/template
index 03e80e9fdc9..d351345376d 100644
--- a/srcpkgs/kupfer/template
+++ b/srcpkgs/kupfer/template
@@ -2,7 +2,6 @@
 pkgname=kupfer
 version=319
 revision=2
-archs=noarch
 build_style=waf3
 wrksrc="${pkgname}-v${version}"
 python_version=3
diff --git a/srcpkgs/laditools/template b/srcpkgs/laditools/template
index 88e45ee722c..50199e8646d 100644
--- a/srcpkgs/laditools/template
+++ b/srcpkgs/laditools/template
@@ -2,7 +2,6 @@
 pkgname=laditools
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="laditools"
 hostmakedepends="python-distutils-extra intltool librsvg-utils"
diff --git a/srcpkgs/ladspa-sdk/template b/srcpkgs/ladspa-sdk/template
index 792663a5c1f..9db8572efa5 100644
--- a/srcpkgs/ladspa-sdk/template
+++ b/srcpkgs/ladspa-sdk/template
@@ -2,7 +2,6 @@
 pkgname=ladspa-sdk
 version=1.15
 revision=2
-archs=noarch
 wrksrc="ladspa_sdk_${version}"
 makedepends="libsndfile-progs"
 short_desc="Linux Audio Developer's Simple Plugin API (LADSPA)"
@@ -24,7 +23,6 @@ do_install() {
 ladspa-sdk-doc_package() {
 	depends="ladspa-sdk"
 	short_desc+="- Documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc
 		cd ${wrksrc}/doc
diff --git a/srcpkgs/laptop-mode/template b/srcpkgs/laptop-mode/template
index 5f788f01135..09b790e9351 100644
--- a/srcpkgs/laptop-mode/template
+++ b/srcpkgs/laptop-mode/template
@@ -2,7 +2,6 @@
 pkgname=laptop-mode
 version=1.73.1
 revision=1
-archs=noarch
 wrksrc="${pkgname}-tools_${version}"
 short_desc="Laptop power saving package for Linux systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leiningen/template b/srcpkgs/leiningen/template
index d6ed85040cc..a9451ac81e7 100644
--- a/srcpkgs/leiningen/template
+++ b/srcpkgs/leiningen/template
@@ -2,7 +2,6 @@
 pkgname=leiningen
 version=2.9.3
 revision=1
-archs=noarch
 depends="bash virtual?java-runtime"
 short_desc="Automate Clojure projects without setting your hair on fire"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leocad/template b/srcpkgs/leocad/template
index 8cc39f9f535..6bcbaf9818d 100644
--- a/srcpkgs/leocad/template
+++ b/srcpkgs/leocad/template
@@ -19,7 +19,6 @@ checksum="b74557e00366f1d3ddc211f9e55c28dba39987d66e5e3106490ab5fb75d25bc0
 leocad-data_package() {
 	short_desc+=" - data files"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vinstall ../library.bin 644 usr/share/leocad/
 	}
diff --git a/srcpkgs/lesspipe/template b/srcpkgs/lesspipe/template
index 40ee9a36cf1..d922e937f7a 100644
--- a/srcpkgs/lesspipe/template
+++ b/srcpkgs/lesspipe/template
@@ -2,7 +2,6 @@
 pkgname=lesspipe
 version=1.84
 revision=1
-archs=noarch
 depends="less"
 short_desc="Input filter for the pager less"
 maintainer="Olga Ustuzhanina <me@laserbat.pw>"
diff --git a/srcpkgs/lfe/template b/srcpkgs/lfe/template
index 9dcca402dc5..9ca2fd95a2f 100644
--- a/srcpkgs/lfe/template
+++ b/srcpkgs/lfe/template
@@ -2,7 +2,6 @@
 pkgname=lfe
 version=1.3
 revision=1
-archs=noarch
 hostmakedepends="erlang"
 depends="erlang"
 short_desc="Lisp flavoured erlang"
diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 1e0e7cf29fa..2d6750b9451 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -2,7 +2,6 @@
 pkgname=lfm
 version=3.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/lftpfs/template b/srcpkgs/lftpfs/template
index f8b75902812..4a3b263c2ba 100644
--- a/srcpkgs/lftpfs/template
+++ b/srcpkgs/lftpfs/template
@@ -2,7 +2,6 @@
 pkgname=lftpfs
 version=0.4.3
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl-Fuse perl-IPC-Run lftp"
diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index fb01bd7fb78..db314976891 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -32,7 +32,6 @@ libbytesize-devel_package() {
 }
 
 libbytesize-python3_package() {
-	archs=noarch
 	depends="python3-six ${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Python3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/libcap-ng/template b/srcpkgs/libcap-ng/template
index d2bbea8cb94..4ec9317edd5 100644
--- a/srcpkgs/libcap-ng/template
+++ b/srcpkgs/libcap-ng/template
@@ -49,7 +49,6 @@ libcap-ng-python3_package() {
 }
 libcap-ng-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="libcap-ng-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/libchewing/template b/srcpkgs/libchewing/template
index 6518254b11e..7901a9e0f1a 100644
--- a/srcpkgs/libchewing/template
+++ b/srcpkgs/libchewing/template
@@ -27,7 +27,6 @@ libchewing-devel_package() {
 }
 
 libchewing-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/libchewing
diff --git a/srcpkgs/libclc-git/template b/srcpkgs/libclc-git/template
index 748ffe98fc8..e2263c4b0b4 100644
--- a/srcpkgs/libclc-git/template
+++ b/srcpkgs/libclc-git/template
@@ -15,7 +15,6 @@ license="BSD/MIT"
 homepage="http://libclc.llvm.org"
 provides="libclc-${version}_${revision}"
 replaces="libclc>=0"
-archs=noarch
 distfiles="https://github.com/llvm-mirror/libclc/archive/${_git_hash}.tar.gz>${pkgname}-${version}.tar.gz"
 checksum=d9cf73a5d1ab05995086e7a3a0fd6c06172ee59cdd2512c395caae99b9fce453
 
diff --git a/srcpkgs/libcppunit/template b/srcpkgs/libcppunit/template
index 238c6f57017..ca5760cc1ea 100644
--- a/srcpkgs/libcppunit/template
+++ b/srcpkgs/libcppunit/template
@@ -32,7 +32,6 @@ libcppunit-devel_package() {
 }
 
 libcppunit-examples_package() {
-	archs=noarch
 	replaces="cppunit-doc>=0"
 	depends="libcppunit-devel>=${version}_${revision}"
 	short_desc+=" - examples"
diff --git a/srcpkgs/libdwarf/template b/srcpkgs/libdwarf/template
index 5d5539c3ae3..dac373623f8 100644
--- a/srcpkgs/libdwarf/template
+++ b/srcpkgs/libdwarf/template
@@ -33,7 +33,6 @@ libdwarf-devel_package() {
 }
 
 libdwarf-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		for i in README NEWS libdwarf/*.pdf ; do
diff --git a/srcpkgs/libe-book/template b/srcpkgs/libe-book/template
index 89bf62399e3..b112e492171 100644
--- a/srcpkgs/libe-book/template
+++ b/srcpkgs/libe-book/template
@@ -30,7 +30,6 @@ libe-book-devel_package() {
 libe-book-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/liberation-fonts-ttf/template b/srcpkgs/liberation-fonts-ttf/template
index 47663b2b29d..ae6ab901471 100644
--- a/srcpkgs/liberation-fonts-ttf/template
+++ b/srcpkgs/liberation-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=liberation-fonts-ttf
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 build_style=gnu-makefile
 hostmakedepends="fontforge fonttools"
diff --git a/srcpkgs/libfreehand/template b/srcpkgs/libfreehand/template
index 08aae86bb0f..45c0bdcc5a5 100644
--- a/srcpkgs/libfreehand/template
+++ b/srcpkgs/libfreehand/template
@@ -31,7 +31,6 @@ libfreehand-devel_package() {
 libfreehand-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libgphoto2/template b/srcpkgs/libgphoto2/template
index 60573643e50..c0ea9d8c4b0 100644
--- a/srcpkgs/libgphoto2/template
+++ b/srcpkgs/libgphoto2/template
@@ -52,7 +52,6 @@ post_install() {
 
 libgphoto2-udev-rules_package() {
 	short_desc+=" - udev rules"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/udev/hwdb.d
 		vmove usr/lib/udev/rules.d
diff --git a/srcpkgs/libinput-gestures/template b/srcpkgs/libinput-gestures/template
index 872e8ad8588..2ee1d82e3e4 100644
--- a/srcpkgs/libinput-gestures/template
+++ b/srcpkgs/libinput-gestures/template
@@ -2,7 +2,6 @@
 pkgname=libinput-gestures
 version=2.50
 revision=1
-archs=noarch
 depends="python3 libinput xdotool wmctrl hicolor-icon-theme"
 short_desc="Action gestures on your touchpad using libinput"
 maintainer="Chinmay Pai <chinmaydpai@gmail.com>"
diff --git a/srcpkgs/libmwaw/template b/srcpkgs/libmwaw/template
index c81f91175d3..7ea5ce0051d 100644
--- a/srcpkgs/libmwaw/template
+++ b/srcpkgs/libmwaw/template
@@ -24,7 +24,6 @@ libmwaw-devel_package() {
 }
 
 libmwaw-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/libosmgpsmap/template b/srcpkgs/libosmgpsmap/template
index 4ab56904f2d..0690f592c42 100644
--- a/srcpkgs/libosmgpsmap/template
+++ b/srcpkgs/libosmgpsmap/template
@@ -19,7 +19,6 @@ build_options="gir"
 build_options_default="gir"
 
 libosmgpsmap-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation"
 	pkg_install() {
diff --git a/srcpkgs/libquvi-scripts/template b/srcpkgs/libquvi-scripts/template
index c2d247e52dd..551953eb763 100644
--- a/srcpkgs/libquvi-scripts/template
+++ b/srcpkgs/libquvi-scripts/template
@@ -2,7 +2,6 @@
 pkgname=libquvi-scripts
 version=0.4.21
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config lua53"
 makedepends="lua53"
diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 0eb5941e2ad..d46f4056f05 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -297,7 +297,6 @@ _add_lang() {
 	_languages="$_languages ${pkglang//_/-}"
 	eval "libreoffice-i18n-${1}_package() {
 		short_desc+=\"- ${2} language pack\"
-		archs=noarch
 		pkg_install() {
 			_split lang_${pkglang}
 		}
@@ -584,7 +583,6 @@ libreoffice-draw_package() {
 
 libreoffice-fonts_package() {
 	short_desc+=" - Fonts"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/lib/libreoffice/share
 		mv ${DESTDIR}/all/usr/lib/libreoffice/share/fonts \
diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 1aed9159ab9..052d243e477 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -39,7 +39,6 @@ libsearpc-codegen_package() {
 	short_desc+=" - code generator"
 	depends="python3"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vdoc AUTHORS
 		vdoc README.markdown
@@ -51,7 +50,6 @@ libsearpc-python3_package() {
 	short_desc+=" - Python3 bindings"
 	pycompile_module="pysearpc"
 	depends="python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
diff --git a/srcpkgs/libsoxr/template b/srcpkgs/libsoxr/template
index ae7c8c7e3f5..0ad80dfb5da 100644
--- a/srcpkgs/libsoxr/template
+++ b/srcpkgs/libsoxr/template
@@ -36,7 +36,6 @@ libsoxr-devel_package() {
 libsoxr-doc_package() {
 	short_desc+=" - documentation and examples"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libvpx5/template b/srcpkgs/libvpx5/template
index d6ce843134a..93d9a8866c6 100644
--- a/srcpkgs/libvpx5/template
+++ b/srcpkgs/libvpx5/template
@@ -58,7 +58,6 @@ libvpx5-devel_package() {
 }
 
 libvpx_package() {
-	archs=noarch
 	build_style=meta
 	depends="libvpx5-${version}_${revision}"
 	short_desc+=" (transitional package)"
diff --git a/srcpkgs/libwaylandpp/template b/srcpkgs/libwaylandpp/template
index 44f129f3f89..58a4c2568c9 100644
--- a/srcpkgs/libwaylandpp/template
+++ b/srcpkgs/libwaylandpp/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 libwaylandpp-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/lightdm-webkit2-greeter/template b/srcpkgs/lightdm-webkit2-greeter/template
index 1dd57b859cc..126238441e6 100644
--- a/srcpkgs/lightdm-webkit2-greeter/template
+++ b/srcpkgs/lightdm-webkit2-greeter/template
@@ -22,7 +22,6 @@ post_extract() {
 
 lightdm-webkit-greeter_package() {
 	short_desc+=" - (transitional dummy package)"
-	archs=noarch
 	depends="lightdm-webkit2-greeter>=${version}_${revision}"
 	pkg_install() {
 		vmkdir usr/bin
diff --git a/srcpkgs/lilypond-doc/template b/srcpkgs/lilypond-doc/template
index 1480cfe1d52..a8fe890cf45 100644
--- a/srcpkgs/lilypond-doc/template
+++ b/srcpkgs/lilypond-doc/template
@@ -2,7 +2,6 @@
 pkgname=lilypond-doc
 version=2.21.1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Documentation for the lilypond music engraving program"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/linux-firmware-dvb/template b/srcpkgs/linux-firmware-dvb/template
index 3109780e132..cf7df793297 100644
--- a/srcpkgs/linux-firmware-dvb/template
+++ b/srcpkgs/linux-firmware-dvb/template
@@ -7,7 +7,6 @@ short_desc="Linux TV firmware package"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
 license="GPL-2 Custom"
 homepage="https://linuxtv.org/"
-archs=noarch
 distfiles="
  https://github.com/OpenELEC/dvb-firmware/archive/${_gitrev}.tar.gz>${pkgname}-${version}.tar.gz
  https://linuxtv.org/downloads/firmware/dvb-firmwares.tar.bz2"
diff --git a/srcpkgs/linux-firmware/template b/srcpkgs/linux-firmware/template
index 9ee05164394..e6d48a6e08f 100644
--- a/srcpkgs/linux-firmware/template
+++ b/srcpkgs/linux-firmware/template
@@ -2,7 +2,6 @@
 pkgname=linux-firmware
 version=20200519
 revision=1
-archs=noarch
 depends="${pkgname}-amd-${version}_${revision} ${pkgname}-network-${version}_${revision}"
 short_desc="Binary firmware blobs for the Linux kernel"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -23,7 +22,6 @@ do_install() {
 
 linux-firmware-amd_package() {
 	short_desc+=" - AMD CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/amd*
 		vmove usr/lib/firmware/radeon
@@ -35,7 +33,6 @@ linux-firmware-amd_package() {
 
 linux-firmware-intel_package() {
 	short_desc+=" - Intel CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/i915
 		vmove usr/share/licenses/linux-firmware/LICENSE.i915
@@ -44,7 +41,6 @@ linux-firmware-intel_package() {
 
 linux-firmware-nvidia_package() {
 	short_desc+=" NVIDIA GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/nvidia
 		vmove usr/share/licenses/linux-firmware/LICENCE.nvidia*
@@ -53,7 +49,6 @@ linux-firmware-nvidia_package() {
 
 linux-firmware-network_package() {
 	short_desc+=" - network"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/3com
 		vmove usr/lib/firmware/RTL8192E
diff --git a/srcpkgs/lltag/template b/srcpkgs/lltag/template
index 58fadec2276..8a2e6ac8805 100644
--- a/srcpkgs/lltag/template
+++ b/srcpkgs/lltag/template
@@ -2,7 +2,6 @@
 pkgname=lltag
 version=0.14.6
 revision=2
-archs=noarch
 wrksrc="lltag-lltag-${version}"
 build_style=gnu-makefile
 hostmakedepends="perl"
diff --git a/srcpkgs/llvm10/template b/srcpkgs/llvm10/template
index 62c75d00061..84d4c587129 100644
--- a/srcpkgs/llvm10/template
+++ b/srcpkgs/llvm10/template
@@ -189,7 +189,6 @@ do_install() {
 }
 
 clang-analyzer_package() {
-	archs=noarch
 	pycompile_dirs="usr/share/scan-view"
 	depends="clang-${version}_${revision} python3"
 	short_desc+=" - A source code analysis framework"
diff --git a/srcpkgs/llvm6.0/template b/srcpkgs/llvm6.0/template
index d620db6415a..b0e518c4028 100644
--- a/srcpkgs/llvm6.0/template
+++ b/srcpkgs/llvm6.0/template
@@ -2,7 +2,6 @@
 pkgname=llvm6.0
 version=6.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (6.0.x series) (removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/llvm7/template b/srcpkgs/llvm7/template
index b06f887c3b7..011d7419a4e 100644
--- a/srcpkgs/llvm7/template
+++ b/srcpkgs/llvm7/template
@@ -2,7 +2,6 @@
 pkgname=llvm7
 version=7.0.1
 revision=9
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm8/template b/srcpkgs/llvm8/template
index 7af4f95fb4e..4eb8e0e4806 100644
--- a/srcpkgs/llvm8/template
+++ b/srcpkgs/llvm8/template
@@ -2,7 +2,6 @@
 pkgname=llvm8
 version=8.0.1
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 951a64e1a87..025c8845257 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -2,7 +2,6 @@
 pkgname=llvm9
 version=9.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="q66 <daniel@octaforge.org>"
diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 3086f9ac8b8..c01adcb2d18 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -2,7 +2,6 @@
 pkgname=lollypop
 version=1.3.4
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="cmake git glib-devel gobject-introspection intltool itstool pkg-config"
 makedepends="gtk+3-devel libsoup-devel python3-gobject-devel python3-devel"
diff --git a/srcpkgs/lua54-MessagePack/template b/srcpkgs/lua54-MessagePack/template
index 6383677d8ca..d88a720a579 100644
--- a/srcpkgs/lua54-MessagePack/template
+++ b/srcpkgs/lua54-MessagePack/template
@@ -2,7 +2,6 @@
 pkgname=lua54-MessagePack
 version=0.5.2
 revision=2
-archs=noarch
 wrksrc="lua-MessagePack-${version}"
 depends="lua54"
 _desc="Pure Lua implementation of msgpack.org"
diff --git a/srcpkgs/lua54-stdlib-debug/template b/srcpkgs/lua54-stdlib-debug/template
index 1d862bc6726..73f13179fa7 100644
--- a/srcpkgs/lua54-stdlib-debug/template
+++ b/srcpkgs/lua54-stdlib-debug/template
@@ -3,7 +3,6 @@ pkgname=lua54-stdlib-debug
 version=1.0.1
 revision=3
 wrksrc=_debug-${version}
-archs=noarch
 depends="lua54"
 _desc="A debug hints management library for Lua"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/lua54-stdlib-normalize/template b/srcpkgs/lua54-stdlib-normalize/template
index 9a0d6071327..2fa1c7a75f6 100644
--- a/srcpkgs/lua54-stdlib-normalize/template
+++ b/srcpkgs/lua54-stdlib-normalize/template
@@ -2,7 +2,6 @@
 pkgname=lua54-stdlib-normalize
 version=2.0.3
 revision=3
-archs=noarch
 wrksrc=normalize-${version}
 depends="lua54 lua54-stdlib-debug"
 _desc="Collection of normalized Lua functions"
diff --git a/srcpkgs/lua54-vicious/template b/srcpkgs/lua54-vicious/template
index 9da7e6330c5..2a9b7f13f40 100644
--- a/srcpkgs/lua54-vicious/template
+++ b/srcpkgs/lua54-vicious/template
@@ -3,7 +3,6 @@ pkgname=lua54-vicious
 version=2.4.1
 revision=1
 wrksrc=vicious-${version}
-archs=noarch
 depends="lua54"
 _desc="Modular widget library for window managers"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/luarocks-lua53/template b/srcpkgs/luarocks-lua53/template
index 5c047f790c0..4480962a81a 100644
--- a/srcpkgs/luarocks-lua53/template
+++ b/srcpkgs/luarocks-lua53/template
@@ -2,7 +2,6 @@
 pkgname=luarocks-lua53
 version=3.3.1
 revision=3
-archs=noarch
 wrksrc=luarocks-${version}
 build_style=configure
 configure_args="
@@ -63,7 +62,6 @@ post_install() {
 }
 
 luarocks-lua54_package() {
-	archs=noarch
 	short_desc="${_desc} (5.4.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua54"
 	conf_files="/etc/luarocks/config-5.4.lua"
@@ -78,7 +76,6 @@ luarocks-lua54_package() {
 }
 
 luarocks-lua52_package() {
-	archs=noarch
 	short_desc="${_desc} (5.2.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua52"
 	conf_files="/etc/luarocks/config-5.2.lua"
@@ -93,7 +90,6 @@ luarocks-lua52_package() {
 }
 
 luarocks-lua51_package() {
-	archs=noarch
 	short_desc="${_desc} (5.1.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua51"
 	conf_files="/etc/luarocks/config-5.1.lua"
diff --git a/srcpkgs/lugaru/template b/srcpkgs/lugaru/template
index 618a3ab5894..2dd39570266 100644
--- a/srcpkgs/lugaru/template
+++ b/srcpkgs/lugaru/template
@@ -19,7 +19,6 @@ checksum=f3ea477caf78911c69939fbdc163f9f6517c7ef2267e716a0e050be1a166ef97
 
 lugaru-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	license="CC-BY-SA-4"
 	pkg_install() {
 		vmove usr/share/lugaru
diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 30fbd3ef8d0..28c3119fb47 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -2,7 +2,6 @@
 pkgname=lutris
 version=0.5.7.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext python3-setuptools python3-gobject gtk+3-devel"
 depends="python3-dbus python3-gobject python3-yaml python3-evdev python3-Pillow
diff --git a/srcpkgs/lxde-common/template b/srcpkgs/lxde-common/template
index 27e853db6e9..e6fef2f7f15 100644
--- a/srcpkgs/lxde-common/template
+++ b/srcpkgs/lxde-common/template
@@ -2,7 +2,6 @@
 pkgname=lxde-common
 version=0.99.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool"
 depends="lxsession gnome-themes-extra lxde-icon-theme"
diff --git a/srcpkgs/lxde-icon-theme/template b/srcpkgs/lxde-icon-theme/template
index 896f177f23f..90fb159959e 100644
--- a/srcpkgs/lxde-icon-theme/template
+++ b/srcpkgs/lxde-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=lxde-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 makedepends="gtk+-devel"
diff --git a/srcpkgs/lxdm-theme-vdojo/template b/srcpkgs/lxdm-theme-vdojo/template
index b41d9c94f6b..a706df6056f 100644
--- a/srcpkgs/lxdm-theme-vdojo/template
+++ b/srcpkgs/lxdm-theme-vdojo/template
@@ -2,7 +2,6 @@
 pkgname=lxdm-theme-vdojo
 version=1.0
 revision=1
-archs=noarch
 wrksrc="vdojo-$version"
 depends="lxdm"
 short_desc="LXDM theme for voidlinux"
diff --git a/srcpkgs/lxmenu-data/template b/srcpkgs/lxmenu-data/template
index 3bbb4b87f76..77d9af9b191 100644
--- a/srcpkgs/lxmenu-data/template
+++ b/srcpkgs/lxmenu-data/template
@@ -2,7 +2,6 @@
 pkgname=lxmenu-data
 version=0.1.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="LXDE freedesktop menu required files"
diff --git a/srcpkgs/lxqt-build-tools/template b/srcpkgs/lxqt-build-tools/template
index 335ff770e01..b0f7f26df9a 100644
--- a/srcpkgs/lxqt-build-tools/template
+++ b/srcpkgs/lxqt-build-tools/template
@@ -2,7 +2,6 @@
 pkgname=lxqt-build-tools
 version=0.7.0
 revision=1
-archs=noarch
 build_style=cmake
 hostmakedepends="qt5-host-tools qt5-qmake pkg-config"
 makedepends="qt5-devel"
diff --git a/srcpkgs/magic-wormhole/template b/srcpkgs/magic-wormhole/template
index b3a7bdf27f8..657778c7d83 100644
--- a/srcpkgs/magic-wormhole/template
+++ b/srcpkgs/magic-wormhole/template
@@ -2,7 +2,6 @@
 pkgname=magic-wormhole
 version=0.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-autobahn python3-cffi python3-click python3-humanize
diff --git a/srcpkgs/mailpile/template b/srcpkgs/mailpile/template
index 972c1da3106..e3010566a17 100644
--- a/srcpkgs/mailpile/template
+++ b/srcpkgs/mailpile/template
@@ -2,7 +2,6 @@
 pkgname=mailpile
 version=0.5.2
 revision=3
-archs=noarch
 wrksrc="Mailpile-${version}"
 build_style=python2-module
 pycompile_module="static mailpile"
diff --git a/srcpkgs/make-ca/template b/srcpkgs/make-ca/template
index 5c54e95cdc2..e308fa4f390 100644
--- a/srcpkgs/make-ca/template
+++ b/srcpkgs/make-ca/template
@@ -2,7 +2,6 @@
 pkgname=make-ca
 version=1.7
 revision=1
-archs=noarch
 wrksrc="make-ca-${version}"
 build_style=gnu-makefile
 make_install_args="SBINDIR=/usr/bin"
diff --git a/srcpkgs/makepasswd/template b/srcpkgs/makepasswd/template
index 12814d730d5..e997b1bd0f1 100644
--- a/srcpkgs/makepasswd/template
+++ b/srcpkgs/makepasswd/template
@@ -2,7 +2,6 @@
 pkgname=makepasswd
 version=1.10.9
 revision=2
-archs=noarch
 depends="perl-Crypt-OpenSSL-Random perl-Crypt-PasswdMD5"
 short_desc="Create and/or encrypt true-random-seeded password strings"
 maintainer="Kevin Berry <kevin@opensourcealchemist.com>"
diff --git a/srcpkgs/makeself/template b/srcpkgs/makeself/template
index 2fc0f26fbd5..aaf9bb75883 100644
--- a/srcpkgs/makeself/template
+++ b/srcpkgs/makeself/template
@@ -2,7 +2,6 @@
 pkgname=makeself
 version=2.4.2
 revision=1
-archs=noarch
 wrksrc="makeself-release-${version}"
 short_desc="Make self-extractable archives on Unix"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages-posix/template b/srcpkgs/man-pages-posix/template
index f16421308ae..25f42c2a692 100644
--- a/srcpkgs/man-pages-posix/template
+++ b/srcpkgs/man-pages-posix/template
@@ -4,7 +4,6 @@ _distver=2013
 _revver=a
 version="${_distver}${_revver}"
 revision=4
-archs=noarch
 wrksrc="${pkgname}-${_distver}-${_revver}"
 short_desc="Manual pages about POSIX systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages/template b/srcpkgs/man-pages/template
index c1e38ac3dba..507bbe9f7b3 100644
--- a/srcpkgs/man-pages/template
+++ b/srcpkgs/man-pages/template
@@ -2,7 +2,6 @@
 pkgname=man-pages
 version=5.08
 revision=1
-archs=noarch
 short_desc="Linux Documentation Project (LDP) manual pages"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-or-later"
@@ -50,7 +49,6 @@ do_install() {
 }
 
 man-pages-devel_package() {
-	archs=noarch
 	short_desc+=" - development pages"
 	pkg_install() {
 		vmove usr/share/man/man[2-3]
diff --git a/srcpkgs/mantablockscreen/template b/srcpkgs/mantablockscreen/template
index 79b21d96121..80172a917f9 100644
--- a/srcpkgs/mantablockscreen/template
+++ b/srcpkgs/mantablockscreen/template
@@ -2,7 +2,6 @@
 pkgname=mantablockscreen
 version=0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="ImageMagick xrandr i3lock-color compton bash"
 short_desc="Another i3lock-color wrapper that mantab"
diff --git a/srcpkgs/manuskript/template b/srcpkgs/manuskript/template
index c0c3269225c..55a7919c563 100644
--- a/srcpkgs/manuskript/template
+++ b/srcpkgs/manuskript/template
@@ -2,7 +2,6 @@
 pkgname=manuskript
 version=0.11.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}"
 hostmakedepends="python3-setuptools"
 depends="python3-enchant python3-lxml python3-Markdown python3-PyQt5 qt5-svg"
diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template
index 793f3aadf41..c81014b7394 100644
--- a/srcpkgs/mariadb/template
+++ b/srcpkgs/mariadb/template
@@ -134,7 +134,6 @@ mariadb-client_package() {
 	}
 }
 mytop_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} perl-Term-ReadKey perl-DBD-mysql"
 	short_desc="Top-like query monitor for MariaDB"
 	pkg_install() {
diff --git a/srcpkgs/marvin/template b/srcpkgs/marvin/template
index 65580f87728..3eac54a4c1a 100644
--- a/srcpkgs/marvin/template
+++ b/srcpkgs/marvin/template
@@ -2,7 +2,6 @@
 pkgname=marvin
 version=18.20.0
 revision=2
-archs=noarch
 maintainer="Brenton Horne <brentonhorne77@gmail.com>"
 homepage="https://chemaxon.com/products/marvin"
 license="marvin"
diff --git a/srcpkgs/mate-applets/template b/srcpkgs/mate-applets/template
index 8e9a40869f1..88196018390 100644
--- a/srcpkgs/mate-applets/template
+++ b/srcpkgs/mate-applets/template
@@ -25,7 +25,6 @@ case "$XBPS_TARGET_MACHINE" in
 esac
 
 mate-applets-data_package() {
-	archs=noarch
 	short_desc+=" - architecture independent data"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mate-backgrounds/template b/srcpkgs/mate-backgrounds/template
index 1c0b34f110c..31e6c7f094a 100644
--- a/srcpkgs/mate-backgrounds/template
+++ b/srcpkgs/mate-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=mate-backgrounds
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="Background images and data for MATE"
diff --git a/srcpkgs/mate-common/template b/srcpkgs/mate-common/template
index 17382ebcf1e..4850dbfe064 100644
--- a/srcpkgs/mate-common/template
+++ b/srcpkgs/mate-common/template
@@ -2,7 +2,6 @@
 pkgname=mate-common
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 depends="automake libtool intltool pkg-config gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mate-icon-theme-faenza/template b/srcpkgs/mate-icon-theme-faenza/template
index 8eaa696d780..80299aa0b61 100644
--- a/srcpkgs/mate-icon-theme-faenza/template
+++ b/srcpkgs/mate-icon-theme-faenza/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme-faenza
 version=1.20.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="mate-common pkg-config intltool itstool icon-naming-utils"
 depends="gtk-update-icon-cache hicolor-icon-theme"
diff --git a/srcpkgs/mate-icon-theme/template b/srcpkgs/mate-icon-theme/template
index f5dfc2932fe..dc3c584cc56 100644
--- a/srcpkgs/mate-icon-theme/template
+++ b/srcpkgs/mate-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="icon-naming-utils"
diff --git a/srcpkgs/mate-menu/template b/srcpkgs/mate-menu/template
index 3c59954a4bc..6191d683ce9 100644
--- a/srcpkgs/mate-menu/template
+++ b/srcpkgs/mate-menu/template
@@ -2,7 +2,6 @@
 pkgname=mate-menu
 version=20.04.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/lib/mate-menu"
 hostmakedepends="intltool python3-distutils-extra python3-setuptools"
diff --git a/srcpkgs/mate-themes/template b/srcpkgs/mate-themes/template
index 577574cedc0..c93250d5589 100644
--- a/srcpkgs/mate-themes/template
+++ b/srcpkgs/mate-themes/template
@@ -2,7 +2,6 @@
 pkgname=mate-themes
 version=3.22.21
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="gtk+-devel gtk+3-devel"
diff --git a/srcpkgs/mate-tweak/template b/srcpkgs/mate-tweak/template
index a7da4bd36d8..76179410d25 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -2,7 +2,6 @@
 pkgname=mate-tweak
 version=20.04.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"
 depends="mate-panel python3-gobject python3-psutil python3-setproctitle
diff --git a/srcpkgs/mate-user-guide/template b/srcpkgs/mate-user-guide/template
index 7c1363e3ae2..41c477d013c 100644
--- a/srcpkgs/mate-user-guide/template
+++ b/srcpkgs/mate-user-guide/template
@@ -2,7 +2,6 @@
 pkgname=mate-user-guide
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="MATE User Guide"
diff --git a/srcpkgs/mathjax/template b/srcpkgs/mathjax/template
index c1088202b51..b86cc52aa5a 100644
--- a/srcpkgs/mathjax/template
+++ b/srcpkgs/mathjax/template
@@ -2,7 +2,6 @@
 pkgname=mathjax
 version=2.7.6
 revision=1
-archs=noarch
 wrksrc="MathJax-${version}"
 depends="font-util"
 short_desc="JavaScript display engine for LaTeX, MathML and AsciiMath"
diff --git a/srcpkgs/maxima/template b/srcpkgs/maxima/template
index 90d2df8667d..8e8fde12aff 100644
--- a/srcpkgs/maxima/template
+++ b/srcpkgs/maxima/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 maxima-src_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision}"
 	short_desc+=" - source files"
 	pkg_install() {
@@ -41,7 +40,6 @@ maxima-src_package() {
 }
 
 maxima-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -50,7 +48,6 @@ maxima-emacs_package() {
 }
 
 xmaxima_package() {
-	archs=noarch
 	short_desc+=" - Tk interface"
 	depends="${sourcepkg}-${version}_${revision} tk"
 	pkg_install() {
diff --git a/srcpkgs/mb2md/template b/srcpkgs/mb2md/template
index 2fc5c5062d8..d226aac792e 100644
--- a/srcpkgs/mb2md/template
+++ b/srcpkgs/mb2md/template
@@ -2,7 +2,6 @@
 pkgname=mb2md
 version=3.20
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="perl-TimeDate"
 short_desc="Convert mbox mailboxes into maildir mailboxes"
diff --git a/srcpkgs/mcomix/template b/srcpkgs/mcomix/template
index 397fd241c49..15a556ad9f6 100644
--- a/srcpkgs/mcomix/template
+++ b/srcpkgs/mcomix/template
@@ -2,7 +2,6 @@
 pkgname=mcomix
 version=1.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="${pkgname}"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mdds/template b/srcpkgs/mdds/template
index 5530252ec3d..9e497d8f6a4 100644
--- a/srcpkgs/mdds/template
+++ b/srcpkgs/mdds/template
@@ -7,7 +7,6 @@
 pkgname=mdds
 version=1.5.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Collection of multi-dimensional data structures and indexing algorithms"
diff --git a/srcpkgs/mdevd/template b/srcpkgs/mdevd/template
index 4dc0d6e1f64..6dd20225c36 100644
--- a/srcpkgs/mdevd/template
+++ b/srcpkgs/mdevd/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 mdevd-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index acd79293246..72c81620747 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -36,7 +36,6 @@ libmed_package() {
 
 med-doc_package() {
 	short_desc+=" - Documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/med
 	}
diff --git a/srcpkgs/media-player-info/template b/srcpkgs/media-player-info/template
index 40f59736d3b..b4b60e3e1b2 100644
--- a/srcpkgs/media-player-info/template
+++ b/srcpkgs/media-player-info/template
@@ -2,7 +2,6 @@
 pkgname=media-player-info
 version=24
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="eudev-libudev-devel"
diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 486d3b7104b..35c53f8b2b9 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -2,7 +2,6 @@
 pkgname=meld
 version=3.20.2
 revision=1
-archs=noarch
 build_style=python3-module
 configure_args="--disable-schemas-compile"
 hostmakedepends="pkg-config intltool gnome-doc-utils python3 itstool gtk-update-icon-cache libxml2-python3"
diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index f16c5f64337..d67b6909924 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -2,7 +2,6 @@
 pkgname=menulibre
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/menumaker/template b/srcpkgs/menumaker/template
index 1e4e3f6fc6b..1b73dd13862 100644
--- a/srcpkgs/menumaker/template
+++ b/srcpkgs/menumaker/template
@@ -2,7 +2,6 @@
 pkgname=menumaker
 version=0.99.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/menumaker"
 hostmakedepends="python"
diff --git a/srcpkgs/menutray/template b/srcpkgs/menutray/template
index 6f06e21ff21..3c986f208de 100644
--- a/srcpkgs/menutray/template
+++ b/srcpkgs/menutray/template
@@ -2,7 +2,6 @@
 pkgname=menutray
 version=0.53
 revision=1
-archs=noarch
 depends="perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Application menu through a GTK+ tray status icon"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/meson-cmake-wrapper/template b/srcpkgs/meson-cmake-wrapper/template
index b13ca9229dc..e9058501f60 100644
--- a/srcpkgs/meson-cmake-wrapper/template
+++ b/srcpkgs/meson-cmake-wrapper/template
@@ -2,7 +2,6 @@
 pkgname=meson-cmake-wrapper
 version=0.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mcw"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 8f02d6ba333..a78967b7eae 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,6 @@
 pkgname=meson
 version=0.55.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-devel python3-setuptools"
 depends="ninja python3-setuptools"
diff --git a/srcpkgs/mime-types/template b/srcpkgs/mime-types/template
index 09b3fb9be3c..1f9c9830b9e 100644
--- a/srcpkgs/mime-types/template
+++ b/srcpkgs/mime-types/template
@@ -2,7 +2,6 @@
 pkgname=mime-types
 version=9
 revision=4
-archs=noarch
 conf_files="/etc/mime.types"
 short_desc="Provides a shared /etc/mime.types file"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index 66cd1e12539..82cfd4aa6da 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -2,7 +2,6 @@
 pkgname=mimeo
 version=2019.7
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"
 hostmakedepends="python3"
diff --git a/srcpkgs/mimms/template b/srcpkgs/mimms/template
index 3c1decf9178..db3c660d808 100644
--- a/srcpkgs/mimms/template
+++ b/srcpkgs/mimms/template
@@ -2,7 +2,6 @@
 pkgname=mimms
 version=3.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="libmimms"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/minigalaxy/template b/srcpkgs/minigalaxy/template
index 1d2daaea8d0..12f907fc150 100644
--- a/srcpkgs/minigalaxy/template
+++ b/srcpkgs/minigalaxy/template
@@ -2,7 +2,6 @@
 pkgname=minigalaxy
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="hicolor-icon-theme webkit2gtk python3-gobject python3-requests"
diff --git a/srcpkgs/miro-video-converter/template b/srcpkgs/miro-video-converter/template
index c9d0777aea6..00d273e6bdb 100644
--- a/srcpkgs/miro-video-converter/template
+++ b/srcpkgs/miro-video-converter/template
@@ -3,7 +3,6 @@ pkgname=miro-video-converter
 version=3.0.2
 revision=2
 wrksrc=mirovideoconverter3-${version}
-archs=noarch
 build_style=python2-module
 pycompile_module="mvc"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mkchromecast/template b/srcpkgs/mkchromecast/template
index e5d9626f9dd..fd977f906a3 100644
--- a/srcpkgs/mkchromecast/template
+++ b/srcpkgs/mkchromecast/template
@@ -2,7 +2,6 @@
 pkgname=mkchromecast
 version=0.3.8.1
 revision=2
-archs=noarch
 pycompile_dirs="/usr/share/mkchromecast/mkchromecast"
 depends="python3-Flask python3-netifaces python3-setuptools python3-requests
  python3-mutagen python3-psutil python3-PyQt5 python3-SoCo python3-chromecast
diff --git a/srcpkgs/mkfontscale/template b/srcpkgs/mkfontscale/template
index dafbb915ca8..a1405b8123c 100644
--- a/srcpkgs/mkfontscale/template
+++ b/srcpkgs/mkfontscale/template
@@ -18,7 +18,6 @@ post_install() {
 }
 
 mkfontdir_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}-${version}_${revision}"
 }
diff --git a/srcpkgs/mkinitcpio-encryptssh/template b/srcpkgs/mkinitcpio-encryptssh/template
index 7da6d9e243b..9764febbfeb 100644
--- a/srcpkgs/mkinitcpio-encryptssh/template
+++ b/srcpkgs/mkinitcpio-encryptssh/template
@@ -3,7 +3,6 @@ pkgname=mkinitcpio-encryptssh
 version=0.16
 revision=2
 _version_suffix=1
-archs=noarch
 wrksrc="dropbear_initrd_encrypt-${version}-${_version_suffix}"
 depends="mkinitcpio cryptsetup dropbear mkinitcpio-nfs-utils psmisc iproute2"
 short_desc="Allows for an encrypted root device to be unlocked remotely over SSH"
diff --git a/srcpkgs/mkinitcpio/template b/srcpkgs/mkinitcpio/template
index a0f44360db4..89a6deab1df 100644
--- a/srcpkgs/mkinitcpio/template
+++ b/srcpkgs/mkinitcpio/template
@@ -2,7 +2,6 @@
 pkgname=mkinitcpio
 version=27
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="busybox-static bsdtar bash"
 short_desc="Next generation of initramfs creation"
@@ -30,7 +29,6 @@ post_install() {
 mkinitcpio-udev_package() {
 	depends="${sourcepkg}>=${version}_${revision} eudev"
 	short_desc+=" - udev support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/udev_hook 644 usr/lib/initcpio/hooks udev
 		vinstall ${FILESDIR}/udev_install 644 usr/lib/initcpio/install udev
@@ -40,7 +38,6 @@ mkinitcpio-udev_package() {
 mkinitcpio-lvm2_package() {
 	depends="${sourcepkg}>=${version}_${revision} lvm2 thin-provisioning-tools"
 	short_desc+=" - lvm2 support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/lvm2_hook 644 usr/lib/initcpio/hooks lvm2
 		vinstall ${FILESDIR}/lvm2_install 644 usr/lib/initcpio/install lvm2
@@ -54,7 +51,6 @@ mkinitcpio-encrypt_package() {
 	depends="${sourcepkg}>=${version}_${revision}
 		${sourcepkg}-lvm2>=${version}_${revision} cryptsetup"
 	short_desc+=" - encrypt support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/encrypt_hook 644 usr/lib/initcpio/hooks encrypt
 		vinstall ${FILESDIR}/encrypt_install 644 usr/lib/initcpio/install encrypt
@@ -64,7 +60,6 @@ mkinitcpio-encrypt_package() {
 mkinitcpio-mdadm_package() {
 	depends="${sourcepkg}>=${version}_${revision} mdadm"
 	short_desc+=" - mdadm support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/mdadm_hook 644 usr/lib/initcpio/hooks mdadm
 		vinstall ${FILESDIR}/mdadm_install 644 usr/lib/initcpio/install mdadm
@@ -75,7 +70,6 @@ mkinitcpio-mdadm_package() {
 mkinitcpio-xbps_package() {
 	depends="${sourcepkg}>=${version}_${revision} xbps"
 	short_desc+=" - xbps support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/xbps_install 644 usr/lib/initcpio/install xbps
 	}
diff --git a/srcpkgs/mlt/template b/srcpkgs/mlt/template
index 1579a5b21dd..1798e9e7326 100644
--- a/srcpkgs/mlt/template
+++ b/srcpkgs/mlt/template
@@ -57,7 +57,6 @@ post_install() {
 
 mlt-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mlt
 	}
@@ -65,7 +64,6 @@ mlt-data_package() {
 
 mlt-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
@@ -94,7 +92,6 @@ mlt-python3_package() {
 
 mlt-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="mlt-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/mm-common/template b/srcpkgs/mm-common/template
index da83e052bd6..5398a1b143e 100644
--- a/srcpkgs/mm-common/template
+++ b/srcpkgs/mm-common/template
@@ -2,7 +2,6 @@
 pkgname=mm-common
 version=1.0.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool itstool"
 depends="gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mobile-broadband-provider-info/template b/srcpkgs/mobile-broadband-provider-info/template
index b51be988591..d4986e56405 100644
--- a/srcpkgs/mobile-broadband-provider-info/template
+++ b/srcpkgs/mobile-broadband-provider-info/template
@@ -2,7 +2,6 @@
 pkgname=mobile-broadband-provider-info
 version=20190618
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libxslt"
 checkdepends="libxml2"
diff --git a/srcpkgs/mog/template b/srcpkgs/mog/template
index 51f76b94dc4..41a9230f6e1 100644
--- a/srcpkgs/mog/template
+++ b/srcpkgs/mog/template
@@ -29,7 +29,6 @@ pre_build() {
 
 mog-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mog/graphics
 		vmove usr/share/mog/sound
diff --git a/srcpkgs/mongoose/template b/srcpkgs/mongoose/template
index 587b1ff34eb..6de2663d477 100644
--- a/srcpkgs/mongoose/template
+++ b/srcpkgs/mongoose/template
@@ -22,7 +22,6 @@ mongoose-devel_package() {
 }
 
 mongoose-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mons/template b/srcpkgs/mons/template
index d326cc456c5..4353a22fecb 100644
--- a/srcpkgs/mons/template
+++ b/srcpkgs/mons/template
@@ -3,7 +3,6 @@ pkgname=mons
 version=0.8.2
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="libXrandr"
 hostmakedepends="help2man"
 short_desc="Quickly manage 2-monitors display using xrandr"
diff --git a/srcpkgs/mopidy-local/template b/srcpkgs/mopidy-local/template
index 53f42032019..9cb909cbd8e 100644
--- a/srcpkgs/mopidy-local/template
+++ b/srcpkgs/mopidy-local/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-local
 version=3.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="mopidy python3-pykka python3-setuptools"
diff --git a/srcpkgs/mopidy-mpd/template b/srcpkgs/mopidy-mpd/template
index db1642166fd..5cd84e87ba2 100644
--- a/srcpkgs/mopidy-mpd/template
+++ b/srcpkgs/mopidy-mpd/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-mpd
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="Mopidy-MPD-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mopidy/template b/srcpkgs/mopidy/template
index c3497f3b88d..db3eca17752 100644
--- a/srcpkgs/mopidy/template
+++ b/srcpkgs/mopidy/template
@@ -2,7 +2,6 @@
 pkgname=mopidy
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="Mopidy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme python3-pykka"
diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 22bf450556e..d1d4f4b02c1 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -2,7 +2,6 @@
 pkgname=mozo
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="glib-devel mate-menus-devel python3-gobject-devel"
diff --git a/srcpkgs/mpd-sima/template b/srcpkgs/mpd-sima/template
index 831fec709b7..0b8e1079760 100644
--- a/srcpkgs/mpd-sima/template
+++ b/srcpkgs/mpd-sima/template
@@ -2,7 +2,6 @@
 pkgname=mpd-sima
 version=0.15.1
 revision=2
-archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module
 pycompile_module="sima"
diff --git a/srcpkgs/mps-youtube/template b/srcpkgs/mps-youtube/template
index 2141b3e627d..1ce565e4bc5 100644
--- a/srcpkgs/mps-youtube/template
+++ b/srcpkgs/mps-youtube/template
@@ -2,7 +2,6 @@
 pkgname=mps-youtube
 version=0.2.8
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/msbuild-bin/template b/srcpkgs/msbuild-bin/template
index 58e9bd501b0..ac05eb692b4 100644
--- a/srcpkgs/msbuild-bin/template
+++ b/srcpkgs/msbuild-bin/template
@@ -3,7 +3,6 @@ _xamarin_rel="xamarinxplat.2020.01.10.05.36-0xamarin1+ubuntu1804b1"
 pkgname=msbuild-bin
 version=16.5
 revision=2
-archs=noarch
 build_style=fetch
 depends="mono"
 short_desc="Xamarin/Mono fork of the Microsoft Build system"
diff --git a/srcpkgs/msttcorefonts/template b/srcpkgs/msttcorefonts/template
index 938e03315c1..a253ba88b94 100644
--- a/srcpkgs/msttcorefonts/template
+++ b/srcpkgs/msttcorefonts/template
@@ -45,7 +45,6 @@ restricted=yes
 repository=nonfree
 
 # They're just fonts...
-archs=noarch
 
 # Tell XBPS that these are fonts
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/mtm/template b/srcpkgs/mtm/template
index ed69349285b..81ac285cd77 100644
--- a/srcpkgs/mtm/template
+++ b/srcpkgs/mtm/template
@@ -24,7 +24,6 @@ do_install() {
 
 mtm-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/mu/template b/srcpkgs/mu/template
index c31ee5b5900..2ee0ba83dd9 100644
--- a/srcpkgs/mu/template
+++ b/srcpkgs/mu/template
@@ -26,7 +26,6 @@ pre_configure() {
 
 if [ ! "$CROSS_BUILD" ]; then
 	mu4e_package() {
-		archs=noarch
 		short_desc+=" - Emacs frontend"
 		depends="${sourcepkg}-${version}_${revision} emacs"
 		pkg_install() {
diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index 1e695654a86..3a0c2120a6d 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -2,7 +2,6 @@
 pkgname=mugshot
 version=0.4.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"
 depends="accountsservice gtk+3 python3-dbus python3-gobject python3-pexpect"
diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index c451109bd69..5ec9968ad90 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -2,7 +2,6 @@
 pkgname=multibootusb
 version=9.2.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="scripts"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index 957ed3ed818..7f75588deec 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -2,7 +2,6 @@
 pkgname=mutagen
 version=1.43.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mutagen"
 hostmakedepends="python-devel python-setuptools python3-devel
@@ -39,7 +38,6 @@ python3-mutagen_package() {
 	 mutagen:moggsplit:/usr/bin/moggsplit3
 	 mutagen:mutagen-inspect:/usr/bin/mutagen-inspect3
 	 mutagen:mutagen-pony:/usr/bin/mutagen-pony3"
-	archs=noarch
 	depends="python3"
 	pycompile_module="mutagen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index c46fe9b101e..3f3a3ab0a7c 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -2,7 +2,6 @@
 pkgname=mymcplus
 version=3.0.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="wxPython4 python3-PyOpenGL"
diff --git a/srcpkgs/mypaint-brushes/template b/srcpkgs/mypaint-brushes/template
index 5226d6f18d6..045d7d6a0dc 100644
--- a/srcpkgs/mypaint-brushes/template
+++ b/srcpkgs/mypaint-brushes/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes
 version=2.0.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Brushes used by MyPaint and other software using libmypaint"
diff --git a/srcpkgs/mypaint-brushes1/template b/srcpkgs/mypaint-brushes1/template
index 8622bb46bb8..fe9ad775afd 100644
--- a/srcpkgs/mypaint-brushes1/template
+++ b/srcpkgs/mypaint-brushes1/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes1
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="mypaint-brushes-${version}"
 build_style=gnu-configure
 hostmakedepends="automake"
diff --git a/srcpkgs/myrepos/template b/srcpkgs/myrepos/template
index 2a67216feb7..fb282542f6d 100644
--- a/srcpkgs/myrepos/template
+++ b/srcpkgs/myrepos/template
@@ -2,7 +2,6 @@
 pkgname=myrepos
 version=1.20180726
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="git mercurial perl"
diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 0eb5bc75d27..710d7c861ba 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -2,7 +2,6 @@
 pkgname=nagstamon
 version=3.2.1
 revision=2
-archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
 pycompile_module="Nagstamon"
diff --git a/srcpkgs/nautilus-python/template b/srcpkgs/nautilus-python/template
index 7a32e9e6617..414848a4e8d 100644
--- a/srcpkgs/nautilus-python/template
+++ b/srcpkgs/nautilus-python/template
@@ -2,7 +2,6 @@
 pkgname=nautilus-python
 version=1.2.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-gtk-doc PYTHON=python3"
 hostmakedepends="automake libtool pkg-config which"
diff --git a/srcpkgs/ncurses/template b/srcpkgs/ncurses/template
index d1bb2ae3aa8..bcc9515dfec 100644
--- a/srcpkgs/ncurses/template
+++ b/srcpkgs/ncurses/template
@@ -131,7 +131,6 @@ ncurses-devel_package() {
 }
 ncurses-base_package() {
 	short_desc+=" - base terminfo files"
-	archs=noarch
 	pkg_install() {
 		cat ${FILESDIR}/base-files | while read line; do
 			vmove ${line}
@@ -141,7 +140,6 @@ ncurses-base_package() {
 ncurses-term_package() {
 	depends="ncurses-base-${version}_${revision}"
 	short_desc+=" - full terminal descriptions"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tabset
 		vmove usr/share/terminfo
diff --git a/srcpkgs/neofetch/template b/srcpkgs/neofetch/template
index 60862481a28..99a5b6fa463 100644
--- a/srcpkgs/neofetch/template
+++ b/srcpkgs/neofetch/template
@@ -2,7 +2,6 @@
 pkgname=neofetch
 version=7.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 short_desc="Simple system information script"
diff --git a/srcpkgs/neovim-remote/template b/srcpkgs/neovim-remote/template
index c826750a004..8b84712d21f 100644
--- a/srcpkgs/neovim-remote/template
+++ b/srcpkgs/neovim-remote/template
@@ -2,7 +2,6 @@
 pkgname=neovim-remote
 version=2.4.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-neovim python3-psutil"
diff --git a/srcpkgs/nerd-fonts/template b/srcpkgs/nerd-fonts/template
index a2f2084738b..16d4b469627 100644
--- a/srcpkgs/nerd-fonts/template
+++ b/srcpkgs/nerd-fonts/template
@@ -2,7 +2,6 @@
 pkgname=nerd-fonts
 version=2.1.0
 revision=2
-archs=noarch
 depends="font-util xbps-triggers nerd-fonts-ttf nerd-fonts-otf"
 short_desc="Iconic font aggregator, collection and patcher"
 maintainer="cinerea0 <cinerea0@protonmail.com>"
@@ -32,7 +31,6 @@ do_install() {
 }
 
 nerd-fonts-otf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - otf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/otf"
 	depends="font-util xbps-triggers"
@@ -42,7 +40,6 @@ nerd-fonts-otf_package() {
 }
 
 nerd-fonts-ttf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - ttf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/ttf"
 	depends="font-util xbps-triggers"
diff --git a/srcpkgs/netbsd-wtf/template b/srcpkgs/netbsd-wtf/template
index 87708e08847..878f674a0af 100644
--- a/srcpkgs/netbsd-wtf/template
+++ b/srcpkgs/netbsd-wtf/template
@@ -3,7 +3,6 @@ pkgname=netbsd-wtf
 version=20180621
 revision=2
 _commit=b1e5be48e340146f63b174cc14fef892a783168b
-archs=noarch
 build_style=gnu-makefile
 short_desc="The NetBSD's wtf(6) utility"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/netdata/template b/srcpkgs/netdata/template
index 29e9ca1ce2c..4c39efa113d 100644
--- a/srcpkgs/netdata/template
+++ b/srcpkgs/netdata/template
@@ -48,7 +48,6 @@ post_install() {
 netdata-plugins-nodejs_package() {
 	short_desc+=" - NodeJS Plugins"
 	depends="${sourcepkg}>=${version}_${revision} virtual?nodejs-runtime"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/node.d.plugin
 		vmove usr/libexec/netdata/node.d
@@ -58,7 +57,6 @@ netdata-plugins-nodejs_package() {
 netdata-plugins-python_package() {
 	short_desc+=" - Python Plugins"
 	depends="${sourcepkg}>=${version}_${revision} python"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/python.d.plugin
 		vmove usr/libexec/netdata/python.d
diff --git a/srcpkgs/netsurf-buildsystem/template b/srcpkgs/netsurf-buildsystem/template
index b65615497e2..1a8f7dd25bc 100644
--- a/srcpkgs/netsurf-buildsystem/template
+++ b/srcpkgs/netsurf-buildsystem/template
@@ -2,7 +2,6 @@
 pkgname=netsurf-buildsystem
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#netsurf-}-${version}"
 short_desc="Netsurf buildsystem"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/nicotine+/template b/srcpkgs/nicotine+/template
index 6f743890f83..ad57c8a98b0 100644
--- a/srcpkgs/nicotine+/template
+++ b/srcpkgs/nicotine+/template
@@ -2,7 +2,6 @@
 pkgname=nicotine+
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="nicotine-plus-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/nmap/template b/srcpkgs/nmap/template
index 8f036af7fc4..c868f1fd8ac 100644
--- a/srcpkgs/nmap/template
+++ b/srcpkgs/nmap/template
@@ -36,7 +36,6 @@ post_install() {
 }
 
 zenmap_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} pygtk"
 	short_desc+=" - GUI Frontend"
 	pkg_install() {
diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index d9bba6a03b8..8e0fb2a7300 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -91,7 +91,6 @@ libnotmuch-devel_package() {
 }
 
 notmuch-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -104,7 +103,6 @@ notmuch-emacs_package() {
 }
 
 notmuch-mutt_package() {
-	archs=noarch
 	short_desc+=" - Mutt interface"
 	depends="${sourcepkg}-${version}_${revision} perl-Mail-Box perl-MailTools
 	 perl-String-ShellQuote perl-Term-ReadLine-Gnu perl-File-Which"
@@ -115,7 +113,6 @@ notmuch-mutt_package() {
 }
 
 notmuch-python3_package() {
-	archs=noarch
 	depends="libnotmuch-${version}_${revision}"
 	short_desc+=" - Python 3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/noto-fonts-cjk/template b/srcpkgs/noto-fonts-cjk/template
index 8f35b2e9307..1de8196f2a8 100644
--- a/srcpkgs/noto-fonts-cjk/template
+++ b/srcpkgs/noto-fonts-cjk/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-cjk
 version=20190416
 revision=1
-archs=noarch
 _githash=be6c059ac1587e556e2412b27f5155c8eb3ddbe6
 wrksrc="noto-cjk-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-emoji/template b/srcpkgs/noto-fonts-emoji/template
index 5c467f27551..ee804e84650 100644
--- a/srcpkgs/noto-fonts-emoji/template
+++ b/srcpkgs/noto-fonts-emoji/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-emoji
 version=20200722
 revision=1
-archs=noarch
 _githash=d5e261484286d33a1fe8a02676f5907ecc02106f
 wrksrc="noto-emoji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-ttf/template b/srcpkgs/noto-fonts-ttf/template
index 59c5f03f8e6..21f2064f3aa 100644
--- a/srcpkgs/noto-fonts-ttf/template
+++ b/srcpkgs/noto-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-ttf
 version=20190926
 revision=1
-archs=noarch
 _githash=0fa1dfabd6e3746bb7463399e2813f60d3f1b256
 wrksrc="noto-fonts-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/novaboot/template b/srcpkgs/novaboot/template
index f93c1ebe23b..f5f539b55dc 100644
--- a/srcpkgs/novaboot/template
+++ b/srcpkgs/novaboot/template
@@ -2,7 +2,6 @@
 pkgname=novaboot
 version=20191023
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 makedepends="perl"
diff --git a/srcpkgs/nsss/template b/srcpkgs/nsss/template
index 947efc1a496..fafa035d570 100644
--- a/srcpkgs/nsss/template
+++ b/srcpkgs/nsss/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 nsss-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/ntp/template b/srcpkgs/ntp/template
index c1cd814ea9d..e89fd2f8ae1 100644
--- a/srcpkgs/ntp/template
+++ b/srcpkgs/ntp/template
@@ -42,7 +42,6 @@ post_install() {
 
 ntp-perl_package() {
 	depends="ntp>=$version perl"
-	archs=noarch
 	short_desc+=" - perl scripts"
 	pkg_install() {
 		vmove usr/bin/ntp-wait
diff --git a/srcpkgs/num-utils/template b/srcpkgs/num-utils/template
index d7b542fa7af..ed38c538be1 100644
--- a/srcpkgs/num-utils/template
+++ b/srcpkgs/num-utils/template
@@ -10,7 +10,6 @@ license="GPL-2"
 homepage="http://suso.suso.org/xulu/Num-utils"
 distfiles="http://suso.suso.org/programs/${pkgname}/downloads/${pkgname}-${version}.tar.gz"
 checksum=03592760fc7844492163b14ddc9bb4e4d6526e17b468b5317b4a702ea7f6c64e
-archs=noarch
 
 post_extract() {
 	sed -i 's/\$new_number\^\$1/$new_number**$1/g' numprocess
diff --git a/srcpkgs/numix-themes/template b/srcpkgs/numix-themes/template
index f993b7949a4..78b431f7072 100644
--- a/srcpkgs/numix-themes/template
+++ b/srcpkgs/numix-themes/template
@@ -2,7 +2,6 @@ pkgname=numix-themes
 version=2.6.7
 revision=1
 wrksrc="numix-gtk-theme-${version}"
-archs=noarch
 build_style=gnu-makefile
 short_desc="A modern flat theme with a combination of light and dark elements"
 maintainer="Jakub Skrzypnik <jot.skrzyp@gmail.com>"
diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 4b265771793..fe9734dc24d 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -2,7 +2,6 @@
 pkgname=nyx
 version=2.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="nyx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/oblogout/template b/srcpkgs/oblogout/template
index 7d7b93a2fd1..70623e2c76a 100644
--- a/srcpkgs/oblogout/template
+++ b/srcpkgs/oblogout/template
@@ -2,7 +2,6 @@
 pkgname=oblogout
 version=0.2
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 build_style=python2-module
 conf_files="/etc/oblogout.conf"
diff --git a/srcpkgs/obmenu-generator/template b/srcpkgs/obmenu-generator/template
index 370c37bec39..35236b5433b 100644
--- a/srcpkgs/obmenu-generator/template
+++ b/srcpkgs/obmenu-generator/template
@@ -2,7 +2,6 @@
 pkgname=obmenu-generator
 version=0.88
 revision=1
-archs=noarch
 depends="perl perl-Linux-DesktopFiles perl-Data-Dump perl-Gtk2"
 short_desc="Perl Script to generate Openbox menu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/obmenu/template b/srcpkgs/obmenu/template
index 0e72c282bef..7191ad31d54 100644
--- a/srcpkgs/obmenu/template
+++ b/srcpkgs/obmenu/template
@@ -2,7 +2,6 @@
 pkgname=obmenu
 version=1.0
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="obxml.py"
 hostmakedepends="python"
diff --git a/srcpkgs/offlineimap/template b/srcpkgs/offlineimap/template
index c66f7f4581e..95be25f9aeb 100644
--- a/srcpkgs/offlineimap/template
+++ b/srcpkgs/offlineimap/template
@@ -2,7 +2,6 @@
 pkgname=offlineimap
 version=7.3.3
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-six python-rfc6555 asciidoc"
 depends="python-six python-rfc6555"
diff --git a/srcpkgs/ohsnap-font/template b/srcpkgs/ohsnap-font/template
index 2ce38c54ac7..f582d716f0a 100644
--- a/srcpkgs/ohsnap-font/template
+++ b/srcpkgs/ohsnap-font/template
@@ -2,7 +2,6 @@
 pkgname=ohsnap-font
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="ohsnap-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/ok.sh/template b/srcpkgs/ok.sh/template
index ac00f710837..400767cc52b 100644
--- a/srcpkgs/ok.sh/template
+++ b/srcpkgs/ok.sh/template
@@ -2,7 +2,6 @@
 pkgname=ok.sh
 version=0.6.1
 revision=1
-archs=noarch
 depends="curl jq"
 checkdepends="socat ${depends}"
 short_desc="GitHub API client library written in POSIX sh"
diff --git a/srcpkgs/oniguruma/template b/srcpkgs/oniguruma/template
index c017fe458d5..c84b5b51f61 100644
--- a/srcpkgs/oniguruma/template
+++ b/srcpkgs/oniguruma/template
@@ -28,7 +28,6 @@ oniguruma-devel_package() {
 }
 
 oniguruma-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index b8df8ae79c7..5fd796c2ebd 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -2,7 +2,6 @@
 pkgname=onionshare
 version=2.2
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_dirs="/usr/share/nautilus-python/extensions"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/opencl-clhpp/template b/srcpkgs/opencl-clhpp/template
index a2d140b5f9b..7ac36210b97 100644
--- a/srcpkgs/opencl-clhpp/template
+++ b/srcpkgs/opencl-clhpp/template
@@ -3,7 +3,6 @@ pkgname=opencl-clhpp
 version=2.0.10
 revision=1
 wrksrc="OpenCL-CLHPP-${version}"
-archs=noarch
 hostmakedepends="python"
 short_desc="OpenCL Host API C++ bindings (cl.hpp and cl2.hpp)"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/opencl2-headers/template b/srcpkgs/opencl2-headers/template
index 4a1ef594025..20b005fccbe 100644
--- a/srcpkgs/opencl2-headers/template
+++ b/srcpkgs/opencl2-headers/template
@@ -2,7 +2,6 @@
 pkgname=opencl2-headers
 version=2020.06.16
 revision=1
-archs=noarch
 wrksrc="OpenCL-Headers-${version}"
 short_desc="OpenCL 2.2 (Open Computing Language) header files"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/openjdk8/template b/srcpkgs/openjdk8/template
index 9f9c5998fdc..a95d647e9f7 100644
--- a/srcpkgs/openjdk8/template
+++ b/srcpkgs/openjdk8/template
@@ -286,28 +286,24 @@ openjdk8-doc_package() {
 }
 
 openjdk_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 openjdk-jre_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-jre>=${version}_${revision}"
 	short_desc+=" - runtime components (transitional dummy package)"
 }
 
 openjdk-src_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-src>=${version}_${revision}"
 	short_desc+=" - source code (transitional dummy package)"
 }
 
 openjdk-doc_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-doc>=${version}_${revision}"
 	short_desc+=" - documentation (transitional dummy package)"
diff --git a/srcpkgs/openlierox/template b/srcpkgs/openlierox/template
index 33784034232..52e90f4e834 100644
--- a/srcpkgs/openlierox/template
+++ b/srcpkgs/openlierox/template
@@ -42,7 +42,6 @@ do_install() {
 
 openlierox-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/OpenLieroX
 	}
diff --git a/srcpkgs/openra/template b/srcpkgs/openra/template
index f191405c111..afdde5c1125 100644
--- a/srcpkgs/openra/template
+++ b/srcpkgs/openra/template
@@ -2,7 +2,6 @@
 pkgname=openra
 version=20200503
 revision=1
-archs=noarch
 wrksrc="OpenRA-release-${version}"
 build_style="gnu-makefile"
 make_install_target="install install-linux-shortcuts install-linux-mime
diff --git a/srcpkgs/openresolv/template b/srcpkgs/openresolv/template
index c542e9b5310..2eb521564c6 100644
--- a/srcpkgs/openresolv/template
+++ b/srcpkgs/openresolv/template
@@ -2,7 +2,6 @@
 pkgname=openresolv
 version=3.10.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Management framework for resolv.conf"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/opensonic/template b/srcpkgs/opensonic/template
index c32bb11cb93..21487454e74 100644
--- a/srcpkgs/opensonic/template
+++ b/srcpkgs/opensonic/template
@@ -38,7 +38,6 @@ post_install() {
 
 opensonic-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/opensonic/config
 		vmove usr/share/opensonic/images
diff --git a/srcpkgs/opensurge/template b/srcpkgs/opensurge/template
index 187cace09e6..a80afb13578 100644
--- a/srcpkgs/opensurge/template
+++ b/srcpkgs/opensurge/template
@@ -15,7 +15,6 @@ checksum=d060e3215231741ce0b4e5b897af52f8755c57660c8a33856bf921c83af18ba2
 
 opensurge-data_package() {
 	short_desc+=" - game data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/opentmpfiles/template b/srcpkgs/opentmpfiles/template
index 66e3bd34f2f..cec60fef210 100644
--- a/srcpkgs/opentmpfiles/template
+++ b/srcpkgs/opentmpfiles/template
@@ -2,7 +2,6 @@
 pkgname=opentmpfiles
 version=0.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="A standalone utility for handling systemd-style tmpfiles.d settings"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/openttd/template b/srcpkgs/openttd/template
index 47df4a01b56..17c3c6577dd 100644
--- a/srcpkgs/openttd/template
+++ b/srcpkgs/openttd/template
@@ -45,7 +45,6 @@ do_configure() {
 
 openttd-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openttd
 		vmkdir usr/share/openttd/data
diff --git a/srcpkgs/opentyrian/template b/srcpkgs/opentyrian/template
index 92a1ef220b5..0ec941fd3f5 100644
--- a/srcpkgs/opentyrian/template
+++ b/srcpkgs/opentyrian/template
@@ -37,7 +37,6 @@ EOT
 
 opentyrian-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/${sourcepkg}/data
 		vcopy "${XBPS_BUILDDIR}/tyrian${_dataver}/*" usr/share/${sourcepkg}/data
diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index f70202e6d76..18de381eaed 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -2,7 +2,6 @@
 pkgname=orca
 version=3.36.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="at-spi2-atk-devel liblouis-devel python3-gobject-devel"
diff --git a/srcpkgs/orjail/template b/srcpkgs/orjail/template
index 37ae9bbf042..67608de589d 100644
--- a/srcpkgs/orjail/template
+++ b/srcpkgs/orjail/template
@@ -2,7 +2,6 @@
 pkgname=orjail
 version=1.1
 revision=1
-archs=noarch
 hostmakedepends="ruby-ronn"
 depends="bash bc-gh coreutils grep iproute2 ncurses tor util-linux"
 short_desc="Force a program to exclusively use the Tor network"
diff --git a/srcpkgs/osinfo-db/template b/srcpkgs/osinfo-db/template
index 836b38995cc..64813ebfaec 100644
--- a/srcpkgs/osinfo-db/template
+++ b/srcpkgs/osinfo-db/template
@@ -2,7 +2,6 @@
 pkgname=osinfo-db
 version=20200529
 revision=1
-archs=noarch
 build_style=fetch
 hostmakedepends="osinfo-db-tools"
 short_desc="Osinfo database about operating systems"
diff --git a/srcpkgs/othman/template b/srcpkgs/othman/template
index 7c75a6b04f2..5bbcaed9424 100644
--- a/srcpkgs/othman/template
+++ b/srcpkgs/othman/template
@@ -2,7 +2,6 @@
 pkgname=othman
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="othman"
 hostmakedepends="python3 ImageMagick sqlite intltool"
diff --git a/srcpkgs/overpass-otf/template b/srcpkgs/overpass-otf/template
index 3f349b80966..b5d2d7cb8e4 100644
--- a/srcpkgs/overpass-otf/template
+++ b/srcpkgs/overpass-otf/template
@@ -2,7 +2,6 @@
 pkgname=overpass-otf
 version=3.0.4
 revision=1
-archs=noarch
 wrksrc="Overpass-${version}"
 depends="font-util xbps-triggers"
 short_desc="Open source font family inspired by Highway Gothic"
diff --git a/srcpkgs/oxygen-icons5/template b/srcpkgs/oxygen-icons5/template
index 583e7880eb6..9a93f760e19 100644
--- a/srcpkgs/oxygen-icons5/template
+++ b/srcpkgs/oxygen-icons5/template
@@ -2,7 +2,6 @@
 pkgname=oxygen-icons5
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="kcoreaddons extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/pam-base/template b/srcpkgs/pam-base/template
index 216cea3679f..dc0de192b4a 100644
--- a/srcpkgs/pam-base/template
+++ b/srcpkgs/pam-base/template
@@ -2,7 +2,6 @@
 pkgname=pam-base
 version=0.3
 revision=5
-archs=noarch
 short_desc="PAM base configuration files"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="public domain"
diff --git a/srcpkgs/pantalaimon/template b/srcpkgs/pantalaimon/template
index 31a1763ab24..4c9523bbc02 100644
--- a/srcpkgs/pantalaimon/template
+++ b/srcpkgs/pantalaimon/template
@@ -2,7 +2,6 @@
 pkgname=pantalaimon
 version=0.6.5
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-attrs python3-aiohttp python3-appdirs python3-click
diff --git a/srcpkgs/paper-gtk-theme/template b/srcpkgs/paper-gtk-theme/template
index a00a0ce1a4c..39d19abbf34 100644
--- a/srcpkgs/paper-gtk-theme/template
+++ b/srcpkgs/paper-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=paper-gtk-theme
 version=2.1.0
 revision=1
-archs=noarch
 short_desc="A modern Linux desktop theme suite"
 build_style=gnu-configure
 maintainer="Satoshi Amemiya <amemiya@protonmail.com>"
diff --git a/srcpkgs/paper-icon-theme/template b/srcpkgs/paper-icon-theme/template
index dabaa3d7ec0..c57bb2af7fc 100644
--- a/srcpkgs/paper-icon-theme/template
+++ b/srcpkgs/paper-icon-theme/template
@@ -3,7 +3,6 @@ pkgname=paper-icon-theme
 version=1.5.0
 revision=1
 wrksrc="${pkgname}-v.${version}"
-archs=noarch
 build_style=meson
 short_desc="A modern freedesktop icon theme"
 maintainer="travankor <travankor@tuta.io>"
diff --git a/srcpkgs/papirus-folders/template b/srcpkgs/papirus-folders/template
index 9dd36bdee91..cdcefee2ff2 100644
--- a/srcpkgs/papirus-folders/template
+++ b/srcpkgs/papirus-folders/template
@@ -2,7 +2,6 @@
 pkgname=papirus-folders
 version=1.7.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="papirus-icon-theme"
 short_desc="Allows to change the color of folder"
diff --git a/srcpkgs/papirus-icon-theme/template b/srcpkgs/papirus-icon-theme/template
index 39e5fef6086..929b9486b64 100644
--- a/srcpkgs/papirus-icon-theme/template
+++ b/srcpkgs/papirus-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=papirus-icon-theme
 version=20200801
 revision=1
-archs=noarch
 short_desc="SVG icon theme for Linux, based on Paper Icon Set"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/parallel/template b/srcpkgs/parallel/template
index dab4f184aad..b2201c0f73a 100644
--- a/srcpkgs/parallel/template
+++ b/srcpkgs/parallel/template
@@ -2,7 +2,6 @@
 pkgname=parallel
 version=20200722
 revision=1
-archs="noarch"
 build_style=gnu-configure
 depends="perl"
 checkdepends="perl"
diff --git a/srcpkgs/pass-git-helper/template b/srcpkgs/pass-git-helper/template
index 6d7f25bd8a7..5707c2d6a2d 100644
--- a/srcpkgs/pass-git-helper/template
+++ b/srcpkgs/pass-git-helper/template
@@ -2,7 +2,6 @@
 pkgname=pass-git-helper
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="pass python3-xdg"
diff --git a/srcpkgs/pass-import/template b/srcpkgs/pass-import/template
index ac7590bea99..3ac75af3910 100644
--- a/srcpkgs/pass-import/template
+++ b/srcpkgs/pass-import/template
@@ -2,7 +2,6 @@
 pkgname=pass-import
 version=3.0
 revision=3
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3-setuptools python3-yaml"
 depends="pass>=1.7.0 python3-defusedxml python3-magic
diff --git a/srcpkgs/pass-otp/template b/srcpkgs/pass-otp/template
index a9e3de053ae..9aaf5418b7a 100644
--- a/srcpkgs/pass-otp/template
+++ b/srcpkgs/pass-otp/template
@@ -2,7 +2,6 @@
 pkgname=pass-otp
 version=1.2.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="pass oath-toolkit qrencode"
 short_desc="A pass extension for managing one-time-password (OTP) tokens"
diff --git a/srcpkgs/pass-update/template b/srcpkgs/pass-update/template
index 0265a3aeafd..321a9fb4216 100644
--- a/srcpkgs/pass-update/template
+++ b/srcpkgs/pass-update/template
@@ -2,7 +2,6 @@
 pkgname=pass-update
 version=2.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args=BASHCOMPDIR=/usr/share/bash-completion/completions
 depends="pass"
diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template
index 229bb79c70d..1ca941ac4a5 100644
--- a/srcpkgs/pass/template
+++ b/srcpkgs/pass/template
@@ -2,7 +2,6 @@
 pkgname=pass
 version=1.7.3
 revision=3
-archs=noarch
 wrksrc="password-store-${version}"
 build_style=gnu-makefile
 make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
diff --git a/srcpkgs/pastebinit/template b/srcpkgs/pastebinit/template
index 1fcff9d6e4c..a7a692126a8 100644
--- a/srcpkgs/pastebinit/template
+++ b/srcpkgs/pastebinit/template
@@ -2,7 +2,6 @@
 pkgname=pastebinit
 version=1.5
 revision=3
-archs=noarch
 hostmakedepends="asciidoc gettext"
 depends="python3"
 short_desc="Pastebin command-line client"
diff --git a/srcpkgs/pcb/template b/srcpkgs/pcb/template
index 882fffad2c7..ad749498d5c 100644
--- a/srcpkgs/pcb/template
+++ b/srcpkgs/pcb/template
@@ -18,7 +18,6 @@ distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=1ceeaf1bdbe0508b9b140ca421eb600836579114c04dee939341c5d594f36e5d
 
 pcb-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/pcb
diff --git a/srcpkgs/pdd/template b/srcpkgs/pdd/template
index 70deb5a1ae3..6cb6ae2867a 100644
--- a/srcpkgs/pdd/template
+++ b/srcpkgs/pdd/template
@@ -2,7 +2,6 @@
 pkgname=pdd
 version=1.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-dateutil"
 checkdepends="python3-dateutil python3-pytest"
diff --git a/srcpkgs/pdf.js/template b/srcpkgs/pdf.js/template
index fbd2704e5f5..71f2403818f 100644
--- a/srcpkgs/pdf.js/template
+++ b/srcpkgs/pdf.js/template
@@ -2,7 +2,6 @@
 pkgname=pdf.js
 version=2.5.207
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Portable Document Format (PDF) viewer built with HTML5"
 maintainer="Daniel Santana <daniel@santana.tech>"
diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index 5ecede6cf56..bccb91ce3da 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -2,7 +2,6 @@
 pkgname=peframe
 version=6.0.3
 revision=2
-archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pelican/template b/srcpkgs/pelican/template
index c505227c554..9b390fa7726 100644
--- a/srcpkgs/pelican/template
+++ b/srcpkgs/pelican/template
@@ -2,7 +2,6 @@
 pkgname=pelican
 version=4.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pelican"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/percona-toolkit/template b/srcpkgs/percona-toolkit/template
index 612be5996a6..42cc7d91487 100644
--- a/srcpkgs/percona-toolkit/template
+++ b/srcpkgs/percona-toolkit/template
@@ -2,7 +2,6 @@
 pkgname=percona-toolkit
 version=3.0.13
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-DBD-mysql"
 depends="perl-DBD-mysql perl-Term-ReadKey"
diff --git a/srcpkgs/perl-ACL-Lite/template b/srcpkgs/perl-ACL-Lite/template
index f3ce855be07..3b2240d8650 100644
--- a/srcpkgs/perl-ACL-Lite/template
+++ b/srcpkgs/perl-ACL-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-ACL-Lite
 version=0.0004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AWS-Signature4/template b/srcpkgs/perl-AWS-Signature4/template
index 33844d45194..de5fac2cdb1 100644
--- a/srcpkgs/perl-AWS-Signature4/template
+++ b/srcpkgs/perl-AWS-Signature4/template
@@ -2,7 +2,6 @@
 pkgname=perl-AWS-Signature4
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Algorithm-Diff/template b/srcpkgs/perl-Algorithm-Diff/template
index 9bff5156ed2..08feaa2eb59 100644
--- a/srcpkgs/perl-Algorithm-Diff/template
+++ b/srcpkgs/perl-Algorithm-Diff/template
@@ -2,7 +2,6 @@
 pkgname=perl-Algorithm-Diff
 version=1.1903
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Alien-Build/template b/srcpkgs/perl-Alien-Build/template
index edc1f516035..4de28b0505c 100644
--- a/srcpkgs/perl-Alien-Build/template
+++ b/srcpkgs/perl-Alien-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-Build
 version=2.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-PkgConfig perl-File-Which"
diff --git a/srcpkgs/perl-Alien-wxWidgets/template b/srcpkgs/perl-Alien-wxWidgets/template
index 3c0a7eae5e8..fef3d2e27c0 100644
--- a/srcpkgs/perl-Alien-wxWidgets/template
+++ b/srcpkgs/perl-Alien-wxWidgets/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-wxWidgets
 version=0.69
 revision=1
-archs=noarch
 wrksrc="Alien-wxWidgets-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Module-Pluggable perl-LWP-Protocol-https"
diff --git a/srcpkgs/perl-Alien/template b/srcpkgs/perl-Alien/template
index 9149deae190..ffb54bc1566 100644
--- a/srcpkgs/perl-Alien/template
+++ b/srcpkgs/perl-Alien/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien
 version=0.95
 revision=1
-archs=noarch
 wrksrc="Alien-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AnyEvent-I3/template b/srcpkgs/perl-AnyEvent-I3/template
index 306cf53f404..bc087f6a578 100644
--- a/srcpkgs/perl-AnyEvent-I3/template
+++ b/srcpkgs/perl-AnyEvent-I3/template
@@ -3,7 +3,6 @@ pkgname=perl-AnyEvent-I3
 version=0.17
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-JSON-XS perl-AnyEvent"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/perl-AnyEvent/template b/srcpkgs/perl-AnyEvent/template
index 1d938d338c4..415f3eadeff 100644
--- a/srcpkgs/perl-AnyEvent/template
+++ b/srcpkgs/perl-AnyEvent/template
@@ -2,7 +2,6 @@
 pkgname=perl-AnyEvent
 version=7.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Apache-LogFormat-Compiler/template b/srcpkgs/perl-Apache-LogFormat-Compiler/template
index 36136de1a91..6b9aaacd152 100644
--- a/srcpkgs/perl-Apache-LogFormat-Compiler/template
+++ b/srcpkgs/perl-Apache-LogFormat-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Apache-LogFormat-Compiler
 version=0.36
 revision=1
-archs=noarch
 wrksrc="Apache-LogFormat-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-AppConfig/template b/srcpkgs/perl-AppConfig/template
index 02893ec6303..15b76b83b73 100644
--- a/srcpkgs/perl-AppConfig/template
+++ b/srcpkgs/perl-AppConfig/template
@@ -2,7 +2,6 @@
 pkgname=perl-AppConfig
 version=1.71
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Extract/template b/srcpkgs/perl-Archive-Extract/template
index ab0af642e64..89eb8ea79b0 100644
--- a/srcpkgs/perl-Archive-Extract/template
+++ b/srcpkgs/perl-Archive-Extract/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Extract
 version=0.86
 revision=1
-archs=noarch
 wrksrc="Archive-Extract-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Zip/template b/srcpkgs/perl-Archive-Zip/template
index e06ed44535c..ebc31653704 100644
--- a/srcpkgs/perl-Archive-Zip/template
+++ b/srcpkgs/perl-Archive-Zip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Zip
 version=1.68
 revision=1
-archs=noarch
 wrksrc="Archive-Zip-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Authen-SASL/template b/srcpkgs/perl-Authen-SASL/template
index 9b31f20e858..55329c9e917 100644
--- a/srcpkgs/perl-Authen-SASL/template
+++ b/srcpkgs/perl-Authen-SASL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Authen-SASL
 version=2.16
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-B-Hooks-EndOfScope/template b/srcpkgs/perl-B-Hooks-EndOfScope/template
index 8d2ec1ee190..6ece75610ba 100644
--- a/srcpkgs/perl-B-Hooks-EndOfScope/template
+++ b/srcpkgs/perl-B-Hooks-EndOfScope/template
@@ -14,4 +14,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/B-Hooks-EndOfScope"
 distfiles="${CPAN_SITE}/B/${pkgname/perl-/}-${version}.tar.gz"
 checksum=03aa3dfe5d0aa6471a96f43fe8318179d19794d4a640708f0288f9216ec7acc6
-archs=noarch
diff --git a/srcpkgs/perl-Business-ISBN-Data/template b/srcpkgs/perl-Business-ISBN-Data/template
index 1e0864d9058..674100474ca 100644
--- a/srcpkgs/perl-Business-ISBN-Data/template
+++ b/srcpkgs/perl-Business-ISBN-Data/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN-Data
 version=20191107
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISBN/template b/srcpkgs/perl-Business-ISBN/template
index 9a3d872045f..79451fa92db 100644
--- a/srcpkgs/perl-Business-ISBN/template
+++ b/srcpkgs/perl-Business-ISBN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN
 version=3.005
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISMN/template b/srcpkgs/perl-Business-ISMN/template
index 82b5caa5a85..82f8b48d51d 100644
--- a/srcpkgs/perl-Business-ISMN/template
+++ b/srcpkgs/perl-Business-ISMN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISMN
 version=1.201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISSN/template b/srcpkgs/perl-Business-ISSN/template
index ba5031a7874..c7c1350016d 100644
--- a/srcpkgs/perl-Business-ISSN/template
+++ b/srcpkgs/perl-Business-ISSN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISSN
 version=1.004
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CGI/template b/srcpkgs/perl-CGI/template
index 8c04e0a3178..2e7e64657f6 100644
--- a/srcpkgs/perl-CGI/template
+++ b/srcpkgs/perl-CGI/template
@@ -2,7 +2,6 @@
 pkgname=perl-CGI
 version=4.50
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Changes/template b/srcpkgs/perl-CPAN-Changes/template
index 3c4291e8350..e43b9b1aedc 100644
--- a/srcpkgs/perl-CPAN-Changes/template
+++ b/srcpkgs/perl-CPAN-Changes/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Changes
 version=0.400002
 revision=2
-archs=noarch
 wrksrc="CPAN-Changes-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Common-Index/template b/srcpkgs/perl-CPAN-Common-Index/template
index e37b7258507..273a368bbcf 100644
--- a/srcpkgs/perl-CPAN-Common-Index/template
+++ b/srcpkgs/perl-CPAN-Common-Index/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Common-Index
 version=0.010
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-DistnameInfo/template b/srcpkgs/perl-CPAN-DistnameInfo/template
index 16703b14b42..a353e608d67 100644
--- a/srcpkgs/perl-CPAN-DistnameInfo/template
+++ b/srcpkgs/perl-CPAN-DistnameInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-DistnameInfo
 version=0.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Meta-Check/template b/srcpkgs/perl-CPAN-Meta-Check/template
index 1bce3bc0b3f..1ae99ce17b3 100644
--- a/srcpkgs/perl-CPAN-Meta-Check/template
+++ b/srcpkgs/perl-CPAN-Meta-Check/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Meta-Check
 version=0.014
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Canary-Stability/template b/srcpkgs/perl-Canary-Stability/template
index 75eb874d31e..2bfd0243908 100644
--- a/srcpkgs/perl-Canary-Stability/template
+++ b/srcpkgs/perl-Canary-Stability/template
@@ -2,7 +2,6 @@
 pkgname=perl-Canary-Stability
 version=2013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Capture-Tiny/template b/srcpkgs/perl-Capture-Tiny/template
index 16ed2ed387e..9ac147eed2b 100644
--- a/srcpkgs/perl-Capture-Tiny/template
+++ b/srcpkgs/perl-Capture-Tiny/template
@@ -13,4 +13,3 @@ license="Apache-2.0"
 homepage="https://metacpan.org/release/Capture-Tiny"
 distfiles="${CPAN_SITE}/Mail/DAGOLDEN/Capture-Tiny-${version}.tar.gz"
 checksum=6c23113e87bad393308c90a207013e505f659274736638d8c79bac9c67cc3e19
-archs=noarch
diff --git a/srcpkgs/perl-Carp-Clan/template b/srcpkgs/perl-Carp-Clan/template
index 59704ed94f5..f2d100f73ec 100644
--- a/srcpkgs/perl-Carp-Clan/template
+++ b/srcpkgs/perl-Carp-Clan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Carp-Clan
 version=6.08
 revision=1
-archs=noarch
 wrksrc="Carp-Clan-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Accessor/template b/srcpkgs/perl-Class-Accessor/template
index 7dede179620..bfe3ad483d7 100644
--- a/srcpkgs/perl-Class-Accessor/template
+++ b/srcpkgs/perl-Class-Accessor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Accessor
 version=0.51
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Data-Inheritable/template b/srcpkgs/perl-Class-Data-Inheritable/template
index a7cc019bdae..8c7a6b8e448 100644
--- a/srcpkgs/perl-Class-Data-Inheritable/template
+++ b/srcpkgs/perl-Class-Data-Inheritable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Data-Inheritable
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Factory-Util/template b/srcpkgs/perl-Class-Factory-Util/template
index 92597b7ddd4..784eabeaa30 100644
--- a/srcpkgs/perl-Class-Factory-Util/template
+++ b/srcpkgs/perl-Class-Factory-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Factory-Util
 version=1.7
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Class-Inspector/template b/srcpkgs/perl-Class-Inspector/template
index cf071445c1d..78abb98fd8c 100644
--- a/srcpkgs/perl-Class-Inspector/template
+++ b/srcpkgs/perl-Class-Inspector/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Inspector
 version=1.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Load/template b/srcpkgs/perl-Class-Load/template
index 03f6e1c1a9a..ee0fe237b76 100644
--- a/srcpkgs/perl-Class-Load/template
+++ b/srcpkgs/perl-Class-Load/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Load
 version=0.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Method-Modifiers/template b/srcpkgs/perl-Class-Method-Modifiers/template
index 533720aa724..a255a8047f0 100644
--- a/srcpkgs/perl-Class-Method-Modifiers/template
+++ b/srcpkgs/perl-Class-Method-Modifiers/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Method-Modifiers
 version=2.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Singleton/template b/srcpkgs/perl-Class-Singleton/template
index d3ae0a38c8b..b0339fdbcc3 100644
--- a/srcpkgs/perl-Class-Singleton/template
+++ b/srcpkgs/perl-Class-Singleton/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Singleton
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Tiny/template b/srcpkgs/perl-Class-Tiny/template
index 6aee90c1149..1eeba58dc3c 100644
--- a/srcpkgs/perl-Class-Tiny/template
+++ b/srcpkgs/perl-Class-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Tiny
 version=1.006
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Clipboard/template b/srcpkgs/perl-Clipboard/template
index 36ce5a991c4..3bee57ee587 100644
--- a/srcpkgs/perl-Clipboard/template
+++ b/srcpkgs/perl-Clipboard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clipboard
 version=0.26
 revision=1
-archs=noarch
 wrksrc="Clipboard-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Clone-Choose/template b/srcpkgs/perl-Clone-Choose/template
index d5264c751eb..cabbf1da02e 100644
--- a/srcpkgs/perl-Clone-Choose/template
+++ b/srcpkgs/perl-Clone-Choose/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-Choose
 version=0.010
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Test-Without-Module"
diff --git a/srcpkgs/perl-Clone-PP/template b/srcpkgs/perl-Clone-PP/template
index 81ea599562d..3898d320b82 100644
--- a/srcpkgs/perl-Clone-PP/template
+++ b/srcpkgs/perl-Clone-PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-PP
 version=1.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-AutoConf/template b/srcpkgs/perl-Config-AutoConf/template
index 254014993da..9774e110628 100644
--- a/srcpkgs/perl-Config-AutoConf/template
+++ b/srcpkgs/perl-Config-AutoConf/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-AutoConf
 version=0.318
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Config-General/template b/srcpkgs/perl-Config-General/template
index 3b3490b88b9..edb0b74dd47 100644
--- a/srcpkgs/perl-Config-General/template
+++ b/srcpkgs/perl-Config-General/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-General
 version=2.63
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-INI-Reader-Ordered/template b/srcpkgs/perl-Config-INI-Reader-Ordered/template
index e733962c6d0..924a10df4d6 100644
--- a/srcpkgs/perl-Config-INI-Reader-Ordered/template
+++ b/srcpkgs/perl-Config-INI-Reader-Ordered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI-Reader-Ordered
 version=0.020
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Config-INI"
diff --git a/srcpkgs/perl-Config-INI/template b/srcpkgs/perl-Config-INI/template
index 5d24f752f44..69bb56fed6f 100644
--- a/srcpkgs/perl-Config-INI/template
+++ b/srcpkgs/perl-Config-INI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI
 version=0.025
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Mixin-Linewise"
diff --git a/srcpkgs/perl-Config-IniFiles/template b/srcpkgs/perl-Config-IniFiles/template
index 30b71ca775e..0b5b7c67fee 100644
--- a/srcpkgs/perl-Config-IniFiles/template
+++ b/srcpkgs/perl-Config-IniFiles/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-IniFiles
 version=3.000003
 revision=1
-archs=noarch
 wrksrc="Config-IniFiles-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Simple/template b/srcpkgs/perl-Config-Simple/template
index dc86662227a..f89baab02a2 100644
--- a/srcpkgs/perl-Config-Simple/template
+++ b/srcpkgs/perl-Config-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Simple
 version=4.59
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Tiny/template b/srcpkgs/perl-Config-Tiny/template
index e96ba7aeab9..817b36e7fa8 100644
--- a/srcpkgs/perl-Config-Tiny/template
+++ b/srcpkgs/perl-Config-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Tiny
 version=2.24
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Convert-BinHex/template b/srcpkgs/perl-Convert-BinHex/template
index d8ead1e579d..a3d5cee38b8 100644
--- a/srcpkgs/perl-Convert-BinHex/template
+++ b/srcpkgs/perl-Convert-BinHex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Convert-BinHex
 version=1.125
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Cookie-Baker/template b/srcpkgs/perl-Cookie-Baker/template
index ecb7b80e30c..97380da327c 100644
--- a/srcpkgs/perl-Cookie-Baker/template
+++ b/srcpkgs/perl-Cookie-Baker/template
@@ -2,7 +2,6 @@
 pkgname=perl-Cookie-Baker
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Crypt-Blowfish_PP/template b/srcpkgs/perl-Crypt-Blowfish_PP/template
index e2e7680ae52..25e05ae03fb 100644
--- a/srcpkgs/perl-Crypt-Blowfish_PP/template
+++ b/srcpkgs/perl-Crypt-Blowfish_PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-Blowfish_PP
 version=1.12
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index f09b1dc8ba3..9ca4812c589 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-CBC
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DES_EDE3/template b/srcpkgs/perl-Crypt-DES_EDE3/template
index e4a7abc00f3..55c7d689554 100644
--- a/srcpkgs/perl-Crypt-DES_EDE3/template
+++ b/srcpkgs/perl-Crypt-DES_EDE3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DES_EDE3
 version=0.01
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DH/template b/srcpkgs/perl-Crypt-DH/template
index 07c4dc70d23..ccb82e6d101 100644
--- a/srcpkgs/perl-Crypt-DH/template
+++ b/srcpkgs/perl-Crypt-DH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DH
 version=0.07
 revision=9
-archs=noarch
 wrksrc="Crypt-DH-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Math-BigInt-GMP perl-Archive-Zip"
diff --git a/srcpkgs/perl-Crypt-OpenSSL-Guess/template b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
index 8c207e50fa0..4c9691ec99c 100644
--- a/srcpkgs/perl-Crypt-OpenSSL-Guess/template
+++ b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-OpenSSL-Guess
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-PasswdMD5/template b/srcpkgs/perl-Crypt-PasswdMD5/template
index a579748e61d..7d1fccac254 100644
--- a/srcpkgs/perl-Crypt-PasswdMD5/template
+++ b/srcpkgs/perl-Crypt-PasswdMD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-PasswdMD5
 version=1.40
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-RC4/template b/srcpkgs/perl-Crypt-RC4/template
index bb7bb8931ec..04bb549019d 100644
--- a/srcpkgs/perl-Crypt-RC4/template
+++ b/srcpkgs/perl-Crypt-RC4/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-RC4
 version=2.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Danga-Socket/template b/srcpkgs/perl-Danga-Socket/template
index 049159b68a7..6ebc84f42e8 100644
--- a/srcpkgs/perl-Danga-Socket/template
+++ b/srcpkgs/perl-Danga-Socket/template
@@ -2,7 +2,6 @@
 pkgname=perl-Danga-Socket
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Compare/template b/srcpkgs/perl-Data-Compare/template
index c5fb3661f94..b7b42a7c299 100644
--- a/srcpkgs/perl-Data-Compare/template
+++ b/srcpkgs/perl-Data-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Compare
 version=1.27
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-Find-Rule perl-Clone"
diff --git a/srcpkgs/perl-Data-Dump/template b/srcpkgs/perl-Data-Dump/template
index 6ec79b62440..2d1cfd4901a 100644
--- a/srcpkgs/perl-Data-Dump/template
+++ b/srcpkgs/perl-Data-Dump/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dump
 version=1.23
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Dx/template b/srcpkgs/perl-Data-Dx/template
index ea44d272f58..4ad2bec1cc2 100644
--- a/srcpkgs/perl-Data-Dx/template
+++ b/srcpkgs/perl-Data-Dx/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dx
 version=0.000010
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Data-Dump perl-Keyword-Declare"
diff --git a/srcpkgs/perl-Data-OptList/template b/srcpkgs/perl-Data-OptList/template
index 7ea35f387b1..15c14aaf4a8 100644
--- a/srcpkgs/perl-Data-OptList/template
+++ b/srcpkgs/perl-Data-OptList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-OptList
 version=0.110
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Section-Simple/template b/srcpkgs/perl-Data-Section-Simple/template
index 5148ad90e52..5ac37007280 100644
--- a/srcpkgs/perl-Data-Section-Simple/template
+++ b/srcpkgs/perl-Data-Section-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Section-Simple
 version=0.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Uniqid/template b/srcpkgs/perl-Data-Uniqid/template
index 4005118cf6b..fcfa5baecc9 100644
--- a/srcpkgs/perl-Data-Uniqid/template
+++ b/srcpkgs/perl-Data-Uniqid/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Uniqid
 version=0.12
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Validate-IP/template b/srcpkgs/perl-Data-Validate-IP/template
index 5e0fb95de5a..2029d98c4c2 100644
--- a/srcpkgs/perl-Data-Validate-IP/template
+++ b/srcpkgs/perl-Data-Validate-IP/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/Data-Validate-IP"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Data/Data-Validate-IP-${version}.tar.gz"
 checksum=e1aa92235dcb9c6fd9b6c8cda184d1af73537cc77f4f83a0f88207a8bfbfb7d6
-archs=noarch
diff --git a/srcpkgs/perl-Date-Calc/template b/srcpkgs/perl-Date-Calc/template
index 3708c34ce4a..9cf7b813852 100644
--- a/srcpkgs/perl-Date-Calc/template
+++ b/srcpkgs/perl-Date-Calc/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl perl-Carp-Clan perl-Bit-Vector"
 depends="${makedepends}"
-archs=noarch
 short_desc="Date::Calc - Gregorian calendar date calculations"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 homepage="https://metacpan.org/release/Date-Calc"
diff --git a/srcpkgs/perl-Date-Manip/template b/srcpkgs/perl-Date-Manip/template
index 1474cd7aa17..2e19d7bee53 100644
--- a/srcpkgs/perl-Date-Manip/template
+++ b/srcpkgs/perl-Date-Manip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Date-Manip
 version=6.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Calendar-Julian/template b/srcpkgs/perl-DateTime-Calendar-Julian/template
index caf881a51e4..160ee75faf6 100644
--- a/srcpkgs/perl-DateTime-Calendar-Julian/template
+++ b/srcpkgs/perl-DateTime-Calendar-Julian/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Calendar-Julian
 version=0.102
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime"
diff --git a/srcpkgs/perl-DateTime-Format-Builder/template b/srcpkgs/perl-DateTime-Format-Builder/template
index 5ebef529fed..20fadc3ae7b 100644
--- a/srcpkgs/perl-DateTime-Format-Builder/template
+++ b/srcpkgs/perl-DateTime-Format-Builder/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Builder
 version=0.82
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime perl-Class-Factory-Util perl-DateTime-Format-Strptime perl-Params-Validate"
diff --git a/srcpkgs/perl-DateTime-Format-Strptime/template b/srcpkgs/perl-DateTime-Format-Strptime/template
index 4d4dd839035..0aca7d6b237 100644
--- a/srcpkgs/perl-DateTime-Format-Strptime/template
+++ b/srcpkgs/perl-DateTime-Format-Strptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Strptime
 version=1.77
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Locale/template b/srcpkgs/perl-DateTime-Locale/template
index 1c24fdaecce..6b1208e781b 100644
--- a/srcpkgs/perl-DateTime-Locale/template
+++ b/srcpkgs/perl-DateTime-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Locale
 version=1.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-DateTime-TimeZone/template b/srcpkgs/perl-DateTime-TimeZone/template
index b9c9149fc87..a681fa5c7bd 100644
--- a/srcpkgs/perl-DateTime-TimeZone/template
+++ b/srcpkgs/perl-DateTime-TimeZone/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-TimeZone
 version=2.39
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-CheckLib/template b/srcpkgs/perl-Devel-CheckLib/template
index be4e79419aa..fe9bd2398bc 100644
--- a/srcpkgs/perl-Devel-CheckLib/template
+++ b/srcpkgs/perl-Devel-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-CheckLib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="Devel-CheckLib-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-CaptureOutput"
diff --git a/srcpkgs/perl-Devel-GlobalDestruction/template b/srcpkgs/perl-Devel-GlobalDestruction/template
index 538d06d9e9f..5d971b90606 100644
--- a/srcpkgs/perl-Devel-GlobalDestruction/template
+++ b/srcpkgs/perl-Devel-GlobalDestruction/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-GlobalDestruction
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Sub-Exporter-Progressive"
diff --git a/srcpkgs/perl-Devel-StackTrace-AsHTML/template b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
index 446496001c7..42a8a6102de 100644
--- a/srcpkgs/perl-Devel-StackTrace-AsHTML/template
+++ b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Apache-LogFormat-Compiler"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Devel/Devel-StackTrace-AsHTML-${version}.tar.gz"
 checksum=6283dbe2197e2f20009cc4b449997742169cdd951bfc44cbc6e62c2a962d3147
-archs=noarch
diff --git a/srcpkgs/perl-Devel-StackTrace/template b/srcpkgs/perl-Devel-StackTrace/template
index 45972e75631..318568b9c3f 100644
--- a/srcpkgs/perl-Devel-StackTrace/template
+++ b/srcpkgs/perl-Devel-StackTrace/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-StackTrace
 version=2.04
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-Symdump/template b/srcpkgs/perl-Devel-Symdump/template
index d4823034b1f..d63c6e5a9d2 100644
--- a/srcpkgs/perl-Devel-Symdump/template
+++ b/srcpkgs/perl-Devel-Symdump/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Devel-Symdump"
 license="GPL-1, Artistic"
 distfiles="$CPAN_SITE/Devel/Devel-Symdump-${version}.tar.gz"
 checksum=826f81a107f5592a2516766ed43beb47e10cc83edc9ea48090b02a36040776c0
-archs=noarch
diff --git a/srcpkgs/perl-Digest-HMAC/template b/srcpkgs/perl-Digest-HMAC/template
index 5ece091d408..e47d13022ed 100644
--- a/srcpkgs/perl-Digest-HMAC/template
+++ b/srcpkgs/perl-Digest-HMAC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-HMAC
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Digest-Perl-MD5/template b/srcpkgs/perl-Digest-Perl-MD5/template
index 4ea78427ea5..0785fb4d25a 100644
--- a/srcpkgs/perl-Digest-Perl-MD5/template
+++ b/srcpkgs/perl-Digest-Perl-MD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-Perl-MD5
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Dist-CheckConflicts/template b/srcpkgs/perl-Dist-CheckConflicts/template
index 8c1f653ca03..0ae6651298f 100644
--- a/srcpkgs/perl-Dist-CheckConflicts/template
+++ b/srcpkgs/perl-Dist-CheckConflicts/template
@@ -2,7 +2,6 @@
 pkgname=perl-Dist-CheckConflicts
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Date-Format/template b/srcpkgs/perl-Email-Date-Format/template
index 57781d72c02..aa4db10ad48 100644
--- a/srcpkgs/perl-Email-Date-Format/template
+++ b/srcpkgs/perl-Email-Date-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Date-Format
 version=1.005
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-FolderType/template b/srcpkgs/perl-Email-FolderType/template
index a538f294158..3a57b288169 100644
--- a/srcpkgs/perl-Email-FolderType/template
+++ b/srcpkgs/perl-Email-FolderType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-FolderType
 version=0.814
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-LocalDelivery/template b/srcpkgs/perl-Email-LocalDelivery/template
index 3b2ed70646a..19d61c3f06f 100644
--- a/srcpkgs/perl-Email-LocalDelivery/template
+++ b/srcpkgs/perl-Email-LocalDelivery/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-LocalDelivery
 version=1.200
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-ContentType/template b/srcpkgs/perl-Email-MIME-ContentType/template
index 3131fafdbb4..17108543bde 100644
--- a/srcpkgs/perl-Email-MIME-ContentType/template
+++ b/srcpkgs/perl-Email-MIME-ContentType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-ContentType
 version=1.024
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-Encodings/template b/srcpkgs/perl-Email-MIME-Encodings/template
index ba28cb0ac78..1141dcb43e3 100644
--- a/srcpkgs/perl-Email-MIME-Encodings/template
+++ b/srcpkgs/perl-Email-MIME-Encodings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-Encodings
 version=1.315
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME/template b/srcpkgs/perl-Email-MIME/template
index 55a6b438578..32573aa6f9b 100644
--- a/srcpkgs/perl-Email-MIME/template
+++ b/srcpkgs/perl-Email-MIME/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME
 version=1.949
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MessageID/template b/srcpkgs/perl-Email-MessageID/template
index 5b52585b5f9..729503da15e 100644
--- a/srcpkgs/perl-Email-MessageID/template
+++ b/srcpkgs/perl-Email-MessageID/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MessageID
 version=1.406
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Simple/template b/srcpkgs/perl-Email-Simple/template
index 57ccc513dbe..f27eec6ebad 100644
--- a/srcpkgs/perl-Email-Simple/template
+++ b/srcpkgs/perl-Email-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Simple
 version=2.216
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Encode-Locale/template b/srcpkgs/perl-Encode-Locale/template
index 53e09d8a2e7..20371b4daf7 100644
--- a/srcpkgs/perl-Encode-Locale/template
+++ b/srcpkgs/perl-Encode-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-Encode-Locale
 version=1.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Eval-Closure/template b/srcpkgs/perl-Eval-Closure/template
index c3301afd97f..0a3a9ba40e0 100644
--- a/srcpkgs/perl-Eval-Closure/template
+++ b/srcpkgs/perl-Eval-Closure/template
@@ -2,7 +2,6 @@
 pkgname=perl-Eval-Closure
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exception-Class/template b/srcpkgs/perl-Exception-Class/template
index 3d0f37bf503..91280322f46 100644
--- a/srcpkgs/perl-Exception-Class/template
+++ b/srcpkgs/perl-Exception-Class/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl-Class-Data-Inheritable perl-Devel-StackTrace"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Allows you to declare real exception classes'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Exception-Class"
diff --git a/srcpkgs/perl-Expect/template b/srcpkgs/perl-Expect/template
index 6ec5f668697..8832c5148ef 100644
--- a/srcpkgs/perl-Expect/template
+++ b/srcpkgs/perl-Expect/template
@@ -2,7 +2,6 @@
 pkgname=perl-Expect
 version=1.35
 revision=1
-archs=noarch
 wrksrc="Expect-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exporter-Tiny/template b/srcpkgs/perl-Exporter-Tiny/template
index c1d2a7c3f9b..091e19bf774 100644
--- a/srcpkgs/perl-Exporter-Tiny/template
+++ b/srcpkgs/perl-Exporter-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Exporter-Tiny
 version=1.002002
 revision=1
-archs=noarch
 wrksrc="Exporter-Tiny-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Config/template b/srcpkgs/perl-ExtUtils-Config/template
index 5951b92a159..6fcc7265c85 100644
--- a/srcpkgs/perl-ExtUtils-Config/template
+++ b/srcpkgs/perl-ExtUtils-Config/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Config
 version=0.008
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-CppGuess/template b/srcpkgs/perl-ExtUtils-CppGuess/template
index df071fc6b85..b1cdbf48c6e 100644
--- a/srcpkgs/perl-ExtUtils-CppGuess/template
+++ b/srcpkgs/perl-ExtUtils-CppGuess/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-CppGuess
 version=0.21
 revision=1
-archs=noarch
 wrksrc="ExtUtils-CppGuess-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Capture-Tiny perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-Depends/template b/srcpkgs/perl-ExtUtils-Depends/template
index 80ac7515fa1..6b6c52e1d5a 100644
--- a/srcpkgs/perl-ExtUtils-Depends/template
+++ b/srcpkgs/perl-ExtUtils-Depends/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Depends
 version=0.8000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Helpers/template b/srcpkgs/perl-ExtUtils-Helpers/template
index 5b95d1cdeed..7c44bcad431 100644
--- a/srcpkgs/perl-ExtUtils-Helpers/template
+++ b/srcpkgs/perl-ExtUtils-Helpers/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Helpers
 version=0.026
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-InstallPaths/template b/srcpkgs/perl-ExtUtils-InstallPaths/template
index 168a4104de6..f9408e37b16 100644
--- a/srcpkgs/perl-ExtUtils-InstallPaths/template
+++ b/srcpkgs/perl-ExtUtils-InstallPaths/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-InstallPaths
 version=0.012
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-LibBuilder/template b/srcpkgs/perl-ExtUtils-LibBuilder/template
index c2c582b0aa2..b3a7082d078 100644
--- a/srcpkgs/perl-ExtUtils-LibBuilder/template
+++ b/srcpkgs/perl-ExtUtils-LibBuilder/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-LibBuilder
 version=0.08
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
index 5a42f6710d4..eb51966421e 100644
--- a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
+++ b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-MakeMaker-CPANfile
 version=0.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-PkgConfig/template b/srcpkgs/perl-ExtUtils-PkgConfig/template
index 72e96b548e5..7b1910322d9 100644
--- a/srcpkgs/perl-ExtUtils-PkgConfig/template
+++ b/srcpkgs/perl-ExtUtils-PkgConfig/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl pkg-config"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="Simplistic perl interface to pkg-config"
 homepage="https://metacpan.org/release/ExtUtils-PkgConfig"
 license="LGPL-2.1"
diff --git a/srcpkgs/perl-ExtUtils-XSpp/template b/srcpkgs/perl-ExtUtils-XSpp/template
index 708071a8279..29bf5791813 100644
--- a/srcpkgs/perl-ExtUtils-XSpp/template
+++ b/srcpkgs/perl-ExtUtils-XSpp/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-XSpp
 version=0.18
 revision=1
-archs=noarch
 wrksrc="ExtUtils-XSpp-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Base perl-Test-Differences"
diff --git a/srcpkgs/perl-FFI-CheckLib/template b/srcpkgs/perl-FFI-CheckLib/template
index 3b740cdacf3..cb88b1082d7 100644
--- a/srcpkgs/perl-FFI-CheckLib/template
+++ b/srcpkgs/perl-FFI-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-FFI-CheckLib
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-BaseDir/template b/srcpkgs/perl-File-BaseDir/template
index ada966fc66f..90b32ebe6e5 100644
--- a/srcpkgs/perl-File-BaseDir/template
+++ b/srcpkgs/perl-File-BaseDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-BaseDir
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Copy-Recursive/template b/srcpkgs/perl-File-Copy-Recursive/template
index 02d38a02582..a62a14f1614 100644
--- a/srcpkgs/perl-File-Copy-Recursive/template
+++ b/srcpkgs/perl-File-Copy-Recursive/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Copy-Recursive
 version=0.45
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-DesktopEntry/template b/srcpkgs/perl-File-DesktopEntry/template
index 5ce93ef5ff1..3b0baa47c3f 100644
--- a/srcpkgs/perl-File-DesktopEntry/template
+++ b/srcpkgs/perl-File-DesktopEntry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-DesktopEntry
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Find-Rule/template b/srcpkgs/perl-File-Find-Rule/template
index aecdb1ab8d5..82f01d58436 100644
--- a/srcpkgs/perl-File-Find-Rule/template
+++ b/srcpkgs/perl-File-Find-Rule/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Find-Rule
 version=0.34
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Glob perl-Number-Compare"
diff --git a/srcpkgs/perl-File-Flock-Retry/template b/srcpkgs/perl-File-Flock-Retry/template
index 0d7d912386a..c89b100a27f 100644
--- a/srcpkgs/perl-File-Flock-Retry/template
+++ b/srcpkgs/perl-File-Flock-Retry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Flock-Retry
 version=0.631
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-HomeDir/template b/srcpkgs/perl-File-HomeDir/template
index d318404f3cb..bb719e466f9 100644
--- a/srcpkgs/perl-File-HomeDir/template
+++ b/srcpkgs/perl-File-HomeDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-HomeDir
 version=1.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Which"
diff --git a/srcpkgs/perl-File-KeePass/template b/srcpkgs/perl-File-KeePass/template
index 35ac51656ea..2d8b536cfdd 100644
--- a/srcpkgs/perl-File-KeePass/template
+++ b/srcpkgs/perl-File-KeePass/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-KeePass
 version=2.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Listing/template b/srcpkgs/perl-File-Listing/template
index 88e1782c01a..431be101ddf 100644
--- a/srcpkgs/perl-File-Listing/template
+++ b/srcpkgs/perl-File-Listing/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Listing
 version=6.04
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-MimeInfo/template b/srcpkgs/perl-File-MimeInfo/template
index c9286a3e2be..a35a097b9fa 100644
--- a/srcpkgs/perl-File-MimeInfo/template
+++ b/srcpkgs/perl-File-MimeInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-MimeInfo
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Next/template b/srcpkgs/perl-File-Next/template
index ad618b321f0..10f79dfeea8 100644
--- a/srcpkgs/perl-File-Next/template
+++ b/srcpkgs/perl-File-Next/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Next
 version=1.18
 revision=1
-archs=noarch
 wrksrc="File-Next-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Path-Expand/template b/srcpkgs/perl-File-Path-Expand/template
index a1160ae2bd0..330f3255553 100644
--- a/srcpkgs/perl-File-Path-Expand/template
+++ b/srcpkgs/perl-File-Path-Expand/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Path-Expand
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Remove/template b/srcpkgs/perl-File-Remove/template
index bf19bbe94c6..1d97e011026 100644
--- a/srcpkgs/perl-File-Remove/template
+++ b/srcpkgs/perl-File-Remove/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Remove
 version=1.58
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Rename/template b/srcpkgs/perl-File-Rename/template
index 5c198686de0..fd7c1000574 100644
--- a/srcpkgs/perl-File-Rename/template
+++ b/srcpkgs/perl-File-Rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Rename
 version=1.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-ShareDir-Install/template b/srcpkgs/perl-File-ShareDir-Install/template
index 208a8575079..63c63c755e3 100644
--- a/srcpkgs/perl-File-ShareDir-Install/template
+++ b/srcpkgs/perl-File-ShareDir-Install/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="File::ShareDir::Install - Install shared files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/File-ShareDir-Install"
diff --git a/srcpkgs/perl-File-ShareDir/template b/srcpkgs/perl-File-ShareDir/template
index beb7e228afc..6c453f01997 100644
--- a/srcpkgs/perl-File-ShareDir/template
+++ b/srcpkgs/perl-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-ShareDir
 version=1.116
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp-Tiny/template b/srcpkgs/perl-File-Slurp-Tiny/template
index 8a9d8804674..a1dbc242b72 100644
--- a/srcpkgs/perl-File-Slurp-Tiny/template
+++ b/srcpkgs/perl-File-Slurp-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp-Tiny
 version=0.004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp/template b/srcpkgs/perl-File-Slurp/template
index e80907b93f6..6d6eaf13023 100644
--- a/srcpkgs/perl-File-Slurp/template
+++ b/srcpkgs/perl-File-Slurp/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp
 version=9999.30
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurper/template b/srcpkgs/perl-File-Slurper/template
index 4d863f45594..abad103efaf 100644
--- a/srcpkgs/perl-File-Slurper/template
+++ b/srcpkgs/perl-File-Slurper/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurper
 version=0.012
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Which/template b/srcpkgs/perl-File-Which/template
index 3cf781fc48c..dda22972729 100644
--- a/srcpkgs/perl-File-Which/template
+++ b/srcpkgs/perl-File-Which/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Which
 version=1.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Write-Rotate/template b/srcpkgs/perl-File-Write-Rotate/template
index b0cce6f7c18..6f8e780d6f6 100644
--- a/srcpkgs/perl-File-Write-Rotate/template
+++ b/srcpkgs/perl-File-Write-Rotate/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Write-Rotate
 version=0.321
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-chdir/template b/srcpkgs/perl-File-chdir/template
index af6a761eaf2..6a37200eda4 100644
--- a/srcpkgs/perl-File-chdir/template
+++ b/srcpkgs/perl-File-chdir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-chdir
 version=0.1011
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-pushd/template b/srcpkgs/perl-File-pushd/template
index 1ff8d169a2f..2d94f16b604 100644
--- a/srcpkgs/perl-File-pushd/template
+++ b/srcpkgs/perl-File-pushd/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-pushd
 version=1.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Filesys-Notify-Simple/template b/srcpkgs/perl-Filesys-Notify-Simple/template
index 63162d61a23..4ec2992d5bf 100644
--- a/srcpkgs/perl-Filesys-Notify-Simple/template
+++ b/srcpkgs/perl-Filesys-Notify-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Filesys-Notify-Simple
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Font-TTF/template b/srcpkgs/perl-Font-TTF/template
index 16637e92dbc..9e521a86ca1 100644
--- a/srcpkgs/perl-Font-TTF/template
+++ b/srcpkgs/perl-Font-TTF/template
@@ -2,7 +2,6 @@
 pkgname=perl-Font-TTF
 version=1.06
 revision=3
-archs=noarch
 wrksrc="Font-TTF-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-String"
diff --git a/srcpkgs/perl-Getopt-Compact/template b/srcpkgs/perl-Getopt-Compact/template
index 4fd53e9b485..693125559ff 100644
--- a/srcpkgs/perl-Getopt-Compact/template
+++ b/srcpkgs/perl-Getopt-Compact/template
@@ -2,7 +2,6 @@
 pkgname=perl-Getopt-Compact
 version=0.04
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-GooCanvas2/template b/srcpkgs/perl-GooCanvas2/template
index c1236ce2d94..407993e27f5 100644
--- a/srcpkgs/perl-GooCanvas2/template
+++ b/srcpkgs/perl-GooCanvas2/template
@@ -2,7 +2,6 @@
 pkgname=perl-GooCanvas2
 version=0.06
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Graphics-ColorUtils/template b/srcpkgs/perl-Graphics-ColorUtils/template
index eaa71105c53..d11ed93971f 100644
--- a/srcpkgs/perl-Graphics-ColorUtils/template
+++ b/srcpkgs/perl-Graphics-ColorUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-Graphics-ColorUtils
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk2-Ex-Simple-List/template b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
index e07199fd18a..6399c0d906f 100644
--- a/srcpkgs/perl-Gtk2-Ex-Simple-List/template
+++ b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk2-Ex-Simple-List
 version=0.50
 revision=2
-archs=noarch
 wrksrc="Gtk2-Ex-Simple-List-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3-SimpleList/template b/srcpkgs/perl-Gtk3-SimpleList/template
index 5e647b5a737..78e57b052c3 100644
--- a/srcpkgs/perl-Gtk3-SimpleList/template
+++ b/srcpkgs/perl-Gtk3-SimpleList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3-SimpleList
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3/template b/srcpkgs/perl-Gtk3/template
index d1ab6cccf8c..b5f50a2f058 100644
--- a/srcpkgs/perl-Gtk3/template
+++ b/srcpkgs/perl-Gtk3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3
 version=0.037
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Form/template b/srcpkgs/perl-HTML-Form/template
index 0eeb276979c..bf4020cfe3f 100644
--- a/srcpkgs/perl-HTML-Form/template
+++ b/srcpkgs/perl-HTML-Form/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Form
 version=6.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tagset/template b/srcpkgs/perl-HTML-Tagset/template
index 5525e6d93ad..3b8ed139843 100644
--- a/srcpkgs/perl-HTML-Tagset/template
+++ b/srcpkgs/perl-HTML-Tagset/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tagset
 version=3.20
 revision=7
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tree/template b/srcpkgs/perl-HTML-Tree/template
index b77bf5c83a6..328478a1b15 100644
--- a/srcpkgs/perl-HTML-Tree/template
+++ b/srcpkgs/perl-HTML-Tree/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tree
 version=5.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-HTTP-Cookies/template b/srcpkgs/perl-HTTP-Cookies/template
index b3bf18556b3..06e37f0719e 100644
--- a/srcpkgs/perl-HTTP-Cookies/template
+++ b/srcpkgs/perl-HTTP-Cookies/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Cookies
 version=6.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Daemon/template b/srcpkgs/perl-HTTP-Daemon/template
index 5ca067d49d5..ba5d3f2190a 100644
--- a/srcpkgs/perl-HTTP-Daemon/template
+++ b/srcpkgs/perl-HTTP-Daemon/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Daemon
 version=6.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Date/template b/srcpkgs/perl-HTTP-Date/template
index c97750feba0..c193712ee37 100644
--- a/srcpkgs/perl-HTTP-Date/template
+++ b/srcpkgs/perl-HTTP-Date/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Date
 version=6.05
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Entity-Parser/template b/srcpkgs/perl-HTTP-Entity-Parser/template
index 6fcada68323..8886aa27d4b 100644
--- a/srcpkgs/perl-HTTP-Entity-Parser/template
+++ b/srcpkgs/perl-HTTP-Entity-Parser/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Entity-Parser
 version=0.24
 revision=1
-archs=noarch
 wrksrc="HTTP-Entity-Parser-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Headers-Fast/template b/srcpkgs/perl-HTTP-Headers-Fast/template
index 2f263d67329..69876b00abb 100644
--- a/srcpkgs/perl-HTTP-Headers-Fast/template
+++ b/srcpkgs/perl-HTTP-Headers-Fast/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Headers-Fast
 version=0.22
 revision=1
-archs=noarch
 wrksrc="HTTP-Headers-Fast-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Message/template b/srcpkgs/perl-HTTP-Message/template
index 3fb6cd73ecf..d1fa295004e 100644
--- a/srcpkgs/perl-HTTP-Message/template
+++ b/srcpkgs/perl-HTTP-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Message
 version=6.24
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-MultiPartParser/template b/srcpkgs/perl-HTTP-MultiPartParser/template
index 91c07646740..8f0a5ca5c1a 100644
--- a/srcpkgs/perl-HTTP-MultiPartParser/template
+++ b/srcpkgs/perl-HTTP-MultiPartParser/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/HTTP-MultiPartParser"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/HTTP/HTTP-MultiPartParser-${version}.tar.gz"
 checksum=5eddda159f54d16f868e032440ac2b024e55aac48931871b62627f1a16d00b12
-archs=noarch
diff --git a/srcpkgs/perl-HTTP-Negotiate/template b/srcpkgs/perl-HTTP-Negotiate/template
index 7cdc61fca6c..3fa8d2c8373 100644
--- a/srcpkgs/perl-HTTP-Negotiate/template
+++ b/srcpkgs/perl-HTTP-Negotiate/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Negotiate
 version=6.01
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Response-Encoding/template b/srcpkgs/perl-HTTP-Response-Encoding/template
index 8f2b5d0a854..c21570e1a36 100644
--- a/srcpkgs/perl-HTTP-Response-Encoding/template
+++ b/srcpkgs/perl-HTTP-Response-Encoding/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Response-Encoding
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Server-Simple/template b/srcpkgs/perl-HTTP-Server-Simple/template
index 732f2a05326..a2a50984056 100644
--- a/srcpkgs/perl-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Server-Simple
 version=0.52
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Tinyish/template b/srcpkgs/perl-HTTP-Tinyish/template
index 065830e5d50..fb574fefcca 100644
--- a/srcpkgs/perl-HTTP-Tinyish/template
+++ b/srcpkgs/perl-HTTP-Tinyish/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Tinyish
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-Merge/template b/srcpkgs/perl-Hash-Merge/template
index 8b01ec990ce..935f53319b2 100644
--- a/srcpkgs/perl-Hash-Merge/template
+++ b/srcpkgs/perl-Hash-Merge/template
@@ -2,7 +2,6 @@
 pkgname=perl-Hash-Merge
 version=0.302
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-MultiValue/template b/srcpkgs/perl-Hash-MultiValue/template
index d9be3ac82ab..8624237f1ef 100644
--- a/srcpkgs/perl-Hash-MultiValue/template
+++ b/srcpkgs/perl-Hash-MultiValue/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Hash-MultiValue"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Hash/Hash-MultiValue-${version}.tar.gz"
 checksum=66181df7aa68e2786faf6895c88b18b95c800a8e4e6fb4c07fd176410a3c73f4
-archs=noarch
diff --git a/srcpkgs/perl-IO-CaptureOutput/template b/srcpkgs/perl-IO-CaptureOutput/template
index e2d5f360b38..1ad727f0916 100644
--- a/srcpkgs/perl-IO-CaptureOutput/template
+++ b/srcpkgs/perl-IO-CaptureOutput/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-CaptureOutput
 version=1.1105
 revision=1
-archs=noarch
 wrksrc="IO-CaptureOutput-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-HTML/template b/srcpkgs/perl-IO-HTML/template
index 7fb1ca71ede..2566ea52211 100644
--- a/srcpkgs/perl-IO-HTML/template
+++ b/srcpkgs/perl-IO-HTML/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-HTML
 version=1.001
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-SessionData/template b/srcpkgs/perl-IO-SessionData/template
index 04b7108a4df..0c0f2cefb7c 100644
--- a/srcpkgs/perl-IO-SessionData/template
+++ b/srcpkgs/perl-IO-SessionData/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-SessionData
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-INET6/template b/srcpkgs/perl-IO-Socket-INET6/template
index c94145ca85a..f67537b5b17 100644
--- a/srcpkgs/perl-IO-Socket-INET6/template
+++ b/srcpkgs/perl-IO-Socket-INET6/template
@@ -8,7 +8,6 @@ hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-Socket6"
 checkdepends="perl-Test-Pod perl-Test-Pod-Coverage"
 depends="${makedepends}"
-archs=noarch
 short_desc="IO::Socket::INET6 - Object interface for AF_INET/AF_INET6 domain sockets"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/IO-Socket-INET6"
diff --git a/srcpkgs/perl-IO-Socket-SSL/template b/srcpkgs/perl-IO-Socket-SSL/template
index 70463405a2a..21792ff27ac 100644
--- a/srcpkgs/perl-IO-Socket-SSL/template
+++ b/srcpkgs/perl-IO-Socket-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-SSL
 version=2.068
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-Socks/template b/srcpkgs/perl-IO-Socket-Socks/template
index d37fbcfc55a..8a970ad4a2e 100644
--- a/srcpkgs/perl-IO-Socket-Socks/template
+++ b/srcpkgs/perl-IO-Socket-Socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-Socks
 version=0.74
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-String/template b/srcpkgs/perl-IO-String/template
index 7c0735b6b81..4732a8ee56e 100644
--- a/srcpkgs/perl-IO-String/template
+++ b/srcpkgs/perl-IO-String/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-String
 version=1.08
 revision=2
-archs=noarch
 wrksrc="IO-String-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Stty/template b/srcpkgs/perl-IO-Stty/template
index a6fdf1c2fe6..cc00d3bc064 100644
--- a/srcpkgs/perl-IO-Stty/template
+++ b/srcpkgs/perl-IO-Stty/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Stty
 version=0.04
 revision=1
-archs=noarch
 wrksrc="IO-Stty-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-stringy/template b/srcpkgs/perl-IO-stringy/template
index 411a8374bcf..ccc92e36fc0 100644
--- a/srcpkgs/perl-IO-stringy/template
+++ b/srcpkgs/perl-IO-stringy/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-stringy
 version=2.113
 revision=1
-archs=noarch
 wrksrc="IO-Stringy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run/template b/srcpkgs/perl-IPC-Run/template
index ceb5b93652b..dccd5ebcbbb 100644
--- a/srcpkgs/perl-IPC-Run/template
+++ b/srcpkgs/perl-IPC-Run/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run
 version=20200505.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run3/template b/srcpkgs/perl-IPC-Run3/template
index 25155d2b8f3..068ec8b309f 100644
--- a/srcpkgs/perl-IPC-Run3/template
+++ b/srcpkgs/perl-IPC-Run3/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run3
 version=0.048
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-System-Simple/template b/srcpkgs/perl-IPC-System-Simple/template
index 29fe8c39e4b..a022bad07c9 100644
--- a/srcpkgs/perl-IPC-System-Simple/template
+++ b/srcpkgs/perl-IPC-System-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-System-Simple
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Importer/template b/srcpkgs/perl-Importer/template
index 455ee533b1b..2d848054f57 100644
--- a/srcpkgs/perl-Importer/template
+++ b/srcpkgs/perl-Importer/template
@@ -2,7 +2,6 @@
 pkgname=perl-Importer
 version=0.025
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Inline-C/template b/srcpkgs/perl-Inline-C/template
index 1ed461f4ffa..a38df73e0c3 100644
--- a/srcpkgs/perl-Inline-C/template
+++ b/srcpkgs/perl-Inline-C/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline-C
 version=0.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Inline/template b/srcpkgs/perl-Inline/template
index 60849405c13..c8099adbad9 100644
--- a/srcpkgs/perl-Inline/template
+++ b/srcpkgs/perl-Inline/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline
 version=0.86
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON-MaybeXS/template b/srcpkgs/perl-JSON-MaybeXS/template
index 5bde5e5d988..88bf28d7481 100644
--- a/srcpkgs/perl-JSON-MaybeXS/template
+++ b/srcpkgs/perl-JSON-MaybeXS/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON-MaybeXS
 version=1.004002
 revision=1
-archs=noarch
 wrksrc="JSON-MaybeXS-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON/template b/srcpkgs/perl-JSON/template
index 2d3962b3835..a2386e14e2a 100644
--- a/srcpkgs/perl-JSON/template
+++ b/srcpkgs/perl-JSON/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON
 version=4.02
 revision=1
-archs=noarch
 wrksrc="JSON-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Keyword-Declare/template b/srcpkgs/perl-Keyword-Declare/template
index 67afa378530..54b839a4316 100644
--- a/srcpkgs/perl-Keyword-Declare/template
+++ b/srcpkgs/perl-Keyword-Declare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Declare
 version=0.001017
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope perl-Keyword-Simple perl-PPR"
diff --git a/srcpkgs/perl-Keyword-Simple/template b/srcpkgs/perl-Keyword-Simple/template
index abc491b1a2a..16b0a062a2b 100644
--- a/srcpkgs/perl-Keyword-Simple/template
+++ b/srcpkgs/perl-Keyword-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Simple
 version=0.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-MediaTypes/template b/srcpkgs/perl-LWP-MediaTypes/template
index bdb32bcf9ee..a861f096acd 100644
--- a/srcpkgs/perl-LWP-MediaTypes/template
+++ b/srcpkgs/perl-LWP-MediaTypes/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-MediaTypes
 version=6.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-https/template b/srcpkgs/perl-LWP-Protocol-https/template
index a78137a3199..5b64992fb00 100644
--- a/srcpkgs/perl-LWP-Protocol-https/template
+++ b/srcpkgs/perl-LWP-Protocol-https/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-https
 version=6.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-socks/template b/srcpkgs/perl-LWP-Protocol-socks/template
index 15a96605eea..dc2a1b01c58 100644
--- a/srcpkgs/perl-LWP-Protocol-socks/template
+++ b/srcpkgs/perl-LWP-Protocol-socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-socks
 version=1.7
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP/template b/srcpkgs/perl-LWP/template
index 52c256e3b80..24238e19363 100644
--- a/srcpkgs/perl-LWP/template
+++ b/srcpkgs/perl-LWP/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP
 version=6.47
 revision=1
-archs=noarch
 wrksrc="libwww-perl-${version}"
 build_style=perl-module
 hostmakedepends="
diff --git a/srcpkgs/perl-Lingua-Translit/template b/srcpkgs/perl-Lingua-Translit/template
index 075e12b8190..f3caaac516e 100644
--- a/srcpkgs/perl-Lingua-Translit/template
+++ b/srcpkgs/perl-Lingua-Translit/template
@@ -2,7 +2,6 @@
 pkgname=perl-Lingua-Translit
 version=0.28
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Linux-DesktopFiles/template b/srcpkgs/perl-Linux-DesktopFiles/template
index 9d6cda1c3f7..0cde8fbf700 100644
--- a/srcpkgs/perl-Linux-DesktopFiles/template
+++ b/srcpkgs/perl-Linux-DesktopFiles/template
@@ -4,7 +4,6 @@ version=0.25
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/perl-Linux-Distribution/template b/srcpkgs/perl-Linux-Distribution/template
index 01a726003d3..9e9ef9c3ac0 100644
--- a/srcpkgs/perl-Linux-Distribution/template
+++ b/srcpkgs/perl-Linux-Distribution/template
@@ -2,7 +2,6 @@
 pkgname=perl-Linux-Distribution
 version=0.23
 revision=2
-archs=noarch
 wrksrc="Linux-Distribution-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-AllUtils/template b/srcpkgs/perl-List-AllUtils/template
index a47d19136ac..2a422e705be 100644
--- a/srcpkgs/perl-List-AllUtils/template
+++ b/srcpkgs/perl-List-AllUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-AllUtils
 version=0.16
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-MoreUtils/template b/srcpkgs/perl-List-MoreUtils/template
index 55467ee119b..d4f371fc627 100644
--- a/srcpkgs/perl-List-MoreUtils/template
+++ b/srcpkgs/perl-List-MoreUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-MoreUtils
 version=0.428
 revision=2
-archs=noarch
 wrksrc="List-MoreUtils-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-SomeUtils/template b/srcpkgs/perl-List-SomeUtils/template
index df6e1570cd0..014fd652caa 100644
--- a/srcpkgs/perl-List-SomeUtils/template
+++ b/srcpkgs/perl-List-SomeUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-SomeUtils
 version=0.58
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-UtilsBy/template b/srcpkgs/perl-List-UtilsBy/template
index 7f22975ec4f..359fe5c1a9e 100644
--- a/srcpkgs/perl-List-UtilsBy/template
+++ b/srcpkgs/perl-List-UtilsBy/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-UtilsBy
 version=0.11
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Locale-PO/template b/srcpkgs/perl-Locale-PO/template
index 77341df5cdf..a7efbeec358 100644
--- a/srcpkgs/perl-Locale-PO/template
+++ b/srcpkgs/perl-Locale-PO/template
@@ -2,7 +2,6 @@
 pkgname=perl-Locale-PO
 version=0.27
 revision=3
-archs=noarch
 wrksrc="Locale-PO-${version}"
 build_style="perl-module"
 hostmakedepends="perl perl-File-Slurp"
diff --git a/srcpkgs/perl-Log-Log4perl/template b/srcpkgs/perl-Log-Log4perl/template
index 3af10b95a39..5633665e577 100644
--- a/srcpkgs/perl-Log-Log4perl/template
+++ b/srcpkgs/perl-Log-Log4perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Log-Log4perl
 version=1.50
 revision=1
-archs=noarch
 wrksrc="Log-Log4perl-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Charset/template b/srcpkgs/perl-MIME-Charset/template
index 568dc6d95e1..8aa6b243e7a 100644
--- a/srcpkgs/perl-MIME-Charset/template
+++ b/srcpkgs/perl-MIME-Charset/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Charset
 version=1.012.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Types/template b/srcpkgs/perl-MIME-Types/template
index 4ce98fe5137..7253144ee47 100644
--- a/srcpkgs/perl-MIME-Types/template
+++ b/srcpkgs/perl-MIME-Types/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Types
 version=2.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-tools/template b/srcpkgs/perl-MIME-tools/template
index e4df2da1748..f12f1e5cc1c 100644
--- a/srcpkgs/perl-MIME-tools/template
+++ b/srcpkgs/perl-MIME-tools/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-tools
 version=5.509
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Info/template b/srcpkgs/perl-MP3-Info/template
index 70b84cc316c..9bc827ca727 100644
--- a/srcpkgs/perl-MP3-Info/template
+++ b/srcpkgs/perl-MP3-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Info
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Tag/template b/srcpkgs/perl-MP3-Tag/template
index 1bff6e2e7b7..62377f0bea1 100644
--- a/srcpkgs/perl-MP3-Tag/template
+++ b/srcpkgs/perl-MP3-Tag/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Tag
 version=1.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl unzip"
diff --git a/srcpkgs/perl-MRO-Compat/template b/srcpkgs/perl-MRO-Compat/template
index bf51f72241c..6c09d01d943 100644
--- a/srcpkgs/perl-MRO-Compat/template
+++ b/srcpkgs/perl-MRO-Compat/template
@@ -2,7 +2,6 @@
 pkgname=perl-MRO-Compat
 version=0.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Box/template b/srcpkgs/perl-Mail-Box/template
index f2e68883b5e..c21c166845b 100644
--- a/srcpkgs/perl-Mail-Box/template
+++ b/srcpkgs/perl-Mail-Box/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Box
 version=3.008
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-DKIM/template b/srcpkgs/perl-Mail-DKIM/template
index 5dfd3f9b2f0..30af708ec25 100644
--- a/srcpkgs/perl-Mail-DKIM/template
+++ b/srcpkgs/perl-Mail-DKIM/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-DKIM
 version=1.20200724
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Message/template b/srcpkgs/perl-Mail-Message/template
index 1bf220ad388..76ed0153002 100644
--- a/srcpkgs/perl-Mail-Message/template
+++ b/srcpkgs/perl-Mail-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Message
 version=3.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-POP3Client/template b/srcpkgs/perl-Mail-POP3Client/template
index 5317b8ce273..577dfc1c30c 100644
--- a/srcpkgs/perl-Mail-POP3Client/template
+++ b/srcpkgs/perl-Mail-POP3Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-POP3Client
 version=2.19
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Sendmail/template b/srcpkgs/perl-Mail-Sendmail/template
index 55fdfc7f3ad..b61ecddae98 100644
--- a/srcpkgs/perl-Mail-Sendmail/template
+++ b/srcpkgs/perl-Mail-Sendmail/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Sendmail
 version=0.80
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Transport/template b/srcpkgs/perl-Mail-Transport/template
index 1e1501c286e..f1ec85e7000 100644
--- a/srcpkgs/perl-Mail-Transport/template
+++ b/srcpkgs/perl-Mail-Transport/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Transport
 version=3.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MailTools/template b/srcpkgs/perl-MailTools/template
index 8687178a114..65911f6edb5 100644
--- a/srcpkgs/perl-MailTools/template
+++ b/srcpkgs/perl-MailTools/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-TimeDate"
 depends="${makedepends}"
-archs=noarch
 short_desc="MailTools -- Various e-mail related modules"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://metacpan.org/release/MailTools"
diff --git a/srcpkgs/perl-Menlo-Legacy/template b/srcpkgs/perl-Menlo-Legacy/template
index 217e8836b13..5b285a92548 100644
--- a/srcpkgs/perl-Menlo-Legacy/template
+++ b/srcpkgs/perl-Menlo-Legacy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo-Legacy
 version=1.9022
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Menlo/template b/srcpkgs/perl-Menlo/template
index c16d725e03b..94751be3421 100644
--- a/srcpkgs/perl-Menlo/template
+++ b/srcpkgs/perl-Menlo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo
 version=1.9019
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mixin-Linewise/template b/srcpkgs/perl-Mixin-Linewise/template
index 1f2c66462b7..02573bc745a 100644
--- a/srcpkgs/perl-Mixin-Linewise/template
+++ b/srcpkgs/perl-Mixin-Linewise/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mixin-Linewise
 version=0.108
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-PerlIO-utf8-strict perl-Sub-Exporter"
diff --git a/srcpkgs/perl-Module-Build-Tiny/template b/srcpkgs/perl-Module-Build-Tiny/template
index f1b3c327040..e7c462fe4d6 100644
--- a/srcpkgs/perl-Module-Build-Tiny/template
+++ b/srcpkgs/perl-Module-Build-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build-Tiny
 version=0.039
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-ExtUtils-Config perl-ExtUtils-Helpers perl-ExtUtils-InstallPaths"
diff --git a/srcpkgs/perl-Module-Build/template b/srcpkgs/perl-Module-Build/template
index 654c0dedc6b..251896beee8 100644
--- a/srcpkgs/perl-Module-Build/template
+++ b/srcpkgs/perl-Module-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build
 version=0.4231
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-CPANfile/template b/srcpkgs/perl-Module-CPANfile/template
index b6c80ffe2d9..6a01786a74a 100644
--- a/srcpkgs/perl-Module-CPANfile/template
+++ b/srcpkgs/perl-Module-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-CPANfile
 version=1.1004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Find/template b/srcpkgs/perl-Module-Find/template
index 53aaaf84e0a..80d4c29af95 100644
--- a/srcpkgs/perl-Module-Find/template
+++ b/srcpkgs/perl-Module-Find/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Find
 version=0.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Implementation/template b/srcpkgs/perl-Module-Implementation/template
index cd8764774e0..725a6a104cb 100644
--- a/srcpkgs/perl-Module-Implementation/template
+++ b/srcpkgs/perl-Module-Implementation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Implementation
 version=0.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Manifest/template b/srcpkgs/perl-Module-Manifest/template
index 1a56b9da224..86674f57437 100644
--- a/srcpkgs/perl-Module-Manifest/template
+++ b/srcpkgs/perl-Module-Manifest/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Module-Manifest"
 license="Artistic, GPL-1"
 distfiles="$CPAN_SITE/Module/Module-Manifest-${version}.tar.gz"
 checksum=a395f80ff15ea0e66fd6c453844b6787ed4a875a3cd8df9f7e29280250bd539b
-archs=noarch
diff --git a/srcpkgs/perl-Module-Pluggable/template b/srcpkgs/perl-Module-Pluggable/template
index 793c7d6c8bd..b66ec862bdc 100644
--- a/srcpkgs/perl-Module-Pluggable/template
+++ b/srcpkgs/perl-Module-Pluggable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Pluggable
 version=5.2
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Runtime/template b/srcpkgs/perl-Module-Runtime/template
index a8e421f60e1..11231dffd67 100644
--- a/srcpkgs/perl-Module-Runtime/template
+++ b/srcpkgs/perl-Module-Runtime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Runtime
 version=0.016
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Mojolicious/template b/srcpkgs/perl-Mojolicious/template
index 14cf2b6160e..46174772c5e 100644
--- a/srcpkgs/perl-Mojolicious/template
+++ b/srcpkgs/perl-Mojolicious/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mojolicious
 version=8.42
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Monkey-Patch-Action/template b/srcpkgs/perl-Monkey-Patch-Action/template
index f13376e85df..2d7bfdf6240 100644
--- a/srcpkgs/perl-Monkey-Patch-Action/template
+++ b/srcpkgs/perl-Monkey-Patch-Action/template
@@ -2,7 +2,6 @@
 pkgname=perl-Monkey-Patch-Action
 version=0.061
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Moo/template b/srcpkgs/perl-Moo/template
index 155a50b3112..ad85f0207cb 100644
--- a/srcpkgs/perl-Moo/template
+++ b/srcpkgs/perl-Moo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Moo
 version=2.004000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mozilla-CA/template b/srcpkgs/perl-Mozilla-CA/template
index 3a406de17d2..60e89cd77e6 100644
--- a/srcpkgs/perl-Mozilla-CA/template
+++ b/srcpkgs/perl-Mozilla-CA/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mozilla-CA
 version=20200520
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS-Resolver-Mock/template b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
index 5583cb8138d..b31762710e9 100644
--- a/srcpkgs/perl-Net-DNS-Resolver-Mock/template
+++ b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS-Resolver-Mock
 version=1.20200215
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS/template b/srcpkgs/perl-Net-DNS/template
index efa3b7dd63e..ae5529844fc 100644
--- a/srcpkgs/perl-Net-DNS/template
+++ b/srcpkgs/perl-Net-DNS/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS
 version=1.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-HTTP/template b/srcpkgs/perl-Net-HTTP/template
index 105416774df..0b6d48cc134 100644
--- a/srcpkgs/perl-Net-HTTP/template
+++ b/srcpkgs/perl-Net-HTTP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-HTTP
 version=6.19
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Client/template b/srcpkgs/perl-Net-IMAP-Client/template
index 1e0f579548f..ddb280e9e4e 100644
--- a/srcpkgs/perl-Net-IMAP-Client/template
+++ b/srcpkgs/perl-Net-IMAP-Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Client
 version=0.9505
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Simple/template b/srcpkgs/perl-Net-IMAP-Simple/template
index 30d331492fb..70244a0ab64 100644
--- a/srcpkgs/perl-Net-IMAP-Simple/template
+++ b/srcpkgs/perl-Net-IMAP-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Simple
 version=1.2212
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-MPD/template b/srcpkgs/perl-Net-MPD/template
index 38363aa7b48..e69ff0d37cc 100644
--- a/srcpkgs/perl-Net-MPD/template
+++ b/srcpkgs/perl-Net-MPD/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-MPD
 version=0.07
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Net-OpenSSH/template b/srcpkgs/perl-Net-OpenSSH/template
index 69fc0d570e1..b8e6439ead8 100644
--- a/srcpkgs/perl-Net-OpenSSH/template
+++ b/srcpkgs/perl-Net-OpenSSH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-OpenSSH
 version=0.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SFTP-Foreign/template b/srcpkgs/perl-Net-SFTP-Foreign/template
index a447269f22a..852d70c9c5d 100644
--- a/srcpkgs/perl-Net-SFTP-Foreign/template
+++ b/srcpkgs/perl-Net-SFTP-Foreign/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SFTP-Foreign
 version=1.91
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SMTP-SSL/template b/srcpkgs/perl-Net-SMTP-SSL/template
index 4bceff607f7..066b9325ace 100644
--- a/srcpkgs/perl-Net-SMTP-SSL/template
+++ b/srcpkgs/perl-Net-SMTP-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SMTP-SSL
 version=1.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-Server/template b/srcpkgs/perl-Net-Server/template
index d6303b7a70b..663ed0d44de 100644
--- a/srcpkgs/perl-Net-Server/template
+++ b/srcpkgs/perl-Net-Server/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-Server
 version=2.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Compare/template b/srcpkgs/perl-Number-Compare/template
index df4eaca2780..c7a4c986303 100644
--- a/srcpkgs/perl-Number-Compare/template
+++ b/srcpkgs/perl-Number-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Compare
 version=0.03
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Format/template b/srcpkgs/perl-Number-Format/template
index f0c958a696c..435d082ab86 100644
--- a/srcpkgs/perl-Number-Format/template
+++ b/srcpkgs/perl-Number-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Format
 version=1.75
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-OLE-Storage_Lite/template b/srcpkgs/perl-OLE-Storage_Lite/template
index 28db86c8be5..37e893ecfa5 100644
--- a/srcpkgs/perl-OLE-Storage_Lite/template
+++ b/srcpkgs/perl-OLE-Storage_Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-OLE-Storage_Lite
 version=0.20
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-MultiType/template b/srcpkgs/perl-Object-MultiType/template
index 7caf30b452d..0a459d4e712 100644
--- a/srcpkgs/perl-Object-MultiType/template
+++ b/srcpkgs/perl-Object-MultiType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-MultiType
 version=0.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-Realize-Later/template b/srcpkgs/perl-Object-Realize-Later/template
index 51682d45083..6aa801950c7 100644
--- a/srcpkgs/perl-Object-Realize-Later/template
+++ b/srcpkgs/perl-Object-Realize-Later/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-Realize-Later
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PDF-API2/template b/srcpkgs/perl-PDF-API2/template
index 076c45b88ec..b8169a27809 100644
--- a/srcpkgs/perl-PDF-API2/template
+++ b/srcpkgs/perl-PDF-API2/template
@@ -2,7 +2,6 @@
 pkgname=perl-PDF-API2
 version=2.037
 revision=1
-archs=noarch
 wrksrc="PDF-API2-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-POSIX-strftime-Compiler/template b/srcpkgs/perl-POSIX-strftime-Compiler/template
index 6b68d220377..5b9eff0e86a 100644
--- a/srcpkgs/perl-POSIX-strftime-Compiler/template
+++ b/srcpkgs/perl-POSIX-strftime-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-POSIX-strftime-Compiler
 version=0.44
 revision=1
-archs=noarch
 wrksrc="POSIX-strftime-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-PPR/template b/srcpkgs/perl-PPR/template
index bc7165f468a..2ed7e88c560 100644
--- a/srcpkgs/perl-PPR/template
+++ b/srcpkgs/perl-PPR/template
@@ -2,7 +2,6 @@
 pkgname=perl-PPR
 version=0.000028
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope"
diff --git a/srcpkgs/perl-Package-DeprecationManager/template b/srcpkgs/perl-Package-DeprecationManager/template
index 9e4cf28789d..6a5d31909f1 100644
--- a/srcpkgs/perl-Package-DeprecationManager/template
+++ b/srcpkgs/perl-Package-DeprecationManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-DeprecationManager
 version=0.17
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Package-Stash/template b/srcpkgs/perl-Package-Stash/template
index 4b021644ae0..9a17b5d6bc0 100644
--- a/srcpkgs/perl-Package-Stash/template
+++ b/srcpkgs/perl-Package-Stash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-Stash
 version=0.38
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Dist-CheckConflicts"
diff --git a/srcpkgs/perl-Parallel-ForkManager/template b/srcpkgs/perl-Parallel-ForkManager/template
index ba0d496c36f..e0195f5ddbf 100644
--- a/srcpkgs/perl-Parallel-ForkManager/template
+++ b/srcpkgs/perl-Parallel-ForkManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parallel-ForkManager
 version=2.02
 revision=1
-archs=noarch
 wrksrc="Parallel-ForkManager-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Params-ValidationCompiler/template b/srcpkgs/perl-Params-ValidationCompiler/template
index 79331a19c2d..a3e5a189a72 100644
--- a/srcpkgs/perl-Params-ValidationCompiler/template
+++ b/srcpkgs/perl-Params-ValidationCompiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Params-ValidationCompiler
 version=0.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-CPAN-Meta/template b/srcpkgs/perl-Parse-CPAN-Meta/template
index 7f2a04132a2..0463d20ca47 100644
--- a/srcpkgs/perl-Parse-CPAN-Meta/template
+++ b/srcpkgs/perl-Parse-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-CPAN-Meta
 version=1.4422
 revision=2
-archs=noarch
 wrksrc="Parse-CPAN-Meta-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-PMFile/template b/srcpkgs/perl-Parse-PMFile/template
index 3d406c6d5c3..5090b138072 100644
--- a/srcpkgs/perl-Parse-PMFile/template
+++ b/srcpkgs/perl-Parse-PMFile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-PMFile
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-MakeMaker-CPANfile perl-Module-CPANfile"
diff --git a/srcpkgs/perl-Parse-RecDescent/template b/srcpkgs/perl-Parse-RecDescent/template
index 272fe0008b6..d8236b57ce9 100644
--- a/srcpkgs/perl-Parse-RecDescent/template
+++ b/srcpkgs/perl-Parse-RecDescent/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-RecDescent
 version=1.967015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-Yapp/template b/srcpkgs/perl-Parse-Yapp/template
index bd200ede930..593310b30cf 100644
--- a/srcpkgs/perl-Parse-Yapp/template
+++ b/srcpkgs/perl-Parse-Yapp/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-Yapp
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PatchReader/template b/srcpkgs/perl-PatchReader/template
index 51cd3172766..f92209bfd06 100644
--- a/srcpkgs/perl-PatchReader/template
+++ b/srcpkgs/perl-PatchReader/template
@@ -2,7 +2,6 @@
 pkgname=perl-PatchReader
 version=0.9.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Path-Tiny/template b/srcpkgs/perl-Path-Tiny/template
index 6db01f7ff4e..c81538f8fbd 100644
--- a/srcpkgs/perl-Path-Tiny/template
+++ b/srcpkgs/perl-Path-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Path-Tiny
 version=0.114
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Pegex/template b/srcpkgs/perl-Pegex/template
index b1ae1eef38f..c6531608145 100644
--- a/srcpkgs/perl-Pegex/template
+++ b/srcpkgs/perl-Pegex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pegex
 version=0.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Plack-Middleware-Deflater/template b/srcpkgs/perl-Plack-Middleware-Deflater/template
index c18fa1932bd..64e97653d56 100644
--- a/srcpkgs/perl-Plack-Middleware-Deflater/template
+++ b/srcpkgs/perl-Plack-Middleware-Deflater/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Plack-Middleware-Deflater"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-Deflater-${version}.tar.gz"
 checksum=28da95e7da4c8b5591ac454509c92176cd0842960ce074fde30f9a1075dcc275
-archs=noarch
diff --git a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
index 3c120a2ce23..4187eaf1bd3 100644
--- a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
+++ b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Plack-Middleware-ReverseProxy"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-ReverseProxy-${version}.tar.gz"
 checksum=874931d37d07667ba0d0f37903b94511071f4191feb73fa45765da2b8c15a128
-archs="noarch"
diff --git a/srcpkgs/perl-Plack/template b/srcpkgs/perl-Plack/template
index 6954a1eccc1..b0893d9875d 100644
--- a/srcpkgs/perl-Plack/template
+++ b/srcpkgs/perl-Plack/template
@@ -18,4 +18,3 @@ homepage="https://metacpan.org/release/Plack"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-${version}.tar.gz"
 checksum=322c93f5acc0a0f0e11fd4a76188f978bdc14338a9f1df3ae535227017046561
-archs=noarch
diff --git a/srcpkgs/perl-Pod-Coverage/template b/srcpkgs/perl-Pod-Coverage/template
index 6202ae090fc..50545eed804 100644
--- a/srcpkgs/perl-Pod-Coverage/template
+++ b/srcpkgs/perl-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Coverage
 version=0.23
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-Symdump"
diff --git a/srcpkgs/perl-Pod-Simple-Text-Termcap/template b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
index 65fcd4aa738..7df35f1e433 100644
--- a/srcpkgs/perl-Pod-Simple-Text-Termcap/template
+++ b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Simple-Text-Termcap
 version=0.01
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Probe-Perl/template b/srcpkgs/perl-Probe-Perl/template
index 673236a744c..cef72577248 100644
--- a/srcpkgs/perl-Probe-Perl/template
+++ b/srcpkgs/perl-Probe-Perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Probe-Perl
 version=0.03
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Daemontools/template b/srcpkgs/perl-Proc-Daemontools/template
index ded05432e82..c4979387c25 100644
--- a/srcpkgs/perl-Proc-Daemontools/template
+++ b/srcpkgs/perl-Proc-Daemontools/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Daemontools
 version=1.06
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Govern/template b/srcpkgs/perl-Proc-Govern/template
index 5b999a8099e..910bd8a0be7 100644
--- a/srcpkgs/perl-Proc-Govern/template
+++ b/srcpkgs/perl-Proc-Govern/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Govern
 version=0.209
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-PID-File/template b/srcpkgs/perl-Proc-PID-File/template
index c0a1929f98c..40b10ab049a 100644
--- a/srcpkgs/perl-Proc-PID-File/template
+++ b/srcpkgs/perl-Proc-PID-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-PID-File
 version=1.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Readonly/template b/srcpkgs/perl-Readonly/template
index fafb9a80950..d6a5e85c73d 100644
--- a/srcpkgs/perl-Readonly/template
+++ b/srcpkgs/perl-Readonly/template
@@ -2,7 +2,6 @@
 pkgname=perl-Readonly
 version=2.05
 revision=2
-archs=noarch
 wrksrc="Readonly-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Ref-Util/template b/srcpkgs/perl-Ref-Util/template
index 2b6acde1820..66a77e571ab 100644
--- a/srcpkgs/perl-Ref-Util/template
+++ b/srcpkgs/perl-Ref-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Ref-Util
 version=0.204
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Common/template b/srcpkgs/perl-Regexp-Common/template
index 0a8ef2222cb..6b9d253162b 100644
--- a/srcpkgs/perl-Regexp-Common/template
+++ b/srcpkgs/perl-Regexp-Common/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Common
 version=2017060201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Grammars/template b/srcpkgs/perl-Regexp-Grammars/template
index cae12ff654b..761e58df7ff 100644
--- a/srcpkgs/perl-Regexp-Grammars/template
+++ b/srcpkgs/perl-Regexp-Grammars/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Grammars
 version=1.057
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Reply/template b/srcpkgs/perl-Reply/template
index 8dc0d7fb756..64a4341d012 100644
--- a/srcpkgs/perl-Reply/template
+++ b/srcpkgs/perl-Reply/template
@@ -2,7 +2,6 @@
 pkgname=perl-Reply
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-LexAlias perl-Eval-Closure perl-Package-Stash perl-PadWalker perl-Term-ReadLine-Gnu perl-Try-Tiny perl-File-HomeDir perl-Config-INI-Reader-Ordered"
diff --git a/srcpkgs/perl-Role-Tiny/template b/srcpkgs/perl-Role-Tiny/template
index 7eb125fbd4e..a51bd0ec025 100644
--- a/srcpkgs/perl-Role-Tiny/template
+++ b/srcpkgs/perl-Role-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Role-Tiny
 version=2.001004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SGMLSpm/template b/srcpkgs/perl-SGMLSpm/template
index e1f9ac69878..2ece0a3567e 100644
--- a/srcpkgs/perl-SGMLSpm/template
+++ b/srcpkgs/perl-SGMLSpm/template
@@ -4,7 +4,6 @@ version=1.1
 revision=1
 wrksrc=${pkgname/perl-/}-${version}
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-SOAP-Lite/template b/srcpkgs/perl-SOAP-Lite/template
index e74a27a0497..e0382bf0464 100644
--- a/srcpkgs/perl-SOAP-Lite/template
+++ b/srcpkgs/perl-SOAP-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-SOAP-Lite
 version=1.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SUPER/template b/srcpkgs/perl-SUPER/template
index 1b11e76b38e..89c9f219f55 100644
--- a/srcpkgs/perl-SUPER/template
+++ b/srcpkgs/perl-SUPER/template
@@ -2,7 +2,6 @@
 pkgname=perl-SUPER
 version=1.20190531
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Scope-Guard/template b/srcpkgs/perl-Scope-Guard/template
index f17c470e784..85a5038e0c0 100644
--- a/srcpkgs/perl-Scope-Guard/template
+++ b/srcpkgs/perl-Scope-Guard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Scope-Guard
 version=0.21
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Set-IntSpan/template b/srcpkgs/perl-Set-IntSpan/template
index 681aa0b1386..f6565cf8ce3 100644
--- a/srcpkgs/perl-Set-IntSpan/template
+++ b/srcpkgs/perl-Set-IntSpan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Set-IntSpan
 version=1.19
 revision=2
-archs=noarch
 wrksrc="Set-IntSpan-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Naturally/template b/srcpkgs/perl-Sort-Naturally/template
index 11cfb97cfe4..a621922cdc4 100644
--- a/srcpkgs/perl-Sort-Naturally/template
+++ b/srcpkgs/perl-Sort-Naturally/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Naturally
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Versions/template b/srcpkgs/perl-Sort-Versions/template
index 292e0def8ea..97efedd9fa6 100644
--- a/srcpkgs/perl-Sort-Versions/template
+++ b/srcpkgs/perl-Sort-Versions/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Versions
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Specio/template b/srcpkgs/perl-Specio/template
index 22fc22f79e8..353cd58a5fe 100644
--- a/srcpkgs/perl-Specio/template
+++ b/srcpkgs/perl-Specio/template
@@ -2,7 +2,6 @@
 pkgname=perl-Specio
 version=0.46
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spiffy/template b/srcpkgs/perl-Spiffy/template
index 4412ade6858..d2ae23c5386 100644
--- a/srcpkgs/perl-Spiffy/template
+++ b/srcpkgs/perl-Spiffy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spiffy
 version=0.46
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseExcel/template b/srcpkgs/perl-Spreadsheet-ParseExcel/template
index 748f157113a..c5449492a99 100644
--- a/srcpkgs/perl-Spreadsheet-ParseExcel/template
+++ b/srcpkgs/perl-Spreadsheet-ParseExcel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseExcel
 version=0.65
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseXLSX/template b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
index 189c47dd66b..da0e9fa9e7f 100644
--- a/srcpkgs/perl-Spreadsheet-ParseXLSX/template
+++ b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseXLSX
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Stow/template b/srcpkgs/perl-Stow/template
index 9ed2a52ed93..c52f0ec06cd 100644
--- a/srcpkgs/perl-Stow/template
+++ b/srcpkgs/perl-Stow/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stow
 version=2.3.1
 revision=1
-archs=noarch
 wrksrc="Stow-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Output perl-IO-stringy"
diff --git a/srcpkgs/perl-Stream-Buffered/template b/srcpkgs/perl-Stream-Buffered/template
index d872e01d511..ed0566b75d7 100644
--- a/srcpkgs/perl-Stream-Buffered/template
+++ b/srcpkgs/perl-Stream-Buffered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stream-Buffered
 version=0.03
 revision=2
-archs=noarch
 wrksrc="Stream-Buffered-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-Escape/template b/srcpkgs/perl-String-Escape/template
index f33bacae2a8..d62b712adf1 100644
--- a/srcpkgs/perl-String-Escape/template
+++ b/srcpkgs/perl-String-Escape/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-Escape
 version=2010.002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-ShellQuote/template b/srcpkgs/perl-String-ShellQuote/template
index 7992c6bfd54..0620e27d55e 100644
--- a/srcpkgs/perl-String-ShellQuote/template
+++ b/srcpkgs/perl-String-ShellQuote/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-ShellQuote
 version=1.04
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Delete/template b/srcpkgs/perl-Sub-Delete/template
index f57c5ceee74..b93395a327f 100644
--- a/srcpkgs/perl-Sub-Delete/template
+++ b/srcpkgs/perl-Sub-Delete/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Delete
 version=1.00002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter-Progressive/template b/srcpkgs/perl-Sub-Exporter-Progressive/template
index ba7ff3325fd..ca3735cf30d 100644
--- a/srcpkgs/perl-Sub-Exporter-Progressive/template
+++ b/srcpkgs/perl-Sub-Exporter-Progressive/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter-Progressive
 version=0.001013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter/template b/srcpkgs/perl-Sub-Exporter/template
index 580e244d5bf..fd7835fa11b 100644
--- a/srcpkgs/perl-Sub-Exporter/template
+++ b/srcpkgs/perl-Sub-Exporter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter
 version=0.987
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Info/template b/srcpkgs/perl-Sub-Info/template
index 6026d8f5bf2..b92e7492406 100644
--- a/srcpkgs/perl-Sub-Info/template
+++ b/srcpkgs/perl-Sub-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Info
 version=0.002
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Install/template b/srcpkgs/perl-Sub-Install/template
index ef853d0d7fd..9515c5147a4 100644
--- a/srcpkgs/perl-Sub-Install/template
+++ b/srcpkgs/perl-Sub-Install/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Install
 version=0.928
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Quote/template b/srcpkgs/perl-Sub-Quote/template
index 1ab6d42ec20..8f0f784f114 100644
--- a/srcpkgs/perl-Sub-Quote/template
+++ b/srcpkgs/perl-Sub-Quote/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Quote
 version=2.006006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Uplevel/template b/srcpkgs/perl-Sub-Uplevel/template
index 5986ba70ba7..eddf582a4e3 100644
--- a/srcpkgs/perl-Sub-Uplevel/template
+++ b/srcpkgs/perl-Sub-Uplevel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Uplevel
 version=0.2800
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Svsh/template b/srcpkgs/perl-Svsh/template
index 06a7bfa948e..c70cb1572d4 100644
--- a/srcpkgs/perl-Svsh/template
+++ b/srcpkgs/perl-Svsh/template
@@ -2,7 +2,6 @@
 pkgname=perl-Svsh
 version=1.002000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sys-Syscall/template b/srcpkgs/perl-Sys-Syscall/template
index cdcc58dc479..564b0dab0eb 100644
--- a/srcpkgs/perl-Sys-Syscall/template
+++ b/srcpkgs/perl-Sys-Syscall/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sys-Syscall
 version=0.25
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Animation/template b/srcpkgs/perl-Term-Animation/template
index 3341a3eab6c..bfe5c34c8dc 100644
--- a/srcpkgs/perl-Term-Animation/template
+++ b/srcpkgs/perl-Term-Animation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Animation
 version=2.6
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Curses"
diff --git a/srcpkgs/perl-Term-ExtendedColor/template b/srcpkgs/perl-Term-ExtendedColor/template
index 971fc6ffbd0..b4936d810ce 100644
--- a/srcpkgs/perl-Term-ExtendedColor/template
+++ b/srcpkgs/perl-Term-ExtendedColor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ExtendedColor
 version=0.504
 revision=1
-archs=noarch
 wrksrc="Term-ExtendedColor-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-ShellUI/template b/srcpkgs/perl-Term-ShellUI/template
index f5d77d801db..dfd12fc0ba4 100644
--- a/srcpkgs/perl-Term-ShellUI/template
+++ b/srcpkgs/perl-Term-ShellUI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ShellUI
 version=0.92
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Table/template b/srcpkgs/perl-Term-Table/template
index 0934b654d5a..e2a14a69a6a 100644
--- a/srcpkgs/perl-Term-Table/template
+++ b/srcpkgs/perl-Term-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Table
 version=0.015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Base/template b/srcpkgs/perl-Test-Base/template
index 9eef8acf384..dd7e15cc716 100644
--- a/srcpkgs/perl-Test-Base/template
+++ b/srcpkgs/perl-Test-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Base
 version=0.89
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-CPAN-Meta/template b/srcpkgs/perl-Test-CPAN-Meta/template
index 3c21325b9e1..694b3b17142 100644
--- a/srcpkgs/perl-Test-CPAN-Meta/template
+++ b/srcpkgs/perl-Test-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-CPAN-Meta
 version=0.25
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Class/template b/srcpkgs/perl-Test-Class/template
index 1b60133766e..aeff642718d 100644
--- a/srcpkgs/perl-Test-Class/template
+++ b/srcpkgs/perl-Test-Class/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Class
 version=0.50
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Cmd/template b/srcpkgs/perl-Test-Cmd/template
index aa4e8c68a7c..b667845728b 100644
--- a/srcpkgs/perl-Test-Cmd/template
+++ b/srcpkgs/perl-Test-Cmd/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Cmd
 version=1.09
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Command/template b/srcpkgs/perl-Test-Command/template
index 2232d4c1d82..3b42a6f14eb 100644
--- a/srcpkgs/perl-Test-Command/template
+++ b/srcpkgs/perl-Test-Command/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Command
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Deep/template b/srcpkgs/perl-Test-Deep/template
index 6bde21fc2ff..a8127d43469 100644
--- a/srcpkgs/perl-Test-Deep/template
+++ b/srcpkgs/perl-Test-Deep/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Deep
 version=1.130
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Differences/template b/srcpkgs/perl-Test-Differences/template
index b65ac242d0c..1fed4aa2222 100644
--- a/srcpkgs/perl-Test-Differences/template
+++ b/srcpkgs/perl-Test-Differences/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Differences
 version=0.67
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Diff"
diff --git a/srcpkgs/perl-Test-DistManifest/template b/srcpkgs/perl-Test-DistManifest/template
index 31d92ee2296..da092b7a3c5 100644
--- a/srcpkgs/perl-Test-DistManifest/template
+++ b/srcpkgs/perl-Test-DistManifest/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-DistManifest
 version=1.014
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Test-NoWarnings perl-Module-Manifest"
diff --git a/srcpkgs/perl-Test-Exception/template b/srcpkgs/perl-Test-Exception/template
index 6fe7eec0c4a..e66c8fc81ac 100644
--- a/srcpkgs/perl-Test-Exception/template
+++ b/srcpkgs/perl-Test-Exception/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Exception
 version=0.43
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Sub-Uplevel"
diff --git a/srcpkgs/perl-Test-FailWarnings/template b/srcpkgs/perl-Test-FailWarnings/template
index e3fdb4ab06e..d585bd9b896 100644
--- a/srcpkgs/perl-Test-FailWarnings/template
+++ b/srcpkgs/perl-Test-FailWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-FailWarnings
 version=0.008
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Fatal/template b/srcpkgs/perl-Test-Fatal/template
index e67737a383d..e467fb12fb2 100644
--- a/srcpkgs/perl-Test-Fatal/template
+++ b/srcpkgs/perl-Test-Fatal/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Fatal
 version=0.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File-ShareDir/template b/srcpkgs/perl-Test-File-ShareDir/template
index 6dd421ddbde..75ff5004ffb 100644
--- a/srcpkgs/perl-Test-File-ShareDir/template
+++ b/srcpkgs/perl-Test-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File-ShareDir
 version=1.001002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File/template b/srcpkgs/perl-Test-File/template
index 08d104ca38a..7206a9d5d8a 100644
--- a/srcpkgs/perl-Test-File/template
+++ b/srcpkgs/perl-Test-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File
 version=1.443
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-HTTP-Server-Simple/template b/srcpkgs/perl-Test-HTTP-Server-Simple/template
index a9ea7150716..215be3be929 100644
--- a/srcpkgs/perl-Test-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-Test-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-HTTP-Server-Simple
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Inter/template b/srcpkgs/perl-Test-Inter/template
index 321f710da5f..f43818096b0 100644
--- a/srcpkgs/perl-Test-Inter/template
+++ b/srcpkgs/perl-Test-Inter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Inter
 version=1.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Find-Rule"
diff --git a/srcpkgs/perl-Test-MockModule/template b/srcpkgs/perl-Test-MockModule/template
index 23acd60fdb8..1d7a8e5b1c3 100644
--- a/srcpkgs/perl-Test-MockModule/template
+++ b/srcpkgs/perl-Test-MockModule/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-MockModule
 version=0.172.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Test-Most/template b/srcpkgs/perl-Test-Most/template
index 6a9db439290..532381fa8ee 100644
--- a/srcpkgs/perl-Test-Most/template
+++ b/srcpkgs/perl-Test-Most/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Most
 version=0.37
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Needs/template b/srcpkgs/perl-Test-Needs/template
index e5c81edc3ac..5e54b40b06c 100644
--- a/srcpkgs/perl-Test-Needs/template
+++ b/srcpkgs/perl-Test-Needs/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Needs
 version=0.002006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-NoWarnings/template b/srcpkgs/perl-Test-NoWarnings/template
index 96e81fec90f..fd15cd958a0 100644
--- a/srcpkgs/perl-Test-NoWarnings/template
+++ b/srcpkgs/perl-Test-NoWarnings/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Test::NoWarnings - Make sure you did not emit warnings while testing.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-NoWarnings"
diff --git a/srcpkgs/perl-Test-Output/template b/srcpkgs/perl-Test-Output/template
index df03ea4add2..5a625bee5f3 100644
--- a/srcpkgs/perl-Test-Output/template
+++ b/srcpkgs/perl-Test-Output/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Output
 version=1.031
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Pod-Coverage/template b/srcpkgs/perl-Test-Pod-Coverage/template
index a752e59d35d..19cb1a8f2f9 100644
--- a/srcpkgs/perl-Test-Pod-Coverage/template
+++ b/srcpkgs/perl-Test-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Pod-Coverage
 version=1.10
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Pod-Coverage"
diff --git a/srcpkgs/perl-Test-Pod/template b/srcpkgs/perl-Test-Pod/template
index c34f8ea27df..cbfd3ff23c2 100644
--- a/srcpkgs/perl-Test-Pod/template
+++ b/srcpkgs/perl-Test-Pod/template
@@ -12,4 +12,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Test-Pod"
 distfiles="${CPAN_SITE}/Test/Test-Pod-${version}.tar.gz"
 checksum=60a8dbcc60168bf1daa5cc2350236df9343e9878f4ab9830970a5dde6fe8e5fc
-archs=noarch
diff --git a/srcpkgs/perl-Test-Requires/template b/srcpkgs/perl-Test-Requires/template
index 64ffb6664b7..8e8818008b7 100644
--- a/srcpkgs/perl-Test-Requires/template
+++ b/srcpkgs/perl-Test-Requires/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Requires
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-RequiresInternet/template b/srcpkgs/perl-Test-RequiresInternet/template
index 69d8f515348..075072dee81 100644
--- a/srcpkgs/perl-Test-RequiresInternet/template
+++ b/srcpkgs/perl-Test-RequiresInternet/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-RequiresInternet
 version=0.05
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Script/template b/srcpkgs/perl-Test-Script/template
index 3dc87e44f2f..ae1409a00ae 100644
--- a/srcpkgs/perl-Test-Script/template
+++ b/srcpkgs/perl-Test-Script/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Script
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Probe-Perl perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Test-SharedFork/template b/srcpkgs/perl-Test-SharedFork/template
index b975ff0ecc3..66b02b46b37 100644
--- a/srcpkgs/perl-Test-SharedFork/template
+++ b/srcpkgs/perl-Test-SharedFork/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-SharedFork
 version=0.35
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Simple/template b/srcpkgs/perl-Test-Simple/template
index 963b288dc55..daa105b57de 100644
--- a/srcpkgs/perl-Test-Simple/template
+++ b/srcpkgs/perl-Test-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Simple
 version=1.302175
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Subroutines/template b/srcpkgs/perl-Test-Subroutines/template
index acfd9da0cd8..316a27b3ab7 100644
--- a/srcpkgs/perl-Test-Subroutines/template
+++ b/srcpkgs/perl-Test-Subroutines/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Subroutines
 version=1.113350
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-TCP/template b/srcpkgs/perl-Test-TCP/template
index 31caea2c412..48ff54b37a0 100644
--- a/srcpkgs/perl-Test-TCP/template
+++ b/srcpkgs/perl-Test-TCP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-TCP
 version=2.22
 revision=1
-archs=noarch
 wrksrc="Test-TCP-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Time/template b/srcpkgs/perl-Test-Time/template
index 5af68205289..7f65a8e54e2 100644
--- a/srcpkgs/perl-Test-Time/template
+++ b/srcpkgs/perl-Test-Time/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Time
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Trap/template b/srcpkgs/perl-Test-Trap/template
index 79e8b842023..108e7c6e2d3 100644
--- a/srcpkgs/perl-Test-Trap/template
+++ b/srcpkgs/perl-Test-Trap/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Data-Dump"
 makedepends="$hostmakedepends"
 depends="$hostmakedepends"
-archs=noarch
 short_desc='Test::Trap - Trap exit codes, exceptions, output, etc.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-Trap"
diff --git a/srcpkgs/perl-Test-UseAllModules/template b/srcpkgs/perl-Test-UseAllModules/template
index 1205fc0be5d..003c510ec78 100644
--- a/srcpkgs/perl-Test-UseAllModules/template
+++ b/srcpkgs/perl-Test-UseAllModules/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Test-UseAllModules"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Test/Test-UseAllModules-${version}.tar.gz"
 checksum=a71f2fe8b96ab8bfc2760aa1d3135ea049a5b20dcb105457b769a1195c7a2509
-archs=noarch
diff --git a/srcpkgs/perl-Test-Warn/template b/srcpkgs/perl-Test-Warn/template
index 174a5303531..a643e723110 100644
--- a/srcpkgs/perl-Test-Warn/template
+++ b/srcpkgs/perl-Test-Warn/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warn
 version=0.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Warnings/template b/srcpkgs/perl-Test-Warnings/template
index 465830261d6..988e26c5ae4 100644
--- a/srcpkgs/perl-Test-Warnings/template
+++ b/srcpkgs/perl-Test-Warnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warnings
 version=0.030
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Weaken/template b/srcpkgs/perl-Test-Weaken/template
index f336b5a09b6..6cfef3bf09a 100644
--- a/srcpkgs/perl-Test-Weaken/template
+++ b/srcpkgs/perl-Test-Weaken/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Weaken
 version=3.022000
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Without-Module/template b/srcpkgs/perl-Test-Without-Module/template
index 662a2293596..f869abe5d61 100644
--- a/srcpkgs/perl-Test-Without-Module/template
+++ b/srcpkgs/perl-Test-Without-Module/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Without-Module
 version=0.20
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-YAML/template b/srcpkgs/perl-Test-YAML/template
index 21f167214ef..a4c1e3c1389 100644
--- a/srcpkgs/perl-Test-YAML/template
+++ b/srcpkgs/perl-Test-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-YAML
 version=1.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-utf8/template b/srcpkgs/perl-Test-utf8/template
index 3b331fae4ec..56e18704f89 100644
--- a/srcpkgs/perl-Test-utf8/template
+++ b/srcpkgs/perl-Test-utf8/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-utf8
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Plugin-NoWarnings/template b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
index 45501cb5757..31813c6a98e 100644
--- a/srcpkgs/perl-Test2-Plugin-NoWarnings/template
+++ b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Plugin-NoWarnings
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Suite/template b/srcpkgs/perl-Test2-Suite/template
index 57ac88d0ff6..82813453486 100644
--- a/srcpkgs/perl-Test2-Suite/template
+++ b/srcpkgs/perl-Test2-Suite/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Suite
 version=0.000129
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-ASCIITable/template b/srcpkgs/perl-Text-ASCIITable/template
index c9cde14602c..3250aa44596 100644
--- a/srcpkgs/perl-Text-ASCIITable/template
+++ b/srcpkgs/perl-Text-ASCIITable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-ASCIITable
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Text-Aligner/template b/srcpkgs/perl-Text-Aligner/template
index d2c819ffc37..fcecd066492 100644
--- a/srcpkgs/perl-Text-Aligner/template
+++ b/srcpkgs/perl-Text-Aligner/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Aligner
 version=0.16
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Autoformat/template b/srcpkgs/perl-Text-Autoformat/template
index 38486635f16..d154567480e 100644
--- a/srcpkgs/perl-Text-Autoformat/template
+++ b/srcpkgs/perl-Text-Autoformat/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Autoformat
 version=1.75
 revision=1
-archs=noarch
 wrksrc="Text-Autoformat-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Reform"
diff --git a/srcpkgs/perl-Text-CSV/template b/srcpkgs/perl-Text-CSV/template
index b5a7d98cca5..20fa46051ac 100644
--- a/srcpkgs/perl-Text-CSV/template
+++ b/srcpkgs/perl-Text-CSV/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-CSV
 version=2.00
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Diff/template b/srcpkgs/perl-Text-Diff/template
index 9867a6ea528..73f9054c0d9 100644
--- a/srcpkgs/perl-Text-Diff/template
+++ b/srcpkgs/perl-Text-Diff/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Algorithm-Diff"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Text::Diff - Perform diffs on files and record sets'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Text-Diff"
diff --git a/srcpkgs/perl-Text-Glob/template b/srcpkgs/perl-Text-Glob/template
index cfe57391caf..3d4a030dd06 100644
--- a/srcpkgs/perl-Text-Glob/template
+++ b/srcpkgs/perl-Text-Glob/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Glob
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Markdown/template b/srcpkgs/perl-Text-Markdown/template
index 753ace32d12..300414f4746 100644
--- a/srcpkgs/perl-Text-Markdown/template
+++ b/srcpkgs/perl-Text-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Markdown
 version=1.000031
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Reform/template b/srcpkgs/perl-Text-Reform/template
index dd1b6b62268..9cd9582f468 100644
--- a/srcpkgs/perl-Text-Reform/template
+++ b/srcpkgs/perl-Text-Reform/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Reform
 version=1.20
 revision=2
-archs=noarch
 wrksrc="Text-Reform-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Roman/template b/srcpkgs/perl-Text-Roman/template
index 80d0865b293..a5d09c1287b 100644
--- a/srcpkgs/perl-Text-Roman/template
+++ b/srcpkgs/perl-Text-Roman/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Roman
 version=3.5
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Table/template b/srcpkgs/perl-Text-Table/template
index 4f74932bfe9..ed02ceae69e 100644
--- a/srcpkgs/perl-Text-Table/template
+++ b/srcpkgs/perl-Text-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Table
 version=1.134
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Unidecode/template b/srcpkgs/perl-Text-Unidecode/template
index 220aa563058..ed3ecd863ac 100644
--- a/srcpkgs/perl-Text-Unidecode/template
+++ b/srcpkgs/perl-Text-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Unidecode
 version=1.30
 revision=1
-archs=noarch
 wrksrc="Text-Unidecode-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-WrapI18N/template b/srcpkgs/perl-Text-WrapI18N/template
index b356989f72c..89897a18bbe 100644
--- a/srcpkgs/perl-Text-WrapI18N/template
+++ b/srcpkgs/perl-Text-WrapI18N/template
@@ -4,7 +4,6 @@ version=0.06
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl perl-Text-CharWidth"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-Text-XLogfile/template b/srcpkgs/perl-Text-XLogfile/template
index 6cc929a6493..893e5ff0710 100644
--- a/srcpkgs/perl-Text-XLogfile/template
+++ b/srcpkgs/perl-Text-XLogfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-XLogfile
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Cycle/template b/srcpkgs/perl-Tie-Cycle/template
index 5010b16ec37..35e968852cd 100644
--- a/srcpkgs/perl-Tie-Cycle/template
+++ b/srcpkgs/perl-Tie-Cycle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Cycle
 version=1.225
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Handle-Offset/template b/srcpkgs/perl-Tie-Handle-Offset/template
index 88e4298951d..fd4aa1745fa 100644
--- a/srcpkgs/perl-Tie-Handle-Offset/template
+++ b/srcpkgs/perl-Tie-Handle-Offset/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Handle-Offset
 version=0.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-IxHash/template b/srcpkgs/perl-Tie-IxHash/template
index 9d926ee407e..4fb6114ce42 100644
--- a/srcpkgs/perl-Tie-IxHash/template
+++ b/srcpkgs/perl-Tie-IxHash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-IxHash
 version=1.23
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-Duration/template b/srcpkgs/perl-Time-Duration/template
index 686edca3d76..23fa2c1e0ee 100644
--- a/srcpkgs/perl-Time-Duration/template
+++ b/srcpkgs/perl-Time-Duration/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-Duration
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-modules/template b/srcpkgs/perl-Time-modules/template
index 0bd579a552a..c79a85f112d 100644
--- a/srcpkgs/perl-Time-modules/template
+++ b/srcpkgs/perl-Time-modules/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-modules
 version=2013.0912
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-TimeDate/template b/srcpkgs/perl-TimeDate/template
index d4614cb2855..ffde91659cd 100644
--- a/srcpkgs/perl-TimeDate/template
+++ b/srcpkgs/perl-TimeDate/template
@@ -2,7 +2,6 @@
 pkgname=perl-TimeDate
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tree-DAG_Node/template b/srcpkgs/perl-Tree-DAG_Node/template
index 54039240222..5e269fdb381 100644
--- a/srcpkgs/perl-Tree-DAG_Node/template
+++ b/srcpkgs/perl-Tree-DAG_Node/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-File-Slurp-Tiny"
 depends="${makedepends}"
-archs=noarch
 short_desc="Tree::DAG_Node - An N-ary tree"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/Tree-DAG_Node"
diff --git a/srcpkgs/perl-Try-Tiny/template b/srcpkgs/perl-Try-Tiny/template
index 0d80bce773c..3cd203ebb79 100644
--- a/srcpkgs/perl-Try-Tiny/template
+++ b/srcpkgs/perl-Try-Tiny/template
@@ -14,7 +14,6 @@ homepage="https://metacpan.org/release/Try-Tiny"
 license="MIT"
 distfiles="${CPAN_SITE}/XML/ETHER/Try-Tiny-${version}.tar.gz"
 checksum=da5bd0d5c903519bbf10bb9ba0cb7bcac0563882bcfe4503aee3fb143eddef6b
-archs=noarch
 
 post_install() {
 	vlicense LICENCE LICENSE
diff --git a/srcpkgs/perl-Types-Serialiser/template b/srcpkgs/perl-Types-Serialiser/template
index 8946b5040f1..dd496b881ba 100644
--- a/srcpkgs/perl-Types-Serialiser/template
+++ b/srcpkgs/perl-Types-Serialiser/template
@@ -2,7 +2,6 @@
 pkgname=perl-Types-Serialiser
 version=1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-URI/template b/srcpkgs/perl-URI/template
index 825be5c78fd..6cc6fce1a26 100644
--- a/srcpkgs/perl-URI/template
+++ b/srcpkgs/perl-URI/template
@@ -2,7 +2,6 @@
 pkgname=perl-URI
 version=1.76
 revision=1
-archs=noarch
 wrksrc="URI-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unicode-Tussle/template b/srcpkgs/perl-Unicode-Tussle/template
index 69503663e56..883dedfb1d0 100644
--- a/srcpkgs/perl-Unicode-Tussle/template
+++ b/srcpkgs/perl-Unicode-Tussle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unicode-Tussle
 version=1.111
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unix-Uptime/template b/srcpkgs/perl-Unix-Uptime/template
index 0c9454e3374..c522917d6f3 100644
--- a/srcpkgs/perl-Unix-Uptime/template
+++ b/srcpkgs/perl-Unix-Uptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unix-Uptime
 version=0.4000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-User-Identity/template b/srcpkgs/perl-User-Identity/template
index 53b43af710f..7a0e453bfb2 100644
--- a/srcpkgs/perl-User-Identity/template
+++ b/srcpkgs/perl-User-Identity/template
@@ -2,7 +2,6 @@
 pkgname=perl-User-Identity
 version=0.99
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WL/template b/srcpkgs/perl-WL/template
index 0f5fdbfe394..0553c2ea3e8 100644
--- a/srcpkgs/perl-WL/template
+++ b/srcpkgs/perl-WL/template
@@ -2,7 +2,6 @@
 pkgname=perl-WL
 version=0.92
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Form-UrlEncoded/template b/srcpkgs/perl-WWW-Form-UrlEncoded/template
index ccda0fc7384..e49fd8526d2 100644
--- a/srcpkgs/perl-WWW-Form-UrlEncoded/template
+++ b/srcpkgs/perl-WWW-Form-UrlEncoded/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Form-UrlEncoded
 version=0.26
 revision=1
-archs=noarch
 wrksrc="WWW-Form-UrlEncoded-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Mechanize/template b/srcpkgs/perl-WWW-Mechanize/template
index 6e00152f672..cd39fd9dc92 100644
--- a/srcpkgs/perl-WWW-Mechanize/template
+++ b/srcpkgs/perl-WWW-Mechanize/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Mechanize
 version=2.00
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-CGI perl-HTML-Form perl-HTML-Tree
diff --git a/srcpkgs/perl-WWW-RobotRules/template b/srcpkgs/perl-WWW-RobotRules/template
index c21656741a3..3c3b3c925e4 100644
--- a/srcpkgs/perl-WWW-RobotRules/template
+++ b/srcpkgs/perl-WWW-RobotRules/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-RobotRules
 version=6.02
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WebService-MusicBrainz/template b/srcpkgs/perl-WebService-MusicBrainz/template
index a4d281f6c13..4755a1d2c6b 100644
--- a/srcpkgs/perl-WebService-MusicBrainz/template
+++ b/srcpkgs/perl-WebService-MusicBrainz/template
@@ -2,7 +2,6 @@
 pkgname=perl-WebService-MusicBrainz
 version=1.0.5
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol-Other/template b/srcpkgs/perl-X11-Protocol-Other/template
index b076d9786c1..264a518269a 100644
--- a/srcpkgs/perl-X11-Protocol-Other/template
+++ b/srcpkgs/perl-X11-Protocol-Other/template
@@ -2,7 +2,6 @@
 pkgname=perl-X11-Protocol-Other
 version=31
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol/template b/srcpkgs/perl-X11-Protocol/template
index 5cae4bdc214..a8f979b1f28 100644
--- a/srcpkgs/perl-X11-Protocol/template
+++ b/srcpkgs/perl-X11-Protocol/template
@@ -3,7 +3,6 @@ pkgname=perl-X11-Protocol
 #TODO
 version=0.56
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-PrettyPrint/template b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
index 8e8cc1b013a..741cb36485d 100644
--- a/srcpkgs/perl-XML-LibXML-PrettyPrint/template
+++ b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-PrettyPrint
 version=0.006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-Simple/template b/srcpkgs/perl-XML-LibXML-Simple/template
index 1b4fb0e6ff3..7fe3b756c91 100644
--- a/srcpkgs/perl-XML-LibXML-Simple/template
+++ b/srcpkgs/perl-XML-LibXML-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-Simple
 version=1.01
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-XML-LibXML perl-File-Slurp-Tiny"
diff --git a/srcpkgs/perl-XML-NamespaceSupport/template b/srcpkgs/perl-XML-NamespaceSupport/template
index 4163007fae5..6bd16959aba 100644
--- a/srcpkgs/perl-XML-NamespaceSupport/template
+++ b/srcpkgs/perl-XML-NamespaceSupport/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-NamespaceSupport
 version=1.12
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Parser-Lite/template b/srcpkgs/perl-XML-Parser-Lite/template
index 3f2bea8e8f5..56b5725ab10 100644
--- a/srcpkgs/perl-XML-Parser-Lite/template
+++ b/srcpkgs/perl-XML-Parser-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Parser-Lite
 version=0.722
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX-Base/template b/srcpkgs/perl-XML-SAX-Base/template
index 4a7baac7fce..f9b270aa02f 100644
--- a/srcpkgs/perl-XML-SAX-Base/template
+++ b/srcpkgs/perl-XML-SAX-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX-Base
 version=1.09
 revision=2
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX/template b/srcpkgs/perl-XML-SAX/template
index 33a0de887bc..973a341ba84 100644
--- a/srcpkgs/perl-XML-SAX/template
+++ b/srcpkgs/perl-XML-SAX/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Simple/template b/srcpkgs/perl-XML-Simple/template
index 3b8f8c40688..4a0b0f4b6e8 100644
--- a/srcpkgs/perl-XML-Simple/template
+++ b/srcpkgs/perl-XML-Simple/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 maintainer="Orphaned <orphan@voidlinux.org>"
 distfiles="${CPAN_SITE}/XML/XML-Simple-$version.tar.gz"
 checksum=531fddaebea2416743eb5c4fdfab028f502123d9a220405a4100e68fc480dbf8
-archs=noarch
diff --git a/srcpkgs/perl-XML-Smart/template b/srcpkgs/perl-XML-Smart/template
index 622a2ecf1be..1dbe4ced2fc 100644
--- a/srcpkgs/perl-XML-Smart/template
+++ b/srcpkgs/perl-XML-Smart/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Smart
 version=1.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Twig/template b/srcpkgs/perl-XML-Twig/template
index 9ec76ea5248..ce3d0458926 100644
--- a/srcpkgs/perl-XML-Twig/template
+++ b/srcpkgs/perl-XML-Twig/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Twig
 version=3.52
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Writer/template b/srcpkgs/perl-XML-Writer/template
index cde06ed960b..31e76ae5831 100644
--- a/srcpkgs/perl-XML-Writer/template
+++ b/srcpkgs/perl-XML-Writer/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Writer
 version=0.625
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-XPath/template b/srcpkgs/perl-XML-XPath/template
index 7b7f6bde62b..a709df1ec21 100644
--- a/srcpkgs/perl-XML-XPath/template
+++ b/srcpkgs/perl-XML-XPath/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-XPath
 version=1.44
 revision=1
-archs=noarch
 wrksrc="XML-XPath-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML-Tiny/template b/srcpkgs/perl-YAML-Tiny/template
index 84a40add1d4..fd6de16f557 100644
--- a/srcpkgs/perl-YAML-Tiny/template
+++ b/srcpkgs/perl-YAML-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML-Tiny
 version=1.73
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML/template b/srcpkgs/perl-YAML/template
index b73e193ed08..7b8cd68384b 100644
--- a/srcpkgs/perl-YAML/template
+++ b/srcpkgs/perl-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-common-sense/template b/srcpkgs/perl-common-sense/template
index 2a2ec4a54ef..d651e673d95 100644
--- a/srcpkgs/perl-common-sense/template
+++ b/srcpkgs/perl-common-sense/template
@@ -2,7 +2,6 @@
 pkgname=perl-common-sense
 version=3.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-local-lib/template b/srcpkgs/perl-local-lib/template
index afc54934dcf..1204b0dba79 100644
--- a/srcpkgs/perl-local-lib/template
+++ b/srcpkgs/perl-local-lib/template
@@ -2,7 +2,6 @@
 pkgname=perl-local-lib
 version=2.000024
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-autoclean/template b/srcpkgs/perl-namespace-autoclean/template
index a523c1aba25..210020077ac 100644
--- a/srcpkgs/perl-namespace-autoclean/template
+++ b/srcpkgs/perl-namespace-autoclean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-autoclean
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-clean/template b/srcpkgs/perl-namespace-clean/template
index c0a01f76b59..6625382226c 100644
--- a/srcpkgs/perl-namespace-clean/template
+++ b/srcpkgs/perl-namespace-clean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-clean
 version=0.27
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-rename/template b/srcpkgs/perl-rename/template
index 5cd20da30ac..bdd861b7d43 100644
--- a/srcpkgs/perl-rename/template
+++ b/srcpkgs/perl-rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-rename
 version=1.9
 revision=2
-archs=noarch
 wrksrc="rename-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-strictures/template b/srcpkgs/perl-strictures/template
index f682d3b3732..8ecccbe64d6 100644
--- a/srcpkgs/perl-strictures/template
+++ b/srcpkgs/perl-strictures/template
@@ -2,7 +2,6 @@
 pkgname=perl-strictures
 version=2.000006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-tainting/template b/srcpkgs/perl-tainting/template
index f24735ecfba..313f390856c 100644
--- a/srcpkgs/perl-tainting/template
+++ b/srcpkgs/perl-tainting/template
@@ -2,7 +2,6 @@
 pkgname=perl-tainting
 version=0.02
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perltidy/template b/srcpkgs/perltidy/template
index 64d15fc211c..3db9d250866 100644
--- a/srcpkgs/perltidy/template
+++ b/srcpkgs/perltidy/template
@@ -2,7 +2,6 @@
 pkgname=perltidy
 version=20200619
 revision=1
-archs=noarch
 wrksrc="Perl-Tidy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/persepolis/template b/srcpkgs/persepolis/template
index 696afdd62e6..d04d25bca08 100644
--- a/srcpkgs/persepolis/template
+++ b/srcpkgs/persepolis/template
@@ -2,7 +2,6 @@
 pkgname=persepolis
 version=3.2.0
 revision=2
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools python3-setproctitle python3-requests
 	python3-psutil aria2 ffmpeg libnotify pulseaudio youtube-dl sound-theme-freedesktop
diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 6cfdf8170c0..97b33d3071c 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -2,7 +2,6 @@
 pkgname=peru
 version=1.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="peru"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pex/template b/srcpkgs/pex/template
index 105fb3e896d..544c117a4c1 100644
--- a/srcpkgs/pex/template
+++ b/srcpkgs/pex/template
@@ -2,7 +2,6 @@
 pkgname=pex
 version=2.1.15
 revision=1
-archs=noarch
 wrksrc="pex-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/pfetch/template b/srcpkgs/pfetch/template
index d67c2564bfb..992ed6619a4 100644
--- a/srcpkgs/pfetch/template
+++ b/srcpkgs/pfetch/template
@@ -2,7 +2,6 @@
 pkgname=pfetch
 version=0.6.0
 revision=1
-archs="noarch"
 short_desc="System information tool written in POSIX sh"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 license="MIT"
diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index 51835304d71..3120ac477fc 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -2,7 +2,6 @@
 pkgname=pgcli
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
diff --git a/srcpkgs/phoronix-test-suite/template b/srcpkgs/phoronix-test-suite/template
index 417e31c77bf..fe798298d6e 100644
--- a/srcpkgs/phoronix-test-suite/template
+++ b/srcpkgs/phoronix-test-suite/template
@@ -2,7 +2,6 @@
 pkgname=phoronix-test-suite
 version=9.6.1
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="php"
 short_desc="Comprehensive testing and benchmarking platform for Linux"
diff --git a/srcpkgs/phpMyAdmin/template b/srcpkgs/phpMyAdmin/template
index 8c82cc872b6..9a316fba310 100644
--- a/srcpkgs/phpMyAdmin/template
+++ b/srcpkgs/phpMyAdmin/template
@@ -2,7 +2,6 @@
 pkgname=phpMyAdmin
 version=5.0.2
 revision=1
-archs=noarch
 wrksrc="phpMyAdmin-${version}-all-languages"
 conf_files="/etc/webapps/phpMyAdmin/config.inc.php"
 depends="php mysql"
diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index ca1f29c11de..cdd41a84cfd 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -2,7 +2,6 @@
 pkgname=picard
 version=2.3.2
 revision=1
-archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module
 make_install_args="--disable-autoupdate"
diff --git a/srcpkgs/pingus/template b/srcpkgs/pingus/template
index 5551b01171f..b7277d10be3 100644
--- a/srcpkgs/pingus/template
+++ b/srcpkgs/pingus/template
@@ -29,7 +29,6 @@ do_install() {
 
 pingus-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pingus
 	}
diff --git a/srcpkgs/pioneer/template b/srcpkgs/pioneer/template
index b8eb8607375..ce00e4469fa 100644
--- a/srcpkgs/pioneer/template
+++ b/srcpkgs/pioneer/template
@@ -33,7 +33,6 @@ pioneer-modelcompiler_package() {
 
 pioneer-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pioneer
 	}
diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index 0f54fe32153..ac49322856e 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -2,7 +2,6 @@
 pkgname=piper
 version=0.5.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext libratbag pkg-config glib-devel python3-lxml"
 makedepends="python3-devel python3-gobject-devel"
diff --git a/srcpkgs/pipewire/template b/srcpkgs/pipewire/template
index 494f2296327..d6a31ad764a 100644
--- a/srcpkgs/pipewire/template
+++ b/srcpkgs/pipewire/template
@@ -151,7 +151,6 @@ libjack-pipewire_package() {
 }
 
 pipewire-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/plantuml/template b/srcpkgs/plantuml/template
index a28ec87cf43..fd71dd487f0 100644
--- a/srcpkgs/plantuml/template
+++ b/srcpkgs/plantuml/template
@@ -3,7 +3,6 @@ pkgname=plantuml
 reverts="8047_1 8053_1 8059_1"
 version=1.2020.15
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="virtual?java-environment graphviz"
diff --git a/srcpkgs/plasma-workspace-wallpapers/template b/srcpkgs/plasma-workspace-wallpapers/template
index 03f0cd0aff8..4a7d9c5a3cd 100644
--- a/srcpkgs/plasma-workspace-wallpapers/template
+++ b/srcpkgs/plasma-workspace-wallpapers/template
@@ -2,7 +2,6 @@
 pkgname=plasma-workspace-wallpapers
 version=5.19.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/plata-theme/template b/srcpkgs/plata-theme/template
index 7701b8598c7..f0da75a1120 100644
--- a/srcpkgs/plata-theme/template
+++ b/srcpkgs/plata-theme/template
@@ -2,7 +2,6 @@
 pkgname=plata-theme
 version=0.9.8
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-parallel --enable-telegram"
 hostmakedepends="automake libtool pkg-config glib-devel libxml2 sassc inkscape
diff --git a/srcpkgs/platformio/template b/srcpkgs/platformio/template
index b8ec9a97db9..6831a5cfab7 100644
--- a/srcpkgs/platformio/template
+++ b/srcpkgs/platformio/template
@@ -2,7 +2,6 @@
 pkgname=platformio
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="platformio-core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index 6d3483ae251..f5c171ff726 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -2,7 +2,6 @@
 pkgname=playitslowly
 version=1.5.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 python3-gobject gtk+3 gstreamer1 gst-plugins-base1 gst-plugins-good1
diff --git a/srcpkgs/plymouth/template b/srcpkgs/plymouth/template
index e60716016a8..bc5466e18c8 100644
--- a/srcpkgs/plymouth/template
+++ b/srcpkgs/plymouth/template
@@ -48,7 +48,6 @@ plymouth-devel_package() {
 
 plymouth-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	depends="void-artwork"
 	pkg_install() {
 		vmove usr/share/plymouth/themes
diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index c2b2d92e87a..c0e4377a1d7 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -2,7 +2,6 @@
 pkgname=pmbootstrap
 version=1.22.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools coreutils procps-ng libressl git"
diff --git a/srcpkgs/po4a/template b/srcpkgs/po4a/template
index afa923f9e3e..9e9a726118e 100644
--- a/srcpkgs/po4a/template
+++ b/srcpkgs/po4a/template
@@ -2,7 +2,6 @@
 pkgname=po4a
 version=0.61
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 _perldeps="perl perl-Text-WrapI18N perl-Term-ReadKey perl-Unicode-LineBreak
  perl-SGMLSpm perl-YAML-Tiny"
diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index eee3691d959..072c9186985 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -2,7 +2,6 @@
 pkgname=pockyt
 version=1.2
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-parse"
diff --git a/srcpkgs/podman-compose/template b/srcpkgs/podman-compose/template
index 4f4467de689..7df91e17cb8 100644
--- a/srcpkgs/podman-compose/template
+++ b/srcpkgs/podman-compose/template
@@ -2,7 +2,6 @@
 pkgname=podman-compose
 version=0.1.5
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-yaml"
 depends="${hostmakedepends} podman"
diff --git a/srcpkgs/polysh/template b/srcpkgs/polysh/template
index 36e743fabbb..a374979aeab 100644
--- a/srcpkgs/polysh/template
+++ b/srcpkgs/polysh/template
@@ -2,7 +2,6 @@
 pkgname=polysh
 version=0.4
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="polysh"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/pony-stable/template b/srcpkgs/pony-stable/template
index 4bd27ef0538..87694cad4ed 100644
--- a/srcpkgs/pony-stable/template
+++ b/srcpkgs/pony-stable/template
@@ -2,7 +2,6 @@
 pkgname=pony-stable
 version=0.2.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Simple dependency manager for the Pony language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponyc/template b/srcpkgs/ponyc/template
index 76f6e23475a..b7a79ce00a1 100644
--- a/srcpkgs/ponyc/template
+++ b/srcpkgs/ponyc/template
@@ -2,7 +2,6 @@
 pkgname=ponyc
 version=0.33.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Pony programming language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponysay/template b/srcpkgs/ponysay/template
index 5e916c5d485..ea0e87a5280 100644
--- a/srcpkgs/ponysay/template
+++ b/srcpkgs/ponysay/template
@@ -2,7 +2,6 @@
 pkgname=ponysay
 version=3.0.3
 revision=4
-archs=noarch
 hostmakedepends="python3 texinfo"
 depends="python3"
 short_desc="Pony rewrite of cowsay"
diff --git a/srcpkgs/poppler-data/template b/srcpkgs/poppler-data/template
index a83e7dbcf65..babd5990158 100644
--- a/srcpkgs/poppler-data/template
+++ b/srcpkgs/poppler-data/template
@@ -2,7 +2,6 @@
 pkgname=poppler-data
 version=0.4.9
 revision=1
-archs=noarch
 short_desc="Encoding data for the poppler PDF rendering library"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, GPL-2.0-or-later, BSD-3-Clause"
diff --git a/srcpkgs/postgresql/template b/srcpkgs/postgresql/template
index 2880d5f673b..b68ff9ca9f0 100644
--- a/srcpkgs/postgresql/template
+++ b/srcpkgs/postgresql/template
@@ -74,7 +74,6 @@ post_install() {
 
 postgresql-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/postgresql12/template b/srcpkgs/postgresql12/template
index 7d724e174e4..86ba8e7e9ff 100644
--- a/srcpkgs/postgresql12/template
+++ b/srcpkgs/postgresql12/template
@@ -104,7 +104,6 @@ _substitute() {
 
 postgresql12-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove ${_prefix}/share/doc
 	}
diff --git a/srcpkgs/printrun/template b/srcpkgs/printrun/template
index 3784d97eaa4..bdc6ce8d85c 100644
--- a/srcpkgs/printrun/template
+++ b/srcpkgs/printrun/template
@@ -2,7 +2,6 @@
 pkgname=printrun
 version=1.6.0
 revision=3
-archs=noarch
 wrksrc="Printrun-printrun-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools python-pyserial"
diff --git a/srcpkgs/pritunl-client/template b/srcpkgs/pritunl-client/template
index d61a2bfc7bc..a184a2f925c 100644
--- a/srcpkgs/pritunl-client/template
+++ b/srcpkgs/pritunl-client/template
@@ -2,7 +2,6 @@
 pkgname=pritunl-client
 version=1.0.1865.25
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="pritunl-client"
 make_install_args="--no-upstart --no-systemd"
diff --git a/srcpkgs/profile-cleaner/template b/srcpkgs/profile-cleaner/template
index 0128620c1af..1d5e7ba2237 100644
--- a/srcpkgs/profile-cleaner/template
+++ b/srcpkgs/profile-cleaner/template
@@ -2,7 +2,6 @@
 pkgname=profile-cleaner
 version=2.37
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Reduces profile size by cleaning their sqlite databases"
 depends="bash sqlite bc parallel findutils"
diff --git a/srcpkgs/protonvpn-cli/template b/srcpkgs/protonvpn-cli/template
index fb8ed8e0b57..081cbeea0b1 100644
--- a/srcpkgs/protonvpn-cli/template
+++ b/srcpkgs/protonvpn-cli/template
@@ -2,7 +2,6 @@
 pkgname=protonvpn-cli
 version=2.2.4
 revision=1
-archs=noarch
 wrksrc="linux-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pslist/template b/srcpkgs/pslist/template
index 52f36b6c129..673b4d932a9 100644
--- a/srcpkgs/pslist/template
+++ b/srcpkgs/pslist/template
@@ -2,7 +2,6 @@
 pkgname=pslist
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANDIR=/usr/share/man/man"
 make_check_target="test"
diff --git a/srcpkgs/psuinfo/template b/srcpkgs/psuinfo/template
index ca491f25bef..0705658530b 100644
--- a/srcpkgs/psuinfo/template
+++ b/srcpkgs/psuinfo/template
@@ -2,7 +2,6 @@
 pkgname=psuinfo
 version=1.1
 revision=1
-archs=noarch
 depends="python3>=3.5 python3-psutil"
 short_desc="Script to display customizable system info in Tint2 or other panels"
 maintainer="Piotr Miller <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/public-inbox/template b/srcpkgs/public-inbox/template
index 7a7198e79b5..ab9f82f6a82 100644
--- a/srcpkgs/public-inbox/template
+++ b/srcpkgs/public-inbox/template
@@ -2,7 +2,6 @@
 pkgname=public-inbox
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version/pre/-pre}"
 build_style=perl-module
 hostmakedepends="git perl perl-DBD-SQLite perl-Danga-Socket
diff --git a/srcpkgs/pulsemixer/template b/srcpkgs/pulsemixer/template
index 918b5af771a..e9f2c4f272d 100644
--- a/srcpkgs/pulsemixer/template
+++ b/srcpkgs/pulsemixer/template
@@ -2,7 +2,6 @@
 pkgname=pulsemixer
 version=1.5.1
 revision=1
-archs=noarch
 depends="python3 libpulseaudio"
 short_desc="CLI and curses mixer for Pulseaudio"
 maintainer="Dean Thomson <mrrobot@fsociety.info>"
diff --git a/srcpkgs/puppet/template b/srcpkgs/puppet/template
index 404319be63e..8156914f5d3 100644
--- a/srcpkgs/puppet/template
+++ b/srcpkgs/puppet/template
@@ -2,7 +2,6 @@
 pkgname=puppet
 version=6.16.0
 revision=1
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby facter-devel hiera which"
 makedepends="facter-devel"
diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index c0becb7bf58..e18b9ae3b5e 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -2,7 +2,6 @@
 pkgname=py3status
 version=3.28
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pyudev"
diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index d0594aa77f4..c3113303009 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -4,7 +4,6 @@ version=0.12.4
 revision=3
 build_style=python3-module
 pycompile_module="pychess"
-archs=noarch
 hostmakedepends="python3-setuptools"
 depends="gobject-introspection gst-plugins-base1 gtksourceview python3-gobject"
 short_desc="A GTK chess client written in Python"
diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index c9066259862..d4480023613 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -2,7 +2,6 @@
 pkgname=pycp
 version=8.0.8
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pycp"
 hostmakedepends="help2man python3-setuptools"
diff --git a/srcpkgs/pylint/template b/srcpkgs/pylint/template
index bd44b2c2d7d..3cf2c6f5687 100644
--- a/srcpkgs/pylint/template
+++ b/srcpkgs/pylint/template
@@ -2,7 +2,6 @@
 pkgname=pylint
 version=2.4.4
 revision=2
-archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module
 pycompile_module="pylint"
diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 808c298c7b5..7ed0770161b 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -2,7 +2,6 @@
 pkgname=pyradio
 version=0.8.7.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/pysolfc-cardsets/template b/srcpkgs/pysolfc-cardsets/template
index 2b1786bbce4..19a94b652f6 100644
--- a/srcpkgs/pysolfc-cardsets/template
+++ b/srcpkgs/pysolfc-cardsets/template
@@ -3,7 +3,6 @@ pkgname=pysolfc-cardsets
 version=2.0
 revision=1
 wrksrc="PySolFC-Cardsets-${version}"
-archs=noarch
 build_style=fetch
 short_desc="PySolFC Cardsets"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index b634a8da817..9f405513f6c 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -2,7 +2,6 @@
 pkgname=pysolfc
 version=2.10.1
 revision=1
-archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="gettext python3-pygame python3-random2 python3-six
diff --git a/srcpkgs/pystopwatch/template b/srcpkgs/pystopwatch/template
index b10e194b021..1540db0c152 100644
--- a/srcpkgs/pystopwatch/template
+++ b/srcpkgs/pystopwatch/template
@@ -2,7 +2,6 @@
 pkgname=pystopwatch
 version=2019
 revision=1
-archs=noarch
 makedepends="pygtk-devel librsvg-devel"
 depends="python pygtk librsvg"
 short_desc="GTK2+ stopwatch written in Python"
diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index a8c2e30c74b..471aef78fd3 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,6 @@
 pkgname=python-Arrow
 version=0.15.5
 revision=1
-archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/a/arrow/arrow-${version}.tar.gz"
 checksum=5390e464e2c5f76971b60ffa7ee29c598c7501a294bc9f5e6dadcb251a5d027b
 
 python3-Arrow_package() {
-	archs=noarch
 	depends="python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 2b175b4ecba..d8482560e9d 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Babel
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-pytz"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="babel:pybabel:/usr/bin/pybabel3"
diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 956348442ff..b8f87d432bf 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -2,7 +2,6 @@
 pkgname=python-BeautifulSoup4
 version=4.8.2
 revision=1
-archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-BeautifulSoup4_package() {
-	archs=noarch
 	depends="python3 python3-soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index ce0447f4d35..d0f78cc8a5e 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -2,7 +2,6 @@
 pkgname=python-Cheroot
 version=8.3.1
 revision=1
-archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-Cheroot_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-more-itertools
 	 python3-jaraco.functools"
 	alternatives="cheroot:cheroot:/usr/bin/cheroot3"
diff --git a/srcpkgs/python-CherryPy/template b/srcpkgs/python-CherryPy/template
index b1e17cca37a..dc4db21f582 100644
--- a/srcpkgs/python-CherryPy/template
+++ b/srcpkgs/python-CherryPy/template
@@ -3,7 +3,6 @@ pkgname=python-CherryPy
 reverts="18.0.1_1 18.0.0_1"
 version=17.4.2
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python2-module
 pycompile_module="cherrypy"
diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 6549f5c0fae..e3049bfb0c8 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -2,7 +2,6 @@
 pkgname=python-Django
 version=1.11.29
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 3ca0de18077..d90c614b497 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Assets
 version=0.12
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_assets.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Assets_package() {
-	archs=noarch
 	depends="python3-Flask python3-webassets"
 	pycompile_module="flask_assets.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index e5b600bf922..ec0457edaa8 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Babel
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Babel python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index a9b982bdce6..8ccc741026f 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Login
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Login_package() {
-	archs=noarch
 	depends="python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index edf5c13560e..a5f93f870ae 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-OAuthlib
 version=0.9.5
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-OAuthlib_package() {
-	archs=noarch
 	depends="python3-Flask python3-requests-oauthlib"
 	pycompile_module="flask_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index ebac828a5b1..66b81795f21 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Script
 version=2.0.6
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_script"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Script_package() {
-	archs=noarch
 	depends="python3-Flask"
 	pycompile_module="flask_script"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index f72307f79be..5fbba684f2d 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-WTF
 version=0.14.3
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-WTF_package() {
-	archs=noarch
 	depends="python3-Flask python3-WTForms"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 1aa7f5208ed..c408c68feaf 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-Flask_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Werkzeug python3-itsdangerous python3-click"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="flask:flask:/usr/bin/flask3"
diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 232429265f1..d04bb9d9bf6 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -2,7 +2,6 @@
 pkgname=python-GitPython
 version=2.1.11
 revision=2
-archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module
 pycompile_module="git"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-GitPython_package() {
-	archs=noarch
 	depends="python3-gitdb"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index aaae9fcd002..57f7d363e0f 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -2,7 +2,6 @@
 pkgname=python-IPy
 version=1.00
 revision=2
-archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module
 pycompile_module="IPy.py"
@@ -21,7 +20,6 @@ post_install() {
 
 python3-IPy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="IPy.py"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index 3fcd44dc198..b7b7acd1086 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -2,7 +2,6 @@
 pkgname=python-Jinja2
 version=2.10.1
 revision=2
-archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module
 pycompile_module="jinja2"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-Jinja2_package() {
-	archs=noarch
 	depends="python3-MarkupSafe"
 	pycompile_module="jinja2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index f0184179b83..547e02dee29 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -2,7 +2,6 @@
 pkgname=python-Mako
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module
 pycompile_module="mako"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-Mako_package() {
-	archs=noarch
 	pycompile_module="mako"
 	depends="python3-setuptools python3-MarkupSafe"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index fa75ca590cc..7e426c6463c 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python-Markdown
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index 1eb15b49301..7e120f7f16a 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -2,7 +2,6 @@
 pkgname=python-Markups
 version=3.0.0
 revision=3
-archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Markups_package() {
-	archs=noarch
 	depends="python3 python3-markdown-math"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 8b8c4f5f1e6..cfb5ce7ee5e 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -2,7 +2,6 @@
 pkgname=python-MiniMock
 version=1.2.8
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="minimock.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-MiniMock_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="minimock.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyHamcrest/template b/srcpkgs/python-PyHamcrest/template
index 48f001595aa..f105d8557af 100644
--- a/srcpkgs/python-PyHamcrest/template
+++ b/srcpkgs/python-PyHamcrest/template
@@ -2,7 +2,6 @@
 pkgname=python-PyHamcrest
 version=1.9.0
 revision=2
-archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module
 pycompile_module="hamcrest"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-PyHamcrest_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="hamcrest"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index 79709575673..a5afbb8b356 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -2,7 +2,6 @@
 pkgname=python-PyOpenGL
 version=3.1.5
 revision=1
-archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-PyOpenGL_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index d464e59d617..cf6ceb24d86 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -2,7 +2,6 @@
 pkgname=python-Pygments
 version=2.5.2
 revision=1
-archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-Pygments_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pygments:pygmentize:/usr/bin/pygmentize3"
diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index 3eba13d0e9c..2a71b87f354 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -2,7 +2,6 @@
 pkgname=python-Pyro4
 version=4.80
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -34,7 +33,6 @@ python3-Pyro4_package() {
 	 pyro4:pyro4-ns:/usr/bin/pyro4-ns3
 	 pyro4:pyro4-nsc:/usr/bin/pyro4-nsc3
 	 pyro4:pyro4-test-echoserver:/usr/bin/pyro4-test-echoserver3"
-	archs=noarch
 	depends="python3-setuptools python3-serpent"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index 8d2db9a02b3..01c58198024 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -2,7 +2,6 @@
 pkgname=python-SPARQLWrapper
 version=1.8.4
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="SPARQLWrapper"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/S/SPARQLWrapper/SPARQLWrapper-${version}.tar.gz"
 checksum=21928e7a97f565e772cdeeb0abad428960f4307e3a13dbdd8f6d3da8a6a506c9
 
 python3-SPARQLWrapper_package() {
-	archs=noarch
 	depends="python3-rdflib"
 	pycompile_module="SPARQLWrapper"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 444eb1427d6..244948a7621 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python-Unidecode
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module
 pycompile_module="unidecode"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-Unidecode_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="unidecode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 33f16940cb8..cdc03a45a1f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -2,7 +2,6 @@
 pkgname=python-WTForms
 version=2.2.1
 revision=2
-archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module
 pycompile_module="wtforms"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-WTForms_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wtforms"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index b4bf1071851..5fcd9781c3d 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -2,7 +2,6 @@
 pkgname=python-Werkzeug
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-Werkzeug_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index 66856b206a7..92cb5811a13 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -3,7 +3,6 @@ pkgname=python-Whoosh
 version=2.7.4
 revision=2
 wrksrc="Whoosh-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="whoosh"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 python3-Whoosh_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="whoosh"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 5ad8b234f5d..bc8e29f99a0 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -2,7 +2,6 @@
 pkgname=python-Yapsy
 version=1.12.2
 revision=2
-archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module
 pycompile_module="yapsy"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Yapsy_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="yapsy"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index f9621a9c8dc..d51c8447d4b 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -12,7 +12,6 @@ license="MIT"
 homepage="http://jwilk.net/software/python-aalib"
 distfiles="${PYPI_SITE}/p/python-aalib/python-aalib-${version}.tar.gz"
 checksum=c39071629e7962dcd926faf0135dc73e2a8eb5db9a53bc2ebe5965f8c39165a2
-archs=noarch
 
 post_install() {
 	sed -n '3,21p' < setup.py > LICENSE
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-aalib_package() {
-	archs=noarch
 	pycompile_module="aalib.py"
 	depends="aalib python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index b33009d5efb..5530541c6c4 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -2,7 +2,6 @@
 pkgname=python-alabaster
 version=0.7.12
 revision=2
-archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module
 pycompile_module="alabaster"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-alabaster_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="alabaster"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 2b57aae5674..644326085e5 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -2,7 +2,6 @@
 pkgname=python-alembic
 version=1.4.2
 revision=1
-archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-alembic_package() {
-	archs=noarch
 	depends="python3-Mako python3-SQLAlchemy python3-dateutil python3-editor"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index 3663a82f0cc..1756b99acab 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -2,7 +2,6 @@
 pkgname=python-ansicolor
 version=0.2.6
 revision=3
-archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module
 pycompile_module="ansicolor"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/ansicolor/ansicolor-${version}.tar.gz"
 checksum=d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d
 
 python3-ansicolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ansicolor"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index 68f8fa5cb4f..bf3b69cce99 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -2,7 +2,6 @@
 pkgname=python-appdirs
 version=1.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-appdirs_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 656da441757..1d4aae379bc 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -2,7 +2,6 @@
 pkgname=python-argh
 version=0.26.2
 revision=2
-archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module
 pycompile_module="argh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/argh/argh-${version}.tar.gz"
 checksum=e9535b8c84dc9571a48999094fda7f33e63c3f1b74f3e5f3ac0105a58405bb65
 
 python3-argh_package() {
-	archs=noarch
 	pycompile_module="argh"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 4f245755dcf..b1d370ba61c 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -2,7 +2,6 @@
 pkgname=python-arxiv2bib
 version=1.0.8
 revision=3
-archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module
 pycompile_module="arxiv2bib"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-arxiv2bib_package() {
-	archs=noarch
 	pycompile_module="arxiv2bib.py"
 	alternatives="arxiv2bib:arxiv2bib:/usr/bin/arxiv2bib3"
 	depends="python3-setuptools"
diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index e7ffe7415fc..7cf0624d22e 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -2,7 +2,6 @@
 pkgname=python-asn1crypto
 version=0.24.0
 revision=2
-archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module
 pycompile_module="asn1crypto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-asn1crypto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="asn1crypto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-astroid/template b/srcpkgs/python-astroid/template
index 9da6aebae87..71cb18836cb 100644
--- a/srcpkgs/python-astroid/template
+++ b/srcpkgs/python-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python-astroid
 version=1.6.6
 revision=2
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python2-module
 pycompile_module="astroid"
diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index ec411d981d4..5eebc020c12 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -2,7 +2,6 @@
 pkgname=python-atomicwrites
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module
 pycompile_module="atomicwrites"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-atomicwrites_package() {
-	archs=noarch
 	pycompile_module="atomicwrites"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 0141d97f85d..f7923ca89d1 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -3,7 +3,6 @@
 pkgname=python-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python"
diff --git a/srcpkgs/python-attrs/template b/srcpkgs/python-attrs/template
index 6e2297a9553..644601aa77b 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -2,7 +2,6 @@
 pkgname=python-attrs
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module
 pycompile_module="attr"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-attrs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="attr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index bc878d4b82d..55b3fc03ff5 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -2,7 +2,6 @@
 pkgname=python-audioread
 version=2.1.8
 revision=2
-archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module
 pycompile_module="audioread"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-audioread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="audioread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-automat/template b/srcpkgs/python-automat/template
index 66dad2f84bc..a73c9095962 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -2,7 +2,6 @@
 pkgname=python-automat
 version=20.2.0
 revision=1
-archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -32,7 +31,6 @@ post_install() {
 }
 
 python3-automat_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-attrs python3-six"
 	alternatives="automat:automat-visualize:/usr/bin/automat-visualize3"
diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index 74480b5a9fe..9ab879f9e87 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -2,7 +2,6 @@
 pkgname=python-axolotl
 version=0.2.3
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="axolotl"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=fe0e8147423f8dc4ec1077ea18ca5a54091366d22faa903a772ee6ea88b88daf
 
 python3-axolotl_package() {
-	archs=noarch
 	depends="python3-axolotl-curve25519 python3-cryptography python3-protobuf"
 	pycompile_module="axolotl"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-b2sdk/template b/srcpkgs/python-b2sdk/template
index 8c51c62d603..5ea032ed0dc 100644
--- a/srcpkgs/python-b2sdk/template
+++ b/srcpkgs/python-b2sdk/template
@@ -3,7 +3,6 @@
 pkgname=python-b2sdk
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc="b2sdk-${version}"
 build_style=python3-module
 pycompile_module="b2sdk"
diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index 47d5bb176cc..6de0b031414 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -2,7 +2,6 @@
 pkgname=python-babelfish
 version=0.5.5
 revision=2
-archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module
 pycompile_module="babelfish"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-babelfish_package() {
-	archs=noarch
 	pycompile_module="babelfish"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index a55af727ab6..d43ccd1d1c7 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -2,7 +2,6 @@
 pkgname=python-backcall
 version=0.1.0
 revision=2
-archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module
 pycompile_module="backcall"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/backcall/backcall-${version}.tar.gz"
 checksum=38ecd85be2c1e78f77fd91700c76e14667dc21e2713b63876c0eb901196e01e4
 
 python3-backcall_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="backcall"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backports.configparser/template b/srcpkgs/python-backports.configparser/template
index 8a641320820..91d60205364 100644
--- a/srcpkgs/python-backports.configparser/template
+++ b/srcpkgs/python-backports.configparser/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.configparser
 version=3.5.0
 revision=1
-archs=noarch
 wrksrc="configparser-${version}"
 build_style=python2-module
 pycompile_module="backports configparser.py"
diff --git a/srcpkgs/python-backports.functools_lru_cache/template b/srcpkgs/python-backports.functools_lru_cache/template
index 0d268c9efa6..4829107b32d 100644
--- a/srcpkgs/python-backports.functools_lru_cache/template
+++ b/srcpkgs/python-backports.functools_lru_cache/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.functools_lru_cache
 version=1.5
 revision=1
-archs=noarch
 wrksrc="backports.functools_lru_cache-${version}"
 build_style=python2-module
 pycompile_module="backports/functools_lru_cache.py"
diff --git a/srcpkgs/python-backports.shutil_get_terminal_size/template b/srcpkgs/python-backports.shutil_get_terminal_size/template
index 2e9a5af7f52..8d0923ea0d1 100644
--- a/srcpkgs/python-backports.shutil_get_terminal_size/template
+++ b/srcpkgs/python-backports.shutil_get_terminal_size/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.shutil_get_terminal_size
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="backports.shutil_get_terminal_size-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports.ssl_match_hostname/template b/srcpkgs/python-backports.ssl_match_hostname/template
index dd4d76b47db..cd15b2c217c 100644
--- a/srcpkgs/python-backports.ssl_match_hostname/template
+++ b/srcpkgs/python-backports.ssl_match_hostname/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.ssl_match_hostname
 version=3.5.0.1
 revision=3
-archs=noarch
 wrksrc="backports.ssl_match_hostname-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports/template b/srcpkgs/python-backports/template
index eec822727a8..ab40751073d 100644
--- a/srcpkgs/python-backports/template
+++ b/srcpkgs/python-backports/template
@@ -2,7 +2,6 @@
 pkgname=python-backports
 version=1.0
 revision=3
-archs=noarch
 wrksrc="backports-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports_abc/template b/srcpkgs/python-backports_abc/template
index 9d2e5565f02..0d23f9bd983 100644
--- a/srcpkgs/python-backports_abc/template
+++ b/srcpkgs/python-backports_abc/template
@@ -2,7 +2,6 @@
 pkgname=python-backports_abc
 version=0.5
 revision=1
-archs=noarch
 wrksrc="backports_abc-${version}"
 build_style=python2-module
 pycompile_module="backports_abc.py"
diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index c40115c9fb8..ae63106cf4b 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -2,7 +2,6 @@
 pkgname=python-bibtexparser
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module
 pycompile_module="bibtexparser"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bibtexparser/bibtexparser-${version}.tar.gz"
 checksum=df8966ea752db6d74657a69b9d684a61aa33457ad6d9d50e41c50ef7f374907f
 
 python3-bibtexparser_package() {
-	archs=noarch
 	pycompile_module="bibtexparser"
 	depends="python3-parsing python3-future"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 448ea60d53d..6e70a5976c1 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -2,7 +2,6 @@
 pkgname=python-bitbucket-api
 version=0.5.0
 revision=4
-archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module
 pycompile_module="bitbucket"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-bitbucket-api_package() {
-	archs=noarch
 	depends="python3-requests-oauthlib python3-sh"
 	pycompile_module="bitbucket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index 84b0f132eba..e298a86007b 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -2,7 +2,6 @@
 pkgname=python-bleach
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bleach/bleach-${version}.tar.gz"
 checksum=aa8b870d0f46965bac2c073a93444636b0e1ca74e9777e34f03dd494b8a59d48
 
 python3-bleach_package() {
-	archs=noarch
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index baa4938c328..314dda27c56 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -2,7 +2,6 @@
 pkgname=python-blessings
 version=1.7
 revision=2
-archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module
 pycompile_module="blessings"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-blessings_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="blessings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index b6d1d63d19a..d1df76cb181 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -2,7 +2,6 @@
 pkgname=python-blinker
 version=1.4
 revision=4
-archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-blinker_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="blinker"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 684c00feee0..583c1b3c3b2 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -2,7 +2,6 @@
 pkgname=python-boto
 version=2.49.0
 revision=2
-archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module
 pycompile_module="boto"
@@ -41,7 +40,6 @@ post_install() {
 }
 
 python3-boto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="boto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index 600559839d2..5430a3ed15f 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -2,7 +2,6 @@
 pkgname=python-botocore
 version=1.17.28
 revision=1
-archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/botocore/archive/${version}.tar.gz"
 checksum=c9a4b4ffedeff89848a899bd4634be46a21a190690b505c2050888c0a5447936
 
 python3-botocore_package() {
-	archs=noarch
 	depends="python3-dateutil python3-docutils python3-jmespath python3-urllib3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 0ffc8adfec7..67ce25c0e25 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -2,7 +2,6 @@
 pkgname=python-bottle
 version=0.12.17
 revision=2
-archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module
 pycompile_module="bottle"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-bottle_package() {
-	archs=noarch
 	pycompile_module="bottle"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index 16c89346565..101466a7524 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -2,7 +2,6 @@
 pkgname=python-cached-property
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module
 pycompile_module="cached_property.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cached-property_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cached_property.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index c057739b03d..b505bb1b258 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -2,7 +2,6 @@
 pkgname=python-cairocffi
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module
 pycompile_module="cairocffi"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cairocffi_package() {
-	archs=noarch
 	depends="python3-cffi"
 	pycompile_module="cairocffi"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index bd502bbbddf..8874a5e3dd6 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -2,7 +2,6 @@
 pkgname=python-chardet
 version=3.0.4
 revision=3
-archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae
 alternatives="chardet:chardetect:/usr/bin/chardetect2"
 
 python3-chardet_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="chardet"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 7faa0f4cce9..e93599c9a9c 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -2,7 +2,6 @@
 pkgname=python-chroot
 version=0.9.18
 revision=2
-archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module
 pycompile_module="pychroot"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-chroot_package() {
-	archs=noarch
 	depends="python3-snakeoil"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="chroot:pychroot:/usr/bin/pychroot3"
diff --git a/srcpkgs/python-cliapp/template b/srcpkgs/python-cliapp/template
index fd2c8cc4d13..c79ac262aa5 100644
--- a/srcpkgs/python-cliapp/template
+++ b/srcpkgs/python-cliapp/template
@@ -2,7 +2,6 @@
 pkgname=python-cliapp
 version=1.20180121
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="cliapp"
 hostmakedepends="python-setuptools python-yaml"
diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index b57a7a74b4a..663e72fc0b0 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -2,7 +2,6 @@
 pkgname=python-click-log
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"
 pycompile_module="click_log"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-log_package() {
-	archs=noarch
 	pycompile_module="click_log"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 49b4a4a9aae..39de1538611 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -2,7 +2,6 @@
 pkgname=python-click-threading
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-threading_package() {
-	archs=noarch
 	pycompile_module="click_threading"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 40d1b25a7ab..4f6444c307c 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -2,7 +2,6 @@
 pkgname=python-click
 version=7.1.2
 revision=1
-archs=noarch
 wrksrc="click-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-click_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 9ae2e19435c..13fdb17246b 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -2,7 +2,6 @@
 pkgname=python-codespell
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module
 pycompile_module="codespell_lib"
@@ -17,7 +16,6 @@ checksum=53d22aefa1daf3365ca4625877271d23d143c0a92c16e55daf5cd14b6494b8f4
 alternatives="python-codespell:codespell:/usr/bin/codespell2"
 
 python3-codespell_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="codespell_lib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 09562385243..db815379183 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -2,7 +2,6 @@
 pkgname=python-colorama
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module
 pycompile_module="colorama"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-colorama_package() {
-	archs=noarch
 	pycompile_module="colorama"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index a8cb5d5d34e..3848feac2d6 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -2,7 +2,6 @@
 pkgname=python-configobj
 version=5.0.6
 revision=6
-archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module
 pycompile_module="_version.py configobj.py validate.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-configobj_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="_version.py configobj.py validate.py"
 	depends="python3-six"
diff --git a/srcpkgs/python-constantly/template b/srcpkgs/python-constantly/template
index 9160aec9edd..34edf105840 100644
--- a/srcpkgs/python-constantly/template
+++ b/srcpkgs/python-constantly/template
@@ -2,7 +2,6 @@
 pkgname=python-constantly
 version=15.1.0
 revision=3
-archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module
 pycompile_module="constantly"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-constantly_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="constantly"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index d6d0b8010e2..5297e842c14 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -2,7 +2,6 @@
 pkgname=python-construct
 version=2.9.45
 revision=3
-archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module
 pycompile_module="construct"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-construct_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="construct"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-contextlib2/template b/srcpkgs/python-contextlib2/template
index 97ef11550c8..6bd95147447 100644
--- a/srcpkgs/python-contextlib2/template
+++ b/srcpkgs/python-contextlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-contextlib2
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="contextlib2-${version}"
 build_style=python2-module
 pycompile_module="contextlib2.py"
diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index 8c5d65fe260..132980d887a 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -2,7 +2,6 @@
 pkgname=python-cram
 version=0.7
 revision=3
-archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module
 pycompile_module="cram"
@@ -17,7 +16,6 @@ checksum=7da7445af2ce15b90aad5ec4792f857cef5786d71f14377e9eb994d8b8337f2f
 alternatives="cram:cram:/usr/bin/cram2"
 
 python3-cram_package() {
-	archs=noarch
 	pycompile_module="cram"
 	alternatives="cram:cram:/usr/bin/cram3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index 3eee49a6dbf..d375016bc91 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -2,7 +2,6 @@
 pkgname=python-cryptography_vectors
 version=3.0
 revision=1
-archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index f6d2d0cbf8b..f4e95f73e48 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -2,7 +2,6 @@
 pkgname=python-css-parser
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module
 pycompile_module="css_parser"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-css-parser_package() {
-	archs=noarch
 	pycompile_module="css_parser"
 	depends="python3"
 	short_desc="${short_desc/2/3}"
diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index c7f43ebca9f..81f28f8d682 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -2,7 +2,6 @@
 pkgname=python-cssselect
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="cssselect"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cssselect_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cssselect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 5f08903b9a0..2f023f342b0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -2,7 +2,6 @@
 pkgname=python-cssutils
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ python3-cssutils_package() {
 	 cssutils:csscapture:/usr/bin/csscapture3
 	 cssutils:csscombine:/usr/bin/csscombine3
 	 cssutils:cssparse:/usr/bin/cssparse3"
-	archs=noarch
 	pycompile_module="cssutils encutils"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 6126a11e9b4..c07d2d0270b 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -2,7 +2,6 @@
 pkgname=python-curtsies
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module
 pycompile_module="curtsies"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-curtsies_package() {
-	archs=noarch
 	pycompile_module="curtsies"
 	depends="python3-blessings python3-wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index 0b53c195dae..1d6b1ec2bf2 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -2,7 +2,6 @@
 pkgname=python-cycler
 version=0.10.0
 revision=5
-archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cycler_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="cycler.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index efaf163e573..51740f1ee4c 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -2,7 +2,6 @@
 pkgname=python-daemonize
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module
 pycompile_module="daemonize.py"
@@ -20,7 +19,6 @@ post_Install() {
 }
 
 python3-daemonize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="daemonize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dateutil/template b/srcpkgs/python-dateutil/template
index 7675b8f9447..ecedb52ebbd 100644
--- a/srcpkgs/python-dateutil/template
+++ b/srcpkgs/python-dateutil/template
@@ -2,7 +2,6 @@
 pkgname=python-dateutil
 version=2.8.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="dateutil"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-dateutil_package() {
-	archs=noarch
 	depends="python3-six tzdata"
 	pycompile_module="dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 7f14fef90a6..8ef89843121 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -2,7 +2,6 @@
 pkgname=python-decorator
 version=4.4.0
 revision=2
-archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module
 pycompile_module="decorator.py"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-decorator_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="decorator.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index 96234eb18c7..a0cf9f80b07 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -2,7 +2,6 @@
 pkgname=python-defusedxml
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module
 pycompile_module="defusedxml"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-defusedxml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="defusedxml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index 5af18eda664..990062e8ffe 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -2,7 +2,6 @@
 pkgname=python-discogs_client
 version=2.2.2
 revision=2
-archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-discogs_client_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-oauthlib"
 	pycompile_module="discogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 46bb0cccc31..9e5b8cafc56 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -2,7 +2,6 @@
 pkgname=python-distutils-extra
 version=2.39
 revision=4
-archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"
 hostmakedepends="intltool python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://launchpad.net/${pkgname}/trunk/${version}/+download/${pkgname}
 checksum=723f24f4d65fc8d99b33a002fbbb3771d4cc9d664c97085bf37f3997ae8063af
 
 python3-distutils-extra_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="DistUtilsExtra"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 66d237e89ee..2ee14846431 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -2,7 +2,6 @@
 pkgname=python-dnspython
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module
 pycompile_module="dns"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-dnspython_package() {
-	archs=noarch
 	pycompile_module="dns"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index 2224be0d21d..4d743effbe2 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -2,7 +2,6 @@
 pkgname=python-docker-pycreds
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module
 pycompile_module="dockerpycreds"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker-pycreds/docker-pycreds-${version}.tar.gz"
 checksum=6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4
 
 python3-docker-pycreds_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="dockerpycreds"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index 1a325bd6c46..8156dac04c2 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -2,7 +2,6 @@
 pkgname=python-docker
 version=4.2.0
 revision=1
-archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker/docker-${version}.tar.gz"
 checksum=ddae66620ab5f4bce769f64bcd7934f880c8abe6aa50986298db56735d0f722e
 
 python3-docker_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-websocket-client python3-docker-pycreds"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 4a0b3a7a33f..f3f10985243 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -2,7 +2,6 @@
 pkgname=python-dockerpty
 version=0.4.1
 revision=4
-archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/dockerpty/dockerpty-${version}.tar.gz"
 checksum=69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce
 
 python3-dockerpty_package() {
-	archs=noarch
 	depends="python3-six python3-docker"
 	pycompile_module="dockerpty"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 48e5f86c1e0..911a684ac8c 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -2,7 +2,6 @@
 pkgname=python-docopt
 version=0.6.2
 revision=5
-archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-docopt_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="docopt.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 99e74968ddd..b818198b077 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -2,7 +2,6 @@
 pkgname=python-docutils
 version=0.16
 revision=1
-archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -53,7 +52,6 @@ python3-docutils_package() {
 	 docutils:rst2xetex:/usr/bin/rst2xetex.py3
 	 docutils:rst2xml:/usr/bin/rst2xml.py3
 	 docutils:rstpep2html:/usr/bin/rstpep2html.py3"
-	archs=noarch
 	depends="python3 python3-Pygments"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 0978b7e168c..0c967a1e546 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -2,7 +2,6 @@
 pkgname=python-dogpile.cache
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-dogpile.cache_package() {
-	archs=noarch
 	depends="python3 python3-decorator"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 87e5c4eedd3..1bf492b81a1 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -2,7 +2,6 @@
 pkgname=python-dominate
 version=2.5.1
 revision=1
-archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -14,7 +13,6 @@ distfiles="https://github.com/Knio/dominate/archive/${version}.tar.gz"
 checksum=f2c11e107c13c4af9515f81c762b09c350f66d50440eae0c5ec1c443beb3f4af
 
 python3-dominate_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 9e1108b28eb..f7854dad45d 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -2,7 +2,6 @@
 pkgname=python-ecdsa
 version=0.14.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 pycompile_module="ecdsa"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-ecdsa_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="ecdsa"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 3594e407205..0cc765fc3ea 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -2,7 +2,6 @@
 pkgname=python-editor
 version=1.0.4
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="editor"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/python-editor/python-editor-${version}.tar.gz"
 checksum=51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b
 
 python3-editor_package() {
-	archs=noarch
 	pycompile_module="editor"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 4668a9cc814..944d9424edd 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -2,7 +2,6 @@
 pkgname=python-empy
 version=3.3.4
 revision=2
-archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module
 pycompile_module="EmPy"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-empy_package() {
-	archs=noarch
 	pycompile_module="EmPy"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index 68d35c0e13a..3a9f8f9235e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python-enchant
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools enchant-devel"
diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index 6070650f35d..846be545b54 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -2,7 +2,6 @@
 pkgname=python-entrypoints
 version=0.3
 revision=2
-archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module
 pycompile_module="entrypoints.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-entrypoints_package() {
-	archs=noarch
 	pycompile_module="entrypoints.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enum34/template b/srcpkgs/python-enum34/template
index 9bd644fe47d..849d37e119d 100644
--- a/srcpkgs/python-enum34/template
+++ b/srcpkgs/python-enum34/template
@@ -2,7 +2,6 @@
 pkgname=python-enum34
 version=1.1.6
 revision=1
-archs=noarch
 wrksrc="enum34-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index b8cccad60ac..e00112ebce3 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -2,7 +2,6 @@
 pkgname=python-envdir
 version=1.0.1
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="envdir"
@@ -26,7 +25,6 @@ python3-envdir_package() {
 	alternatives="
 	 envdir:envdir:/usr/bin/envdir3
 	 envdir:envshell:/usr/bin/envshell3"
-	archs=noarch
 	pycompile_module="envdir"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index f28f40b0319..14cac54c7ea 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -2,7 +2,6 @@
 pkgname=python-enzyme
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module
 pycompile_module="enzyme"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/enzyme/enzyme-${version}.tar.gz"
 checksum=f2167fa97c24d1103a94d4bf4eb20f00ca76c38a37499821049253b2059c62bb
 
 python3-enzyme_package() {
-	archs=noarch
 	pycompile_module="enzyme"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index a96490fb56d..bbd1a376d97 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -2,7 +2,6 @@
 pkgname=python-ewmh
 version=0.1.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="ewmh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/ewmh/ewmh-${version}.tar.gz"
 checksum=c56b093f7d575181e979bb3a7d15c34065755f811c351ff0a31fede12b09343d
 
 python3-ewmh_package() {
-	archs=noarch
 	depends="python3-xlib"
 	pycompile_module="ewmh"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 834aa7730ee..842bc1534cb 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -2,7 +2,6 @@
 pkgname=python-exifread
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"
 pycompile_module="exifread"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-exifread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="exifread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 24d2ec0611f..ae213f138ad 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -2,7 +2,6 @@
 pkgname=python-fasteners
 version=0.15
 revision=2
-archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/fasteners/fasteners-${version}.tar.gz"
 checksum=3a176da6b70df9bb88498e1a18a9e4a8579ed5b9141207762368a1017bf8f5ef
 
 python3-fasteners_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="fasteners"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 24d5317b1e9..e2cc73a0da7 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -2,7 +2,6 @@
 pkgname=python-feedgenerator
 version=1.9.1
 revision=1
-archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/feedgenerator/feedgenerator-${version}.tar.gz"
 checksum=a28a5add781509390d1a6a52d017829853ee4bef1d2e7b4d5da0e9d1b395ce54
 
 python3-feedgenerator_package() {
-	archs=noarch
 	depends="python3-pytz python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index 94f0a58ec88..e803b2d67d8 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -2,7 +2,6 @@
 pkgname=python-feedparser
 version=5.2.1
 revision=6
-archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module
 pycompile_module="feedparser.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-feedparser_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="feedparser.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 10b974794b5..5951e1658ba 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -2,7 +2,6 @@
 pkgname=python-filetype
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module
 pycompile_module="filetype"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-filetype_package() {
-	archs=noarch
 	pycompile_module="filetype"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index e8e681421f7..07a57e6a816 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -2,7 +2,6 @@
 pkgname=python-flaky
 version=3.6.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="flaky"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/flaky/flaky-${version}.tar.gz"
 checksum=8cd5455bb00c677f787da424eaf8c4a58a922d0e97126d3085db5b279a98b698
 
 python3-flaky_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="flaky"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-funcsigs/template b/srcpkgs/python-funcsigs/template
index 26f14b0ca3c..627e54dbebb 100644
--- a/srcpkgs/python-funcsigs/template
+++ b/srcpkgs/python-funcsigs/template
@@ -2,7 +2,6 @@
 pkgname=python-funcsigs
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="funcsigs-${version}"
 build_style=python2-module
 pycompile_module="funcsigs"
diff --git a/srcpkgs/python-functools32/template b/srcpkgs/python-functools32/template
index 53f9d69a576..4d553cfc1a0 100644
--- a/srcpkgs/python-functools32/template
+++ b/srcpkgs/python-functools32/template
@@ -2,7 +2,6 @@
 pkgname=python-functools32
 version=3.2.3.post2
 revision=1
-archs=noarch
 wrksrc="functools32-${version/.post/-}"
 build_style=python2-module
 pycompile_module="functools32"
diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 88b09a1944f..bdca44ab56f 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -2,7 +2,6 @@
 pkgname=python-future
 version=0.18.2
 revision=1
-archs=noarch
 wrksrc="future-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ python3-future_package() {
 	alternatives="
 	 future:futurize:/usr/bin/futurize3
 	 future:pasteurize:/usr/bin/pasteurize3"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-futures/template b/srcpkgs/python-futures/template
index 12d1f4ae71f..3657171b7c9 100644
--- a/srcpkgs/python-futures/template
+++ b/srcpkgs/python-futures/template
@@ -2,7 +2,6 @@
 pkgname=python-futures
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="futures-${version}"
 build_style=python2-module
 pycompile_module="concurrent"
diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index 253ddaa07bd..be12400dee5 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -2,7 +2,6 @@
 pkgname=python-gitdb
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module
 pycompile_module="gitdb"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-gitdb_package() {
-	archs=noarch
 	depends="python3-smmap"
 	pycompile_module="gitdb"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 425fe1b7362..25a6dfa5265 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -2,7 +2,6 @@
 pkgname=python-github3
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module
 pycompile_module="github3"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-github3_package() {
-	archs=noarch
 	depends="python3-requests python3-uritemplate"
 	pycompile_module="github3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 0f71b4c7153..b7d621f71f9 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -2,7 +2,6 @@
 pkgname=python-gitlab
 version=1.12.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="gitlab"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-gitlab_package() {
-	archs=noarch
 	depends="python3-setuptools python3-requests python3-six"
 	pycompile_module="gitlab"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 7b3bb5a7bb7..2b05b8facce 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -2,7 +2,6 @@
 pkgname=python-gntp
 version=1.0.3
 revision=5
-archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module
 pycompile_module="gntp"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-gntp_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="gntp"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index b5dd94bf8e1..d3be663d966 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=python-gnupg
 version=0.4.6
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python gnupg"
@@ -20,7 +19,6 @@ post_install() {
 python3-gnupg_package() {
 	depends="python3 gnupg"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 		vlicense LICENSE.txt
diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index 027135d430c..348c347a094 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -2,7 +2,6 @@
 pkgname=python-gogs-client
 version=1.0.6
 revision=4
-archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module
 pycompile_module="gogs_client"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-gogs-client_package() {
-	archs=noarch
 	depends="python3-future python3-requests python3-attrs"
 	pycompile_module="gogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index a962f14522f..acf0b08270c 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -2,7 +2,6 @@
 pkgname=python-guessit
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module
 pycompile_module="guessit"
@@ -17,7 +16,6 @@ checksum=2dcd3f2acaf6c1a864f903f084ddd6a6b753f3107ae864355d7c8c1e9cb205b2
 alternatives="guessit:guessit:/usr/bin/guessit2"
 
 python3-guessit_package() {
-	archs=noarch
 	pycompile_module="guessit"
 	depends="python3 python3-rebulk python3-babelfish python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 7f2d2c5fa8a..c078bb1edda 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -2,7 +2,6 @@
 pkgname=python-h11
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc=h11-${version}
 build_style=python-module
 pycompile_module="h11"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-h11_package() {
-	archs=noarch
 	pycompile_module="h11"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index a914f21ecb7..13f16c5495c 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -2,7 +2,6 @@
 pkgname=python-habanero
 version=0.6.2
 revision=2
-archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module
 pycompile_module="habanero"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-habanero_package() {
-	archs=noarch
 	pycompile_module="habanero"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index ffbac313103..2855219bb2a 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -2,7 +2,6 @@
 pkgname=python-hpack
 version=3.0.0
 revision=2
-archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module
 pycompile_module="hpack"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hpack_package() {
-	archs=noarch
 	pycompile_module="hpack"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-html2text/template b/srcpkgs/python-html2text/template
index f83a3a4c020..5b4e911b0a3 100644
--- a/srcpkgs/python-html2text/template
+++ b/srcpkgs/python-html2text/template
@@ -3,7 +3,6 @@
 pkgname=python-html2text
 version=2019.8.11
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 2565de64fd2..9740f92e0f7 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -2,7 +2,6 @@
 pkgname=python-html5lib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-html5lib_package() {
-	archs=noarch
 	pycompile_module="html5lib"
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index e798b4fc1b3..7d9e0b7e45f 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -2,7 +2,6 @@
 pkgname=python-httmock
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module
 pycompile_module="httmock.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-httmock_package() {
-	archs=noarch
 	pycompile_module="httmock.py"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index 3a31c396621..0b52b6a8c0e 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python-httplib2
 version=0.14.0
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="httplib2-${version}"
 build_style=python-module
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-httplib2_package() {
-	archs=noarch
 	depends="python3 ca-certificates"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 2c6942ac329..c31e3301020 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -2,7 +2,6 @@
 pkgname=python-hyper-h2
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-hyper-h2_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3 python3-hpack python3-hyperframe"
 	pkg_install() {
diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index 6b544c2061c..3e097830d29 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperframe
 version=5.2.0
 revision=2
-archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module
 pycompile_module="hyperframe"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperframe_package() {
-	archs=noarch
 	pycompile_module="hyperframe"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hyperlink/template b/srcpkgs/python-hyperlink/template
index 945bf72ee59..8f09927f274 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperlink
 version=19.0.0
 revision=2
-archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module
 pycompile_module="hyperlink"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperlink_package() {
-	archs=noarch
 	depends="python3-idna"
 	pycompile_module="hyperlink"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index de55593fc02..abbb225b87b 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -2,7 +2,6 @@
 pkgname=python-hypothesis
 version=4.38.2
 revision=2
-archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python
 build_style=python-module
@@ -35,7 +34,6 @@ do_check() {
 }
 
 python3-hypothesis_package() {
-	archs=noarch
 	pycompile_module="hypothesis"
 	depends="python3-attrs python3-coverage"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index dbb7ddb8fd3..f0a50b1a760 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -2,7 +2,6 @@
 pkgname=python-icalendar
 version=4.0.6
 revision=1
-archs=noarch
 wrksrc="icalendar-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-icalendar_package() {
-	archs=noarch
 	depends="python3-setuptools python3-dateutil python3-pytz"
 	alternatives="icalendar:icalendar:/usr/bin/icalendar3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 9de25fa6392..74896b4e4c5 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -2,7 +2,6 @@
 pkgname=python-idna
 version=2.9
 revision=1
-archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-idna_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index f64c86812b5..e65fa624fb8 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -2,7 +2,6 @@
 pkgname=python-imagesize
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module
 pycompile_module="imagesize.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-imagesize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="imagesize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-importlib_metadata/template b/srcpkgs/python-importlib_metadata/template
index 227e67ed565..f4a2e9438d0 100644
--- a/srcpkgs/python-importlib_metadata/template
+++ b/srcpkgs/python-importlib_metadata/template
@@ -2,7 +2,6 @@
 pkgname=python-importlib_metadata
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-incremental/template b/srcpkgs/python-incremental/template
index 70477e26866..70c332e0274 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -2,7 +2,6 @@
 pkgname=python-incremental
 version=17.5.0
 revision=3
-archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module
 pycompile_module="incremental"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-incremental_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="incremental"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index 64e48fd9330..02f724b4bdf 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -2,7 +2,6 @@
 pkgname=python-inotify
 version=0.9.6
 revision=4
-archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-inotify_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyinotify.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ipaddr/template b/srcpkgs/python-ipaddr/template
index 9bd50773ae6..f17949a1822 100644
--- a/srcpkgs/python-ipaddr/template
+++ b/srcpkgs/python-ipaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddr
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="ipaddr-${version}"
 build_style=python2-module
 pycompile_module="ipaddr.py"
diff --git a/srcpkgs/python-ipaddress/template b/srcpkgs/python-ipaddress/template
index 8a2d6c80b31..4d598e1146a 100644
--- a/srcpkgs/python-ipaddress/template
+++ b/srcpkgs/python-ipaddress/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddress
 version=1.0.23
 revision=1
-archs=noarch
 wrksrc="ipaddress-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 3c53013fb9d..f44d919759b 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -2,7 +2,6 @@
 pkgname=python-iptools
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="iptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-iptools_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="iptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 1cc46a060d6..92d61d8166b 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -2,7 +2,6 @@
 pkgname=python-isbnlib
 version=3.9.6
 revision=2
-archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module
 pycompile_module="isbnlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-isbnlib_package() {
-	archs=noarch
 	pycompile_module="isbnlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a841866d439..4e59ea10e12 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -2,7 +2,6 @@
 pkgname=python-iso-8601
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module
 pycompile_module="iso8601"
diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index 74e4e813e64..bb5115ef04e 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -2,7 +2,6 @@
 pkgname=python-isodate
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module
 pycompile_module="isodate"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-isodate_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="isodate"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index cd8e43b69ea..bcc48aa6abd 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -2,7 +2,6 @@
 pkgname=python-isort
 version=4.3.21
 revision=2
-archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module
 pycompile_module="isort"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-isort_package() {
-	archs=noarch
 	pycompile_module="isort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index fe51cc78a9b..b02eeabc46a 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -2,7 +2,6 @@
 pkgname=python-itsdangerous
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-itsdangerous_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jaraco.functools/template b/srcpkgs/python-jaraco.functools/template
index 55c82a8101a..84aaea71b7e 100644
--- a/srcpkgs/python-jaraco.functools/template
+++ b/srcpkgs/python-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python-jaraco.functools
 version=2.0
 revision=3
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 0799a69c69f..5c0437ae78d 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -2,7 +2,6 @@
 pkgname=python-jedi
 version=0.17.2
 revision=2
-archs=noarch
 wrksrc="jedi-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jedi_package() {
-	archs=noarch
 	depends="python3-parso"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 6f1dfcecf0f..5716281b7fd 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -2,7 +2,6 @@
 pkgname=python-jmespath
 version=0.10.0
 revision=1
-archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jmespath_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="jmespath:jp.py:/usr/bin/jp.py3"
diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index fd103d123aa..c7e06343501 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonpointer
 version=2.0
 revision=2
-archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-jsonpointer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="jsonpointer.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index a245168a824..d70336fef15 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonrpclib
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module
 pycompile_module="jsonrpclib"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/j/jsonrpclib-pelix/jsonrpclib-pelix-${version}.tar.gz"
 checksum=19c558e169a51480b39548783067ca55046b62b2409ab4559931255e12f635de
 
 python3-jsonrpclib_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 326b5609d36..f62b9a370a1 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -3,7 +3,6 @@ pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
 revision=4
-archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-jsonschema_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="jsonschema"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 6668b240008..a1a5ba3cb30 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -2,7 +2,6 @@
 pkgname=python-kaptan
 version=0.5.12
 revision=2
-archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module
 pycompile_module="kaptan"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-kaptan_package() {
-	archs=noarch
 	pycompile_module="kaptan"
 	depends="python3 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index 50e1d7e6e78..c9ed9368215 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -2,7 +2,6 @@
 pkgname=python-keepalive
 version=0.5
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/k/keepalive/keepalive-${version}.tar.gz"
 checksum=3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1
 
 python3-keepalive_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="keepalive"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 917131d6d93..96ea9ebf05b 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -2,7 +2,6 @@
 pkgname=python-kitchen
 version=1.2.6
 revision=3
-archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module
 pycompile_module="kitchen"
@@ -16,7 +15,6 @@ distfiles="https://github.com/fedora-infra/kitchen/archive/${version}.tar.gz"
 checksum=6963dd84819713aafdd55e5314dcce6df5a37430b62fd9c48770e9f1a467b2b0
 
 python3-kitchen_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="kitchen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-larch/template b/srcpkgs/python-larch/template
index 7b9fb4a1e5e..9cdece3c5a1 100644
--- a/srcpkgs/python-larch/template
+++ b/srcpkgs/python-larch/template
@@ -2,7 +2,6 @@
 pkgname=python-larch
 version=1.20151025
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools python-tracing"
 makedepends="python-devel python-tracing"
diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 39fcc264979..9ab0a38ac90 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -2,7 +2,6 @@
 pkgname=python-ldap3
 version=2.6.1
 revision=2
-archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module
 pycompile_module="ldap3"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=f21d1a65e19ed5a691d7cf30af375e84663254e800ddc950bd7b6f9bb15d2c19
 
 python3-ldap3_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="ldap3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 20f43af5f7d..6e155bae91b 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -2,7 +2,6 @@
 pkgname=python-libtmux
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module
 pycompile_module="libtmux"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-libtmux_package() {
-	archs=noarch
 	pycompile_module="libtmux"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 778cecba7e9..c03de4dada8 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-lockfile
 version=0.12.2
 revision=4
-archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-pbr python3-pbr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-lockfile_package() {
-	archs=noarch
 	pycompile_module="lockfile"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index c190d529bfe..13d75a8a077 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -2,7 +2,6 @@
 pkgname=python-logfury
 version=0.1.2
 revision=5
-archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module
 pycompile_module="logfury"
@@ -29,7 +28,6 @@ do_check() {
 }
 
 python3-logfury_package() {
-	archs=noarch
 	pycompile_module="logfury"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 6bb26bb6cd2..2265a60b796 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -2,7 +2,6 @@
 pkgname=python-magic
 version=0.4.18
 revision=2
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python libmagic"
@@ -18,7 +17,6 @@ post_install() {
 }
 
 python3-magic_package() {
-	archs=noarch
 	depends="python3 libmagic"
 	# Beware: not an alternative
 	conflicts="python3-file-magic>=0"
diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index e9068f64202..88f400e3d29 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -2,7 +2,6 @@
 pkgname=python-markdown2
 version=2.3.8
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="markdown2"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-markdown2_package() {
-	archs=noarch
 	pycompile_module="markdown2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-matplotlib/template b/srcpkgs/python-matplotlib/template
index b155d980569..421a1930bda 100644
--- a/srcpkgs/python-matplotlib/template
+++ b/srcpkgs/python-matplotlib/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 python-matplotlib-data_package() {
-	archs=noarch
 	conf_files="/etc/matplotlibrc"
 	short_desc+=" - data files"
 	pkg_install() {
diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index 1e2ed6328b8..d20b004b852 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -2,7 +2,6 @@
 pkgname=python-mccabe
 version=0.6.1
 revision=3
-archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-mccabe_package() {
-	archs=noarch
 	pycompile_module="mccabe.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index ca29bbd0d23..a9be9b7ff2f 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -2,7 +2,6 @@
 pkgname=python-mechanize
 version=0.4.3
 revision=3
-archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module
 pycompile_module="mechanize"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mechanize_package() {
-	archs=noarch
 	depends="python3 python3-html5lib"
 	pycompile_module="mechanize"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index ef5c054ba75..56e75385714 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -2,7 +2,6 @@
 pkgname=python-mistune
 version=0.8.4
 revision=2
-archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module
 pycompile_module="mistune.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mistune_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mistune.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mock/template b/srcpkgs/python-mock/template
index 95196de39df..bf2ede1da91 100644
--- a/srcpkgs/python-mock/template
+++ b/srcpkgs/python-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-mock
 version=3.0.5
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="mock"
diff --git a/srcpkgs/python-monotonic/template b/srcpkgs/python-monotonic/template
index 2c1e997bea1..d291dc8b5bb 100644
--- a/srcpkgs/python-monotonic/template
+++ b/srcpkgs/python-monotonic/template
@@ -2,7 +2,6 @@
 pkgname=python-monotonic
 version=1.5
 revision=1
-archs=noarch
 wrksrc="monotonic-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-more-itertools/template b/srcpkgs/python-more-itertools/template
index 8b77456eed7..598f5e643b9 100644
--- a/srcpkgs/python-more-itertools/template
+++ b/srcpkgs/python-more-itertools/template
@@ -3,7 +3,6 @@ pkgname=python-more-itertools
 reverts="6.0.0_1"
 version=5.0.0
 revision=2
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python2-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 0389f8c2a28..2bb2a79ee73 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -2,7 +2,6 @@
 pkgname=python-mpd2
 version=1.0.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mpd"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-mpd2_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpd"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index 8fd4873dd62..ef9609f1eac 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -2,7 +2,6 @@
 pkgname=python-mpmath
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module
 pycompile_module="mpmath"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mpmath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpmath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-msp430-tools/template b/srcpkgs/python-msp430-tools/template
index 84c0fd78cb8..af7413be891 100644
--- a/srcpkgs/python-msp430-tools/template
+++ b/srcpkgs/python-msp430-tools/template
@@ -2,7 +2,6 @@
 pkgname=python-msp430-tools
 version=0.9.2
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="msp430"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index 992c7b76fe9..524ccf0cf27 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -2,7 +2,6 @@
 pkgname=python-mtranslate
 version=1.6
 revision=2
-archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module
 pycompile_module="mtranslate"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mtranslate_package() {
-	archs=noarch
 	pycompile_module="mtranslate"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-munkres/template b/srcpkgs/python-munkres/template
index 97694aeac84..a0d670f74a1 100644
--- a/srcpkgs/python-munkres/template
+++ b/srcpkgs/python-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python-munkres
 version=1.0.12
 revision=1
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python2-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index a17ca953a3a..69ddaaa6924 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -2,7 +2,6 @@
 pkgname=python-musicbrainzngs
 version=0.6
 revision=4
-archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"
 pycompile_module="musicbrainzngs"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-musicbrainzngs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="musicbrainzngs"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index ffad63a70a1..638453e695e 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -2,7 +2,6 @@
 pkgname=python-mygpoclient
 version=1.8
 revision=3
-archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module
 pycompile_module="mygpoclient"
@@ -30,7 +29,6 @@ python3-mygpoclient_package() {
 	 mygpoclient:mygpo-simple-client:/usr/bin/mygpo-simple-client3"
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="mygpoclient"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 75626b9f6d5..21d4346f554 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -2,7 +2,6 @@
 pkgname=python-namedlist
 version=1.7
 revision=6
-archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/namedlist/namedlist-${version}.tar.gz"
 checksum=190b39ceaf1d6b59999811259e61beb1b26aaa482fb8c95538294d551461c986
 
 python3-namedlist_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="namedlist.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 7101e297aad..ec6df73b102 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -2,7 +2,6 @@
 pkgname=python-natsort
 version=6.0.0
 revision=2
-archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module
 pycompile_module="natsort"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-natsort_package() {
-	archs=noarch
 	pycompile_module="natsort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 54b653f68a9..ddf490888c6 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -2,7 +2,6 @@
 pkgname=python-ndg_httpsclient
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module
 pycompile_module="ndg/httpsclient"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ndg_httpsclient_package() {
-	archs=noarch
 	depends="python3-openssl python3-pyasn1"
 	pycompile_module="ndg/httpsclient"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 20cc1c93134..69fa4080f1c 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-netaddr
 version=0.7.19
 revision=3
-archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module
 pycompile_module="netaddr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-netaddr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="netaddr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index f2cd7fe5c3f..2ad6f5bb304 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -2,7 +2,6 @@
 pkgname=python-nose
 version=1.3.7
 revision=4
-archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module
 pycompile_module="nose"
@@ -18,7 +17,6 @@ checksum=f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98
 alternatives="nose:nosetests:/usr/bin/nosetests2"
 
 python3-nose_package() {
-	archs=noarch
 	pycompile_module="nose"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index 058abbd4253..de6db0c3cac 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -2,7 +2,6 @@
 pkgname=python-nose2
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="nose2"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-nose2_package() {
-	archs=noarch
 	pycompile_module="nose2"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-coverage python3-six"
diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 2223850f22e..1e47ceb7e75 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -13,14 +13,12 @@ license="BSD-2-Clause"
 homepage="https://github.com/bad-day/npyscreen"
 distfiles="https://github.com/bad-day/npyscreen/archive/${version}.tar.gz"
 checksum=6703c22d6bad3131b075d7d242c611a3c7ba8eae03f6d3cb414e3d35dae94b29
-archs=noarch
 
 post_install() {
 	vlicense LICENCE
 }
 
 python3-npyscreen_package() {
-	archs=noarch
 	pycompile_module="npyscreen"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 0582fb326c1..7bb1ee3effe 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -2,7 +2,6 @@
 pkgname=python-ntplib
 version=0.3.3
 revision=4
-archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"
 pycompile_module="ntplib.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/ntplib/ntplib-${version}.tar.gz"
 checksum="c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"
 
 python3-ntplib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ntplib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index 2398adba276..9469fb2411e 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -2,7 +2,6 @@
 pkgname=python-oauth2client
 version=4.1.3
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauth2client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/o/oauth2client/oauth2client-${version}.tar.gz"
 checksum=d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6
 
 python3-oauth2client_package() {
-	archs=noarch
 	depends="python3-httplib2 python3-pyasn1 python3-pyasn1-modules
 	 python3-rsa python3-six"
 	pycompile_module="oauth2client"
diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 036f1b31c92..ba8887bb647 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-oauthlib
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-oauthlib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 803d7b67cd8..8d57d382f61 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -2,7 +2,6 @@
 pkgname=python-olefile
 version=0.46
 revision=2
-archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module
 pycompile_module="olefile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-olefile_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="olefile"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index d7ab230194d..92d746abf01 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -2,7 +2,6 @@
 pkgname=python-openssl
 version=19.1.0
 revision=1
-archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pyOpenSSL/pyOpenSSL-${version}.tar.gz"
 checksum=9a24494b2602aaf402be5c9e30a0b82d4a5c67528fe8fb475e3f3bc00dd69507
 
 python3-openssl_package() {
-	archs=noarch
 	depends="python3-cryptography python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 06042d12b90..3aff25e48ab 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -2,7 +2,6 @@
 pkgname=python-packaging
 version=19.1
 revision=3
-archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module
 pycompile_module="packaging"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-packaging_package() {
-	archs=noarch
 	pycompile_module="packaging"
 	depends="python3-attrs python3-parsing python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index 780e9008ea7..91331977858 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -2,7 +2,6 @@
 pkgname=python-pam
 version=1.8.4
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="pam.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pam_package() {
-	archs=noarch
 	depends="python3 pam"
 	pycompile_module="pam.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index 8650d20256f..119156c8578 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -2,7 +2,6 @@
 pkgname=python-pandocfilters
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module
 pycompile_module="pandocfilters.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pandocfilters_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pandocfilters.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index f1bca0aea24..54447c2eb96 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -2,7 +2,6 @@
 pkgname=python-paramiko
 version=2.7.1
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/paramiko/paramiko-${version}.tar.gz"
 checksum=920492895db8013f6cc0179293147f830b8c7b21fdfc839b6bad760c27459d9f
 
 python3-paramiko_package() {
-	archs=noarch
 	depends="python3-cryptography python3-pyasn1 python3-bcrypt python3-pynacl"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 9ccdc26d51e..0eda1fafae5 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -2,7 +2,6 @@
 pkgname=python-parse
 version=1.12.0
 revision=2
-archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module
 pycompile_module="parse.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-parse_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="parse.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 56d64c7cbaa..db4b7f35583 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -2,7 +2,6 @@
 pkgname=python-parsing
 version=2.4.6
 revision=1
-archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-parsing_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 49ed2fbdf20..93cbe8ef17d 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -2,7 +2,6 @@
 pkgname=python-parso
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index f46a3e92642..805563fc9a6 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -2,7 +2,6 @@
 pkgname=python-passlib
 version=1.7.1
 revision=3
-archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module
 pycompile_module="passlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-passlib_package() {
-	archs=noarch
 	pycompile_module="passlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathlib/template b/srcpkgs/python-pathlib/template
index 65704965145..b71e822c2e8 100644
--- a/srcpkgs/python-pathlib/template
+++ b/srcpkgs/python-pathlib/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="pathlib-${version}"
 build_style=python2-module
 pycompile_module="pathlib.py"
diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index fa600b78fbe..d879dbb709c 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib2
 version=2.3.4
 revision=3
-archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module
 pycompile_module="pathlib2"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pathlib2/pathlib2-${version}.tar.gz"
 checksum=446014523bb9be5c28128c4d2a10ad6bb60769e78bd85658fe44a450674e0ef8
 
 python3-pathlib2_package() {
-	archs=noarch
 	depends="python3-six python3-scandir"
 	pycompile_module="pathlib2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index bd4736ec45d..33d17e59452 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -2,7 +2,6 @@
 pkgname=python-pathspec
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module
 pycompile_module="pathspec"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-pathspec_package() {
-	archs=noarch
 	pycompile_module="pathspec"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 47dc6ef6a71..d8785d20444 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -2,7 +2,6 @@
 pkgname=python-pathtools
 version=0.1.2
 revision=2
-archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module
 pycompile_module="pathtools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pathtools_package() {
-	archs=noarch
 	pycompile_module="pathtools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index 956d0b4cad9..218cf6e1bae 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -2,7 +2,6 @@
 pkgname=python-pbkdf2
 version=1.3
 revision=4
-archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module
 pycompile_module="pbkdf2"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pbkdf2_package() {
-	archs=noarch
 	pycompile_module="pbkdf2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pbr/template b/srcpkgs/python-pbr/template
index 9c7216056fe..fca5c38e134 100644
--- a/srcpkgs/python-pbr/template
+++ b/srcpkgs/python-pbr/template
@@ -2,7 +2,6 @@
 pkgname=python-pbr
 version=5.4.3
 revision=2
-archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module
 pycompile_module="pbr"
@@ -17,7 +16,6 @@ checksum=2c8e420cd4ed4cec4e7999ee47409e876af575d4c35a45840d59e8b5f3155ab8
 alternatives="pbr:pbr:/usr/bin/pbr2"
 
 python3-pbr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pbr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ef7db98e491..ae37b56cb7c 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -2,7 +2,6 @@
 pkgname=python-pdfrw
 version=0.4
 revision=3
-archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 
 python3-pdfrw_package() {
 	replaces="python-pdfrw-example<${version}_${revision}"
-	archs=noarch
 	pycompile_module="pdfrw"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 03102c3d294..c17f54ee717 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -2,7 +2,6 @@
 pkgname=python-pexpect
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module
 pycompile_module="pexpect"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-pexpect_package() {
-	archs=noarch
 	depends="python3-ptyprocess"
 	pycompile_module="pexpect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index f98052f4151..a0120b06438 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -2,7 +2,6 @@
 pkgname=python-pgmigrate
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pgmigrate_package() {
-	archs=noarch
 	depends="python3 python3-sqlparse python3-psycopg2 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index a28b6e209e7..86291588854 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -2,7 +2,6 @@
 pkgname=python-pgpdump
 version=1.5
 revision=6
-archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/toofishes/python-pgpdump/archive/${version}.tar.gz
 checksum=05383f66e467e855299d1ed51161c6038ac338d9d10bd33476b574dc3bef64ff
 
 python3-pgpdump_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pgpdump"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index e3c9a17bfdc..dd4753a52af 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -2,7 +2,6 @@
 pkgname=python-picamera
 version=1.13
 revision=2
-archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module
 pycompile_module="picamera"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-picamera_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="picamera"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index c1d86826c15..2cbddcf65af 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -2,7 +2,6 @@
 pkgname=python-pickleshare
 version=0.7.5
 revision=2
-archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module
 pycompile_module="pickleshare.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pickleshare_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pickleshare.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index d44215124f4..58b3e982ca7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -2,7 +2,6 @@
 pkgname=python-pip
 version=20.0.2
 revision=1
-archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pip_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pip:pip:/usr/bin/pip3"
diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index 69490a04324..b5c3c76ad0f 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -2,7 +2,6 @@
 pkgname=python-pipenv
 version=2020.8.13
 revision=1
-archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ post_install() {
 }
 
 python3-pipenv_package() {
-	archs=noarch
 	depends="python3 python3-pip python3-virtualenv python3-virtualenv-clone"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="
diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index e9e5480907d..9a423f67e48 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -2,7 +2,6 @@
 pkgname=python-pkgconfig
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module
 pycompile_module="pkgconfig"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pkgconfig_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pkgconfig"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pluggy/template b/srcpkgs/python-pluggy/template
index e52dee341ec..89bedfb33d4 100644
--- a/srcpkgs/python-pluggy/template
+++ b/srcpkgs/python-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python-pluggy
 version=0.13.1
 revision=1
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-ply/template b/srcpkgs/python-ply/template
index 04a3defa6aa..0ea8ca0f182 100644
--- a/srcpkgs/python-ply/template
+++ b/srcpkgs/python-ply/template
@@ -2,7 +2,6 @@
 pkgname=python-ply
 version=3.11
 revision=2
-archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ply_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ply"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index 58fd20d3f73..6edc83ab027 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -2,7 +2,6 @@
 pkgname=python-podcastparser
 version=0.6.5
 revision=1
-archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -25,7 +24,6 @@ post_install() {
 
 python3-podcastparser_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove "usr/lib/python3*"
diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index 8b8d4b66c68..67e81743db3 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -2,7 +2,6 @@
 pkgname=python-polib
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-polib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="polib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 455051f5a50..88fa8a98417 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -2,7 +2,6 @@
 pkgname=python-portend
 version=2.5
 revision=2
-archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
 pycompile_module="portend.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-portend_package() {
-	archs=noarch
 	depends="python3-tempora"
 	pycompile_module="portend.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 6d8063fc43a..8cd4d8943da 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -2,7 +2,6 @@
 pkgname=python-pretend
 version=1.0.9
 revision=2
-archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module
 pycompile_module="pretend"
diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 0d6bd1db69d..80371bed0fa 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -2,7 +2,6 @@
 pkgname=python-progress
 version=1.5
 revision=2
-archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module
 pycompile_module="progress"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-progress_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="progress"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 7b71fbeffc2..ee3bd9aafad 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -2,7 +2,6 @@
 pkgname=python-prometheus_client
 version=0.7.1
 revision=2
-archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module
 pycompile_module="prometheus_client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/prometheus_client/prometheus_client-${version}.tar.gz"
 checksum=71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da
 
 python3-prometheus_client_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="prometheus_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index 70516738c27..614745d925b 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -3,7 +3,6 @@ pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.18
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index e0f00f41668..1d93496f287 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -2,7 +2,6 @@
 pkgname=python-prompt_toolkit2
 version=2.0.9
 revision=5
-archs=noarch
 build_style=meta
 short_desc="Python2 library for building command lines (removed package)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index b1da90de474..b4e6f91a33f 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -2,7 +2,6 @@
 pkgname=python-proselint
 version=0.10.2
 revision=2
-archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module
 pycompile_module="proselint"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-proselint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-click python3-future python3-six"
 	pycompile_module="proselint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 0485f0d930d..816bddbb2c0 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python-protobuf
 version=3.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-protobuf_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index fd2e51fa3ac..961bbff5e30 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -2,7 +2,6 @@
 pkgname=python-ptyprocess
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module
 pycompile_module="ptyprocess"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-ptyprocess_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ptyprocess"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 2a0559b4dc3..1256aeab468 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -2,7 +2,6 @@
 pkgname=python-py
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="py-${version}"
 build_style=python-module
 pycompile_module="py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-py_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index e9a10e88c15..8c54b620b8a 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -2,7 +2,6 @@
 pkgname=python-pyPEG2
 version=2.15.2
 revision=5
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/${pkgname#*-}/${pkgname#*-}-${version}.tar.gz"
 checksum=2b2d4f80d8e1a9370b2a91f4a25f4abf7f69b85c8da84cd23ec36451958a1f6d
 
 python3-pyPEG2_package() {
-	archs=noarch
 	depends="python3-lxml"
 	pycompile_module="pypeg2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index d5b2d967f4e..d3524454dbe 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -2,7 +2,6 @@
 pkgname=python-pyacoustid
 version=1.1.5
 revision=3
-archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyacoustid_package() {
-	archs=noarch
 	pycompile_module="acoustid.py chromaprint.py"
 	depends="chromaprint python3-audioread python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index f45976e5b0b..3a4cfe7f541 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyaes
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module
 pycompile_module="pyaes"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyaes_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyaes"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1-modules/template b/srcpkgs/python-pyasn1-modules/template
index b180252b96d..20626d431c6 100644
--- a/srcpkgs/python-pyasn1-modules/template
+++ b/srcpkgs/python-pyasn1-modules/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1-modules
 version=0.2.8
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyasn1_modules"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-pyasn1-modules_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="pyasn1_modules"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1/template b/srcpkgs/python-pyasn1/template
index 7f50c81b281..bb3e06272af 100644
--- a/srcpkgs/python-pyasn1/template
+++ b/srcpkgs/python-pyasn1/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1
 version=0.4.8
 revision=1
-archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyasn1_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index 04e85465121..647bd2d58d3 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -2,7 +2,6 @@
 pkgname=python-pycodestyle
 version=2.6.0
 revision=1
-archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pycodestyle_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle3"
diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index c4a4c9cafbd..a7cf612255f 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -2,7 +2,6 @@
 pkgname=python-pycountry
 version=19.8.18
 revision=1
-archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/pycountry/pycountry-${version}.tar.gz"
 checksum=3c57aa40adcf293d59bebaffbe60d8c39976fba78d846a018dc0c2ec9c6cb3cb
 
 python3-pycountry_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index d2e83aa79b2..b833ec6e2d2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -2,7 +2,6 @@
 pkgname=python-pycparser
 version=2.19
 revision=2
-archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module
 pycompile_module="pycparser"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pycparser_package() {
-	archs=noarch
 	depends="python3-ply"
 	pycompile_module="pycparser"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pydns/template b/srcpkgs/python-pydns/template
index 50f97da8ede..5d0027f9eee 100644
--- a/srcpkgs/python-pydns/template
+++ b/srcpkgs/python-pydns/template
@@ -2,7 +2,6 @@
 pkgname=python-pydns
 version=2.3.6
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="DNS"
diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index 193650442fc..694e8598c45 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -2,7 +2,6 @@
 pkgname=python-pyelftools
 version=0.25
 revision=2
-archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module
 pycompile_module="elftools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyelftools_package() {
-	archs=noarch
 	pycompile_module="elftools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 586cba32b89..97d5c43a109 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyflakes
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyflakes_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pyflakes:pyflakes:/usr/bin/pyflakes3"
diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index 397103c49f7..084f261cdf7 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -2,7 +2,6 @@
 pkgname=python-pyglet
 version=1.4.10
 revision=1
-archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools unzip"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pyglet_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pykka/template b/srcpkgs/python-pykka/template
index 512639c69c3..9c668bc01e2 100644
--- a/srcpkgs/python-pykka/template
+++ b/srcpkgs/python-pykka/template
@@ -2,7 +2,6 @@
 pkgname=python-pykka
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="Pykka-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/P/Pykka/Pykka-${version}.tar.gz"
 checksum=895cc2ed8779b65dd14a90ba3f4b8cb0f7904c7bf0710fe96a923019f8e82a39
 
 python3-pykka_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index b70bd73d4aa..34131d837e6 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -2,7 +2,6 @@
 pkgname=python-pyotp
 version=2.3.0
 revision=2
-archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module
 pycompile_module="pyotp"
@@ -26,7 +25,6 @@ post_install() {
 
 python3-pyotp_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="pyotp"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-pypcapfile/template b/srcpkgs/python-pypcapfile/template
index 73b767f61c2..ef4d475ff13 100644
--- a/srcpkgs/python-pypcapfile/template
+++ b/srcpkgs/python-pypcapfile/template
@@ -3,7 +3,6 @@ pkgname=python-pypcapfile
 version=0.12.0
 revision=1
 wrksrc="pypcapfile-${version}"
-archs=noarch
 build_style=python2-module
 pycompile_module="pcapfile"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 1286923b906..302c6765857 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -2,7 +2,6 @@
 pkgname=python-pyperclip
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_wrksrc=pyperclip-${version}
 build_style=python-module
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-pyperclip_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index 1bea9c2ffdf..8ff86f6f711 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -2,7 +2,6 @@
 pkgname=python-pyqtgraph
 version=0.10.0
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyqtgraph"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyqtgraph_package() {
-	archs=noarch
 	depends="python3-PyQt5 python3-numpy python3-PyOpenGL"
 	pycompile_module="pyqtgraph"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index cd81c4d0624..18387d894a8 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -2,7 +2,6 @@
 pkgname=python-pyrfc3339
 version=1.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"
 wrksrc="pyRFC3339-${version}"
@@ -23,7 +22,6 @@ python3-pyrfc3339_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-pytz"
 	pycompile_module="pyrfc3339"
-	archs=noarch
 	pkg_install() {
 		vlicense LICENSE.txt LICENSE
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-pyserial/template b/srcpkgs/python-pyserial/template
index 354be493b16..ea2ba7123ee 100644
--- a/srcpkgs/python-pyserial/template
+++ b/srcpkgs/python-pyserial/template
@@ -2,7 +2,6 @@
 pkgname=python-pyserial
 version=3.4
 revision=3
-archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyserial_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="serial"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index ca508a4a7cc..1396099515a 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -2,7 +2,6 @@
 pkgname=python-pysocks
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pysocks_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index be742c08ce4..42a6719080a 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -2,7 +2,6 @@
 pkgname=python-pysrt
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=b4f844ba33e4e7743e9db746492f3a193dc0bc112b153914698e7c1cdeb9b0b9
 alternatives="srt:srt:/usr/bin/srt2"
 
 python3-pysrt_package() {
-	archs=noarch
 	depends="python3 python3-chardet"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="srt:srt:/usr/bin/srt3"
diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 893045b8998..26c053a1158 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -2,7 +2,6 @@
 pkgname=python-pystache
 version=0.5.4
 revision=3
-archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module
 pycompile_module="pystache"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pystache_package() {
-	archs=noarch
 	pycompile_module="pystache"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 1efc2f9a488..86bcd331228 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -2,7 +2,6 @@
 pkgname=python-pyte
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module
 pycompile_module="pyte"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-pyte_package() {
-	archs=noarch
 	pycompile_module="pyte"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-wcwidth"
diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index 14255af8a35..3dd87c592dd 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-fixture-config
 version=1.3.0
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_fixture_config.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-fixture-config_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_fixture_config.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index 240e8773aaa..d963da9fb14 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-mock
 version=1.10.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_mock.py _pytest_mock_version.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-mock_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_mock.py _pytest_mock_version.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 5e2ffe71b6e..3c205b971de 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest
 version=4.6.9
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index 40f582962c8..81df887b425 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -2,7 +2,6 @@
 pkgname=python-pytz
 version=2019.3
 revision=2
-archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module
 pycompile_module="pytz"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pytz_package() {
-	archs=noarch
 	depends="python3 tzdata"
 	pycompile_module="pytz"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index 2ec53088636..bc6fb1ba8a5 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -2,7 +2,6 @@
 pkgname=python-pyudev
 version=0.21.0
 revision=3
-archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module
 pycompile_module="pyudev"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=5f4625f89347e465731866ddbe042a055bbc5092577356aa3d089ac5fb8efd94
 
 python3-pyudev_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 
diff --git a/srcpkgs/python-pyx/template b/srcpkgs/python-pyx/template
index 1ece52764ab..24a8edae5fb 100644
--- a/srcpkgs/python-pyx/template
+++ b/srcpkgs/python-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python-pyx
 version=0.12.1
 revision=4
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python2-module
 pycompile_module="pyx"
diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 35b568eb4e6..28c0ca61c67 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -2,7 +2,6 @@
 pkgname=python-pyzbar
 version=0.1.8
 revision=2
-archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module
 pycompile_module="pyzbar"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-pyzbar_package() {
-	archs=noarch
 	pycompile_module="pyzbar"
 	depends="libzbar python3"
 	alternatives="pyzbar:read_zbar:/usr/bin/read_zbar.py3"
diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index bf35c82757e..10f8455d835 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -2,7 +2,6 @@
 pkgname=python-qrcode
 version=6.1
 revision=2
-archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module
 pycompile_module="qrcode"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-qrcode_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="qrcode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 2603cae3584..741b7f63a76 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -2,7 +2,6 @@
 pkgname=python-random2
 version=1.0.1
 revision=4
-archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module
 pycompile_module="random2.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/random2/random2-${version}.zip"
 checksum=34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007
 
 python3-random2_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="random2.py"
 	pkg_install() {
diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index 83ff75c6e03..20e7a42f8d8 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -2,7 +2,6 @@
 pkgname=python-rarfile
 version=4.0
 revision=1
-archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-rarfile_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index 87382c21602..b7457cfda31 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -2,7 +2,6 @@
 pkgname=python-raven
 version=6.10.0
 revision=2
-archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module
 pycompile_module="raven"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-raven_package() {
-	archs=noarch
 	pycompile_module="raven"
 	depends="ca-certificates python3-setuptools"
 	alternatives="raven:raven:/usr/bin/raven3"
diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index f676dedfb2f..471a4d5ad1b 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -2,7 +2,6 @@
 pkgname=python-rdflib
 version=4.2.2
 revision=3
-archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ python3-rdflib_package() {
 	 rdflib:rdfgraphisomorphism:/usr/bin/rdfgraphisomorphism3
 	 rdflib:rdfpipe:/usr/bin/rdfpipe3
 	 rdflib:rdfs2dot:/usr/bin/rdfs2dot3"
-	archs=noarch
 	depends="python3-setuptools python3-isodate python3-parsing"
 	pycompile_module="rdflib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ace92da477b..46caca6191c 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -2,7 +2,6 @@
 pkgname=python-readability-lxml
 version=0.8.1
 revision=1
-archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/r/readability-lxml/readability-lxml-${version}.tar.gz"
 checksum=e51fea56b5909aaf886d307d48e79e096293255afa567b7d08bca94d25b1a4e1
 
 python3-readability-lxml_package() {
-	archs=noarch
 	depends="python3-lxml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 3bc58c3a7dd..ed683fde9ef 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -2,7 +2,6 @@
 pkgname=python-rebulk
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-rebulk_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index 194d682dc32..1729e362ed7 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -2,7 +2,6 @@
 pkgname=python-redis
 version=3.3.11
 revision=1
-archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-redis_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 2d1410fcd1b..6c66bce1309 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-mock
 version=1.5.2
 revision=3
-archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module
 pycompile_module="requests_mock"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-mock/requests-mock-${version}.tar.gz"
 checksum=7a5fa99db5e3a2a961b6f20ed40ee6baeff73503cf0a553cc4d679409e6170fb
 
 python3-requests-mock_package() {
-	archs=noarch
 	pycompile_module="requests_mock"
 	depends="python3-requests python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index e3e824b35b1..84cf752dcb0 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-oauthlib
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_oauthlib"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-requests-oauthlib_package() {
-	archs=noarch
 	depends="python3-requests python3-oauthlib"
 	pycompile_module="requests_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 13a81586221..62d763b2b5d 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-toolbelt
 version=0.9.1
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_toolbelt"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-toolbelt/requests-toolbelt-${version}.tar.gz"
 checksum=968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0
 
 python3-requests-toolbelt_package() {
-	archs=noarch
 	pycompile_module="requests_toolbelt"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index 1bd9f51333c..a2c68c7452a 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -2,7 +2,6 @@
 pkgname=python-requests
 version=2.23.0
 revision=1
-archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-requests_package() {
-	archs=noarch
 	depends="ca-certificates python3-chardet python3-urllib3 python3-idna"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index 2522872cc32..4543670a319 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -2,7 +2,6 @@
 pkgname=python-rfc6555
 version=0.0.0
 revision=2
-archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module
 pycompile_module="rfc6555"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/rfc6555/rfc6555-${version}.tar.gz"
 checksum=191cbba0315b53654155321e56a93466f42cd0a474b4f341df4d03264dcb5217
 
 python3-rfc6555_package() {
-	archs=noarch
 	pycompile_module="rfc6555"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index 72f32a9da0d..f9a3dbd72ad 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -3,7 +3,6 @@ pkgname=python-ripe-atlas-cousteau
 version=1.4.2
 revision=2
 build_style=python-module
-archs=noarch
 pycompile_module="ripe/atlas/cousteau"
 wrksrc="ripe-atlas-cousteau-${version}"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=91bfaaafe7561ccc7b91f555a5004c467d615b9f404739496a4ed6a22fcb07b7
 
 python3-ripe-atlas-cousteau_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="ripe/atlas/cousteau"
 	depends="python3-dateutil python3-socketIO-client"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 22abb48af46..3e9b273ed72 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -2,7 +2,6 @@
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module
 pycompile_module="ripe/atlas/sagan"
@@ -17,7 +16,6 @@ checksum=39d8c0864ec8d790fe46f45cb55020d8603fceb374c77cda46f96b71279af016
 
 python3-ripe-atlas-sagan_package() {
 	depends="python3-dateutil python3-pytz python3-cryptography"
-	archs=noarch
 	pycompile_module="ripe/atlas/sagan"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index 11e9bf2c60d..17e034b0edc 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -2,7 +2,6 @@
 pkgname=python-rsa
 version=4.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="rsa"
@@ -31,7 +30,6 @@ python3-rsa_package() {
 	 rsa:pyrsa-priv2pub:/usr/bin/pyrsa-priv2pub3
 	 rsa:pyrsa-sign:/usr/bin/pyrsa-sign3
 	 rsa:pyrsa-verify:/usr/bin/pyrsa-verify3"
-	archs=noarch
 	pycompile_module="rsa"
 	depends="python3-setuptools python3-pyasn1"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index 29aba6cc68b..70f276e67d2 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -2,7 +2,6 @@
 pkgname=python-s3transfer
 version=0.3.3
 revision=1
-archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/s3transfer/archive/${version}.tar.gz"
 checksum=0c8b0f7aaf32173d1475df0a453bfdc37be8207ea15c1d8415a590ef3986fc51
 
 python3-s3transfer_package() {
-	archs=noarch
 	depends="python3-botocore"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index 0db5b157ce1..49654ed01ce 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -2,7 +2,6 @@
 pkgname=python-scour
 version=0.37
 revision=2
-archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module
 pycompile_module="scour"
@@ -23,7 +22,6 @@ do_check() {
 }
 
 python3-scour_package() {
-	archs=noarch
 	pycompile_module="scour"
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-selectors2/template b/srcpkgs/python-selectors2/template
index 1ad45d8e7d3..c73fcb17309 100644
--- a/srcpkgs/python-selectors2/template
+++ b/srcpkgs/python-selectors2/template
@@ -2,7 +2,6 @@
 pkgname=python-selectors2
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="selectors2-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 94f56545695..68a97a3aa47 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -2,7 +2,6 @@
 pkgname=python-send2trash
 version=1.5.0
 revision=2
-archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module
 pycompile_module="send2trash"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-send2trash_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="send2trash"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index 658802bef0d..59083a2af5c 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python-serpent
 version=1.28
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-service_identity/template b/srcpkgs/python-service_identity/template
index e21a1520a75..d4957063827 100644
--- a/srcpkgs/python-service_identity/template
+++ b/srcpkgs/python-service_identity/template
@@ -2,7 +2,6 @@
 pkgname=python-service_identity
 version=18.1.0
 revision=2
-archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module
 pycompile_module="service_identity"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-service_identity_package() {
-	archs=noarch
 	depends="python3-attrs python3-pyasn1-modules python3-cryptography"
 	pycompile_module="service_identity"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index d71e746e12e..3e3aeaa589c 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -4,7 +4,6 @@ pkgname=python-setuptools
 # python2 support for setuptools ended at 44.0.0
 version=44.0.0
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 16de6daf662..67cd0c68998 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -2,7 +2,6 @@
 pkgname=python-sh
 version=1.13.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-sh_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index 6c95222fa7e..cbd435e04e5 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -2,7 +2,6 @@
 pkgname=python-simplebayes
 version=1.5.8
 revision=2
-archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module
 pycompile_module="simplebayes"
@@ -22,7 +21,6 @@ post_install() {
 python3-simplebayes_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="simplebayes"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index f352387fa1f..483244ed30f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -2,7 +2,6 @@
 pkgname=python-simplegeneric
 version=0.8.1
 revision=4
-archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/simplegeneric/simplegeneric-${version}.zip"
 checksum=dc972e06094b9af5b855b3df4a646395e43d1c9d0d39ed345b7393560d0b9173
 
 python3-simplegeneric_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="simplegeneric.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-singledispatch/template b/srcpkgs/python-singledispatch/template
index 9da989105f8..cc5f1468f5b 100644
--- a/srcpkgs/python-singledispatch/template
+++ b/srcpkgs/python-singledispatch/template
@@ -2,7 +2,6 @@
 pkgname=python-singledispatch
 version=3.4.0.3
 revision=1
-archs=noarch
 wrksrc="singledispatch-${version}"
 build_style=python2-module
 pycompile_module="singledispatch.py singledispatch_helpers.py"
diff --git a/srcpkgs/python-six/template b/srcpkgs/python-six/template
index bc47a16d28d..a57040dd697 100644
--- a/srcpkgs/python-six/template
+++ b/srcpkgs/python-six/template
@@ -2,7 +2,6 @@
 pkgname=python-six
 version=1.14.0
 revision=1
-archs=noarch
 wrksrc="six-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-six_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 8c8ea952285..5de11eb3f6b 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -2,7 +2,6 @@
 pkgname=python-smmap
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module
 pycompile_module="smmap"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-smmap_package() {
-	archs=noarch
 	pycompile_module="smmap"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 221478860e5..a3059e544d9 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -2,7 +2,6 @@
 pkgname=python-snowballstemmer
 version=1.2.1
 revision=4
-archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/snowballstemmer/snowballstemmer-${version}.tar.gz"
 checksum=919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128
 
 python3-snowballstemmer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="snowballstemmer"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 9495d7cf40b..7924c6d0cf4 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -2,7 +2,6 @@
 pkgname=python-socketIO-client
 version=0.7.2
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"
 wrksrc="socketIO-client-${version}"
@@ -22,7 +21,6 @@ post_install() {
 python3-socketIO-client_package() {
 	depends="python3-requests python3-six python3-websocket-client"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="socketIO_client"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 062cc3e6a8a..f412d7e4b4e 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -2,7 +2,6 @@
 pkgname=python-soupsieve
 version=1.9.5
 revision=2
-archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module
 pycompile_module="soupsieve"
@@ -34,7 +33,6 @@ post_install() {
 }
 
 python3-soupsieve_package() {
-	archs=noarch
 	pycompile_module="soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-spambayes/template b/srcpkgs/python-spambayes/template
index 9a85558c1d3..24d92de47dd 100644
--- a/srcpkgs/python-spambayes/template
+++ b/srcpkgs/python-spambayes/template
@@ -3,7 +3,6 @@ pkgname=python-spambayes
 version=1.1b3
 revision=1
 wrksrc=${pkgname#*-}-${version}
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python-lockfile python-pydns"
diff --git a/srcpkgs/python-sqlalchemy-migrate/template b/srcpkgs/python-sqlalchemy-migrate/template
index bb002660c0f..d9818bc1975 100644
--- a/srcpkgs/python-sqlalchemy-migrate/template
+++ b/srcpkgs/python-sqlalchemy-migrate/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlalchemy-migrate
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="migrate"
@@ -27,7 +26,6 @@ python3-sqlalchemy-migrate_package() {
 	alternatives="
 	 migrate:migrate-repository:/usr/bin/migrate-repository3
 	 migrate:migrate:/usr/bin/migrate3"
-	archs=noarch
 	depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
 	 python3-sqlparse python3-tempita"
 	pycompile_module="migrate"
diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 0f8c6f8ea2e..18369a5ab6b 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module
 pycompile_module="sqlparse"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-sqlparse_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="sqlparse"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 97bb4b48cb6..f032c8cb0b0 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -2,7 +2,6 @@
 pkgname=python-stem
 version=1.8.0
 revision=1
-archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module
 pycompile_module="stem"
@@ -18,7 +17,6 @@ checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
 
 python3-stem_package() {
-	archs=noarch
 	depends="python3-cryptography"
 	pycompile_module="stem"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 4f781304d3f..21efeca4d6a 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -2,7 +2,6 @@
 pkgname=python-stevedore
 version=1.30.1
 revision=2
-archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module
 pycompile_module="stevedore"
@@ -21,7 +20,6 @@ pre_build() {
 }
 
 python3-stevedore_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="stevedore"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 11f63f67bba..093db30e6da 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -2,7 +2,6 @@
 pkgname=python-stormssh
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc=storm-${version}
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-stormssh_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-paramiko python3-termcolor python3-Flask"
 	pycompile_module="storm"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 74dcf00ebdd..fe30efae2dc 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -2,7 +2,6 @@
 pkgname=python-subliminal
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-subliminal_package() {
-	archs=noarch
 	depends="python3 python3-guessit python3-babelfish python3-enzyme
 	 python3-BeautifulSoup4 python3-requests python3-click python3-dogpile.cache
 	 python3-stevedore python3-chardet python3-pysrt python3-six python3-appdirs
diff --git a/srcpkgs/python-tempita/template b/srcpkgs/python-tempita/template
index c1c75ee1cac..1c59ba302bf 100644
--- a/srcpkgs/python-tempita/template
+++ b/srcpkgs/python-tempita/template
@@ -2,7 +2,6 @@
 pkgname=python-tempita
 version=0.5.2
 revision=4
-archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/T/Tempita/Tempita-${version}.tar.gz"
 checksum=cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c
 
 python3-tempita_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="tempita"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index 194dc2718e5..166dd7c1157 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -2,7 +2,6 @@
 pkgname=python-tempora
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-tempora_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-pytz"
 	alternatives="tempora:calc-prorate:/usr/bin/calc-prorate3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 73c18fc79eb..f68d3be8832 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -2,7 +2,6 @@
 pkgname=python-termcolor
 version=1.1.0
 revision=6
-archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-termcolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="termcolor.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index d649364d88d..1777e9906e4 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -2,7 +2,6 @@
 pkgname=python-terminado
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module
 pycompile_module="terminado"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-terminado_package() {
-	archs=noarch
 	depends="python3-ptyprocess python3-tornado"
 	pycompile_module="terminado"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index abfc59900c0..da250a65f02 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -2,7 +2,6 @@
 pkgname=python-testpath
 version=0.4.2
 revision=2
-archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module
 pycompile_module="testpath"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-testpath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="testpath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index 24bac87af6a..2e7ca37e415 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -2,7 +2,6 @@
 pkgname=python-texttable
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module
 pycompile_module="texttable.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-texttable_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="texttable.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tkinter/template b/srcpkgs/python-tkinter/template
index f2b6d0bacf1..e9019fbc09c 100644
--- a/srcpkgs/python-tkinter/template
+++ b/srcpkgs/python-tkinter/template
@@ -76,7 +76,6 @@ do_install() {
 }
 
 idle-python_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python2 using Tkinter"
 	pycompile_dirs="usr/lib/python2.7/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 812d80343cc..350b4c93b51 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -2,7 +2,6 @@
 pkgname=python-tmuxp
 version=1.5.4
 revision=1
-archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module
 pycompile_module="tmuxp"
@@ -28,7 +27,6 @@ post_install() {
 }
 
 python3-tmuxp_package() {
-	archs=noarch
 	pycompile_module="tmuxp"
 	depends="python3 python3-setuptools python3-colorama python3-click python3-kaptan python3-libtmux"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 2fd6eaa0cea..d853e4385fd 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -2,7 +2,6 @@
 pkgname=python-toml
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module
 pycompile_module="toml"
@@ -20,7 +19,6 @@ pkg_install() {
 }
 
 python3-toml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="toml"
 	short_desc=${short_desc/Python2/Python3}
diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index f7ee7d037af..3d3c1dafc5a 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -2,7 +2,6 @@
 pkgname=python-tqdm
 version=4.48.2
 revision=1
-archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -27,7 +26,6 @@ python3-tqdm_package() {
 	alternatives="
 	 tqdm:tqdm:/usr/bin/tqdm3
 	 tqdm:tqdm.1:/usr/share/man/man1/tqdm3.1"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-tracing/template b/srcpkgs/python-tracing/template
index 4408f31be9f..7281f1f9ecd 100644
--- a/srcpkgs/python-tracing/template
+++ b/srcpkgs/python-tracing/template
@@ -2,7 +2,6 @@
 pkgname=python-tracing
 version=0.10
 revision=1
-archs=noarch
 wrksrc="python-tracing-tracing-${version}"
 build_style=python2-module
 pycompile_module="tracing"
diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 2df1a81c9be..4742cade8b8 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -2,7 +2,6 @@
 pkgname=python-ttystatus
 version=0.38
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://code.liw.fi/debian/pool/main/p/${pkgname}/${pkgname}_${version
 checksum=e544dd5b0f77ebc3bb5b4ace34bd3d2751e72956ec096c8ffb34beaead433628
 
 python3-ttystatus_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ttystatus"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index 2487511922a..f2a6afd286f 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -2,7 +2,6 @@
 pkgname=python-tweepy
 version=3.8.0
 revision=2
-archs=noarch
 wrksrc="tweepy-${version}"
 build_style=python-module
 pycompile_module="tweepy"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-tweepy_package() {
-	archs=noarch
 	pycompile_module="tweepy"
 	depends="python3-requests-oauthlib python3-six python3-pysocks"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index e5e7194078a..775fbf19426 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -2,7 +2,6 @@
 pkgname=python-twitter
 version=3.5
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="twitter"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ pre_build() {
 }
 
 python3-twitter_package() {
-	archs=noarch
 	pycompile_module="twitter"
 	depends="python3-future python3-requests python3-requests-oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-txgithub/template b/srcpkgs/python-txgithub/template
index e33466d59e3..ccd5f7b9747 100644
--- a/srcpkgs/python-txgithub/template
+++ b/srcpkgs/python-txgithub/template
@@ -2,7 +2,6 @@
 pkgname=python-txgithub
 version=15.0.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="txgithub"
diff --git a/srcpkgs/python-typing/template b/srcpkgs/python-typing/template
index dce911b6b1a..b5bd5971843 100644
--- a/srcpkgs/python-typing/template
+++ b/srcpkgs/python-typing/template
@@ -2,7 +2,6 @@
 pkgname=python-typing
 version=3.6.6
 revision=1
-archs=noarch
 wrksrc="typing-${version}"
 build_style=python2-module
 pycompile_module="typing.py"
diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 2ff5c497523..dfbb1fc9b34 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -2,7 +2,6 @@
 pkgname=python-unittest-mixins
 version=1.6
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="unittest_mixins"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/u/unittest-mixins/unittest-mixins-${version}.tar.gz"
 checksum=05363abe099f0724b7bb6d71d0ce1046078c868cb10b3f1ebdf3ca6593c52507
 
 python3-unittest-mixins_package() {
-	archs=noarch
 	pycompile_module="unittest_mixins"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index 0808a11e98d..f5ae56e2e2d 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -2,7 +2,6 @@
 pkgname=python-urbandict
 version=0.6.1
 revision=1
-archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=a19685ffa2450bea2df9bf328a6ce7c3c1e2213c95171ae2263b987cc54d201b
 alternatives="urbandicli:urbandicli:/usr/bin/urbandicli2"
 
 python3-urbandict_package() {
-	archs=noarch
 	alternatives="urbandicli:urbandicli:/usr/bin/urbandicli3"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3"
diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 5a44f7e24af..7598cdcb114 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -2,7 +2,6 @@
 pkgname=python-uritemplate
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-uritemplate_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 3f354488f86..fd464147487 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -2,7 +2,6 @@
 pkgname=python-urllib3
 version=1.25.8
 revision=1
-archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-urllib3_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urlnorm/template b/srcpkgs/python-urlnorm/template
index ae488dc3179..2a4a1ab6eab 100644
--- a/srcpkgs/python-urlnorm/template
+++ b/srcpkgs/python-urlnorm/template
@@ -2,7 +2,6 @@
 pkgname=python-urlnorm
 version=1.1.4
 revision=2
-archs=noarch
 wrksrc="urlnorm-${version}"
 build_style=python2-module
 pycompile_module="urlnorm"
diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index 62d214489e2..86bf7e4fae0 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -2,7 +2,6 @@
 pkgname=python-urwidtrees
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module
 pycompile_module="urwidtrees"
@@ -16,7 +15,6 @@ distfiles="https://github.com/pazz/urwidtrees/archive/${version}.tar.gz"
 checksum=703f4b161b930a26a461a3e3e695f94237ac75e2a52b87613e49093d9aa76034
 
 python3-urwidtrees_package() {
-	archs=noarch
 	pycompile_module="urwidtrees"
 	depends="python3-urwid"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index 4c7a5ef1bfb..15d10eb36fd 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -2,7 +2,6 @@
 pkgname=python-utils
 version=2.4.0
 revision=1
-archs=noarch
 wrksrc="python-utils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-utils_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 62c663bf18e..2683de6e90b 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -2,7 +2,6 @@
 pkgname=python-vint
 version=0.3.19
 revision=3
-archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module
 pycompile_module="vint"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-vint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-ansicolor python3-chardet python3-yaml"
 	pycompile_module="vint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index 624ade6f12b..32154cafe05 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -21,7 +21,6 @@ post_install() {
 
 python3-vispy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="vispy"
 	depends="python3-numpy"
 	pkg_install() {
diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 2c1c215527c..91bb0d96e17 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -2,7 +2,6 @@
 pkgname=python-vobject
 version=0.9.6.1
 revision=2
-archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module
 pycompile_module="vobject"
@@ -20,7 +19,6 @@ alternatives="
  vobject:ics_diff:/usr/bin/ics_diff2"
 
 python3-vobject_package() {
-	archs=noarch
 	pycompile_module="vobject"
 	depends="python3-setuptools python3-dateutil python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index 1dd5de27491..cd6da9e8785 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -2,7 +2,6 @@
 pkgname=python-voluptuous
 version=0.11.5
 revision=3
-archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module
 pycompile_module="voluptuous"
diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index 2eea6397f00..839e4edc91e 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -2,7 +2,6 @@
 pkgname=python-watchdog
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module
 pycompile_module="watchdog"
@@ -17,7 +16,6 @@ checksum=965f658d0732de3188211932aeb0bb457587f04f63ab4c1e33eab878e9de961d
 alternatives="watchdog:watchmedo:/usr/bin/watchmedo2"
 
 python3-watchdog_package() {
-	archs=noarch
 	pycompile_module="watchdog"
 	alternatives="watchdog:watchmedo:/usr/bin/watchmedo3"
 	depends="python3-setuptools python3-yaml python3-argh python3-pathtools"
diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 8ec6d17450c..e043794dc2d 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -2,7 +2,6 @@
 pkgname=python-wcwidth
 version=0.1.7
 revision=3
-archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module
 pycompile_module="wcwidth"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wcwidth_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 7ed3cfd1b4c..5e6673ed205 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -2,7 +2,6 @@
 pkgname=python-webassets
 version=0.12.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="webassets"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-webassets_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="webassets"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index f047a9e3c52..048c9bb5d3a 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -2,7 +2,6 @@
 pkgname=python-webencodings
 version=0.5.1
 revision=3
-archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module
 pycompile_module="webencodings"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/w/webencodings/webencodings-${version}.tar.gz"
 checksum=b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923
 
 python3-webencodings_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 3df8ab42b36..68773ce04ab 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -2,7 +2,6 @@
 pkgname=python-websocket-client
 version=0.56.0
 revision=2
-archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module
 pycompile_module="websocket"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-websocket-client_package() {
-	archs=noarch
 	depends="python3-six ca-certificates"
 	pycompile_module="websocket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 05fc8d1cc06..d3a346aa67e 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -2,7 +2,6 @@
 pkgname=python-wheel
 version=0.34.2
 revision=1
-archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wheel_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="wheel:wheel:usr/bin/wheel3"
diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index f8a69755b74..82b835789b0 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -2,7 +2,6 @@
 pkgname=python-wikipedia
 version=1.4.0
 revision=3
-archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module
 pycompile_module="wikipedia"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wikipedia_package() {
-	archs=noarch
 	pycompile_module="wikipedia"
 	depends="python3-BeautifulSoup4 python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index f8b131104e6..aab4fcc6e05 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -2,7 +2,6 @@
 pkgname=python-wsproto
 version=0.15.0
 revision=2
-archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module
 pycompile_module="wsproto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wsproto_package() {
-	archs=noarch
 	pycompile_module="wsproto"
 	depends="python3 python3-h11"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index 4e819c8bec7..b75ee56b800 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -2,7 +2,6 @@
 pkgname=python-xdg
 version=0.26
 revision=2
-archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module
 hostmakedepends="python python3"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/pyxdg/pyxdg-${version}.tar.gz"
 checksum=fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06
 
 python3-xdg_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="xdg"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 8c409c7f8c4..24933a8ee2e 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -2,7 +2,6 @@
 pkgname=python-xlib
 version=0.27
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python-six"
@@ -18,7 +17,6 @@ pre_build() {
 }
 
 python3-xlib_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index b8f25af9575..6991a03edaf 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -2,7 +2,6 @@
 pkgname=python-xmldiff
 version=2.4
 revision=1
-archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,14 +18,12 @@ alternatives="xmldiff:xmldiff:/usr/bin/xmldiff2"
 replaces="xmldiff>=0"
 
 xmldiff_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 python3-xmldiff_package() {
-	archs=noarch
 	depends="python3-lxml python3-six python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="xmldiff:xmldiff:/usr/bin/xmldiff3"
diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index b3d7ef042e8..925469ed211 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -2,7 +2,6 @@
 pkgname=python-xmltodict
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module
 pycompile_module="xmltodict.py"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-xmltodict_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="xmltodict.py"
 	depends="python3"
diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index d0b51ba637a..3ec999d2d8c 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -2,7 +2,6 @@
 pkgname=python-yamllint
 version=1.15.0
 revision=2
-archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module
 pycompile_module="yamllint"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-yamllint_package() {
-	archs=noarch
 	depends="python3-pathspec python3-setuptools python3-yaml"
 	pycompile_module="yamllint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index 4a44b0c926e..a254226ce8c 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-zc.lockfile
 version=2.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zc/lockfile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-zc.lockfile_package() {
-	archs=noarch
 	pycompile_module="zc/lockfile"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zipp/template b/srcpkgs/python-zipp/template
index c58f294006f..16c30842069 100644
--- a/srcpkgs/python-zipp/template
+++ b/srcpkgs/python-zipp/template
@@ -2,7 +2,6 @@
 pkgname=python-zipp
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="zipp-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 2c7390127ac..cdc08a374f0 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -2,7 +2,6 @@
 pkgname=python-zipstream
 version=1.1.4
 revision=4
-archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module
 pycompile_module="zipstream"
@@ -16,7 +15,6 @@ distfiles="https://github.com/allanlei/python-zipstream/archive/v${version}.tar.
 checksum=32a7a4bdb786914445589595273beffbbf9b6a0a3a3dc2cf19ea96114bd2abd7
 
 python3-zipstream_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="zipstream"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python3-3to2/template b/srcpkgs/python3-3to2/template
index 38558f1fcff..99e585a0a63 100644
--- a/srcpkgs/python3-3to2/template
+++ b/srcpkgs/python3-3to2/template
@@ -2,7 +2,6 @@
 pkgname=python3-3to2
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module
 pycompile_module="lib3to2"
diff --git a/srcpkgs/python3-CherryPy/template b/srcpkgs/python3-CherryPy/template
index 2b5fa77a786..b57d61c44db 100644
--- a/srcpkgs/python3-CherryPy/template
+++ b/srcpkgs/python3-CherryPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-CherryPy
 version=18.6.0
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ConfigArgParse/template b/srcpkgs/python3-ConfigArgParse/template
index ae8d5820cc8..793005a680f 100644
--- a/srcpkgs/python3-ConfigArgParse/template
+++ b/srcpkgs/python3-ConfigArgParse/template
@@ -2,7 +2,6 @@
 pkgname=python3-ConfigArgParse
 version=1.1
 revision=1
-archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python3-module
 pycompile_module="configargparse.py"
diff --git a/srcpkgs/python3-Django/template b/srcpkgs/python3-Django/template
index 9f1a08f968d..5d9a26ba6c3 100644
--- a/srcpkgs/python3-Django/template
+++ b/srcpkgs/python3-Django/template
@@ -2,7 +2,6 @@
 pkgname=python3-Django
 version=3.0.7
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-EasyProcess/template b/srcpkgs/python3-EasyProcess/template
index 725467884d4..bc740b46c59 100644
--- a/srcpkgs/python3-EasyProcess/template
+++ b/srcpkgs/python3-EasyProcess/template
@@ -2,7 +2,6 @@
 pkgname=python3-EasyProcess
 version=0.3
 revision=1
-archs=noarch
 wrksrc=EasyProcess-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-Mail/template b/srcpkgs/python3-Flask-Mail/template
index f1e31e984d0..01e568eacdf 100644
--- a/srcpkgs/python3-Flask-Mail/template
+++ b/srcpkgs/python3-Flask-Mail/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-Mail
 version=0.9.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-RESTful/template b/srcpkgs/python3-Flask-RESTful/template
index 74f5be02359..5900fc17409 100644
--- a/srcpkgs/python3-Flask-RESTful/template
+++ b/srcpkgs/python3-Flask-RESTful/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-RESTful
 version=0.3.8
 revision=1
-archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-SQLAlchemy/template b/srcpkgs/python3-Flask-SQLAlchemy/template
index 392425b0610..65d9a9da023 100644
--- a/srcpkgs/python3-Flask-SQLAlchemy/template
+++ b/srcpkgs/python3-Flask-SQLAlchemy/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-SQLAlchemy
 version=2.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-User/template b/srcpkgs/python3-Flask-User/template
index 1de87f20bf4..cae7df2f916 100644
--- a/srcpkgs/python3-Flask-User/template
+++ b/srcpkgs/python3-Flask-User/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-User
 version=1.0.2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Inflector/template b/srcpkgs/python3-Inflector/template
index e890c1ad256..2e777e3d1e2 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -2,7 +2,6 @@
 pkgname=python3-Inflector
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Markdown/template b/srcpkgs/python3-Markdown/template
index 3c2e12cbe8d..6373522906b 100644
--- a/srcpkgs/python3-Markdown/template
+++ b/srcpkgs/python3-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python3-Markdown
 version=3.2.2
 revision=1
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-MechanicalSoup/template b/srcpkgs/python3-MechanicalSoup/template
index 5a3b0b3eb03..379cfad07b1 100644
--- a/srcpkgs/python3-MechanicalSoup/template
+++ b/srcpkgs/python3-MechanicalSoup/template
@@ -2,7 +2,6 @@
 pkgname=python3-MechanicalSoup
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module
 pycompile_module="mechanicalsoup"
diff --git a/srcpkgs/python3-Pebble/template b/srcpkgs/python3-Pebble/template
index 0d91d52c6d1..b000c3120ae 100644
--- a/srcpkgs/python3-Pebble/template
+++ b/srcpkgs/python3-Pebble/template
@@ -2,7 +2,6 @@
 pkgname=python3-Pebble
 version=4.5.3
 revision=1
-archs=noarch
 wrksrc=Pebble-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyBrowserID/template b/srcpkgs/python3-PyBrowserID/template
index eefd0175f1b..a67482469c2 100644
--- a/srcpkgs/python3-PyBrowserID/template
+++ b/srcpkgs/python3-PyBrowserID/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyBrowserID
 version=0.14.0
 revision=3
-archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module
 pycompile_module="browserid"
diff --git a/srcpkgs/python3-PyFxA/template b/srcpkgs/python3-PyFxA/template
index 6fc6791efdd..47f332200e4 100644
--- a/srcpkgs/python3-PyFxA/template
+++ b/srcpkgs/python3-PyFxA/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyFxA
 version=0.7.3
 revision=2
-archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module
 pycompile_module="fxa"
diff --git a/srcpkgs/python3-PyPDF2/template b/srcpkgs/python3-PyPDF2/template
index 75289b4f3ca..bb9b668ba1b 100644
--- a/srcpkgs/python3-PyPDF2/template
+++ b/srcpkgs/python3-PyPDF2/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyPDF2
 version=1.26.0
 revision=1
-archs=noarch
 wrksrc="PyPDF2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyVirtualDisplay/template b/srcpkgs/python3-PyVirtualDisplay/template
index e7c42f99c4e..589e669a917 100644
--- a/srcpkgs/python3-PyVirtualDisplay/template
+++ b/srcpkgs/python3-PyVirtualDisplay/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyVirtualDisplay
 version=1.3.2
 revision=1
-archs=noarch
 wrksrc=PyVirtualDisplay-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-QtPy/template b/srcpkgs/python3-QtPy/template
index 2ddc8b313ee..6a32de69c52 100644
--- a/srcpkgs/python3-QtPy/template
+++ b/srcpkgs/python3-QtPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-QtPy
 version=1.9.0
 revision=1
-archs=noarch
 wrksrc=QtPy-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ReParser/template b/srcpkgs/python3-ReParser/template
index 5959de9d0e3..8de97219a45 100644
--- a/srcpkgs/python3-ReParser/template
+++ b/srcpkgs/python3-ReParser/template
@@ -2,7 +2,6 @@
 pkgname=python3-ReParser
 version=1.4.3
 revision=2
-archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module
 pycompile_module="reparser.py"
diff --git a/srcpkgs/python3-Ropper/template b/srcpkgs/python3-Ropper/template
index 6cf233bd99a..ea8c89c4de8 100644
--- a/srcpkgs/python3-Ropper/template
+++ b/srcpkgs/python3-Ropper/template
@@ -2,7 +2,6 @@
 pkgname=python3-Ropper
 version=1.13.5
 revision=1
-archs="noarch"
 wrksrc="Ropper-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-SecretStorage/template b/srcpkgs/python3-SecretStorage/template
index 864d1385411..1944bf60a4f 100644
--- a/srcpkgs/python3-SecretStorage/template
+++ b/srcpkgs/python3-SecretStorage/template
@@ -2,7 +2,6 @@
 pkgname=python3-SecretStorage
 version=3.1.2
 revision=1
-archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module
 pycompile_module="secretstorage"
diff --git a/srcpkgs/python3-SoCo/template b/srcpkgs/python3-SoCo/template
index 9a27dcdb264..b25879f7b83 100644
--- a/srcpkgs/python3-SoCo/template
+++ b/srcpkgs/python3-SoCo/template
@@ -2,7 +2,6 @@
 pkgname=python3-SoCo
 version=0.18.1
 revision=2
-archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module
 pycompile_module="soco"
diff --git a/srcpkgs/python3-Sphinx/template b/srcpkgs/python3-Sphinx/template
index df1eba9e438..b0b889a79ac 100644
--- a/srcpkgs/python3-Sphinx/template
+++ b/srcpkgs/python3-Sphinx/template
@@ -2,7 +2,6 @@
 pkgname=python3-Sphinx
 version=3.2.1
 revision=1
-archs=noarch
 wrksrc=Sphinx-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Telethon/template b/srcpkgs/python3-Telethon/template
index 25ccd5200e5..008835cd554 100644
--- a/srcpkgs/python3-Telethon/template
+++ b/srcpkgs/python3-Telethon/template
@@ -2,7 +2,6 @@
 pkgname=python3-Telethon
 version=1.13.0
 revision=2
-archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-TxSNI/template b/srcpkgs/python3-TxSNI/template
index 22b38d1d3cf..a24785ee8f5 100644
--- a/srcpkgs/python3-TxSNI/template
+++ b/srcpkgs/python3-TxSNI/template
@@ -2,7 +2,6 @@
 pkgname=python3-TxSNI
 version=0.1.9
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="TxSNI-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-WebOb/template b/srcpkgs/python3-WebOb/template
index 53e63879f2c..51d94de11ce 100644
--- a/srcpkgs/python3-WebOb/template
+++ b/srcpkgs/python3-WebOb/template
@@ -2,7 +2,6 @@
 pkgname=python3-WebOb
 version=1.8.5
 revision=2
-archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module
 pycompile_module="webob"
diff --git a/srcpkgs/python3-XlsxWriter/template b/srcpkgs/python3-XlsxWriter/template
index b991457e01e..d8ed07a40e2 100644
--- a/srcpkgs/python3-XlsxWriter/template
+++ b/srcpkgs/python3-XlsxWriter/template
@@ -2,7 +2,6 @@
 pkgname=python3-XlsxWriter
 version=1.1.8
 revision=2
-archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module
 pycompile_module="XlsxWriter"
diff --git a/srcpkgs/python3-acme/template b/srcpkgs/python3-acme/template
index b8a0c7888c2..601c681e15a 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -2,7 +2,6 @@
 pkgname=python3-acme
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioamqp/template b/srcpkgs/python3-aioamqp/template
index 861cec8f543..cbe7c34a0f4 100644
--- a/srcpkgs/python3-aioamqp/template
+++ b/srcpkgs/python3-aioamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioamqp
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="aioamqp-aioamqp-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiodns/template b/srcpkgs/python3-aiodns/template
index bca5802ef69..147fc1a5591 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiodns
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiofiles/template b/srcpkgs/python3-aiofiles/template
index 61d4d081821..b588a2b1583 100644
--- a/srcpkgs/python3-aiofiles/template
+++ b/srcpkgs/python3-aiofiles/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiofiles
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp-cors/template b/srcpkgs/python3-aiohttp-cors/template
index b621716e3cd..ee29a0ee68e 100644
--- a/srcpkgs/python3-aiohttp-cors/template
+++ b/srcpkgs/python3-aiohttp-cors/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index f13b0598456..326c17ce4e5 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors2
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-sse-client/template b/srcpkgs/python3-aiohttp-sse-client/template
index 6599b036e97..b5e1aa5e3ca 100644
--- a/srcpkgs/python3-aiohttp-sse-client/template
+++ b/srcpkgs/python3-aiohttp-sse-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-sse-client
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp_socks/template b/srcpkgs/python3-aiohttp_socks/template
index 10ab967ef76..572903c6752 100644
--- a/srcpkgs/python3-aiohttp_socks/template
+++ b/srcpkgs/python3-aiohttp_socks/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp_socks
 version=0.2.2
 revision=2
-archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_socks"
diff --git a/srcpkgs/python3-aioinflux/template b/srcpkgs/python3-aioinflux/template
index d63da0c2ccc..08a7bfe251b 100644
--- a/srcpkgs/python3-aioinflux/template
+++ b/srcpkgs/python3-aioinflux/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioinflux
 version=0.9.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aionotify/template b/srcpkgs/python3-aionotify/template
index 93d857f71b6..15e147e5f99 100644
--- a/srcpkgs/python3-aionotify/template
+++ b/srcpkgs/python3-aionotify/template
@@ -2,7 +2,6 @@
 pkgname=python3-aionotify
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="aionotify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioredis/template b/srcpkgs/python3-aioredis/template
index c93ad443386..d6d1143b616 100644
--- a/srcpkgs/python3-aioredis/template
+++ b/srcpkgs/python3-aioredis/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioredis
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiorpcx/template b/srcpkgs/python3-aiorpcx/template
index 3e25da6752f..e78840575e7 100644
--- a/srcpkgs/python3-aiorpcx/template
+++ b/srcpkgs/python3-aiorpcx/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiorpcx
 version=0.18.4
 revision=1
-archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module
 pycompile_module="aiorpcx"
diff --git a/srcpkgs/python3-altgraph/template b/srcpkgs/python3-altgraph/template
index 2bf433edb6e..76f7663a6e6 100644
--- a/srcpkgs/python3-altgraph/template
+++ b/srcpkgs/python3-altgraph/template
@@ -2,7 +2,6 @@
 pkgname=python3-altgraph
 version=0.16.1
 revision=2
-archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module
 pycompile_module="altgraph"
diff --git a/srcpkgs/python3-aniso8601/template b/srcpkgs/python3-aniso8601/template
index 0253b89b5a3..667b0b101b7 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -2,7 +2,6 @@
 pkgname=python3-aniso8601
 version=8.0.0
 revision=2
-archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"
 build_style=python3-module
diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index cb3832799a1..723e1bacaa5 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -2,7 +2,6 @@
 pkgname=python3-ansible-lint
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="ansible-lint-${version}"
 build_style=python3-module
 pycompile_module="ansiblelint"
diff --git a/srcpkgs/python3-anytree/template b/srcpkgs/python3-anytree/template
index 5bd9b407017..1406d04febc 100644
--- a/srcpkgs/python3-anytree/template
+++ b/srcpkgs/python3-anytree/template
@@ -2,7 +2,6 @@
 pkgname=python3-anytree
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-applib/template b/srcpkgs/python3-applib/template
index 3a5a4ed5d40..717849c614f 100644
--- a/srcpkgs/python3-applib/template
+++ b/srcpkgs/python3-applib/template
@@ -2,7 +2,6 @@
 pkgname=python3-applib
 version=1.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="applib-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-argcomplete/template b/srcpkgs/python3-argcomplete/template
index 8b7a61dc11a..c637a4aedbc 100644
--- a/srcpkgs/python3-argcomplete/template
+++ b/srcpkgs/python3-argcomplete/template
@@ -3,7 +3,6 @@ pkgname=python3-argcomplete
 version=1.12.0
 revision=1
 wrksrc="argcomplete-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="argcomplete"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-astral/template b/srcpkgs/python3-astral/template
index d290eee7806..9553913111e 100644
--- a/srcpkgs/python3-astral/template
+++ b/srcpkgs/python3-astral/template
@@ -2,7 +2,6 @@
 pkgname=python3-astral
 version=2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-astroid/template b/srcpkgs/python3-astroid/template
index 261dfacd70c..302fe6f914a 100644
--- a/srcpkgs/python3-astroid/template
+++ b/srcpkgs/python3-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python3-astroid
 version=2.3.3
 revision=3
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-async-timeout/template b/srcpkgs/python3-async-timeout/template
index 854584fb5b2..729fe1b46c7 100644
--- a/srcpkgs/python3-async-timeout/template
+++ b/srcpkgs/python3-async-timeout/template
@@ -2,7 +2,6 @@
 pkgname=python3-async-timeout
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module
 pycompile_module="async_timeout"
diff --git a/srcpkgs/python3-async_generator/template b/srcpkgs/python3-async_generator/template
index 20d9f7ea0d1..16d43ef99cf 100644
--- a/srcpkgs/python3-async_generator/template
+++ b/srcpkgs/python3-async_generator/template
@@ -2,7 +2,6 @@
 pkgname=python3-async_generator
 version=1.10
 revision=2
-archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module
 pycompile_module="async_generator"
diff --git a/srcpkgs/python3-atspi/template b/srcpkgs/python3-atspi/template
index a33a374fe18..f3024c4ceb5 100644
--- a/srcpkgs/python3-atspi/template
+++ b/srcpkgs/python3-atspi/template
@@ -2,7 +2,6 @@
 pkgname=python3-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
diff --git a/srcpkgs/python3-authres/template b/srcpkgs/python3-authres/template
index 27f543c33ba..666a0fb7c06 100644
--- a/srcpkgs/python3-authres/template
+++ b/srcpkgs/python3-authres/template
@@ -2,7 +2,6 @@
 pkgname=python3-authres
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="authres-${version}"
 build_style=python3-module
 pycompile_module=authres
diff --git a/srcpkgs/python3-autobahn/template b/srcpkgs/python3-autobahn/template
index fb3c80d8bb7..69d75e9178a 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -2,7 +2,6 @@
 pkgname=python3-autobahn
 version=20.7.1
 revision=1
-archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-blessed/template b/srcpkgs/python3-blessed/template
index a4a2274bd89..abdd6bb18a5 100644
--- a/srcpkgs/python3-blessed/template
+++ b/srcpkgs/python3-blessed/template
@@ -2,7 +2,6 @@
 pkgname=python3-blessed
 version=1.17.9
 revision=1
-archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-bokeh/template b/srcpkgs/python3-bokeh/template
index 18d8258acb3..fc07fd29ea2 100644
--- a/srcpkgs/python3-bokeh/template
+++ b/srcpkgs/python3-bokeh/template
@@ -2,7 +2,6 @@
 pkgname=python3-bokeh
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 make_build_args="--build-js"
diff --git a/srcpkgs/python3-boltons/template b/srcpkgs/python3-boltons/template
index 78f0f03a762..4921021252a 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -2,7 +2,6 @@
 pkgname=python3-boltons
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module
 pycompile_module="boltons"
diff --git a/srcpkgs/python3-boto3/template b/srcpkgs/python3-boto3/template
index 92126db33d7..44665c3e1e6 100644
--- a/srcpkgs/python3-boto3/template
+++ b/srcpkgs/python3-boto3/template
@@ -2,7 +2,6 @@
 pkgname=python3-boto3
 version=1.14.47
 revision=1
-archs=noarch
 wrksrc="boto3-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-breathe/template b/srcpkgs/python3-breathe/template
index 8e27f9397f4..49a45b25ad8 100644
--- a/srcpkgs/python3-breathe/template
+++ b/srcpkgs/python3-breathe/template
@@ -2,7 +2,6 @@
 pkgname=python3-breathe
 version=4.20.0
 revision=1
-archs=noarch
 wrksrc="breathe-${version}"
 build_style=python3-module
 _pyreqs="python3-Sphinx python3-docutils python3-six"
diff --git a/srcpkgs/python3-cachetools/template b/srcpkgs/python3-cachetools/template
index 6b14d89eff2..7220d8cdb09 100644
--- a/srcpkgs/python3-cachetools/template
+++ b/srcpkgs/python3-cachetools/template
@@ -2,7 +2,6 @@
 pkgname=python3-cachetools
 version=4.1.0
 revision=1
-archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-canonicaljson/template b/srcpkgs/python3-canonicaljson/template
index 87b7c8cc8e3..663ab617acc 100644
--- a/srcpkgs/python3-canonicaljson/template
+++ b/srcpkgs/python3-canonicaljson/template
@@ -2,7 +2,6 @@
 pkgname=python3-canonicaljson
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-casttube/template b/srcpkgs/python3-casttube/template
index 9e5544b0101..9d6798ee872 100644
--- a/srcpkgs/python3-casttube/template
+++ b/srcpkgs/python3-casttube/template
@@ -2,7 +2,6 @@
 pkgname=python3-casttube
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module
 pycompile_module="casttube"
diff --git a/srcpkgs/python3-certifi/template b/srcpkgs/python3-certifi/template
index 35807ad3642..185bf0b31ab 100644
--- a/srcpkgs/python3-certifi/template
+++ b/srcpkgs/python3-certifi/template
@@ -2,7 +2,6 @@
 pkgname=python3-certifi
 version=2020.06.20
 revision=1
-archs=noarch
 wrksrc="python-certifi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-changelogs/template b/srcpkgs/python3-changelogs/template
index d9a7784cf3b..8f4cb4a66b1 100644
--- a/srcpkgs/python3-changelogs/template
+++ b/srcpkgs/python3-changelogs/template
@@ -2,7 +2,6 @@
 pkgname=python3-changelogs
 version=0.14.0
 revision=2
-archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module
 pycompile_module="changelogs"
diff --git a/srcpkgs/python3-chess/template b/srcpkgs/python3-chess/template
index 3bf7847302e..82abdbe0fc6 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -2,7 +2,6 @@
 pkgname=python3-chess
 version=0.30.1
 revision=1
-archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-chromecast/template b/srcpkgs/python3-chromecast/template
index e83286d30ce..1f581a88eb8 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -2,7 +2,6 @@
 pkgname=python3-chromecast
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module
 pycompile_module="pychromecast"
diff --git a/srcpkgs/python3-cjkwrap/template b/srcpkgs/python3-cjkwrap/template
index fa951f26223..04fbf1440af 100644
--- a/srcpkgs/python3-cjkwrap/template
+++ b/srcpkgs/python3-cjkwrap/template
@@ -2,7 +2,6 @@
 pkgname=python3-cjkwrap
 version=2.2
 revision=2
-archs=noarch
 wrksrc="cjkwrap-v${version}"
 build_style=python3-module
 pycompile_module="cjkwrap.py"
diff --git a/srcpkgs/python3-cli-ui/template b/srcpkgs/python3-cli-ui/template
index b8e8c97d96f..47ed99e080f 100644
--- a/srcpkgs/python3-cli-ui/template
+++ b/srcpkgs/python3-cli-ui/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli-ui
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module
 pycompile_module="cli_ui"
diff --git a/srcpkgs/python3-cli_helpers/template b/srcpkgs/python3-cli_helpers/template
index 87b284e3cb5..d576e3f3e11 100644
--- a/srcpkgs/python3-cli_helpers/template
+++ b/srcpkgs/python3-cli_helpers/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli_helpers
 version=1.2.1
 revision=2
-archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module
 pycompile_module="cli_helpers"
diff --git a/srcpkgs/python3-click-plugins/template b/srcpkgs/python3-click-plugins/template
index 0ef6ce6b248..54b2de90f7d 100644
--- a/srcpkgs/python3-click-plugins/template
+++ b/srcpkgs/python3-click-plugins/template
@@ -2,7 +2,6 @@
 pkgname=python3-click-plugins
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module
 pycompile_module="click-plugins"
diff --git a/srcpkgs/python3-cloudscraper/template b/srcpkgs/python3-cloudscraper/template
index 01cac007c83..57575537070 100644
--- a/srcpkgs/python3-cloudscraper/template
+++ b/srcpkgs/python3-cloudscraper/template
@@ -2,7 +2,6 @@
 pkgname=python3-cloudscraper
 version=1.2.40
 revision=1
-archs=noarch
 wrksrc=cloudscraper-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-cmdln/template b/srcpkgs/python3-cmdln/template
index 2b7e21f3980..d0f84304fca 100644
--- a/srcpkgs/python3-cmdln/template
+++ b/srcpkgs/python3-cmdln/template
@@ -2,7 +2,6 @@
 pkgname=python3-cmdln
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module
 pycompile_module="cmdln.py"
diff --git a/srcpkgs/python3-colorclass/template b/srcpkgs/python3-colorclass/template
index ed8d2d2ea02..3874e6504d5 100644
--- a/srcpkgs/python3-colorclass/template
+++ b/srcpkgs/python3-colorclass/template
@@ -2,7 +2,6 @@
 pkgname=python3-colorclass
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module
 pycompile_module="colorclass"
diff --git a/srcpkgs/python3-crccheck/template b/srcpkgs/python3-crccheck/template
index a0a86e0ae2c..31d05495d2d 100644
--- a/srcpkgs/python3-crccheck/template
+++ b/srcpkgs/python3-crccheck/template
@@ -2,7 +2,6 @@
 pkgname=python3-crccheck
 version=0.6
 revision=2
-archs=noarch
 wrksrc="crccheck-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dateparser/template b/srcpkgs/python3-dateparser/template
index e36395eea8a..16257fd04ed 100644
--- a/srcpkgs/python3-dateparser/template
+++ b/srcpkgs/python3-dateparser/template
@@ -2,7 +2,6 @@
 pkgname=python3-dateparser
 version=0.7.6
 revision=1
-archs=noarch
 wrksrc=dateparser-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dbusmock/template b/srcpkgs/python3-dbusmock/template
index d8330a210c0..aa46bf5ad74 100644
--- a/srcpkgs/python3-dbusmock/template
+++ b/srcpkgs/python3-dbusmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-dbusmock
 version=0.19
 revision=1
-archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-deprecation/template b/srcpkgs/python3-deprecation/template
index 5983a0aadbf..0c87034caf2 100644
--- a/srcpkgs/python3-deprecation/template
+++ b/srcpkgs/python3-deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-deprecation
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-discid/template b/srcpkgs/python3-discid/template
index de3f5e571db..981445e5136 100644
--- a/srcpkgs/python3-discid/template
+++ b/srcpkgs/python3-discid/template
@@ -2,7 +2,6 @@
 pkgname=python3-discid
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module
 pycompile_module=discid
diff --git a/srcpkgs/python3-distlib/template b/srcpkgs/python3-distlib/template
index ff983ca9b6d..36186ff0700 100644
--- a/srcpkgs/python3-distlib/template
+++ b/srcpkgs/python3-distlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-distlib
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="distlib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dkimpy/template b/srcpkgs/python3-dkimpy/template
index 836f46d7aec..c334ec70bf6 100644
--- a/srcpkgs/python3-dkimpy/template
+++ b/srcpkgs/python3-dkimpy/template
@@ -2,7 +2,6 @@
 pkgname=python3-dkimpy
 version=1.0.0
 revision=2
-archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python3-module
 pycompile_module="dkim"
@@ -30,7 +29,6 @@ post_install() {
 
 python-dkimpy_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-dkimpy"
 	short_desc+=" - transitional dummy package"
 }
diff --git a/srcpkgs/python3-doi/template b/srcpkgs/python3-doi/template
index 29b9036922c..04c80853ecc 100644
--- a/srcpkgs/python3-doi/template
+++ b/srcpkgs/python3-doi/template
@@ -2,7 +2,6 @@
 pkgname=python3-doi
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="python-doi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dpkt/template b/srcpkgs/python3-dpkt/template
index 5ca1a6b1dbb..8045291e788 100644
--- a/srcpkgs/python3-dpkt/template
+++ b/srcpkgs/python3-dpkt/template
@@ -2,7 +2,6 @@
 pkgname=python3-dpkt
 version=1.9.2
 revision=1
-archs=noarch
 wrksrc="dpkt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-easygui/template b/srcpkgs/python3-easygui/template
index a9a2f66d865..82e665df9b6 100644
--- a/srcpkgs/python3-easygui/template
+++ b/srcpkgs/python3-easygui/template
@@ -2,7 +2,6 @@
 pkgname=python3-easygui
 version=0.98.1
 revision=2
-archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module
 pycompile_module="easygui"
diff --git a/srcpkgs/python3-elementpath/template b/srcpkgs/python3-elementpath/template
index 9f1a1fe1a8e..ad5f0f92564 100644
--- a/srcpkgs/python3-elementpath/template
+++ b/srcpkgs/python3-elementpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-elementpath
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=elementpath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-eliot/template b/srcpkgs/python3-eliot/template
index eca2c769d45..e139012e680 100644
--- a/srcpkgs/python3-eliot/template
+++ b/srcpkgs/python3-eliot/template
@@ -2,7 +2,6 @@
 pkgname=python3-eliot
 version=1.12.0
 revision=1
-archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-enchant/template b/srcpkgs/python3-enchant/template
index 1540cc34bc8..6c7f5a8837d 100644
--- a/srcpkgs/python3-enchant/template
+++ b/srcpkgs/python3-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python3-enchant
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools enchant-devel"
diff --git a/srcpkgs/python3-etesync/template b/srcpkgs/python3-etesync/template
index c0822245056..6c2218c4732 100644
--- a/srcpkgs/python3-etesync/template
+++ b/srcpkgs/python3-etesync/template
@@ -2,7 +2,6 @@
 pkgname=python3-etesync
 version=0.11.1
 revision=1
-archs=noarch
 wrksrc="etesync-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ffmpeg-python/template b/srcpkgs/python3-ffmpeg-python/template
index 137a864711f..ba0c070ffe5 100644
--- a/srcpkgs/python3-ffmpeg-python/template
+++ b/srcpkgs/python3-ffmpeg-python/template
@@ -2,7 +2,6 @@
 pkgname=python3-ffmpeg-python
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="ffmpeg-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fido2/template b/srcpkgs/python3-fido2/template
index fcf8a219ca2..bf76019c3a6 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -3,7 +3,6 @@ pkgname=python3-fido2
 _pkgname=fido2
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-filebytes/template b/srcpkgs/python3-filebytes/template
index 8a7236c705a..1953ab8b4b5 100644
--- a/srcpkgs/python3-filebytes/template
+++ b/srcpkgs/python3-filebytes/template
@@ -2,7 +2,6 @@
 pkgname=python3-filebytes
 version=0.10.2
 revision=1
-archs="noarch"
 wrksrc="filebytes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fishnet/template b/srcpkgs/python3-fishnet/template
index 6280ae8e966..f49689f6843 100644
--- a/srcpkgs/python3-fishnet/template
+++ b/srcpkgs/python3-fishnet/template
@@ -2,7 +2,6 @@
 pkgname=python3-fishnet
 version=1.15.18
 revision=2
-archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module
 pycompile_module="fishnet.py"
diff --git a/srcpkgs/python3-flexmock/template b/srcpkgs/python3-flexmock/template
index 8a7c9a2894d..39e01adee6c 100644
--- a/srcpkgs/python3-flexmock/template
+++ b/srcpkgs/python3-flexmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-flexmock
 version=0.10.4
 revision=2
-archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module
 pycompile_module="flexmock.py"
diff --git a/srcpkgs/python3-freezegun/template b/srcpkgs/python3-freezegun/template
index d8c96e1f1c6..465965a5489 100644
--- a/srcpkgs/python3-freezegun/template
+++ b/srcpkgs/python3-freezegun/template
@@ -2,7 +2,6 @@
 pkgname=python3-freezegun
 version=0.3.15
 revision=1
-archs=noarch
 wrksrc="freezegun-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index 739000a887c..73280ccab1a 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -2,7 +2,6 @@
 pkgname=python3-frozendict
 version=1.2
 revision=2
-archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module
 pycompile_module="frozendict"
diff --git a/srcpkgs/python3-furl/template b/srcpkgs/python3-furl/template
index 5fc53ba21de..71ae4e650d8 100644
--- a/srcpkgs/python3-furl/template
+++ b/srcpkgs/python3-furl/template
@@ -2,7 +2,6 @@
 pkgname=python3-furl
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="furl-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-geojson/template b/srcpkgs/python3-geojson/template
index 90e7d5a0e60..01bd91ec9ab 100644
--- a/srcpkgs/python3-geojson/template
+++ b/srcpkgs/python3-geojson/template
@@ -2,7 +2,6 @@
 pkgname=python3-geojson
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module
 pycompile_module="geojson"
diff --git a/srcpkgs/python3-gitchangelog/template b/srcpkgs/python3-gitchangelog/template
index cc1945f2623..d8ea98a34a5 100644
--- a/srcpkgs/python3-gitchangelog/template
+++ b/srcpkgs/python3-gitchangelog/template
@@ -2,7 +2,6 @@
 pkgname=python3-gitchangelog
 version=3.0.4
 revision=2
-archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module
 pycompile_module="gitchangelog"
diff --git a/srcpkgs/python3-google-api-core/template b/srcpkgs/python3-google-api-core/template
index e2f78f172cb..bcfa3fa83b4 100644
--- a/srcpkgs/python3-google-api-core/template
+++ b/srcpkgs/python3-google-api-core/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-core
 version=1.17.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-api-python-client/template b/srcpkgs/python3-google-api-python-client/template
index 12859dd49ec..34000c8412f 100644
--- a/srcpkgs/python3-google-api-python-client/template
+++ b/srcpkgs/python3-google-api-python-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-python-client
 version=1.8.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-auth-httplib2/template b/srcpkgs/python3-google-auth-httplib2/template
index 230494ba905..7cade87f4ca 100644
--- a/srcpkgs/python3-google-auth-httplib2/template
+++ b/srcpkgs/python3-google-auth-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth-httplib2
 version=0.0.3
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-google-auth/template b/srcpkgs/python3-google-auth/template
index 8e18145cda9..7067d8daeb5 100644
--- a/srcpkgs/python3-google-auth/template
+++ b/srcpkgs/python3-google-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth
 version=1.16.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-googleapis-common-protos/template b/srcpkgs/python3-googleapis-common-protos/template
index 1b0747910e0..326f783ddab 100644
--- a/srcpkgs/python3-googleapis-common-protos/template
+++ b/srcpkgs/python3-googleapis-common-protos/template
@@ -2,7 +2,6 @@
 pkgname=python3-googleapis-common-protos
 version=1.51.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-graphviz/template b/srcpkgs/python3-graphviz/template
index 2e7ec3bd76a..f1282e5d36c 100644
--- a/srcpkgs/python3-graphviz/template
+++ b/srcpkgs/python3-graphviz/template
@@ -2,7 +2,6 @@
 pkgname=python3-graphviz
 version=0.13.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="graphviz"
diff --git a/srcpkgs/python3-hawkauthlib/template b/srcpkgs/python3-hawkauthlib/template
index 1456fa7d814..4fc1166f99c 100644
--- a/srcpkgs/python3-hawkauthlib/template
+++ b/srcpkgs/python3-hawkauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-hawkauthlib
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module
 pycompile_module="hawkauthlib"
diff --git a/srcpkgs/python3-hjson/template b/srcpkgs/python3-hjson/template
index 9cd01b86f08..c4d60a580a8 100644
--- a/srcpkgs/python3-hjson/template
+++ b/srcpkgs/python3-hjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-hjson
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="hjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hkdf/template b/srcpkgs/python3-hkdf/template
index 0faaf05b5fe..fef3e6d4dc7 100644
--- a/srcpkgs/python3-hkdf/template
+++ b/srcpkgs/python3-hkdf/template
@@ -2,7 +2,6 @@
 pkgname=python3-hkdf
 version=0.0.3
 revision=2
-archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module
 pycompile_module="hkdf.py"
diff --git a/srcpkgs/python3-html2text/template b/srcpkgs/python3-html2text/template
index 54e9dab354b..e06075d34be 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -2,7 +2,6 @@
 pkgname=python3-html2text
 version=2020.1.16
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python3-humanize/template b/srcpkgs/python3-humanize/template
index cbf4398d976..7062c5589b8 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -2,7 +2,6 @@
 pkgname=python3-humanize
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hypercorn/template b/srcpkgs/python3-hypercorn/template
index a2280eba7fd..c2eabe98d17 100644
--- a/srcpkgs/python3-hypercorn/template
+++ b/srcpkgs/python3-hypercorn/template
@@ -2,7 +2,6 @@
 pkgname=python3-hypercorn
 version=0.10.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-i3ipc/template b/srcpkgs/python3-i3ipc/template
index df0c16a161b..72518ad93a3 100644
--- a/srcpkgs/python3-i3ipc/template
+++ b/srcpkgs/python3-i3ipc/template
@@ -2,7 +2,6 @@
 pkgname=python3-i3ipc
 version=2.2.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index 0608fb7278c..75126a355ca 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -2,7 +2,6 @@
 pkgname=python3-idna-ssl
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module
 pycompile_module="idna_ssl.py"
diff --git a/srcpkgs/python3-ifaddr/template b/srcpkgs/python3-ifaddr/template
index 803404735be..e1e78db4e0a 100644
--- a/srcpkgs/python3-ifaddr/template
+++ b/srcpkgs/python3-ifaddr/template
@@ -2,7 +2,6 @@
 pkgname=python3-ifaddr
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-influxdb/template b/srcpkgs/python3-influxdb/template
index 366eea281af..62b135c20b7 100644
--- a/srcpkgs/python3-influxdb/template
+++ b/srcpkgs/python3-influxdb/template
@@ -2,7 +2,6 @@
 pkgname=python3-influxdb
 version=5.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python-setuptools"
diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index f40bfc437bb..6343085ce87 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython
 version=7.17.0
 revision=1
-archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_genutils/template b/srcpkgs/python3-ipython_genutils/template
index b2754424178..190fa6f9b5f 100644
--- a/srcpkgs/python3-ipython_genutils/template
+++ b/srcpkgs/python3-ipython_genutils/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_genutils
 version=0.2.0
 revision=4
-archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_ipykernel/template b/srcpkgs/python3-ipython_ipykernel/template
index c3c0232c14a..19864960761 100644
--- a/srcpkgs/python3-ipython_ipykernel/template
+++ b/srcpkgs/python3-ipython_ipykernel/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_ipykernel
 version=5.2.0
 revision=1
-archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-ipython
diff --git a/srcpkgs/python3-irc/template b/srcpkgs/python3-irc/template
index 714c11dc943..5e4f518e5c3 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -2,7 +2,6 @@
 pkgname=python3-irc
 version=17.1
 revision=2
-archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module
 pycompile_module="irc"
diff --git a/srcpkgs/python3-itunespy/template b/srcpkgs/python3-itunespy/template
index 7a04a945dbd..6ef6b151473 100644
--- a/srcpkgs/python3-itunespy/template
+++ b/srcpkgs/python3-itunespy/template
@@ -2,7 +2,6 @@
 pkgname=python3-itunespy
 version=1.6
 revision=1
-archs=noarch
 wrksrc="itunespy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-janus/template b/srcpkgs/python3-janus/template
index b7388d96975..e7ca53a5773 100644
--- a/srcpkgs/python3-janus/template
+++ b/srcpkgs/python3-janus/template
@@ -2,7 +2,6 @@
 pkgname=python3-janus
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="janus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.classes/template b/srcpkgs/python3-jaraco.classes/template
index 6dbe89cb7f9..15e4996dedc 100644
--- a/srcpkgs/python3-jaraco.classes/template
+++ b/srcpkgs/python3-jaraco.classes/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.classes
 version=3.1.0
 revision=1
-archs=noarch
 wrksrc="jaraco.classes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.collections/template b/srcpkgs/python3-jaraco.collections/template
index 64f78eb4300..0a29387cf13 100644
--- a/srcpkgs/python3-jaraco.collections/template
+++ b/srcpkgs/python3-jaraco.collections/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.collections
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="jaraco.collections-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.functools/template b/srcpkgs/python3-jaraco.functools/template
index ca1ebb066d5..31a7711c5a7 100644
--- a/srcpkgs/python3-jaraco.functools/template
+++ b/srcpkgs/python3-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.functools
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.text/template b/srcpkgs/python3-jaraco.text/template
index a64ba0db7cb..f971a0326a7 100644
--- a/srcpkgs/python3-jaraco.text/template
+++ b/srcpkgs/python3-jaraco.text/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.text
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="jaraco.text-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco/template b/srcpkgs/python3-jaraco/template
index d6ab6b23228..a718dfc9736 100644
--- a/srcpkgs/python3-jaraco/template
+++ b/srcpkgs/python3-jaraco/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco
 version=1.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Namespace package declaration for jaraco (Python3)"
 maintainer="bra1nwave <bra1nwave@protonmail.com>"
diff --git a/srcpkgs/python3-jeepney/template b/srcpkgs/python3-jeepney/template
index 6654f4a7c97..691180ca473 100644
--- a/srcpkgs/python3-jeepney/template
+++ b/srcpkgs/python3-jeepney/template
@@ -2,7 +2,6 @@
 pkgname=python3-jeepney
 version=0.4.3
 revision=1
-archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-josepy/template b/srcpkgs/python3-josepy/template
index 903bd7028ed..cff1341c508 100644
--- a/srcpkgs/python3-josepy/template
+++ b/srcpkgs/python3-josepy/template
@@ -2,7 +2,6 @@
 pkgname=python3-josepy
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module
 pycompile_module="josepy"
diff --git a/srcpkgs/python3-jsondiff/template b/srcpkgs/python3-jsondiff/template
index 9e22f1dc42b..f196830147b 100644
--- a/srcpkgs/python3-jsondiff/template
+++ b/srcpkgs/python3-jsondiff/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsondiff
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="jsondiff-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jsonrpc-server/template b/srcpkgs/python3-jsonrpc-server/template
index b51e185efe9..a259f1f9a37 100644
--- a/srcpkgs/python3-jsonrpc-server/template
+++ b/srcpkgs/python3-jsonrpc-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsonrpc-server
 version=0.3.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_client/template b/srcpkgs/python3-jupyter_client/template
index 6cba34ab0b8..8291700d9ae 100644
--- a/srcpkgs/python3-jupyter_client/template
+++ b/srcpkgs/python3-jupyter_client/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_client
 version=6.1.0
 revision=1
-archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 4b404987cd8..9d03069b213 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_console
 version=6.1.0
 revision=4
-archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template
index ea75fa510a7..5ab8150f31a 100644
--- a/srcpkgs/python3-jupyter_core/template
+++ b/srcpkgs/python3-jupyter_core/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_core
 version=4.6.3
 revision=1
-archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 
 python3-jupyter_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-jupyter_notebook python3-jupyter_console
 	 python3-jupyter_ipywidgets"
 	short_desc="Jupyter metapackage for Void Linux"
diff --git a/srcpkgs/python3-jupyter_ipywidgets/template b/srcpkgs/python3-jupyter_ipywidgets/template
index 7e64279aeec..17b0445e2c8 100644
--- a/srcpkgs/python3-jupyter_ipywidgets/template
+++ b/srcpkgs/python3-jupyter_ipywidgets/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_ipywidgets
 version=7.5.1
 revision=1
-archs=noarch
 _widgetsnbextver=3.5.0
 wrksrc="ipywidgets-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-jupyter_nbconvert/template b/srcpkgs/python3-jupyter_nbconvert/template
index dba1d5a980e..b2c31bbf512 100644
--- a/srcpkgs/python3-jupyter_nbconvert/template
+++ b/srcpkgs/python3-jupyter_nbconvert/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbconvert
 version=5.6.1
 revision=1
-archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_nbformat/template b/srcpkgs/python3-jupyter_nbformat/template
index a46c5697212..8c0e41c0e77 100644
--- a/srcpkgs/python3-jupyter_nbformat/template
+++ b/srcpkgs/python3-jupyter_nbformat/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbformat
 version=5.0.4
 revision=1
-archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_notebook/template b/srcpkgs/python3-jupyter_notebook/template
index cc1727d2ee0..37a127cea7a 100644
--- a/srcpkgs/python3-jupyter_notebook/template
+++ b/srcpkgs/python3-jupyter_notebook/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_notebook
 version=6.0.3
 revision=1
-archs=noarch
 wrksrc="notebook-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_qtconsole/template b/srcpkgs/python3-jupyter_qtconsole/template
index 0c062662763..65a3a05c1ec 100644
--- a/srcpkgs/python3-jupyter_qtconsole/template
+++ b/srcpkgs/python3-jupyter_qtconsole/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_qtconsole
 version=4.7.1
 revision=1
-archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_widgetsnbextension/template b/srcpkgs/python3-jupyter_widgetsnbextension/template
index e1fe046894c..f64149d86f6 100644
--- a/srcpkgs/python3-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python3-jupyter_widgetsnbextension/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_widgetsnbextension
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyring/template b/srcpkgs/python3-keyring/template
index 97e10618eee..0585163b07e 100644
--- a/srcpkgs/python3-keyring/template
+++ b/srcpkgs/python3-keyring/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyring
 version=21.2.1
 revision=1
-archs=noarch
 wrksrc="keyring-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyrings-alt/template b/srcpkgs/python3-keyrings-alt/template
index 3052d257d1c..1ac1a6331ee 100644
--- a/srcpkgs/python3-keyrings-alt/template
+++ b/srcpkgs/python3-keyrings-alt/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyrings-alt
 version=3.4.0
 revision=2
-archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-language-server/template b/srcpkgs/python3-language-server/template
index 8ac0842f3b9..333431b4280 100644
--- a/srcpkgs/python3-language-server/template
+++ b/srcpkgs/python3-language-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-language-server
 version=0.34.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macaroons/template b/srcpkgs/python3-macaroons/template
index 7dfb4f3f588..542ba921643 100644
--- a/srcpkgs/python3-macaroons/template
+++ b/srcpkgs/python3-macaroons/template
@@ -2,7 +2,6 @@
 pkgname=python3-macaroons
 version=0.13.0
 revision=3
-archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index 5e65f7993dd..7d966f69d09 100644
--- a/srcpkgs/python3-macholib/template
+++ b/srcpkgs/python3-macholib/template
@@ -2,7 +2,6 @@
 pkgname=python3-macholib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-markdown-math/template b/srcpkgs/python3-markdown-math/template
index b49d58dd79c..b54cf2cd2fc 100644
--- a/srcpkgs/python3-markdown-math/template
+++ b/srcpkgs/python3-markdown-math/template
@@ -2,7 +2,6 @@
 pkgname=python3-markdown-math
 version=0.7
 revision=1
-archs=noarch
 wrksrc=python-markdown-math-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-marshmallow/template b/srcpkgs/python3-marshmallow/template
index 2a3b2329389..7eaba150dd1 100644
--- a/srcpkgs/python3-marshmallow/template
+++ b/srcpkgs/python3-marshmallow/template
@@ -2,7 +2,6 @@
 pkgname=python3-marshmallow
 version=3.7.0
 revision=1
-archs=noarch
 wrksrc="marshmallow-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 25e008c920a..f828d3e11b3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 python3-matplotlib-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove "${py3_sitelib}/matplotlib/mpl-data"
diff --git a/srcpkgs/python3-matrix-nio/template b/srcpkgs/python3-matrix-nio/template
index fe28e1596f8..a8d00ffa34e 100644
--- a/srcpkgs/python3-matrix-nio/template
+++ b/srcpkgs/python3-matrix-nio/template
@@ -2,7 +2,6 @@
 pkgname=python3-matrix-nio
 version=0.14.1
 revision=1
-archs=noarch
 wrksrc="matrix-nio-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-minidb/template b/srcpkgs/python3-minidb/template
index 140964b7a8a..540527fe2c6 100644
--- a/srcpkgs/python3-minidb/template
+++ b/srcpkgs/python3-minidb/template
@@ -2,7 +2,6 @@
 pkgname=python3-minidb
 version=2.0.2
 revision=3
-archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module
 pycompile_module="minidb.py"
diff --git a/srcpkgs/python3-mock/template b/srcpkgs/python3-mock/template
index 5506d4a70c2..134b61f8bad 100644
--- a/srcpkgs/python3-mock/template
+++ b/srcpkgs/python3-mock/template
@@ -2,7 +2,6 @@
 pkgname=python3-mock
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="mock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index 113e728c9d8..32d046f3c80 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -2,7 +2,6 @@
 pkgname=python3-more-itertools
 version=8.0.2
 revision=1
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python3-mpv/template b/srcpkgs/python3-mpv/template
index 984b7baa224..88d23b1690e 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -2,7 +2,6 @@
 pkgname=python3-mpv
 version=0.4.5
 revision=1
-archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-msoffcrypto-tool/template b/srcpkgs/python3-msoffcrypto-tool/template
index 6ae64cb2b1d..943bee51b52 100644
--- a/srcpkgs/python3-msoffcrypto-tool/template
+++ b/srcpkgs/python3-msoffcrypto-tool/template
@@ -2,7 +2,6 @@
 pkgname=python3-msoffcrypto-tool
 version=4.10.2
 revision=2
-archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-munkres/template b/srcpkgs/python3-munkres/template
index d0d0a013e80..3a0291a6d93 100644
--- a/srcpkgs/python3-munkres/template
+++ b/srcpkgs/python3-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python3-munkres
 version=1.1.2
 revision=2
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python3-musicpd/template b/srcpkgs/python3-musicpd/template
index 8c6ba2fb451..6808849a0e6 100644
--- a/srcpkgs/python3-musicpd/template
+++ b/srcpkgs/python3-musicpd/template
@@ -2,7 +2,6 @@
 pkgname=python3-musicpd
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module
 pycompile_module="musicpd.py"
diff --git a/srcpkgs/python3-mypy/template b/srcpkgs/python3-mypy/template
index 5d7f93d5772..32a13b25d45 100644
--- a/srcpkgs/python3-mypy/template
+++ b/srcpkgs/python3-mypy/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy
 version=0.761
 revision=1
-archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module
 pycompile_module="mypy"
diff --git a/srcpkgs/python3-mypy_extensions/template b/srcpkgs/python3-mypy_extensions/template
index e2d12256de5..4112db6fb62 100644
--- a/srcpkgs/python3-mypy_extensions/template
+++ b/srcpkgs/python3-mypy_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy_extensions
 version=0.4.3
 revision=2
-archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module
 pycompile_module="mypy_extensions.py"
diff --git a/srcpkgs/python3-nbxmpp/template b/srcpkgs/python3-nbxmpp/template
index b73a21dfe39..f739c098e51 100644
--- a/srcpkgs/python3-nbxmpp/template
+++ b/srcpkgs/python3-nbxmpp/template
@@ -2,7 +2,6 @@
 pkgname=python3-nbxmpp
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -17,7 +16,6 @@ checksum=ca60c9bd1527fbeac305df90c670f11f2fe79f1304dad1efa0315f7484a34d43
 
 python-nbxmpp_package() {
 	build_style=meta
-	archs=noarch
 	# Someone bumped this package to 1.0.0, which doesn't support Python 2
 	short_desc+=" - Python 2 - removed package"
 }
diff --git a/srcpkgs/python3-neovim/template b/srcpkgs/python3-neovim/template
index b5c705bbafd..cb61c800dac 100644
--- a/srcpkgs/python3-neovim/template
+++ b/srcpkgs/python3-neovim/template
@@ -2,7 +2,6 @@
 pkgname=python3-neovim
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-networkx/template b/srcpkgs/python3-networkx/template
index b993e4427c3..8fdaa74adb4 100644
--- a/srcpkgs/python3-networkx/template
+++ b/srcpkgs/python3-networkx/template
@@ -2,7 +2,6 @@
 pkgname=python3-networkx
 version=2.4
 revision=1
-archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools unzip"
diff --git a/srcpkgs/python3-nose-random/template b/srcpkgs/python3-nose-random/template
index 868d57cd494..e0b97430a9e 100644
--- a/srcpkgs/python3-nose-random/template
+++ b/srcpkgs/python3-nose-random/template
@@ -2,7 +2,6 @@
 pkgname=python3-nose-random
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="nose-random-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-notify2/template b/srcpkgs/python3-notify2/template
index 8416e98cc32..80cc7a2b5a2 100644
--- a/srcpkgs/python3-notify2/template
+++ b/srcpkgs/python3-notify2/template
@@ -2,7 +2,6 @@
 pkgname=python3-notify2
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="notify2-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/python3-ntlm-auth/template b/srcpkgs/python3-ntlm-auth/template
index fc9746b14aa..0b02fa3b67a 100644
--- a/srcpkgs/python3-ntlm-auth/template
+++ b/srcpkgs/python3-ntlm-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-ntlm-auth
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="ntlm-auth-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-oletools/template b/srcpkgs/python3-oletools/template
index 68a14274ad2..327895d5394 100644
--- a/srcpkgs/python3-oletools/template
+++ b/srcpkgs/python3-oletools/template
@@ -2,7 +2,6 @@
 pkgname=python3-oletools
 version=0.55
 revision=2
-archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module
 pycompile_module="oletools"
diff --git a/srcpkgs/python3-opcua/template b/srcpkgs/python3-opcua/template
index 16583e68089..872986836b8 100644
--- a/srcpkgs/python3-opcua/template
+++ b/srcpkgs/python3-opcua/template
@@ -2,7 +2,6 @@
 pkgname=python3-opcua
 version=0.98.11
 revision=1
-archs=noarch
 wrksrc="opcua-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-orderedmultidict/template b/srcpkgs/python3-orderedmultidict/template
index e6df82104cd..74d1a68bf9d 100644
--- a/srcpkgs/python3-orderedmultidict/template
+++ b/srcpkgs/python3-orderedmultidict/template
@@ -2,7 +2,6 @@
 pkgname=python3-orderedmultidict
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="orderedmultidict-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pafy/template b/srcpkgs/python3-pafy/template
index 8d3fafaf789..d6086f4a59a 100644
--- a/srcpkgs/python3-pafy/template
+++ b/srcpkgs/python3-pafy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pafy
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools youtube-dl"
diff --git a/srcpkgs/python3-pamqp/template b/srcpkgs/python3-pamqp/template
index 8c66eb482de..a3e7ab9c06b 100644
--- a/srcpkgs/python3-pamqp/template
+++ b/srcpkgs/python3-pamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pamqp
 version=2.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parsedatetime/template b/srcpkgs/python3-parsedatetime/template
index 71855b7c3ff..a77e82725e6 100644
--- a/srcpkgs/python3-parsedatetime/template
+++ b/srcpkgs/python3-parsedatetime/template
@@ -2,7 +2,6 @@
 pkgname=python3-parsedatetime
 version=2.6
 revision=1
-archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parso/template b/srcpkgs/python3-parso/template
index 5fed4bfb7ee..6c5b0e5f653 100644
--- a/srcpkgs/python3-parso/template
+++ b/srcpkgs/python3-parso/template
@@ -2,7 +2,6 @@
 pkgname=python3-parso
 version=0.8.0
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-path-and-address/template b/srcpkgs/python3-path-and-address/template
index 5c6825009ec..64d7a075e84 100644
--- a/srcpkgs/python3-path-and-address/template
+++ b/srcpkgs/python3-path-and-address/template
@@ -2,7 +2,6 @@
 pkgname=python3-path-and-address
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="path-and-address-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pcodedmp/template b/srcpkgs/python3-pcodedmp/template
index eb52c809fae..27f4310bf93 100644
--- a/srcpkgs/python3-pcodedmp/template
+++ b/srcpkgs/python3-pcodedmp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pcodedmp
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module
 pycompile_module="pcodedmp"
diff --git a/srcpkgs/python3-pefile/template b/srcpkgs/python3-pefile/template
index 8791f06640b..ed3c2befb4e 100644
--- a/srcpkgs/python3-pefile/template
+++ b/srcpkgs/python3-pefile/template
@@ -2,7 +2,6 @@
 pkgname=python3-pefile
 version=2019.4.18
 revision=2
-archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module
 pycompile_module="pefile.py peutils.py ordlookup"
diff --git a/srcpkgs/python3-pem/template b/srcpkgs/python3-pem/template
index ad51601c006..ce1123185ad 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -2,7 +2,6 @@
 pkgname=python3-pem
 version=19.3.0
 revision=1
-archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module
 pycompile_module="pem"
diff --git a/srcpkgs/python3-perf/template b/srcpkgs/python3-perf/template
index dff80be01bc..8b82eaf55cc 100644
--- a/srcpkgs/python3-perf/template
+++ b/srcpkgs/python3-perf/template
@@ -2,7 +2,6 @@
 pkgname=python3-perf
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module
 pycompile_module="pyperf"
diff --git a/srcpkgs/python3-pgspecial/template b/srcpkgs/python3-pgspecial/template
index 34b660dfc07..4bfc6073872 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgspecial
 version=1.11.9
 revision=2
-archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module
 pycompile_module="pgspecial"
diff --git a/srcpkgs/python3-pgzero/template b/srcpkgs/python3-pgzero/template
index 8b8f477112d..d8ab268d5e7 100644
--- a/srcpkgs/python3-pgzero/template
+++ b/srcpkgs/python3-pgzero/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgzero
 version=1.2
 revision=2
-archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module
 pycompile_module="pgzero pgzrun.py"
diff --git a/srcpkgs/python3-phonenumbers/template b/srcpkgs/python3-phonenumbers/template
index dd96963adfe..83671f70f6c 100644
--- a/srcpkgs/python3-phonenumbers/template
+++ b/srcpkgs/python3-phonenumbers/template
@@ -2,7 +2,6 @@
 pkgname=python3-phonenumbers
 version=8.11.5
 revision=1
-archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pipx/template b/srcpkgs/python3-pipx/template
index 8899230c814..7b6adf3f245 100644
--- a/srcpkgs/python3-pipx/template
+++ b/srcpkgs/python3-pipx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pipx
 version=0.15.4.0
 revision=1
-archs=noarch
 wrksrc="pipx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pkginfo/template b/srcpkgs/python3-pkginfo/template
index b7cb5ec9165..1cdddd5d541 100644
--- a/srcpkgs/python3-pkginfo/template
+++ b/srcpkgs/python3-pkginfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-pkginfo
 version=1.5.0.1
 revision=2
-archs=noarch
 wrksrc=pkginfo-${version}
 build_style=python3-module
 depends="python3"
diff --git a/srcpkgs/python3-plotly/template b/srcpkgs/python3-plotly/template
index 9cefb0a2702..02bbccfb709 100644
--- a/srcpkgs/python3-plotly/template
+++ b/srcpkgs/python3-plotly/template
@@ -2,7 +2,6 @@
 pkgname=python3-plotly
 version=4.9.0
 revision=1
-archs=noarch
 wrksrc="plotly-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pluggy/template b/srcpkgs/python3-pluggy/template
index d5baa4e7406..b65f092ed16 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pluggy
 version=0.13.1
 revision=3
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pmw/template b/srcpkgs/python3-pmw/template
index 289b5ef1d0d..bcc1167153f 100644
--- a/srcpkgs/python3-pmw/template
+++ b/srcpkgs/python3-pmw/template
@@ -2,7 +2,6 @@
 pkgname=python3-pmw
 version=2.0.1
 revision=2
-archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"
 license="MIT"
diff --git a/srcpkgs/python3-precis-i18n/template b/srcpkgs/python3-precis-i18n/template
index be7bb0b0b56..1faac093297 100644
--- a/srcpkgs/python3-precis-i18n/template
+++ b/srcpkgs/python3-precis-i18n/template
@@ -2,7 +2,6 @@
 pkgname=python3-precis-i18n
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module
 pycompile_module="precis_i18n"
diff --git a/srcpkgs/python3-priority/template b/srcpkgs/python3-priority/template
index 177129a7a42..3be207c7132 100644
--- a/srcpkgs/python3-priority/template
+++ b/srcpkgs/python3-priority/template
@@ -2,7 +2,6 @@
 pkgname=python3-priority
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-prompt_toolkit/template b/srcpkgs/python3-prompt_toolkit/template
index fc95924342e..9c4ad5e64ca 100644
--- a/srcpkgs/python3-prompt_toolkit/template
+++ b/srcpkgs/python3-prompt_toolkit/template
@@ -2,7 +2,6 @@
 pkgname=python3-prompt_toolkit
 version=3.0.6
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pulsectl/template b/srcpkgs/python3-pulsectl/template
index 5dd314d56ab..69b7ccc34f1 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -2,7 +2,6 @@
 pkgname=python3-pulsectl
 version=19.10.4
 revision=1
-archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module
 pycompile_module="pulsectl"
diff --git a/srcpkgs/python3-pure-protobuf/template b/srcpkgs/python3-pure-protobuf/template
index 2c23b4204f7..47058bbe288 100644
--- a/srcpkgs/python3-pure-protobuf/template
+++ b/srcpkgs/python3-pure-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python3-pure-protobuf
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc=protobuf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-py-cpuinfo/template b/srcpkgs/python3-py-cpuinfo/template
index c9b1a5211c1..e240b6a329a 100644
--- a/srcpkgs/python3-py-cpuinfo/template
+++ b/srcpkgs/python3-py-cpuinfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-py-cpuinfo
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc="py-cpuinfo-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template
index adbe4c10dbd..27d9c341d35 100644
--- a/srcpkgs/python3-pybind11/template
+++ b/srcpkgs/python3-pybind11/template
@@ -2,7 +2,6 @@
 pkgname=python3-pybind11
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="pybind11-${version}"
 build_style=python3-module
 make_install_args="--install-headers=/usr/include/pybind11"
diff --git a/srcpkgs/python3-pydbus/template b/srcpkgs/python3-pydbus/template
index 5ecd28aca88..e36bcde8126 100644
--- a/srcpkgs/python3-pydbus/template
+++ b/srcpkgs/python3-pydbus/template
@@ -2,7 +2,6 @@
 pkgname=python3-pydbus
 version=0.6.0
 revision=1
-archs=noarch
 wrksrc="pydbus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyfiglet/template b/srcpkgs/python3-pyfiglet/template
index a4a67b12d42..a8d61f0516e 100644
--- a/srcpkgs/python3-pyfiglet/template
+++ b/srcpkgs/python3-pyfiglet/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyfiglet
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"
 pycompile_module="pyfiglet"
diff --git a/srcpkgs/python3-pyinfra/template b/srcpkgs/python3-pyinfra/template
index dd18497b965..e80407a2bce 100644
--- a/srcpkgs/python3-pyinfra/template
+++ b/srcpkgs/python3-pyinfra/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyinfra
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="pyinfra-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykeepass/template b/srcpkgs/python3-pykeepass/template
index 96a53ac1ffa..095827914f3 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykeepass
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykwalify/template b/srcpkgs/python3-pykwalify/template
index 76398effff3..5eedaefcd74 100644
--- a/srcpkgs/python3-pykwalify/template
+++ b/srcpkgs/python3-pykwalify/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykwalify
 version=1.7.0
 revision=3
-archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylast/template b/srcpkgs/python3-pylast/template
index 7884038e532..d2067019ef1 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylast
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module
 pycompile_module="pylast"
diff --git a/srcpkgs/python3-pylibgen/template b/srcpkgs/python3-pylibgen/template
index 30fb465a637..37f2f92e0b1 100644
--- a/srcpkgs/python3-pylibgen/template
+++ b/srcpkgs/python3-pylibgen/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylibgen
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylru/template b/srcpkgs/python3-pylru/template
index 0329ab72c30..4fefac7f5cb 100644
--- a/srcpkgs/python3-pylru/template
+++ b/srcpkgs/python3-pylru/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylru
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pysdl2/template b/srcpkgs/python3-pysdl2/template
index 3efdca5b667..cc444a25125 100644
--- a/srcpkgs/python3-pysdl2/template
+++ b/srcpkgs/python3-pysdl2/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysdl2
 version=0.9.6
 revision=2
-archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module
 pycompile_module="sdl2"
diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index ee77908b933..6f619aefd13 100644
--- a/srcpkgs/python3-pyside2/template
+++ b/srcpkgs/python3-pyside2/template
@@ -77,23 +77,19 @@ libpyside2-python3_package() {
 libpyside-python3_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside-phonon_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyenet_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/python3-pysigset/template b/srcpkgs/python3-pysigset/template
index 50d9162ea70..91ba4976691 100644
--- a/srcpkgs/python3-pysigset/template
+++ b/srcpkgs/python3-pysigset/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysigset
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module
 pycompile_module="pysigset.py"
diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index 0c90d33a9e5..3830286e059 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-asyncio
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module
 pycompile_module="pytest_asyncio"
diff --git a/srcpkgs/python3-pytest-cov/template b/srcpkgs/python3-pytest-cov/template
index e94daceb8f4..f685f3bc43a 100644
--- a/srcpkgs/python3-pytest-cov/template
+++ b/srcpkgs/python3-pytest-cov/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-cov
 version=2.10.1
 revision=1
-archs=noarch
 wrksrc="pytest-cov-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-qt/template b/srcpkgs/python3-pytest-qt/template
index a15bc15a4f3..2c82b27b522 100644
--- a/srcpkgs/python3-pytest-qt/template
+++ b/srcpkgs/python3-pytest-qt/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-qt
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc=pytest-qt-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-xvfb/template b/srcpkgs/python3-pytest-xvfb/template
index 9e3aa7822d4..05372f207c1 100644
--- a/srcpkgs/python3-pytest-xvfb/template
+++ b/srcpkgs/python3-pytest-xvfb/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-xvfb
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=pytest-xvfb-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template
index 3df0405f1e2..69f9b1b53f9 100644
--- a/srcpkgs/python3-pytest/template
+++ b/srcpkgs/python3-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest
 version=5.3.5
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pythondialog/template b/srcpkgs/python3-pythondialog/template
index b55866f51e6..11ac0d5a105 100644
--- a/srcpkgs/python3-pythondialog/template
+++ b/srcpkgs/python3-pythondialog/template
@@ -2,7 +2,6 @@
 pkgname=python3-pythondialog
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="pythondialog-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytools/template b/srcpkgs/python3-pytools/template
index 446df179c07..38e39a68179 100644
--- a/srcpkgs/python3-pytools/template
+++ b/srcpkgs/python3-pytools/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytools
 version=2020.4
 revision=1
-archs=noarch
 wrksrc=${pkgname#*-}-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pywinrm/template b/srcpkgs/python3-pywinrm/template
index 7a57b8efcb3..961a9ebacc4 100644
--- a/srcpkgs/python3-pywinrm/template
+++ b/srcpkgs/python3-pywinrm/template
@@ -2,7 +2,6 @@
 pkgname=python3-pywinrm
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pywinrm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyx/template b/srcpkgs/python3-pyx/template
index f8de127e420..24bd6b68960 100644
--- a/srcpkgs/python3-pyx/template
+++ b/srcpkgs/python3-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyx
 version=0.15
 revision=1
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-quart/template b/srcpkgs/python3-quart/template
index 8e0e7d59be7..a465bbf4abf 100644
--- a/srcpkgs/python3-quart/template
+++ b/srcpkgs/python3-quart/template
@@ -2,7 +2,6 @@
 pkgname=python3-quart
 version=0.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-readlike/template b/srcpkgs/python3-readlike/template
index 43159962442..a3c5353492f 100644
--- a/srcpkgs/python3-readlike/template
+++ b/srcpkgs/python3-readlike/template
@@ -2,7 +2,6 @@
 pkgname=python3-readlike
 version=0.1.3
 revision=2
-archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module
 pycompile_module="readlike.py"
diff --git a/srcpkgs/python3-repoze.sphinx.autointerface/template b/srcpkgs/python3-repoze.sphinx.autointerface/template
index 684c7f90d05..7fbafc4e955 100644
--- a/srcpkgs/python3-repoze.sphinx.autointerface/template
+++ b/srcpkgs/python3-repoze.sphinx.autointerface/template
@@ -2,7 +2,6 @@
 pkgname=python3-repoze.sphinx.autointerface
 version=0.8
 revision=3
-archs=noarch
 wrksrc="repoze.sphinx.autointerface-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-file/template b/srcpkgs/python3-requests-file/template
index 1f459fa55ab..e8197152c4a 100644
--- a/srcpkgs/python3-requests-file/template
+++ b/srcpkgs/python3-requests-file/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-file
 version=1.4.3
 revision=1
-archs=noarch
 wrksrc="requests-file-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-ntlm/template b/srcpkgs/python3-requests-ntlm/template
index 7ca189d6abf..8bdf509f291 100644
--- a/srcpkgs/python3-requests-ntlm/template
+++ b/srcpkgs/python3-requests-ntlm/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-ntlm
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="requests-ntlm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-unixsocket/template b/srcpkgs/python3-requests-unixsocket/template
index fd389ec2d13..5731168d162 100644
--- a/srcpkgs/python3-requests-unixsocket/template
+++ b/srcpkgs/python3-requests-unixsocket/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-unixsocket
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module
 pycompile_module="requests_unixsocket"
diff --git a/srcpkgs/python3-rss2email/template b/srcpkgs/python3-rss2email/template
index 69e67d93deb..37634807bee 100644
--- a/srcpkgs/python3-rss2email/template
+++ b/srcpkgs/python3-rss2email/template
@@ -2,7 +2,6 @@
 pkgname=python3-rss2email
 version=3.11
 revision=2
-archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module
 pycompile_module="rss2email"
diff --git a/srcpkgs/python3-s-tui/template b/srcpkgs/python3-s-tui/template
index 5864e90c91a..a70b25ef150 100644
--- a/srcpkgs/python3-s-tui/template
+++ b/srcpkgs/python3-s-tui/template
@@ -2,7 +2,6 @@
 pkgname=python3-s-tui
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-saml2/template b/srcpkgs/python3-saml2/template
index a8d2798b61c..740d5301c49 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -2,7 +2,6 @@
 pkgname=python3-saml2
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-scruffy/template b/srcpkgs/python3-scruffy/template
index 62a21a74eca..b10f0b25cad 100644
--- a/srcpkgs/python3-scruffy/template
+++ b/srcpkgs/python3-scruffy/template
@@ -2,7 +2,6 @@
 pkgname=python3-scruffy
 version=0.3.8.1
 revision=2
-archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module
 pycompile_module="scruffy"
diff --git a/srcpkgs/python3-semanticversion/template b/srcpkgs/python3-semanticversion/template
index 766eeb160f8..2a0ad41ef16 100644
--- a/srcpkgs/python3-semanticversion/template
+++ b/srcpkgs/python3-semanticversion/template
@@ -2,7 +2,6 @@
 pkgname=python3-semanticversion
 version=2.8.5
 revision=1
-archs=noarch
 wrksrc="semantic_version-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sentry/template b/srcpkgs/python3-sentry/template
index c340cbb7820..5f0bdb07a64 100644
--- a/srcpkgs/python3-sentry/template
+++ b/srcpkgs/python3-sentry/template
@@ -2,7 +2,6 @@
 pkgname=python3-sentry
 version=0.15.1
 revision=1
-archs=noarch
 wrksrc="sentry-python-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-serpent/template b/srcpkgs/python3-serpent/template
index 538bfcd1786..8776d167bfc 100644
--- a/srcpkgs/python3-serpent/template
+++ b/srcpkgs/python3-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python3-serpent
 version=1.30.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-setuptools/template b/srcpkgs/python3-setuptools/template
index 9bf5b316e66..15654c0c639 100644
--- a/srcpkgs/python3-setuptools/template
+++ b/srcpkgs/python3-setuptools/template
@@ -2,7 +2,6 @@
 pkgname=python3-setuptools
 version=49.2.1
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python3-module
 hostmakedepends="python3-devel"
diff --git a/srcpkgs/python3-shodan/template b/srcpkgs/python3-shodan/template
index 390f9d79322..b5324dac9ac 100644
--- a/srcpkgs/python3-shodan/template
+++ b/srcpkgs/python3-shodan/template
@@ -2,7 +2,6 @@
 pkgname=python3-shodan
 version=1.23.0
 revision=1
-archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-signedjson/template b/srcpkgs/python3-signedjson/template
index 5002ade8f79..744a1f36a5b 100644
--- a/srcpkgs/python3-signedjson/template
+++ b/srcpkgs/python3-signedjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-signedjson
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-slugify/template b/srcpkgs/python3-slugify/template
index 012bb98f063..7a6a44e664d 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -4,7 +4,6 @@ pkgname=python3-slugify
 # doesn't work with newer versions
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module
 pycompile_module="slugify"
diff --git a/srcpkgs/python3-sortedcontainers/template b/srcpkgs/python3-sortedcontainers/template
index 41d87d4ebd0..df9e9d97a2c 100644
--- a/srcpkgs/python3-sortedcontainers/template
+++ b/srcpkgs/python3-sortedcontainers/template
@@ -2,7 +2,6 @@
 pkgname=python3-sortedcontainers
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module
 pycompile_module="sortedcontainers"
diff --git a/srcpkgs/python3-spake2/template b/srcpkgs/python3-spake2/template
index dc0cdced747..7f34a47eb26 100644
--- a/srcpkgs/python3-spake2/template
+++ b/srcpkgs/python3-spake2/template
@@ -2,7 +2,6 @@
 pkgname=python3-spake2
 version=0.8
 revision=2
-archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module
 pycompile_module="spake2"
diff --git a/srcpkgs/python3-sphinx_rtd_theme/template b/srcpkgs/python3-sphinx_rtd_theme/template
index 8447a451a74..93e6cb4a4dd 100644
--- a/srcpkgs/python3-sphinx_rtd_theme/template
+++ b/srcpkgs/python3-sphinx_rtd_theme/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinx_rtd_theme
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-applehelp/template b/srcpkgs/python3-sphinxcontrib-applehelp/template
index 90bfc78adf8..30948b589f8 100644
--- a/srcpkgs/python3-sphinxcontrib-applehelp/template
+++ b/srcpkgs/python3-sphinxcontrib-applehelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-applehelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-applehelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-devhelp/template b/srcpkgs/python3-sphinxcontrib-devhelp/template
index 0244d826d17..f670cfdf187 100644
--- a/srcpkgs/python3-sphinxcontrib-devhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-devhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-devhelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-devhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-htmlhelp/template b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
index 33dac6dbfad..582aefdf76e 100644
--- a/srcpkgs/python3-sphinxcontrib-htmlhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-htmlhelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-htmlhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-jsmath/template b/srcpkgs/python3-sphinxcontrib-jsmath/template
index 266ff00b88b..ce87ffcd71b 100644
--- a/srcpkgs/python3-sphinxcontrib-jsmath/template
+++ b/srcpkgs/python3-sphinxcontrib-jsmath/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-jsmath
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-jsmath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-qthelp/template b/srcpkgs/python3-sphinxcontrib-qthelp/template
index 2335cb13cb8..b324a4bce8b 100644
--- a/srcpkgs/python3-sphinxcontrib-qthelp/template
+++ b/srcpkgs/python3-sphinxcontrib-qthelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-qthelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-qthelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-serializinghtml/template b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
index 82ddabe65ed..6b2d69ee7ca 100644
--- a/srcpkgs/python3-sphinxcontrib-serializinghtml/template
+++ b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-serializinghtml
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-serializinghtml-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib/template b/srcpkgs/python3-sphinxcontrib/template
index d52fd02ab76..ef3686233a6 100644
--- a/srcpkgs/python3-sphinxcontrib/template
+++ b/srcpkgs/python3-sphinxcontrib/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib
 version=1.0
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/python3-subunit/template b/srcpkgs/python3-subunit/template
index a617b3db63a..7609e9fea85 100644
--- a/srcpkgs/python3-subunit/template
+++ b/srcpkgs/python3-subunit/template
@@ -2,7 +2,6 @@
 pkgname=python3-subunit
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=subunit-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sympy/template b/srcpkgs/python3-sympy/template
index 77f7747a999..3546c85c48c 100644
--- a/srcpkgs/python3-sympy/template
+++ b/srcpkgs/python3-sympy/template
@@ -2,7 +2,6 @@
 pkgname=python3-sympy
 version=1.6.1
 revision=1
-archs=noarch
 wrksrc="sympy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tabulate/template b/srcpkgs/python3-tabulate/template
index 16956529913..1fba151f70d 100644
--- a/srcpkgs/python3-tabulate/template
+++ b/srcpkgs/python3-tabulate/template
@@ -2,7 +2,6 @@
 pkgname=python3-tabulate
 version=0.8.6
 revision=1
-archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module
 pycompile_module="tabulate.py"
diff --git a/srcpkgs/python3-terminaltables/template b/srcpkgs/python3-terminaltables/template
index 4f781eab76d..151d95641b1 100644
--- a/srcpkgs/python3-terminaltables/template
+++ b/srcpkgs/python3-terminaltables/template
@@ -2,7 +2,6 @@
 pkgname=python3-terminaltables
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module
 pycompile_module="terminaltables"
diff --git a/srcpkgs/python3-text-unidecode/template b/srcpkgs/python3-text-unidecode/template
index b3b5aa95575..6219e336eb5 100644
--- a/srcpkgs/python3-text-unidecode/template
+++ b/srcpkgs/python3-text-unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python3-text-unidecode
 version=1.2
 revision=2
-archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module
 pycompile_module="text_unidecode"
diff --git a/srcpkgs/python3-tinycss/template b/srcpkgs/python3-tinycss/template
index 3b4717c234e..7ca826988cd 100644
--- a/srcpkgs/python3-tinycss/template
+++ b/srcpkgs/python3-tinycss/template
@@ -2,7 +2,6 @@
 pkgname=python3-tinycss
 version=0.4
 revision=2
-archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module
 pycompile_module="tinycss"
diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index f77446c5e61..ff6bb2699e5 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -77,7 +77,6 @@ do_install() {
 }
 
 idle-python3_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python3 using Tkinter"
 	pycompile_dirs="usr/lib/python${version%.*}/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python3-tldextract/template b/srcpkgs/python3-tldextract/template
index 2a9392a5dcc..57ea2de0c41 100644
--- a/srcpkgs/python3-tldextract/template
+++ b/srcpkgs/python3-tldextract/template
@@ -2,7 +2,6 @@
 pkgname=python3-tldextract
 version=2.2.2
 revision=1
-archs=noarch
 wrksrc="tldextract-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template
index 92a11a42629..c352f646664 100644
--- a/srcpkgs/python3-traitlets/template
+++ b/srcpkgs/python3-traitlets/template
@@ -2,7 +2,6 @@
 pkgname=python3-traitlets
 version=4.3.3
 revision=3
-archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 5ea767b5a7d..a307014e474 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-transifex-client
 version=0.13.6
 revision=2
-archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module
 pycompile_module="txclib"
diff --git a/srcpkgs/python3-treq/template b/srcpkgs/python3-treq/template
index 075f90e49ef..c87126db99f 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -2,7 +2,6 @@
 pkgname=python3-treq
 version=20.3.0
 revision=1
-archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-trimesh/template b/srcpkgs/python3-trimesh/template
index 15f6715ce1d..fd7b93ac971 100644
--- a/srcpkgs/python3-trimesh/template
+++ b/srcpkgs/python3-trimesh/template
@@ -2,7 +2,6 @@
 pkgname=python3-trimesh
 version=3.7.4
 revision=1
-archs=noarch
 wrksrc="trimesh-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index bd1c82d0611..917fdb2e038 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -2,7 +2,6 @@
 pkgname=python3-txacme
 version=0.9.3
 revision=1
-archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txaio/template b/srcpkgs/python3-txaio/template
index d9ee273d235..f686ef8848c 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -2,7 +2,6 @@
 pkgname=python3-txaio
 version=20.4.1
 revision=1
-archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-txtorcon/template b/srcpkgs/python3-txtorcon/template
index d2ad88b06d1..8ad2b861ca9 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -2,7 +2,6 @@
 pkgname=python3-txtorcon
 version=20.0.0
 revision=1
-archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-typing_extensions/template b/srcpkgs/python3-typing_extensions/template
index 57405689d4e..d9beffc7950 100644
--- a/srcpkgs/python3-typing_extensions/template
+++ b/srcpkgs/python3-typing_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-typing_extensions
 version=3.7.4.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tzlocal/template b/srcpkgs/python3-tzlocal/template
index 7ea15464075..c78db3d0b47 100644
--- a/srcpkgs/python3-tzlocal/template
+++ b/srcpkgs/python3-tzlocal/template
@@ -2,7 +2,6 @@
 pkgname=python3-tzlocal
 version=2.1
 revision=2
-archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-unpaddedbase64/template b/srcpkgs/python3-unpaddedbase64/template
index 06a47db3b64..2cb5d9b8c2b 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -2,7 +2,6 @@
 pkgname=python3-unpaddedbase64
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module
 pycompile_module="unpaddedbase64.py"
diff --git a/srcpkgs/python3-urlgrabber/template b/srcpkgs/python3-urlgrabber/template
index eef67c8e13c..6d19cd95f28 100644
--- a/srcpkgs/python3-urlgrabber/template
+++ b/srcpkgs/python3-urlgrabber/template
@@ -2,7 +2,6 @@
 pkgname=python3-urlgrabber
 version=4.0.0
 revision=2
-archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module
 pycompile_module="urlgrabber"
diff --git a/srcpkgs/python3-usb/template b/srcpkgs/python3-usb/template
index 1e27b46961b..fe8676e84bf 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,6 @@
 pkgname=python3-usb
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="pyusb-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-userpath/template b/srcpkgs/python3-userpath/template
index 4d53e7b5dea..5d5b22e7774 100644
--- a/srcpkgs/python3-userpath/template
+++ b/srcpkgs/python3-userpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-userpath
 version=1.4.1
 revision=1
-archs=noarch
 wrksrc="userpath-${version}"
 build_style=python3-module
 pycompile_module="userpath"
diff --git a/srcpkgs/python3-validators/template b/srcpkgs/python3-validators/template
index 2d790254c96..cfaf8b9e8e9 100644
--- a/srcpkgs/python3-validators/template
+++ b/srcpkgs/python3-validators/template
@@ -2,7 +2,6 @@
 pkgname=python3-validators
 version=0.14.2
 revision=1
-archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virtualenv-clone/template b/srcpkgs/python3-virtualenv-clone/template
index 508e855b9cd..92e27a1cd3a 100644
--- a/srcpkgs/python3-virtualenv-clone/template
+++ b/srcpkgs/python3-virtualenv-clone/template
@@ -2,7 +2,6 @@
 pkgname=python3-virtualenv-clone
 version=0.5.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virtualenv/template b/srcpkgs/python3-virtualenv/template
index 7f9f71fccc5..d0b81cc453a 100644
--- a/srcpkgs/python3-virtualenv/template
+++ b/srcpkgs/python3-virtualenv/template
@@ -2,7 +2,6 @@
 pkgname=python3-virtualenv
 version=20.0.20
 revision=2
-archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virustotal-api/template b/srcpkgs/python3-virustotal-api/template
index fc362c03b39..016265c95e4 100644
--- a/srcpkgs/python3-virustotal-api/template
+++ b/srcpkgs/python3-virustotal-api/template
@@ -2,7 +2,6 @@
 pkgname=python3-virustotal-api
 version=1.1.11
 revision=2
-archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module
 pycompile_module="virus_total_apis"
diff --git a/srcpkgs/python3-xapp/template b/srcpkgs/python3-xapp/template
index 6e746704ad8..4a914d36443 100644
--- a/srcpkgs/python3-xapp/template
+++ b/srcpkgs/python3-xapp/template
@@ -2,7 +2,6 @@
 pkgname=python3-xapp
 version=2.0.1
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="xapp"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xdg-variables/template b/srcpkgs/python3-xdg-variables/template
index 589302d33bc..836f8b61878 100644
--- a/srcpkgs/python3-xdg-variables/template
+++ b/srcpkgs/python3-xdg-variables/template
@@ -2,7 +2,6 @@
 pkgname=python3-xdg-variables
 version=4.0.1
 revision=1
-archs=noarch
 wrksrc="xdg-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xlrd/template b/srcpkgs/python3-xlrd/template
index 9f7b29580e4..4a8b4fb520e 100644
--- a/srcpkgs/python3-xlrd/template
+++ b/srcpkgs/python3-xlrd/template
@@ -2,7 +2,6 @@
 pkgname=python3-xlrd
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xmlschema/template b/srcpkgs/python3-xmlschema/template
index 939c7ef6fca..d4311a18d9d 100644
--- a/srcpkgs/python3-xmlschema/template
+++ b/srcpkgs/python3-xmlschema/template
@@ -2,7 +2,6 @@
 pkgname=python3-xmlschema
 version=1.2.3
 revision=1
-archs=noarch
 wrksrc=xmlschema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-elementpath"
diff --git a/srcpkgs/python3-yapf/template b/srcpkgs/python3-yapf/template
index 33111cd732d..482acbbe0f5 100644
--- a/srcpkgs/python3-yapf/template
+++ b/srcpkgs/python3-yapf/template
@@ -2,7 +2,6 @@
 pkgname=python3-yapf
 version=0.29.0
 revision=1
-archs=noarch
 wrksrc="yapf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-youtube-search/template b/srcpkgs/python3-youtube-search/template
index 0c6ec393a37..96a1ca19dce 100644
--- a/srcpkgs/python3-youtube-search/template
+++ b/srcpkgs/python3-youtube-search/template
@@ -3,7 +3,6 @@ pkgname=python3-youtube-search
 version=1.1.0
 revision=1
 _gitver=86af3e73bd340f37be56f2be6a5ff706b16e454e
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="youtube-search-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-zeroconf/template b/srcpkgs/python3-zeroconf/template
index b480d60b684..6c1f33e1444 100644
--- a/srcpkgs/python3-zeroconf/template
+++ b/srcpkgs/python3-zeroconf/template
@@ -2,7 +2,6 @@
 pkgname=python3-zeroconf
 version=0.28.1
 revision=1
-archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.cachedescriptors/template b/srcpkgs/python3-zope.cachedescriptors/template
index 1f1fae5b27b..c0a56526d58 100644
--- a/srcpkgs/python3-zope.cachedescriptors/template
+++ b/srcpkgs/python3-zope.cachedescriptors/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.cachedescriptors
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module
 pycompile_module="zope/cachedescriptors"
diff --git a/srcpkgs/python3-zope.component/template b/srcpkgs/python3-zope.component/template
index 5dddba61bb3..eee2bb67f5c 100644
--- a/srcpkgs/python3-zope.component/template
+++ b/srcpkgs/python3-zope.component/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.component
 version=4.6.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.configuration/template b/srcpkgs/python3-zope.configuration/template
index a18339a5d7a..859ea5a13e3 100644
--- a/srcpkgs/python3-zope.configuration/template
+++ b/srcpkgs/python3-zope.configuration/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.configuration
 version=4.4.0
 revision=1
-archs=noarch
 wrksrc="zope.configuration-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/python3-zope.copy/template b/srcpkgs/python3-zope.copy/template
index 7007acb96b4..2872fc4446a 100644
--- a/srcpkgs/python3-zope.copy/template
+++ b/srcpkgs/python3-zope.copy/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.copy
 version=4.2
 revision=2
-archs=noarch
 wrksrc="zope.copy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deferredimport/template b/srcpkgs/python3-zope.deferredimport/template
index 7e8ff8fca5c..d2baacf3065 100644
--- a/srcpkgs/python3-zope.deferredimport/template
+++ b/srcpkgs/python3-zope.deferredimport/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deferredimport
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.deferredimport-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deprecation/template b/srcpkgs/python3-zope.deprecation/template
index 854c67dfa8a..5939729f835 100644
--- a/srcpkgs/python3-zope.deprecation/template
+++ b/srcpkgs/python3-zope.deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deprecation
 version=4.4.0
 revision=3
-archs=noarch
 wrksrc="zope.deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.event/template b/srcpkgs/python3-zope.event/template
index 0ca1af6cfc4..222189cc613 100644
--- a/srcpkgs/python3-zope.event/template
+++ b/srcpkgs/python3-zope.event/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.event
 version=4.4
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="zope/event"
diff --git a/srcpkgs/python3-zope.exceptions/template b/srcpkgs/python3-zope.exceptions/template
index e918cea8c7e..8719bd54a11 100644
--- a/srcpkgs/python3-zope.exceptions/template
+++ b/srcpkgs/python3-zope.exceptions/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.exceptions
 version=4.3
 revision=2
-archs=noarch
 wrksrc="zope.exceptions-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.hookable/template b/srcpkgs/python3-zope.hookable/template
index 774cf286c8e..e721baf6117 100644
--- a/srcpkgs/python3-zope.hookable/template
+++ b/srcpkgs/python3-zope.hookable/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.hookable
 version=5.0.1
 revision=1
-archs=noarch
 wrksrc="zope.hookable-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.location/template b/srcpkgs/python3-zope.location/template
index c2d6435dcf4..425cc0c04a1 100644
--- a/srcpkgs/python3-zope.location/template
+++ b/srcpkgs/python3-zope.location/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.location
 version=4.2
 revision=3
-archs=noarch
 wrksrc="zope.location-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.schema/template b/srcpkgs/python3-zope.schema/template
index 7c45510564d..82d51060bc5 100644
--- a/srcpkgs/python3-zope.schema/template
+++ b/srcpkgs/python3-zope.schema/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.schema
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc=zope.schema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testing/template b/srcpkgs/python3-zope.testing/template
index 9fd4dd19dcd..7c547615b68 100644
--- a/srcpkgs/python3-zope.testing/template
+++ b/srcpkgs/python3-zope.testing/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testing
 version=4.7
 revision=2
-archs=noarch
 wrksrc="zope.testing-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testrunner/template b/srcpkgs/python3-zope.testrunner/template
index 85413372686..80cf55a1715 100644
--- a/srcpkgs/python3-zope.testrunner/template
+++ b/srcpkgs/python3-zope.testrunner/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testrunner
 version=5.1
 revision=2
-archs=noarch
 wrksrc="zope.testrunner-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinxcontrib"
diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 98c4e1581e4..613217153a3 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -2,7 +2,6 @@
 pkgname=pywal
 version=3.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pywal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/qalculate/template b/srcpkgs/qalculate/template
index c5d041892f4..dbd193635bb 100644
--- a/srcpkgs/qalculate/template
+++ b/srcpkgs/qalculate/template
@@ -16,7 +16,6 @@ distfiles="https://github.com/Qalculate/libqalculate/releases/download/v${versio
 checksum=28c46dc8dd975f253627d80c55a6feab7c44d965dce3ceffefc3cafc9a97c457
 
 libqalculate-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/qalculate
diff --git a/srcpkgs/qdirstat/template b/srcpkgs/qdirstat/template
index 40be76ac8ef..4490a4e1272 100644
--- a/srcpkgs/qdirstat/template
+++ b/srcpkgs/qdirstat/template
@@ -23,7 +23,6 @@ post_install() {
 qdirstat-cache-writer_package() {
 	short_desc+=" - headless scanner"
 	depends="perl"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/qdirstat-cache-writer
 		vman man/qdirstat-cache-writer.1
diff --git a/srcpkgs/qmc2-flyers/template b/srcpkgs/qmc2-flyers/template
index 91f26dd0a18..bd62c4093a5 100644
--- a/srcpkgs/qmc2-flyers/template
+++ b/srcpkgs/qmc2-flyers/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="599660060753ce7118d9abc4b77f4644985d1341e1f3ca7c1f34d1a7a2e8030d"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2-snapshots/template b/srcpkgs/qmc2-snapshots/template
index fee8f052012..df2fcbc12c8 100644
--- a/srcpkgs/qmc2-snapshots/template
+++ b/srcpkgs/qmc2-snapshots/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="97684b11d4811ca1c3c24d31c359b7ac6ac90436e3fbce9e4966670697516d4f"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2/template b/srcpkgs/qmc2/template
index f362582dff5..1f72e9dd200 100644
--- a/srcpkgs/qmc2/template
+++ b/srcpkgs/qmc2/template
@@ -81,7 +81,6 @@ do_install() {
 		> ${DESTDIR}/usr/share/applications/qchdman.desktop
 }
 qmc2-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		local _ddir
diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template
index bd991d71e04..f999b249f94 100644
--- a/srcpkgs/qmk/template
+++ b/srcpkgs/qmk/template
@@ -2,7 +2,6 @@
 pkgname=qmk
 version=0.0.35
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-appdirs
diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 8063350ba06..4a3c282d40f 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -2,7 +2,6 @@
 pkgname=qomui
 version=0.8.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="qomui"
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/qrintf/template b/srcpkgs/qrintf/template
index 8b4ae6e9f0c..cd4cd8bee34 100644
--- a/srcpkgs/qrintf/template
+++ b/srcpkgs/qrintf/template
@@ -2,7 +2,6 @@
 pkgname=qrintf
 version=0.9.2
 revision=2
-archs=noarch
 depends="perl"
 short_desc="A sprintf accelerator for GCC and Clang"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/qtcreator/template b/srcpkgs/qtcreator/template
index e8cc8990fe0..23e69c35eed 100644
--- a/srcpkgs/qtcreator/template
+++ b/srcpkgs/qtcreator/template
@@ -71,7 +71,6 @@ qtcreator-full_package() {
 
 qtcreator-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/quixand/template b/srcpkgs/quixand/template
index 0574f90aa7e..2c6bd03be74 100644
--- a/srcpkgs/quixand/template
+++ b/srcpkgs/quixand/template
@@ -2,7 +2,6 @@
 pkgname=quixand
 version=2020
 revision=1
-archs=noarch
 depends="bash encfs"
 short_desc="Tool for creating single-use unrecoverable encrypted sandboxes"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index ba19de245ad..177ad99b74c 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -2,7 +2,6 @@
 pkgname=quodlibet
 version=4.3.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"
 hostmakedepends="intltool python3-devel"
diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 7b5f7f59b5d..ead0fd1deea 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,5 +1,4 @@
 # Template file for 'qutebrowser'
-# not noarch as the package might be built with different backend for each arch
 pkgname=qutebrowser
 version=1.13.1
 revision=2
diff --git a/srcpkgs/qytdl/template b/srcpkgs/qytdl/template
index b620c498a25..2733e6726e8 100644
--- a/srcpkgs/qytdl/template
+++ b/srcpkgs/qytdl/template
@@ -2,7 +2,6 @@
 pkgname=qytdl
 version=1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/qytdl/src"
 depends="desktop-file-utils python3-PyQt5 python3-youtube-dl"
diff --git a/srcpkgs/racket/template b/srcpkgs/racket/template
index dab6e5ec43c..41c9537b0e8 100644
--- a/srcpkgs/racket/template
+++ b/srcpkgs/racket/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 racket-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="racket>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/radicale/template b/srcpkgs/radicale/template
index 5cf0cc8da0d..30c1b9bfb8a 100644
--- a/srcpkgs/radicale/template
+++ b/srcpkgs/radicale/template
@@ -2,7 +2,6 @@
 pkgname=radicale
 version=1.1.6
 revision=4
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 pycompile_module="radicale"
diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 6fd785c5484..a762f1e41dd 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -2,7 +2,6 @@
 pkgname=radicale2
 version=2.1.12
 revision=1
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index d88da9b1ee1..33ecef3a239 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -2,7 +2,6 @@
 pkgname=ranger
 version=1.9.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="ranger"
 hostmakedepends="python3"
diff --git a/srcpkgs/rapidjson/template b/srcpkgs/rapidjson/template
index c1f3f32ba6d..0f8553674cb 100644
--- a/srcpkgs/rapidjson/template
+++ b/srcpkgs/rapidjson/template
@@ -3,7 +3,6 @@ pkgname=rapidjson
 version=1.1.0
 revision=2
 build_style=cmake
-archs=noarch
 short_desc="A fast JSON parser/generator for C++ with both SAX/DOM style API"
 maintainer="Alexander Egorenkov <egorenar-dev@posteo.net>"
 license="BSD, MIT"
diff --git a/srcpkgs/rapidxml/template b/srcpkgs/rapidxml/template
index 35418273bb4..6a19d381165 100644
--- a/srcpkgs/rapidxml/template
+++ b/srcpkgs/rapidxml/template
@@ -2,7 +2,6 @@
 pkgname=rapidxml
 version=1.13
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 short_desc="XML parser written in C++"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/rapydscript-ng/template b/srcpkgs/rapydscript-ng/template
index 681fe9781cc..92101d56f44 100644
--- a/srcpkgs/rapydscript-ng/template
+++ b/srcpkgs/rapydscript-ng/template
@@ -2,7 +2,6 @@
 pkgname=rapydscript-ng
 version=0.7.20
 revision=2
-archs=noarch
 hostmakedepends="nodejs"
 depends="nodejs"
 short_desc="Transpiler for a Python like language to JavaScript"
diff --git a/srcpkgs/rcm/template b/srcpkgs/rcm/template
index 2f84ba88ad3..9f7e44a091c 100644
--- a/srcpkgs/rcm/template
+++ b/srcpkgs/rcm/template
@@ -2,7 +2,6 @@
 pkgname=rcm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 checkdepends="python3-cram"
 depends="perl"
diff --git a/srcpkgs/rdumpfs/template b/srcpkgs/rdumpfs/template
index 12d80550d06..20709eb0c20 100644
--- a/srcpkgs/rdumpfs/template
+++ b/srcpkgs/rdumpfs/template
@@ -2,7 +2,6 @@
 pkgname=rdumpfs
 version=0.1
 revision=3
-archs=noarch
 depends="rsync bash"
 short_desc="A rsync-based dump file system backup tool"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/rebar3/template b/srcpkgs/rebar3/template
index 5243045ee94..f3cd96fead5 100644
--- a/srcpkgs/rebar3/template
+++ b/srcpkgs/rebar3/template
@@ -2,7 +2,6 @@
 pkgname=rebar3
 version=3.13.2
 revision=1
-archs=noarch
 hostmakedepends=erlang
 depends="erlang>=22"
 short_desc="Erlang build tool to compile, test, and release applications"
diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index fa2cb9cf445..14ddd26a73e 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -2,7 +2,6 @@
 pkgname=rednotebook
 version=2.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="desktop-file-utils gtksourceview hicolor-icon-theme python3-enchant
diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template
index 0f4e4047520..c9d037f10cb 100644
--- a/srcpkgs/remhind/template
+++ b/srcpkgs/remhind/template
@@ -2,7 +2,6 @@
 pkgname=remhind
 version=0.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel"
 depends="python3-icalendar python3-dateutil python3-gobject python3-toml
diff --git a/srcpkgs/rex/template b/srcpkgs/rex/template
index 0f294444ade..908ce0c2060 100644
--- a/srcpkgs/rex/template
+++ b/srcpkgs/rex/template
@@ -2,7 +2,6 @@
 pkgname=rex
 version=1.12.1
 revision=1
-archs=noarch
 wrksrc="Rex-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-AWS-Signature4 perl-Clone-Choose
diff --git a/srcpkgs/rinse/template b/srcpkgs/rinse/template
index 289fb177632..f626b75ad7a 100644
--- a/srcpkgs/rinse/template
+++ b/srcpkgs/rinse/template
@@ -2,7 +2,6 @@
 pkgname=rinse
 version=3.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_check_target=test
 hostmakedepends="dpkg"
diff --git a/srcpkgs/ripe-atlas-tools/template b/srcpkgs/ripe-atlas-tools/template
index c5e21c4b8dc..07bf1dceef1 100644
--- a/srcpkgs/ripe-atlas-tools/template
+++ b/srcpkgs/ripe-atlas-tools/template
@@ -2,7 +2,6 @@
 pkgname=ripe-atlas-tools
 version=2.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/rkhunter/template b/srcpkgs/rkhunter/template
index 743af812a78..968cad3cc7b 100644
--- a/srcpkgs/rkhunter/template
+++ b/srcpkgs/rkhunter/template
@@ -2,7 +2,6 @@
 pkgname=rkhunter
 version=1.4.6
 revision=1
-archs=noarch
 conf_files="/etc/rkhunter.conf"
 make_dirs="/var/lib/rkhunter/tmp 0750 root root"
 makedepends="curl"
diff --git a/srcpkgs/rocksndiamonds/template b/srcpkgs/rocksndiamonds/template
index bdfbca30b26..a3693182c43 100644
--- a/srcpkgs/rocksndiamonds/template
+++ b/srcpkgs/rocksndiamonds/template
@@ -36,7 +36,6 @@ do_install() {
 
 rocksndiamonds-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/rocksndiamonds
 	}
diff --git a/srcpkgs/rpi-firmware/template b/srcpkgs/rpi-firmware/template
index faa8fa28222..45b6d58bc23 100644
--- a/srcpkgs/rpi-firmware/template
+++ b/srcpkgs/rpi-firmware/template
@@ -5,7 +5,6 @@ _gitshort="${_githash:0:7}"
 pkgname=rpi-firmware
 version=20200326
 revision=1
-archs=noarch
 wrksrc="firmware-${_githash}"
 short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
 maintainer="Peter Bui <pbui@github.bx612.space>"
diff --git a/srcpkgs/rpmextract/template b/srcpkgs/rpmextract/template
index e1e325f7a6c..5b568f72ba8 100644
--- a/srcpkgs/rpmextract/template
+++ b/srcpkgs/rpmextract/template
@@ -2,7 +2,6 @@
 pkgname=rpmextract
 version=1.1
 revision=3
-archs=noarch
 depends="bsdtar coreutils"
 short_desc="Script to convert or extract RPM archives (contains rpm2cpio)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/rsnapshot/template b/srcpkgs/rsnapshot/template
index 8dafcc87bcd..cb86ba6e78b 100644
--- a/srcpkgs/rsnapshot/template
+++ b/srcpkgs/rsnapshot/template
@@ -2,7 +2,6 @@
 pkgname=rsnapshot
 version=1.4.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl rsync openssh"
 makedepends="perl-Lchown"
diff --git a/srcpkgs/rtl8812au-dkms/template b/srcpkgs/rtl8812au-dkms/template
index 49548f69a76..7fb637158b4 100644
--- a/srcpkgs/rtl8812au-dkms/template
+++ b/srcpkgs/rtl8812au-dkms/template
@@ -4,7 +4,6 @@ version=20200702
 revision=1
 _modver=5.6.4.2
 _gitrev=3110ad65d0f03532bd97b1017cae67ca86dd34f6
-archs=noarch
 wrksrc="rtl8812au-${_modver}-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8812AU/8821AU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rtl8822bu-dkms/template b/srcpkgs/rtl8822bu-dkms/template
index 9f87620427d..1db7fe4eef0 100644
--- a/srcpkgs/rtl8822bu-dkms/template
+++ b/srcpkgs/rtl8822bu-dkms/template
@@ -3,7 +3,6 @@ pkgname=rtl8822bu-dkms
 version=20200407
 revision=1
 _gitrev=9438d453ec5b4878b7d4a2b4bcf87b37df09c3fb
-archs=noarch
 wrksrc="rtl8822bu-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8822BU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index de6652231aa..dec05bd21d0 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -2,7 +2,6 @@
 pkgname=rubber
 version=1.5.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 virtual?tex"
diff --git a/srcpkgs/ruby-addressable/template b/srcpkgs/ruby-addressable/template
index 0495e0176ec..0cc0fcd7a3d 100644
--- a/srcpkgs/ruby-addressable/template
+++ b/srcpkgs/ruby-addressable/template
@@ -2,7 +2,6 @@
 pkgname=ruby-addressable
 version=2.7.0
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-public_suffix>=2.0.2 ruby-public_suffix<5.0"
 short_desc="Replacement for Ruby's standard library URI implementation"
diff --git a/srcpkgs/ruby-asciidoctor/template b/srcpkgs/ruby-asciidoctor/template
index f70d94c165d..dba6815ad74 100644
--- a/srcpkgs/ruby-asciidoctor/template
+++ b/srcpkgs/ruby-asciidoctor/template
@@ -2,7 +2,6 @@
 pkgname=ruby-asciidoctor
 version=2.0.10
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Ruby implementation of AsciiDoc"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-concurrent-ruby/template b/srcpkgs/ruby-concurrent-ruby/template
index f702b3a2c09..c19d4a72091 100644
--- a/srcpkgs/ruby-concurrent-ruby/template
+++ b/srcpkgs/ruby-concurrent-ruby/template
@@ -2,7 +2,6 @@
 pkgname=ruby-concurrent-ruby
 version=1.1.5
 revision=3
-archs="noarch"
 build_style=gem
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-connection_pool/template b/srcpkgs/ruby-connection_pool/template
index 0ef9ffee343..4bde99058f1 100644
--- a/srcpkgs/ruby-connection_pool/template
+++ b/srcpkgs/ruby-connection_pool/template
@@ -2,7 +2,6 @@
 pkgname=ruby-connection_pool
 version=2.2.2
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Generic connection pool for Ruby"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-deep_merge/template b/srcpkgs/ruby-deep_merge/template
index 851a1fd4901..fe8fa774354 100644
--- a/srcpkgs/ruby-deep_merge/template
+++ b/srcpkgs/ruby-deep_merge/template
@@ -2,7 +2,6 @@
 pkgname=ruby-deep_merge
 version=1.2.1
 revision=2
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-ethon/template b/srcpkgs/ruby-ethon/template
index 6e19f1641e3..47c14e97059 100644
--- a/srcpkgs/ruby-ethon/template
+++ b/srcpkgs/ruby-ethon/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ethon
 version=0.12.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-ffi>=1.3.0"
 short_desc="Lightweight wrapper around libcurl"
diff --git a/srcpkgs/ruby-faraday/template b/srcpkgs/ruby-faraday/template
index 517f7afa39e..cb902fa55de 100644
--- a/srcpkgs/ruby-faraday/template
+++ b/srcpkgs/ruby-faraday/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday
 version=1.0.1
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-multipart-post>=1.2 ruby-multipart-post<3"
 short_desc="HTTP/REST API client library"
diff --git a/srcpkgs/ruby-faraday_middleware/template b/srcpkgs/ruby-faraday_middleware/template
index c300a0b5f86..869d7ca04ac 100644
--- a/srcpkgs/ruby-faraday_middleware/template
+++ b/srcpkgs/ruby-faraday_middleware/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday_middleware
 version=1.0.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-faraday>=1.0"
 short_desc="Various middleware for Faraday"
diff --git a/srcpkgs/ruby-filesize/template b/srcpkgs/ruby-filesize/template
index dad1a39f098..32284c510a6 100644
--- a/srcpkgs/ruby-filesize/template
+++ b/srcpkgs/ruby-filesize/template
@@ -2,7 +2,6 @@
 pkgname=ruby-filesize
 version=0.2.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Small class for handling filesizes"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-gh/template b/srcpkgs/ruby-gh/template
index 0a9899994f1..2972f27ff15 100644
--- a/srcpkgs/ruby-gh/template
+++ b/srcpkgs/ruby-gh/template
@@ -2,7 +2,6 @@
 pkgname=ruby-gh
 version=0.15.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.4.0 ruby-backports ruby-faraday>=0.8
  ruby-multi_json>=1.0 ruby-net-http-persistent>=2.9 ruby-net-http-pipeline"
diff --git a/srcpkgs/ruby-highline/template b/srcpkgs/ruby-highline/template
index 5064e4167c3..c21e6f4b1c6 100644
--- a/srcpkgs/ruby-highline/template
+++ b/srcpkgs/ruby-highline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-highline
 version=2.0.3
 revision=2
-archs=noarch
 build_style=gem
 short_desc="High-level IO library for comamndline interfaces"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-httparty/template b/srcpkgs/ruby-httparty/template
index 7a26fe321e7..fb88f3ae633 100644
--- a/srcpkgs/ruby-httparty/template
+++ b/srcpkgs/ruby-httparty/template
@@ -2,7 +2,6 @@
 pkgname=ruby-httparty
 version=0.17.1
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types>=3.0 ruby-multi_xml>=0.5.2"
 short_desc="Makes http fun! Also, makes consuming restful web services dead easy"
diff --git a/srcpkgs/ruby-launchy/template b/srcpkgs/ruby-launchy/template
index 1586ac19625..fd42c758b4e 100644
--- a/srcpkgs/ruby-launchy/template
+++ b/srcpkgs/ruby-launchy/template
@@ -2,7 +2,6 @@
 pkgname=ruby-launchy
 version=2.4.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.3 ruby-addressable<3.0"
 short_desc="Helper class for launching cross-platform applications"
diff --git a/srcpkgs/ruby-manpages/template b/srcpkgs/ruby-manpages/template
index 2521b71af56..491ed093d46 100644
--- a/srcpkgs/ruby-manpages/template
+++ b/srcpkgs/ruby-manpages/template
@@ -2,7 +2,6 @@
 pkgname=ruby-manpages
 version=0.6.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Gem to add man pages support to ruby gems"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-mime-types-data/template b/srcpkgs/ruby-mime-types-data/template
index d8b3958fc44..3da961f2eaa 100644
--- a/srcpkgs/ruby-mime-types-data/template
+++ b/srcpkgs/ruby-mime-types-data/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types-data
 version=3.2019.1009
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Registry for MIME media type definitions"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mime-types/template b/srcpkgs/ruby-mime-types/template
index 1512f5f9a6c..aef14485633 100644
--- a/srcpkgs/ruby-mime-types/template
+++ b/srcpkgs/ruby-mime-types/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types
 version=3.3
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types-data>=3.2015"
 short_desc="Library for registry and information about MIME types"
diff --git a/srcpkgs/ruby-multi_json/template b/srcpkgs/ruby-multi_json/template
index 71c3623f0fb..cff882e742c 100644
--- a/srcpkgs/ruby-multi_json/template
+++ b/srcpkgs/ruby-multi_json/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_json
 version=1.14.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Common interface for multiple JSON parsing libraries"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multi_xml/template b/srcpkgs/ruby-multi_xml/template
index 3a4628c9e29..a8d30d74535 100644
--- a/srcpkgs/ruby-multi_xml/template
+++ b/srcpkgs/ruby-multi_xml/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_xml
 version=0.6.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multipart-post/template b/srcpkgs/ruby-multipart-post/template
index a2b21ce7627..44c2119aa04 100644
--- a/srcpkgs/ruby-multipart-post/template
+++ b/srcpkgs/ruby-multipart-post/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multipart-post
 version=2.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Use with Net::HTTP to do multipart form posts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mustache/template b/srcpkgs/ruby-mustache/template
index 96ebfb59b27..b7d9bf4f416 100644
--- a/srcpkgs/ruby-mustache/template
+++ b/srcpkgs/ruby-mustache/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mustache
 version=1.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Framework-agnostic way to render logic-free views"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-net-http-persistent/template b/srcpkgs/ruby-net-http-persistent/template
index afae4ea0308..bd3dc9240a3 100644
--- a/srcpkgs/ruby-net-http-persistent/template
+++ b/srcpkgs/ruby-net-http-persistent/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-persistent
 version=3.1.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-connection_pool>=2.2 ruby-connection_pool<3.0"
 short_desc="Manages persistent connections using Net::HTTP"
diff --git a/srcpkgs/ruby-net-http-pipeline/template b/srcpkgs/ruby-net-http-pipeline/template
index 0cb6aa687ff..8b7762613ea 100644
--- a/srcpkgs/ruby-net-http-pipeline/template
+++ b/srcpkgs/ruby-net-http-pipeline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-pipeline
 version=1.0.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="HTTP/1.1 pipelining implementation atop Net::HTTP"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-public_suffix/template b/srcpkgs/ruby-public_suffix/template
index ec94bd34ca3..d588f22de24 100644
--- a/srcpkgs/ruby-public_suffix/template
+++ b/srcpkgs/ruby-public_suffix/template
@@ -2,7 +2,6 @@
 pkgname=ruby-public_suffix
 version=4.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Parse domain names into top level domain, domain and subdomains"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-pusher-client/template b/srcpkgs/ruby-pusher-client/template
index 9b41bbf12ef..fac92ca2968 100644
--- a/srcpkgs/ruby-pusher-client/template
+++ b/srcpkgs/ruby-pusher-client/template
@@ -2,7 +2,6 @@
 pkgname=ruby-pusher-client
 version=0.6.2
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-websocket>=1.0 ruby-websocket<2.0"
 short_desc="Client for consuming WebSockets from http://pusher.com"
diff --git a/srcpkgs/ruby-rainbow/template b/srcpkgs/ruby-rainbow/template
index dc2c03331d4..96fc7360c7c 100644
--- a/srcpkgs/ruby-rainbow/template
+++ b/srcpkgs/ruby-rainbow/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rainbow
 version=3.0.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Colorize printed text on ANSI terminals"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-rb-readline/template b/srcpkgs/ruby-rb-readline/template
index 5457b9cd5d1..2d78ead9d50 100644
--- a/srcpkgs/ruby-rb-readline/template
+++ b/srcpkgs/ruby-rb-readline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rb-readline
 version=0.5.5
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby"
 short_desc="Pure Ruby implementation of GNU readline library"
diff --git a/srcpkgs/ruby-ronn/template b/srcpkgs/ruby-ronn/template
index cada3abd52d..01515c05e6a 100644
--- a/srcpkgs/ruby-ronn/template
+++ b/srcpkgs/ruby-ronn/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ronn
 version=0.7.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-hpricot ruby-mustache ruby-rdiscount groff"
 short_desc="Strick markdown-like format for manpages"
diff --git a/srcpkgs/ruby-rubysl-singleton/template b/srcpkgs/ruby-rubysl-singleton/template
index a2b64a23ca4..184f71f3375 100644
--- a/srcpkgs/ruby-rubysl-singleton/template
+++ b/srcpkgs/ruby-rubysl-singleton/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rubysl-singleton
 version=2.0.0
 revision=2
-archs="noarch"
 build_style=gemspec
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-semantic_puppet/template b/srcpkgs/ruby-semantic_puppet/template
index e7af95f9e7a..758c6cef565 100644
--- a/srcpkgs/ruby-semantic_puppet/template
+++ b/srcpkgs/ruby-semantic_puppet/template
@@ -2,7 +2,6 @@
 pkgname=ruby-semantic_puppet
 version=1.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Tools for working with Semantic Versions"
 maintainer="eater <=@eater.me>"
diff --git a/srcpkgs/ruby-sync/template b/srcpkgs/ruby-sync/template
index 20771ee9b5e..5155a3e1359 100644
--- a/srcpkgs/ruby-sync/template
+++ b/srcpkgs/ruby-sync/template
@@ -2,7 +2,6 @@
 pkgname=ruby-sync
 version=0.5.0
 revision=1
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-travis/template b/srcpkgs/ruby-travis/template
index 2eaa35cad8e..3e236aa25b4 100644
--- a/srcpkgs/ruby-travis/template
+++ b/srcpkgs/ruby-travis/template
@@ -2,7 +2,6 @@
 pkgname=ruby-travis
 version=1.9.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-backports ruby-faraday>=1.0 ruby-faraday_middleware>=1.0
  ruby-gh>=0.13 ruby-highline>=2.0 ruby-launchy>=2.1 ruby-pusher-client>=0.4
diff --git a/srcpkgs/ruby-typhoeus/template b/srcpkgs/ruby-typhoeus/template
index 33447f4b2bf..f6945c9fd7e 100644
--- a/srcpkgs/ruby-typhoeus/template
+++ b/srcpkgs/ruby-typhoeus/template
@@ -2,7 +2,6 @@
 pkgname=ruby-typhoeus
 version=1.3.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-ethon>=0.9.0"
 short_desc="Parallel HTTP requests runner"
diff --git a/srcpkgs/ruby-websocket/template b/srcpkgs/ruby-websocket/template
index 83c913113f1..56ee82430b9 100644
--- a/srcpkgs/ruby-websocket/template
+++ b/srcpkgs/ruby-websocket/template
@@ -2,7 +2,6 @@
 pkgname=ruby-websocket
 version=1.2.8
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Universal Ruby library to handle WebSocket protocol"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby/template b/srcpkgs/ruby/template
index 5159f3c3b88..1cd48b464d7 100644
--- a/srcpkgs/ruby/template
+++ b/srcpkgs/ruby/template
@@ -105,7 +105,6 @@ post_install() {
 
 ruby-devel-doc_package() {
 	short_desc+=" - HTML C API documentation files"
-	archs=noarch
 	pkg_install() {
 		if [ -d "${DESTDIR}/usr/share/doc" ]; then
 			vmove usr/share/doc
@@ -133,7 +132,6 @@ ruby-devel_package() {
 ruby-ri_package() {
 	depends="ruby-${version}_${revision}"
 	short_desc="Ruby Interactive reference"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/ri
 		if [ -d "${DESTDIR}/usr/share/ri" ]; then
diff --git a/srcpkgs/run-mailcap/template b/srcpkgs/run-mailcap/template
index a09c1f8ef01..4947cf0d13c 100644
--- a/srcpkgs/run-mailcap/template
+++ b/srcpkgs/run-mailcap/template
@@ -2,7 +2,6 @@
 pkgname=run-mailcap
 version=3.64
 revision=1
-archs=noarch
 wrksrc="mime-support-${version}ubuntu1"
 depends="perl"
 short_desc="Execute programs via entries in the mailcap file"
diff --git a/srcpkgs/runelite-launcher/template b/srcpkgs/runelite-launcher/template
index f4717951c59..f2bd9af220c 100644
--- a/srcpkgs/runelite-launcher/template
+++ b/srcpkgs/runelite-launcher/template
@@ -2,7 +2,6 @@
 pkgname=runelite-launcher
 version=2.1.3
 revision=1
-archs=noarch
 wrksrc="launcher-${version}"
 hostmakedepends="apache-maven-bin"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/runit-iptables/template b/srcpkgs/runit-iptables/template
index c35cdc4738f..4761418d8a3 100644
--- a/srcpkgs/runit-iptables/template
+++ b/srcpkgs/runit-iptables/template
@@ -2,7 +2,6 @@
 pkgname=runit-iptables
 version=20180616
 revision=1
-archs=noarch
 depends="runit-void iptables"
 short_desc="Restore iptables rules on boot"
 maintainer="Nicolas Porcel <nicolasporcel06@gmail.com>"
diff --git a/srcpkgs/runit-kdump/template b/srcpkgs/runit-kdump/template
index 0c7f8ea464d..c220d4215ee 100644
--- a/srcpkgs/runit-kdump/template
+++ b/srcpkgs/runit-kdump/template
@@ -2,7 +2,6 @@
 pkgname=runit-kdump
 version=20150226
 revision=4
-archs=noarch
 make_dirs="/var/crash 0755 root root"
 depends="runit-void makedumpfile kexec-tools"
 short_desc="Crashkernel/kdump support for runit to save vmcore to disk"
diff --git a/srcpkgs/runit-nftables/template b/srcpkgs/runit-nftables/template
index d07cb42cae5..4ca82522948 100644
--- a/srcpkgs/runit-nftables/template
+++ b/srcpkgs/runit-nftables/template
@@ -2,7 +2,6 @@
 pkgname=runit-nftables
 version=20200123
 revision=1
-archs=noarch
 depends="runit-void nftables"
 short_desc="Restore nftables rules on boot"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/runit-swap/template b/srcpkgs/runit-swap/template
index 20147c8555d..f0a8416d38f 100644
--- a/srcpkgs/runit-swap/template
+++ b/srcpkgs/runit-swap/template
@@ -10,7 +10,6 @@ maintainer="Andrea Brancaleoni <abc@pompel.me>"
 license="GPL-3"
 homepage="https://github.com/thypon/runit-swap"
 conf_files="/etc/runit/swap.conf"
-archs=noarch
 distfiles="$homepage/archive/v$version.tar.gz"
 checksum=a66730777fb084564e7fae67f2017d775b757b6b6c0c319802f71bed2184e958
 
diff --git a/srcpkgs/rust/template b/srcpkgs/rust/template
index cba2feba4d2..942457e523c 100644
--- a/srcpkgs/rust/template
+++ b/srcpkgs/rust/template
@@ -298,7 +298,6 @@ do_install() {
 
 rust-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/rxvt-unicode/template b/srcpkgs/rxvt-unicode/template
index d07e838a818..5360b4486be 100644
--- a/srcpkgs/rxvt-unicode/template
+++ b/srcpkgs/rxvt-unicode/template
@@ -77,7 +77,6 @@ post_install() {
 
 rxvt-unicode-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/s3cmd/template b/srcpkgs/s3cmd/template
index 8043233efb5..5b3527c19a4 100644
--- a/srcpkgs/s3cmd/template
+++ b/srcpkgs/s3cmd/template
@@ -2,7 +2,6 @@
 pkgname=s3cmd
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-dateutil"
diff --git a/srcpkgs/s6-dns/template b/srcpkgs/s6-dns/template
index 9a0227f2806..fa8a6f34c9c 100644
--- a/srcpkgs/s6-dns/template
+++ b/srcpkgs/s6-dns/template
@@ -21,7 +21,6 @@ post_install() {
 }
 
 s6-dns-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-linux-utils/template b/srcpkgs/s6-linux-utils/template
index 224125b1117..e84aa08fc56 100644
--- a/srcpkgs/s6-linux-utils/template
+++ b/srcpkgs/s6-linux-utils/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-linux-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-networking/template b/srcpkgs/s6-networking/template
index 832b56ba251..2d08e3a7964 100644
--- a/srcpkgs/s6-networking/template
+++ b/srcpkgs/s6-networking/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-networking-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-portable-utils/template b/srcpkgs/s6-portable-utils/template
index c163ea31eae..a9fa76d8e25 100644
--- a/srcpkgs/s6-portable-utils/template
+++ b/srcpkgs/s6-portable-utils/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 s6-portable-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-rc/template b/srcpkgs/s6-rc/template
index 4296af454a2..108f89faa9f 100644
--- a/srcpkgs/s6-rc/template
+++ b/srcpkgs/s6-rc/template
@@ -34,7 +34,6 @@ s6-rc-devel_package() {
 }
 
 s6-rc-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6/template b/srcpkgs/s6/template
index baecf1ee007..f54f828e685 100644
--- a/srcpkgs/s6/template
+++ b/srcpkgs/s6/template
@@ -27,7 +27,6 @@ post_install() {
 }
 
 s6-doc_package() {
-	archs=noarch
 	short_desc="Documentation for s6"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/sabnzbd/template b/srcpkgs/sabnzbd/template
index a45b6535c33..e0364e3e746 100644
--- a/srcpkgs/sabnzbd/template
+++ b/srcpkgs/sabnzbd/template
@@ -2,7 +2,6 @@
 pkgname=sabnzbd
 version=2.3.9
 revision=1
-archs=noarch
 wrksrc="SABnzbd-${version}"
 pycompile_dirs="/usr/share/sabnzbd"
 depends="par2cmdline python-cheetah python-configobj python-feedparser
diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index c237bc503d8..6b7c5f51007 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -2,7 +2,6 @@
 pkgname=safeeyes
 version=2.0.9
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/salt/template b/srcpkgs/salt/template
index 80525f92686..7472d3975a8 100644
--- a/srcpkgs/salt/template
+++ b/srcpkgs/salt/template
@@ -2,7 +2,6 @@
 pkgname=salt
 version=3001.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-yaml python3-Jinja2 python3-requests python3-pyzmq
diff --git a/srcpkgs/sandfox/template b/srcpkgs/sandfox/template
index 36bd2571bd6..24e20f3c806 100644
--- a/srcpkgs/sandfox/template
+++ b/srcpkgs/sandfox/template
@@ -2,7 +2,6 @@
 pkgname=sandfox
 version=1.1.4
 revision=2
-archs=noarch
 depends="bash inotify-tools lsof"
 short_desc="Runs Firefox and other apps in a filesystem sandbox"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/sauerbraten/template b/srcpkgs/sauerbraten/template
index bb0c9b8acb9..636a3b446ba 100644
--- a/srcpkgs/sauerbraten/template
+++ b/srcpkgs/sauerbraten/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 sauerbraten-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmkdir usr/share/$sourcepkg
diff --git a/srcpkgs/sbcl/template b/srcpkgs/sbcl/template
index 2f58d4153f8..6eee1a27abe 100644
--- a/srcpkgs/sbcl/template
+++ b/srcpkgs/sbcl/template
@@ -56,7 +56,6 @@ do_install() {
 }
 
 sbcl-source_package() {
-	archs="noarch"
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" -- source files"
 	pkg_install() {
diff --git a/srcpkgs/sbt/template b/srcpkgs/sbt/template
index df79423b267..c2e90eb2d97 100644
--- a/srcpkgs/sbt/template
+++ b/srcpkgs/sbt/template
@@ -2,7 +2,6 @@
 pkgname=sbt
 version=1.3.10
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="virtual?java-environment"
 short_desc="Interactive build tool for Scala and Java"
diff --git a/srcpkgs/scanmem/template b/srcpkgs/scanmem/template
index b9bbb2f89fc..0cdd4271f7b 100644
--- a/srcpkgs/scanmem/template
+++ b/srcpkgs/scanmem/template
@@ -41,7 +41,6 @@ libscanmem-devel_package() {
 gameconqueror_package() {
 	short_desc="GameConqueror is a GUI front-end for scanmem, providing more features"
 	depends="polkit gtk+3 python3-gobject lib${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		cd $DESTDIR
diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 36972bfd461..45bec58f751 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -2,7 +2,6 @@
 pkgname=scapy
 version=2.4.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="scapy"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/schedule/template b/srcpkgs/schedule/template
index 0a5b7c03d6b..4348334a32b 100644
--- a/srcpkgs/schedule/template
+++ b/srcpkgs/schedule/template
@@ -2,7 +2,6 @@
 pkgname=schedule
 version=8.0.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Framework to schedule jobs in a multiuser multitasking environment"
diff --git a/srcpkgs/screenFetch/template b/srcpkgs/screenFetch/template
index 4a3d5a9dcaa..6b98d688755 100644
--- a/srcpkgs/screenFetch/template
+++ b/srcpkgs/screenFetch/template
@@ -2,7 +2,6 @@
 pkgname=screenFetch
 version=3.9.1
 revision=1
-archs=noarch
 depends="bash bc xdpyinfo"
 short_desc="Bash screenshot information tool"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/screenkey/template b/srcpkgs/screenkey/template
index b4feb736b89..8205bff7a23 100644
--- a/srcpkgs/screenkey/template
+++ b/srcpkgs/screenkey/template
@@ -2,7 +2,6 @@
 pkgname=screenkey
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-setuptools python3-distutils-extra"
 depends="python3-gobject"
diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index e3ce1bc7ff2..10f41dd685b 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -2,7 +2,6 @@
 pkgname=screenplain
 version=0.9.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-reportlab"
diff --git a/srcpkgs/seafile-libclient/template b/srcpkgs/seafile-libclient/template
index 4db42506d81..1b25ea59255 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -39,7 +39,6 @@ seafile-libclient-devel_package() {
 seafile-libclient-python3_package() {
 	short_desc="Cloud storage system - Python3 bindings"
 	depends="libsearpc-python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
@@ -49,7 +48,6 @@ seafile-cli_package() {
 	short_desc="Cloud storage system - client CLI"
 	depends="seafile-libclient-python3 ${sourcepkg}>=${version}_${revision}"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/seaf-cli
 		vmove usr/share/man/man1/seaf-cli.1
diff --git a/srcpkgs/sendEmail/template b/srcpkgs/sendEmail/template
index a60e0941572..508aca8aeeb 100644
--- a/srcpkgs/sendEmail/template
+++ b/srcpkgs/sendEmail/template
@@ -2,7 +2,6 @@
 pkgname=sendEmail
 version=1.56
 revision=1
-archs=noarch
 wrksrc="${pkgname}-v${version}"
 depends="perl-Net-SSLeay"
 short_desc="Lightweight, command line SMTP email client"
diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index 8191947a20b..d7b357a5940 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -2,7 +2,6 @@
 pkgname=setconf
 version=0.7.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="setconf.py"
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-setconf_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" - transitional dummy package"
 	depends="setconf"
diff --git a/srcpkgs/shared-color-targets/template b/srcpkgs/shared-color-targets/template
index 45b350d0b63..4b7f7dfab0a 100644
--- a/srcpkgs/shared-color-targets/template
+++ b/srcpkgs/shared-color-targets/template
@@ -2,7 +2,6 @@
 pkgname=shared-color-targets
 version=0.1.7
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Shared color targets for creating color profiles"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shared-desktop-ontologies/template b/srcpkgs/shared-desktop-ontologies/template
index d8ac5283177..6260f372e5e 100644
--- a/srcpkgs/shared-desktop-ontologies/template
+++ b/srcpkgs/shared-desktop-ontologies/template
@@ -2,7 +2,6 @@
 pkgname=shared-desktop-ontologies
 version=0.11.0
 revision=3
-archs=noarch
 build_style=cmake
 short_desc="Provide RDF vocabularies for the Semantic Desktop"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 4cd7da661b0..5b204fff7e9 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -55,12 +55,10 @@ python3-shiboken_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
 
 libshiboken-python3_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/shorewall/template b/srcpkgs/shorewall/template
index 30efdba8869..e0d82656e85 100644
--- a/srcpkgs/shorewall/template
+++ b/srcpkgs/shorewall/template
@@ -2,7 +2,6 @@
 pkgname=shorewall
 version=5.2.7
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="shorewall-core perl"
 short_desc="Iptables-based firewall for Linux systems"
@@ -37,7 +36,6 @@ do_install() {
 }
 
 shorewall-core_package() {
-	archs=noarch
 	depends="iptables iproute2"
 	short_desc+=" - Core Shorewall files"
 	pkg_install() {
@@ -47,7 +45,6 @@ shorewall-core_package() {
 }
 
 shorewall6_package() {
-	archs=noarch
 	depends="shorewall"
 	conf_files="/etc/$pkgname/*"
 	short_desc+=" - IPv6 support"
diff --git a/srcpkgs/shunit2/template b/srcpkgs/shunit2/template
index f909503b0f6..77babcece07 100644
--- a/srcpkgs/shunit2/template
+++ b/srcpkgs/shunit2/template
@@ -2,7 +2,6 @@
 pkgname=shunit2
 version=2.1.8
 revision=1
-archs=noarch
 depends="bash"
 checkdepends="zsh ksh"
 short_desc="Unit testing framework for Unix shell scripts based on xUnit"
diff --git a/srcpkgs/sickbeard/template b/srcpkgs/sickbeard/template
index a056d33f0b9..8499ed6ea0a 100644
--- a/srcpkgs/sickbeard/template
+++ b/srcpkgs/sickbeard/template
@@ -2,7 +2,6 @@
 pkgname=sickbeard
 version=507
 revision=3
-archs=noarch
 wrksrc="Sick-Beard-build-${version}"
 pycompile_dirs="/usr/share/${pkgname}"
 depends="python-cheetah"
diff --git a/srcpkgs/signond/template b/srcpkgs/signond/template
index fc1bdebe712..c72b3932ea6 100644
--- a/srcpkgs/signond/template
+++ b/srcpkgs/signond/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 signond-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/sigrok-firmware-fx2lafw/template b/srcpkgs/sigrok-firmware-fx2lafw/template
index 5c92bc1c0ac..7f9a574fa2d 100644
--- a/srcpkgs/sigrok-firmware-fx2lafw/template
+++ b/srcpkgs/sigrok-firmware-fx2lafw/template
@@ -2,7 +2,6 @@
 pkgname=sigrok-firmware-fx2lafw
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname}-bin-${version}"
 short_desc="Sigrok fx2lafw Firmware files"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/skalibs/template b/srcpkgs/skalibs/template
index 7b838abda1b..05dbcc04fa1 100644
--- a/srcpkgs/skalibs/template
+++ b/srcpkgs/skalibs/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 skalibs-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/slim-void-theme/template b/srcpkgs/slim-void-theme/template
index 373d6b644e4..8598b5cc0bc 100644
--- a/srcpkgs/slim-void-theme/template
+++ b/srcpkgs/slim-void-theme/template
@@ -2,7 +2,6 @@
 pkgname=slim-void-theme
 version=1.0.0
 revision=1
-archs=noarch
 depends="slim"
 short_desc="Fancy SLiM theme for Void Linux"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
diff --git a/srcpkgs/snazzer/template b/srcpkgs/snazzer/template
index 40828a47362..a42c9a541bd 100644
--- a/srcpkgs/snazzer/template
+++ b/srcpkgs/snazzer/template
@@ -2,7 +2,6 @@
 pkgname=snazzer
 version=0.0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl pod2mdoc"
 depends="sudo btrfs-progs"
diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3a88e08a988..8ae8caf4337 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -2,7 +2,6 @@
 pkgname=sonata
 version=1.7b1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-mpd2 python3-gobject gtk+3 ${hostmakedepends}"
diff --git a/srcpkgs/sound-icons/template b/srcpkgs/sound-icons/template
index ee30809549f..84a4de4011d 100644
--- a/srcpkgs/sound-icons/template
+++ b/srcpkgs/sound-icons/template
@@ -2,7 +2,6 @@
 pkgname=sound-icons
 version=0.1
 revision=1
-archs=noarch
 short_desc="Sounds for speech enabled applications"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/sound-theme-freedesktop/template b/srcpkgs/sound-theme-freedesktop/template
index 5edc5cb8440..b2147d82046 100644
--- a/srcpkgs/sound-theme-freedesktop/template
+++ b/srcpkgs/sound-theme-freedesktop/template
@@ -2,7 +2,6 @@
 pkgname=sound-theme-freedesktop
 version=0.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="Freedesktop sound theme"
diff --git a/srcpkgs/soundconverter/template b/srcpkgs/soundconverter/template
index 1bda4743513..2dfe30d25e3 100644
--- a/srcpkgs/soundconverter/template
+++ b/srcpkgs/soundconverter/template
@@ -2,7 +2,6 @@
 pkgname=soundconverter
 version=3.0.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/${pkgname}/python/${pkgname}"
 hostmakedepends="glib intltool pkg-config python3-gobject"
diff --git a/srcpkgs/soundfont-fluid/template b/srcpkgs/soundfont-fluid/template
index dfbe2f089a7..96318df36e2 100644
--- a/srcpkgs/soundfont-fluid/template
+++ b/srcpkgs/soundfont-fluid/template
@@ -2,7 +2,6 @@
 pkgname=soundfont-fluid
 version=3.1
 revision=3
-archs=noarch
 wrksrc="fluid-soundfont-${version}"
 short_desc="FluidR3 Soundfont"
 maintainer="Nick Hahn <nick.hahn@hotmail.de>"
diff --git a/srcpkgs/source-sans-pro/template b/srcpkgs/source-sans-pro/template
index 510f5a74e91..059f669b8bb 100644
--- a/srcpkgs/source-sans-pro/template
+++ b/srcpkgs/source-sans-pro/template
@@ -3,7 +3,6 @@ pkgname=source-sans-pro
 version=3.006
 revision=1
 _relver="3.006R"
-archs=noarch
 wrksrc="source-sans-pro-${_relver/\//-}"
 depends="font-util"
 short_desc="Sans serif font family for user interface environments"
diff --git a/srcpkgs/spampd/template b/srcpkgs/spampd/template
index 69d884a75df..1058d4bb5a7 100644
--- a/srcpkgs/spampd/template
+++ b/srcpkgs/spampd/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="http://www.worlddesign.com/index.cfm/page/software/open-source/spampd.htm"
 distfiles="https://github.com/downloads/mpaperno/$pkgname/$pkgname-$version.tar.gz"
 checksum=c980e55f46c7757fd45294e5268766253123490d0158d2ee36ad5700ddf823bb
-archs=noarch
 system_accounts="_spampd"
 _spampd_homedir="/var/lib/spampd"
 
diff --git a/srcpkgs/sparsehash/template b/srcpkgs/sparsehash/template
index b6e1725d3a3..919e516f4d8 100644
--- a/srcpkgs/sparsehash/template
+++ b/srcpkgs/sparsehash/template
@@ -2,7 +2,6 @@
 pkgname=sparsehash
 version=2.0.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Library that contains several hash-map implementations"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/spdx-licenses-list/template b/srcpkgs/spdx-licenses-list/template
index 98b05b520d8..c12a3616660 100644
--- a/srcpkgs/spdx-licenses-list/template
+++ b/srcpkgs/spdx-licenses-list/template
@@ -4,7 +4,6 @@
 pkgname=spdx-licenses-list
 version=3.10
 revision=1
-archs=noarch
 wrksrc="license-list-data-${version}"
 short_desc="SPDX License List"
 maintainer="mobinmob <mobinmob@disroot.org>"
@@ -22,7 +21,6 @@ do_install() {
 }
 
 spdx-licenses-text_package() {
-	archs=noarch
 	short_desc="SPDX licenses in plain text"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -31,7 +29,6 @@ spdx-licenses-text_package() {
 }
 
 spdx-licenses-json_package() {
-	archs=noarch
 	short_desc="SPDX licenses in JSON"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -40,7 +37,6 @@ spdx-licenses-json_package() {
 }
 
 spdx-licenses-html_package() {
-	archs=noarch
 	short_desc="SPDX licenses in HTML"
 	pkg_install() {
 		vmkdir usr/share/spdx
diff --git a/srcpkgs/spectre-meltdown-checker/template b/srcpkgs/spectre-meltdown-checker/template
index ba940726dc1..4873a59248e 100644
--- a/srcpkgs/spectre-meltdown-checker/template
+++ b/srcpkgs/spectre-meltdown-checker/template
@@ -2,7 +2,6 @@
 pkgname=spectre-meltdown-checker
 version=0.43
 revision=1
-archs=noarch
 short_desc="Spectre & Meltdown vulnerability/mitigation checker for Linux"
 depends="binutils"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/speed-dreams/template b/srcpkgs/speed-dreams/template
index 6a32ccc1b49..f269e718af2 100644
--- a/srcpkgs/speed-dreams/template
+++ b/srcpkgs/speed-dreams/template
@@ -34,7 +34,6 @@ esac
 
 speed-dreams-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/speed-dreams-2
 	}
diff --git a/srcpkgs/speedometer/template b/srcpkgs/speedometer/template
index 3c287fcdca7..12c6f43a0e2 100644
--- a/srcpkgs/speedometer/template
+++ b/srcpkgs/speedometer/template
@@ -2,7 +2,6 @@
 pkgname=speedometer
 version=2.8
 revision=3
-archs=noarch
 wrksrc="speedometer-release-${version}"
 depends="python-urwid"
 short_desc="Monitor network traffic or speed/progress of a file transfer"
diff --git a/srcpkgs/speedtest-cli/template b/srcpkgs/speedtest-cli/template
index c65d9fd631d..04b63b8f57a 100644
--- a/srcpkgs/speedtest-cli/template
+++ b/srcpkgs/speedtest-cli/template
@@ -2,7 +2,6 @@
 pkgname=speedtest-cli
 version=2.1.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/spice-protocol/template b/srcpkgs/spice-protocol/template
index 819c2977712..f4b952ce5df 100644
--- a/srcpkgs/spice-protocol/template
+++ b/srcpkgs/spice-protocol/template
@@ -2,7 +2,6 @@
 pkgname=spice-protocol
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="spice-protocol-v${version}"
 build_style=meson
 short_desc="SPICE protocol headers"
diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template
index e7a76a818bf..31842d87272 100644
--- a/srcpkgs/sqlmap/template
+++ b/srcpkgs/sqlmap/template
@@ -2,7 +2,6 @@
 pkgname=sqlmap
 version=1.4.8
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/sqlmap"
 depends="python3"
 short_desc="Automatic SQL injection and database takeover tool"
diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index b9d1f6f8054..3c549b131da 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -2,7 +2,6 @@
 pkgname=ssh-audit
 version=2.2.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="SSH server auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index 518bbd264c3..32031d0fd57 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -2,7 +2,6 @@
 pkgname=sshuttle
 version=1.0.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools iptables"
diff --git a/srcpkgs/ssoma/template b/srcpkgs/ssoma/template
index e2ea3eb961c..d618cba28ac 100644
--- a/srcpkgs/ssoma/template
+++ b/srcpkgs/ssoma/template
@@ -2,7 +2,6 @@
 pkgname=ssoma
 version=0.2.0
 revision=2
-archs=noarch
 make_install_target="install install-man prefix=/usr"
 build_style=perl-module
 depends="perl perl-Email-LocalDelivery perl-Email-MIME perl-File-Path-Expand
diff --git a/srcpkgs/st/template b/srcpkgs/st/template
index c1ff40e2496..4c3281adff6 100644
--- a/srcpkgs/st/template
+++ b/srcpkgs/st/template
@@ -29,7 +29,6 @@ post_install() {
 
 st-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/starfighter/template b/srcpkgs/starfighter/template
index 1b357256b2f..d465bacc52a 100644
--- a/srcpkgs/starfighter/template
+++ b/srcpkgs/starfighter/template
@@ -21,7 +21,6 @@ pre_configure() {
 
 starfighter-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/starfighter
 	}
diff --git a/srcpkgs/startup/template b/srcpkgs/startup/template
index 4a163d65afc..9180c0b7962 100644
--- a/srcpkgs/startup/template
+++ b/srcpkgs/startup/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 startup-tools_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} python3-dbus python3-gobject"
 	short_desc+=" - monitoring and analysis tools"
 	pkg_install() {
diff --git a/srcpkgs/statnot/template b/srcpkgs/statnot/template
index e1817d8f43a..e5bfff9f5e3 100644
--- a/srcpkgs/statnot/template
+++ b/srcpkgs/statnot/template
@@ -2,7 +2,6 @@
 pkgname=statnot
 version=0.0.4
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="pygtk python3-dbus xsetroot"
 short_desc="Notification system for lightweight window managers"
diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index d75e88837cc..b3d4de94217 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -2,7 +2,6 @@
 pkgname=stcgal
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/steam-fonts/template b/srcpkgs/steam-fonts/template
index b0f2aa192b5..fe6f3074b6f 100644
--- a/srcpkgs/steam-fonts/template
+++ b/srcpkgs/steam-fonts/template
@@ -2,7 +2,6 @@
 pkgname=steam-fonts
 version=1.0.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="font-util"
 short_desc="Fonts to fix scrambled or missing text in steam menus"
diff --git a/srcpkgs/stellarium/template b/srcpkgs/stellarium/template
index f3d91387947..38d1518ad50 100644
--- a/srcpkgs/stellarium/template
+++ b/srcpkgs/stellarium/template
@@ -16,7 +16,6 @@ checksum=400ef964c2a1612157a4b219464ea919b4e330322a0db894835b6e11c4af5e9b
 
 stellarium-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stellarium
 	}
diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index abe5f3b563c..4c507387804 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -2,7 +2,6 @@
 pkgname=stig
 version=0.10.1a
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel"
diff --git a/srcpkgs/stk/template b/srcpkgs/stk/template
index 8df159eb8a9..30029aa02bd 100644
--- a/srcpkgs/stk/template
+++ b/srcpkgs/stk/template
@@ -66,7 +66,6 @@ post_install() {
 
 stk-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stk
 	}
diff --git a/srcpkgs/stlarch-font/template b/srcpkgs/stlarch-font/template
index 1c123b7cf0e..ab9e37e4ed1 100644
--- a/srcpkgs/stlarch-font/template
+++ b/srcpkgs/stlarch-font/template
@@ -2,7 +2,6 @@
 pkgname=stlarch-font
 version=1.5
 revision=2
-archs=noarch
 wrksrc="stlarch_font-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/stow/template b/srcpkgs/stow/template
index 4fc87c43888..e3c02065e3c 100644
--- a/srcpkgs/stow/template
+++ b/srcpkgs/stow/template
@@ -2,7 +2,6 @@
 pkgname=stow
 version=2.3.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_target="test"
 hostmakedepends="perl"
diff --git a/srcpkgs/straw-viewer/template b/srcpkgs/straw-viewer/template
index fc327f581ab..22c8507b358 100644
--- a/srcpkgs/straw-viewer/template
+++ b/srcpkgs/straw-viewer/template
@@ -2,7 +2,6 @@
 pkgname=straw-viewer
 version=0.0.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index 44de1bc6fbb..d40a2a23262 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -2,7 +2,6 @@
 pkgname=streamlink
 version=1.5.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycryptodome python3-pycountry
diff --git a/srcpkgs/strip-nondeterminism/template b/srcpkgs/strip-nondeterminism/template
index 5065be2d273..a3129bf6856 100644
--- a/srcpkgs/strip-nondeterminism/template
+++ b/srcpkgs/strip-nondeterminism/template
@@ -2,7 +2,6 @@
 pkgname=strip-nondeterminism
 version=1.6.3
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-Archive-Zip"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/supertux2/template b/srcpkgs/supertux2/template
index 4b7053c6b95..0678b74eeb4 100644
--- a/srcpkgs/supertux2/template
+++ b/srcpkgs/supertux2/template
@@ -22,7 +22,6 @@ checksum=26a9e56ea2d284148849f3239177d777dda5b675a10ab2d76ee65854c91ff598
 
 supertux2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/supertux2
 	}
diff --git a/srcpkgs/supertuxkart/template b/srcpkgs/supertuxkart/template
index 664c79b2529..89985781f68 100644
--- a/srcpkgs/supertuxkart/template
+++ b/srcpkgs/supertuxkart/template
@@ -20,7 +20,6 @@ checksum=e9b02b0b11ab68aacaec38306903feffe59a501224805cd3645cebf10e880ae8
 
 supertuxkart-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		# these script only serve a prupose for developing, not to the package
 		rm "${DESTDIR}/usr/share/supertuxkart/data/po/extract_strings_from_XML.py"
diff --git a/srcpkgs/surfraw/template b/srcpkgs/surfraw/template
index eb49d652edf..3229c598c11 100644
--- a/srcpkgs/surfraw/template
+++ b/srcpkgs/surfraw/template
@@ -8,7 +8,6 @@ build_style=gnu-configure
 short_desc="Command line interface to variety of search engines"
 maintainer="Evan Deaubl <evan@deaubl.name>"
 license="Public Domain"
-archs=noarch
 hostmakedepends="automake perl"
 depends="perl"
 homepage="https://gitlab.com/surfraw/Surfraw"
diff --git a/srcpkgs/sv-helper/template b/srcpkgs/sv-helper/template
index 183ceb72944..74d90c83601 100644
--- a/srcpkgs/sv-helper/template
+++ b/srcpkgs/sv-helper/template
@@ -2,7 +2,6 @@
 pkgname=sv-helper
 version=2.0.2
 revision=1
-archs=noarch
 depends="runit"
 short_desc="Utilities to help administer a runit-as-pid1 system"
 maintainer="bougyman <tj@rubyists.com>"
diff --git a/srcpkgs/swaks/template b/srcpkgs/swaks/template
index e9394bf0b20..3cc608976cf 100644
--- a/srcpkgs/swaks/template
+++ b/srcpkgs/swaks/template
@@ -2,7 +2,6 @@
 pkgname=swaks
 version=20190914.0
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl perl-IO-Socket-INET6 perl-Net-DNS"
 short_desc="Swiss Army Knife for SMTP"
diff --git a/srcpkgs/sway/template b/srcpkgs/sway/template
index fa8e1850c50..2cf0434b1fc 100644
--- a/srcpkgs/sway/template
+++ b/srcpkgs/sway/template
@@ -34,7 +34,6 @@ post_install() {
 grimshot_package() {
 	short_desc="Helper for screenshots within sway"
 	depends="grim slurp sway wl-clipboard jq libnotify"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/bin/grimshot
 		vmove usr/share/man/man1/grimshot.1
diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index 2f42b235c06..fea97464d88 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -2,7 +2,6 @@
 pkgname=synapse
 version=1.19.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jsonschema python3-frozendict python3-canonicaljson>=1.2.0
diff --git a/srcpkgs/syncplay/template b/srcpkgs/syncplay/template
index 83accc1983a..7c3239a484d 100644
--- a/srcpkgs/syncplay/template
+++ b/srcpkgs/syncplay/template
@@ -2,7 +2,6 @@
 pkgname=syncplay
 version=1.6.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/lib/syncplay/syncplay"
 depends="desktop-file-utils python3-pyside2 python3-Twisted
diff --git a/srcpkgs/syncthing-gtk/template b/srcpkgs/syncthing-gtk/template
index aaaa57a1c9e..f50ef18abb8 100644
--- a/srcpkgs/syncthing-gtk/template
+++ b/srcpkgs/syncthing-gtk/template
@@ -3,7 +3,6 @@ pkgname=syncthing-gtk
 reverts="0.14.36_1"
 version=0.9.4.4
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="syncthing python-dateutil libnotify librsvg python-bcrypt
diff --git a/srcpkgs/system-config-printer/template b/srcpkgs/system-config-printer/template
index c9fd88c7344..400e213b05e 100644
--- a/srcpkgs/system-config-printer/template
+++ b/srcpkgs/system-config-printer/template
@@ -20,7 +20,6 @@ distfiles="${homepage}/releases/download/${version}/system-config-printer-${vers
 checksum=ab4a4553f536487bf2be1143529749ed9926edd84bd97c2b42666a7111d60b7f
 
 python3-cupshelpers_package() {
-	archs=noarch
 	depends="python3-cups python3-dbus python3-requests"
 	short_desc="Python utility modules around the CUPS printing system"
 	pycompile_module="cupshelpers"
diff --git a/srcpkgs/t-prot/template b/srcpkgs/t-prot/template
index 96c7b10b41f..56123e4c6ba 100644
--- a/srcpkgs/t-prot/template
+++ b/srcpkgs/t-prot/template
@@ -5,7 +5,6 @@ revision=2
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD"
 depends="perl perl-Locale-gettext"
-archs=noarch
 homepage="http://www.escape.de/~tolot/mutt/"
 short_desc="TOFU protection - display filter for RFC822 messages"
 distfiles="http://www.escape.de/~tolot/mutt/t-prot/downloads/${pkgname}-${version}.tar.gz"
diff --git a/srcpkgs/t2ec/template b/srcpkgs/t2ec/template
index f90c7b2898c..5ad009c76ed 100644
--- a/srcpkgs/t2ec/template
+++ b/srcpkgs/t2ec/template
@@ -2,7 +2,6 @@
 pkgname=t2ec
 version=1.3
 revision=1
-archs=noarch
 depends="python3 acpi xbacklight alsa-utils wireless_tools wget jgmenu"
 short_desc="Scripts to display info icons and controls in Tint2 or other panels"
 maintainer="nwg-piotr <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/taisei/template b/srcpkgs/taisei/template
index e99bbc6f538..543044d052e 100644
--- a/srcpkgs/taisei/template
+++ b/srcpkgs/taisei/template
@@ -20,7 +20,6 @@ post_install() {
 
 taisei-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/taisei
 	}
diff --git a/srcpkgs/tango-icon-theme/template b/srcpkgs/tango-icon-theme/template
index 666bb9a533f..b0cc8257bc6 100644
--- a/srcpkgs/tango-icon-theme/template
+++ b/srcpkgs/tango-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=tango-icon-theme
 version=0.8.90
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="ImageMagick icon-naming-utils intltool pkg-config"
 makedepends="icon-naming-utils libmagick-devel"
diff --git a/srcpkgs/tcllib/template b/srcpkgs/tcllib/template
index a06f1295075..089c9fb4715 100644
--- a/srcpkgs/tcllib/template
+++ b/srcpkgs/tcllib/template
@@ -2,7 +2,6 @@
 pkgname=tcllib
 version=1.20
 revision=1
-archs=noarch
 wrksrc="tcllib-tcllib-${version/./-}"
 build_style=gnu-configure
 hostmakedepends="pkg-config tcl"
diff --git a/srcpkgs/tdrop/template b/srcpkgs/tdrop/template
index 9d454df944a..eccfdbef043 100644
--- a/srcpkgs/tdrop/template
+++ b/srcpkgs/tdrop/template
@@ -2,7 +2,6 @@
 pkgname=tdrop
 version=0.3.0
 revision=1
-archs=noarch
 depends="bash xdotool xprop xwininfo"
 short_desc="Turn terminal emulator or any program into dropdown window"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/tegaki-zinnia-japanese/template b/srcpkgs/tegaki-zinnia-japanese/template
index c6e9c64cef8..83766bce8d7 100644
--- a/srcpkgs/tegaki-zinnia-japanese/template
+++ b/srcpkgs/tegaki-zinnia-japanese/template
@@ -9,7 +9,6 @@ license="GPL-2"
 hostmakedepends="unzip"
 distfiles="https://github.com/tegaki/tegaki/releases/download/v0.3/${pkgname}-${version}.zip"
 checksum=07861bbb5440d74e705864721f12a5ce1c7f21a869f9c95ff21433d8994aafda
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/tegaki/models/zinnia
diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index bd60dcc57a6..1d3f6602f83 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -2,7 +2,6 @@
 pkgname=tekaim
 version=1.6.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="curl maim python3 xclip"
diff --git a/srcpkgs/telepathy-python/template b/srcpkgs/telepathy-python/template
index 41a0e0d03cb..f5e41c305e8 100644
--- a/srcpkgs/telepathy-python/template
+++ b/srcpkgs/telepathy-python/template
@@ -2,7 +2,6 @@
 pkgname=telepathy-python
 version=0.15.19
 revision=7
-archs=noarch
 build_style=gnu-configure
 pycompile_module="telepathy"
 hostmakedepends="automake python libxslt"
diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 83b1bca4edd..a7508ab0d78 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -2,7 +2,6 @@
 pkgname=telepresence
 version=0.105
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-pip python3-setuptools git"
 depends="kubectl fuse-sshfs torsocks openssh conntrack-tools iptables"
diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index d9efe27f2db..1431154fd64 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -2,7 +2,6 @@
 pkgname=termdown
 version=1.17.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-dateutil python3-click python3-pyfiglet"
diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index ba3fcfdc8d6..7867869fda7 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -2,7 +2,6 @@
 pkgname=terminal_markdown_viewer
 version=1.6.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mdv"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/terminator/template b/srcpkgs/terminator/template
index bc95ee7924b..1e0b9517f25 100644
--- a/srcpkgs/terminator/template
+++ b/srcpkgs/terminator/template
@@ -2,7 +2,6 @@
 pkgname=terminator
 version=1.91
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="terminatorlib"
 hostmakedepends="intltool python"
diff --git a/srcpkgs/terminus-font/template b/srcpkgs/terminus-font/template
index 4a296a8f0ce..8efc808c4b2 100644
--- a/srcpkgs/terminus-font/template
+++ b/srcpkgs/terminus-font/template
@@ -2,7 +2,6 @@
 pkgname=terminus-font
 version=4.48
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--x11dir=/usr/share/fonts/X11/misc
  --psfdir=/usr/share/kbd/consolefonts"
diff --git a/srcpkgs/termsyn-font/template b/srcpkgs/termsyn-font/template
index 2d6f574bda5..f59be231eb7 100644
--- a/srcpkgs/termsyn-font/template
+++ b/srcpkgs/termsyn-font/template
@@ -2,7 +2,6 @@
 pkgname=termsyn-font
 version=1.8.7
 revision=2
-archs=noarch
 wrksrc="termsyn-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/termtosvg/template b/srcpkgs/termtosvg/template
index 431d0945140..6c60000ecbe 100644
--- a/srcpkgs/termtosvg/template
+++ b/srcpkgs/termtosvg/template
@@ -2,7 +2,6 @@
 pkgname=termtosvg
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyte python3-lxml python3-wcwidth"
diff --git a/srcpkgs/tesseract-ocr/template b/srcpkgs/tesseract-ocr/template
index f0313da0ce6..8aa75de7ac9 100644
--- a/srcpkgs/tesseract-ocr/template
+++ b/srcpkgs/tesseract-ocr/template
@@ -108,7 +108,6 @@ tesseract-ocr-devel_package() {
 }
 tesseract-ocr-basic_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-all>=0"
@@ -120,7 +119,6 @@ tesseract-ocr-basic_package() {
 }
 tesseract-ocr-all_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-basic>=0"
@@ -143,7 +141,6 @@ tesseract-ocr-all_package() {
 	done
 }
 tesseract-ocr-afr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Afrikaans language data"
 	pkg_install() {
@@ -151,7 +148,6 @@ tesseract-ocr-afr_package() {
 	}
 }
 tesseract-ocr-amh_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Amharic language data"
 	pkg_install() {
@@ -159,7 +155,6 @@ tesseract-ocr-amh_package() {
 	}
 }
 tesseract-ocr-ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic language data"
 	pkg_install() {
@@ -167,7 +162,6 @@ tesseract-ocr-ara_package() {
 	}
 }
 tesseract-ocr-asm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Assamese language data"
 	pkg_install() {
@@ -175,7 +169,6 @@ tesseract-ocr-asm_package() {
 	}
 }
 tesseract-ocr-aze_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani language data"
 	pkg_install() {
@@ -183,7 +176,6 @@ tesseract-ocr-aze_package() {
 	}
 }
 tesseract-ocr-aze_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani (cyrillic) language data"
 	pkg_install() {
@@ -191,7 +183,6 @@ tesseract-ocr-aze_cyrl_package() {
 	}
 }
 tesseract-ocr-bel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Belarusian language data"
 	pkg_install() {
@@ -199,7 +190,6 @@ tesseract-ocr-bel_package() {
 	}
 }
 tesseract-ocr-ben_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali language data"
 	pkg_install() {
@@ -207,7 +197,6 @@ tesseract-ocr-ben_package() {
 	}
 }
 tesseract-ocr-bod_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan language data"
 	pkg_install() {
@@ -215,7 +204,6 @@ tesseract-ocr-bod_package() {
 	}
 }
 tesseract-ocr-bos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bosnian language data"
 	pkg_install() {
@@ -223,7 +211,6 @@ tesseract-ocr-bos_package() {
 	}
 }
 tesseract-ocr-bre_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Breton language data"
 	pkg_install() {
@@ -231,7 +218,6 @@ tesseract-ocr-bre_package() {
 	}
 }
 tesseract-ocr-bul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bulgarian language data"
 	pkg_install() {
@@ -239,7 +225,6 @@ tesseract-ocr-bul_package() {
 	}
 }
 tesseract-ocr-cat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Catalan language data"
 	pkg_install() {
@@ -247,7 +232,6 @@ tesseract-ocr-cat_package() {
 	}
 }
 tesseract-ocr-ceb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cebuano language data"
 	pkg_install() {
@@ -255,7 +239,6 @@ tesseract-ocr-ceb_package() {
 	}
 }
 tesseract-ocr-ces_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Czech language data"
 	pkg_install() {
@@ -263,7 +246,6 @@ tesseract-ocr-ces_package() {
 	}
 }
 tesseract-ocr-chi_sim_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Simplified) language data"
 	pkg_install() {
@@ -271,7 +253,6 @@ tesseract-ocr-chi_sim_package() {
 	}
 }
 tesseract-ocr-chi_tra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Traditional) language data"
 	pkg_install() {
@@ -279,7 +260,6 @@ tesseract-ocr-chi_tra_package() {
 	}
 }
 tesseract-ocr-chr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee language data"
 	pkg_install() {
@@ -287,7 +267,6 @@ tesseract-ocr-chr_package() {
 	}
 }
 tesseract-ocr-cos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Corsican language data"
 	pkg_install() {
@@ -295,7 +274,6 @@ tesseract-ocr-cos_package() {
 	}
 }
 tesseract-ocr-cym_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Welsh language data"
 	pkg_install() {
@@ -303,7 +281,6 @@ tesseract-ocr-cym_package() {
 	}
 }
 tesseract-ocr-dan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Danish language data"
 	pkg_install() {
@@ -311,7 +288,6 @@ tesseract-ocr-dan_package() {
 	}
 }
 tesseract-ocr-deu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - German language data"
 	pkg_install() {
@@ -319,7 +295,6 @@ tesseract-ocr-deu_package() {
 	}
 }
 tesseract-ocr-div_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dhivehi language data"
 	pkg_install() {
@@ -327,7 +302,6 @@ tesseract-ocr-div_package() {
 	}
 }
 tesseract-ocr-dzo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dzongkha language data"
 	pkg_install() {
@@ -335,7 +309,6 @@ tesseract-ocr-dzo_package() {
 	}
 }
 tesseract-ocr-ell_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek language data"
 	pkg_install() {
@@ -343,7 +316,6 @@ tesseract-ocr-ell_package() {
 	}
 }
 tesseract-ocr-eng_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - English language data"
 	pkg_install() {
@@ -351,7 +323,6 @@ tesseract-ocr-eng_package() {
 	}
 }
 tesseract-ocr-enm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle English (1100-1500) language data"
 	pkg_install() {
@@ -359,7 +330,6 @@ tesseract-ocr-enm_package() {
 	}
 }
 tesseract-ocr-epo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Esperanto language data"
 	pkg_install() {
@@ -367,7 +337,6 @@ tesseract-ocr-epo_package() {
 	}
 }
 tesseract-ocr-est_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Estonian language data"
 	pkg_install() {
@@ -375,7 +344,6 @@ tesseract-ocr-est_package() {
 	}
 }
 tesseract-ocr-eus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Basque language data"
 	pkg_install() {
@@ -383,7 +351,6 @@ tesseract-ocr-eus_package() {
 	}
 }
 tesseract-ocr-fao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Faroese language data"
 	pkg_install() {
@@ -391,7 +358,6 @@ tesseract-ocr-fao_package() {
 	}
 }
 tesseract-ocr-fas_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Persian language data"
 	pkg_install() {
@@ -399,7 +365,6 @@ tesseract-ocr-fas_package() {
 	}
 }
 tesseract-ocr-fil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Filipino language data"
 	pkg_install() {
@@ -407,7 +372,6 @@ tesseract-ocr-fil_package() {
 	}
 }
 tesseract-ocr-fin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Finnish language data"
 	pkg_install() {
@@ -415,7 +379,6 @@ tesseract-ocr-fin_package() {
 	}
 }
 tesseract-ocr-fra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - French language data"
 	pkg_install() {
@@ -423,7 +386,6 @@ tesseract-ocr-fra_package() {
 	}
 }
 tesseract-ocr-frk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frankish language data"
 	pkg_install() {
@@ -431,7 +393,6 @@ tesseract-ocr-frk_package() {
 	}
 }
 tesseract-ocr-frm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle French (ca. 1400-1600) language data"
 	pkg_install() {
@@ -439,7 +400,6 @@ tesseract-ocr-frm_package() {
 	}
 }
 tesseract-ocr-fry_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frisian language data"
 	pkg_install() {
@@ -447,7 +407,6 @@ tesseract-ocr-fry_package() {
 	}
 }
 tesseract-ocr-gla_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Scottish Gaelic language data"
 	pkg_install() {
@@ -455,7 +414,6 @@ tesseract-ocr-gla_package() {
 	}
 }
 tesseract-ocr-gle_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Irish language data"
 	pkg_install() {
@@ -463,7 +421,6 @@ tesseract-ocr-gle_package() {
 	}
 }
 tesseract-ocr-glg_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Galician language data"
 	pkg_install() {
@@ -471,7 +428,6 @@ tesseract-ocr-glg_package() {
 	}
 }
 tesseract-ocr-grc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ancient Greek Language data"
 	pkg_install() {
@@ -479,7 +435,6 @@ tesseract-ocr-grc_package() {
 	}
 }
 tesseract-ocr-guj_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati Language data"
 	pkg_install() {
@@ -487,7 +442,6 @@ tesseract-ocr-guj_package() {
 	}
 }
 tesseract-ocr-hat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Haitian language data"
 	pkg_install() {
@@ -495,7 +449,6 @@ tesseract-ocr-hat_package() {
 	}
 }
 tesseract-ocr-heb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew language data"
 	pkg_install() {
@@ -503,7 +456,6 @@ tesseract-ocr-heb_package() {
 	}
 }
 tesseract-ocr-hin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hindi language data"
 	pkg_install() {
@@ -511,7 +463,6 @@ tesseract-ocr-hin_package() {
 	}
 }
 tesseract-ocr-hrv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Croatian language data"
 	pkg_install() {
@@ -519,7 +470,6 @@ tesseract-ocr-hrv_package() {
 	}
 }
 tesseract-ocr-hun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hungarian language data"
 	pkg_install() {
@@ -527,7 +477,6 @@ tesseract-ocr-hun_package() {
 	}
 }
 tesseract-ocr-hye_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian language data"
 	pkg_install() {
@@ -535,7 +484,6 @@ tesseract-ocr-hye_package() {
 	}
 }
 tesseract-ocr-iku_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Inuktitut language data"
 	pkg_install() {
@@ -543,7 +491,6 @@ tesseract-ocr-iku_package() {
 	}
 }
 tesseract-ocr-ind_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Indonesian language data"
 	pkg_install() {
@@ -551,7 +498,6 @@ tesseract-ocr-ind_package() {
 	}
 }
 tesseract-ocr-isl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Icelandic language data"
 	pkg_install() {
@@ -559,7 +505,6 @@ tesseract-ocr-isl_package() {
 	}
 }
 tesseract-ocr-ita_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian language data"
 	pkg_install() {
@@ -567,7 +512,6 @@ tesseract-ocr-ita_package() {
 	}
 }
 tesseract-ocr-ita_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian (Old) language data"
 	pkg_install() {
@@ -575,7 +519,6 @@ tesseract-ocr-ita_old_package() {
 	}
 }
 tesseract-ocr-jav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Javanese language data"
 	pkg_install() {
@@ -583,7 +526,6 @@ tesseract-ocr-jav_package() {
 	}
 }
 tesseract-ocr-jpn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese language data"
 	pkg_install() {
@@ -591,7 +533,6 @@ tesseract-ocr-jpn_package() {
 	}
 }
 tesseract-ocr-kan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada language data"
 	pkg_install() {
@@ -599,7 +540,6 @@ tesseract-ocr-kan_package() {
 	}
 }
 tesseract-ocr-kat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian language data"
 	pkg_install() {
@@ -607,7 +547,6 @@ tesseract-ocr-kat_package() {
 	}
 }
 tesseract-ocr-kat_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian (old) language data"
 	pkg_install() {
@@ -615,7 +554,6 @@ tesseract-ocr-kat_old_package() {
 	}
 }
 tesseract-ocr-kaz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kazakh language data"
 	pkg_install() {
@@ -623,7 +561,6 @@ tesseract-ocr-kaz_package() {
 	}
 }
 tesseract-ocr-khm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Central Khmer language data"
 	pkg_install() {
@@ -631,7 +568,6 @@ tesseract-ocr-khm_package() {
 	}
 }
 tesseract-ocr-kir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kirghiz language data"
 	pkg_install() {
@@ -639,7 +575,6 @@ tesseract-ocr-kir_package() {
 	}
 }
 tesseract-ocr-kor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Korean language data"
 	pkg_install() {
@@ -647,7 +582,6 @@ tesseract-ocr-kor_package() {
 	}
 }
 tesseract-ocr-kur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish language data"
 	pkg_install() {
@@ -655,7 +589,6 @@ tesseract-ocr-kur_package() {
 	}
 }
 tesseract-ocr-kur_ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish (Arabic) language data"
 	pkg_install() {
@@ -663,7 +596,6 @@ tesseract-ocr-kur_ara_package() {
 	}
 }
 tesseract-ocr-lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao language data"
 	pkg_install() {
@@ -671,7 +603,6 @@ tesseract-ocr-lao_package() {
 	}
 }
 tesseract-ocr-lat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin language data"
 	pkg_install() {
@@ -679,7 +610,6 @@ tesseract-ocr-lat_package() {
 	}
 }
 tesseract-ocr-lav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latvian language data"
 	pkg_install() {
@@ -687,7 +617,6 @@ tesseract-ocr-lav_package() {
 	}
 }
 tesseract-ocr-lit_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lithuanian language data"
 	pkg_install() {
@@ -695,7 +624,6 @@ tesseract-ocr-lit_package() {
 	}
 }
 tesseract-ocr-ltz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Luxembourgish language data"
 	pkg_install() {
@@ -703,7 +631,6 @@ tesseract-ocr-ltz_package() {
 	}
 }
 tesseract-ocr-mal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam language data"
 	pkg_install() {
@@ -711,7 +638,6 @@ tesseract-ocr-mal_package() {
 	}
 }
 tesseract-ocr-mar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Marathi language data"
 	pkg_install() {
@@ -719,7 +645,6 @@ tesseract-ocr-mar_package() {
 	}
 }
 tesseract-ocr-mkd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Macedonian language data"
 	pkg_install() {
@@ -727,7 +652,6 @@ tesseract-ocr-mkd_package() {
 	}
 }
 tesseract-ocr-mlt_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maltese language data"
 	pkg_install() {
@@ -735,7 +659,6 @@ tesseract-ocr-mlt_package() {
 	}
 }
 tesseract-ocr-mon_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Mongolian language data"
 	pkg_install() {
@@ -743,7 +666,6 @@ tesseract-ocr-mon_package() {
 	}
 }
 tesseract-ocr-mri_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maori language data"
 	pkg_install() {
@@ -751,7 +673,6 @@ tesseract-ocr-mri_package() {
 	}
 }
 tesseract-ocr-msa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malay language data"
 	pkg_install() {
@@ -759,7 +680,6 @@ tesseract-ocr-msa_package() {
 	}
 }
 tesseract-ocr-mya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Burmese language data"
 	pkg_install() {
@@ -767,7 +687,6 @@ tesseract-ocr-mya_package() {
 	}
 }
 tesseract-ocr-nep_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Nepalese language data"
 	pkg_install() {
@@ -775,7 +694,6 @@ tesseract-ocr-nep_package() {
 	}
 }
 tesseract-ocr-nld_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dutch language data"
 	pkg_install() {
@@ -783,7 +701,6 @@ tesseract-ocr-nld_package() {
 	}
 }
 tesseract-ocr-nor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Norwegian language data"
 	pkg_install() {
@@ -791,7 +708,6 @@ tesseract-ocr-nor_package() {
 	}
 }
 tesseract-ocr-oci_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Occitan (post 1500) language data"
 	pkg_install() {
@@ -799,7 +715,6 @@ tesseract-ocr-oci_package() {
 	}
 }
 tesseract-ocr-ori_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya language data"
 	pkg_install() {
@@ -807,7 +722,6 @@ tesseract-ocr-ori_package() {
 	}
 }
 tesseract-ocr-pan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Panjabi language data"
 	pkg_install() {
@@ -815,7 +729,6 @@ tesseract-ocr-pan_package() {
 	}
 }
 tesseract-ocr-pol_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Polish language data"
 	pkg_install() {
@@ -823,7 +736,6 @@ tesseract-ocr-pol_package() {
 	}
 }
 tesseract-ocr-por_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Portuguese language data"
 	pkg_install() {
@@ -831,7 +743,6 @@ tesseract-ocr-por_package() {
 	}
 }
 tesseract-ocr-pus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Pushto language data"
 	pkg_install() {
@@ -839,7 +750,6 @@ tesseract-ocr-pus_package() {
 	}
 }
 tesseract-ocr-que_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Quechua language data"
 	pkg_install() {
@@ -847,7 +757,6 @@ tesseract-ocr-que_package() {
 	}
 }
 tesseract-ocr-ron_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Romanian language data"
 	pkg_install() {
@@ -855,7 +764,6 @@ tesseract-ocr-ron_package() {
 	}
 }
 tesseract-ocr-rus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Russian language data"
 	pkg_install() {
@@ -863,7 +771,6 @@ tesseract-ocr-rus_package() {
 	}
 }
 tesseract-ocr-san_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sanskrit language data"
 	pkg_install() {
@@ -871,7 +778,6 @@ tesseract-ocr-san_package() {
 	}
 }
 tesseract-ocr-sin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala language data"
 	pkg_install() {
@@ -879,7 +785,6 @@ tesseract-ocr-sin_package() {
 	}
 }
 tesseract-ocr-slk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovakian language data"
 	pkg_install() {
@@ -887,7 +792,6 @@ tesseract-ocr-slk_package() {
 	}
 }
 tesseract-ocr-slv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovenian language data"
 	pkg_install() {
@@ -895,7 +799,6 @@ tesseract-ocr-slv_package() {
 	}
 }
 tesseract-ocr-snd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sindhi language data"
 	pkg_install() {
@@ -903,7 +806,6 @@ tesseract-ocr-snd_package() {
 	}
 }
 tesseract-ocr-spa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish language data"
 	pkg_install() {
@@ -911,7 +813,6 @@ tesseract-ocr-spa_package() {
 	}
 }
 tesseract-ocr-spa_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish (Old) language data"
 	pkg_install() {
@@ -919,7 +820,6 @@ tesseract-ocr-spa_old_package() {
 	}
 }
 tesseract-ocr-sqi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Albanian language data"
 	pkg_install() {
@@ -927,7 +827,6 @@ tesseract-ocr-sqi_package() {
 	}
 }
 tesseract-ocr-srp_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian language data"
 	pkg_install() {
@@ -935,7 +834,6 @@ tesseract-ocr-srp_package() {
 	}
 }
 tesseract-ocr-srp_latn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian (Latin) language data"
 	pkg_install() {
@@ -943,7 +841,6 @@ tesseract-ocr-srp_latn_package() {
 	}
 }
 tesseract-ocr-sun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sundanese language data"
 	pkg_install() {
@@ -951,7 +848,6 @@ tesseract-ocr-sun_package() {
 	}
 }
 tesseract-ocr-swa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swahili language data"
 	pkg_install() {
@@ -959,7 +855,6 @@ tesseract-ocr-swa_package() {
 	}
 }
 tesseract-ocr-swe_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swedish language data"
 	pkg_install() {
@@ -967,7 +862,6 @@ tesseract-ocr-swe_package() {
 	}
 }
 tesseract-ocr-syr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac language data"
 	pkg_install() {
@@ -975,7 +869,6 @@ tesseract-ocr-syr_package() {
 	}
 }
 tesseract-ocr-tam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil language data"
 	pkg_install() {
@@ -983,7 +876,6 @@ tesseract-ocr-tam_package() {
 	}
 }
 tesseract-ocr-tat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tatar language data"
 	pkg_install() {
@@ -991,7 +883,6 @@ tesseract-ocr-tat_package() {
 	}
 }
 tesseract-ocr-tel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu language data"
 	pkg_install() {
@@ -999,7 +890,6 @@ tesseract-ocr-tel_package() {
 	}
 }
 tesseract-ocr-tgk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tajik language data"
 	pkg_install() {
@@ -1007,7 +897,6 @@ tesseract-ocr-tgk_package() {
 	}
 }
 tesseract-ocr-tgl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tagalog language data"
 	pkg_install() {
@@ -1015,7 +904,6 @@ tesseract-ocr-tgl_package() {
 	}
 }
 tesseract-ocr-tha_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai language data"
 	pkg_install() {
@@ -1023,7 +911,6 @@ tesseract-ocr-tha_package() {
 	}
 }
 tesseract-ocr-tir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tigrinya language data"
 	pkg_install() {
@@ -1031,7 +918,6 @@ tesseract-ocr-tir_package() {
 	}
 }
 tesseract-ocr-ton_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tonga language data"
 	pkg_install() {
@@ -1039,7 +925,6 @@ tesseract-ocr-ton_package() {
 	}
 }
 tesseract-ocr-tur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Turkish language data"
 	pkg_install() {
@@ -1047,7 +932,6 @@ tesseract-ocr-tur_package() {
 	}
 }
 tesseract-ocr-uig_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uighur language data"
 	pkg_install() {
@@ -1055,7 +939,6 @@ tesseract-ocr-uig_package() {
 	}
 }
 tesseract-ocr-ukr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ukrainian language data"
 	pkg_install() {
@@ -1063,7 +946,6 @@ tesseract-ocr-ukr_package() {
 	}
 }
 tesseract-ocr-urd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Urdu language data"
 	pkg_install() {
@@ -1071,7 +953,6 @@ tesseract-ocr-urd_package() {
 	}
 }
 tesseract-ocr-uzb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek language data"
 	pkg_install() {
@@ -1079,7 +960,6 @@ tesseract-ocr-uzb_package() {
 	}
 }
 tesseract-ocr-uzb_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek (Cyrillic) language data"
 	pkg_install() {
@@ -1087,7 +967,6 @@ tesseract-ocr-uzb_cyrl_package() {
 	}
 }
 tesseract-ocr-vie_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese language data"
 	pkg_install() {
@@ -1095,7 +974,6 @@ tesseract-ocr-vie_package() {
 	}
 }
 tesseract-ocr-yid_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yiddish language data"
 	pkg_install() {
@@ -1103,7 +981,6 @@ tesseract-ocr-yid_package() {
 	}
 }
 tesseract-ocr-yor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yoruba language data"
 	pkg_install() {
@@ -1111,7 +988,6 @@ tesseract-ocr-yor_package() {
 	}
 }
 tesseract-ocr-script-Arabic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic script data"
 	pkg_install() {
@@ -1119,7 +995,6 @@ tesseract-ocr-script-Arabic_package() {
 	}
 }
 tesseract-ocr-script-Armenian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian script data"
 	pkg_install() {
@@ -1127,7 +1002,6 @@ tesseract-ocr-script-Armenian_package() {
 	}
 }
 tesseract-ocr-script-Bengali_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali script data"
 	pkg_install() {
@@ -1135,7 +1009,6 @@ tesseract-ocr-script-Bengali_package() {
 	}
 }
 tesseract-ocr-script-Canadian_Aboriginal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Canadian Aboriginal script data"
 	pkg_install() {
@@ -1143,7 +1016,6 @@ tesseract-ocr-script-Canadian_Aboriginal_package() {
 	}
 }
 tesseract-ocr-script-Cherokee_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee script data"
 	pkg_install() {
@@ -1151,7 +1023,6 @@ tesseract-ocr-script-Cherokee_package() {
 	}
 }
 tesseract-ocr-script-Cyrillic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cyrillic script data"
 	pkg_install() {
@@ -1159,7 +1030,6 @@ tesseract-ocr-script-Cyrillic_package() {
 	}
 }
 tesseract-ocr-script-Devanagari_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Devanagari script data"
 	pkg_install() {
@@ -1167,7 +1037,6 @@ tesseract-ocr-script-Devanagari_package() {
 	}
 }
 tesseract-ocr-script-Ethiopic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ethiopic script data"
 	pkg_install() {
@@ -1175,7 +1044,6 @@ tesseract-ocr-script-Ethiopic_package() {
 	}
 }
 tesseract-ocr-script-Fraktur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Fraktur script data"
 	pkg_install() {
@@ -1183,7 +1051,6 @@ tesseract-ocr-script-Fraktur_package() {
 	}
 }
 tesseract-ocr-script-Georgian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian script data"
 	pkg_install() {
@@ -1191,7 +1058,6 @@ tesseract-ocr-script-Georgian_package() {
 	}
 }
 tesseract-ocr-script-Greek_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek script data"
 	pkg_install() {
@@ -1199,7 +1065,6 @@ tesseract-ocr-script-Greek_package() {
 	}
 }
 tesseract-ocr-script-Gujarati_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati script data"
 	pkg_install() {
@@ -1207,7 +1072,6 @@ tesseract-ocr-script-Gujarati_package() {
 	}
 }
 tesseract-ocr-script-Gurmukhi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gurmukhi script data"
 	pkg_install() {
@@ -1215,7 +1079,6 @@ tesseract-ocr-script-Gurmukhi_package() {
 	}
 }
 tesseract-ocr-script-HanS_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanS script data"
 	pkg_install() {
@@ -1223,7 +1086,6 @@ tesseract-ocr-script-HanS_package() {
 	}
 }
 tesseract-ocr-script-HanT_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanT script data"
 	pkg_install() {
@@ -1231,7 +1093,6 @@ tesseract-ocr-script-HanT_package() {
 	}
 }
 tesseract-ocr-script-Hangul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hangul script data"
 	pkg_install() {
@@ -1239,7 +1100,6 @@ tesseract-ocr-script-Hangul_package() {
 	}
 }
 tesseract-ocr-script-Hebrew_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew script data"
 	pkg_install() {
@@ -1247,7 +1107,6 @@ tesseract-ocr-script-Hebrew_package() {
 	}
 }
 tesseract-ocr-script-Japanese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese script data"
 	pkg_install() {
@@ -1255,7 +1114,6 @@ tesseract-ocr-script-Japanese_package() {
 	}
 }
 tesseract-ocr-script-Kannada_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada script data"
 	pkg_install() {
@@ -1263,7 +1121,6 @@ tesseract-ocr-script-Kannada_package() {
 	}
 }
 tesseract-ocr-script-Khmer_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Khmer script data"
 	pkg_install() {
@@ -1271,7 +1128,6 @@ tesseract-ocr-script-Khmer_package() {
 	}
 }
 tesseract-ocr-script-Lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao script data"
 	pkg_install() {
@@ -1279,7 +1135,6 @@ tesseract-ocr-script-Lao_package() {
 	}
 }
 tesseract-ocr-script-Latin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin script data"
 	pkg_install() {
@@ -1287,7 +1142,6 @@ tesseract-ocr-script-Latin_package() {
 	}
 }
 tesseract-ocr-script-Malayalam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam script data"
 	pkg_install() {
@@ -1295,7 +1149,6 @@ tesseract-ocr-script-Malayalam_package() {
 	}
 }
 tesseract-ocr-script-Myanmar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Myanmar script data"
 	pkg_install() {
@@ -1303,7 +1156,6 @@ tesseract-ocr-script-Myanmar_package() {
 	}
 }
 tesseract-ocr-script-Oriya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya script data"
 	pkg_install() {
@@ -1311,7 +1163,6 @@ tesseract-ocr-script-Oriya_package() {
 	}
 }
 tesseract-ocr-script-Sinhala_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala script data"
 	pkg_install() {
@@ -1319,7 +1170,6 @@ tesseract-ocr-script-Sinhala_package() {
 	}
 }
 tesseract-ocr-script-Syriac_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac script data"
 	pkg_install() {
@@ -1327,7 +1177,6 @@ tesseract-ocr-script-Syriac_package() {
 	}
 }
 tesseract-ocr-script-Tamil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil script data"
 	pkg_install() {
@@ -1335,7 +1184,6 @@ tesseract-ocr-script-Tamil_package() {
 	}
 }
 tesseract-ocr-script-Telugu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu script data"
 	pkg_install() {
@@ -1343,7 +1191,6 @@ tesseract-ocr-script-Telugu_package() {
 	}
 }
 tesseract-ocr-script-Thaana_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thaana script data"
 	pkg_install() {
@@ -1351,7 +1198,6 @@ tesseract-ocr-script-Thaana_package() {
 	}
 }
 tesseract-ocr-script-Thai_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai script data"
 	pkg_install() {
@@ -1359,7 +1205,6 @@ tesseract-ocr-script-Thai_package() {
 	}
 }
 tesseract-ocr-script-Tibetan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan script data"
 	pkg_install() {
@@ -1367,7 +1212,6 @@ tesseract-ocr-script-Tibetan_package() {
 	}
 }
 tesseract-ocr-script-Vietnamese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese script data"
 	pkg_install() {
diff --git a/srcpkgs/testssl.sh/template b/srcpkgs/testssl.sh/template
index 2480aa2bce2..493fac73a21 100644
--- a/srcpkgs/testssl.sh/template
+++ b/srcpkgs/testssl.sh/template
@@ -2,7 +2,6 @@
 pkgname=testssl.sh
 version=3.0.2
 revision=1
-archs=noarch
 depends="libressl bind-utils"
 short_desc="Command line tool which checks a server for the support of TLS/SSL"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/tewi-font/template b/srcpkgs/tewi-font/template
index 49e301745d3..4ce6b7c79a1 100644
--- a/srcpkgs/tewi-font/template
+++ b/srcpkgs/tewi-font/template
@@ -2,7 +2,6 @@
 pkgname=tewi-font
 version=2.0.2
 revision=2
-archs=noarch
 hostmakedepends="bdftopcf python3"
 depends="font-util xbps-triggers"
 short_desc="Programming monospace bitmap font"
diff --git a/srcpkgs/texi2html/template b/srcpkgs/texi2html/template
index 9726abd7e4d..7fb2c48e317 100644
--- a/srcpkgs/texi2html/template
+++ b/srcpkgs/texi2html/template
@@ -2,7 +2,6 @@
 pkgname=texi2html
 version=5.0
 revision=1
-archs=noarch
 build_style="gnu-configure"
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/texlive-basic/template b/srcpkgs/texlive-basic/template
index 52fbfee52a3..e04c946eb94 100644
--- a/srcpkgs/texlive-basic/template
+++ b/srcpkgs/texlive-basic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-basic
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-bibtexextra/template b/srcpkgs/texlive-bibtexextra/template
index e5954e1c364..1f159c9846c 100644
--- a/srcpkgs/texlive-bibtexextra/template
+++ b/srcpkgs/texlive-bibtexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-bibtexextra
 version=2020.55376
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional BibTeX styles and bibliography databases"
diff --git a/srcpkgs/texlive-core/template b/srcpkgs/texlive-core/template
index 694c8bcb3d0..d5d5c0fa530 100644
--- a/srcpkgs/texlive-core/template
+++ b/srcpkgs/texlive-core/template
@@ -2,7 +2,6 @@
 pkgname=texlive-core
 version=2020.55416
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - core texmf distribution"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-fontsextra/template b/srcpkgs/texlive-fontsextra/template
index a80ea7cd234..f7df53cab6f 100644
--- a/srcpkgs/texlive-fontsextra/template
+++ b/srcpkgs/texlive-fontsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-fontsextra
 version=2020.55407
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - All sorts of extra fonts"
diff --git a/srcpkgs/texlive-formatsextra/template b/srcpkgs/texlive-formatsextra/template
index 85704c43687..d38d08aa8c4 100644
--- a/srcpkgs/texlive-formatsextra/template
+++ b/srcpkgs/texlive-formatsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-formatsextra
 version=2020.54498
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Collection of extra TeX 'formats'"
diff --git a/srcpkgs/texlive-full/template b/srcpkgs/texlive-full/template
index d6e1c127e0c..249f34ffc48 100644
--- a/srcpkgs/texlive-full/template
+++ b/srcpkgs/texlive-full/template
@@ -2,7 +2,6 @@
 pkgname=texlive-full
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-most>=2020
  texlive-lang>=2020"
diff --git a/srcpkgs/texlive-games/template b/srcpkgs/texlive-games/template
index d5a8209c893..463ef3f8267 100644
--- a/srcpkgs/texlive-games/template
+++ b/srcpkgs/texlive-games/template
@@ -2,7 +2,6 @@
 pkgname=texlive-games
 version=2020.55271
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting board games"
diff --git a/srcpkgs/texlive-humanities/template b/srcpkgs/texlive-humanities/template
index e1b06eacfd4..9c08fa051d8 100644
--- a/srcpkgs/texlive-humanities/template
+++ b/srcpkgs/texlive-humanities/template
@@ -2,7 +2,6 @@
 pkgname=texlive-humanities
 version=2020.55389
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra texlive-pictures"
 short_desc="TeX Live - Packages for humanities, law, linguistics, etc"
diff --git a/srcpkgs/texlive-lang/template b/srcpkgs/texlive-lang/template
index 11469a71bf2..5a33e9cb289 100644
--- a/srcpkgs/texlive-lang/template
+++ b/srcpkgs/texlive-lang/template
@@ -2,7 +2,6 @@
 pkgname=texlive-lang
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-core>=2020.55416
  texlive-langchinese>=2020.55162
diff --git a/srcpkgs/texlive-langchinese/template b/srcpkgs/texlive-langchinese/template
index 4fa5ee940eb..81301b1aa92 100644
--- a/srcpkgs/texlive-langchinese/template
+++ b/srcpkgs/texlive-langchinese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langchinese
 version=2020.55162
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Chinese"
diff --git a/srcpkgs/texlive-langcyrillic/template b/srcpkgs/texlive-langcyrillic/template
index 80b953954c5..6e351e93600 100644
--- a/srcpkgs/texlive-langcyrillic/template
+++ b/srcpkgs/texlive-langcyrillic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langcyrillic
 version=2020.54594
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Cyrillic text"
diff --git a/srcpkgs/texlive-langextra/template b/srcpkgs/texlive-langextra/template
index ac20ff46333..2cfe79bdcb5 100644
--- a/srcpkgs/texlive-langextra/template
+++ b/srcpkgs/texlive-langextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langextra
 version=2020.55417
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra"
 short_desc="TeX Live - Packages for a bunch of extra languages"
diff --git a/srcpkgs/texlive-langgreek/template b/srcpkgs/texlive-langgreek/template
index fe279f6ea13..9c45215780f 100644
--- a/srcpkgs/texlive-langgreek/template
+++ b/srcpkgs/texlive-langgreek/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langgreek
 version=2020.54512
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Greek"
diff --git a/srcpkgs/texlive-langjapanese/template b/srcpkgs/texlive-langjapanese/template
index cd10461aea0..3beac842576 100644
--- a/srcpkgs/texlive-langjapanese/template
+++ b/srcpkgs/texlive-langjapanese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langjapanese
 version=2020.55320
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Japanese"
diff --git a/srcpkgs/texlive-langkorean/template b/srcpkgs/texlive-langkorean/template
index 281ac6c1864..cec6361c8f7 100644
--- a/srcpkgs/texlive-langkorean/template
+++ b/srcpkgs/texlive-langkorean/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langkorean
 version=2020.54519
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Korean"
diff --git a/srcpkgs/texlive-latexextra/template b/srcpkgs/texlive-latexextra/template
index 6e393f78f8d..d7b9bc0dd5c 100644
--- a/srcpkgs/texlive-latexextra/template
+++ b/srcpkgs/texlive-latexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-latexextra
 version=2020.55418
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="perl-File-Which python3-Pygments texlive-core texlive-pictures"
 short_desc="TeX Live - Collection of LaTeX addon packages"
diff --git a/srcpkgs/texlive-minimal/template b/srcpkgs/texlive-minimal/template
index c71ac097c6a..62dca76c0de 100644
--- a/srcpkgs/texlive-minimal/template
+++ b/srcpkgs/texlive-minimal/template
@@ -2,7 +2,6 @@
 pkgname=texlive-minimal
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-core>=2020.55416"
diff --git a/srcpkgs/texlive-most/template b/srcpkgs/texlive-most/template
index 408fe2f9de5..bc62b2a5667 100644
--- a/srcpkgs/texlive-most/template
+++ b/srcpkgs/texlive-most/template
@@ -2,7 +2,6 @@
 pkgname=texlive-most
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-music/template b/srcpkgs/texlive-music/template
index b8a2488a15d..b0f8c9f7546 100644
--- a/srcpkgs/texlive-music/template
+++ b/srcpkgs/texlive-music/template
@@ -2,7 +2,6 @@
 pkgname=texlive-music
 version=2020.54758
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="fontforge python3 texlive-core"
 short_desc="TeX Live - Music typesetting packages"
diff --git a/srcpkgs/texlive-pictures/template b/srcpkgs/texlive-pictures/template
index dee8054f190..24da6c2ea0a 100644
--- a/srcpkgs/texlive-pictures/template
+++ b/srcpkgs/texlive-pictures/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pictures
 version=2020.55342
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Packages for drawing graphics"
diff --git a/srcpkgs/texlive-pstricks/template b/srcpkgs/texlive-pstricks/template
index c76855241de..71103d1b1ee 100644
--- a/srcpkgs/texlive-pstricks/template
+++ b/srcpkgs/texlive-pstricks/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pstricks
 version=2020.55289
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional PSTricks packages"
diff --git a/srcpkgs/texlive-publishers/template b/srcpkgs/texlive-publishers/template
index 1e5f646ccf7..cd2e983a9ca 100644
--- a/srcpkgs/texlive-publishers/template
+++ b/srcpkgs/texlive-publishers/template
@@ -2,7 +2,6 @@
 pkgname=texlive-publishers
 version=2020.55415
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - Classes and packages for certain publishers"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-science/template b/srcpkgs/texlive-science/template
index 68f358537f7..093e2564709 100644
--- a/srcpkgs/texlive-science/template
+++ b/srcpkgs/texlive-science/template
@@ -2,7 +2,6 @@
 pkgname=texlive-science
 version=2020.55390
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting for mathematatics and science disciplines"
diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 708971811d3..5dc0263184b 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -2,7 +2,6 @@
 pkgname=thefuck
 version=3.29
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/thinkpad-scripts/template b/srcpkgs/thinkpad-scripts/template
index 855d42492fb..9d283afe28a 100644
--- a/srcpkgs/thinkpad-scripts/template
+++ b/srcpkgs/thinkpad-scripts/template
@@ -2,7 +2,6 @@
 pkgname=thinkpad-scripts
 version=4.12.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="tps"
 hostmakedepends="gettext python3-setuptools"
diff --git a/srcpkgs/tlp/template b/srcpkgs/tlp/template
index 5b2496afefe..b9ccfcb4614 100644
--- a/srcpkgs/tlp/template
+++ b/srcpkgs/tlp/template
@@ -2,7 +2,6 @@
 pkgname=tlp
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="TLP-${version}"
 depends="hdparm bash iw util-linux ethtool perl"
 short_desc="Advanced power management tool for Linux"
@@ -39,7 +38,6 @@ do_install() {
 
 tlp-rdw_package() {
 	short_desc="Control the radio device wizard"
-	archs=noarch
 	depends="tlp NetworkManager"
 	pkg_install() {
 		vmove usr/bin/tlp-rdw
diff --git a/srcpkgs/tmux-xpanes/template b/srcpkgs/tmux-xpanes/template
index b01bffc32c6..1499c4eca3a 100644
--- a/srcpkgs/tmux-xpanes/template
+++ b/srcpkgs/tmux-xpanes/template
@@ -2,7 +2,6 @@
 pkgname=tmux-xpanes
 version=4.1.2
 revision=1
-archs=noarch
 short_desc="Awesome way to create multiple tmux panes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="MIT"
diff --git a/srcpkgs/tmuxc/template b/srcpkgs/tmuxc/template
index 7eeffc8c64c..b18a9446d7f 100644
--- a/srcpkgs/tmuxc/template
+++ b/srcpkgs/tmuxc/template
@@ -2,7 +2,6 @@
 pkgname=tmuxc
 version=1.7.1
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Local and remote tmux window manager"
 maintainer="Zach Dykstra <dykstra.zachary@gmail.com>"
diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 676412b8d0b..8903b8ad3d6 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -2,7 +2,6 @@
 pkgname=todoman
 version=3.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="todoman"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index e3754e566d1..b614799e0ab 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -2,7 +2,6 @@
 pkgname=toot
 version=0.27.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-requests python3-setuptools python3-wcwidth
diff --git a/srcpkgs/tpm/template b/srcpkgs/tpm/template
index f3c68898e70..7e2ad566087 100644
--- a/srcpkgs/tpm/template
+++ b/srcpkgs/tpm/template
@@ -2,7 +2,6 @@
 pkgname=tpm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="gnupg2"
diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 32f4977ac46..967f7ffc3a6 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -2,7 +2,6 @@
 pkgname=trackma
 version=0.8.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-urwid python3-gobject"
diff --git a/srcpkgs/treeline/template b/srcpkgs/treeline/template
index f8830179127..d7ec815d9c9 100644
--- a/srcpkgs/treeline/template
+++ b/srcpkgs/treeline/template
@@ -2,7 +2,6 @@
 pkgname=treeline
 version=3.1.3
 revision=1
-archs=noarch
 wrksrc="TreeLine-${version}"
 pycompile_dirs="usr/share/treeline"
 hostmakedepends="python3"
diff --git a/srcpkgs/tremc/template b/srcpkgs/tremc/template
index 8bba9b83fd1..a47e023c000 100644
--- a/srcpkgs/tremc/template
+++ b/srcpkgs/tremc/template
@@ -2,7 +2,6 @@
 pkgname=tremc
 version=0.9.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3"
 short_desc="Console client for the BitTorrent client Transmission"
diff --git a/srcpkgs/trident-icons/template b/srcpkgs/trident-icons/template
index a446b5418f1..236c488866f 100644
--- a/srcpkgs/trident-icons/template
+++ b/srcpkgs/trident-icons/template
@@ -2,7 +2,6 @@
 pkgname=trident-icons
 version=2020.03.27
 revision=1
-archs=noarch
 short_desc="Icon themes from Project Trident"
 maintainer="Ken Moore <ken@project-trident.org>"
 license="MIT,GPL-3.0-only"
diff --git a/srcpkgs/triehash/template b/srcpkgs/triehash/template
index 0c7ea1ae50e..6de5e09ced8 100644
--- a/srcpkgs/triehash/template
+++ b/srcpkgs/triehash/template
@@ -2,7 +2,6 @@
 pkgname=triehash
 version=0.3
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Generator for order-preserving minimal perfect hash functions"
 maintainer="mobinmob <mobinmob@disroot.org>"
diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index cd18ec521b8..605e8ab747c 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -2,7 +2,6 @@
 pkgname=tryton
 version=5.4.2
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="tryton"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/ttf-bitstream-vera/template b/srcpkgs/ttf-bitstream-vera/template
index 5e97f056bd0..bcd09ea572b 100644
--- a/srcpkgs/ttf-bitstream-vera/template
+++ b/srcpkgs/ttf-bitstream-vera/template
@@ -2,7 +2,6 @@
 pkgname=ttf-bitstream-vera
 version=1.10
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="Bitstream Vera fonts"
 maintainer="human <human@neet.fi>"
diff --git a/srcpkgs/ttf-material-icons/template b/srcpkgs/ttf-material-icons/template
index 51a2409a66d..aa9610410ce 100644
--- a/srcpkgs/ttf-material-icons/template
+++ b/srcpkgs/ttf-material-icons/template
@@ -3,7 +3,6 @@ pkgname=ttf-material-icons
 version=3.0.1
 revision=2
 wrksrc=material-design-icons-${version}
-archs=noarch
 short_desc="Material Design icons by Google"
 maintainer="Michael Carlberg <c@rlberg.se>"
 license=CC
diff --git a/srcpkgs/ttf-ubuntu-font-family/template b/srcpkgs/ttf-ubuntu-font-family/template
index 75d5ac88c83..e5af168fe51 100644
--- a/srcpkgs/ttf-ubuntu-font-family/template
+++ b/srcpkgs/ttf-ubuntu-font-family/template
@@ -2,7 +2,6 @@
 pkgname=ttf-ubuntu-font-family
 version=0.83
 revision=2
-archs=noarch
 wrksrc="ubuntu-font-family-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 132d5a5cd3c..2340955960e 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -2,7 +2,6 @@
 pkgname=tuimoji
 version=1.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index 5d45f9f647c..edc2a9ca22b 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -2,7 +2,6 @@
 pkgname=tuir
 version=1.29.0
 revision=2
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 rtv_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc="Simple terminal viewer for Reddit (transitional dummy package)"
diff --git a/srcpkgs/turses/template b/srcpkgs/turses/template
index e5d2e11c97a..4fb893c86a7 100644
--- a/srcpkgs/turses/template
+++ b/srcpkgs/turses/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="https://pypi.org/project/turses/"
 distfiles="${PYPI_SITE}/t/turses/turses-${version}.tar.gz"
 checksum=46a61541d1acd1338561a198b3011081b91f118415c08b111444cdb24685b396
-archs=noarch
 
 pre_build() {
 	# The package isn't updated for a time and the dependencies have been updated
diff --git a/srcpkgs/tuxpaint-stamps/template b/srcpkgs/tuxpaint-stamps/template
index 2602dfbc666..ae5188f0d6c 100644
--- a/srcpkgs/tuxpaint-stamps/template
+++ b/srcpkgs/tuxpaint-stamps/template
@@ -2,7 +2,6 @@
 pkgname=tuxpaint-stamps
 version=2020.05.29
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_target="install-all"
 short_desc="Stamps set for tuxpaint"
diff --git a/srcpkgs/tuxpaint/template b/srcpkgs/tuxpaint/template
index 6613a1191f3..3ef250ee0e0 100644
--- a/srcpkgs/tuxpaint/template
+++ b/srcpkgs/tuxpaint/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 tuxpaint-data_package() {
-	archs=noarch
 	short_desc="${short_desc} - data and docs"
 	python_version=2
 	pkg_install() {
diff --git a/srcpkgs/tvbrowser/template b/srcpkgs/tvbrowser/template
index ebe21cc5a34..6f88a7f919b 100644
--- a/srcpkgs/tvbrowser/template
+++ b/srcpkgs/tvbrowser/template
@@ -2,7 +2,6 @@
 pkgname=tvbrowser
 version=4.2.1
 revision=1
-archs=noarch
 depends="java-runtime>=11 hicolor-icon-theme bash"
 short_desc="Ad free open source TV guide for more than 1000 channels"
 maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
diff --git a/srcpkgs/twaindsm/template b/srcpkgs/twaindsm/template
index 15292267fec..f9d5e082692 100644
--- a/srcpkgs/twaindsm/template
+++ b/srcpkgs/twaindsm/template
@@ -39,7 +39,6 @@ twaindsm-devel_package() {
 
 twaindsm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${pkgname}
 		mv ${wrksrc}/TWAIN_DSM/doc/html ${PKGDESTDIR}/usr/share/doc/${pkgname}
diff --git a/srcpkgs/twemoji/template b/srcpkgs/twemoji/template
index e0201e88a96..c6b9e888ff9 100644
--- a/srcpkgs/twemoji/template
+++ b/srcpkgs/twemoji/template
@@ -2,7 +2,6 @@
 pkgname=twemoji
 version=12.0.1
 revision=1
-archs=noarch
 wrksrc="TwitterColorEmoji-SVGinOT-Linux-${version}"
 depends="font-util"
 short_desc="Twitter emoji font set in color and b&w"
diff --git a/srcpkgs/txt2man/template b/srcpkgs/txt2man/template
index edb10e56599..c385f2411ea 100644
--- a/srcpkgs/txt2man/template
+++ b/srcpkgs/txt2man/template
@@ -2,7 +2,6 @@
 pkgname=txt2man
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc=${pkgname}-${pkgname}-${version}
 short_desc="Converts text to man page"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/tzdata/template b/srcpkgs/tzdata/template
index 74d2f335c61..2f68c5040b0 100644
--- a/srcpkgs/tzdata/template
+++ b/srcpkgs/tzdata/template
@@ -2,7 +2,6 @@
 pkgname=tzdata
 version=2020a
 revision=1
-archs=noarch
 wrksrc=tzdata
 create_wrksrc=yes
 hostmakedepends="tzutils"
diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 382a653d9d4..b5a025a8a4c 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -2,7 +2,6 @@
 pkgname=tzupdate
 version=2.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests"
diff --git a/srcpkgs/u-boot-menu/template b/srcpkgs/u-boot-menu/template
index f080279af82..d6524f0d859 100644
--- a/srcpkgs/u-boot-menu/template
+++ b/srcpkgs/u-boot-menu/template
@@ -2,7 +2,6 @@
 pkgname=u-boot-menu
 version=0.1
 revision=1
-archs=noarch
 conf_files="/etc/default/extlinux"
 short_desc="Create an u-boot menu with currently available kernels"
 maintainer="Remi Pommarel <repk@triplefau.lt>"
diff --git a/srcpkgs/uberwriter/template b/srcpkgs/uberwriter/template
index aa00c32f261..dd1d70f7564 100644
--- a/srcpkgs/uberwriter/template
+++ b/srcpkgs/uberwriter/template
@@ -6,7 +6,6 @@ _subversion=public1-beta
 wrksrc=uberwriter_bugfixes
 build_style=python2-module
 pycompile_module=$pkgname
-archs=noarch
 patch_args='-p1'
 hostmakedepends="python-distutils-extra intltool"
 depends="python-enchant python-gobject pandoc ttf-ubuntu-font-family"
diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 36515e7f3f7..98a5d43d727 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -2,7 +2,6 @@
 pkgname=udiskie
 version=2.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-gobject"
 depends="gtk+3 libnotify python3-docopt python3-gobject python3-keyutils
diff --git a/srcpkgs/ufetch/template b/srcpkgs/ufetch/template
index 1303de65884..c62d05690ba 100644
--- a/srcpkgs/ufetch/template
+++ b/srcpkgs/ufetch/template
@@ -2,7 +2,6 @@
 pkgname=ufetch
 version=0.2
 revision=1
-archs=noarch
 wrksrc="ufetch-v${version}"
 depends="xbps coreutils ncurses"
 short_desc="Tiny system info for Void"
diff --git a/srcpkgs/ufoai/template b/srcpkgs/ufoai/template
index 6463d2c47c6..e98c615766f 100644
--- a/srcpkgs/ufoai/template
+++ b/srcpkgs/ufoai/template
@@ -69,7 +69,6 @@ post_install() {
 
 ufoai-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/ufoai/base/*.pk3
 		vmove usr/share/ufoai/base/i18n
diff --git a/srcpkgs/ufw-extras/template b/srcpkgs/ufw-extras/template
index 0054a0ac19e..eba36a4314d 100644
--- a/srcpkgs/ufw-extras/template
+++ b/srcpkgs/ufw-extras/template
@@ -2,7 +2,6 @@
 pkgname=ufw-extras
 version=0.5
 revision=1
-archs=noarch
 depends="ufw"
 short_desc="Extra configuration files for Uncomplicated Firewall (ufw)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index 0bf2a3a0b76..b8d8bb58c80 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -2,7 +2,6 @@
 pkgname=ufw
 version=0.36
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="ufw"
 conf_files="
diff --git a/srcpkgs/uhd/template b/srcpkgs/uhd/template
index b0484732ea9..e6d1ea9cbb1 100644
--- a/srcpkgs/uhd/template
+++ b/srcpkgs/uhd/template
@@ -39,7 +39,6 @@ uhd-devel_package() {
 
 uhd-doc_package() {
 	short_desc+=" - doc files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/unicode-emoji/template b/srcpkgs/unicode-emoji/template
index bc674e3aa54..17d2be29376 100644
--- a/srcpkgs/unicode-emoji/template
+++ b/srcpkgs/unicode-emoji/template
@@ -2,7 +2,6 @@
 pkgname=unicode-emoji
 version=12.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Unicode Emoji Data Files"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index 6e81970800d..0a320f621e8 100644
--- a/srcpkgs/unknown-horizons/template
+++ b/srcpkgs/unknown-horizons/template
@@ -2,7 +2,6 @@
 pkgname=unknown-horizons
 version=2019.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"
 depends="python3 fifengine python3-yaml"
diff --git a/srcpkgs/unoconv/template b/srcpkgs/unoconv/template
index 1a6c2c913e9..2015cb36e57 100644
--- a/srcpkgs/unoconv/template
+++ b/srcpkgs/unoconv/template
@@ -2,7 +2,6 @@
 pkgname=unoconv
 version=0.9.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="asciidoc git"
 depends="python"
diff --git a/srcpkgs/unp/template b/srcpkgs/unp/template
index ba43e043502..eb2f0624d42 100644
--- a/srcpkgs/unp/template
+++ b/srcpkgs/unp/template
@@ -2,7 +2,6 @@
 pkgname=unp
 version="2.0~pre7+nmu1"
 revision=2
-archs=noarch
 hostmakedepends="gettext"
 makedepends="perl"
 depends="perl"
diff --git a/srcpkgs/urbanterror-data/template b/srcpkgs/urbanterror-data/template
index 987dca0e366..e0e08224843 100644
--- a/srcpkgs/urbanterror-data/template
+++ b/srcpkgs/urbanterror-data/template
@@ -2,7 +2,6 @@
 pkgname=urbanterror-data
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="UrbanTerror43"
 hostmakedepends="unzip"
 short_desc="Urbanterror data files"
diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index 2bb1688dad7..c13e6dafaba 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -2,7 +2,6 @@
 pkgname=urlscan
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index ee56c05689f..dc4a775cf9b 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -2,7 +2,6 @@
 pkgname=urlwatch
 version=2.17
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urxvt-perls/template b/srcpkgs/urxvt-perls/template
index 8a62a338283..7ee582152ed 100644
--- a/srcpkgs/urxvt-perls/template
+++ b/srcpkgs/urxvt-perls/template
@@ -2,7 +2,6 @@
 pkgname=urxvt-perls
 version=2.3
 revision=1
-archs=noarch
 depends="rxvt-unicode perl"
 short_desc="Perl extensions for the rxvt-unicode terminal emulator"
 maintainer="nem <nem@posteo.net>"
diff --git a/srcpkgs/usb-modeswitch-data/template b/srcpkgs/usb-modeswitch-data/template
index b23431f54f1..51b3c653b76 100644
--- a/srcpkgs/usb-modeswitch-data/template
+++ b/srcpkgs/usb-modeswitch-data/template
@@ -2,7 +2,6 @@
 pkgname=usb-modeswitch-data
 version=20191128
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="RULESDIR=/usr/lib/udev/rules.d"
 short_desc="Mode switching tool for controlling 'multi-mode' USB devices (data files)"
diff --git a/srcpkgs/vala-panel-appmenu/template b/srcpkgs/vala-panel-appmenu/template
index 0913a270047..83f9d0ed72e 100644
--- a/srcpkgs/vala-panel-appmenu/template
+++ b/srcpkgs/vala-panel-appmenu/template
@@ -86,7 +86,6 @@ mate-panel-appmenu_package() {
 
 vala-panel-appmenu-data_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/locale
 		vmove usr/share/glib-2.0/schemas/org.valapanel.appmenu.gschema.xml
diff --git a/srcpkgs/vala/template b/srcpkgs/vala/template
index e958825f196..25da83cf23d 100644
--- a/srcpkgs/vala/template
+++ b/srcpkgs/vala/template
@@ -46,7 +46,6 @@ vala-devel_package() {
 }
 
 vala-doc_package() {
-	archs=noarch
 	depends="vala-${version}_${revision}"
 	short_desc+=" - devhelp documentation"
 	pkg_install() {
diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index 651d1c87641..20a00f3549d 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -2,7 +2,6 @@
 pkgname=variety
 version=0.8.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"
 pycompile_dirs="usr/share/variety/plugins"
diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 708204afda2..dfc929efe9c 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -2,7 +2,6 @@
 pkgname=vdirsyncer
 version=0.16.7
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/vdrift/template b/srcpkgs/vdrift/template
index 290288696f6..900d01481d9 100644
--- a/srcpkgs/vdrift/template
+++ b/srcpkgs/vdrift/template
@@ -35,7 +35,6 @@ post_install() {
 
 vdrift-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/vdrift
 	}
diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 6ca85d4e766..54065817a84 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -2,7 +2,6 @@
 pkgname=vidcutter
 version=6.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/vigra/template b/srcpkgs/vigra/template
index 09ffcff4f2a..ac7a79db23e 100644
--- a/srcpkgs/vigra/template
+++ b/srcpkgs/vigra/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 vigra-doc_package() {
-	archs=noarch
 	depends="vigra>=${version}_${revision}"
 	short_desc+=" - documentation"
 	pkg_install() {
diff --git a/srcpkgs/vim-colorschemes/template b/srcpkgs/vim-colorschemes/template
index a018fc4d501..01683376b04 100644
--- a/srcpkgs/vim-colorschemes/template
+++ b/srcpkgs/vim-colorschemes/template
@@ -3,7 +3,6 @@ pkgname=vim-colorschemes
 version=20170822
 revision=1
 _commit=eab315701f4627967fd62582eefc4e37a3745786
-archs=noarch
 short_desc="Vim colorschemes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="GPL-3"
diff --git a/srcpkgs/vim-gnupg/template b/srcpkgs/vim-gnupg/template
index 9cb1d79f000..903af68738d 100644
--- a/srcpkgs/vim-gnupg/template
+++ b/srcpkgs/vim-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=vim-gnupg
 version=2.6.1
 revision=1
-archs=noarch
 depends="vim-common gnupg"
 short_desc="Plugin for transparent editing of gpg encrypted files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 4585d99624f..e0becffaea6 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -112,7 +112,6 @@ do_install() {
 vim-common_package() {
 	short_desc+=" - common files"
 	depends="xxd"
-	archs=noarch
 	alternatives="
 	 vi:ex:/usr/bin/vim
 	 vi:ex.1:/usr/share/man/man1/vim.1
diff --git a/srcpkgs/vips/template b/srcpkgs/vips/template
index 5639fbcb01f..cc50b2ac39f 100644
--- a/srcpkgs/vips/template
+++ b/srcpkgs/vips/template
@@ -69,7 +69,6 @@ libvips-devel_package() {
 }
 
 libvips-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/gtk-doc
diff --git a/srcpkgs/virt-manager/template b/srcpkgs/virt-manager/template
index db7734b6812..1920a937ab3 100644
--- a/srcpkgs/virt-manager/template
+++ b/srcpkgs/virt-manager/template
@@ -2,7 +2,6 @@
 pkgname=virt-manager
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-devel glib-devel gtk-update-icon-cache
  python3-gobject libosinfo libvirt-python3 libxml2-python3 python3-requests"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 virt-manager-tools_package() {
-	archs=noarch
 	short_desc="Programs to create and clone virtual machines"
 	depends="libosinfo python3-gobject libvirt-python3 python3-urllib3 libxml2-python3 python3-requests"
 	pycompile_dirs="/usr/share/${sourcepkg}"
diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index ebf37c59c6c..8a658600f70 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -2,7 +2,6 @@
 pkgname=virtme
 version=0.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="virtme"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/virtualbox-ose/template b/srcpkgs/virtualbox-ose/template
index f1184e6a6fc..ef5aed6c95e 100644
--- a/srcpkgs/virtualbox-ose/template
+++ b/srcpkgs/virtualbox-ose/template
@@ -121,7 +121,6 @@ virtualbox-ose-dkms_package() {
 	short_desc+=" - kernel module sources for dkms"
 	dkms_modules="virtualbox-ose ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
@@ -169,7 +168,6 @@ virtualbox-ose-guest-dkms_package() {
 	short_desc+=" - guest addition module source for dkms"
 	dkms_modules="virtualbox-ose-guest ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 55846f10531..af8e7bb15a9 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -2,7 +2,6 @@
 pkgname=virtualenvwrapper
 version=4.8.4
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"
 hostmakedepends="python3-setuptools python3-pbr"
diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index c5c3ae7c82e..9a57496edc3 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -2,7 +2,6 @@
 pkgname=visidata
 version=1.5.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="visidata"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/void-artwork/template b/srcpkgs/void-artwork/template
index ecfc2b9b5e6..dc9f08cc3cc 100644
--- a/srcpkgs/void-artwork/template
+++ b/srcpkgs/void-artwork/template
@@ -2,7 +2,6 @@
 pkgname=void-artwork
 version=20170517
 revision=2
-archs=noarch
 short_desc="Void Linux artwork"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-docs/template b/srcpkgs/void-docs/template
index 1e9845a8621..00601b87a54 100644
--- a/srcpkgs/void-docs/template
+++ b/srcpkgs/void-docs/template
@@ -2,7 +2,6 @@
 pkgname=void-docs
 version=2020.08.18
 revision=2
-archs=noarch
 hostmakedepends="mdBook fd pandoc texlive perl perl-JSON"
 short_desc="Documentation for Void Linux"
 maintainer="Érico Nogueira <ericonr@disroot.org>"
diff --git a/srcpkgs/void-release-keys/template b/srcpkgs/void-release-keys/template
index f9451a73b7b..f0c7a46f354 100644
--- a/srcpkgs/void-release-keys/template
+++ b/srcpkgs/void-release-keys/template
@@ -2,7 +2,6 @@
 pkgname=void-release-keys
 version=1
 revision=1
-archs=noarch
 short_desc="Void Linux Release Keys"
 maintainer="Void Release Engineering <releases@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-repo-nonfree/template b/srcpkgs/void-repo-nonfree/template
index 02410a5b72a..98706c49041 100644
--- a/srcpkgs/void-repo-nonfree/template
+++ b/srcpkgs/void-repo-nonfree/template
@@ -2,7 +2,6 @@
 pkgname=void-repo-nonfree
 version=9
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Void Linux drop-in file for the nonfree repository"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -34,7 +33,6 @@ do_install() {
 }
 
 void-repo-debug_package() {
-	archs=noarch
 	short_desc="${short_desc/nonfree/debug}"
 	pkg_install() {
 		vmove usr/share/xbps.d/20-repository-debug.conf
diff --git a/srcpkgs/void-updates/template b/srcpkgs/void-updates/template
index 97236f068c8..d90cbfb3ca5 100644
--- a/srcpkgs/void-updates/template
+++ b/srcpkgs/void-updates/template
@@ -2,7 +2,6 @@
 pkgname=void-updates
 version=20190330
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="git curl"
 short_desc="Void Linux package updates"
diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 3280a8ed5d0..420db91ddcb 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -2,7 +2,6 @@
 pkgname=volctl
 version=0.7.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject pulseaudio desktop-file-utils"
diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index 23731b3e01d..501df81b4fc 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -2,7 +2,6 @@
 pkgname=voltron
 version=0.1.7
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-blessed python3-Flask python3-Pygments python3-pysigset
diff --git a/srcpkgs/vpm/template b/srcpkgs/vpm/template
index a1b826c402f..daf0db65ffc 100644
--- a/srcpkgs/vpm/template
+++ b/srcpkgs/vpm/template
@@ -2,7 +2,6 @@
 pkgname=vpm
 version=1.3
 revision=1
-archs=noarch
 short_desc="XBPS package management helper for VoidLinux"
 maintainer="Armin Jenewein <github@m2m.pm>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/vpnc-scripts/template b/srcpkgs/vpnc-scripts/template
index 811bd9a3d95..dd58c857083 100644
--- a/srcpkgs/vpnc-scripts/template
+++ b/srcpkgs/vpnc-scripts/template
@@ -2,7 +2,6 @@
 pkgname=vpnc-scripts
 version=20190611
 revision=1
-archs=noarch
 short_desc="Network configuration scripts for VPNC and OpenConnect"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
diff --git a/srcpkgs/vpnd/template b/srcpkgs/vpnd/template
index fa4222ae372..9f062291564 100644
--- a/srcpkgs/vpnd/template
+++ b/srcpkgs/vpnd/template
@@ -2,7 +2,6 @@
 pkgname=vpnd
 version=0.1.3
 revision=1
-archs=noarch
 depends="bash"
 conf_files="/etc/vpnd.conf"
 short_desc="Package update notifier daemon for Void Linux"
diff --git a/srcpkgs/vsv/template b/srcpkgs/vsv/template
index 0144340eb46..230f5b52ff5 100644
--- a/srcpkgs/vsv/template
+++ b/srcpkgs/vsv/template
@@ -2,7 +2,6 @@
 pkgname=vsv
 version=1.3.4
 revision=1
-archs=noarch
 depends="bash coreutils psmisc"
 short_desc="Manage and view runit services"
 maintainer="Dave Eddy <dave@daveeddy.com>"
diff --git a/srcpkgs/warsow-data/template b/srcpkgs/warsow-data/template
index c9c80e71f84..01e9a2e71ef 100644
--- a/srcpkgs/warsow-data/template
+++ b/srcpkgs/warsow-data/template
@@ -2,7 +2,6 @@
 pkgname=warsow-data
 version=2.1
 revision=1
-archs=noarch
 wrksrc="warsow_${version/./}"
 short_desc="Free online multiplayer competitive FPS (data files)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/warzone2100/template b/srcpkgs/warzone2100/template
index cc425c6072a..7f0319dfcd8 100644
--- a/srcpkgs/warzone2100/template
+++ b/srcpkgs/warzone2100/template
@@ -19,7 +19,6 @@ checksum=ea2cd7f016118a89244ebef8ce9424f71c060bcd5895b791d3e1cec02b555b69
 nocross="fails to detect SDL2 when cross-compiling"
 
 warzone2100-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/wayland-protocols/template b/srcpkgs/wayland-protocols/template
index 353d3f3d7f7..160dae706f9 100644
--- a/srcpkgs/wayland-protocols/template
+++ b/srcpkgs/wayland-protocols/template
@@ -2,7 +2,6 @@
 pkgname=wayland-protocols
 version=1.20
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config wayland-devel automake"
 depends="libffi-devel"
diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index 5676d81988e..978b31053fb 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -2,7 +2,6 @@
 pkgname=weather
 version=2.4
 revision=1
-archs=noarch
 depends="python3"
 conf_files="/etc/weatherrc"
 short_desc="CLI utility for current (METAR) weather conditions and forecasts"
diff --git a/srcpkgs/wee-slack/template b/srcpkgs/wee-slack/template
index 95487cde249..9d083c4dc73 100644
--- a/srcpkgs/wee-slack/template
+++ b/srcpkgs/wee-slack/template
@@ -2,7 +2,6 @@
 pkgname=wee-slack
 version=2.6.0
 revision=1
-archs=noarch
 depends="weechat weechat-python python3-websocket-client"
 short_desc="WeeChat plugin for Slack.com"
 maintainer="Renato Aguiar <renato@renatoaguiar.net>"
diff --git a/srcpkgs/wesnoth/template b/srcpkgs/wesnoth/template
index 92921f571fe..39b4751be6f 100644
--- a/srcpkgs/wesnoth/template
+++ b/srcpkgs/wesnoth/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 wesnoth-data_package() {
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/wesnoth
 	}
diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index 3d086157137..33bd15c4dd9 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -2,7 +2,6 @@
 pkgname=wfuzz
 version=2.4.7
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-chardet python3-curl python3-future python3-lxml python3-parse
diff --git a/srcpkgs/wgetpaste/template b/srcpkgs/wgetpaste/template
index 94cb687eedc..56eed95485a 100644
--- a/srcpkgs/wgetpaste/template
+++ b/srcpkgs/wgetpaste/template
@@ -2,7 +2,6 @@
 pkgname=wgetpaste
 version=2.29
 revision=1
-archs=noarch
 depends="bash wget"
 short_desc="Script that automates pasting to a number of pastebin services"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/when/template b/srcpkgs/when/template
index eb7f52f0996..5da95abdee0 100644
--- a/srcpkgs/when/template
+++ b/srcpkgs/when/template
@@ -2,7 +2,6 @@
 pkgname=when
 version=1.1.39
 revision=1
-archs=noarch
 wrksrc=when_dist
 depends="perl"
 short_desc="Minimalistic personal calendar program"
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index fe0fe79d3c8..c32f08c91aa 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -2,7 +2,6 @@
 pkgname=wicd
 version=1.7.4
 revision=4
-archs=noarch
 pycompile_module="wicd"
 pycompile_dirs="usr/lib/wicd usr/share/wicd"
 hostmakedepends="python python-setuptools python-Babel"
@@ -43,7 +42,6 @@ do_install() {
 }
 
 wicd-gtk_package() {
-	archs=noarch
 	depends="wicd>=${version} pygtk python-notify shared-mime-info desktop-file-utils hicolor-icon-theme"
 	short_desc+=" - GTK UI"
 	pycompile_dirs="usr/share/wicd/gtk"
diff --git a/srcpkgs/widelands-maps/template b/srcpkgs/widelands-maps/template
index 5f856fd6089..f375a49f63d 100644
--- a/srcpkgs/widelands-maps/template
+++ b/srcpkgs/widelands-maps/template
@@ -8,7 +8,6 @@ license="GPL-2"
 homepage="http://wl.widelands.org/maps/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum=2029d8e72efedaa2f81f3b99d2d14f732964ac71bf5d563ae18321ace5ddf531
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/widelands
diff --git a/srcpkgs/widelands/template b/srcpkgs/widelands/template
index 061040d9ae4..d2c65c04fda 100644
--- a/srcpkgs/widelands/template
+++ b/srcpkgs/widelands/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 widelands-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/widelands
diff --git a/srcpkgs/wifi-firmware/template b/srcpkgs/wifi-firmware/template
index d48d21b3aec..c044014a7f0 100644
--- a/srcpkgs/wifi-firmware/template
+++ b/srcpkgs/wifi-firmware/template
@@ -2,7 +2,6 @@
 pkgname=wifi-firmware
 version=1.3
 revision=3
-archs=noarch
 build_style=meta
 depends="ipw2100-firmware ipw2200-firmware zd1211-firmware"
 short_desc="WiFi firmware meta-package"
diff --git a/srcpkgs/wifish/template b/srcpkgs/wifish/template
index 64252790947..b8c4067ddee 100644
--- a/srcpkgs/wifish/template
+++ b/srcpkgs/wifish/template
@@ -5,7 +5,6 @@ revision=1
 depends="wpa_supplicant gawk"
 short_desc="Simple wifi tool"
 maintainer="bougyman <bougyman@rubyists.com>"
-archs=noarch
 license="wtfpl"
 homepage="http://github.com/bougyman/wifish"
 distfiles="https://github.com/bougyman/wifish/archive/${version}.tar.gz"
diff --git a/srcpkgs/wine-gecko/template b/srcpkgs/wine-gecko/template
index 6216c6c8dff..fd0988a88c8 100644
--- a/srcpkgs/wine-gecko/template
+++ b/srcpkgs/wine-gecko/template
@@ -2,7 +2,6 @@
 pkgname=wine-gecko
 version=2.47.1
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mozilla Gecko Layout Engine for WINE (32bit)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine-mono/template b/srcpkgs/wine-mono/template
index 02072ab807b..e74c5ed0166 100644
--- a/srcpkgs/wine-mono/template
+++ b/srcpkgs/wine-mono/template
@@ -2,7 +2,6 @@
 pkgname=wine-mono
 version=5.1.0
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mono built for running .NET applications with WINE"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine/template b/srcpkgs/wine/template
index 7dbe6bcf9ef..3038037adcb 100644
--- a/srcpkgs/wine/template
+++ b/srcpkgs/wine/template
@@ -89,7 +89,6 @@ wine-devel_package() {
 }
 
 wine-common_package() {
-	archs="noarch"
 	short_desc+=" - common files"
 	binfmts="/usr/bin/wine --magic MZ"
 	pkg_install() {
diff --git a/srcpkgs/winetricks/template b/srcpkgs/winetricks/template
index 57358041ee6..a352cfb6092 100644
--- a/srcpkgs/winetricks/template
+++ b/srcpkgs/winetricks/template
@@ -2,7 +2,6 @@
 pkgname=winetricks
 version=20200412
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="cabextract unzip xmessage" # actually it depends on wine
 short_desc="Script to install various redistributable runtime libraries in Wine"
diff --git a/srcpkgs/wok/template b/srcpkgs/wok/template
index bd1b6278e8c..42beab7a00b 100644
--- a/srcpkgs/wok/template
+++ b/srcpkgs/wok/template
@@ -2,7 +2,6 @@
 pkgname=wok
 version=1.1.1
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="wok"
 hostmakedepends="python-devel python-setuptools"
diff --git a/srcpkgs/words-mnemonic/template b/srcpkgs/words-mnemonic/template
index 65fd6f5b177..41ac40b25e5 100644
--- a/srcpkgs/words-mnemonic/template
+++ b/srcpkgs/words-mnemonic/template
@@ -3,7 +3,6 @@ pkgname=words-mnemonic
 version=20150217
 revision=3
 build_style=fetch
-archs=noarch
 short_desc="Word list from the Mnemonic encoder project"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 # see https://github.com/singpolyma/mnemonicode/blob/master/mn_wordlist.c
diff --git a/srcpkgs/words-web2/template b/srcpkgs/words-web2/template
index 262f92db486..8865f605e81 100644
--- a/srcpkgs/words-web2/template
+++ b/srcpkgs/words-web2/template
@@ -13,7 +13,6 @@ distfiles="https://svnweb.freebsd.org/base/head/share/dict/README?revision=25790
 checksum="0bebe63be8ea1263c04c9ef40fbb1a88c242b0b53db32bd6c8d27ad5afffb183
  a80b7cac20dff2fd92e59bb58d2d581efa9b965756a8c8f03f754d3d98e92723
  9313e251fee3e56204db2b284346d61c3a80ce613d7a077c5674f15f9cb33ab3"
-archs=noarch
 
 do_install() {
 	vinstall web2 0644 /usr/share/dict
diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 4692074cd04..d63a74663f6 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -2,7 +2,6 @@
 pkgname=wpgtk
 version=6.1.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject python3-Pillow pywal libxslt"
diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 621e1c85428..8e5e71f1505 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -2,7 +2,6 @@
 pkgname=wpull
 version=2.0.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="wpull"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/wqy-microhei/template b/srcpkgs/wqy-microhei/template
index 77071b31ae5..9e517eb721a 100644
--- a/srcpkgs/wqy-microhei/template
+++ b/srcpkgs/wqy-microhei/template
@@ -2,7 +2,6 @@
 pkgname=wqy-microhei
 version=0.2.0.beta
 revision=2
-archs=noarch
 wrksrc=wqy-microhei
 depends="font-util"
 short_desc="A Sans-Serif style high quality CJK outline font"
diff --git a/srcpkgs/xapian-core/template b/srcpkgs/xapian-core/template
index 1b9cf9e8837..429bead39c0 100644
--- a/srcpkgs/xapian-core/template
+++ b/srcpkgs/xapian-core/template
@@ -31,7 +31,6 @@ xapian-core-devel_package() {
 }
 xapian-core-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/xbitmaps/template b/srcpkgs/xbitmaps/template
index 7cb547e43a1..9a0dcef9d50 100644
--- a/srcpkgs/xbitmaps/template
+++ b/srcpkgs/xbitmaps/template
@@ -2,7 +2,6 @@
 pkgname=xbitmaps
 version=1.1.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Common X11 bitmaps"
 license="MIT"
diff --git a/srcpkgs/xbps-triggers/template b/srcpkgs/xbps-triggers/template
index b28d198b1ce..a40698e1f8e 100644
--- a/srcpkgs/xbps-triggers/template
+++ b/srcpkgs/xbps-triggers/template
@@ -2,7 +2,6 @@
 pkgname=xbps-triggers
 version=0.116
 revision=1
-archs=noarch
 bootstrap=yes
 short_desc="XBPS triggers for Void Linux"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/xcb-proto/template b/srcpkgs/xcb-proto/template
index afc0d260a23..a3d18c56f59 100644
--- a/srcpkgs/xcb-proto/template
+++ b/srcpkgs/xcb-proto/template
@@ -2,7 +2,6 @@
 pkgname=xcb-proto
 version=1.14
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="libxml2"
diff --git a/srcpkgs/xcursor-themes/template b/srcpkgs/xcursor-themes/template
index 4c70ce9ef0e..2ff2cc9a9aa 100644
--- a/srcpkgs/xcursor-themes/template
+++ b/srcpkgs/xcursor-themes/template
@@ -2,7 +2,6 @@
 pkgname=xcursor-themes
 version=1.0.6
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config xcursorgen xorg-util-macros"
 makedepends="libXcursor-devel libXrender-devel"
diff --git a/srcpkgs/xcursor-vanilla-dmz/template b/srcpkgs/xcursor-vanilla-dmz/template
index 30f2bf17cd6..8c6ebd634a7 100644
--- a/srcpkgs/xcursor-vanilla-dmz/template
+++ b/srcpkgs/xcursor-vanilla-dmz/template
@@ -3,7 +3,6 @@ pkgname=xcursor-vanilla-dmz
 version=0.4.5
 revision=1
 wrksrc="dmz-cursor-theme-${version}"
-archs=noarch
 hostmakedepends="xcursorgen"
 short_desc="Vanilla DMZ cursor theme (White)"
 maintainer="Jerry Tegno <jerrytegno@gmail.com>"
diff --git a/srcpkgs/xdg-utils/template b/srcpkgs/xdg-utils/template
index 9a235ca2f69..164dbf476d4 100644
--- a/srcpkgs/xdg-utils/template
+++ b/srcpkgs/xdg-utils/template
@@ -2,7 +2,6 @@
 pkgname=xdg-utils
 version=1.1.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="xmlto lynx"
 short_desc="Tools to assist applications with various desktop integration tasks"
diff --git a/srcpkgs/xdgmenumaker/template b/srcpkgs/xdgmenumaker/template
index c9ee447c743..7a28d5f39eb 100644
--- a/srcpkgs/xdgmenumaker/template
+++ b/srcpkgs/xdgmenumaker/template
@@ -2,7 +2,6 @@
 pkgname=xdgmenumaker
 version=1.5
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-xdg python3-gobject gobject-introspection python3-Pillow"
 short_desc="Automatic menu generator for WMs, such as, fluxbox, icewm, jwm, pekwm"
diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 85b33af2222..b5c76c4af46 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -2,7 +2,6 @@
 pkgname=xdot
 version=1.1
 revision=3
-archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module
 pycompile_module="xdot"
diff --git a/srcpkgs/xed/template b/srcpkgs/xed/template
index 9754a340873..8c42a2d9d21 100644
--- a/srcpkgs/xed/template
+++ b/srcpkgs/xed/template
@@ -2,7 +2,6 @@
 pkgname=xed
 version=0.9.1
 revision=1
-archs=noarch
 depends="tk"
 short_desc="The standard text editor, for X11"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/xerces-c/template b/srcpkgs/xerces-c/template
index 100094350f7..c0353e3ee22 100644
--- a/srcpkgs/xerces-c/template
+++ b/srcpkgs/xerces-c/template
@@ -43,7 +43,6 @@ libxerces-c-devel_package() {
 
 xerces-c-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vdoc "CREDITS"
 		vcopy "${wrksrc}/doc"           "/usr/share/doc/${pkgname}"
diff --git a/srcpkgs/xfwm4-themes/template b/srcpkgs/xfwm4-themes/template
index bdfeb031906..3308a5ee525 100644
--- a/srcpkgs/xfwm4-themes/template
+++ b/srcpkgs/xfwm4-themes/template
@@ -2,7 +2,6 @@
 pkgname=xfwm4-themes
 version=4.10.0
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="Themes for the XFCE window manager"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/xkb-qwerty-fr/template b/srcpkgs/xkb-qwerty-fr/template
index 8cd62b9ecdf..5be0f9487ec 100644
--- a/srcpkgs/xkb-qwerty-fr/template
+++ b/srcpkgs/xkb-qwerty-fr/template
@@ -2,7 +2,6 @@
 pkgname=xkb-qwerty-fr
 version=0.5
 revision=1
-archs=noarch
 short_desc="French qwerty X11 keymap"
 maintainer="Franklin Delehelle <franklin.delehelle@odena.eu>"
 license="GPL-2"
diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 37fb6872079..5e6e998f14e 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -2,7 +2,6 @@
 pkgname=xkcdpass
 version=1.17.3
 revision=2
-archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module
 pycompile_module="xkcdpass"
diff --git a/srcpkgs/xkeyboard-config/template b/srcpkgs/xkeyboard-config/template
index afee6371174..0329d0d17c8 100644
--- a/srcpkgs/xkeyboard-config/template
+++ b/srcpkgs/xkeyboard-config/template
@@ -2,7 +2,6 @@
 pkgname=xkeyboard-config
 version=2.30
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-xkb-rules-symlink=xfree86,xorg --enable-compat-rules"
 hostmakedepends="pkg-config libxslt intltool python3"
diff --git a/srcpkgs/xmltoman/template b/srcpkgs/xmltoman/template
index 2f74978bea7..a1d3a628a61 100644
--- a/srcpkgs/xmltoman/template
+++ b/srcpkgs/xmltoman/template
@@ -11,4 +11,3 @@ license="GPL-3"
 homepage="https://sourceforge.net/projects/xmltoman"
 distfiles="https://github.com/Distrotech/xmltoman/archive/${version}.tar.gz"
 checksum=2ab86b74fe364a866d84c14b20cbd42a09fa85c629deeff52376bbf890854feb
-archs=noarch
diff --git a/srcpkgs/xmoto/template b/srcpkgs/xmoto/template
index ae400bdce0a..3c3bde96533 100644
--- a/srcpkgs/xmoto/template
+++ b/srcpkgs/xmoto/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 xmoto-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/xmoto
diff --git a/srcpkgs/xonotic-data-low/template b/srcpkgs/xonotic-data-low/template
index ffca0a897af..253b8c407dd 100644
--- a/srcpkgs/xonotic-data-low/template
+++ b/srcpkgs/xonotic-data-low/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data-low
 version=0.8.2
 revision=1
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="A free, fast-paced crossplatform FPS (Lower Quality data files)"
diff --git a/srcpkgs/xonotic-data/template b/srcpkgs/xonotic-data/template
index f274258d867..c604fcd5af0 100644
--- a/srcpkgs/xonotic-data/template
+++ b/srcpkgs/xonotic-data/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="Free, fast-paced crossplatform first-person shooter (data files)"
diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 28576175bb7..b1b7bf8ea8c 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -2,7 +2,6 @@
 pkgname=xonsh
 version=0.9.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 short_desc="Python-powered, cross-platform, Unix-gazing shell"
diff --git a/srcpkgs/xorg-cf-files/template b/srcpkgs/xorg-cf-files/template
index bdc733ade0a..e1b05da5fcd 100644
--- a/srcpkgs/xorg-cf-files/template
+++ b/srcpkgs/xorg-cf-files/template
@@ -2,7 +2,6 @@
 pkgname=xorg-cf-files
 version=1.0.6
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config automake xorg-util-macros font-util"
 short_desc="X.Org imake program and related utilities"
diff --git a/srcpkgs/xorg-util-macros/template b/srcpkgs/xorg-util-macros/template
index aa98fafc833..987949ce97d 100644
--- a/srcpkgs/xorg-util-macros/template
+++ b/srcpkgs/xorg-util-macros/template
@@ -3,7 +3,6 @@ pkgname=xorg-util-macros
 version=1.19.2
 revision=1
 wrksrc="${pkgname/xorg-/}-${version}"
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="X.org autotool macros"
diff --git a/srcpkgs/xtools/template b/srcpkgs/xtools/template
index d1b5e0fe4f2..82a4e91cacc 100644
--- a/srcpkgs/xtools/template
+++ b/srcpkgs/xtools/template
@@ -2,7 +2,6 @@
 pkgname=xtools
 version=0.61
 revision=1
-archs="noarch"
 build_style=gnu-makefile
 depends="bash curl findutils git make spdx-licenses-list xbps"
 short_desc="Opinionated helpers for working with XBPS"
diff --git a/srcpkgs/xtrans/template b/srcpkgs/xtrans/template
index 77dbb83a9f6..c21c51b6bbc 100644
--- a/srcpkgs/xtrans/template
+++ b/srcpkgs/xtrans/template
@@ -2,7 +2,6 @@
 pkgname=xtrans
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="Network API translation layer to insulate X"
diff --git a/srcpkgs/xye/template b/srcpkgs/xye/template
index 11094ab555b..d58f407d888 100644
--- a/srcpkgs/xye/template
+++ b/srcpkgs/xye/template
@@ -23,7 +23,6 @@ post_install() {
 
 xye-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/xye
 	}
diff --git a/srcpkgs/yadm/template b/srcpkgs/yadm/template
index 7b5ebbbc028..4db6f2e0035 100644
--- a/srcpkgs/yadm/template
+++ b/srcpkgs/yadm/template
@@ -2,7 +2,6 @@
 pkgname=yadm
 version=2.5.0
 revision=1
-archs=noarch
 depends="bash git gnupg"
 short_desc="Yet Another Dotfiles Manager"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/yaru-plus/template b/srcpkgs/yaru-plus/template
index 72c63ec663b..cf3ca7997c2 100644
--- a/srcpkgs/yaru-plus/template
+++ b/srcpkgs/yaru-plus/template
@@ -2,7 +2,6 @@
 pkgname=yaru-plus
 version=3.0
 revision=1
-archs=noarch
 short_desc="Elegant Canonical's Yaru-based third-party icons theme"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/yaru/template b/srcpkgs/yaru/template
index 6d00563b8a6..b084a1e6af5 100644
--- a/srcpkgs/yaru/template
+++ b/srcpkgs/yaru/template
@@ -2,7 +2,6 @@
 pkgname=yaru
 version=20.10.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="glib-devel sassc pkg-config"
 makedepends="gtk+3-devel libglib-devel"
diff --git a/srcpkgs/yelp-tools/template b/srcpkgs/yelp-tools/template
index 9e8a670e6b0..1403206a26a 100644
--- a/srcpkgs/yelp-tools/template
+++ b/srcpkgs/yelp-tools/template
@@ -2,7 +2,6 @@
 pkgname=yelp-tools
 version=3.32.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config itstool libxslt"
 makedepends="yelp-xsl"
diff --git a/srcpkgs/yelp-xsl/template b/srcpkgs/yelp-xsl/template
index f74a7fba67c..152f3f364ae 100644
--- a/srcpkgs/yelp-xsl/template
+++ b/srcpkgs/yelp-xsl/template
@@ -2,7 +2,6 @@
 pkgname=yelp-xsl
 version=3.36.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/you-get/template b/srcpkgs/you-get/template
index b0bf348d351..ac69df8355b 100644
--- a/srcpkgs/you-get/template
+++ b/srcpkgs/you-get/template
@@ -2,7 +2,6 @@
 pkgname=you-get
 version=0.4.1456
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pysocks python3-setuptools"
diff --git a/srcpkgs/youtube-dl/template b/srcpkgs/youtube-dl/template
index 8e35e276ee9..a274d72d5bc 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -2,7 +2,6 @@
 pkgname=youtube-dl
 version=2020.07.28
 revision=1
-archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/youtube-viewer/template b/srcpkgs/youtube-viewer/template
index c05d02ffa15..66eb9b9b46e 100644
--- a/srcpkgs/youtube-viewer/template
+++ b/srcpkgs/youtube-viewer/template
@@ -2,7 +2,6 @@
 pkgname=youtube-viewer
 version=3.7.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index c6bcf76d96f..07a4dc4dc98 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -2,7 +2,6 @@
 pkgname=yq
 version=2.10.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-yaml"
diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index bef3366f910..846f47d53f4 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -2,7 +2,6 @@
 pkgname=ytcc
 version=1.8.2
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-SQLAlchemy python3-feedparser python3-lxml python3-youtube-dl
diff --git a/srcpkgs/ytmdl/template b/srcpkgs/ytmdl/template
index 7952b5662cd..132d5d63c9a 100644
--- a/srcpkgs/ytmdl/template
+++ b/srcpkgs/ytmdl/template
@@ -2,7 +2,6 @@
 pkgname=ytmdl
 version=2020.07.26
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="ffmpeg youtube-dl python3-mutagen python3-requests python3-colorama
diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index bc9e6e418c2..3354bb9b407 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -2,7 +2,6 @@
 pkgname=yturl
 version=2.0.2
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools texinfo"
 depends="python3-setuptools python3-requests python3-six"
diff --git a/srcpkgs/yubikey-manager/template b/srcpkgs/yubikey-manager/template
index 75886e00e81..04184e8a4c6 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -2,7 +2,6 @@
 pkgname=yubikey-manager
 version=3.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="libu2f-host python3-fido2 python3-openssl python3-usb python3-pyscard
diff --git a/srcpkgs/zabbix/template b/srcpkgs/zabbix/template
index ec9f7e7b298..b923a819714 100644
--- a/srcpkgs/zabbix/template
+++ b/srcpkgs/zabbix/template
@@ -95,7 +95,6 @@ zabbix-proxy_package() {
 }
 
 zabbix-frontend-php_package() {
-	archs=noarch
 	depends="zabbix php-gd php-mysql"
 	short_desc="Zabbix Networking Monitoring PHP Frontend"
 	pkg_install() {
diff --git a/srcpkgs/zd1211-firmware/template b/srcpkgs/zd1211-firmware/template
index d53a71b7fde..4cd21ae7995 100644
--- a/srcpkgs/zd1211-firmware/template
+++ b/srcpkgs/zd1211-firmware/template
@@ -2,7 +2,6 @@
 pkgname=zd1211-firmware
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Firmware for the Zydas 1211 wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zeek/template b/srcpkgs/zeek/template
index 825e56e0fe4..644c3412f0c 100644
--- a/srcpkgs/zeek/template
+++ b/srcpkgs/zeek/template
@@ -65,7 +65,6 @@ zeek-devel_package() {
 }
 
 bro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
@@ -74,13 +73,11 @@ bro_package() {
 binpac_package() {
 	short_desc+=" - protocol parser compiler (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 }
 
 binpac-devel_package() {
 	short_desc+=" - protocol parser compiler library (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}-devel>=${version}_${revision}"
 }
diff --git a/srcpkgs/zeroinstall/template b/srcpkgs/zeroinstall/template
index 3022800b9e2..f46dfcb0362 100644
--- a/srcpkgs/zeroinstall/template
+++ b/srcpkgs/zeroinstall/template
@@ -30,7 +30,6 @@ pre_build() {
 
 zeroinstall-injector_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="zeroinstall-${version}_${revision}"
 }
diff --git a/srcpkgs/zfs-auto-snapshot/template b/srcpkgs/zfs-auto-snapshot/template
index 113dfd3c30b..0a9d0ea7aeb 100644
--- a/srcpkgs/zfs-auto-snapshot/template
+++ b/srcpkgs/zfs-auto-snapshot/template
@@ -2,7 +2,6 @@
 pkgname=zfs-auto-snapshot
 version=1.2.4
 revision=2
-archs=noarch
 wrksrc="${pkgname}-upstream-${version}"
 build_style=gnu-makefile
 short_desc="ZFS automatic snapshot service"
diff --git a/srcpkgs/zfs-prune-snapshots/template b/srcpkgs/zfs-prune-snapshots/template
index 431c2b71db7..5eaba5c26b3 100644
--- a/srcpkgs/zfs-prune-snapshots/template
+++ b/srcpkgs/zfs-prune-snapshots/template
@@ -2,7 +2,6 @@
 pkgname=zfs-prune-snapshots
 version=1.1.0
 revision=2
-archs="noarch"
 build_style=gnu-makefile
 hostmakedepends="make"
 depends="bash zfs"
diff --git a/srcpkgs/zfsbootmenu/template b/srcpkgs/zfsbootmenu/template
index 88c2543394b..68387f60c3b 100644
--- a/srcpkgs/zfsbootmenu/template
+++ b/srcpkgs/zfsbootmenu/template
@@ -2,7 +2,6 @@
 pkgname=zfsbootmenu
 version=1.4.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/zfsbootmenu/config.yaml"
 depends="dracut zfs fzf kexec-tools bash pigz mbuffer
diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 993198a9f63..def5a357e83 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -2,7 +2,6 @@
 pkgname=zim
 version=0.73.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-gobject python3-xdg gtk+3"
 depends="python3-gobject python3-xdg gtk+3 desktop-file-utils"
diff --git a/srcpkgs/zola/template b/srcpkgs/zola/template
index 23ba73020a2..0e6d2337a88 100644
--- a/srcpkgs/zola/template
+++ b/srcpkgs/zola/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 gutenberg_package() {
-	archs=noarch
 	depends="zola-${version}_${revision}"
 	short_desc="Transition package for Zola"
 	pkg_install() {
diff --git a/srcpkgs/zookeeper/template b/srcpkgs/zookeeper/template
index fc972d0ab4a..e5ab729f23e 100644
--- a/srcpkgs/zookeeper/template
+++ b/srcpkgs/zookeeper/template
@@ -2,7 +2,6 @@
 pkgname=zookeeper
 version=3.4.13
 revision=1
-archs=noarch
 depends="virtual?java-runtime"
 short_desc="Distributed hierarchical key-value store"
 maintainer="Mickael Fortunato <morsi.morsicus@gmail.com>"
diff --git a/srcpkgs/zramen/template b/srcpkgs/zramen/template
index 8245a3b7c25..1e446d7dfdb 100644
--- a/srcpkgs/zramen/template
+++ b/srcpkgs/zramen/template
@@ -2,7 +2,6 @@
 pkgname=zramen
 version=0.2.1
 revision=1
-archs=noarch
 depends="virtual?awk bash bc coreutils grep kmod util-linux"
 short_desc="Manage zram swap space"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/zsh-autosuggestions/template b/srcpkgs/zsh-autosuggestions/template
index 5e5b225037c..bccaa490981 100644
--- a/srcpkgs/zsh-autosuggestions/template
+++ b/srcpkgs/zsh-autosuggestions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-autosuggestions
 version=0.6.4
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like autosuggestions for zsh"
 maintainer="vinnyA3 <vincent.aceto@gmail.com>"
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index 2256bf9a127..8bc854c48f9 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-completions
 version=0.32.0
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Additional completions for Zsh"
 maintainer="Alexander Gehrke <void@qwertyuiop.de>"
diff --git a/srcpkgs/zsh-history-substring-search/template b/srcpkgs/zsh-history-substring-search/template
index 151f412cee2..dc84a8e5192 100644
--- a/srcpkgs/zsh-history-substring-search/template
+++ b/srcpkgs/zsh-history-substring-search/template
@@ -2,7 +2,6 @@
 pkgname=zsh-history-substring-search
 version=1.0.2
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like history search feature for zsh"
 maintainer="Young-Jin Park <youngjinpark20@gmail.com>"
diff --git a/srcpkgs/zsh-syntax-highlighting/template b/srcpkgs/zsh-syntax-highlighting/template
index 66b89fedfc8..0e8aabcdf37 100644
--- a/srcpkgs/zsh-syntax-highlighting/template
+++ b/srcpkgs/zsh-syntax-highlighting/template
@@ -2,7 +2,6 @@
 pkgname=zsh-syntax-highlighting
 version=0.7.1
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish shell like syntax highlighting for Zsh"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zynaddsubfx/template b/srcpkgs/zynaddsubfx/template
index 2361d8bd548..26b769db868 100644
--- a/srcpkgs/zynaddsubfx/template
+++ b/srcpkgs/zynaddsubfx/template
@@ -57,7 +57,6 @@ post_install() {
 }
 zynaddsubfx-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/${sourcepkg}
 	}
diff --git a/srcpkgs/zzz-user-hooks/template b/srcpkgs/zzz-user-hooks/template
index 7301509092f..8d9404e48ec 100644
--- a/srcpkgs/zzz-user-hooks/template
+++ b/srcpkgs/zzz-user-hooks/template
@@ -2,7 +2,6 @@
 pkgname=zzz-user-hooks
 version=1.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 checkdepends="shellcheck"

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR PATCH] [Updated] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (34 preceding siblings ...)
  2020-08-21 22:29 ` [PR PATCH] [Updated] " fosslinux
@ 2020-08-21 22:29 ` fosslinux
  2020-08-24 23:49 ` fosslinux
                   ` (51 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-21 22:29 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

There is an updated pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages noarch
https://github.com/void-linux/void-packages/pull/24357

[wip] common: disable creation of noarch packages.
This change disables the creation of noarch packages.

I believe that most package maintainers are of the same opinion that noarch causes far more problems than it solves. For some time on IRC there has been continued discussion about disabling it. This is what this PR attempts to achieve.

This still supports `archs=noarch` but IMO this is misleading if it dosen't actually create a package with the noarch arch. This is why I have made `archs=noarch` just mean `noarch=yes`. This is how I think all future packages should declare noarch: `noarch=yes`. I also considered `data_only=yes` or `arch_independent=yes` but I don't really like either of those.

The reason noarch even still exists is because it is a useful shorthand for `nodebug=yes`, `nostrip=yes`, etc etc.

The removed 32-bit block about noarch is useless because noarch already forces `noshlibprovides`.

NB: Right now, this is a MVP and still needs some more work.

Pinging @q66 @the-maldridge 

A patch file from https://github.com/void-linux/void-packages/pull/24357.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-noarch-24357.patch --]
[-- Type: text/x-diff, Size: 1071669 bytes --]

From ae29e30773e214f379cd01938200a9c5526212ee Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Wed, 19 Aug 2020 16:44:41 +1000
Subject: [PATCH 1/2] common: disable creation of noarch packages.

---
 common/hooks/do-pkg/00-gen-pkg.sh                    |  6 ++----
 common/hooks/post-install/06-strip-and-debug-pkgs.sh |  2 +-
 common/hooks/post-pkg/00-register-pkg.sh             |  6 ++----
 common/hooks/pre-pkg/04-generate-runtime-deps.sh     |  2 +-
 common/hooks/pre-pkg/05-prepare-32bit.sh             | 11 -----------
 common/hooks/pre-pkg/06-shlib-provides.sh            |  2 +-
 common/xbps-src/shutils/common.sh                    |  8 +-------
 common/xbps-src/shutils/pkgtarget.sh                 |  2 +-
 8 files changed, 9 insertions(+), 30 deletions(-)

diff --git a/common/hooks/do-pkg/00-gen-pkg.sh b/common/hooks/do-pkg/00-gen-pkg.sh
index b809a6dc5eb..f0b70c8eebb 100644
--- a/common/hooks/do-pkg/00-gen-pkg.sh
+++ b/common/hooks/do-pkg/00-gen-pkg.sh
@@ -104,14 +104,12 @@ hook() {
 	local arch= binpkg= repo= _pkgver= _desc= _pkgn= _pkgv= _provides= \
 		_replaces= _reverts= f= found_dbg_subpkg=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 
diff --git a/common/hooks/post-install/06-strip-and-debug-pkgs.sh b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
index 44d8a51fe93..b59dde5ab3c 100644
--- a/common/hooks/post-install/06-strip-and-debug-pkgs.sh
+++ b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
@@ -59,7 +59,7 @@ create_debug_pkg() {
 hook() {
 	local fname= x= f= _soname= STRIPCMD=
 
-	if [ -n "$nostrip" -o "${archs// /}" = "noarch" ]; then
+	if [ -n "$nostrip" ]; then
 		return 0
 	fi
 
diff --git a/common/hooks/post-pkg/00-register-pkg.sh b/common/hooks/post-pkg/00-register-pkg.sh
index 5dc28c999c9..ce641cfc850 100644
--- a/common/hooks/post-pkg/00-register-pkg.sh
+++ b/common/hooks/post-pkg/00-register-pkg.sh
@@ -13,14 +13,12 @@ registerpkg() {
 hook() {
 	local arch= binpkg= pkgdir=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 	if [ -n "$repository" ]; then
diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
index 6e45b7dd3c3..8ffd3a71d8e 100644
--- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh
+++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
@@ -56,7 +56,7 @@ hook() {
 
     mapshlibs=$XBPS_COMMONDIR/shlibs
 
-    if [ "${archs// /}" = "noarch" -o -n "$noverifyrdeps" ]; then
+    if [ -n "$noverifyrdeps" ]; then
         store_pkgdestdir_rundeps
         return 0
     fi
diff --git a/common/hooks/pre-pkg/05-prepare-32bit.sh b/common/hooks/pre-pkg/05-prepare-32bit.sh
index fd6fdf88217..f3612959cb5 100644
--- a/common/hooks/pre-pkg/05-prepare-32bit.sh
+++ b/common/hooks/pre-pkg/05-prepare-32bit.sh
@@ -20,10 +20,6 @@ hook() {
 	if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
 		return
 	fi 
-	# Ignore noarch pkgs.
-	if [ "${archs// /}" = "noarch" ]; then
-		return
-	fi
 	if [ -z "$lib32mode" ]; then
 		# Library mode, copy only relevant files to new destdir.
 		#
@@ -106,13 +102,6 @@ hook() {
 				printf "${pkgn}-32bit${pkgv} " >> ${destdir32}/rdeps
 				continue
 			fi
-			# If dependency is noarch do not change it to 32bit.
-			_arch=$($XBPS_QUERY_CMD -R --property=architecture "$f")
-			if [ "${_arch}" = "noarch" ]; then
-				echo "   RDEP: $f -> ${pkgn}${pkgv} (noarch)"
-				printf "${pkgn}${pkgv} " >> ${destdir32}/rdeps
-				continue
-			fi
 			# If dependency does not have "shlib-provides" do not
 			# change it to 32bit.
 			for x in ${subpackages}; do
diff --git a/common/hooks/pre-pkg/06-shlib-provides.sh b/common/hooks/pre-pkg/06-shlib-provides.sh
index cdc94de3bc9..08e3c42b302 100644
--- a/common/hooks/pre-pkg/06-shlib-provides.sh
+++ b/common/hooks/pre-pkg/06-shlib-provides.sh
@@ -45,7 +45,7 @@ collect_sonames() {
 hook() {
 	local _destdir32=${XBPS_DESTDIR}/${pkgname}-32bit-${version}
 
-	if [ -z "$shlib_provides" -a "${archs// /}" = "noarch" -o -n "$noshlibprovides" ]; then
+	if [ -z "$shlib_provides" -o -n "$noshlibprovides" ]; then
 		return 0
 	fi
 
diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh
index e8bcf577c6b..1564a174bf2 100644
--- a/common/xbps-src/shutils/common.sh
+++ b/common/xbps-src/shutils/common.sh
@@ -395,7 +395,6 @@ setup_pkg() {
         source_file ${XBPS_SRCPKGDIR}/${basepkg}/template
     fi
 
-
     # Check if required vars weren't set.
     _vars="pkgname version short_desc revision homepage license"
     for f in ${_vars}; do
@@ -457,12 +456,7 @@ setup_pkg() {
     fi
     makejobs="-j$XBPS_MAKEJOBS"
 
-    # strip whitespaces to make "  noarch  " valid too.
-    if [ "${archs// /}" = "noarch" ]; then
-        arch="noarch"
-    else
-        arch="$XBPS_TARGET_MACHINE"
-    fi
+    arch="$XBPS_TARGET_MACHINE"
     if [ -n "$XBPS_BINPKG_EXISTS" ]; then
         local _binpkgver="$($XBPS_QUERY_XCMD -R -ppkgver $pkgver 2>/dev/null)"
         if [ "$_binpkgver" = "$pkgver" ]; then
diff --git a/common/xbps-src/shutils/pkgtarget.sh b/common/xbps-src/shutils/pkgtarget.sh
index 090ec5c1a3e..fa70816fe24 100644
--- a/common/xbps-src/shutils/pkgtarget.sh
+++ b/common/xbps-src/shutils/pkgtarget.sh
@@ -3,7 +3,7 @@
 check_pkg_arch() {
     local cross="$1" _arch f match nonegation
 
-    if [ -n "$archs" -a "${archs// /}" != "noarch" ]; then
+    if [ -n "$archs" ]; then
         if [ -n "$cross" ]; then
             _arch="$XBPS_TARGET_MACHINE"
         elif [ -n "$XBPS_ARCH" ]; then

From e09f102db31aab8924628baf37f0ef5d6503ae0f Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Sat, 22 Aug 2020 08:29:05 +1000
Subject: [PATCH 2/2] srcpkgs: remove archs=noarch.

[ci skip]
---
 srcpkgs/0ad-data/template                     |   1 -
 srcpkgs/66/template                           |   1 -
 srcpkgs/7kaa/template                         |   1 -
 srcpkgs/Adapta/template                       |   1 -
 srcpkgs/Autodia/template                      |   1 -
 srcpkgs/CImg/template                         |   1 -
 srcpkgs/Cataclysm-DDA/template                |   2 -
 srcpkgs/Cendric/template                      |   1 -
 srcpkgs/ClusterSSH/template                   |   1 -
 srcpkgs/ETL/template                          |   1 -
 srcpkgs/Electron-Cash/template                |   1 -
 srcpkgs/Fonts-TLWG/template                   |   2 -
 srcpkgs/GCP-Guest-Environment/template        |   1 -
 srcpkgs/Grammalecte/template                  |   1 -
 srcpkgs/ISOEnts/template                      |   1 -
 srcpkgs/Komikku/template                      |   1 -
 srcpkgs/LanguageTool/template                 |   1 -
 srcpkgs/MoinMoin/template                     |   1 -
 srcpkgs/OpenCPN-gshhs-crude/template          |   5 -
 srcpkgs/OpenLP/template                       |   1 -
 srcpkgs/OpenRCT2/template                     |   1 -
 srcpkgs/PhotoCollage/template                 |   1 -
 srcpkgs/ProofGeneral/template                 |   1 -
 srcpkgs/PyInstaller/template                  |   1 -
 srcpkgs/Pyrex/template                        |   1 -
 srcpkgs/ReText/template                       |   1 -
 srcpkgs/SMC/template                          |   1 -
 srcpkgs/SPIRV-Headers/template                |   1 -
 srcpkgs/Solaar/template                       |   1 -
 srcpkgs/TSC/template                          |   1 -
 srcpkgs/TwitchNotifier/template               |   1 -
 srcpkgs/Uranium/template                      |   1 -
 srcpkgs/Vulkan-Headers/template               |   1 -
 srcpkgs/WiringPi/template                     |   1 -
 srcpkgs/WoeUSB/template                       |   1 -
 srcpkgs/XyGrib-maps/template                  |   1 -
 srcpkgs/abcde/template                        |   1 -
 srcpkgs/abi-compliance-checker/template       |   1 -
 srcpkgs/ack/template                          |   1 -
 srcpkgs/acpilight/template                    |   1 -
 srcpkgs/acr/template                          |   1 -
 srcpkgs/adapta-kde/template                   |   1 -
 srcpkgs/adwaita-icon-theme/template           |   1 -
 srcpkgs/adwaita-plus/template                 |   1 -
 srcpkgs/afew/template                         |   1 -
 srcpkgs/aisleriot/template                    |   1 -
 srcpkgs/alacritty/template                    |   1 -
 srcpkgs/albatross-themes/template             |   1 -
 srcpkgs/alienfx/template                      |   1 -
 srcpkgs/alot/template                         |   1 -
 srcpkgs/alsa-firmware/template                |   1 -
 srcpkgs/amiri-font/template                   |   1 -
 srcpkgs/ampache/template                      |   1 -
 srcpkgs/angrysearch/template                  |   1 -
 srcpkgs/anki/template                         |   1 -
 srcpkgs/ansi/template                         |   1 -
 srcpkgs/ansible/template                      |   1 -
 srcpkgs/antlr3-bin/template                   |   1 -
 srcpkgs/apache-ant/template                   |   2 -
 srcpkgs/apache-jmeter/template                |   1 -
 srcpkgs/apache-maven/template                 |   1 -
 srcpkgs/apache-storm/template                 |   1 -
 srcpkgs/apache-tomcat/template                |   3 -
 srcpkgs/apparmor/template                     |   1 -
 srcpkgs/apt/template                          |   1 -
 srcpkgs/arandr/template                       |   1 -
 srcpkgs/arc-theme/template                    |   1 -
 srcpkgs/archlabs-themes/template              |   1 -
 srcpkgs/argtable/template                     |   1 -
 srcpkgs/artwiz-fonts/template                 |   1 -
 srcpkgs/asciidoc/template                     |   1 -
 srcpkgs/asciinema/template                    |   1 -
 srcpkgs/asciiquarium/template                 |   1 -
 srcpkgs/aspell-ru/template                    |   1 -
 srcpkgs/astromenace/template                  |   1 -
 srcpkgs/asus-kbd-backlight/template           |   1 -
 srcpkgs/atool/template                        |   1 -
 srcpkgs/audit/template                        |   1 -
 srcpkgs/auto-auto-complete/template           |   1 -
 srcpkgs/autoconf-archive/template             |   1 -
 srcpkgs/autoconf/template                     |   1 -
 srcpkgs/autoconf213/template                  |   1 -
 srcpkgs/autojump/template                     |   1 -
 srcpkgs/automake/template                     |   1 -
 srcpkgs/autorandr/template                    |   1 -
 srcpkgs/avahi-discover/template               |   4 -
 srcpkgs/avideo/template                       |   1 -
 srcpkgs/awoken-icons/template                 |   3 -
 srcpkgs/aws-cli/template                      |   1 -
 srcpkgs/awsume/template                       |   1 -
 srcpkgs/azote/template                        |   1 -
 srcpkgs/b43-firmware-classic/template         |   1 -
 srcpkgs/b43-firmware/template                 |   1 -
 srcpkgs/bCNC/template                         |   1 -
 srcpkgs/backblaze-b2/template                 |   2 -
 srcpkgs/backintime-qt/template                |   1 -
 srcpkgs/backintime/template                   |   1 -
 srcpkgs/bandit/template                       |   1 -
 srcpkgs/bash-completion/template              |   1 -
 srcpkgs/bash-preexec/template                 |   1 -
 srcpkgs/bashmount/template                    |   1 -
 srcpkgs/bats/template                         |   1 -
 srcpkgs/bdf2psf/template                      |   1 -
 srcpkgs/beard/template                        |   1 -
 srcpkgs/beets/template                        |   1 -
 srcpkgs/betterlockscreen/template             |   1 -
 srcpkgs/biber/template                        |   1 -
 srcpkgs/binutils/template                     |   1 -
 srcpkgs/binwalk/template                      |   1 -
 srcpkgs/biosdisk/template                     |   1 -
 srcpkgs/bitfighter/template                   |   1 -
 srcpkgs/black/template                        |   1 -
 srcpkgs/blackbird-themes/template             |   1 -
 srcpkgs/blackbox/template                     |   1 -
 srcpkgs/blazeblogger/template                 |   1 -
 srcpkgs/bleachbit/template                    |   1 -
 srcpkgs/bluebird-themes/template              |   1 -
 srcpkgs/boost/template                        |   1 -
 srcpkgs/bootiso/template                      |   1 -
 srcpkgs/borgmatic/template                    |   1 -
 srcpkgs/boswars/template                      |   1 -
 srcpkgs/botan/template                        |   1 -
 srcpkgs/breeze-cursors/template               |   8 -
 srcpkgs/breeze/template                       |   1 -
 srcpkgs/brise/template                        |   1 -
 srcpkgs/broadcom-bt-firmware/template         |   1 -
 srcpkgs/bsdbuild/template                     |   1 -
 srcpkgs/btrfs-backup/template                 |   1 -
 srcpkgs/bucklespring/template                 |   1 -
 srcpkgs/buildbot-slave/template               |   1 -
 srcpkgs/buildbot/template                     |   1 -
 srcpkgs/buku/template                         |   1 -
 srcpkgs/buku_run/template                     |   1 -
 srcpkgs/bum/template                          |   1 -
 srcpkgs/bumblebee-status/template             |   1 -
 srcpkgs/burp2-server/template                 |   1 -
 srcpkgs/bwidget/template                      |   1 -
 srcpkgs/byobu/template                        |   1 -
 srcpkgs/bzrtools/template                     |   1 -
 srcpkgs/c/template                            |   1 -
 srcpkgs/ca-certificates/template              |   1 -
 srcpkgs/caffeine-ng/template                  |   1 -
 srcpkgs/calligra/template                     |   1 -
 srcpkgs/cantarell-fonts/template              |   1 -
 srcpkgs/canto-next/template                   |   1 -
 srcpkgs/carton/template                       |   1 -
 srcpkgs/castero/template                      |   1 -
 srcpkgs/catch2/template                       |   1 -
 srcpkgs/catfish/template                      |   1 -
 srcpkgs/ccsm/template                         |   1 -
 srcpkgs/cdemu-client/template                 |   1 -
 srcpkgs/cdm/template                          |   1 -
 srcpkgs/cdogs-sdl/template                    |   1 -
 srcpkgs/cegui/template                        |   2 -
 srcpkgs/cegui07/template                      |   2 -
 srcpkgs/cereal/template                       |   1 -
 srcpkgs/certbot/template                      |   1 -
 srcpkgs/chatty/template                       |   1 -
 srcpkgs/checkbashisms/template                |   1 -
 srcpkgs/checksec/template                     |   1 -
 srcpkgs/cherry-font/template                  |   1 -
 srcpkgs/cherrytree/template                   |   1 -
 srcpkgs/cinnamon-translations/template        |   1 -
 srcpkgs/ckbcomp/template                      |   1 -
 srcpkgs/cldr-emoji-annotation/template        |   1 -
 .../template                                  |   1 -
 srcpkgs/clerk/template                        |   1 -
 srcpkgs/clipmenu/template                     |   1 -
 srcpkgs/cloc/template                         |   1 -
 srcpkgs/clyrics/template                      |   1 -
 srcpkgs/cmake-vala/template                   |   1 -
 srcpkgs/cmc/template                          |   1 -
 srcpkgs/coccigrep/template                    |   1 -
 srcpkgs/coin3/template                        |   1 -
 srcpkgs/collectl/template                     |   1 -
 srcpkgs/colordiff/template                    |   1 -
 srcpkgs/compiz-bcop/template                  |   1 -
 srcpkgs/composer/template                     |   1 -
 srcpkgs/coreboot-utils/template               |   1 -
 srcpkgs/couchpotato/template                  |   1 -
 srcpkgs/coursera-dl/template                  |   1 -
 srcpkgs/cowsay-temoc/template                 |   1 -
 srcpkgs/cowsay/template                       |   1 -
 srcpkgs/cozy/template                         |   1 -
 srcpkgs/cpanminus/template                    |   1 -
 srcpkgs/cpuset/template                       |   1 -
 srcpkgs/create_ap/template                    |   1 -
 srcpkgs/criu/template                         |   1 -
 srcpkgs/ctop/template                         |   1 -
 srcpkgs/culmus/template                       |   1 -
 srcpkgs/cura-fdm-materials/template           |   1 -
 srcpkgs/cura/template                         |   1 -
 srcpkgs/curseradio/template                   |   1 -
 srcpkgs/cvs2svn/template                      |   1 -
 srcpkgs/cycle/template                        |   1 -
 srcpkgs/d-feet/template                       |   1 -
 srcpkgs/db/template                           |   1 -
 srcpkgs/ddclient/template                     |   1 -
 srcpkgs/ddgr/template                         |   1 -
 srcpkgs/deepin-gtk-theme/template             |   1 -
 srcpkgs/deepin-icon-theme/template            |   1 -
 srcpkgs/deerportal/template                   |   1 -
 srcpkgs/deheader/template                     |   1 -
 srcpkgs/dehydrated/template                   |   1 -
 srcpkgs/dejavu-fonts-ttf/template             |   1 -
 srcpkgs/deluge/template                       |   3 -
 srcpkgs/devedeng/template                     |   1 -
 srcpkgs/dex/template                          |   1 -
 srcpkgs/dhcpcd-gtk/template                   |   1 -
 srcpkgs/diffoscope/template                   |   1 -
 srcpkgs/dina-font/template                    |   1 -
 srcpkgs/ditaa/template                        |   1 -
 srcpkgs/dkimproxy/template                    |   2 -
 srcpkgs/dnssec-anchors/template               |   1 -
 srcpkgs/docbook-dsssl/template                |   1 -
 srcpkgs/docbook-xml/template                  |   1 -
 srcpkgs/docbook-xsl-ns/template               |   1 -
 srcpkgs/docbook-xsl/template                  |   1 -
 srcpkgs/docbook/template                      |   1 -
 srcpkgs/docker-compose/template               |   1 -
 srcpkgs/docx2txt/template                     |   1 -
 srcpkgs/dot-xsession/template                 |   1 -
 srcpkgs/downloader-cli/template               |   1 -
 srcpkgs/dpdk/template                         |   1 -
 srcpkgs/dracut/template                       |   1 -
 srcpkgs/dreampie/template                     |   1 -
 srcpkgs/drist/template                        |   1 -
 srcpkgs/dstat/template                        |   1 -
 srcpkgs/dtrx/template                         |   1 -
 srcpkgs/duiadns/template                      |   1 -
 srcpkgs/durden/template                       |   1 -
 srcpkgs/easyrsa/template                      |   1 -
 srcpkgs/econnman/template                     |   1 -
 srcpkgs/edx-dl/template                       |   1 -
 srcpkgs/eigen/template                        |   1 -
 srcpkgs/eigen2/template                       |   1 -
 srcpkgs/eigen3.2/template                     |   1 -
 srcpkgs/ekushey-fonts-ttf/template            |   1 -
 srcpkgs/electrum-ltc/template                 |   1 -
 srcpkgs/electrum/template                     |   1 -
 srcpkgs/emacs-ess/template                    |   1 -
 srcpkgs/emacs/template                        |   1 -
 srcpkgs/emerald-themes/template               |   1 -
 srcpkgs/encodings/template                    |   1 -
 srcpkgs/endless-sky-gl21/template             |   1 -
 srcpkgs/endless-sky/template                  |   1 -
 srcpkgs/enigma/template                       |   2 -
 srcpkgs/envypn-font/template                  |   1 -
 srcpkgs/erlang/template                       |   1 -
 srcpkgs/escrotum/template                     |   1 -
 srcpkgs/eselect/template                      |   1 -
 srcpkgs/etcetera/template                     |   1 -
 srcpkgs/etckeeper/template                    |   1 -
 srcpkgs/etesync-dav/template                  |   1 -
 srcpkgs/etr/template                          |   1 -
 srcpkgs/execline/template                     |   1 -
 srcpkgs/exiftool/template                     |   1 -
 srcpkgs/extra-cmake-modules/template          |   1 -
 srcpkgs/eyeD3/template                        |   1 -
 srcpkgs/faba-icon-theme/template              |   1 -
 srcpkgs/faenza-icon-theme/template            |   1 -
 srcpkgs/faience-icon-theme/template           |   1 -
 srcpkgs/fail2ban/template                     |   1 -
 srcpkgs/fake-hwclock/template                 |   1 -
 srcpkgs/fava/template                         |   1 -
 srcpkgs/fbmenugen/template                    |   1 -
 srcpkgs/ferm/template                         |   1 -
 srcpkgs/fff/template                          |   1 -
 srcpkgs/ffscreencast/template                 |   1 -
 srcpkgs/fgit/template                         |   1 -
 srcpkgs/fierce/template                       |   1 -
 srcpkgs/figlet-fonts/template                 |   1 -
 srcpkgs/fillets-ng/template                   |   1 -
 srcpkgs/flake8/template                       |   2 -
 srcpkgs/flare-engine/template                 |   1 -
 srcpkgs/flare-game/template                   |   1 -
 srcpkgs/flickcurl/template                    |   1 -
 srcpkgs/flightgear/template                   |   1 -
 srcpkgs/flinks/template                       |   1 -
 srcpkgs/flowblade/template                    |   1 -
 srcpkgs/foliate/template                      |   1 -
 srcpkgs/font-3270/template                    |   1 -
 srcpkgs/font-FixedMisc/template               |   1 -
 srcpkgs/font-Hasklig/template                 |   1 -
 srcpkgs/font-Siji/template                    |   1 -
 srcpkgs/font-adobe-100dpi/template            |   1 -
 srcpkgs/font-adobe-75dpi/template             |   1 -
 srcpkgs/font-adobe-source-code-pro/template   |   2 -
 srcpkgs/font-adobe-utopia-100dpi/template     |   1 -
 srcpkgs/font-adobe-utopia-75dpi/template      |   1 -
 srcpkgs/font-adobe-utopia-type1/template      |   1 -
 srcpkgs/font-alias/template                   |   1 -
 srcpkgs/font-awesome/template                 |   1 -
 srcpkgs/font-awesome5/template                |   1 -
 srcpkgs/font-b612/template                    |   1 -
 srcpkgs/font-bh-100dpi/template               |   1 -
 srcpkgs/font-bh-75dpi/template                |   1 -
 .../font-bh-lucidatypewriter-100dpi/template  |   1 -
 .../font-bh-lucidatypewriter-75dpi/template   |   1 -
 srcpkgs/font-bh-ttf/template                  |   1 -
 srcpkgs/font-bh-type1/template                |   1 -
 srcpkgs/font-bitstream-100dpi/template        |   1 -
 srcpkgs/font-bitstream-75dpi/template         |   1 -
 srcpkgs/font-bitstream-speedo/template        |   1 -
 srcpkgs/font-bitstream-type1/template         |   1 -
 srcpkgs/font-cozette/template                 |   1 -
 srcpkgs/font-cursor-misc/template             |   1 -
 srcpkgs/font-daewoo-misc/template             |   1 -
 srcpkgs/font-dec-misc/template                |   1 -
 srcpkgs/font-fantasque-sans-ttf/template      |   1 -
 srcpkgs/font-fira-otf/template                |   2 -
 srcpkgs/font-firacode/template                |   1 -
 srcpkgs/font-fontin/template                  |   1 -
 srcpkgs/font-hack-ttf/template                |   1 -
 srcpkgs/font-hanazono/template                |   1 -
 srcpkgs/font-hermit-otf/template              |   1 -
 srcpkgs/font-ibm-plex-ttf/template            |   1 -
 srcpkgs/font-ibm-type1/template               |   1 -
 srcpkgs/font-inconsolata-otf/template         |   1 -
 srcpkgs/font-ionicons-ttf/template            |   1 -
 srcpkgs/font-iosevka/template                 |   1 -
 srcpkgs/font-isas-misc/template               |   1 -
 srcpkgs/font-jis-misc/template                |   1 -
 srcpkgs/font-kakwafont/template               |   1 -
 srcpkgs/font-libertine-ttf/template           |   2 -
 srcpkgs/font-manjari/template                 |   1 -
 .../font-material-design-icons-ttf/template   |   1 -
 srcpkgs/font-micro-misc/template              |   1 -
 srcpkgs/font-misc-misc/template               |   1 -
 srcpkgs/font-mplus-ttf/template               |   1 -
 srcpkgs/font-mutt-misc/template               |   1 -
 srcpkgs/font-open-dyslexic-ttf/template       |   1 -
 srcpkgs/font-sarasa-gothic/template           |   1 -
 srcpkgs/font-schumacher-misc/template         |   1 -
 srcpkgs/font-sil-abyssinica/template          |   1 -
 srcpkgs/font-sil-alkalami/template            |   1 -
 srcpkgs/font-sil-andika/template              |   1 -
 srcpkgs/font-sil-annapurna/template           |   1 -
 srcpkgs/font-sil-awami-nastaliq/template      |   1 -
 srcpkgs/font-sil-charis/template              |   1 -
 srcpkgs/font-sil-doulos/template              |   1 -
 srcpkgs/font-sil-ezra/template                |   1 -
 srcpkgs/font-sil-galatia/template             |   1 -
 srcpkgs/font-sil-gentium/template             |   1 -
 srcpkgs/font-sil-harmattan/template           |   1 -
 srcpkgs/font-sil-lateef/template              |   1 -
 srcpkgs/font-sil-mingzat/template             |   1 -
 srcpkgs/font-sil-mondulkiri/template          |   1 -
 srcpkgs/font-sil-namdhinggo/template          |   1 -
 srcpkgs/font-sil-nuosu/template               |   1 -
 srcpkgs/font-sil-padauk/template              |   1 -
 srcpkgs/font-sil-scheherazade/template        |   1 -
 srcpkgs/font-sil-sophia-nubian/template       |   1 -
 srcpkgs/font-sil-tai-heritage-pro/template    |   1 -
 srcpkgs/font-sony-misc/template               |   1 -
 srcpkgs/font-spleen/template                  |   1 -
 srcpkgs/font-sun-misc/template                |   1 -
 srcpkgs/font-symbola/template                 |   1 -
 srcpkgs/font-tamsyn/template                  |   1 -
 srcpkgs/font-tamzen/template                  |   1 -
 srcpkgs/font-unifont-bdf/template             |   1 -
 srcpkgs/font-vazir/template                   |   1 -
 srcpkgs/font-vollkorn-ttf/template            |   1 -
 srcpkgs/font-weather-icons/template           |   1 -
 srcpkgs/fontconfig/template                   |   1 -
 srcpkgs/fonts-croscore-ttf/template           |   1 -
 srcpkgs/fonts-droid-ttf/template              |   1 -
 srcpkgs/fonts-nanum-ttf/template              |   1 -
 srcpkgs/fonts-roboto-ttf/template             |   1 -
 srcpkgs/fonttools/template                    |   1 -
 srcpkgs/foomatic-db-nonfree/template          |   1 -
 srcpkgs/foomatic-db/template                  |   1 -
 srcpkgs/foot/template                         |   1 -
 srcpkgs/fortune-mod-anarchism/template        |   1 -
 srcpkgs/fortune-mod-de/template               |   1 -
 srcpkgs/fortune-mod-void/template             |   1 -
 srcpkgs/freedroidRPG/template                 |   1 -
 srcpkgs/freefont-ttf/template                 |   1 -
 srcpkgs/freeorion/template                    |   1 -
 srcpkgs/freepats/template                     |   1 -
 srcpkgs/freeplane/template                    |   1 -
 srcpkgs/freerouting/template                  |   1 -
 srcpkgs/freetds/template                      |   1 -
 srcpkgs/fsharp/template                       |   1 -
 srcpkgs/gajim/template                        |   1 -
 srcpkgs/gallery-dl/template                   |   1 -
 srcpkgs/gandi-cli/template                    |   1 -
 srcpkgs/gccmakedep/template                   |   1 -
 srcpkgs/gcdemu/template                       |   1 -
 srcpkgs/gconfmm/template                      |   1 -
 srcpkgs/gcovr/template                        |   1 -
 srcpkgs/gdash/template                        |   1 -
 srcpkgs/gdown/template                        |   1 -
 srcpkgs/geda/template                         |   2 -
 srcpkgs/gef/template                          |   1 -
 srcpkgs/geoip-data/template                   |   1 -
 srcpkgs/gespeaker/template                    |   1 -
 srcpkgs/geteltorito/template                  |   1 -
 srcpkgs/getmail/template                      |   1 -
 srcpkgs/gettext/template                      |   1 -
 srcpkgs/ghc/template                          |   1 -
 srcpkgs/ghi/template                          |   1 -
 srcpkgs/giac/template                         |   1 -
 srcpkgs/gimme/template                        |   1 -
 srcpkgs/gist/template                         |   1 -
 srcpkgs/git-cal/template                      |   1 -
 srcpkgs/git-cola/template                     |   1 -
 srcpkgs/git-extras/template                   |   1 -
 srcpkgs/git-filter-repo/template              |   1 -
 srcpkgs/git-review/template                   |   1 -
 srcpkgs/git-revise/template                   |   1 -
 srcpkgs/git-secret/template                   |   1 -
 srcpkgs/git-toolbelt/template                 |   1 -
 srcpkgs/git/template                          |   5 -
 srcpkgs/gitflow/template                      |   1 -
 srcpkgs/gitolite/template                     |   1 -
 srcpkgs/glances/template                      |   1 -
 srcpkgs/glibc/template                        |   1 -
 srcpkgs/glibmm/template                       |   1 -
 srcpkgs/glm/template                          |   1 -
 srcpkgs/glog/template                         |   1 -
 srcpkgs/gmsh/template                         |   1 -
 srcpkgs/gmsl/template                         |   1 -
 srcpkgs/gmusicbrowser/template                |   1 -
 srcpkgs/gnome-backgrounds/template            |   1 -
 srcpkgs/gnome-colors-icon-theme/template      |   1 -
 srcpkgs/gnome-common/template                 |   1 -
 srcpkgs/gnome-doc-utils/template              |   1 -
 srcpkgs/gnome-getting-started-docs/template   |   1 -
 srcpkgs/gnome-icon-theme-extras/template      |   1 -
 srcpkgs/gnome-icon-theme-symbolic/template    |   1 -
 srcpkgs/gnome-icon-theme-xfce/template        |   1 -
 srcpkgs/gnome-icon-theme/template             |   1 -
 srcpkgs/gnome-js-common/template              |   1 -
 srcpkgs/gnome-mime-data/template              |   1 -
 srcpkgs/gnome-passwordsafe/template           |   1 -
 srcpkgs/gnome-shell-extensions/template       |   1 -
 srcpkgs/gnome-themes-extra/template           |   1 -
 srcpkgs/gnome-tweaks/template                 |   2 -
 srcpkgs/gnome-user-docs/template              |   1 -
 srcpkgs/gnome-video-effects/template          |   1 -
 srcpkgs/gns3-gui/template                     |   1 -
 srcpkgs/gns3-net-converter/template           |   1 -
 srcpkgs/gnupod/template                       |   1 -
 srcpkgs/gnuradio/template                     |   1 -
 srcpkgs/gnustep-gui/template                  |   1 -
 srcpkgs/gohufont/template                     |   1 -
 srcpkgs/google-cloud-sdk/template             |   1 -
 srcpkgs/google-fonts-ttf/template             |   1 -
 srcpkgs/gpodder/template                      |   1 -
 srcpkgs/gradle/template                       |   1 -
 srcpkgs/gramps/template                       |   1 -
 srcpkgs/grc/template                          |   1 -
 srcpkgs/greg/template                         |   1 -
 srcpkgs/greybird-themes/template              |   1 -
 srcpkgs/grip/template                         |   1 -
 srcpkgs/grml-zsh-config/template              |   1 -
 srcpkgs/groff/template                        |   1 -
 srcpkgs/grub-terminus/template                |   1 -
 srcpkgs/grub/template                         |   5 -
 srcpkgs/gscan2pdf/template                    |   1 -
 srcpkgs/gscreenshot/template                  |   1 -
 srcpkgs/gsfonts/template                      |   1 -
 srcpkgs/gtk-doc/template                      |   1 -
 srcpkgs/gtk-theme-united-gnome/template       |   1 -
 srcpkgs/guake/template                        |   1 -
 srcpkgs/gufw/template                         |   1 -
 srcpkgs/guilt/template                        |   1 -
 srcpkgs/gyazo/template                        |   1 -
 srcpkgs/hamster-applet/template               |   1 -
 srcpkgs/hashboot/template                     |   1 -
 srcpkgs/hedgewars/template                    |   1 -
 srcpkgs/hg-git/template                       |   1 -
 srcpkgs/hicolor-icon-theme/template           |   1 -
 srcpkgs/hiera/template                        |   1 -
 srcpkgs/hostfw/template                       |   1 -
 srcpkgs/hostmux/template                      |   1 -
 srcpkgs/hosts-update/template                 |   1 -
 srcpkgs/httpie/template                       |   2 -
 srcpkgs/hunspell-da_DK/template               |   1 -
 srcpkgs/hunspell-de_CH/template               |   1 -
 srcpkgs/hunspell-de_DE/template               |   1 -
 srcpkgs/hunspell-el_GR/template               |   1 -
 srcpkgs/hunspell-en_AU/template               |   1 -
 srcpkgs/hunspell-en_GB-ize/template           |   1 -
 srcpkgs/hunspell-en_US/template               |   1 -
 srcpkgs/hunspell-es_ES/template               |   1 -
 srcpkgs/hunspell-fr_FR/template               |   4 -
 srcpkgs/hunspell-hr_HR/template               |   1 -
 srcpkgs/hunspell-it_IT/template               |   1 -
 srcpkgs/hunspell-pl_PL/template               |   1 -
 srcpkgs/hunspell-pt_BR/template               |   1 -
 srcpkgs/hunspell-ru_RU-ieyo/template          |   1 -
 srcpkgs/hunspell-ru_RU/template               |   1 -
 srcpkgs/hunspell-sv_SE/template               |   1 -
 srcpkgs/hwids/template                        |   1 -
 srcpkgs/i3blocks-blocklets/template           |   1 -
 srcpkgs/i3lock-fancy/template                 |   1 -
 srcpkgs/iana-etc/template                     |   1 -
 srcpkgs/ibus-avro/template                    |   1 -
 srcpkgs/icdiff/template                       |   2 -
 srcpkgs/ice-ssb/template                      |   1 -
 srcpkgs/icecat/template                       |  93 -----------
 srcpkgs/icedtea-sound/template                |   1 -
 srcpkgs/icon-naming-utils/template            |   1 -
 srcpkgs/imgp/template                         |   1 -
 srcpkgs/indic-otf/template                    |   1 -
 srcpkgs/indicator-doom-cpu/template           |   1 -
 srcpkgs/iniparser/template                    |   2 -
 srcpkgs/intltool/template                     |   1 -
 srcpkgs/inxi/template                         |   1 -
 srcpkgs/io.elementary.stylesheet/template     |   1 -
 srcpkgs/ioprof/template                       |   1 -
 srcpkgs/iotop/template                        |   1 -
 srcpkgs/ipafont-fonts-otf/template            |   1 -
 srcpkgs/ipcalc/template                       |   1 -
 srcpkgs/ipw2100-firmware/template             |   1 -
 srcpkgs/ipw2200-firmware/template             |   1 -
 srcpkgs/iscan-data/template                   |   1 -
 srcpkgs/iso-codes/template                    |   1 -
 srcpkgs/itstool/template                      |   1 -
 srcpkgs/jadx/template                         |   1 -
 srcpkgs/java-commons-io/template              |   1 -
 srcpkgs/javahelp2/template                    |   1 -
 srcpkgs/jrnl/template                         |   1 -
 srcpkgs/kadu/template                         |   1 -
 srcpkgs/kaitai-struct-compiler/template       |   1 -
 srcpkgs/kapidox/template                      |   1 -
 srcpkgs/kbd/template                          |   1 -
 srcpkgs/key-mon/template                      |   1 -
 srcpkgs/keychain/template                     |   1 -
 srcpkgs/khal/template                         |   1 -
 srcpkgs/khard/template                        |   1 -
 srcpkgs/khmer-fonts-ttf/template              |   1 -
 srcpkgs/kicad-footprints/template             |   1 -
 srcpkgs/kicad-i18n/template                   |   1 -
 srcpkgs/kicad-packages3D/template             |   1 -
 srcpkgs/kicad-symbols/template                |   1 -
 srcpkgs/kicad-templates/template              |   1 -
 srcpkgs/kickassembler/template                |   1 -
 srcpkgs/kitty/template                        |   1 -
 srcpkgs/kobodeluxe/template                   |   1 -
 srcpkgs/kodi-binary-addons/template           |   1 -
 srcpkgs/kpcli/template                        |   1 -
 srcpkgs/kshdb/template                        |   1 -
 srcpkgs/kupfer/template                       |   1 -
 srcpkgs/laditools/template                    |   1 -
 srcpkgs/ladspa-sdk/template                   |   2 -
 srcpkgs/laptop-mode/template                  |   1 -
 srcpkgs/leiningen/template                    |   1 -
 srcpkgs/leocad/template                       |   1 -
 srcpkgs/lesspipe/template                     |   1 -
 srcpkgs/lfe/template                          |   1 -
 srcpkgs/lfm/template                          |   1 -
 srcpkgs/lftpfs/template                       |   1 -
 srcpkgs/libbytesize/template                  |   1 -
 srcpkgs/libcap-ng/template                    |   1 -
 srcpkgs/libchewing/template                   |   1 -
 srcpkgs/libclc-git/template                   |   1 -
 srcpkgs/libcppunit/template                   |   1 -
 srcpkgs/libdwarf/template                     |   1 -
 srcpkgs/libe-book/template                    |   1 -
 srcpkgs/liberation-fonts-ttf/template         |   1 -
 srcpkgs/libfreehand/template                  |   1 -
 srcpkgs/libgphoto2/template                   |   1 -
 srcpkgs/libinput-gestures/template            |   1 -
 srcpkgs/libmwaw/template                      |   1 -
 srcpkgs/libosmgpsmap/template                 |   1 -
 srcpkgs/libquvi-scripts/template              |   1 -
 srcpkgs/libreoffice/template                  |   2 -
 srcpkgs/libsearpc/template                    |   2 -
 srcpkgs/libsoxr/template                      |   1 -
 srcpkgs/libvpx5/template                      |   1 -
 srcpkgs/libwaylandpp/template                 |   1 -
 srcpkgs/lightdm-webkit2-greeter/template      |   1 -
 srcpkgs/lilypond-doc/template                 |   1 -
 srcpkgs/linux-firmware-dvb/template           |   1 -
 srcpkgs/linux-firmware/template               |   5 -
 srcpkgs/lltag/template                        |   1 -
 srcpkgs/llvm10/template                       |   1 -
 srcpkgs/llvm6.0/template                      |   1 -
 srcpkgs/llvm7/template                        |   1 -
 srcpkgs/llvm8/template                        |   1 -
 srcpkgs/llvm9/template                        |   1 -
 srcpkgs/lollypop/template                     |   1 -
 srcpkgs/lua54-MessagePack/template            |   1 -
 srcpkgs/lua54-stdlib-debug/template           |   1 -
 srcpkgs/lua54-stdlib-normalize/template       |   1 -
 srcpkgs/lua54-vicious/template                |   1 -
 srcpkgs/luarocks-lua53/template               |   4 -
 srcpkgs/lugaru/template                       |   1 -
 srcpkgs/lutris/template                       |   1 -
 srcpkgs/lxde-common/template                  |   1 -
 srcpkgs/lxde-icon-theme/template              |   1 -
 srcpkgs/lxdm-theme-vdojo/template             |   1 -
 srcpkgs/lxmenu-data/template                  |   1 -
 srcpkgs/lxqt-build-tools/template             |   1 -
 srcpkgs/magic-wormhole/template               |   1 -
 srcpkgs/mailpile/template                     |   1 -
 srcpkgs/make-ca/template                      |   1 -
 srcpkgs/makepasswd/template                   |   1 -
 srcpkgs/makeself/template                     |   1 -
 srcpkgs/man-pages-posix/template              |   1 -
 srcpkgs/man-pages/template                    |   2 -
 srcpkgs/mantablockscreen/template             |   1 -
 srcpkgs/manuskript/template                   |   1 -
 srcpkgs/mariadb/template                      |   1 -
 srcpkgs/marvin/template                       |   1 -
 srcpkgs/mate-applets/template                 |   1 -
 srcpkgs/mate-backgrounds/template             |   1 -
 srcpkgs/mate-common/template                  |   1 -
 srcpkgs/mate-icon-theme-faenza/template       |   1 -
 srcpkgs/mate-icon-theme/template              |   1 -
 srcpkgs/mate-menu/template                    |   1 -
 srcpkgs/mate-themes/template                  |   1 -
 srcpkgs/mate-tweak/template                   |   1 -
 srcpkgs/mate-user-guide/template              |   1 -
 srcpkgs/mathjax/template                      |   1 -
 srcpkgs/maxima/template                       |   3 -
 srcpkgs/mb2md/template                        |   1 -
 srcpkgs/mcomix/template                       |   1 -
 srcpkgs/mdds/template                         |   1 -
 srcpkgs/mdevd/template                        |   1 -
 srcpkgs/med/template                          |   1 -
 srcpkgs/media-player-info/template            |   1 -
 srcpkgs/meld/template                         |   1 -
 srcpkgs/menulibre/template                    |   1 -
 srcpkgs/menumaker/template                    |   1 -
 srcpkgs/menutray/template                     |   1 -
 srcpkgs/meson-cmake-wrapper/template          |   1 -
 srcpkgs/meson/template                        |   1 -
 srcpkgs/mime-types/template                   |   1 -
 srcpkgs/mimeo/template                        |   1 -
 srcpkgs/mimms/template                        |   1 -
 srcpkgs/minigalaxy/template                   |   1 -
 srcpkgs/miro-video-converter/template         |   1 -
 srcpkgs/mkchromecast/template                 |   1 -
 srcpkgs/mkfontscale/template                  |   1 -
 srcpkgs/mkinitcpio-encryptssh/template        |   1 -
 srcpkgs/mkinitcpio/template                   |   6 -
 srcpkgs/mlt/template                          |   3 -
 srcpkgs/mm-common/template                    |   1 -
 .../mobile-broadband-provider-info/template   |   1 -
 srcpkgs/mog/template                          |   1 -
 srcpkgs/mongoose/template                     |   1 -
 srcpkgs/mons/template                         |   1 -
 srcpkgs/mopidy-local/template                 |   1 -
 srcpkgs/mopidy-mpd/template                   |   1 -
 srcpkgs/mopidy/template                       |   1 -
 srcpkgs/mozo/template                         |   1 -
 srcpkgs/mpd-sima/template                     |   1 -
 srcpkgs/mps-youtube/template                  |   1 -
 srcpkgs/msbuild-bin/template                  |   1 -
 srcpkgs/msttcorefonts/template                |   1 -
 srcpkgs/mtm/template                          |   1 -
 srcpkgs/mu/template                           |   1 -
 srcpkgs/mugshot/template                      |   1 -
 srcpkgs/multibootusb/template                 |   1 -
 srcpkgs/mutagen/template                      |   2 -
 srcpkgs/mymcplus/template                     |   1 -
 srcpkgs/mypaint-brushes/template              |   1 -
 srcpkgs/mypaint-brushes1/template             |   1 -
 srcpkgs/myrepos/template                      |   1 -
 srcpkgs/nagstamon/template                    |   1 -
 srcpkgs/nautilus-python/template              |   1 -
 srcpkgs/ncurses/template                      |   2 -
 srcpkgs/neofetch/template                     |   1 -
 srcpkgs/neovim-remote/template                |   1 -
 srcpkgs/nerd-fonts/template                   |   3 -
 srcpkgs/netbsd-wtf/template                   |   1 -
 srcpkgs/netdata/template                      |   2 -
 srcpkgs/netsurf-buildsystem/template          |   1 -
 srcpkgs/nicotine+/template                    |   1 -
 srcpkgs/nmap/template                         |   1 -
 srcpkgs/notmuch/template                      |   3 -
 srcpkgs/noto-fonts-cjk/template               |   1 -
 srcpkgs/noto-fonts-emoji/template             |   1 -
 srcpkgs/noto-fonts-ttf/template               |   1 -
 srcpkgs/novaboot/template                     |   1 -
 srcpkgs/nsss/template                         |   1 -
 srcpkgs/ntp/template                          |   1 -
 srcpkgs/num-utils/template                    |   1 -
 srcpkgs/numix-themes/template                 |   1 -
 srcpkgs/nyx/template                          |   1 -
 srcpkgs/oblogout/template                     |   1 -
 srcpkgs/obmenu-generator/template             |   1 -
 srcpkgs/obmenu/template                       |   1 -
 srcpkgs/offlineimap/template                  |   1 -
 srcpkgs/ohsnap-font/template                  |   1 -
 srcpkgs/ok.sh/template                        |   1 -
 srcpkgs/oniguruma/template                    |   1 -
 srcpkgs/onionshare/template                   |   1 -
 srcpkgs/opencl-clhpp/template                 |   1 -
 srcpkgs/opencl2-headers/template              |   1 -
 srcpkgs/openjdk8/template                     |   4 -
 srcpkgs/openlierox/template                   |   1 -
 srcpkgs/openra/template                       |   1 -
 srcpkgs/openresolv/template                   |   1 -
 srcpkgs/opensonic/template                    |   1 -
 srcpkgs/opensurge/template                    |   1 -
 srcpkgs/opentmpfiles/template                 |   1 -
 srcpkgs/openttd/template                      |   1 -
 srcpkgs/opentyrian/template                   |   1 -
 srcpkgs/orca/template                         |   1 -
 srcpkgs/orjail/template                       |   1 -
 srcpkgs/osinfo-db/template                    |   1 -
 srcpkgs/othman/template                       |   1 -
 srcpkgs/overpass-otf/template                 |   1 -
 srcpkgs/oxygen-icons5/template                |   1 -
 srcpkgs/pam-base/template                     |   1 -
 srcpkgs/pantalaimon/template                  |   1 -
 srcpkgs/paper-gtk-theme/template              |   1 -
 srcpkgs/paper-icon-theme/template             |   1 -
 srcpkgs/papirus-folders/template              |   1 -
 srcpkgs/papirus-icon-theme/template           |   1 -
 srcpkgs/parallel/template                     |   1 -
 srcpkgs/pass-git-helper/template              |   1 -
 srcpkgs/pass-import/template                  |   1 -
 srcpkgs/pass-otp/template                     |   1 -
 srcpkgs/pass-update/template                  |   1 -
 srcpkgs/pass/template                         |   1 -
 srcpkgs/pastebinit/template                   |   1 -
 srcpkgs/pcb/template                          |   1 -
 srcpkgs/pdd/template                          |   1 -
 srcpkgs/pdf.js/template                       |   1 -
 srcpkgs/peframe/template                      |   1 -
 srcpkgs/pelican/template                      |   1 -
 srcpkgs/percona-toolkit/template              |   1 -
 srcpkgs/perl-ACL-Lite/template                |   1 -
 srcpkgs/perl-AWS-Signature4/template          |   1 -
 srcpkgs/perl-Algorithm-Diff/template          |   1 -
 srcpkgs/perl-Alien-Build/template             |   1 -
 srcpkgs/perl-Alien-wxWidgets/template         |   1 -
 srcpkgs/perl-Alien/template                   |   1 -
 srcpkgs/perl-AnyEvent-I3/template             |   1 -
 srcpkgs/perl-AnyEvent/template                |   1 -
 .../perl-Apache-LogFormat-Compiler/template   |   1 -
 srcpkgs/perl-AppConfig/template               |   1 -
 srcpkgs/perl-Archive-Extract/template         |   1 -
 srcpkgs/perl-Archive-Zip/template             |   1 -
 srcpkgs/perl-Authen-SASL/template             |   1 -
 srcpkgs/perl-B-Hooks-EndOfScope/template      |   1 -
 srcpkgs/perl-Business-ISBN-Data/template      |   1 -
 srcpkgs/perl-Business-ISBN/template           |   1 -
 srcpkgs/perl-Business-ISMN/template           |   1 -
 srcpkgs/perl-Business-ISSN/template           |   1 -
 srcpkgs/perl-CGI/template                     |   1 -
 srcpkgs/perl-CPAN-Changes/template            |   1 -
 srcpkgs/perl-CPAN-Common-Index/template       |   1 -
 srcpkgs/perl-CPAN-DistnameInfo/template       |   1 -
 srcpkgs/perl-CPAN-Meta-Check/template         |   1 -
 srcpkgs/perl-Canary-Stability/template        |   1 -
 srcpkgs/perl-Capture-Tiny/template            |   1 -
 srcpkgs/perl-Carp-Clan/template               |   1 -
 srcpkgs/perl-Class-Accessor/template          |   1 -
 srcpkgs/perl-Class-Data-Inheritable/template  |   1 -
 srcpkgs/perl-Class-Factory-Util/template      |   1 -
 srcpkgs/perl-Class-Inspector/template         |   1 -
 srcpkgs/perl-Class-Load/template              |   1 -
 srcpkgs/perl-Class-Method-Modifiers/template  |   1 -
 srcpkgs/perl-Class-Singleton/template         |   1 -
 srcpkgs/perl-Class-Tiny/template              |   1 -
 srcpkgs/perl-Clipboard/template               |   1 -
 srcpkgs/perl-Clone-Choose/template            |   1 -
 srcpkgs/perl-Clone-PP/template                |   1 -
 srcpkgs/perl-Config-AutoConf/template         |   1 -
 srcpkgs/perl-Config-General/template          |   1 -
 .../perl-Config-INI-Reader-Ordered/template   |   1 -
 srcpkgs/perl-Config-INI/template              |   1 -
 srcpkgs/perl-Config-IniFiles/template         |   1 -
 srcpkgs/perl-Config-Simple/template           |   1 -
 srcpkgs/perl-Config-Tiny/template             |   1 -
 srcpkgs/perl-Convert-BinHex/template          |   1 -
 srcpkgs/perl-Cookie-Baker/template            |   1 -
 srcpkgs/perl-Crypt-Blowfish_PP/template       |   1 -
 srcpkgs/perl-Crypt-CBC/template               |   1 -
 srcpkgs/perl-Crypt-DES_EDE3/template          |   1 -
 srcpkgs/perl-Crypt-DH/template                |   1 -
 srcpkgs/perl-Crypt-OpenSSL-Guess/template     |   1 -
 srcpkgs/perl-Crypt-PasswdMD5/template         |   1 -
 srcpkgs/perl-Crypt-RC4/template               |   1 -
 srcpkgs/perl-Danga-Socket/template            |   1 -
 srcpkgs/perl-Data-Compare/template            |   1 -
 srcpkgs/perl-Data-Dump/template               |   1 -
 srcpkgs/perl-Data-Dx/template                 |   1 -
 srcpkgs/perl-Data-OptList/template            |   1 -
 srcpkgs/perl-Data-Section-Simple/template     |   1 -
 srcpkgs/perl-Data-Uniqid/template             |   1 -
 srcpkgs/perl-Data-Validate-IP/template        |   1 -
 srcpkgs/perl-Date-Calc/template               |   1 -
 srcpkgs/perl-Date-Manip/template              |   1 -
 .../perl-DateTime-Calendar-Julian/template    |   1 -
 srcpkgs/perl-DateTime-Format-Builder/template |   1 -
 .../perl-DateTime-Format-Strptime/template    |   1 -
 srcpkgs/perl-DateTime-Locale/template         |   1 -
 srcpkgs/perl-DateTime-TimeZone/template       |   1 -
 srcpkgs/perl-Devel-CheckLib/template          |   1 -
 srcpkgs/perl-Devel-GlobalDestruction/template |   1 -
 srcpkgs/perl-Devel-StackTrace-AsHTML/template |   1 -
 srcpkgs/perl-Devel-StackTrace/template        |   1 -
 srcpkgs/perl-Devel-Symdump/template           |   1 -
 srcpkgs/perl-Digest-HMAC/template             |   1 -
 srcpkgs/perl-Digest-Perl-MD5/template         |   1 -
 srcpkgs/perl-Dist-CheckConflicts/template     |   1 -
 srcpkgs/perl-Email-Date-Format/template       |   1 -
 srcpkgs/perl-Email-FolderType/template        |   1 -
 srcpkgs/perl-Email-LocalDelivery/template     |   1 -
 srcpkgs/perl-Email-MIME-ContentType/template  |   1 -
 srcpkgs/perl-Email-MIME-Encodings/template    |   1 -
 srcpkgs/perl-Email-MIME/template              |   1 -
 srcpkgs/perl-Email-MessageID/template         |   1 -
 srcpkgs/perl-Email-Simple/template            |   1 -
 srcpkgs/perl-Encode-Locale/template           |   1 -
 srcpkgs/perl-Eval-Closure/template            |   1 -
 srcpkgs/perl-Exception-Class/template         |   1 -
 srcpkgs/perl-Expect/template                  |   1 -
 srcpkgs/perl-Exporter-Tiny/template           |   1 -
 srcpkgs/perl-ExtUtils-Config/template         |   1 -
 srcpkgs/perl-ExtUtils-CppGuess/template       |   1 -
 srcpkgs/perl-ExtUtils-Depends/template        |   1 -
 srcpkgs/perl-ExtUtils-Helpers/template        |   1 -
 srcpkgs/perl-ExtUtils-InstallPaths/template   |   1 -
 srcpkgs/perl-ExtUtils-LibBuilder/template     |   1 -
 .../perl-ExtUtils-MakeMaker-CPANfile/template |   1 -
 srcpkgs/perl-ExtUtils-PkgConfig/template      |   1 -
 srcpkgs/perl-ExtUtils-XSpp/template           |   1 -
 srcpkgs/perl-FFI-CheckLib/template            |   1 -
 srcpkgs/perl-File-BaseDir/template            |   1 -
 srcpkgs/perl-File-Copy-Recursive/template     |   1 -
 srcpkgs/perl-File-DesktopEntry/template       |   1 -
 srcpkgs/perl-File-Find-Rule/template          |   1 -
 srcpkgs/perl-File-Flock-Retry/template        |   1 -
 srcpkgs/perl-File-HomeDir/template            |   1 -
 srcpkgs/perl-File-KeePass/template            |   1 -
 srcpkgs/perl-File-Listing/template            |   1 -
 srcpkgs/perl-File-MimeInfo/template           |   1 -
 srcpkgs/perl-File-Next/template               |   1 -
 srcpkgs/perl-File-Path-Expand/template        |   1 -
 srcpkgs/perl-File-Remove/template             |   1 -
 srcpkgs/perl-File-Rename/template             |   1 -
 srcpkgs/perl-File-ShareDir-Install/template   |   1 -
 srcpkgs/perl-File-ShareDir/template           |   1 -
 srcpkgs/perl-File-Slurp-Tiny/template         |   1 -
 srcpkgs/perl-File-Slurp/template              |   1 -
 srcpkgs/perl-File-Slurper/template            |   1 -
 srcpkgs/perl-File-Which/template              |   1 -
 srcpkgs/perl-File-Write-Rotate/template       |   1 -
 srcpkgs/perl-File-chdir/template              |   1 -
 srcpkgs/perl-File-pushd/template              |   1 -
 srcpkgs/perl-Filesys-Notify-Simple/template   |   1 -
 srcpkgs/perl-Font-TTF/template                |   1 -
 srcpkgs/perl-Getopt-Compact/template          |   1 -
 srcpkgs/perl-GooCanvas2/template              |   1 -
 srcpkgs/perl-Graphics-ColorUtils/template     |   1 -
 srcpkgs/perl-Gtk2-Ex-Simple-List/template     |   1 -
 srcpkgs/perl-Gtk3-SimpleList/template         |   1 -
 srcpkgs/perl-Gtk3/template                    |   1 -
 srcpkgs/perl-HTML-Form/template               |   1 -
 srcpkgs/perl-HTML-Tagset/template             |   1 -
 srcpkgs/perl-HTML-Tree/template               |   1 -
 srcpkgs/perl-HTTP-Cookies/template            |   1 -
 srcpkgs/perl-HTTP-Daemon/template             |   1 -
 srcpkgs/perl-HTTP-Date/template               |   1 -
 srcpkgs/perl-HTTP-Entity-Parser/template      |   1 -
 srcpkgs/perl-HTTP-Headers-Fast/template       |   1 -
 srcpkgs/perl-HTTP-Message/template            |   1 -
 srcpkgs/perl-HTTP-MultiPartParser/template    |   1 -
 srcpkgs/perl-HTTP-Negotiate/template          |   1 -
 srcpkgs/perl-HTTP-Response-Encoding/template  |   1 -
 srcpkgs/perl-HTTP-Server-Simple/template      |   1 -
 srcpkgs/perl-HTTP-Tinyish/template            |   1 -
 srcpkgs/perl-Hash-Merge/template              |   1 -
 srcpkgs/perl-Hash-MultiValue/template         |   1 -
 srcpkgs/perl-IO-CaptureOutput/template        |   1 -
 srcpkgs/perl-IO-HTML/template                 |   1 -
 srcpkgs/perl-IO-SessionData/template          |   1 -
 srcpkgs/perl-IO-Socket-INET6/template         |   1 -
 srcpkgs/perl-IO-Socket-SSL/template           |   1 -
 srcpkgs/perl-IO-Socket-Socks/template         |   1 -
 srcpkgs/perl-IO-String/template               |   1 -
 srcpkgs/perl-IO-Stty/template                 |   1 -
 srcpkgs/perl-IO-stringy/template              |   1 -
 srcpkgs/perl-IPC-Run/template                 |   1 -
 srcpkgs/perl-IPC-Run3/template                |   1 -
 srcpkgs/perl-IPC-System-Simple/template       |   1 -
 srcpkgs/perl-Importer/template                |   1 -
 srcpkgs/perl-Inline-C/template                |   1 -
 srcpkgs/perl-Inline/template                  |   1 -
 srcpkgs/perl-JSON-MaybeXS/template            |   1 -
 srcpkgs/perl-JSON/template                    |   1 -
 srcpkgs/perl-Keyword-Declare/template         |   1 -
 srcpkgs/perl-Keyword-Simple/template          |   1 -
 srcpkgs/perl-LWP-MediaTypes/template          |   1 -
 srcpkgs/perl-LWP-Protocol-https/template      |   1 -
 srcpkgs/perl-LWP-Protocol-socks/template      |   1 -
 srcpkgs/perl-LWP/template                     |   1 -
 srcpkgs/perl-Lingua-Translit/template         |   1 -
 srcpkgs/perl-Linux-DesktopFiles/template      |   1 -
 srcpkgs/perl-Linux-Distribution/template      |   1 -
 srcpkgs/perl-List-AllUtils/template           |   1 -
 srcpkgs/perl-List-MoreUtils/template          |   1 -
 srcpkgs/perl-List-SomeUtils/template          |   1 -
 srcpkgs/perl-List-UtilsBy/template            |   1 -
 srcpkgs/perl-Locale-PO/template               |   1 -
 srcpkgs/perl-Log-Log4perl/template            |   1 -
 srcpkgs/perl-MIME-Charset/template            |   1 -
 srcpkgs/perl-MIME-Types/template              |   1 -
 srcpkgs/perl-MIME-tools/template              |   1 -
 srcpkgs/perl-MP3-Info/template                |   1 -
 srcpkgs/perl-MP3-Tag/template                 |   1 -
 srcpkgs/perl-MRO-Compat/template              |   1 -
 srcpkgs/perl-Mail-Box/template                |   1 -
 srcpkgs/perl-Mail-DKIM/template               |   1 -
 srcpkgs/perl-Mail-Message/template            |   1 -
 srcpkgs/perl-Mail-POP3Client/template         |   1 -
 srcpkgs/perl-Mail-Sendmail/template           |   1 -
 srcpkgs/perl-Mail-Transport/template          |   1 -
 srcpkgs/perl-MailTools/template               |   1 -
 srcpkgs/perl-Menlo-Legacy/template            |   1 -
 srcpkgs/perl-Menlo/template                   |   1 -
 srcpkgs/perl-Mixin-Linewise/template          |   1 -
 srcpkgs/perl-Module-Build-Tiny/template       |   1 -
 srcpkgs/perl-Module-Build/template            |   1 -
 srcpkgs/perl-Module-CPANfile/template         |   1 -
 srcpkgs/perl-Module-Find/template             |   1 -
 srcpkgs/perl-Module-Implementation/template   |   1 -
 srcpkgs/perl-Module-Manifest/template         |   1 -
 srcpkgs/perl-Module-Pluggable/template        |   1 -
 srcpkgs/perl-Module-Runtime/template          |   1 -
 srcpkgs/perl-Mojolicious/template             |   1 -
 srcpkgs/perl-Monkey-Patch-Action/template     |   1 -
 srcpkgs/perl-Moo/template                     |   1 -
 srcpkgs/perl-Mozilla-CA/template              |   1 -
 srcpkgs/perl-Net-DNS-Resolver-Mock/template   |   1 -
 srcpkgs/perl-Net-DNS/template                 |   1 -
 srcpkgs/perl-Net-HTTP/template                |   1 -
 srcpkgs/perl-Net-IMAP-Client/template         |   1 -
 srcpkgs/perl-Net-IMAP-Simple/template         |   1 -
 srcpkgs/perl-Net-MPD/template                 |   1 -
 srcpkgs/perl-Net-OpenSSH/template             |   1 -
 srcpkgs/perl-Net-SFTP-Foreign/template        |   1 -
 srcpkgs/perl-Net-SMTP-SSL/template            |   1 -
 srcpkgs/perl-Net-Server/template              |   1 -
 srcpkgs/perl-Number-Compare/template          |   1 -
 srcpkgs/perl-Number-Format/template           |   1 -
 srcpkgs/perl-OLE-Storage_Lite/template        |   1 -
 srcpkgs/perl-Object-MultiType/template        |   1 -
 srcpkgs/perl-Object-Realize-Later/template    |   1 -
 srcpkgs/perl-PDF-API2/template                |   1 -
 srcpkgs/perl-POSIX-strftime-Compiler/template |   1 -
 srcpkgs/perl-PPR/template                     |   1 -
 .../perl-Package-DeprecationManager/template  |   1 -
 srcpkgs/perl-Package-Stash/template           |   1 -
 srcpkgs/perl-Parallel-ForkManager/template    |   1 -
 .../perl-Params-ValidationCompiler/template   |   1 -
 srcpkgs/perl-Parse-CPAN-Meta/template         |   1 -
 srcpkgs/perl-Parse-PMFile/template            |   1 -
 srcpkgs/perl-Parse-RecDescent/template        |   1 -
 srcpkgs/perl-Parse-Yapp/template              |   1 -
 srcpkgs/perl-PatchReader/template             |   1 -
 srcpkgs/perl-Path-Tiny/template               |   1 -
 srcpkgs/perl-Pegex/template                   |   1 -
 .../perl-Plack-Middleware-Deflater/template   |   1 -
 .../template                                  |   1 -
 srcpkgs/perl-Plack/template                   |   1 -
 srcpkgs/perl-Pod-Coverage/template            |   1 -
 srcpkgs/perl-Pod-Simple-Text-Termcap/template |   1 -
 srcpkgs/perl-Probe-Perl/template              |   1 -
 srcpkgs/perl-Proc-Daemontools/template        |   1 -
 srcpkgs/perl-Proc-Govern/template             |   1 -
 srcpkgs/perl-Proc-PID-File/template           |   1 -
 srcpkgs/perl-Readonly/template                |   1 -
 srcpkgs/perl-Ref-Util/template                |   1 -
 srcpkgs/perl-Regexp-Common/template           |   1 -
 srcpkgs/perl-Regexp-Grammars/template         |   1 -
 srcpkgs/perl-Reply/template                   |   1 -
 srcpkgs/perl-Role-Tiny/template               |   1 -
 srcpkgs/perl-SGMLSpm/template                 |   1 -
 srcpkgs/perl-SOAP-Lite/template               |   1 -
 srcpkgs/perl-SUPER/template                   |   1 -
 srcpkgs/perl-Scope-Guard/template             |   1 -
 srcpkgs/perl-Set-IntSpan/template             |   1 -
 srcpkgs/perl-Sort-Naturally/template          |   1 -
 srcpkgs/perl-Sort-Versions/template           |   1 -
 srcpkgs/perl-Specio/template                  |   1 -
 srcpkgs/perl-Spiffy/template                  |   1 -
 srcpkgs/perl-Spreadsheet-ParseExcel/template  |   1 -
 srcpkgs/perl-Spreadsheet-ParseXLSX/template   |   1 -
 srcpkgs/perl-Stow/template                    |   1 -
 srcpkgs/perl-Stream-Buffered/template         |   1 -
 srcpkgs/perl-String-Escape/template           |   1 -
 srcpkgs/perl-String-ShellQuote/template       |   1 -
 srcpkgs/perl-Sub-Delete/template              |   1 -
 .../perl-Sub-Exporter-Progressive/template    |   1 -
 srcpkgs/perl-Sub-Exporter/template            |   1 -
 srcpkgs/perl-Sub-Info/template                |   1 -
 srcpkgs/perl-Sub-Install/template             |   1 -
 srcpkgs/perl-Sub-Quote/template               |   1 -
 srcpkgs/perl-Sub-Uplevel/template             |   1 -
 srcpkgs/perl-Svsh/template                    |   1 -
 srcpkgs/perl-Sys-Syscall/template             |   1 -
 srcpkgs/perl-Term-Animation/template          |   1 -
 srcpkgs/perl-Term-ExtendedColor/template      |   1 -
 srcpkgs/perl-Term-ShellUI/template            |   1 -
 srcpkgs/perl-Term-Table/template              |   1 -
 srcpkgs/perl-Test-Base/template               |   1 -
 srcpkgs/perl-Test-CPAN-Meta/template          |   1 -
 srcpkgs/perl-Test-Class/template              |   1 -
 srcpkgs/perl-Test-Cmd/template                |   1 -
 srcpkgs/perl-Test-Command/template            |   1 -
 srcpkgs/perl-Test-Deep/template               |   1 -
 srcpkgs/perl-Test-Differences/template        |   1 -
 srcpkgs/perl-Test-DistManifest/template       |   1 -
 srcpkgs/perl-Test-Exception/template          |   1 -
 srcpkgs/perl-Test-FailWarnings/template       |   1 -
 srcpkgs/perl-Test-Fatal/template              |   1 -
 srcpkgs/perl-Test-File-ShareDir/template      |   1 -
 srcpkgs/perl-Test-File/template               |   1 -
 srcpkgs/perl-Test-HTTP-Server-Simple/template |   1 -
 srcpkgs/perl-Test-Inter/template              |   1 -
 srcpkgs/perl-Test-MockModule/template         |   1 -
 srcpkgs/perl-Test-Most/template               |   1 -
 srcpkgs/perl-Test-Needs/template              |   1 -
 srcpkgs/perl-Test-NoWarnings/template         |   1 -
 srcpkgs/perl-Test-Output/template             |   1 -
 srcpkgs/perl-Test-Pod-Coverage/template       |   1 -
 srcpkgs/perl-Test-Pod/template                |   1 -
 srcpkgs/perl-Test-Requires/template           |   1 -
 srcpkgs/perl-Test-RequiresInternet/template   |   1 -
 srcpkgs/perl-Test-Script/template             |   1 -
 srcpkgs/perl-Test-SharedFork/template         |   1 -
 srcpkgs/perl-Test-Simple/template             |   1 -
 srcpkgs/perl-Test-Subroutines/template        |   1 -
 srcpkgs/perl-Test-TCP/template                |   1 -
 srcpkgs/perl-Test-Time/template               |   1 -
 srcpkgs/perl-Test-Trap/template               |   1 -
 srcpkgs/perl-Test-UseAllModules/template      |   1 -
 srcpkgs/perl-Test-Warn/template               |   1 -
 srcpkgs/perl-Test-Warnings/template           |   1 -
 srcpkgs/perl-Test-Weaken/template             |   1 -
 srcpkgs/perl-Test-Without-Module/template     |   1 -
 srcpkgs/perl-Test-YAML/template               |   1 -
 srcpkgs/perl-Test-utf8/template               |   1 -
 srcpkgs/perl-Test2-Plugin-NoWarnings/template |   1 -
 srcpkgs/perl-Test2-Suite/template             |   1 -
 srcpkgs/perl-Text-ASCIITable/template         |   1 -
 srcpkgs/perl-Text-Aligner/template            |   1 -
 srcpkgs/perl-Text-Autoformat/template         |   1 -
 srcpkgs/perl-Text-CSV/template                |   1 -
 srcpkgs/perl-Text-Diff/template               |   1 -
 srcpkgs/perl-Text-Glob/template               |   1 -
 srcpkgs/perl-Text-Markdown/template           |   1 -
 srcpkgs/perl-Text-Reform/template             |   1 -
 srcpkgs/perl-Text-Roman/template              |   1 -
 srcpkgs/perl-Text-Table/template              |   1 -
 srcpkgs/perl-Text-Unidecode/template          |   1 -
 srcpkgs/perl-Text-WrapI18N/template           |   1 -
 srcpkgs/perl-Text-XLogfile/template           |   1 -
 srcpkgs/perl-Tie-Cycle/template               |   1 -
 srcpkgs/perl-Tie-Handle-Offset/template       |   1 -
 srcpkgs/perl-Tie-IxHash/template              |   1 -
 srcpkgs/perl-Time-Duration/template           |   1 -
 srcpkgs/perl-Time-modules/template            |   1 -
 srcpkgs/perl-TimeDate/template                |   1 -
 srcpkgs/perl-Tree-DAG_Node/template           |   1 -
 srcpkgs/perl-Try-Tiny/template                |   1 -
 srcpkgs/perl-Types-Serialiser/template        |   1 -
 srcpkgs/perl-URI/template                     |   1 -
 srcpkgs/perl-Unicode-Tussle/template          |   1 -
 srcpkgs/perl-Unix-Uptime/template             |   1 -
 srcpkgs/perl-User-Identity/template           |   1 -
 srcpkgs/perl-WL/template                      |   1 -
 srcpkgs/perl-WWW-Form-UrlEncoded/template     |   1 -
 srcpkgs/perl-WWW-Mechanize/template           |   1 -
 srcpkgs/perl-WWW-RobotRules/template          |   1 -
 srcpkgs/perl-WebService-MusicBrainz/template  |   1 -
 srcpkgs/perl-X11-Protocol-Other/template      |   1 -
 srcpkgs/perl-X11-Protocol/template            |   1 -
 srcpkgs/perl-XML-LibXML-PrettyPrint/template  |   1 -
 srcpkgs/perl-XML-LibXML-Simple/template       |   1 -
 srcpkgs/perl-XML-NamespaceSupport/template    |   1 -
 srcpkgs/perl-XML-Parser-Lite/template         |   1 -
 srcpkgs/perl-XML-SAX-Base/template            |   1 -
 srcpkgs/perl-XML-SAX/template                 |   1 -
 srcpkgs/perl-XML-Simple/template              |   1 -
 srcpkgs/perl-XML-Smart/template               |   1 -
 srcpkgs/perl-XML-Twig/template                |   1 -
 srcpkgs/perl-XML-Writer/template              |   1 -
 srcpkgs/perl-XML-XPath/template               |   1 -
 srcpkgs/perl-YAML-Tiny/template               |   1 -
 srcpkgs/perl-YAML/template                    |   1 -
 srcpkgs/perl-common-sense/template            |   1 -
 srcpkgs/perl-local-lib/template               |   1 -
 srcpkgs/perl-namespace-autoclean/template     |   1 -
 srcpkgs/perl-namespace-clean/template         |   1 -
 srcpkgs/perl-rename/template                  |   1 -
 srcpkgs/perl-strictures/template              |   1 -
 srcpkgs/perl-tainting/template                |   1 -
 srcpkgs/perltidy/template                     |   1 -
 srcpkgs/persepolis/template                   |   1 -
 srcpkgs/peru/template                         |   1 -
 srcpkgs/pex/template                          |   1 -
 srcpkgs/pfetch/template                       |   1 -
 srcpkgs/pgcli/template                        |   1 -
 srcpkgs/phoronix-test-suite/template          |   1 -
 srcpkgs/phpMyAdmin/template                   |   1 -
 srcpkgs/picard/template                       |   1 -
 srcpkgs/pingus/template                       |   1 -
 srcpkgs/pioneer/template                      |   1 -
 srcpkgs/piper/template                        |   1 -
 srcpkgs/pipewire/template                     |   1 -
 srcpkgs/plantuml/template                     |   1 -
 srcpkgs/plasma-workspace-wallpapers/template  |   1 -
 srcpkgs/plata-theme/template                  |   1 -
 srcpkgs/platformio/template                   |   1 -
 srcpkgs/playitslowly/template                 |   1 -
 srcpkgs/plymouth/template                     |   1 -
 srcpkgs/pmbootstrap/template                  |   1 -
 srcpkgs/po4a/template                         |   1 -
 srcpkgs/pockyt/template                       |   1 -
 srcpkgs/podman-compose/template               |   1 -
 srcpkgs/polysh/template                       |   1 -
 srcpkgs/pony-stable/template                  |   1 -
 srcpkgs/ponyc/template                        |   1 -
 srcpkgs/ponysay/template                      |   1 -
 srcpkgs/poppler-data/template                 |   1 -
 srcpkgs/postgresql/template                   |   1 -
 srcpkgs/postgresql12/template                 |   1 -
 srcpkgs/printrun/template                     |   1 -
 srcpkgs/pritunl-client/template               |   1 -
 srcpkgs/profile-cleaner/template              |   1 -
 srcpkgs/protonvpn-cli/template                |   1 -
 srcpkgs/pslist/template                       |   1 -
 srcpkgs/psuinfo/template                      |   1 -
 srcpkgs/public-inbox/template                 |   1 -
 srcpkgs/pulsemixer/template                   |   1 -
 srcpkgs/puppet/template                       |   1 -
 srcpkgs/py3status/template                    |   1 -
 srcpkgs/pychess/template                      |   1 -
 srcpkgs/pycp/template                         |   1 -
 srcpkgs/pylint/template                       |   1 -
 srcpkgs/pyradio/template                      |   1 -
 srcpkgs/pysolfc-cardsets/template             |   1 -
 srcpkgs/pysolfc/template                      |   1 -
 srcpkgs/pystopwatch/template                  |   1 -
 srcpkgs/python-Arrow/template                 |   2 -
 srcpkgs/python-Babel/template                 |   2 -
 srcpkgs/python-BeautifulSoup4/template        |   2 -
 srcpkgs/python-Cheroot/template               |   2 -
 srcpkgs/python-CherryPy/template              |   1 -
 srcpkgs/python-Django/template                |   1 -
 srcpkgs/python-Flask-Assets/template          |   2 -
 srcpkgs/python-Flask-Babel/template           |   2 -
 srcpkgs/python-Flask-Login/template           |   2 -
 srcpkgs/python-Flask-OAuthlib/template        |   2 -
 srcpkgs/python-Flask-Script/template          |   2 -
 srcpkgs/python-Flask-WTF/template             |   2 -
 srcpkgs/python-Flask/template                 |   2 -
 srcpkgs/python-GitPython/template             |   2 -
 srcpkgs/python-IPy/template                   |   2 -
 srcpkgs/python-Jinja2/template                |   2 -
 srcpkgs/python-Mako/template                  |   2 -
 srcpkgs/python-Markdown/template              |   1 -
 srcpkgs/python-Markups/template               |   2 -
 srcpkgs/python-MiniMock/template              |   2 -
 srcpkgs/python-PyHamcrest/template            |   2 -
 srcpkgs/python-PyOpenGL/template              |   2 -
 srcpkgs/python-Pygments/template              |   2 -
 srcpkgs/python-Pyro4/template                 |   2 -
 srcpkgs/python-SPARQLWrapper/template         |   2 -
 srcpkgs/python-Unidecode/template             |   2 -
 srcpkgs/python-WTForms/template               |   2 -
 srcpkgs/python-Werkzeug/template              |   2 -
 srcpkgs/python-Whoosh/template                |   2 -
 srcpkgs/python-Yapsy/template                 |   2 -
 srcpkgs/python-aalib/template                 |   2 -
 srcpkgs/python-alabaster/template             |   2 -
 srcpkgs/python-alembic/template               |   2 -
 srcpkgs/python-ansicolor/template             |   2 -
 srcpkgs/python-appdirs/template               |   2 -
 srcpkgs/python-argh/template                  |   2 -
 srcpkgs/python-arxiv2bib/template             |   2 -
 srcpkgs/python-asn1crypto/template            |   2 -
 srcpkgs/python-astroid/template               |   1 -
 srcpkgs/python-atomicwrites/template          |   2 -
 srcpkgs/python-atspi/template                 |   1 -
 srcpkgs/python-attrs/template                 |   2 -
 srcpkgs/python-audioread/template             |   2 -
 srcpkgs/python-automat/template               |   2 -
 srcpkgs/python-axolotl/template               |   2 -
 srcpkgs/python-b2sdk/template                 |   1 -
 srcpkgs/python-babelfish/template             |   2 -
 srcpkgs/python-backcall/template              |   2 -
 .../python-backports.configparser/template    |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 srcpkgs/python-backports/template             |   1 -
 srcpkgs/python-backports_abc/template         |   1 -
 srcpkgs/python-bibtexparser/template          |   2 -
 srcpkgs/python-bitbucket-api/template         |   2 -
 srcpkgs/python-bleach/template                |   2 -
 srcpkgs/python-blessings/template             |   2 -
 srcpkgs/python-blinker/template               |   2 -
 srcpkgs/python-boto/template                  |   2 -
 srcpkgs/python-botocore/template              |   2 -
 srcpkgs/python-bottle/template                |   2 -
 srcpkgs/python-cached-property/template       |   2 -
 srcpkgs/python-cairocffi/template             |   2 -
 srcpkgs/python-chardet/template               |   2 -
 srcpkgs/python-chroot/template                |   2 -
 srcpkgs/python-cliapp/template                |   1 -
 srcpkgs/python-click-log/template             |   2 -
 srcpkgs/python-click-threading/template       |   2 -
 srcpkgs/python-click/template                 |   2 -
 srcpkgs/python-codespell/template             |   2 -
 srcpkgs/python-colorama/template              |   2 -
 srcpkgs/python-configobj/template             |   2 -
 srcpkgs/python-constantly/template            |   2 -
 srcpkgs/python-construct/template             |   2 -
 srcpkgs/python-contextlib2/template           |   1 -
 srcpkgs/python-cram/template                  |   2 -
 srcpkgs/python-cryptography_vectors/template  |   1 -
 srcpkgs/python-css-parser/template            |   2 -
 srcpkgs/python-cssselect/template             |   2 -
 srcpkgs/python-cssutils/template              |   2 -
 srcpkgs/python-curtsies/template              |   2 -
 srcpkgs/python-cycler/template                |   2 -
 srcpkgs/python-daemonize/template             |   2 -
 srcpkgs/python-dateutil/template              |   2 -
 srcpkgs/python-decorator/template             |   2 -
 srcpkgs/python-defusedxml/template            |   2 -
 srcpkgs/python-discogs_client/template        |   2 -
 srcpkgs/python-distutils-extra/template       |   2 -
 srcpkgs/python-dnspython/template             |   2 -
 srcpkgs/python-docker-pycreds/template        |   2 -
 srcpkgs/python-docker/template                |   2 -
 srcpkgs/python-dockerpty/template             |   2 -
 srcpkgs/python-docopt/template                |   2 -
 srcpkgs/python-docutils/template              |   2 -
 srcpkgs/python-dogpile.cache/template         |   2 -
 srcpkgs/python-dominate/template              |   2 -
 srcpkgs/python-ecdsa/template                 |   2 -
 srcpkgs/python-editor/template                |   2 -
 srcpkgs/python-empy/template                  |   2 -
 srcpkgs/python-enchant/template               |   1 -
 srcpkgs/python-entrypoints/template           |   2 -
 srcpkgs/python-enum34/template                |   1 -
 srcpkgs/python-envdir/template                |   2 -
 srcpkgs/python-enzyme/template                |   2 -
 srcpkgs/python-ewmh/template                  |   2 -
 srcpkgs/python-exifread/template              |   2 -
 srcpkgs/python-fasteners/template             |   2 -
 srcpkgs/python-feedgenerator/template         |   2 -
 srcpkgs/python-feedparser/template            |   2 -
 srcpkgs/python-filetype/template              |   2 -
 srcpkgs/python-flaky/template                 |   2 -
 srcpkgs/python-funcsigs/template              |   1 -
 srcpkgs/python-functools32/template           |   1 -
 srcpkgs/python-future/template                |   2 -
 srcpkgs/python-futures/template               |   1 -
 srcpkgs/python-gitdb/template                 |   2 -
 srcpkgs/python-github3/template               |   2 -
 srcpkgs/python-gitlab/template                |   2 -
 srcpkgs/python-gntp/template                  |   2 -
 srcpkgs/python-gnupg/template                 |   2 -
 srcpkgs/python-gogs-client/template           |   2 -
 srcpkgs/python-guessit/template               |   2 -
 srcpkgs/python-h11/template                   |   2 -
 srcpkgs/python-habanero/template              |   2 -
 srcpkgs/python-hpack/template                 |   2 -
 srcpkgs/python-html2text/template             |   1 -
 srcpkgs/python-html5lib/template              |   2 -
 srcpkgs/python-httmock/template               |   2 -
 srcpkgs/python-httplib2/template              |   2 -
 srcpkgs/python-hyper-h2/template              |   2 -
 srcpkgs/python-hyperframe/template            |   2 -
 srcpkgs/python-hyperlink/template             |   2 -
 srcpkgs/python-hypothesis/template            |   2 -
 srcpkgs/python-icalendar/template             |   2 -
 srcpkgs/python-idna/template                  |   2 -
 srcpkgs/python-imagesize/template             |   2 -
 srcpkgs/python-importlib_metadata/template    |   1 -
 srcpkgs/python-incremental/template           |   2 -
 srcpkgs/python-inotify/template               |   2 -
 srcpkgs/python-ipaddr/template                |   1 -
 srcpkgs/python-ipaddress/template             |   1 -
 srcpkgs/python-iptools/template               |   2 -
 srcpkgs/python-isbnlib/template               |   2 -
 srcpkgs/python-iso-8601/template              |   1 -
 srcpkgs/python-isodate/template               |   2 -
 srcpkgs/python-isort/template                 |   2 -
 srcpkgs/python-itsdangerous/template          |   2 -
 srcpkgs/python-jaraco.functools/template      |   1 -
 srcpkgs/python-jedi/template                  |   2 -
 srcpkgs/python-jmespath/template              |   2 -
 srcpkgs/python-jsonpointer/template           |   2 -
 srcpkgs/python-jsonrpclib/template            |   2 -
 srcpkgs/python-jsonschema/template            |   2 -
 srcpkgs/python-kaptan/template                |   2 -
 srcpkgs/python-keepalive/template             |   2 -
 srcpkgs/python-kitchen/template               |   2 -
 srcpkgs/python-larch/template                 |   1 -
 srcpkgs/python-ldap3/template                 |   2 -
 srcpkgs/python-libtmux/template               |   2 -
 srcpkgs/python-lockfile/template              |   2 -
 srcpkgs/python-logfury/template               |   2 -
 srcpkgs/python-magic/template                 |   2 -
 srcpkgs/python-markdown2/template             |   2 -
 srcpkgs/python-matplotlib/template            |   1 -
 srcpkgs/python-mccabe/template                |   2 -
 srcpkgs/python-mechanize/template             |   2 -
 srcpkgs/python-mistune/template               |   2 -
 srcpkgs/python-mock/template                  |   1 -
 srcpkgs/python-monotonic/template             |   1 -
 srcpkgs/python-more-itertools/template        |   1 -
 srcpkgs/python-mpd2/template                  |   2 -
 srcpkgs/python-mpmath/template                |   2 -
 srcpkgs/python-msp430-tools/template          |   1 -
 srcpkgs/python-mtranslate/template            |   2 -
 srcpkgs/python-munkres/template               |   1 -
 srcpkgs/python-musicbrainzngs/template        |   2 -
 srcpkgs/python-mygpoclient/template           |   2 -
 srcpkgs/python-namedlist/template             |   2 -
 srcpkgs/python-natsort/template               |   2 -
 srcpkgs/python-ndg_httpsclient/template       |   2 -
 srcpkgs/python-netaddr/template               |   2 -
 srcpkgs/python-nose/template                  |   2 -
 srcpkgs/python-nose2/template                 |   2 -
 srcpkgs/python-npyscreen/template             |   2 -
 srcpkgs/python-ntplib/template                |   2 -
 srcpkgs/python-oauth2client/template          |   2 -
 srcpkgs/python-oauthlib/template              |   2 -
 srcpkgs/python-olefile/template               |   2 -
 srcpkgs/python-openssl/template               |   2 -
 srcpkgs/python-packaging/template             |   2 -
 srcpkgs/python-pam/template                   |   2 -
 srcpkgs/python-pandocfilters/template         |   2 -
 srcpkgs/python-paramiko/template              |   2 -
 srcpkgs/python-parse/template                 |   2 -
 srcpkgs/python-parsing/template               |   2 -
 srcpkgs/python-parso/template                 |   1 -
 srcpkgs/python-passlib/template               |   2 -
 srcpkgs/python-pathlib/template               |   1 -
 srcpkgs/python-pathlib2/template              |   2 -
 srcpkgs/python-pathspec/template              |   2 -
 srcpkgs/python-pathtools/template             |   2 -
 srcpkgs/python-pbkdf2/template                |   2 -
 srcpkgs/python-pbr/template                   |   2 -
 srcpkgs/python-pdfrw/template                 |   2 -
 srcpkgs/python-pexpect/template               |   2 -
 srcpkgs/python-pgmigrate/template             |   2 -
 srcpkgs/python-pgpdump/template               |   2 -
 srcpkgs/python-picamera/template              |   2 -
 srcpkgs/python-pickleshare/template           |   2 -
 srcpkgs/python-pip/template                   |   2 -
 srcpkgs/python-pipenv/template                |   2 -
 srcpkgs/python-pkgconfig/template             |   2 -
 srcpkgs/python-pluggy/template                |   1 -
 srcpkgs/python-ply/template                   |   2 -
 srcpkgs/python-podcastparser/template         |   2 -
 srcpkgs/python-polib/template                 |   2 -
 srcpkgs/python-portend/template               |   2 -
 srcpkgs/python-pretend/template               |   1 -
 srcpkgs/python-progress/template              |   2 -
 srcpkgs/python-prometheus_client/template     |   2 -
 srcpkgs/python-prompt_toolkit1/template       |   1 -
 srcpkgs/python-prompt_toolkit2/template       |   1 -
 srcpkgs/python-proselint/template             |   2 -
 srcpkgs/python-protobuf/template              |   2 -
 srcpkgs/python-ptyprocess/template            |   2 -
 srcpkgs/python-py/template                    |   2 -
 srcpkgs/python-pyPEG2/template                |   2 -
 srcpkgs/python-pyacoustid/template            |   2 -
 srcpkgs/python-pyaes/template                 |   2 -
 srcpkgs/python-pyasn1-modules/template        |   2 -
 srcpkgs/python-pyasn1/template                |   2 -
 srcpkgs/python-pycodestyle/template           |   2 -
 srcpkgs/python-pycountry/template             |   2 -
 srcpkgs/python-pycparser/template             |   2 -
 srcpkgs/python-pydns/template                 |   1 -
 srcpkgs/python-pyelftools/template            |   2 -
 srcpkgs/python-pyflakes/template              |   2 -
 srcpkgs/python-pyglet/template                |   2 -
 srcpkgs/python-pykka/template                 |   2 -
 srcpkgs/python-pyotp/template                 |   2 -
 srcpkgs/python-pypcapfile/template            |   1 -
 srcpkgs/python-pyperclip/template             |   2 -
 srcpkgs/python-pyqtgraph/template             |   2 -
 srcpkgs/python-pyrfc3339/template             |   2 -
 srcpkgs/python-pyserial/template              |   2 -
 srcpkgs/python-pysocks/template               |   2 -
 srcpkgs/python-pysrt/template                 |   2 -
 srcpkgs/python-pystache/template              |   2 -
 srcpkgs/python-pyte/template                  |   2 -
 srcpkgs/python-pytest-fixture-config/template |   2 -
 srcpkgs/python-pytest-mock/template           |   2 -
 srcpkgs/python-pytest/template                |   1 -
 srcpkgs/python-pytz/template                  |   2 -
 srcpkgs/python-pyudev/template                |   2 -
 srcpkgs/python-pyx/template                   |   1 -
 srcpkgs/python-pyzbar/template                |   2 -
 srcpkgs/python-qrcode/template                |   2 -
 srcpkgs/python-random2/template               |   2 -
 srcpkgs/python-rarfile/template               |   2 -
 srcpkgs/python-raven/template                 |   2 -
 srcpkgs/python-rdflib/template                |   2 -
 srcpkgs/python-readability-lxml/template      |   2 -
 srcpkgs/python-rebulk/template                |   2 -
 srcpkgs/python-redis/template                 |   2 -
 srcpkgs/python-requests-mock/template         |   2 -
 srcpkgs/python-requests-oauthlib/template     |   2 -
 srcpkgs/python-requests-toolbelt/template     |   2 -
 srcpkgs/python-requests/template              |   2 -
 srcpkgs/python-rfc6555/template               |   2 -
 srcpkgs/python-ripe-atlas-cousteau/template   |   2 -
 srcpkgs/python-ripe-atlas-sagan/template      |   2 -
 srcpkgs/python-rsa/template                   |   2 -
 srcpkgs/python-s3transfer/template            |   2 -
 srcpkgs/python-scour/template                 |   2 -
 srcpkgs/python-selectors2/template            |   1 -
 srcpkgs/python-send2trash/template            |   2 -
 srcpkgs/python-serpent/template               |   1 -
 srcpkgs/python-service_identity/template      |   2 -
 srcpkgs/python-setuptools/template            |   1 -
 srcpkgs/python-sh/template                    |   2 -
 srcpkgs/python-simplebayes/template           |   2 -
 srcpkgs/python-simplegeneric/template         |   2 -
 srcpkgs/python-singledispatch/template        |   1 -
 srcpkgs/python-six/template                   |   2 -
 srcpkgs/python-smmap/template                 |   2 -
 srcpkgs/python-snowballstemmer/template       |   2 -
 srcpkgs/python-socketIO-client/template       |   2 -
 srcpkgs/python-soupsieve/template             |   2 -
 srcpkgs/python-spambayes/template             |   1 -
 srcpkgs/python-sqlalchemy-migrate/template    |   2 -
 srcpkgs/python-sqlparse/template              |   2 -
 srcpkgs/python-stem/template                  |   2 -
 srcpkgs/python-stevedore/template             |   2 -
 srcpkgs/python-stormssh/template              |   2 -
 srcpkgs/python-subliminal/template            |   2 -
 srcpkgs/python-tempita/template               |   2 -
 srcpkgs/python-tempora/template               |   2 -
 srcpkgs/python-termcolor/template             |   2 -
 srcpkgs/python-terminado/template             |   2 -
 srcpkgs/python-testpath/template              |   2 -
 srcpkgs/python-texttable/template             |   2 -
 srcpkgs/python-tkinter/template               |   1 -
 srcpkgs/python-tmuxp/template                 |   2 -
 srcpkgs/python-toml/template                  |   2 -
 srcpkgs/python-tqdm/template                  |   2 -
 srcpkgs/python-tracing/template               |   1 -
 srcpkgs/python-ttystatus/template             |   2 -
 srcpkgs/python-tweepy/template                |   2 -
 srcpkgs/python-twitter/template               |   2 -
 srcpkgs/python-txgithub/template              |   1 -
 srcpkgs/python-typing/template                |   1 -
 srcpkgs/python-unittest-mixins/template       |   2 -
 srcpkgs/python-urbandict/template             |   2 -
 srcpkgs/python-uritemplate/template           |   2 -
 srcpkgs/python-urllib3/template               |   2 -
 srcpkgs/python-urlnorm/template               |   1 -
 srcpkgs/python-urwidtrees/template            |   2 -
 srcpkgs/python-utils/template                 |   2 -
 srcpkgs/python-vint/template                  |   2 -
 srcpkgs/python-vispy/template                 |   1 -
 srcpkgs/python-vobject/template               |   2 -
 srcpkgs/python-voluptuous/template            |   1 -
 srcpkgs/python-watchdog/template              |   2 -
 srcpkgs/python-wcwidth/template               |   2 -
 srcpkgs/python-webassets/template             |   2 -
 srcpkgs/python-webencodings/template          |   2 -
 srcpkgs/python-websocket-client/template      |   2 -
 srcpkgs/python-wheel/template                 |   2 -
 srcpkgs/python-wikipedia/template             |   2 -
 srcpkgs/python-wsproto/template               |   2 -
 srcpkgs/python-xdg/template                   |   2 -
 srcpkgs/python-xlib/template                  |   2 -
 srcpkgs/python-xmldiff/template               |   3 -
 srcpkgs/python-xmltodict/template             |   2 -
 srcpkgs/python-yamllint/template              |   2 -
 srcpkgs/python-zc.lockfile/template           |   2 -
 srcpkgs/python-zipp/template                  |   1 -
 srcpkgs/python-zipstream/template             |   2 -
 srcpkgs/python3-3to2/template                 |   1 -
 srcpkgs/python3-CherryPy/template             |   1 -
 srcpkgs/python3-ConfigArgParse/template       |   1 -
 srcpkgs/python3-Django/template               |   1 -
 srcpkgs/python3-EasyProcess/template          |   1 -
 srcpkgs/python3-Flask-Mail/template           |   1 -
 srcpkgs/python3-Flask-RESTful/template        |   1 -
 srcpkgs/python3-Flask-SQLAlchemy/template     |   1 -
 srcpkgs/python3-Flask-User/template           |   1 -
 srcpkgs/python3-Inflector/template            |   1 -
 srcpkgs/python3-Markdown/template             |   1 -
 srcpkgs/python3-MechanicalSoup/template       |   1 -
 srcpkgs/python3-Pebble/template               |   1 -
 srcpkgs/python3-PyBrowserID/template          |   1 -
 srcpkgs/python3-PyFxA/template                |   1 -
 srcpkgs/python3-PyPDF2/template               |   1 -
 srcpkgs/python3-PyVirtualDisplay/template     |   1 -
 srcpkgs/python3-QtPy/template                 |   1 -
 srcpkgs/python3-ReParser/template             |   1 -
 srcpkgs/python3-Ropper/template               |   1 -
 srcpkgs/python3-SecretStorage/template        |   1 -
 srcpkgs/python3-SoCo/template                 |   1 -
 srcpkgs/python3-Sphinx/template               |   1 -
 srcpkgs/python3-Telethon/template             |   1 -
 srcpkgs/python3-TxSNI/template                |   1 -
 srcpkgs/python3-WebOb/template                |   1 -
 srcpkgs/python3-XlsxWriter/template           |   1 -
 srcpkgs/python3-acme/template                 |   1 -
 srcpkgs/python3-aioamqp/template              |   1 -
 srcpkgs/python3-aiodns/template               |   1 -
 srcpkgs/python3-aiofiles/template             |   1 -
 srcpkgs/python3-aiohttp-cors/template         |   1 -
 srcpkgs/python3-aiohttp-cors2/template        |   1 -
 srcpkgs/python3-aiohttp-sse-client/template   |   1 -
 srcpkgs/python3-aiohttp_socks/template        |   1 -
 srcpkgs/python3-aioinflux/template            |   1 -
 srcpkgs/python3-aionotify/template            |   1 -
 srcpkgs/python3-aioredis/template             |   1 -
 srcpkgs/python3-aiorpcx/template              |   1 -
 srcpkgs/python3-altgraph/template             |   1 -
 srcpkgs/python3-aniso8601/template            |   1 -
 srcpkgs/python3-ansible-lint/template         |   1 -
 srcpkgs/python3-anytree/template              |   1 -
 srcpkgs/python3-applib/template               |   1 -
 srcpkgs/python3-argcomplete/template          |   1 -
 srcpkgs/python3-astral/template               |   1 -
 srcpkgs/python3-astroid/template              |   1 -
 srcpkgs/python3-async-timeout/template        |   1 -
 srcpkgs/python3-async_generator/template      |   1 -
 srcpkgs/python3-atspi/template                |   1 -
 srcpkgs/python3-authres/template              |   1 -
 srcpkgs/python3-autobahn/template             |   1 -
 srcpkgs/python3-blessed/template              |   1 -
 srcpkgs/python3-bokeh/template                |   1 -
 srcpkgs/python3-boltons/template              |   1 -
 srcpkgs/python3-boto3/template                |   1 -
 srcpkgs/python3-breathe/template              |   1 -
 srcpkgs/python3-cachetools/template           |   1 -
 srcpkgs/python3-canonicaljson/template        |   1 -
 srcpkgs/python3-casttube/template             |   1 -
 srcpkgs/python3-certifi/template              |   1 -
 srcpkgs/python3-changelogs/template           |   1 -
 srcpkgs/python3-chess/template                |   1 -
 srcpkgs/python3-chromecast/template           |   1 -
 srcpkgs/python3-cjkwrap/template              |   1 -
 srcpkgs/python3-cli-ui/template               |   1 -
 srcpkgs/python3-cli_helpers/template          |   1 -
 srcpkgs/python3-click-plugins/template        |   1 -
 srcpkgs/python3-cloudscraper/template         |   1 -
 srcpkgs/python3-cmdln/template                |   1 -
 srcpkgs/python3-colorclass/template           |   1 -
 srcpkgs/python3-crccheck/template             |   1 -
 srcpkgs/python3-dateparser/template           |   1 -
 srcpkgs/python3-dbusmock/template             |   1 -
 srcpkgs/python3-deprecation/template          |   1 -
 srcpkgs/python3-discid/template               |   1 -
 srcpkgs/python3-distlib/template              |   1 -
 srcpkgs/python3-dkimpy/template               |   2 -
 srcpkgs/python3-doi/template                  |   1 -
 srcpkgs/python3-dpkt/template                 |   1 -
 srcpkgs/python3-easygui/template              |   1 -
 srcpkgs/python3-elementpath/template          |   1 -
 srcpkgs/python3-eliot/template                |   1 -
 srcpkgs/python3-enchant/template              |   1 -
 srcpkgs/python3-etesync/template              |   1 -
 srcpkgs/python3-ffmpeg-python/template        |   1 -
 srcpkgs/python3-fido2/template                |   1 -
 srcpkgs/python3-filebytes/template            |   1 -
 srcpkgs/python3-fishnet/template              |   1 -
 srcpkgs/python3-flexmock/template             |   1 -
 srcpkgs/python3-freezegun/template            |   1 -
 srcpkgs/python3-frozendict/template           |   1 -
 srcpkgs/python3-furl/template                 |   1 -
 srcpkgs/python3-geojson/template              |   1 -
 srcpkgs/python3-gitchangelog/template         |   1 -
 srcpkgs/python3-google-api-core/template      |   1 -
 .../python3-google-api-python-client/template |   1 -
 srcpkgs/python3-google-auth-httplib2/template |   1 -
 srcpkgs/python3-google-auth/template          |   1 -
 .../python3-googleapis-common-protos/template |   1 -
 srcpkgs/python3-graphviz/template             |   1 -
 srcpkgs/python3-hawkauthlib/template          |   1 -
 srcpkgs/python3-hjson/template                |   1 -
 srcpkgs/python3-hkdf/template                 |   1 -
 srcpkgs/python3-html2text/template            |   1 -
 srcpkgs/python3-humanize/template             |   1 -
 srcpkgs/python3-hypercorn/template            |   1 -
 srcpkgs/python3-i3ipc/template                |   1 -
 srcpkgs/python3-idna-ssl/template             |   1 -
 srcpkgs/python3-ifaddr/template               |   1 -
 srcpkgs/python3-influxdb/template             |   1 -
 srcpkgs/python3-ipython/template              |   1 -
 srcpkgs/python3-ipython_genutils/template     |   1 -
 srcpkgs/python3-ipython_ipykernel/template    |   1 -
 srcpkgs/python3-irc/template                  |   1 -
 srcpkgs/python3-itunespy/template             |   1 -
 srcpkgs/python3-janus/template                |   1 -
 srcpkgs/python3-jaraco.classes/template       |   1 -
 srcpkgs/python3-jaraco.collections/template   |   1 -
 srcpkgs/python3-jaraco.functools/template     |   1 -
 srcpkgs/python3-jaraco.text/template          |   1 -
 srcpkgs/python3-jaraco/template               |   1 -
 srcpkgs/python3-jeepney/template              |   1 -
 srcpkgs/python3-josepy/template               |   1 -
 srcpkgs/python3-jsondiff/template             |   1 -
 srcpkgs/python3-jsonrpc-server/template       |   1 -
 srcpkgs/python3-jupyter_client/template       |   1 -
 srcpkgs/python3-jupyter_console/template      |   1 -
 srcpkgs/python3-jupyter_core/template         |   2 -
 srcpkgs/python3-jupyter_ipywidgets/template   |   1 -
 srcpkgs/python3-jupyter_nbconvert/template    |   1 -
 srcpkgs/python3-jupyter_nbformat/template     |   1 -
 srcpkgs/python3-jupyter_notebook/template     |   1 -
 srcpkgs/python3-jupyter_qtconsole/template    |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-keyring/template              |   1 -
 srcpkgs/python3-keyrings-alt/template         |   1 -
 srcpkgs/python3-language-server/template      |   1 -
 srcpkgs/python3-macaroons/template            |   1 -
 srcpkgs/python3-macholib/template             |   1 -
 srcpkgs/python3-markdown-math/template        |   1 -
 srcpkgs/python3-marshmallow/template          |   1 -
 srcpkgs/python3-matplotlib/template           |   1 -
 srcpkgs/python3-matrix-nio/template           |   1 -
 srcpkgs/python3-minidb/template               |   1 -
 srcpkgs/python3-mock/template                 |   1 -
 srcpkgs/python3-more-itertools/template       |   1 -
 srcpkgs/python3-mpv/template                  |   1 -
 srcpkgs/python3-msoffcrypto-tool/template     |   1 -
 srcpkgs/python3-munkres/template              |   1 -
 srcpkgs/python3-musicpd/template              |   1 -
 srcpkgs/python3-mypy/template                 |   1 -
 srcpkgs/python3-mypy_extensions/template      |   1 -
 srcpkgs/python3-nbxmpp/template               |   2 -
 srcpkgs/python3-neovim/template               |   1 -
 srcpkgs/python3-networkx/template             |   1 -
 srcpkgs/python3-nose-random/template          |   1 -
 srcpkgs/python3-notify2/template              |   1 -
 srcpkgs/python3-ntlm-auth/template            |   1 -
 srcpkgs/python3-oletools/template             |   1 -
 srcpkgs/python3-opcua/template                |   1 -
 srcpkgs/python3-orderedmultidict/template     |   1 -
 srcpkgs/python3-pafy/template                 |   1 -
 srcpkgs/python3-pamqp/template                |   1 -
 srcpkgs/python3-parsedatetime/template        |   1 -
 srcpkgs/python3-parso/template                |   1 -
 srcpkgs/python3-path-and-address/template     |   1 -
 srcpkgs/python3-pcodedmp/template             |   1 -
 srcpkgs/python3-pefile/template               |   1 -
 srcpkgs/python3-pem/template                  |   1 -
 srcpkgs/python3-perf/template                 |   1 -
 srcpkgs/python3-pgspecial/template            |   1 -
 srcpkgs/python3-pgzero/template               |   1 -
 srcpkgs/python3-phonenumbers/template         |   1 -
 srcpkgs/python3-pipx/template                 |   1 -
 srcpkgs/python3-pkginfo/template              |   1 -
 srcpkgs/python3-plotly/template               |   1 -
 srcpkgs/python3-pluggy/template               |   1 -
 srcpkgs/python3-pmw/template                  |   1 -
 srcpkgs/python3-precis-i18n/template          |   1 -
 srcpkgs/python3-priority/template             |   1 -
 srcpkgs/python3-prompt_toolkit/template       |   1 -
 srcpkgs/python3-pulsectl/template             |   1 -
 srcpkgs/python3-pure-protobuf/template        |   1 -
 srcpkgs/python3-py-cpuinfo/template           |   1 -
 srcpkgs/python3-pybind11/template             |   1 -
 srcpkgs/python3-pydbus/template               |   1 -
 srcpkgs/python3-pyfiglet/template             |   1 -
 srcpkgs/python3-pyinfra/template              |   1 -
 srcpkgs/python3-pykeepass/template            |   1 -
 srcpkgs/python3-pykwalify/template            |   1 -
 srcpkgs/python3-pylast/template               |   1 -
 srcpkgs/python3-pylibgen/template             |   1 -
 srcpkgs/python3-pylru/template                |   1 -
 srcpkgs/python3-pysdl2/template               |   1 -
 srcpkgs/python3-pyside2/template              |   4 -
 srcpkgs/python3-pysigset/template             |   1 -
 srcpkgs/python3-pytest-asyncio/template       |   1 -
 srcpkgs/python3-pytest-cov/template           |   1 -
 srcpkgs/python3-pytest-qt/template            |   1 -
 srcpkgs/python3-pytest-xvfb/template          |   1 -
 srcpkgs/python3-pytest/template               |   1 -
 srcpkgs/python3-pythondialog/template         |   1 -
 srcpkgs/python3-pytools/template              |   1 -
 srcpkgs/python3-pywinrm/template              |   1 -
 srcpkgs/python3-pyx/template                  |   1 -
 srcpkgs/python3-quart/template                |   1 -
 srcpkgs/python3-readlike/template             |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-requests-file/template        |   1 -
 srcpkgs/python3-requests-ntlm/template        |   1 -
 srcpkgs/python3-requests-unixsocket/template  |   1 -
 srcpkgs/python3-rss2email/template            |   1 -
 srcpkgs/python3-s-tui/template                |   1 -
 srcpkgs/python3-saml2/template                |   1 -
 srcpkgs/python3-scruffy/template              |   1 -
 srcpkgs/python3-semanticversion/template      |   1 -
 srcpkgs/python3-sentry/template               |   1 -
 srcpkgs/python3-serpent/template              |   1 -
 srcpkgs/python3-setuptools/template           |   1 -
 srcpkgs/python3-shodan/template               |   1 -
 srcpkgs/python3-signedjson/template           |   1 -
 srcpkgs/python3-slugify/template              |   1 -
 srcpkgs/python3-sortedcontainers/template     |   1 -
 srcpkgs/python3-spake2/template               |   1 -
 srcpkgs/python3-sphinx_rtd_theme/template     |   1 -
 .../python3-sphinxcontrib-applehelp/template  |   1 -
 .../python3-sphinxcontrib-devhelp/template    |   1 -
 .../python3-sphinxcontrib-htmlhelp/template   |   1 -
 srcpkgs/python3-sphinxcontrib-jsmath/template |   1 -
 srcpkgs/python3-sphinxcontrib-qthelp/template |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-sphinxcontrib/template        |   1 -
 srcpkgs/python3-subunit/template              |   1 -
 srcpkgs/python3-sympy/template                |   1 -
 srcpkgs/python3-tabulate/template             |   1 -
 srcpkgs/python3-terminaltables/template       |   1 -
 srcpkgs/python3-text-unidecode/template       |   1 -
 srcpkgs/python3-tinycss/template              |   1 -
 srcpkgs/python3-tkinter/template              |   1 -
 srcpkgs/python3-tldextract/template           |   1 -
 srcpkgs/python3-traitlets/template            |   1 -
 srcpkgs/python3-transifex-client/template     |   1 -
 srcpkgs/python3-treq/template                 |   1 -
 srcpkgs/python3-trimesh/template              |   1 -
 srcpkgs/python3-txacme/template               |   1 -
 srcpkgs/python3-txaio/template                |   1 -
 srcpkgs/python3-txtorcon/template             |   1 -
 srcpkgs/python3-typing_extensions/template    |   1 -
 srcpkgs/python3-tzlocal/template              |   1 -
 srcpkgs/python3-unpaddedbase64/template       |   1 -
 srcpkgs/python3-urlgrabber/template           |   1 -
 srcpkgs/python3-usb/template                  |   1 -
 srcpkgs/python3-userpath/template             |   1 -
 srcpkgs/python3-validators/template           |   1 -
 srcpkgs/python3-virtualenv-clone/template     |   1 -
 srcpkgs/python3-virtualenv/template           |   1 -
 srcpkgs/python3-virustotal-api/template       |   1 -
 srcpkgs/python3-xapp/template                 |   1 -
 srcpkgs/python3-xdg-variables/template        |   1 -
 srcpkgs/python3-xlrd/template                 |   1 -
 srcpkgs/python3-xmlschema/template            |   1 -
 srcpkgs/python3-yapf/template                 |   1 -
 srcpkgs/python3-youtube-search/template       |   1 -
 srcpkgs/python3-zeroconf/template             |   1 -
 .../python3-zope.cachedescriptors/template    |   1 -
 srcpkgs/python3-zope.component/template       |   1 -
 srcpkgs/python3-zope.configuration/template   |   1 -
 srcpkgs/python3-zope.copy/template            |   1 -
 srcpkgs/python3-zope.deferredimport/template  |   1 -
 srcpkgs/python3-zope.deprecation/template     |   1 -
 srcpkgs/python3-zope.event/template           |   1 -
 srcpkgs/python3-zope.exceptions/template      |   1 -
 srcpkgs/python3-zope.hookable/template        |   1 -
 srcpkgs/python3-zope.location/template        |   1 -
 srcpkgs/python3-zope.schema/template          |   1 -
 srcpkgs/python3-zope.testing/template         |   1 -
 srcpkgs/python3-zope.testrunner/template      |   1 -
 srcpkgs/pywal/template                        |   1 -
 srcpkgs/qalculate/template                    |   1 -
 srcpkgs/qdirstat/template                     |   1 -
 srcpkgs/qmc2-flyers/template                  |   1 -
 srcpkgs/qmc2-snapshots/template               |   1 -
 srcpkgs/qmc2/template                         |   1 -
 srcpkgs/qmk/template                          |   1 -
 srcpkgs/qomui/template                        |   1 -
 srcpkgs/qrintf/template                       |   1 -
 srcpkgs/qtcreator/template                    |   1 -
 srcpkgs/quixand/template                      |   1 -
 srcpkgs/quodlibet/template                    |   1 -
 srcpkgs/qutebrowser/template                  |   1 -
 srcpkgs/qytdl/template                        |   1 -
 srcpkgs/racket/template                       |   1 -
 srcpkgs/radicale/template                     |   1 -
 srcpkgs/radicale2/template                    |   1 -
 srcpkgs/ranger/template                       |   1 -
 srcpkgs/rapidjson/template                    |   1 -
 srcpkgs/rapidxml/template                     |   1 -
 srcpkgs/rapydscript-ng/template               |   1 -
 srcpkgs/rcm/template                          |   1 -
 srcpkgs/rdumpfs/template                      |   1 -
 srcpkgs/rebar3/template                       |   1 -
 srcpkgs/rednotebook/template                  |   1 -
 srcpkgs/remhind/template                      |   1 -
 srcpkgs/rex/template                          |   1 -
 srcpkgs/rinse/template                        |   1 -
 srcpkgs/ripe-atlas-tools/template             |   1 -
 srcpkgs/rkhunter/template                     |   1 -
 srcpkgs/rocksndiamonds/template               |   1 -
 srcpkgs/rpi-firmware/template                 |   1 -
 srcpkgs/rpmextract/template                   |   1 -
 srcpkgs/rsnapshot/template                    |   1 -
 srcpkgs/rtl8812au-dkms/template               |   1 -
 srcpkgs/rtl8822bu-dkms/template               |   1 -
 srcpkgs/rubber/template                       |   1 -
 srcpkgs/ruby-addressable/template             |   1 -
 srcpkgs/ruby-asciidoctor/template             |   1 -
 srcpkgs/ruby-concurrent-ruby/template         |   1 -
 srcpkgs/ruby-connection_pool/template         |   1 -
 srcpkgs/ruby-deep_merge/template              |   1 -
 srcpkgs/ruby-ethon/template                   |   1 -
 srcpkgs/ruby-faraday/template                 |   1 -
 srcpkgs/ruby-faraday_middleware/template      |   1 -
 srcpkgs/ruby-filesize/template                |   1 -
 srcpkgs/ruby-gh/template                      |   1 -
 srcpkgs/ruby-highline/template                |   1 -
 srcpkgs/ruby-httparty/template                |   1 -
 srcpkgs/ruby-launchy/template                 |   1 -
 srcpkgs/ruby-manpages/template                |   1 -
 srcpkgs/ruby-mime-types-data/template         |   1 -
 srcpkgs/ruby-mime-types/template              |   1 -
 srcpkgs/ruby-multi_json/template              |   1 -
 srcpkgs/ruby-multi_xml/template               |   1 -
 srcpkgs/ruby-multipart-post/template          |   1 -
 srcpkgs/ruby-mustache/template                |   1 -
 srcpkgs/ruby-net-http-persistent/template     |   1 -
 srcpkgs/ruby-net-http-pipeline/template       |   1 -
 srcpkgs/ruby-public_suffix/template           |   1 -
 srcpkgs/ruby-pusher-client/template           |   1 -
 srcpkgs/ruby-rainbow/template                 |   1 -
 srcpkgs/ruby-rb-readline/template             |   1 -
 srcpkgs/ruby-ronn/template                    |   1 -
 srcpkgs/ruby-rubysl-singleton/template        |   1 -
 srcpkgs/ruby-semantic_puppet/template         |   1 -
 srcpkgs/ruby-sync/template                    |   1 -
 srcpkgs/ruby-travis/template                  |   1 -
 srcpkgs/ruby-typhoeus/template                |   1 -
 srcpkgs/ruby-websocket/template               |   1 -
 srcpkgs/ruby/template                         |   2 -
 srcpkgs/run-mailcap/template                  |   1 -
 srcpkgs/runelite-launcher/template            |   1 -
 srcpkgs/runit-iptables/template               |   1 -
 srcpkgs/runit-kdump/template                  |   1 -
 srcpkgs/runit-nftables/template               |   1 -
 srcpkgs/runit-swap/template                   |   1 -
 srcpkgs/rust/template                         |   1 -
 srcpkgs/rxvt-unicode/template                 |   1 -
 srcpkgs/s3cmd/template                        |   1 -
 srcpkgs/s6-dns/template                       |   1 -
 srcpkgs/s6-linux-utils/template               |   1 -
 srcpkgs/s6-networking/template                |   1 -
 srcpkgs/s6-portable-utils/template            |   1 -
 srcpkgs/s6-rc/template                        |   1 -
 srcpkgs/s6/template                           |   1 -
 srcpkgs/sabnzbd/template                      |   1 -
 srcpkgs/safeeyes/template                     |   1 -
 srcpkgs/salt/template                         |   1 -
 srcpkgs/sandfox/template                      |   1 -
 srcpkgs/sauerbraten/template                  |   1 -
 srcpkgs/sbcl/template                         |   1 -
 srcpkgs/sbt/template                          |   1 -
 srcpkgs/scanmem/template                      |   1 -
 srcpkgs/scapy/template                        |   1 -
 srcpkgs/schedule/template                     |   1 -
 srcpkgs/screenFetch/template                  |   1 -
 srcpkgs/screenkey/template                    |   1 -
 srcpkgs/screenplain/template                  |   1 -
 srcpkgs/seafile-libclient/template            |   2 -
 srcpkgs/sendEmail/template                    |   1 -
 srcpkgs/setconf/template                      |   2 -
 srcpkgs/shared-color-targets/template         |   1 -
 srcpkgs/shared-desktop-ontologies/template    |   1 -
 srcpkgs/shiboken2/template                    |   2 -
 srcpkgs/shorewall/template                    |   3 -
 srcpkgs/shunit2/template                      |   1 -
 srcpkgs/sickbeard/template                    |   1 -
 srcpkgs/signond/template                      |   1 -
 srcpkgs/sigrok-firmware-fx2lafw/template      |   1 -
 srcpkgs/skalibs/template                      |   1 -
 srcpkgs/slim-void-theme/template              |   1 -
 srcpkgs/snazzer/template                      |   1 -
 srcpkgs/sonata/template                       |   1 -
 srcpkgs/sound-icons/template                  |   1 -
 srcpkgs/sound-theme-freedesktop/template      |   1 -
 srcpkgs/soundconverter/template               |   1 -
 srcpkgs/soundfont-fluid/template              |   1 -
 srcpkgs/source-sans-pro/template              |   1 -
 srcpkgs/spampd/template                       |   1 -
 srcpkgs/sparsehash/template                   |   1 -
 srcpkgs/spdx-licenses-list/template           |   4 -
 srcpkgs/spectre-meltdown-checker/template     |   1 -
 srcpkgs/speed-dreams/template                 |   1 -
 srcpkgs/speedometer/template                  |   1 -
 srcpkgs/speedtest-cli/template                |   1 -
 srcpkgs/spice-protocol/template               |   1 -
 srcpkgs/sqlmap/template                       |   1 -
 srcpkgs/ssh-audit/template                    |   1 -
 srcpkgs/sshuttle/template                     |   1 -
 srcpkgs/ssoma/template                        |   1 -
 srcpkgs/st/template                           |   1 -
 srcpkgs/starfighter/template                  |   1 -
 srcpkgs/startup/template                      |   1 -
 srcpkgs/statnot/template                      |   1 -
 srcpkgs/stcgal/template                       |   1 -
 srcpkgs/steam-fonts/template                  |   1 -
 srcpkgs/stellarium/template                   |   1 -
 srcpkgs/stig/template                         |   1 -
 srcpkgs/stk/template                          |   1 -
 srcpkgs/stlarch-font/template                 |   1 -
 srcpkgs/stow/template                         |   1 -
 srcpkgs/straw-viewer/template                 |   1 -
 srcpkgs/streamlink/template                   |   1 -
 srcpkgs/strip-nondeterminism/template         |   1 -
 srcpkgs/supertux2/template                    |   1 -
 srcpkgs/supertuxkart/template                 |   1 -
 srcpkgs/surfraw/template                      |   1 -
 srcpkgs/sv-helper/template                    |   1 -
 srcpkgs/swaks/template                        |   1 -
 srcpkgs/sway/template                         |   1 -
 srcpkgs/synapse/template                      |   1 -
 srcpkgs/syncplay/template                     |   1 -
 srcpkgs/syncthing-gtk/template                |   1 -
 srcpkgs/system-config-printer/template        |   1 -
 srcpkgs/t-prot/template                       |   1 -
 srcpkgs/t2ec/template                         |   1 -
 srcpkgs/taisei/template                       |   1 -
 srcpkgs/tango-icon-theme/template             |   1 -
 srcpkgs/tcllib/template                       |   1 -
 srcpkgs/tdrop/template                        |   1 -
 srcpkgs/tegaki-zinnia-japanese/template       |   1 -
 srcpkgs/tekaim/template                       |   1 -
 srcpkgs/telepathy-python/template             |   1 -
 srcpkgs/telepresence/template                 |   1 -
 srcpkgs/termdown/template                     |   1 -
 srcpkgs/terminal_markdown_viewer/template     |   1 -
 srcpkgs/terminator/template                   |   1 -
 srcpkgs/terminus-font/template                |   1 -
 srcpkgs/termsyn-font/template                 |   1 -
 srcpkgs/termtosvg/template                    |   1 -
 srcpkgs/tesseract-ocr/template                | 156 ------------------
 srcpkgs/testssl.sh/template                   |   1 -
 srcpkgs/tewi-font/template                    |   1 -
 srcpkgs/texi2html/template                    |   1 -
 srcpkgs/texlive-basic/template                |   1 -
 srcpkgs/texlive-bibtexextra/template          |   1 -
 srcpkgs/texlive-core/template                 |   1 -
 srcpkgs/texlive-fontsextra/template           |   1 -
 srcpkgs/texlive-formatsextra/template         |   1 -
 srcpkgs/texlive-full/template                 |   1 -
 srcpkgs/texlive-games/template                |   1 -
 srcpkgs/texlive-humanities/template           |   1 -
 srcpkgs/texlive-lang/template                 |   1 -
 srcpkgs/texlive-langchinese/template          |   1 -
 srcpkgs/texlive-langcyrillic/template         |   1 -
 srcpkgs/texlive-langextra/template            |   1 -
 srcpkgs/texlive-langgreek/template            |   1 -
 srcpkgs/texlive-langjapanese/template         |   1 -
 srcpkgs/texlive-langkorean/template           |   1 -
 srcpkgs/texlive-latexextra/template           |   1 -
 srcpkgs/texlive-minimal/template              |   1 -
 srcpkgs/texlive-most/template                 |   1 -
 srcpkgs/texlive-music/template                |   1 -
 srcpkgs/texlive-pictures/template             |   1 -
 srcpkgs/texlive-pstricks/template             |   1 -
 srcpkgs/texlive-publishers/template           |   1 -
 srcpkgs/texlive-science/template              |   1 -
 srcpkgs/thefuck/template                      |   1 -
 srcpkgs/thinkpad-scripts/template             |   1 -
 srcpkgs/tlp/template                          |   2 -
 srcpkgs/tmux-xpanes/template                  |   1 -
 srcpkgs/tmuxc/template                        |   1 -
 srcpkgs/todoman/template                      |   1 -
 srcpkgs/toot/template                         |   1 -
 srcpkgs/tpm/template                          |   1 -
 srcpkgs/trackma/template                      |   1 -
 srcpkgs/treeline/template                     |   1 -
 srcpkgs/tremc/template                        |   1 -
 srcpkgs/trident-icons/template                |   1 -
 srcpkgs/triehash/template                     |   1 -
 srcpkgs/tryton/template                       |   1 -
 srcpkgs/ttf-bitstream-vera/template           |   1 -
 srcpkgs/ttf-material-icons/template           |   1 -
 srcpkgs/ttf-ubuntu-font-family/template       |   1 -
 srcpkgs/tuimoji/template                      |   1 -
 srcpkgs/tuir/template                         |   2 -
 srcpkgs/turses/template                       |   1 -
 srcpkgs/tuxpaint-stamps/template              |   1 -
 srcpkgs/tuxpaint/template                     |   1 -
 srcpkgs/tvbrowser/template                    |   1 -
 srcpkgs/twaindsm/template                     |   1 -
 srcpkgs/twemoji/template                      |   1 -
 srcpkgs/txt2man/template                      |   1 -
 srcpkgs/tzdata/template                       |   1 -
 srcpkgs/tzupdate/template                     |   1 -
 srcpkgs/u-boot-menu/template                  |   1 -
 srcpkgs/uberwriter/template                   |   1 -
 srcpkgs/udiskie/template                      |   1 -
 srcpkgs/ufetch/template                       |   1 -
 srcpkgs/ufoai/template                        |   1 -
 srcpkgs/ufw-extras/template                   |   1 -
 srcpkgs/ufw/template                          |   1 -
 srcpkgs/uhd/template                          |   1 -
 srcpkgs/unicode-emoji/template                |   1 -
 srcpkgs/unknown-horizons/template             |   1 -
 srcpkgs/unoconv/template                      |   1 -
 srcpkgs/unp/template                          |   1 -
 srcpkgs/urbanterror-data/template             |   1 -
 srcpkgs/urlscan/template                      |   1 -
 srcpkgs/urlwatch/template                     |   1 -
 srcpkgs/urxvt-perls/template                  |   1 -
 srcpkgs/usb-modeswitch-data/template          |   1 -
 srcpkgs/vala-panel-appmenu/template           |   1 -
 srcpkgs/vala/template                         |   1 -
 srcpkgs/variety/template                      |   1 -
 srcpkgs/vdirsyncer/template                   |   1 -
 srcpkgs/vdrift/template                       |   1 -
 srcpkgs/vidcutter/template                    |   1 -
 srcpkgs/vigra/template                        |   1 -
 srcpkgs/vim-colorschemes/template             |   1 -
 srcpkgs/vim-gnupg/template                    |   1 -
 srcpkgs/vim/template                          |   1 -
 srcpkgs/vips/template                         |   1 -
 srcpkgs/virt-manager/template                 |   2 -
 srcpkgs/virtme/template                       |   1 -
 srcpkgs/virtualbox-ose/template               |   2 -
 srcpkgs/virtualenvwrapper/template            |   1 -
 srcpkgs/visidata/template                     |   1 -
 srcpkgs/void-artwork/template                 |   1 -
 srcpkgs/void-docs/template                    |   1 -
 srcpkgs/void-release-keys/template            |   1 -
 srcpkgs/void-repo-nonfree/template            |   2 -
 srcpkgs/void-updates/template                 |   1 -
 srcpkgs/volctl/template                       |   1 -
 srcpkgs/voltron/template                      |   1 -
 srcpkgs/vpm/template                          |   1 -
 srcpkgs/vpnc-scripts/template                 |   1 -
 srcpkgs/vpnd/template                         |   1 -
 srcpkgs/vsv/template                          |   1 -
 srcpkgs/warsow-data/template                  |   1 -
 srcpkgs/warzone2100/template                  |   1 -
 srcpkgs/wayland-protocols/template            |   1 -
 srcpkgs/weather/template                      |   1 -
 srcpkgs/wee-slack/template                    |   1 -
 srcpkgs/wesnoth/template                      |   1 -
 srcpkgs/wfuzz/template                        |   1 -
 srcpkgs/wgetpaste/template                    |   1 -
 srcpkgs/when/template                         |   1 -
 srcpkgs/wicd/template                         |   2 -
 srcpkgs/widelands-maps/template               |   1 -
 srcpkgs/widelands/template                    |   1 -
 srcpkgs/wifi-firmware/template                |   1 -
 srcpkgs/wifish/template                       |   1 -
 srcpkgs/wine-gecko/template                   |   1 -
 srcpkgs/wine-mono/template                    |   1 -
 srcpkgs/wine/template                         |   1 -
 srcpkgs/winetricks/template                   |   1 -
 srcpkgs/wok/template                          |   1 -
 srcpkgs/words-mnemonic/template               |   1 -
 srcpkgs/words-web2/template                   |   1 -
 srcpkgs/wpgtk/template                        |   1 -
 srcpkgs/wpull/template                        |   1 -
 srcpkgs/wqy-microhei/template                 |   1 -
 srcpkgs/xapian-core/template                  |   1 -
 srcpkgs/xbitmaps/template                     |   1 -
 srcpkgs/xbps-triggers/template                |   1 -
 srcpkgs/xcb-proto/template                    |   1 -
 srcpkgs/xcursor-themes/template               |   1 -
 srcpkgs/xcursor-vanilla-dmz/template          |   1 -
 srcpkgs/xdg-utils/template                    |   1 -
 srcpkgs/xdgmenumaker/template                 |   1 -
 srcpkgs/xdot/template                         |   1 -
 srcpkgs/xed/template                          |   1 -
 srcpkgs/xerces-c/template                     |   1 -
 srcpkgs/xfwm4-themes/template                 |   1 -
 srcpkgs/xkb-qwerty-fr/template                |   1 -
 srcpkgs/xkcdpass/template                     |   1 -
 srcpkgs/xkeyboard-config/template             |   1 -
 srcpkgs/xmltoman/template                     |   1 -
 srcpkgs/xmoto/template                        |   1 -
 srcpkgs/xonotic-data-low/template             |   1 -
 srcpkgs/xonotic-data/template                 |   1 -
 srcpkgs/xonsh/template                        |   1 -
 srcpkgs/xorg-cf-files/template                |   1 -
 srcpkgs/xorg-util-macros/template             |   1 -
 srcpkgs/xtools/template                       |   1 -
 srcpkgs/xtrans/template                       |   1 -
 srcpkgs/xye/template                          |   1 -
 srcpkgs/yadm/template                         |   1 -
 srcpkgs/yaru-plus/template                    |   1 -
 srcpkgs/yaru/template                         |   1 -
 srcpkgs/yelp-tools/template                   |   1 -
 srcpkgs/yelp-xsl/template                     |   1 -
 srcpkgs/you-get/template                      |   1 -
 srcpkgs/youtube-dl/template                   |   1 -
 srcpkgs/youtube-viewer/template               |   1 -
 srcpkgs/yq/template                           |   1 -
 srcpkgs/ytcc/template                         |   1 -
 srcpkgs/ytmdl/template                        |   1 -
 srcpkgs/yturl/template                        |   1 -
 srcpkgs/yubikey-manager/template              |   1 -
 srcpkgs/zabbix/template                       |   1 -
 srcpkgs/zd1211-firmware/template              |   1 -
 srcpkgs/zeek/template                         |   3 -
 srcpkgs/zeroinstall/template                  |   1 -
 srcpkgs/zfs-auto-snapshot/template            |   1 -
 srcpkgs/zfs-prune-snapshots/template          |   1 -
 srcpkgs/zfsbootmenu/template                  |   1 -
 srcpkgs/zim/template                          |   1 -
 srcpkgs/zola/template                         |   1 -
 srcpkgs/zookeeper/template                    |   1 -
 srcpkgs/zramen/template                       |   1 -
 srcpkgs/zsh-autosuggestions/template          |   1 -
 srcpkgs/zsh-completions/template              |   1 -
 srcpkgs/zsh-history-substring-search/template |   1 -
 srcpkgs/zsh-syntax-highlighting/template      |   1 -
 srcpkgs/zynaddsubfx/template                  |   1 -
 srcpkgs/zzz-user-hooks/template               |   1 -
 2111 files changed, 2743 deletions(-)

diff --git a/srcpkgs/0ad-data/template b/srcpkgs/0ad-data/template
index 325dfbf5cc6..f9e93d4c324 100644
--- a/srcpkgs/0ad-data/template
+++ b/srcpkgs/0ad-data/template
@@ -2,7 +2,6 @@
 pkgname=0ad-data
 version=0.0.23b
 revision=1
-archs=noarch
 wrksrc="0ad-${version}-alpha"
 short_desc="Historically-based real-time strategy game (data files)"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/66/template b/srcpkgs/66/template
index ccd676575f9..cd81c7d184d 100644
--- a/srcpkgs/66/template
+++ b/srcpkgs/66/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 66-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}-${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/7kaa/template b/srcpkgs/7kaa/template
index ade56365ec1..5bd2a6a693f 100644
--- a/srcpkgs/7kaa/template
+++ b/srcpkgs/7kaa/template
@@ -20,7 +20,6 @@ pre_configure() {
 }
 
 7kaa-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/7kaa
diff --git a/srcpkgs/Adapta/template b/srcpkgs/Adapta/template
index 03a736b1cc8..7c1029ba44a 100644
--- a/srcpkgs/Adapta/template
+++ b/srcpkgs/Adapta/template
@@ -2,7 +2,6 @@
 pkgname=Adapta
 version=3.95.0.11
 revision=2
-archs=noarch
 wrksrc="adapta-gtk-theme-$version"
 build_style=gnu-configure
 hostmakedepends="automake glib-devel inkscape parallel pkg-config
diff --git a/srcpkgs/Autodia/template b/srcpkgs/Autodia/template
index 83cb4e1fcca..8e91247e940 100644
--- a/srcpkgs/Autodia/template
+++ b/srcpkgs/Autodia/template
@@ -2,7 +2,6 @@
 pkgname=Autodia
 version=2.14
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/CImg/template b/srcpkgs/CImg/template
index a1df4972bfc..2db3a8d4108 100644
--- a/srcpkgs/CImg/template
+++ b/srcpkgs/CImg/template
@@ -2,7 +2,6 @@
 pkgname=CImg
 version=2.9.1
 revision=1
-archs=noarch
 wrksrc="CImg-v.${version}"
 depends="libgraphicsmagick-devel fftw-devel"
 short_desc="Open-source C++ toolkit for image processing"
diff --git a/srcpkgs/Cataclysm-DDA/template b/srcpkgs/Cataclysm-DDA/template
index 6b7ef57eed1..b04b27b7d32 100644
--- a/srcpkgs/Cataclysm-DDA/template
+++ b/srcpkgs/Cataclysm-DDA/template
@@ -57,7 +57,6 @@ Cataclysm-DDA-tiles_package() {
 
 Cataclysm-DDA-tiles-data_package() {
 	short_desc+=" - tiles data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cataclysm-dda/gfx
 		vmove usr/share/cataclysm-dda/sound
@@ -66,7 +65,6 @@ Cataclysm-DDA-tiles-data_package() {
 
 Cataclysm-DDA-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/Cendric/template b/srcpkgs/Cendric/template
index 6f5c16f479b..6dcc1f33e70 100644
--- a/srcpkgs/Cendric/template
+++ b/srcpkgs/Cendric/template
@@ -24,7 +24,6 @@ post_install() {
 Cendric-data_package() {
 	short_desc+=" - data files"
 	repository=nonfree
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/ClusterSSH/template b/srcpkgs/ClusterSSH/template
index ade9b7fefa0..a614f1643c3 100644
--- a/srcpkgs/ClusterSSH/template
+++ b/srcpkgs/ClusterSSH/template
@@ -2,7 +2,6 @@
 pkgname=ClusterSSH
 version=4.14
 revision=1
-archs=noarch
 wrksrc="clusterssh-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="xterm openssh
diff --git a/srcpkgs/ETL/template b/srcpkgs/ETL/template
index 7b8b01956c3..111f96217d0 100644
--- a/srcpkgs/ETL/template
+++ b/srcpkgs/ETL/template
@@ -3,7 +3,6 @@ pkgname=ETL
 reverts="1.3.11_1"
 version=1.2.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Extended Template Library"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/Electron-Cash/template b/srcpkgs/Electron-Cash/template
index 6cf5a5db45c..131db532944 100644
--- a/srcpkgs/Electron-Cash/template
+++ b/srcpkgs/Electron-Cash/template
@@ -2,7 +2,6 @@
 pkgname=Electron-Cash
 version=4.0.12
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-PyQt5 python3-PyQt5-svg python3-qrcode python3-dateutil
diff --git a/srcpkgs/Fonts-TLWG/template b/srcpkgs/Fonts-TLWG/template
index 0baf7333541..42b5d2a74ee 100644
--- a/srcpkgs/Fonts-TLWG/template
+++ b/srcpkgs/Fonts-TLWG/template
@@ -2,7 +2,6 @@
 pkgname=Fonts-TLWG
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="fonts-tlwg-${version}"
 build_style=gnu-configure
 configure_args="--with-ttfdir=/usr/share/fonts/TTF --with-otfdir=/usr/share/fonts/OTF
@@ -22,7 +21,6 @@ post_install() {
 }
 
 Fonts-TLWG-otf_package() {
-	archs=noarch
 	short_desc="Thai fonts OTF"
 	font_dirs="/usr/share/fonts/OTF"
 	pkg_install() {
diff --git a/srcpkgs/GCP-Guest-Environment/template b/srcpkgs/GCP-Guest-Environment/template
index 77e5e396d4f..2c3db4f6f20 100644
--- a/srcpkgs/GCP-Guest-Environment/template
+++ b/srcpkgs/GCP-Guest-Environment/template
@@ -2,7 +2,6 @@
 pkgname=GCP-Guest-Environment
 version=20191210
 revision=1
-archs=noarch
 wrksrc="compute-image-packages-${version}"
 build_wrksrc="packages/python-google-compute-engine"
 build_style=python2-module
diff --git a/srcpkgs/Grammalecte/template b/srcpkgs/Grammalecte/template
index 00e2bbb34a8..f62e8343202 100644
--- a/srcpkgs/Grammalecte/template
+++ b/srcpkgs/Grammalecte/template
@@ -2,7 +2,6 @@
 pkgname=Grammalecte
 version=1.6.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=python3-module
 hostmakedepends="python3-setuptools bsdtar"
diff --git a/srcpkgs/ISOEnts/template b/srcpkgs/ISOEnts/template
index 3f44042e507..0727d8647d6 100644
--- a/srcpkgs/ISOEnts/template
+++ b/srcpkgs/ISOEnts/template
@@ -2,7 +2,6 @@
 pkgname=ISOEnts
 version=1986
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip bsdtar"
 depends="xmlcatmgr"
diff --git a/srcpkgs/Komikku/template b/srcpkgs/Komikku/template
index 9822ee43fc8..06eeaa5ed38 100644
--- a/srcpkgs/Komikku/template
+++ b/srcpkgs/Komikku/template
@@ -2,7 +2,6 @@
 pkgname=Komikku
 version=0.15.1
 revision=1
-archs=noarch
 wrksrc=Komikku-v${version}
 build_style=meson
 hostmakedepends="appstream-glib desktop-file-utils glib-devel gettext
diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
index a73cc80c9e5..ea588136f8a 100644
--- a/srcpkgs/LanguageTool/template
+++ b/srcpkgs/LanguageTool/template
@@ -2,7 +2,6 @@
 pkgname=LanguageTool
 version=4.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Checks your writing in more than 20 languages"
diff --git a/srcpkgs/MoinMoin/template b/srcpkgs/MoinMoin/template
index 2c13dc6a06f..998546ac5b9 100644
--- a/srcpkgs/MoinMoin/template
+++ b/srcpkgs/MoinMoin/template
@@ -2,7 +2,6 @@
 pkgname=MoinMoin
 version=1.9.10
 revision=1
-archs=noarch
 wrksrc=moin-${version}
 build_style=python2-module
 pycompile_module="MoinMoin jabberbot"
diff --git a/srcpkgs/OpenCPN-gshhs-crude/template b/srcpkgs/OpenCPN-gshhs-crude/template
index b2c64e94093..027b3c7a66b 100644
--- a/srcpkgs/OpenCPN-gshhs-crude/template
+++ b/srcpkgs/OpenCPN-gshhs-crude/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://opencpn.org/"
 distfiles="https://launchpad.net/~opencpn/+archive/ubuntu/opencpn/+files/opencpn-gshhs_${version}.orig.tar.xz"
 checksum=bb45b68af09d5a995594748f507cd533505264f0483c8cb8425693331cccf203
-archs=noarch
 
 do_install() {
 	for file in gshhs/*; do
@@ -19,7 +18,6 @@ do_install() {
 
 OpenCPN-gshhs-low_package() {
 	short_desc="${short_desc/Crude/Low}"
-	archs=noarch
 	depends="OpenCPN-gshhs-crude"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-c-1.dat
@@ -30,7 +28,6 @@ OpenCPN-gshhs-low_package() {
 
 OpenCPN-gshhs-intermediate_package() {
 	short_desc="${short_desc/Crude/Intermediate}"
-	archs=noarch
 	depends="OpenCPN-gshhs-low"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-i-1.dat
@@ -41,7 +38,6 @@ OpenCPN-gshhs-intermediate_package() {
 
 OpenCPN-gshhs-high_package() {
 	short_desc="${short_desc/Crude/High}"
-	archs=noarch
 	depends="OpenCPN-gshhs-intermediate"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-h-1.dat
@@ -52,7 +48,6 @@ OpenCPN-gshhs-high_package() {
 
 OpenCPN-gshhs-full_package() {
 	short_desc="${short_desc/Crude/Full}"
-	archs=noarch
 	depends="OpenCPN-gshhs-high"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-f-1.dat
diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index ccae6d0282e..f8ea2a4b35b 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -2,7 +2,6 @@
 pkgname=OpenLP
 version=2.4.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="openlp"
 hostmakedepends="python3-setuptools qt5-host-tools"
diff --git a/srcpkgs/OpenRCT2/template b/srcpkgs/OpenRCT2/template
index 5b0c68a5f80..14e114c58fc 100644
--- a/srcpkgs/OpenRCT2/template
+++ b/srcpkgs/OpenRCT2/template
@@ -53,7 +53,6 @@ post_extract() {
 
 OpenRCT2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openrct2
 	}
diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index e649885fda0..7f06aff8d51 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -2,7 +2,6 @@
 pkgname=PhotoCollage
 version=1.4.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3"
 depends="python3-Pillow python3-gobject"
diff --git a/srcpkgs/ProofGeneral/template b/srcpkgs/ProofGeneral/template
index 208e58f8d68..1b0aaf72921 100644
--- a/srcpkgs/ProofGeneral/template
+++ b/srcpkgs/ProofGeneral/template
@@ -3,7 +3,6 @@ pkgname=ProofGeneral
 version=4.4
 revision=2
 wrksrc="PG-${version}"
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="emacs which"
 depends="emacs perl"
diff --git a/srcpkgs/PyInstaller/template b/srcpkgs/PyInstaller/template
index ad2dadf10f3..4b3d02468de 100644
--- a/srcpkgs/PyInstaller/template
+++ b/srcpkgs/PyInstaller/template
@@ -2,7 +2,6 @@
 pkgname=PyInstaller
 version=3.6
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3 python3-altgraph"
diff --git a/srcpkgs/Pyrex/template b/srcpkgs/Pyrex/template
index 5ab3598b1c0..c1d90574aaf 100644
--- a/srcpkgs/Pyrex/template
+++ b/srcpkgs/Pyrex/template
@@ -2,7 +2,6 @@
 pkgname=Pyrex
 version=0.9.9
 revision=4
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python-devel"
diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index a6551fbdf7c..5d657ed46ca 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -2,7 +2,6 @@
 pkgname=ReText
 version=7.0.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ReText"
 wrksrc="${pkgname,,}-${version}"
diff --git a/srcpkgs/SMC/template b/srcpkgs/SMC/template
index 00f9763bfdd..623bde41157 100644
--- a/srcpkgs/SMC/template
+++ b/srcpkgs/SMC/template
@@ -37,7 +37,6 @@ post_install() {
 
 SMC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/smc
 	}
diff --git a/srcpkgs/SPIRV-Headers/template b/srcpkgs/SPIRV-Headers/template
index 6cc87dc386c..a5e9c17a3ce 100644
--- a/srcpkgs/SPIRV-Headers/template
+++ b/srcpkgs/SPIRV-Headers/template
@@ -2,7 +2,6 @@
 pkgname=SPIRV-Headers
 version=1.5.3
 revision=1
-archs=noarch
 build_style=cmake
 short_desc="Machine-readable files for the SPIR-V Registry"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index da77237f898..3d03d7b4966 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -2,7 +2,6 @@
 pkgname=Solaar
 version=1.0.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyudev"
diff --git a/srcpkgs/TSC/template b/srcpkgs/TSC/template
index 10150e7481c..f28c36a1aa1 100644
--- a/srcpkgs/TSC/template
+++ b/srcpkgs/TSC/template
@@ -25,7 +25,6 @@ post_install() {
 
 TSC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tsc
 	}
diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 3bbba11db49..549e5635542 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -6,7 +6,6 @@ build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"
 depends="python3-gobject python3-requests libnotify"
-archs=noarch
 short_desc="Daemon that notifies you about your followed channels on Twitch.TV"
 maintainer="Giedrius Statkevičius <giedriuswork@gmail.com>"
 license="GPL-3"
diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index 29e9ed3761b..df2902a9edd 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -2,7 +2,6 @@
 pkgname=Uranium
 version=4.6.2
 revision=2
-archs=noarch
 build_style=cmake
 pycompile_dirs="usr/lib/uranium/plugins"
 hostmakedepends="python3"
diff --git a/srcpkgs/Vulkan-Headers/template b/srcpkgs/Vulkan-Headers/template
index 2fae2dda25b..3c089e9f79f 100644
--- a/srcpkgs/Vulkan-Headers/template
+++ b/srcpkgs/Vulkan-Headers/template
@@ -2,7 +2,6 @@
 pkgname=Vulkan-Headers
 version=1.2.141
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=cmake
 short_desc="Vulkan header files"
diff --git a/srcpkgs/WiringPi/template b/srcpkgs/WiringPi/template
index 562506c41b5..b9e5c5cbff7 100644
--- a/srcpkgs/WiringPi/template
+++ b/srcpkgs/WiringPi/template
@@ -104,7 +104,6 @@ WiringPi-gpio_package() {
 
 WiringPi-examples_package() {
 	short_desc+=" - examples"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/share/examples
 	}
diff --git a/srcpkgs/WoeUSB/template b/srcpkgs/WoeUSB/template
index 1bb0efa56ff..1ac9d5134a1 100644
--- a/srcpkgs/WoeUSB/template
+++ b/srcpkgs/WoeUSB/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 WoeUSB-cli_package() {
-	archs=noarch
 	depends="bash grub ntfs-3g parted wget"
 	short_desc+=" - command line only"
 	pkg_install() {
diff --git a/srcpkgs/XyGrib-maps/template b/srcpkgs/XyGrib-maps/template
index 797bb62d81a..6c5f0672785 100644
--- a/srcpkgs/XyGrib-maps/template
+++ b/srcpkgs/XyGrib-maps/template
@@ -11,7 +11,6 @@ license="GPL-3.0-or-later"
 homepage="https://opengribs.org"
 distfiles="https://github.com/opengribs/XyGrib/releases/download/v${_xygribver}/XyGrib___High_Resolution_Maps.tar.gz"
 checksum=164d0bca0ab118f242d6d10dfb6e6b2f3eacdcf2781b532336e02a2d223a0d0d
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/XyGrib
diff --git a/srcpkgs/abcde/template b/srcpkgs/abcde/template
index 49fe4f97768..b2a8e0117b2 100644
--- a/srcpkgs/abcde/template
+++ b/srcpkgs/abcde/template
@@ -2,7 +2,6 @@
 pkgname=abcde
 version=2.9.3
 revision=1
-archs=noarch
 conf_files="/etc/${pkgname}.conf"
 depends="cd-discid perl-MusicBrainz-DiscID perl-WebService-MusicBrainz vorbis-tools"
 short_desc="CLI audio CD encoder and tagger"
diff --git a/srcpkgs/abi-compliance-checker/template b/srcpkgs/abi-compliance-checker/template
index 644acae70e6..14e8a5e27e3 100644
--- a/srcpkgs/abi-compliance-checker/template
+++ b/srcpkgs/abi-compliance-checker/template
@@ -2,7 +2,6 @@
 pkgname=abi-compliance-checker
 version=2.3
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="binutils ctags perl"
 checkdepends="binutils ctags"
diff --git a/srcpkgs/ack/template b/srcpkgs/ack/template
index 47d3e6c3550..b3ec895eee3 100644
--- a/srcpkgs/ack/template
+++ b/srcpkgs/ack/template
@@ -2,7 +2,6 @@
 pkgname=ack
 version=3.3.1
 revision=1
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=perl-module
 hostmakedepends="perl perl-File-Next"
diff --git a/srcpkgs/acpilight/template b/srcpkgs/acpilight/template
index 89236bd4c3f..40288bad23b 100644
--- a/srcpkgs/acpilight/template
+++ b/srcpkgs/acpilight/template
@@ -2,7 +2,6 @@
 pkgname=acpilight
 version=1.2
 revision=1
-archs=noarch
 wrksrc="acpilight-v${version}"
 depends="python3"
 short_desc="Backward-compatibile xbacklight replacement"
diff --git a/srcpkgs/acr/template b/srcpkgs/acr/template
index 773799454b6..6ec88da7519 100644
--- a/srcpkgs/acr/template
+++ b/srcpkgs/acr/template
@@ -2,7 +2,6 @@
 pkgname=acr
 version=1.9.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="AutoConf Replacement"
 maintainer="Felipe Nogueira <contato.fnog@gmail.com>"
diff --git a/srcpkgs/adapta-kde/template b/srcpkgs/adapta-kde/template
index 1fc16324be1..25278735438 100644
--- a/srcpkgs/adapta-kde/template
+++ b/srcpkgs/adapta-kde/template
@@ -2,7 +2,6 @@
 pkgname=adapta-kde
 version=20180828
 revision=1
-archs=noarch
 short_desc="Port of the popular GTK theme Adapta for Plasma 5 desktop"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/adwaita-icon-theme/template b/srcpkgs/adwaita-icon-theme/template
index febd2915be6..b3ba7687d1b 100644
--- a/srcpkgs/adwaita-icon-theme/template
+++ b/srcpkgs/adwaita-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-icon-theme
 version=3.36.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 depends="librsvg"
diff --git a/srcpkgs/adwaita-plus/template b/srcpkgs/adwaita-plus/template
index c5faf56aeb2..b0f0962ec9c 100644
--- a/srcpkgs/adwaita-plus/template
+++ b/srcpkgs/adwaita-plus/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-plus
 version=5.0
 revision=1
-archs=noarch
 short_desc="Modern third-party icons theme based on GNOME's Adwaita"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index 2b2614a4eba..1084b32e97a 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -2,7 +2,6 @@
 pkgname=afew
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx pkg-config"
 depends="notmuch-python3 python3-dkimpy python3-chardet notmuch"
diff --git a/srcpkgs/aisleriot/template b/srcpkgs/aisleriot/template
index 1b5b594ddd9..29a66674f63 100644
--- a/srcpkgs/aisleriot/template
+++ b/srcpkgs/aisleriot/template
@@ -20,7 +20,6 @@ checksum=eed8edb267a9fa61651b1d3a22a83f51415a4e55d76d5ae737e18a9e9477016b
 
 aisleriot-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/alacritty/template b/srcpkgs/alacritty/template
index 74ddfcd6d65..479c02990c4 100644
--- a/srcpkgs/alacritty/template
+++ b/srcpkgs/alacritty/template
@@ -28,7 +28,6 @@ post_install() {
 
 alacritty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/albatross-themes/template b/srcpkgs/albatross-themes/template
index ca8ff1b363c..1473a296df5 100644
--- a/srcpkgs/albatross-themes/template
+++ b/srcpkgs/albatross-themes/template
@@ -2,7 +2,6 @@
 pkgname=albatross-themes
 version=1.7.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant black GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/alienfx/template b/srcpkgs/alienfx/template
index 62ee564ad4b..f48ad0461aa 100644
--- a/srcpkgs/alienfx/template
+++ b/srcpkgs/alienfx/template
@@ -2,7 +2,6 @@
 pkgname=alienfx
 version=2.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="alienfx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index c3b1fb07414..8ea0a60ed04 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -2,7 +2,6 @@
 pkgname=alot
 version=0.9.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools python3-Twisted notmuch-python3 python3-configobj
diff --git a/srcpkgs/alsa-firmware/template b/srcpkgs/alsa-firmware/template
index 63d37de92b1..45d6a2be1f1 100644
--- a/srcpkgs/alsa-firmware/template
+++ b/srcpkgs/alsa-firmware/template
@@ -2,7 +2,6 @@
 pkgname=alsa-firmware
 version=1.2.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-hotplug-dir=/usr/lib/firmware"
 short_desc="Advanced Linux Sound Architecture (ALSA) firmware"
diff --git a/srcpkgs/amiri-font/template b/srcpkgs/amiri-font/template
index 039962190ae..f1de46736dd 100644
--- a/srcpkgs/amiri-font/template
+++ b/srcpkgs/amiri-font/template
@@ -2,7 +2,6 @@
 pkgname=amiri-font
 version=0.113
 revision=1
-archs=noarch
 wrksrc="Amiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/ampache/template b/srcpkgs/ampache/template
index 3639557449a..99b249cda74 100644
--- a/srcpkgs/ampache/template
+++ b/srcpkgs/ampache/template
@@ -2,7 +2,6 @@
 pkgname=ampache
 version=3.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="php mysql"
diff --git a/srcpkgs/angrysearch/template b/srcpkgs/angrysearch/template
index 88a6954ac85..3bd8eee7f3c 100644
--- a/srcpkgs/angrysearch/template
+++ b/srcpkgs/angrysearch/template
@@ -5,7 +5,6 @@ revision=2
 wrksrc="ANGRYsearch-${version}"
 hostmakedepends="python3"
 depends="python3-PyQt5 xdg-utils"
-archs=noarch
 short_desc="Instant file search"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/anki/template b/srcpkgs/anki/template
index a25bc0d4e7e..92e66d28c52 100644
--- a/srcpkgs/anki/template
+++ b/srcpkgs/anki/template
@@ -2,7 +2,6 @@
 pkgname=anki
 version=2.1.15
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="python3-PyQt5-webengine python3-requests python3-SQLAlchemy
  python3-PyAudio python3-mpv python3-Markdown python3-send2trash
diff --git a/srcpkgs/ansi/template b/srcpkgs/ansi/template
index be114d5203b..705b26bad4e 100644
--- a/srcpkgs/ansi/template
+++ b/srcpkgs/ansi/template
@@ -2,7 +2,6 @@
 pkgname=ansi
 version=2.0.4
 revision=1
-archs=noarch
 depends="bash"
 short_desc="ANSI escape codes in pure Bash"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 94c470574ae..581ce88bc5e 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -2,7 +2,6 @@
 pkgname=ansible
 version=2.9.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-cryptography python3-Jinja2 python3-paramiko
diff --git a/srcpkgs/antlr3-bin/template b/srcpkgs/antlr3-bin/template
index 305df8ae69e..2ed87245670 100644
--- a/srcpkgs/antlr3-bin/template
+++ b/srcpkgs/antlr3-bin/template
@@ -2,7 +2,6 @@
 pkgname=antlr3-bin
 version=3.4
 revision=1
-archs=noarch
 build_style=fetch
 depends="virtual?java-runtime"
 short_desc="Parser generator for C++, C#, Java, and Python"
diff --git a/srcpkgs/apache-ant/template b/srcpkgs/apache-ant/template
index 80a738985a0..4db3a4aa0be 100644
--- a/srcpkgs/apache-ant/template
+++ b/srcpkgs/apache-ant/template
@@ -2,7 +2,6 @@
 pkgname=apache-ant
 version=1.10.8
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-runtime"
 short_desc="Java library and command-line tool that help building software"
@@ -42,7 +41,6 @@ do_install() {
 apache-ant-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove $_prefix/manual
 	}
diff --git a/srcpkgs/apache-jmeter/template b/srcpkgs/apache-jmeter/template
index 73f8f06fd96..eaa6eda1d05 100644
--- a/srcpkgs/apache-jmeter/template
+++ b/srcpkgs/apache-jmeter/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 apache-jmeter-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apache-maven/template b/srcpkgs/apache-maven/template
index a6c9fd3e5a2..956b472f373 100644
--- a/srcpkgs/apache-maven/template
+++ b/srcpkgs/apache-maven/template
@@ -2,7 +2,6 @@
 pkgname=apache-maven
 version=3.6.3
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-environment"
 short_desc="Software project management and comprehension tool"
diff --git a/srcpkgs/apache-storm/template b/srcpkgs/apache-storm/template
index 6ae346a0557..3efd37f6052 100644
--- a/srcpkgs/apache-storm/template
+++ b/srcpkgs/apache-storm/template
@@ -2,7 +2,6 @@
 pkgname=apache-storm
 version=2.2.0
 revision=2
-archs=noarch
 depends="virtual?java-runtime python3 bash"
 short_desc="Distributed realtime computation system"
 maintainer="bougyman <bougyman@voidlinux.org>"
diff --git a/srcpkgs/apache-tomcat/template b/srcpkgs/apache-tomcat/template
index 7cab7d1d9af..d8abc369365 100644
--- a/srcpkgs/apache-tomcat/template
+++ b/srcpkgs/apache-tomcat/template
@@ -40,7 +40,6 @@ post_install() {
 }
 
 apache-tomcat-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -58,7 +57,6 @@ apache-tomcat-examples_package() {
 }
 
 apache-tomcat-manager_package() {
-	archs=noarch
 	short_desc+=" - Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -67,7 +65,6 @@ apache-tomcat-manager_package() {
 }
 
 apache-tomcat-host-manager_package() {
-	archs=noarch
 	short_desc+=" - Host Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index cd7073fdcfb..3fc8aaea479 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -63,7 +63,6 @@ post_install() {
 }
 
 apparmor-vim_package() {
-	archs=noarch
 	short_desc+=" - Vim syntax"
 	depends="vim"
 	pkg_install() {
diff --git a/srcpkgs/apt/template b/srcpkgs/apt/template
index 8578ed028e2..1fb3ee57e46 100644
--- a/srcpkgs/apt/template
+++ b/srcpkgs/apt/template
@@ -29,7 +29,6 @@ apt-devel_package() {
 }
 
 apt-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation files"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 5e5bd84dd13..b361ccbf48d 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -2,7 +2,6 @@
 pkgname=arandr
 version=0.1.10
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-docutils"
 depends="python3-gobject xrandr python3"
diff --git a/srcpkgs/arc-theme/template b/srcpkgs/arc-theme/template
index ccc5f35ea5f..3afd69b34f1 100644
--- a/srcpkgs/arc-theme/template
+++ b/srcpkgs/arc-theme/template
@@ -2,7 +2,6 @@
 pkgname=arc-theme
 version=20200513
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_script="./autogen.sh"
 hostmakedepends="automake glib-devel pkg-config
diff --git a/srcpkgs/archlabs-themes/template b/srcpkgs/archlabs-themes/template
index aa648d35457..a565615ea6f 100644
--- a/srcpkgs/archlabs-themes/template
+++ b/srcpkgs/archlabs-themes/template
@@ -4,7 +4,6 @@ version=20180503
 revision=2
 _commit=73d0900117daefedf6c76dd0e71538bb954f1b10
 wrksrc="ArchLabs-Themes-${_commit}"
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Themes used in ArchLabs"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/argtable/template b/srcpkgs/argtable/template
index 7083e703a50..6719ab7f4fc 100644
--- a/srcpkgs/argtable/template
+++ b/srcpkgs/argtable/template
@@ -26,7 +26,6 @@ argtable-devel_package() {
 argtable-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/artwiz-fonts/template b/srcpkgs/artwiz-fonts/template
index ceea828ee9c..b19ad6d26af 100644
--- a/srcpkgs/artwiz-fonts/template
+++ b/srcpkgs/artwiz-fonts/template
@@ -2,7 +2,6 @@
 pkgname=artwiz-fonts
 version=1.3
 revision=4
-archs=noarch
 create_wrksrc=yes
 depends="font-util mkfontdir"
 short_desc="Small futuristic ASCII fonts for X"
diff --git a/srcpkgs/asciidoc/template b/srcpkgs/asciidoc/template
index 5665577bacb..377800871a9 100644
--- a/srcpkgs/asciidoc/template
+++ b/srcpkgs/asciidoc/template
@@ -2,7 +2,6 @@
 pkgname=asciidoc
 version=9.0.2
 revision=1
-archs=noarch
 wrksrc=${pkgname}-py3-${version}
 build_style=gnu-configure
 hostmakedepends="automake docbook-xsl libxslt python3"
diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 38b8871753c..551a15be881 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -2,7 +2,6 @@
 pkgname=asciinema
 version=2.0.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/asciiquarium/template b/srcpkgs/asciiquarium/template
index 128674e7a6e..6f9217a19e1 100644
--- a/srcpkgs/asciiquarium/template
+++ b/srcpkgs/asciiquarium/template
@@ -2,7 +2,6 @@
 pkgname=asciiquarium
 version=1.1
 revision=2
-archs=noarch
 wrksrc="${pkgname}_${version}"
 depends="perl perl-Term-Animation perl-Curses"
 short_desc="Enjoy the mysteries of the sea from the safety of your own terminal"
diff --git a/srcpkgs/aspell-ru/template b/srcpkgs/aspell-ru/template
index f0a6d0fa52d..6c61de58593 100644
--- a/srcpkgs/aspell-ru/template
+++ b/srcpkgs/aspell-ru/template
@@ -14,7 +14,6 @@ checksum=5c29b6ccce57bc3f7c4fb0510d330446b9c769e59c92bdfede27333808b6e646
 
 words-ru_package() {
 	short_desc="Russian dictionary word list"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/dict
 		precat *.cwl |
diff --git a/srcpkgs/astromenace/template b/srcpkgs/astromenace/template
index ae6bbc38330..55613a3d8f6 100644
--- a/srcpkgs/astromenace/template
+++ b/srcpkgs/astromenace/template
@@ -34,7 +34,6 @@ do_install() {
 
 astromenace-data_package() {
 	short_desc+=" - data file"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/astromenace
 		vcopy ${wrksrc}/gamedata usr/share/astromenace
diff --git a/srcpkgs/asus-kbd-backlight/template b/srcpkgs/asus-kbd-backlight/template
index e58e8341650..cc612d3a809 100644
--- a/srcpkgs/asus-kbd-backlight/template
+++ b/srcpkgs/asus-kbd-backlight/template
@@ -3,7 +3,6 @@ pkgname=asus-kbd-backlight
 version=1.2
 revision=1
 create_wrksrc=yes
-archs=noarch
 depends="bash"
 short_desc="Helper for adjusting keyboard backlight brightness in Asus Zenbook"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/atool/template b/srcpkgs/atool/template
index 56264dd3e16..84019be7c53 100644
--- a/srcpkgs/atool/template
+++ b/srcpkgs/atool/template
@@ -2,7 +2,6 @@
 pkgname=atool
 version=0.39.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index 4d8d2fbe12a..521e12ec4f1 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 libaudit-common_package() {
-	archs=noarch
 	short_desc+=" - Library common files"
 	pkg_install() {
 		vmove etc/libaudit.conf
diff --git a/srcpkgs/auto-auto-complete/template b/srcpkgs/auto-auto-complete/template
index 2fa45c4fc47..d4eefd9d547 100644
--- a/srcpkgs/auto-auto-complete/template
+++ b/srcpkgs/auto-auto-complete/template
@@ -2,7 +2,6 @@
 pkgname=auto-auto-complete
 version=7.2
 revision=4
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3 texinfo"
 depends="python3"
diff --git a/srcpkgs/autoconf-archive/template b/srcpkgs/autoconf-archive/template
index b04bb9a7905..ea9665901cb 100644
--- a/srcpkgs/autoconf-archive/template
+++ b/srcpkgs/autoconf-archive/template
@@ -2,7 +2,6 @@
 pkgname=autoconf-archive
 version=2019.01.06
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="texinfo"
 depends="autoconf"
diff --git a/srcpkgs/autoconf/template b/srcpkgs/autoconf/template
index a7aecf1359e..954bfea8d2c 100644
--- a/srcpkgs/autoconf/template
+++ b/srcpkgs/autoconf/template
@@ -2,7 +2,6 @@
 pkgname=autoconf
 version=2.69
 revision=8
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl m4 help2man"
 depends="virtual?awk m4 perl"
diff --git a/srcpkgs/autoconf213/template b/srcpkgs/autoconf213/template
index a1ecfe21fa9..7d471a040cf 100644
--- a/srcpkgs/autoconf213/template
+++ b/srcpkgs/autoconf213/template
@@ -2,7 +2,6 @@
 pkgname=autoconf213
 version=2.13
 revision=3
-archs=noarch
 wrksrc="autoconf-${version}"
 build_style=gnu-configure
 configure_args="--program-suffix='-2.13'"
diff --git a/srcpkgs/autojump/template b/srcpkgs/autojump/template
index 2448a2dd894..de499da67e1 100644
--- a/srcpkgs/autojump/template
+++ b/srcpkgs/autojump/template
@@ -2,7 +2,6 @@
 pkgname=autojump
 version=22.5.3
 revision=2
-archs=noarch
 wrksrc="${pkgname}-release-v${version}"
 hostmakedepends="python3"
 depends="python3"
diff --git a/srcpkgs/automake/template b/srcpkgs/automake/template
index f9752f9efb1..ae473c521f5 100644
--- a/srcpkgs/automake/template
+++ b/srcpkgs/automake/template
@@ -3,7 +3,6 @@
 pkgname=automake
 version=1.16.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_args="${makejobs}"
 hostmakedepends="perl autoconf"
diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index b86b81a50ce..86d7d32723d 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -2,7 +2,6 @@
 pkgname=autorandr
 version=1.10.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools pkg-config"
 depends="python3-setuptools xrandr"
diff --git a/srcpkgs/avahi-discover/template b/srcpkgs/avahi-discover/template
index 1c4249f1036..de7039cffa5 100644
--- a/srcpkgs/avahi-discover/template
+++ b/srcpkgs/avahi-discover/template
@@ -103,7 +103,6 @@ do_install() {
 avahi-python3-utils_package() {
 	depends="avahi-python3>=${version}_${revision}"
 	short_desc="Avahi python utilities"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		vmove usr/bin/avahi-bookmarks
@@ -114,14 +113,12 @@ avahi-python3-utils_package() {
 avahi-python-utils_package() {
 	short_desc="Avahi python utilities - transitional dummy pkg"
 	depends="avahi-python3-utils>=${version}_${revision}"
-	archs=noarch
 	build_style=meta
 }
 
 avahi-python_package() {
 	depends="python-dbus"
 	short_desc="Python utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py2_sitelib}/avahi
 	}
@@ -130,7 +127,6 @@ avahi-python_package() {
 avahi-python3_package() {
 	depends="python3-dbus"
 	short_desc="Python3 utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py3_sitelib}/avahi
 	}
diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index af1491295da..19c6845f242 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -2,7 +2,6 @@
 pkgname=avideo
 version=2017.9.27
 revision=5
-archs=noarch
 wrksrc="avideo"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/awoken-icons/template b/srcpkgs/awoken-icons/template
index f52c4f48187..ede6ea0c9d0 100644
--- a/srcpkgs/awoken-icons/template
+++ b/srcpkgs/awoken-icons/template
@@ -2,7 +2,6 @@
 pkgname=awoken-icons
 version=2.5.2
 revision=4
-archs=noarch
 wrksrc=AwOken-2.5
 hostmakedepends="unzip"
 short_desc="Simple and quite complete icon set, Token-style"
@@ -39,7 +38,6 @@ do_install() {
 awoken-icons-dark_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - Dark icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenDark
 	}
@@ -48,7 +46,6 @@ awoken-icons-dark_package() {
 awoken-icons-white_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - White icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenWhite
 	}
diff --git a/srcpkgs/aws-cli/template b/srcpkgs/aws-cli/template
index c8fadf32d2e..8bc1de2fa00 100644
--- a/srcpkgs/aws-cli/template
+++ b/srcpkgs/aws-cli/template
@@ -2,7 +2,6 @@
 pkgname=aws-cli
 version=1.18.105
 revision=1
-archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/awsume/template b/srcpkgs/awsume/template
index 0f6c21d60d1..3c01a09de16 100644
--- a/srcpkgs/awsume/template
+++ b/srcpkgs/awsume/template
@@ -2,7 +2,6 @@
 pkgname=awsume
 version=4.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 makedepends="python3-argcomplete python3-boto3 python3-colorama python3-coverage
  python3-pluggy python3-psutil python3-xmltodict python3-yaml"
diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 9b5756804ea..bdb24fa3c1a 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -2,7 +2,6 @@
 pkgname=azote
 version=1.7.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3>=3.4 python3-setuptools python3-gobject python3-Pillow gtk+3 feh python3-send2trash xrandr grim slurp ImageMagick python3-yaml"
diff --git a/srcpkgs/b43-firmware-classic/template b/srcpkgs/b43-firmware-classic/template
index b38e6ac7ee6..0bc8d62447e 100644
--- a/srcpkgs/b43-firmware-classic/template
+++ b/srcpkgs/b43-firmware-classic/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware-classic
 version=5.100.138
 revision=1
-archs=noarch
 wrksrc="broadcom-wl-${version}"
 hostmakedepends="b43-fwcutter"
 short_desc="Firmware for Broadcom B43 wireless (trusted release)"
diff --git a/srcpkgs/b43-firmware/template b/srcpkgs/b43-firmware/template
index e5f894b81e7..45cbdd4cc08 100644
--- a/srcpkgs/b43-firmware/template
+++ b/srcpkgs/b43-firmware/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware
 version=6.30.163.46
 revision=1
-archs=noarch
 wrksrc="${pkgname}"
 create_wrksrc=yes
 hostmakedepends="b43-fwcutter"
diff --git a/srcpkgs/bCNC/template b/srcpkgs/bCNC/template
index 2e715c512a9..ede158da583 100644
--- a/srcpkgs/bCNC/template
+++ b/srcpkgs/bCNC/template
@@ -2,7 +2,6 @@
 pkgname=bCNC
 version=0.9.14.306
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyserial python3-Pillow python3-tkinter python3-numpy python3-scipy"
diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template
index ef7fbca68b6..cac24c685cc 100644
--- a/srcpkgs/backblaze-b2/template
+++ b/srcpkgs/backblaze-b2/template
@@ -2,7 +2,6 @@
 pkgname=backblaze-b2
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="b2-${version}"
 build_style=python3-module
 pycompile_module="b2"
@@ -43,6 +42,5 @@ do_check() {
 python-b2_package() {
 	depends="backblaze-b2>=${version}_${revision}"
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional package"
 }
diff --git a/srcpkgs/backintime-qt/template b/srcpkgs/backintime-qt/template
index 8453da9bafb..422529bf923 100644
--- a/srcpkgs/backintime-qt/template
+++ b/srcpkgs/backintime-qt/template
@@ -2,7 +2,6 @@
 pkgname=backintime-qt
 version=1.2.1
 revision=1
-archs=noarch
 wrksrc=backintime-${version}
 build_wrksrc="qt"
 build_style=configure
diff --git a/srcpkgs/backintime/template b/srcpkgs/backintime/template
index 2dfc98051f7..6c95fcd722a 100644
--- a/srcpkgs/backintime/template
+++ b/srcpkgs/backintime/template
@@ -2,7 +2,6 @@
 pkgname=backintime
 version=1.2.1
 revision=1
-archs=noarch
 build_wrksrc="common"
 build_style=configure
 configure_args="--python3"
diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index d29873ecf61..0709b663aa7 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -2,7 +2,6 @@
 pkgname=bandit
 version=1.6.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="bandit"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bash-completion/template b/srcpkgs/bash-completion/template
index 704b0784688..080e387f5e6 100644
--- a/srcpkgs/bash-completion/template
+++ b/srcpkgs/bash-completion/template
@@ -2,7 +2,6 @@
 pkgname=bash-completion
 version=2.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_args="profiledir=/etc/bash/bashrc.d"
 depends="bash"
diff --git a/srcpkgs/bash-preexec/template b/srcpkgs/bash-preexec/template
index 771ff0426ff..6d71655eecf 100644
--- a/srcpkgs/bash-preexec/template
+++ b/srcpkgs/bash-preexec/template
@@ -2,7 +2,6 @@
 pkgname=bash-preexec
 version=0.3.7
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Preexec and Precmd functions for Bash just like Zsh"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/bashmount/template b/srcpkgs/bashmount/template
index 1c797678452..68d2880e75a 100644
--- a/srcpkgs/bashmount/template
+++ b/srcpkgs/bashmount/template
@@ -2,7 +2,6 @@
 pkgname=bashmount
 version=4.3.0
 revision=1
-archs=noarch
 conf_files="/etc/$pkgname.conf"
 depends="bash util-linux"
 short_desc="Tool to mount and unmount removable media"
diff --git a/srcpkgs/bats/template b/srcpkgs/bats/template
index 890b0d14e54..ded7e5ee315 100644
--- a/srcpkgs/bats/template
+++ b/srcpkgs/bats/template
@@ -2,7 +2,6 @@
 pkgname=bats
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="bats-core-${version}"
 depends="bash"
 short_desc="Bash Automated Testing System"
diff --git a/srcpkgs/bdf2psf/template b/srcpkgs/bdf2psf/template
index d431bc560c9..3258f1871e5 100644
--- a/srcpkgs/bdf2psf/template
+++ b/srcpkgs/bdf2psf/template
@@ -2,7 +2,6 @@
 pkgname=bdf2psf
 version=1.196
 revision=1
-archs=noarch
 wrksrc="console-setup-${version}"
 depends="perl"
 short_desc="Generate console fonts from BDF source fonts"
diff --git a/srcpkgs/beard/template b/srcpkgs/beard/template
index 93d69607399..5e1180c49bf 100644
--- a/srcpkgs/beard/template
+++ b/srcpkgs/beard/template
@@ -2,7 +2,6 @@
 pkgname=beard
 version=0.3
 revision=1
-archs=noarch
 short_desc="Simple hibernation daemon"
 maintainer="Samantha Baldwin <fuhsaz+void@cryptic.li>"
 license="Unlicense"
diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index bf0240f1f54..8ebdcc4a42c 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -2,7 +2,6 @@
 pkgname=beets
 version=1.4.9
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-munkres python3-musicbrainzngs
diff --git a/srcpkgs/betterlockscreen/template b/srcpkgs/betterlockscreen/template
index c38dd536e77..a438c298aca 100644
--- a/srcpkgs/betterlockscreen/template
+++ b/srcpkgs/betterlockscreen/template
@@ -2,7 +2,6 @@
 pkgname=betterlockscreen
 version=3.0.1
 revision=2
-archs=noarch
 depends="ImageMagick bash bc feh i3lock-color xdpyinfo xrandr xrdb"
 short_desc="Sweet looking lockscreen for linux system"
 maintainer="Aleksander Zien <Aleks@nderZien.com>"
diff --git a/srcpkgs/biber/template b/srcpkgs/biber/template
index 23b94472d1e..af2ddfb4abe 100644
--- a/srcpkgs/biber/template
+++ b/srcpkgs/biber/template
@@ -2,7 +2,6 @@
 pkgname=biber
 version=2.14
 revision=2
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 06a279cff2c..8592e590c0c 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -120,7 +120,6 @@ binutils-devel_package() {
 }
 
 binutils-doc_package() {
-	archs=noarch
 	short_desc+=" - info files"
 	pkg_install() {
 		vmove usr/share/info
diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index fccd523d584..c646a08f2e7 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -2,7 +2,6 @@
 pkgname=binwalk
 version=2.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"
 hostmakedepends="python3"
diff --git a/srcpkgs/biosdisk/template b/srcpkgs/biosdisk/template
index 324d249d36c..d13ebdac57e 100644
--- a/srcpkgs/biosdisk/template
+++ b/srcpkgs/biosdisk/template
@@ -3,7 +3,6 @@ pkgname=biosdisk
 version=1.01
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="syslinux wget cdrtools"
 short_desc="Utility for creating Dell BIOS flash disks"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/bitfighter/template b/srcpkgs/bitfighter/template
index a91443cbc3c..ae01e4bca51 100644
--- a/srcpkgs/bitfighter/template
+++ b/srcpkgs/bitfighter/template
@@ -28,7 +28,6 @@ post_install() {
 
 bitfighter-data_package() {
 	short_desc+=" - classic level pack"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/bitfighter
 	}
diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index ab7bf23c85e..1798d9ed60d 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -2,7 +2,6 @@
 pkgname=black
 version=19.10b0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3 _black_version.py"
 hostmakedepends="git python3-setuptools"
diff --git a/srcpkgs/blackbird-themes/template b/srcpkgs/blackbird-themes/template
index 0e4de2ad703..3fc7e9c99bf 100644
--- a/srcpkgs/blackbird-themes/template
+++ b/srcpkgs/blackbird-themes/template
@@ -2,7 +2,6 @@
 pkgname=blackbird-themes
 version=0.4
 revision=3
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant dark GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/blackbox/template b/srcpkgs/blackbox/template
index cc7fbdc68b0..01f6dc23602 100644
--- a/srcpkgs/blackbox/template
+++ b/srcpkgs/blackbox/template
@@ -2,7 +2,6 @@
 pkgname=blackbox
 version=1.20181219
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Safely store secrets in Git/Mercurial/Subversion"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
diff --git a/srcpkgs/blazeblogger/template b/srcpkgs/blazeblogger/template
index 0eb8d776fc8..78acb7129b3 100644
--- a/srcpkgs/blazeblogger/template
+++ b/srcpkgs/blazeblogger/template
@@ -2,7 +2,6 @@
 pkgname=blazeblogger
 version=1.2.0
 revision=2
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="CLI blogging CMS"
diff --git a/srcpkgs/bleachbit/template b/srcpkgs/bleachbit/template
index 524794f0cb2..b1f81bdb656 100644
--- a/srcpkgs/bleachbit/template
+++ b/srcpkgs/bleachbit/template
@@ -2,7 +2,6 @@
 pkgname=bleachbit
 version=4.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/bleachbit"
 make_install_args="prefix=/usr"
diff --git a/srcpkgs/bluebird-themes/template b/srcpkgs/bluebird-themes/template
index 47034af481c..2e61b2a8592 100644
--- a/srcpkgs/bluebird-themes/template
+++ b/srcpkgs/bluebird-themes/template
@@ -2,7 +2,6 @@
 pkgname=bluebird-themes
 version=1.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant blue GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 5412f16a2b2..af8127f262a 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -136,7 +136,6 @@ boost-python3-1.72_package() {
 	}
 }
 boost-build_package() {
-	archs=noarch
 	conf_files="/etc/site-config.jam"
 	short_desc+=" - Boost.Build framework"
 	pkg_install() {
diff --git a/srcpkgs/bootiso/template b/srcpkgs/bootiso/template
index 78a6205c546..e3450b9e665 100644
--- a/srcpkgs/bootiso/template
+++ b/srcpkgs/bootiso/template
@@ -2,7 +2,6 @@
 pkgname=bootiso
 version=4.1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="prefix=/usr"
 depends="bash binutils coreutils curl dosfstools e2fsprogs eudev exfat-utils
diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 9ca5df9724f..03471b6d123 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -2,7 +2,6 @@
 pkgname=borgmatic
 version=1.5.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="borg python3-setuptools python3-ruamel.yaml python3-pykwalify
diff --git a/srcpkgs/boswars/template b/srcpkgs/boswars/template
index 4587f93cfd0..2ac87925dec 100644
--- a/srcpkgs/boswars/template
+++ b/srcpkgs/boswars/template
@@ -56,7 +56,6 @@ do_install() {
 
 boswars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/boswars/campaigns
 		vmove usr/share/boswars/doc
diff --git a/srcpkgs/botan/template b/srcpkgs/botan/template
index 49d382d1bcc..5c997e49231 100644
--- a/srcpkgs/botan/template
+++ b/srcpkgs/botan/template
@@ -88,7 +88,6 @@ post_install() {
 
 botan-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/breeze-cursors/template b/srcpkgs/breeze-cursors/template
index 579ad8ffaa8..80256b0ccbd 100644
--- a/srcpkgs/breeze-cursors/template
+++ b/srcpkgs/breeze-cursors/template
@@ -2,7 +2,6 @@
 pkgname=breeze-cursors
 version=1.0
 revision=2
-archs=noarch
 create_wrksrc=yes
 build_style=meta
 depends="breeze-amber-cursor-theme
@@ -56,49 +55,42 @@ do_install() {
 }
 
 breeze-amber-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Amber cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Amber
 	}
 }
 breeze-blue-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Blue cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Blue
 	}
 }
 breeze-contrast-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Contrast cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Contrast
 	}
 }
 breeze-hacked-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Hacked cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Hacked
 	}
 }
 breeze-obsidian-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Obsidian cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Obsidian
 	}
 }
 breeze-purple-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Purple cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Purple
 	}
 }
 breeze-red-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Red cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Red
diff --git a/srcpkgs/breeze/template b/srcpkgs/breeze/template
index 03dbbb2240b..3958629f68c 100644
--- a/srcpkgs/breeze/template
+++ b/srcpkgs/breeze/template
@@ -23,7 +23,6 @@ fi
 
 breeze-snow-cursor-theme_package() {
 	short_desc="Breeze Snow cursor theme"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Snow
 	}
diff --git a/srcpkgs/brise/template b/srcpkgs/brise/template
index 442ffddc383..7c50e282036 100644
--- a/srcpkgs/brise/template
+++ b/srcpkgs/brise/template
@@ -2,7 +2,6 @@
 pkgname=brise
 version=0.38.20180515
 revision=2
-archs=noarch
 wrksrc=brise
 build_style=gnu-makefile
 hostmakedepends="pkg-config librime-devel"
diff --git a/srcpkgs/broadcom-bt-firmware/template b/srcpkgs/broadcom-bt-firmware/template
index 8aeef706d15..20e8a30acb4 100644
--- a/srcpkgs/broadcom-bt-firmware/template
+++ b/srcpkgs/broadcom-bt-firmware/template
@@ -3,7 +3,6 @@ pkgname=broadcom-bt-firmware
 version=12.0.1.1105
 revision=1
 _patch=_p1
-archs=noarch
 wrksrc="${pkgname}-${version}${_patch}"
 hostmakedepends="perl"
 short_desc="Broadcom Bluetooth firmware for Linux kernel"
diff --git a/srcpkgs/bsdbuild/template b/srcpkgs/bsdbuild/template
index 11115999c94..95e00c88829 100644
--- a/srcpkgs/bsdbuild/template
+++ b/srcpkgs/bsdbuild/template
@@ -2,7 +2,6 @@
 pkgname=bsdbuild
 version=3.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-manpages --with-manlinks"
 hostmakedepends="groff perl"
diff --git a/srcpkgs/btrfs-backup/template b/srcpkgs/btrfs-backup/template
index 55a3800a857..32cda1dc0c2 100644
--- a/srcpkgs/btrfs-backup/template
+++ b/srcpkgs/btrfs-backup/template
@@ -3,7 +3,6 @@ pkgname=btrfs-backup
 version=0.3.1
 revision=2
 wrksrc="${pkgname/-/_}-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="${pkgname/-/_}"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bucklespring/template b/srcpkgs/bucklespring/template
index ac9bfd3b499..1edf3c6af4c 100644
--- a/srcpkgs/bucklespring/template
+++ b/srcpkgs/bucklespring/template
@@ -27,7 +27,6 @@ do_install() {
 
 bucklespring-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/buildbot-slave/template b/srcpkgs/buildbot-slave/template
index 976fd7e689f..8437af6f6da 100644
--- a/srcpkgs/buildbot-slave/template
+++ b/srcpkgs/buildbot-slave/template
@@ -2,7 +2,6 @@
 pkgname=buildbot-slave
 version=0.8.14
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="buildslave"
 hostmakedepends="python"
diff --git a/srcpkgs/buildbot/template b/srcpkgs/buildbot/template
index 9bee50ec737..d687c8ad989 100644
--- a/srcpkgs/buildbot/template
+++ b/srcpkgs/buildbot/template
@@ -3,7 +3,6 @@ pkgname=buildbot
 reverts="2.4.1_1"
 version=0.8.14
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="buildbot"
 pycompile_dirs="usr/share/buildbot/contrib"
diff --git a/srcpkgs/buku/template b/srcpkgs/buku/template
index 5a5be1e8d2c..276f227bcf1 100644
--- a/srcpkgs/buku/template
+++ b/srcpkgs/buku/template
@@ -2,7 +2,6 @@
 pkgname=buku
 version=4.3
 revision=1
-archs=noarch
 depends="python3-urllib3 python3-BeautifulSoup4 python3-cryptography python3-html5lib"
 short_desc="Cmdline bookmark management utility"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/buku_run/template b/srcpkgs/buku_run/template
index a353c85bcd3..4f73ddec5f6 100644
--- a/srcpkgs/buku_run/template
+++ b/srcpkgs/buku_run/template
@@ -2,7 +2,6 @@
 pkgname=buku_run
 version=0.1.1
 revision=1
-archs=noarch
 conf_files="/etc/buku_run.config"
 depends="rofi gawk sed buku bash"
 short_desc="Rofi frontend for buku bookmarks manager"
diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 20f200e74d6..fecc2f4a967 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -2,7 +2,6 @@
 pkgname=bum
 version=0.1.3
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="bum"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bumblebee-status/template b/srcpkgs/bumblebee-status/template
index 48cc3d02b04..51c9ded64da 100644
--- a/srcpkgs/bumblebee-status/template
+++ b/srcpkgs/bumblebee-status/template
@@ -2,7 +2,6 @@
 pkgname=bumblebee-status
 version=1.9.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}/bumblebee"
 depends="python-netifaces python-psutil python-requests"
 short_desc="Modular, theme-able status line generator for the i3 window manager"
diff --git a/srcpkgs/burp2-server/template b/srcpkgs/burp2-server/template
index 9845f6afe9e..1c48742389a 100644
--- a/srcpkgs/burp2-server/template
+++ b/srcpkgs/burp2-server/template
@@ -79,7 +79,6 @@ burp2-client_package() {
 
 burp2-doc_package() {
 	short_desc="${_desc} - Doc and examples"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/burp
 		vmove usr/share/examples
diff --git a/srcpkgs/bwidget/template b/srcpkgs/bwidget/template
index b6c57fccb25..8ddb29704a1 100644
--- a/srcpkgs/bwidget/template
+++ b/srcpkgs/bwidget/template
@@ -2,7 +2,6 @@
 pkgname=bwidget
 version=1.9.14
 revision=1
-archs=noarch
 makedepends="tk"
 depends="tk"
 short_desc="Set of extension widgets for Tcl/Tk"
diff --git a/srcpkgs/byobu/template b/srcpkgs/byobu/template
index 29c355cb943..869573ebd2d 100644
--- a/srcpkgs/byobu/template
+++ b/srcpkgs/byobu/template
@@ -2,7 +2,6 @@
 pkgname=byobu
 version=5.133
 revision=1
-archs=noarch
 build_style=gnu-configure
 depends="tmux"
 short_desc="Open source text-based window manager and terminal multiplexer"
diff --git a/srcpkgs/bzrtools/template b/srcpkgs/bzrtools/template
index 0c31b0fa84e..410a040f186 100644
--- a/srcpkgs/bzrtools/template
+++ b/srcpkgs/bzrtools/template
@@ -2,7 +2,6 @@
 pkgname=bzrtools
 version=2.6.0
 revision=3
-archs=noarch
 wrksrc=bzrtools
 build_style=python2-module
 pycompile_module="bzrlib/plugins/bzrtools"
diff --git a/srcpkgs/c/template b/srcpkgs/c/template
index 47c95d3060e..b6109733e43 100644
--- a/srcpkgs/c/template
+++ b/srcpkgs/c/template
@@ -2,7 +2,6 @@
 pkgname=c
 version=0.14
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Compile and execute C scripts in one go!"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ca-certificates/template b/srcpkgs/ca-certificates/template
index 9d20f346e84..dcacb5c773e 100644
--- a/srcpkgs/ca-certificates/template
+++ b/srcpkgs/ca-certificates/template
@@ -3,7 +3,6 @@ pkgname=ca-certificates
 version=20200601
 revision=1
 bootstrap=yes
-archs=noarch
 conf_files="/etc/ca-certificates.conf"
 wrksrc="work"
 hostmakedepends="libressl"
diff --git a/srcpkgs/caffeine-ng/template b/srcpkgs/caffeine-ng/template
index 455b2f225c4..6e3786c57c5 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -2,7 +2,6 @@
 pkgname=caffeine-ng
 version=3.4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/calligra/template b/srcpkgs/calligra/template
index d5255ff73ba..d4cb9b6a83f 100644
--- a/srcpkgs/calligra/template
+++ b/srcpkgs/calligra/template
@@ -140,7 +140,6 @@ calligra-words_package() {
 }
 calligra-handbook_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - Documentation (removed temporarily)"
 	#pkg_install() {
 	#	cd ${wrksrc}/build/doc/calligra
diff --git a/srcpkgs/cantarell-fonts/template b/srcpkgs/cantarell-fonts/template
index 8715c4773b3..2c0c2d779a1 100644
--- a/srcpkgs/cantarell-fonts/template
+++ b/srcpkgs/cantarell-fonts/template
@@ -2,7 +2,6 @@
 pkgname=cantarell-fonts
 version=0.201
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dfontsdir=/usr/share/fonts/cantarell -Duseprebuilt=true -Dbuildappstream=true"
 hostmakedepends="gettext pkg-config meson appstream-glib"
diff --git a/srcpkgs/canto-next/template b/srcpkgs/canto-next/template
index fa28bde891b..97506b3ec8f 100644
--- a/srcpkgs/canto-next/template
+++ b/srcpkgs/canto-next/template
@@ -2,7 +2,6 @@
 pkgname=canto-next
 version=0.9.7
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-feedparser"
diff --git a/srcpkgs/carton/template b/srcpkgs/carton/template
index e86b18fdf73..03d59e07782 100644
--- a/srcpkgs/carton/template
+++ b/srcpkgs/carton/template
@@ -3,7 +3,6 @@ pkgname=carton
 version=1.0.34
 revision=1
 wrksrc="Carton-v${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl perl-Class-Tiny perl-JSON perl-Menlo-Legacy
  perl-Module-CPANfile perl-Path-Tiny perl-Try-Tiny"
diff --git a/srcpkgs/castero/template b/srcpkgs/castero/template
index 2d6c421eee3..d387ef06fc7 100644
--- a/srcpkgs/castero/template
+++ b/srcpkgs/castero/template
@@ -2,7 +2,6 @@
 pkgname=castero
 version=0.8.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-cjkwrap
diff --git a/srcpkgs/catch2/template b/srcpkgs/catch2/template
index f8795cb6c77..5db5be90243 100644
--- a/srcpkgs/catch2/template
+++ b/srcpkgs/catch2/template
@@ -2,7 +2,6 @@
 pkgname=catch2
 version=2.11.1
 revision=1
-archs=noarch
 wrksrc="Catch2-${version}"
 build_style=cmake
 configure_args="-DCATCH_USE_VALGRIND=OFF -DCATCH_BUILD_TESTING=ON
diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 38df0a0adef..be2df4a62a7 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -2,7 +2,6 @@
 pkgname=catfish
 version=1.4.13
 revision=2
-archs=noarch
 wrksrc="catfish-catfish-${version}"
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-gobject"
diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index bda81960c5a..45673882a8b 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -2,7 +2,6 @@
 pkgname=ccsm
 version=0.8.18
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"
 makedepends="compiz-core-devel compizconfig-python python3-cairo-devel pygtk-devel"
diff --git a/srcpkgs/cdemu-client/template b/srcpkgs/cdemu-client/template
index 36d40de4bb5..4b338aa5977 100644
--- a/srcpkgs/cdemu-client/template
+++ b/srcpkgs/cdemu-client/template
@@ -2,7 +2,6 @@
 pkgname=cdemu-client
 version=3.2.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DCMAKE_INSTALL_COMPLETIONSDIR=/usr/share/bash-completion/completions"
 hostmakedepends="python3 intltool pkg-config"
diff --git a/srcpkgs/cdm/template b/srcpkgs/cdm/template
index ae30eaaef91..5cca3eeae03 100644
--- a/srcpkgs/cdm/template
+++ b/srcpkgs/cdm/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://github.com/evertiro/cdm"
 distfiles="https://github.com/evertiro/cdm/archive/${version}.tar.gz"
 checksum=530042165ce65cdff3ec62ba9f077d0e8c6744c13f5d449d84fe2506a79d2e56
-archs=noarch
 
 do_install() {
 	sed -i 's| /| $PKGDESTDIR/|g' install.sh
diff --git a/srcpkgs/cdogs-sdl/template b/srcpkgs/cdogs-sdl/template
index 89932232310..3cbdea2430c 100644
--- a/srcpkgs/cdogs-sdl/template
+++ b/srcpkgs/cdogs-sdl/template
@@ -18,7 +18,6 @@ CFLAGS="-Wno-restrict -Wno-format-truncation -Wno-stringop-overflow -Wno-stringo
 
 cdogs-sdl-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cdogs
 	}
diff --git a/srcpkgs/cegui/template b/srcpkgs/cegui/template
index 78f0c103ba7..582040e301e 100644
--- a/srcpkgs/cegui/template
+++ b/srcpkgs/cegui/template
@@ -55,14 +55,12 @@ post_install() {
 }
 cegui-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cegui-${version%%.*}
 	}
 }
 cegui-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/build/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cegui07/template b/srcpkgs/cegui07/template
index b5d0f735ffb..e9f1849e1fb 100644
--- a/srcpkgs/cegui07/template
+++ b/srcpkgs/cegui07/template
@@ -68,14 +68,12 @@ post_install() {
 
 cegui07-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/CEGUI
 	}
 }
 cegui07-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cereal/template b/srcpkgs/cereal/template
index c454ed85833..284bffeaeb6 100644
--- a/srcpkgs/cereal/template
+++ b/srcpkgs/cereal/template
@@ -2,7 +2,6 @@
 pkgname=cereal
 version=1.3.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DSKIP_PORTABILITY_TEST=1 -DTHREAD_SAFE=ON -DWITH_WERROR=OFF"
 short_desc="Header-only C++ serialization library"
diff --git a/srcpkgs/certbot/template b/srcpkgs/certbot/template
index 157e67923f6..0d5bb56d508 100644
--- a/srcpkgs/certbot/template
+++ b/srcpkgs/certbot/template
@@ -2,7 +2,6 @@
 pkgname=certbot
 version=1.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-acme python3-ConfigArgParse python3-configobj
diff --git a/srcpkgs/chatty/template b/srcpkgs/chatty/template
index 16bbc44096d..12d262ccabf 100644
--- a/srcpkgs/chatty/template
+++ b/srcpkgs/chatty/template
@@ -2,7 +2,6 @@
 pkgname=chatty
 version=0.12
 revision=1
-archs=noarch
 hostmakedepends="gradle"
 depends="virtual?java-runtime"
 short_desc="Twitch Chat Client for Desktop"
diff --git a/srcpkgs/checkbashisms/template b/srcpkgs/checkbashisms/template
index 88b2877e8a8..d23f71a29f1 100644
--- a/srcpkgs/checkbashisms/template
+++ b/srcpkgs/checkbashisms/template
@@ -2,7 +2,6 @@
 pkgname=checkbashisms
 version=2.20.4
 revision=1
-archs=noarch
 wrksrc="devscripts-${version}"
 depends="perl"
 checkdepends="shunit2 perl"
diff --git a/srcpkgs/checksec/template b/srcpkgs/checksec/template
index 354e288dc80..89a74ccbe62 100644
--- a/srcpkgs/checksec/template
+++ b/srcpkgs/checksec/template
@@ -2,7 +2,6 @@
 pkgname=checksec
 version=2.2.3
 revision=1
-archs=noarch
 wrksrc="checksec.sh-${version}"
 depends="binutils"
 short_desc="Check for protections like RELRO, NoExec, Stack protection, ASLR, PIE"
diff --git a/srcpkgs/cherry-font/template b/srcpkgs/cherry-font/template
index 496d45988d1..fa1aba8854c 100644
--- a/srcpkgs/cherry-font/template
+++ b/srcpkgs/cherry-font/template
@@ -2,7 +2,6 @@
 pkgname=cherry-font
 version=1.4
 revision=1
-archs=noarch
 wrksrc="cherry-${version}"
 hostmakedepends="bdftopcf"
 depends="font-util"
diff --git a/srcpkgs/cherrytree/template b/srcpkgs/cherrytree/template
index dc9530ce871..6e2d3a36ce3 100644
--- a/srcpkgs/cherrytree/template
+++ b/srcpkgs/cherrytree/template
@@ -2,7 +2,6 @@
 pkgname=cherrytree
 version=0.38.9
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_dirs="usr/share/cherrytree/modules"
 hostmakedepends="gettext python-devel desktop-file-utils"
diff --git a/srcpkgs/cinnamon-translations/template b/srcpkgs/cinnamon-translations/template
index e71998a63fb..aa0dab242cb 100644
--- a/srcpkgs/cinnamon-translations/template
+++ b/srcpkgs/cinnamon-translations/template
@@ -2,7 +2,6 @@
 pkgname=cinnamon-translations
 version=4.6.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="gettext"
 short_desc="Translations for Cinnamon and Nemo"
diff --git a/srcpkgs/ckbcomp/template b/srcpkgs/ckbcomp/template
index 225cb9d35dd..ce832e74d67 100644
--- a/srcpkgs/ckbcomp/template
+++ b/srcpkgs/ckbcomp/template
@@ -2,7 +2,6 @@
 pkgname=ckbcomp
 version=1.195
 revision=1
-archs=noarch
 wrksrc="console-setup"
 depends="perl"
 short_desc="Compile a XKB keyboard description to a keymap suitable for loadkeys"
diff --git a/srcpkgs/cldr-emoji-annotation/template b/srcpkgs/cldr-emoji-annotation/template
index 7910b83971b..ec997cbd749 100644
--- a/srcpkgs/cldr-emoji-annotation/template
+++ b/srcpkgs/cldr-emoji-annotation/template
@@ -3,7 +3,6 @@ pkgname=cldr-emoji-annotation
 version=36.12.120191002.0
 revision=1
 _tag=${version%.*}_${version##*.}
-archs=noarch
 wrksrc="${pkgname}-${_tag}"
 build_style=gnu-configure
 short_desc="Emoji annotation files in CLDR"
diff --git a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
index a2d541c8896..aa598cb15b8 100644
--- a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
+++ b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
@@ -4,7 +4,6 @@ version=7.0.2
 revision=1
 _devuan_rel="1+devuan2.0"
 build_style=fetch
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Dark-purpified GTK3 port of Clearlooks theme"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/clerk/template b/srcpkgs/clerk/template
index a04c6f2cef6..d365c54ed65 100644
--- a/srcpkgs/clerk/template
+++ b/srcpkgs/clerk/template
@@ -2,7 +2,6 @@
 pkgname=clerk
 version=4.0.5
 revision=1
-archs=noarch
 depends="rofi fzf tmux mpc perl-Net-MPD perl-Data-MessagePack perl-File-Slurper
 perl-Config-Simple perl-Try-Tiny perl-IPC-Run perl-HTTP-Date perl-Data-Section-Simple"
 short_desc="MPD client written in Perl using rofi or fzf"
diff --git a/srcpkgs/clipmenu/template b/srcpkgs/clipmenu/template
index 4176172d179..012affa76b6 100644
--- a/srcpkgs/clipmenu/template
+++ b/srcpkgs/clipmenu/template
@@ -2,7 +2,6 @@
 pkgname=clipmenu
 version=6.1.0
 revision=1
-archs=noarch
 depends="bash dmenu"
 short_desc="Clipboard management using dmenu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cloc/template b/srcpkgs/cloc/template
index 72213537232..efe880ccef1 100644
--- a/srcpkgs/cloc/template
+++ b/srcpkgs/cloc/template
@@ -2,7 +2,6 @@
 pkgname=cloc
 version=1.86
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Count Lines of Code"
diff --git a/srcpkgs/clyrics/template b/srcpkgs/clyrics/template
index 5a0144c5b30..6d9b04e6067 100644
--- a/srcpkgs/clyrics/template
+++ b/srcpkgs/clyrics/template
@@ -2,7 +2,6 @@
 pkgname=clyrics
 version=0.12
 revision=1
-archs=noarch
 depends="perl-LWP-Protocol-https perl-WWW-Mechanize"
 short_desc="Extensible lyrics fetcher, with daemon support for cmus and mocp"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cmake-vala/template b/srcpkgs/cmake-vala/template
index 94222b5da1a..c263c7a5ad5 100644
--- a/srcpkgs/cmake-vala/template
+++ b/srcpkgs/cmake-vala/template
@@ -2,7 +2,6 @@
 pkgname=cmake-vala
 version=1
 revision=1
-archs=noarch
 wrksrc="cmake-vala-r${version}"
 build_style=cmake
 depends="cmake"
diff --git a/srcpkgs/cmc/template b/srcpkgs/cmc/template
index 34a50561d1d..d834639933b 100644
--- a/srcpkgs/cmc/template
+++ b/srcpkgs/cmc/template
@@ -2,7 +2,6 @@
 pkgname=cmc
 version=1.1.4
 revision=1
-archs=noarch
 short_desc="SSH ControlMaster Controller"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
 license="MIT"
diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 8c45bc12fa4..abef9a7f6a8 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -2,7 +2,6 @@
 pkgname=coccigrep
 version=1.20
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="coccinelle python3-Pygments"
diff --git a/srcpkgs/coin3/template b/srcpkgs/coin3/template
index 4150c863e9f..acb1e4a0b88 100644
--- a/srcpkgs/coin3/template
+++ b/srcpkgs/coin3/template
@@ -67,7 +67,6 @@ coin3-devel_package() {
 
 coin3-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/collectl/template b/srcpkgs/collectl/template
index aec4b83ff46..a3d0ba59310 100644
--- a/srcpkgs/collectl/template
+++ b/srcpkgs/collectl/template
@@ -2,7 +2,6 @@
 pkgname=collectl
 version=4.3.1
 revision=1
-archs=noarch
 conf_files="/etc/collectl.conf"
 depends="perl perl-Term-ReadKey"
 short_desc="Collects data that describes the current system status"
diff --git a/srcpkgs/colordiff/template b/srcpkgs/colordiff/template
index bf7fea1873c..f01e98f5616 100644
--- a/srcpkgs/colordiff/template
+++ b/srcpkgs/colordiff/template
@@ -2,7 +2,6 @@
 pkgname=colordiff
 version=1.0.19
 revision=1
-archs=noarch
 depends="perl"
 conf_files="/etc/colordiffrc /etc/colordiffrc-lightbg /etc/colordiffrc-gitdiff"
 short_desc="Colorizes output of diff"
diff --git a/srcpkgs/compiz-bcop/template b/srcpkgs/compiz-bcop/template
index c1a82cb881b..667863577fb 100644
--- a/srcpkgs/compiz-bcop/template
+++ b/srcpkgs/compiz-bcop/template
@@ -2,7 +2,6 @@
 pkgname=compiz-bcop
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/composer/template b/srcpkgs/composer/template
index 353603a5118..03e0b111389 100644
--- a/srcpkgs/composer/template
+++ b/srcpkgs/composer/template
@@ -2,7 +2,6 @@
 pkgname=composer
 version=1.10.10
 revision=1
-archs=noarch
 build_style=fetch
 depends="php"
 short_desc="Dependency manager for PHP"
diff --git a/srcpkgs/coreboot-utils/template b/srcpkgs/coreboot-utils/template
index e6c57472ea1..47ffc16a9db 100644
--- a/srcpkgs/coreboot-utils/template
+++ b/srcpkgs/coreboot-utils/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 coreboot-utils-me_cleaner_package() {
-	archs=noarch
 	python_version=3
 	depends="python3"
 	short_desc="Tool for partial deblobbing Intel ME/TXE firmware images"
diff --git a/srcpkgs/couchpotato/template b/srcpkgs/couchpotato/template
index 3d7e27004d1..1e4572fcdac 100644
--- a/srcpkgs/couchpotato/template
+++ b/srcpkgs/couchpotato/template
@@ -2,7 +2,6 @@
 pkgname=couchpotato
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="CouchPotatoServer-build-${version}"
 pycompile_dirs="/usr/share/couchpotato"
 make_dirs="
diff --git a/srcpkgs/coursera-dl/template b/srcpkgs/coursera-dl/template
index 4609573f7f4..fff37f018d4 100644
--- a/srcpkgs/coursera-dl/template
+++ b/srcpkgs/coursera-dl/template
@@ -2,7 +2,6 @@
 pkgname=coursera-dl
 version=0.11.5
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="coursera"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/cowsay-temoc/template b/srcpkgs/cowsay-temoc/template
index f03a4d1775e..efaba0d3fed 100644
--- a/srcpkgs/cowsay-temoc/template
+++ b/srcpkgs/cowsay-temoc/template
@@ -9,7 +9,6 @@ license="GPL-3"
 homepage="https://github.com/kulinacs/cowsay-temoc"
 distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=6667a37a0de41fb46750bce4847fee97da251e9bea4dc5a33b5c0e432b795c8d
-archs=noarch
 
 do_install() {
 	vinstall temoc.cow 644 /usr/share/cows/
diff --git a/srcpkgs/cowsay/template b/srcpkgs/cowsay/template
index efa372b3aa5..97d67b9fd40 100644
--- a/srcpkgs/cowsay/template
+++ b/srcpkgs/cowsay/template
@@ -2,7 +2,6 @@
 pkgname=cowsay
 version=3.04
 revision=2
-archs=noarch
 wrksrc="rank-amateur-cowsay-${pkgname}-${version}"
 depends="perl"
 short_desc="Configurable speaking/thinking cow (and a bit more)"
diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index fc9bc66212b..f9d769162d5 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -2,7 +2,6 @@
 pkgname=cozy
 version=0.6.18
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config glib-devel python3 python3-distro python3-peewee
  python3-mutagen python3-gobject-devel"
diff --git a/srcpkgs/cpanminus/template b/srcpkgs/cpanminus/template
index 490ecd111b2..7e385544b1d 100644
--- a/srcpkgs/cpanminus/template
+++ b/srcpkgs/cpanminus/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/App-cpanminus"
 distfiles="${CPAN_SITE}/App/App-${pkgname}-${version}.tar.gz"
 checksum=9b60767fe40752ef7a9d3f13f19060a63389a5c23acc3e9827e19b75500f81f3
-archs=noarch
diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index 12b54631617..dd9b32549b5 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -2,7 +2,6 @@
 pkgname=cpuset
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/create_ap/template b/srcpkgs/create_ap/template
index 481ba622def..2bb58047096 100644
--- a/srcpkgs/create_ap/template
+++ b/srcpkgs/create_ap/template
@@ -2,7 +2,6 @@
 pkgname=create_ap
 version=0.4.6
 revision=2
-archs=noarch
 conf_files="/etc/create_ap.conf"
 build_style=gnu-makefile
 depends="bash dnsmasq hostapd iproute2 iptables iw procps-ng util-linux"
diff --git a/srcpkgs/criu/template b/srcpkgs/criu/template
index 0f7b55853f3..9d52f8ce024 100644
--- a/srcpkgs/criu/template
+++ b/srcpkgs/criu/template
@@ -37,7 +37,6 @@ criu-devel_package() {
 }
 
 criu-python_package() {
-	archs=noarch
 	depends="python-protobuf python-ipaddr criu-${version}_${revision}"
 	short_desc="Python2 bindings for criu and crit cli util"
 	pkg_install() {
diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index 5231b4a4cb3..b57e7aa642c 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -2,7 +2,6 @@
 pkgname=ctop
 version=1.0.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/culmus/template b/srcpkgs/culmus/template
index dc6599990ef..d5cc36e1ef4 100644
--- a/srcpkgs/culmus/template
+++ b/srcpkgs/culmus/template
@@ -2,7 +2,6 @@
 pkgname=culmus
 version=0.133
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="A collection of Type1 and TrueType free Hebrew fonts"
 maintainer="DirectorX <void.directorx@protonmail.com>"
diff --git a/srcpkgs/cura-fdm-materials/template b/srcpkgs/cura-fdm-materials/template
index dbb8191c009..8832e5bc43b 100644
--- a/srcpkgs/cura-fdm-materials/template
+++ b/srcpkgs/cura-fdm-materials/template
@@ -3,7 +3,6 @@ pkgname=cura-fdm-materials
 reverts="2019.08.21_1"
 version=4.6.2
 revision=1
-archs=noarch
 wrksrc="fdm_materials-${version}"
 build_style=cmake
 short_desc="FDM Material database"
diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index de72770b145..653689aa557 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -2,7 +2,6 @@
 pkgname=cura
 version=4.6.2
 revision=1
-archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake
 configure_args="-DCURA_VERSION=${version}
diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index f5afe3bba34..518da660991 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -2,7 +2,6 @@
 pkgname=curseradio
 version=0.0.20171017
 revision=4
-archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"
 build_style=python3-module
diff --git a/srcpkgs/cvs2svn/template b/srcpkgs/cvs2svn/template
index 55e679f2abe..f8b13d2ac0b 100644
--- a/srcpkgs/cvs2svn/template
+++ b/srcpkgs/cvs2svn/template
@@ -2,7 +2,6 @@
 pkgname=cvs2svn
 version=2.5.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_build_args="man"
 hostmakedepends="python"
diff --git a/srcpkgs/cycle/template b/srcpkgs/cycle/template
index 58649da6482..8affc847c16 100644
--- a/srcpkgs/cycle/template
+++ b/srcpkgs/cycle/template
@@ -2,7 +2,6 @@
 pkgname=cycle
 version=0.3.2
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/cycle"
 hostmakedepends="python"
 depends="wxPython"
diff --git a/srcpkgs/d-feet/template b/srcpkgs/d-feet/template
index beac13b35c3..e984f2af90f 100644
--- a/srcpkgs/d-feet/template
+++ b/srcpkgs/d-feet/template
@@ -2,7 +2,6 @@
 pkgname=d-feet
 version=0.3.15
 revision=3
-archs=noarch
 build_style=meson
 pycompile_module="dfeet"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"
diff --git a/srcpkgs/db/template b/srcpkgs/db/template
index b7519609b9e..bdd42a64e9e 100644
--- a/srcpkgs/db/template
+++ b/srcpkgs/db/template
@@ -32,7 +32,6 @@ db-devel_package() {
 }
 db-doc_package() {
 	short_desc+=" - documentation files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/ddclient/template b/srcpkgs/ddclient/template
index 37d85a49f4c..8d3fd068633 100644
--- a/srcpkgs/ddclient/template
+++ b/srcpkgs/ddclient/template
@@ -2,7 +2,6 @@
 pkgname=ddclient
 version=3.9.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="perl-Data-Validate-IP perl-IO-Socket-SSL"
 short_desc="Perl client used to update dynamic DNS"
diff --git a/srcpkgs/ddgr/template b/srcpkgs/ddgr/template
index d4142bb59b9..25ef4695ac8 100644
--- a/srcpkgs/ddgr/template
+++ b/srcpkgs/ddgr/template
@@ -2,7 +2,6 @@
 pkgname=ddgr
 version=1.9
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-requests"
 short_desc="DuckDuckGo from the terminal"
diff --git a/srcpkgs/deepin-gtk-theme/template b/srcpkgs/deepin-gtk-theme/template
index becf7701621..26865e28adb 100644
--- a/srcpkgs/deepin-gtk-theme/template
+++ b/srcpkgs/deepin-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-gtk-theme
 version=17.10.11
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Deepin GTK Theme"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/deepin-icon-theme/template b/srcpkgs/deepin-icon-theme/template
index 60902c27771..ff19188a5a7 100644
--- a/srcpkgs/deepin-icon-theme/template
+++ b/srcpkgs/deepin-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-icon-theme
 version=2020.04.13
 revision=1
-archs=noarch
 hostmakedepends="xcursorgen"
 depends="papirus-icon-theme"
 short_desc="Deepin Icon Theme"
diff --git a/srcpkgs/deerportal/template b/srcpkgs/deerportal/template
index c027c258e68..ac55e4ee30e 100644
--- a/srcpkgs/deerportal/template
+++ b/srcpkgs/deerportal/template
@@ -14,7 +14,6 @@ checksum=a79a6286c9be1c6073f5d8fe79e45b309425f597d0532d2a042cd8369f57725d
 
 deerportal-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/deheader/template b/srcpkgs/deheader/template
index f3809a35a44..4fa6ef39046 100644
--- a/srcpkgs/deheader/template
+++ b/srcpkgs/deheader/template
@@ -3,7 +3,6 @@ pkgname=deheader
 version=1.6
 revision=3
 create_wrksrc=yes
-archs=noarch
 hostmakedepends="tar"
 depends="python"
 short_desc="C and C++ header analyzer"
diff --git a/srcpkgs/dehydrated/template b/srcpkgs/dehydrated/template
index c7b3ce7abb9..74875e6a3c7 100644
--- a/srcpkgs/dehydrated/template
+++ b/srcpkgs/dehydrated/template
@@ -2,7 +2,6 @@
 pkgname=dehydrated
 version=0.6.5
 revision=1
-archs=noarch
 depends="curl"
 short_desc="Acme client implemented as a shell-script – just add water"
 maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
diff --git a/srcpkgs/dejavu-fonts-ttf/template b/srcpkgs/dejavu-fonts-ttf/template
index 88bc1960c99..ba0a43f8c64 100644
--- a/srcpkgs/dejavu-fonts-ttf/template
+++ b/srcpkgs/dejavu-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=dejavu-fonts-ttf
 version=2.37
 revision=1
-archs=noarch
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
 short_desc="DejaVu family of TrueType fonts"
diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index bb48e58ef6f..00afd733aec 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -2,7 +2,6 @@
 pkgname=deluge
 version=2.0.3
 revision=6
-archs=noarch
 build_style=python3-module
 # TODO package python3-slimit to minify javascript
 hostmakedepends="intltool python3-setuptools python3-wheel"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 deluge-gtk_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - GTK+ frontend"
 	depends="${sourcepkg}-${version}_${revision} python3-gobject"
@@ -42,7 +40,6 @@ deluge-gtk_package() {
 	}
 }
 deluge-web_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - Web frontend"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index e3bb19e3fc8..a32f186450f 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -2,7 +2,6 @@
 pkgname=devedeng
 version=4.16.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"
 hostmakedepends="gettext python3"
diff --git a/srcpkgs/dex/template b/srcpkgs/dex/template
index 88b5552b070..06af8b30b5d 100644
--- a/srcpkgs/dex/template
+++ b/srcpkgs/dex/template
@@ -2,7 +2,6 @@
 pkgname=dex
 version=0.8.0
 revision=2
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANPREFIX=/usr/share/man"
 hostmakedepends="python3-Sphinx"
diff --git a/srcpkgs/dhcpcd-gtk/template b/srcpkgs/dhcpcd-gtk/template
index af5bddc45c5..62ddaa13e59 100644
--- a/srcpkgs/dhcpcd-gtk/template
+++ b/srcpkgs/dhcpcd-gtk/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 dhcpcd-icons_package() {
-	archs=noarch
 	short_desc+=" - icon set"
 	depends="hicolor-icon-theme"
 	replaces="dhcpcd-gtk<0.7.4"
diff --git a/srcpkgs/diffoscope/template b/srcpkgs/diffoscope/template
index a45bc5d7959..d3f8896c50a 100644
--- a/srcpkgs/diffoscope/template
+++ b/srcpkgs/diffoscope/template
@@ -2,7 +2,6 @@
 pkgname=diffoscope
 version=147
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-magic python3-libarchive-c python3-setuptools
diff --git a/srcpkgs/dina-font/template b/srcpkgs/dina-font/template
index 2d4a740eacc..dcc1660f28e 100644
--- a/srcpkgs/dina-font/template
+++ b/srcpkgs/dina-font/template
@@ -2,7 +2,6 @@
 pkgname=dina-font
 version=2.93
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="bdftopcf font-util unzip"
 depends="font-util"
diff --git a/srcpkgs/ditaa/template b/srcpkgs/ditaa/template
index c7978f18bd4..3734b1316a3 100644
--- a/srcpkgs/ditaa/template
+++ b/srcpkgs/ditaa/template
@@ -2,7 +2,6 @@
 pkgname=ditaa
 version=0.11.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=fetch
 depends="virtual?java-environment"
diff --git a/srcpkgs/dkimproxy/template b/srcpkgs/dkimproxy/template
index de0eec306ba..a31f3a895aa 100644
--- a/srcpkgs/dkimproxy/template
+++ b/srcpkgs/dkimproxy/template
@@ -3,8 +3,6 @@ pkgname=dkimproxy
 version=1.4.1
 revision=1
 build_style=gnu-configure
-# dkimproxy is written in perl, so noarch
-archs=noarch
 hostmakedepends="perl perl-Net-Server perl-Mail-DKIM"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/dnssec-anchors/template b/srcpkgs/dnssec-anchors/template
index 18b24b4f80d..33e43584acd 100644
--- a/srcpkgs/dnssec-anchors/template
+++ b/srcpkgs/dnssec-anchors/template
@@ -8,7 +8,6 @@ short_desc="DNSSEC trust anchors for the root zone"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
 homepage="http://data.iana.org/root-anchors/"
-archs=noarch
 
 do_install() {
 	# Generate using unbound-anchor(1).
diff --git a/srcpkgs/docbook-dsssl/template b/srcpkgs/docbook-dsssl/template
index 2530523b127..e8cbf4a1161 100644
--- a/srcpkgs/docbook-dsssl/template
+++ b/srcpkgs/docbook-dsssl/template
@@ -2,7 +2,6 @@
 pkgname=docbook-dsssl
 version=1.79
 revision=3
-archs=noarch
 makedepends="xmlcatmgr docbook-xml"
 depends="${makedepends}"
 short_desc="DSSSL stylesheets for the DocBook DTD"
diff --git a/srcpkgs/docbook-xml/template b/srcpkgs/docbook-xml/template
index ef5634c0603..9ee76e8cd83 100644
--- a/srcpkgs/docbook-xml/template
+++ b/srcpkgs/docbook-xml/template
@@ -2,7 +2,6 @@
 pkgname=docbook-xml
 version=4.5
 revision=4
-archs=noarch
 wrksrc="docbook"
 hostmakedepends="bsdtar"
 makedepends="xmlcatmgr"
diff --git a/srcpkgs/docbook-xsl-ns/template b/srcpkgs/docbook-xsl-ns/template
index 6c34d9b171b..5e3baf038f8 100644
--- a/srcpkgs/docbook-xsl-ns/template
+++ b/srcpkgs/docbook-xsl-ns/template
@@ -3,7 +3,6 @@ pkgname=docbook-xsl-ns
 # keep in sync with docbook-xsl
 version=1.79.1
 revision=1
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Cameron Nemo <cnemo@tutanota.com>"
diff --git a/srcpkgs/docbook-xsl/template b/srcpkgs/docbook-xsl/template
index 0d63b09dfbe..da08cd74cdb 100644
--- a/srcpkgs/docbook-xsl/template
+++ b/srcpkgs/docbook-xsl/template
@@ -4,7 +4,6 @@ reverts="1.79.2_1"
 # keep in sync with docbook-xsl-ns
 version=1.79.1
 revision=7
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/docbook/template b/srcpkgs/docbook/template
index a36660f122b..710a65e699c 100644
--- a/srcpkgs/docbook/template
+++ b/srcpkgs/docbook/template
@@ -2,7 +2,6 @@
 pkgname=docbook
 version=4.5
 revision=4
-archs=noarch
 hostmakedepends="bsdtar"
 depends="xmlcatmgr ISOEnts"
 short_desc="SGML DTD designed for computer documentation"
diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index d381a1091d0..c61787c2473 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -2,7 +2,6 @@
 pkgname=docker-compose
 version=1.25.5
 revision=1
-archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/docx2txt/template b/srcpkgs/docx2txt/template
index 709713d475f..aaea19e0205 100644
--- a/srcpkgs/docx2txt/template
+++ b/srcpkgs/docx2txt/template
@@ -2,7 +2,6 @@
 pkgname=docx2txt
 version=1.4
 revision=2
-archs=noarch
 conf_files="/etc/docx2txt.config"
 depends="perl unzip"
 short_desc="Docx (MS Word) to Text convertor"
diff --git a/srcpkgs/dot-xsession/template b/srcpkgs/dot-xsession/template
index e5fe04677e9..fd21ba7c217 100644
--- a/srcpkgs/dot-xsession/template
+++ b/srcpkgs/dot-xsession/template
@@ -2,7 +2,6 @@
 pkgname=dot-xsession
 version=0.1
 revision=2
-archs=noarch
 depends="xmessage"
 short_desc="XSession file to run the users ~/.xsession"
 maintainer="Florian Wagner <florian@wagner-flo.net>"
diff --git a/srcpkgs/downloader-cli/template b/srcpkgs/downloader-cli/template
index 2e5b1ed2d59..92781e2363b 100644
--- a/srcpkgs/downloader-cli/template
+++ b/srcpkgs/downloader-cli/template
@@ -2,7 +2,6 @@
 pkgname=downloader-cli
 version=0.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-urllib3 python3-downloader-cli"
diff --git a/srcpkgs/dpdk/template b/srcpkgs/dpdk/template
index 0f3b5630b7b..bc6b9148a62 100644
--- a/srcpkgs/dpdk/template
+++ b/srcpkgs/dpdk/template
@@ -33,7 +33,6 @@ post_install() {
 
 dpdk-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/dracut/template b/srcpkgs/dracut/template
index f4f52be097a..68ef7f8e37b 100644
--- a/srcpkgs/dracut/template
+++ b/srcpkgs/dracut/template
@@ -57,7 +57,6 @@ post_install() {
 dracut-network_package() {
 	depends="dhclient ${sourcepkg}-${version}_${revision}"
 	short_desc+=" - network modules"
-	archs=noarch
 	pkg_install() {
 		for f in 40network 90livenet 95fcoe 95iscsi \
 			95nbd 95nfs 95zfcp 95znet; do
diff --git a/srcpkgs/dreampie/template b/srcpkgs/dreampie/template
index edd0f48298b..bf8d07ea53f 100644
--- a/srcpkgs/dreampie/template
+++ b/srcpkgs/dreampie/template
@@ -2,7 +2,6 @@
 pkgname=dreampie
 version=1.2.1
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="dreampielib"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/drist/template b/srcpkgs/drist/template
index 89f39b7eec8..99700b7f90f 100644
--- a/srcpkgs/drist/template
+++ b/srcpkgs/drist/template
@@ -2,7 +2,6 @@
 pkgname=drist
 version=1.04
 revision=1
-archs=noarch
 wrksrc=$pkgname-v$version
 build_style=gnu-makefile
 depends="openssh rsync"
diff --git a/srcpkgs/dstat/template b/srcpkgs/dstat/template
index 3ec983e85db..084d1426889 100644
--- a/srcpkgs/dstat/template
+++ b/srcpkgs/dstat/template
@@ -2,7 +2,6 @@
 pkgname=dstat
 version=0.7.4
 revision=2
-archs=noarch
 makedepends="python3"
 depends="python3-six"
 short_desc="Versatile tool for generating system resource statistics"
diff --git a/srcpkgs/dtrx/template b/srcpkgs/dtrx/template
index 6ccec18f5b2..e7d8af1c2eb 100644
--- a/srcpkgs/dtrx/template
+++ b/srcpkgs/dtrx/template
@@ -2,7 +2,6 @@
 pkgname=dtrx
 version=7.1
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python"
diff --git a/srcpkgs/duiadns/template b/srcpkgs/duiadns/template
index ae34b00cb95..30c1a9ec4e0 100644
--- a/srcpkgs/duiadns/template
+++ b/srcpkgs/duiadns/template
@@ -2,7 +2,6 @@
 pkgname=duiadns
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-netifaces python3-netaddr python3-requests"
diff --git a/srcpkgs/durden/template b/srcpkgs/durden/template
index 54a4bc1759b..c4de0863636 100644
--- a/srcpkgs/durden/template
+++ b/srcpkgs/durden/template
@@ -9,7 +9,6 @@ license="BSD-3-Clause"
 homepage="http://durden.arcan-fe.com/"
 distfiles="https://github.com/letoram/${pkgname}/archive/${version}.tar.gz"
 checksum=f0cb0cdc6d16b4807efab5b6152b9f26813dccd2d66af5f1d80494769f840915
-archs=noarch
 
 do_install() {
 	vbin distr/durden
diff --git a/srcpkgs/easyrsa/template b/srcpkgs/easyrsa/template
index 517dd6ff50b..fb5adbec8db 100644
--- a/srcpkgs/easyrsa/template
+++ b/srcpkgs/easyrsa/template
@@ -2,7 +2,6 @@
 pkgname=easyrsa
 version=3.0.7
 revision=1
-archs="noarch"
 wrksrc="EasyRSA-${version}"
 depends="libressl"
 short_desc="Simple shell based CA utility"
diff --git a/srcpkgs/econnman/template b/srcpkgs/econnman/template
index 9568c2e2adf..f8750ebb914 100644
--- a/srcpkgs/econnman/template
+++ b/srcpkgs/econnman/template
@@ -2,7 +2,6 @@
 pkgname=econnman
 version=1.1.0
 revision=5
-archs=noarch
 _gitrev=18e7be6bf80df6b86965ba93391b205339fc7267
 wrksrc=${pkgname}-${_gitrev}
 build_style=gnu-configure
diff --git a/srcpkgs/edx-dl/template b/srcpkgs/edx-dl/template
index 1ea89343e7a..1f0b0d53010 100644
--- a/srcpkgs/edx-dl/template
+++ b/srcpkgs/edx-dl/template
@@ -2,7 +2,6 @@
 pkgname=edx-dl
 version=0.1.13
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-html5lib python3-setuptools
diff --git a/srcpkgs/eigen/template b/srcpkgs/eigen/template
index 8344fbf98ec..7d283094bf7 100644
--- a/srcpkgs/eigen/template
+++ b/srcpkgs/eigen/template
@@ -2,7 +2,6 @@
 pkgname=eigen
 version=3.3.7
 revision=2
-archs=noarch
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/eigen2/template b/srcpkgs/eigen2/template
index 08087b4900b..dffc3ffe0fa 100644
--- a/srcpkgs/eigen2/template
+++ b/srcpkgs/eigen2/template
@@ -3,7 +3,6 @@ pkgname=eigen2
 reverts="3.2.2_1"
 version=2.0.17
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b23437e61a07"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 2.x)"
diff --git a/srcpkgs/eigen3.2/template b/srcpkgs/eigen3.2/template
index eaedcc6fe2a..5ac0fc384ac 100644
--- a/srcpkgs/eigen3.2/template
+++ b/srcpkgs/eigen3.2/template
@@ -2,7 +2,6 @@
 pkgname=eigen3.2
 version=3.2.10
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b9cd8366d4e8"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
diff --git a/srcpkgs/ekushey-fonts-ttf/template b/srcpkgs/ekushey-fonts-ttf/template
index 406a5f88969..3eb10b23313 100644
--- a/srcpkgs/ekushey-fonts-ttf/template
+++ b/srcpkgs/ekushey-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=ekushey-fonts-ttf
 version=20191020
 revision=1
-archs=noarch
 build_style=fetch
 depends="font-util"
 short_desc="Bengali fonts from Ekushey project"
diff --git a/srcpkgs/electrum-ltc/template b/srcpkgs/electrum-ltc/template
index 550fda484e6..0f9ed450bbf 100644
--- a/srcpkgs/electrum-ltc/template
+++ b/srcpkgs/electrum-ltc/template
@@ -2,7 +2,6 @@
 pkgname=electrum-ltc
 version=3.3.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx
diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 835fbf25533..839b59a6ba2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -2,7 +2,6 @@
 pkgname=electrum
 version=3.3.8
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"
 hostmakedepends="python3-PyQt5-devel-tools python3-setuptools"
diff --git a/srcpkgs/emacs-ess/template b/srcpkgs/emacs-ess/template
index 40338f2f137..a03e71623f5 100644
--- a/srcpkgs/emacs-ess/template
+++ b/srcpkgs/emacs-ess/template
@@ -3,7 +3,6 @@ pkgname=emacs-ess
 reverts="18.10r1_1"
 version=18.10.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="ess-${version}"
 makedepends="emacs perl"
diff --git a/srcpkgs/emacs/template b/srcpkgs/emacs/template
index 420ef0fa14f..4e2f9c7fdea 100755
--- a/srcpkgs/emacs/template
+++ b/srcpkgs/emacs/template
@@ -81,7 +81,6 @@ do_install() {
 
 emacs-common_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/emacs
 		vmove usr/share/man
diff --git a/srcpkgs/emerald-themes/template b/srcpkgs/emerald-themes/template
index 7e17b4bfad9..a9e11467bae 100644
--- a/srcpkgs/emerald-themes/template
+++ b/srcpkgs/emerald-themes/template
@@ -2,7 +2,6 @@
 pkgname=emerald-themes
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config"
 makedepends="emerald-devel"
diff --git a/srcpkgs/encodings/template b/srcpkgs/encodings/template
index eb2ef08e8e6..f4be9fec9d6 100644
--- a/srcpkgs/encodings/template
+++ b/srcpkgs/encodings/template
@@ -2,7 +2,6 @@
 pkgname=encodings
 version=1.0.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config font-util"
 depends="font-util"
diff --git a/srcpkgs/endless-sky-gl21/template b/srcpkgs/endless-sky-gl21/template
index ead1c34e626..f69b748b665 100644
--- a/srcpkgs/endless-sky-gl21/template
+++ b/srcpkgs/endless-sky-gl21/template
@@ -18,7 +18,6 @@ checksum=46918d0cc35aaeb1219194099223e3338245aa04aa3f29fd76e3376bf5779376
 
 endless-sky-gl21-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 829bdf28df7..4aa6fcffc44 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -15,7 +15,6 @@ checksum=31f76ac11666415478678d924174d43a620a7fd1093e95131776aed12b912eb4
 
 endless-sky-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/enigma/template b/srcpkgs/enigma/template
index 89f359f80c7..3d11662e5da 100644
--- a/srcpkgs/enigma/template
+++ b/srcpkgs/enigma/template
@@ -31,7 +31,6 @@ post_install() {
 
 enigma-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/enigma
 	}
@@ -39,7 +38,6 @@ enigma-data_package() {
 
 enigma-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/envypn-font/template b/srcpkgs/envypn-font/template
index 9f3d7de3075..146c2b130ce 100644
--- a/srcpkgs/envypn-font/template
+++ b/srcpkgs/envypn-font/template
@@ -2,7 +2,6 @@
 pkgname=envypn-font
 version=1.7.1
 revision=3
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="Readable bitmap font inspired by Envy Code R"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template
index 371e9404e69..35c9bed4ee9 100644
--- a/srcpkgs/erlang/template
+++ b/srcpkgs/erlang/template
@@ -59,7 +59,6 @@ post_install() {
 erlang-doc_package() {
 	short_desc="Erlang programming language documentation and examples"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/erlang/doc
 		for i in $(cd ${DESTDIR}; find usr/lib/erlang -type d \( -path '*/examples' -o -path '*/doc/html' \))
diff --git a/srcpkgs/escrotum/template b/srcpkgs/escrotum/template
index 44cec111737..5438e8a4c14 100644
--- a/srcpkgs/escrotum/template
+++ b/srcpkgs/escrotum/template
@@ -2,7 +2,6 @@
 pkgname=escrotum
 version=0.2.1
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="escrotum"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/eselect/template b/srcpkgs/eselect/template
index 04111ebc945..fd987f2c034 100644
--- a/srcpkgs/eselect/template
+++ b/srcpkgs/eselect/template
@@ -2,7 +2,6 @@
 pkgname=eselect
 version=1.4.16
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libtool"
 depends="bash"
diff --git a/srcpkgs/etcetera/template b/srcpkgs/etcetera/template
index d6723467c4b..0af51a75c49 100644
--- a/srcpkgs/etcetera/template
+++ b/srcpkgs/etcetera/template
@@ -2,7 +2,6 @@
 pkgname=etcetera
 version=1.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Config file management with a touch of wisdom"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/etckeeper/template b/srcpkgs/etckeeper/template
index 26cffae3768..210c55a62dd 100644
--- a/srcpkgs/etckeeper/template
+++ b/srcpkgs/etckeeper/template
@@ -2,7 +2,6 @@
 pkgname=etckeeper
 version=1.18.14
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/etckeeper/etckeeper.conf"
 hostmakedepends="perl"
diff --git a/srcpkgs/etesync-dav/template b/srcpkgs/etesync-dav/template
index 03763f96644..3c8b547f230 100644
--- a/srcpkgs/etesync-dav/template
+++ b/srcpkgs/etesync-dav/template
@@ -2,7 +2,6 @@
 pkgname=etesync-dav
 version=0.17.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-etesync radicale2 python3-Flask python3-Flask-WTF"
diff --git a/srcpkgs/etr/template b/srcpkgs/etr/template
index f3af59d2220..6414c6a8c9c 100644
--- a/srcpkgs/etr/template
+++ b/srcpkgs/etr/template
@@ -15,7 +15,6 @@ checksum=4b2899314eda8d0826504ab274acb13ab0dab58b6d0641587749dfa77757da17
 
 etr-data_package() {
  	short_desc+=" - data files"
- 	archs=noarch
  	pkg_install() {
  		vmove usr/share/etr
  	}
diff --git a/srcpkgs/execline/template b/srcpkgs/execline/template
index 92c5df11259..a46f5673de0 100644
--- a/srcpkgs/execline/template
+++ b/srcpkgs/execline/template
@@ -35,7 +35,6 @@ post_install() {
 }
 
 execline-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/exiftool/template b/srcpkgs/exiftool/template
index 0b7a65d50d9..390ef84235e 100644
--- a/srcpkgs/exiftool/template
+++ b/srcpkgs/exiftool/template
@@ -2,7 +2,6 @@
 pkgname=exiftool
 version=12.04
 revision=1
-archs=noarch
 wrksrc="Image-ExifTool-${version}"
 build_style=perl-module
 hostmakedepends="perl tar"
diff --git a/srcpkgs/extra-cmake-modules/template b/srcpkgs/extra-cmake-modules/template
index 99601e6ce62..5a958049219 100644
--- a/srcpkgs/extra-cmake-modules/template
+++ b/srcpkgs/extra-cmake-modules/template
@@ -2,7 +2,6 @@
 pkgname=extra-cmake-modules
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_HTML_DOCS=OFF -DBUILD_TESTING=OFF"
 hostmakedepends="python3-Sphinx qt5-tools"
diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index ee7f68f9e36..bbdbde91e85 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -2,7 +2,6 @@
 pkgname=eyeD3
 version=0.9.5
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-grako python3-pylast python3-setuptools python3-deprecation
diff --git a/srcpkgs/faba-icon-theme/template b/srcpkgs/faba-icon-theme/template
index 7624d10a4db..6fc98c76314 100644
--- a/srcpkgs/faba-icon-theme/template
+++ b/srcpkgs/faba-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faba-icon-theme
 version=4.3
 revision=1
-archs=noarch
 build_style=meson
 short_desc="Sexy, modern FreeDesktop icon set with Tango and elementary influences"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/faenza-icon-theme/template b/srcpkgs/faenza-icon-theme/template
index f05167001e4..447ffeef02e 100644
--- a/srcpkgs/faenza-icon-theme/template
+++ b/srcpkgs/faenza-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faenza-icon-theme
 version=1.3.1
 revision=2
-archs=noarch
 wrksrc="faenza-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme"
 short_desc="Faenza icon theme"
diff --git a/srcpkgs/faience-icon-theme/template b/srcpkgs/faience-icon-theme/template
index 27a4fb5be9a..426205bbf78 100644
--- a/srcpkgs/faience-icon-theme/template
+++ b/srcpkgs/faience-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faience-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="faience-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme faenza-icon-theme"
 short_desc="An icon theme based on Faenza"
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index cde2f25630f..3b823a5bc16 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -2,7 +2,6 @@
 pkgname=fail2ban
 version=0.11.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
diff --git a/srcpkgs/fake-hwclock/template b/srcpkgs/fake-hwclock/template
index 16731b49dfe..c1f33f221ac 100644
--- a/srcpkgs/fake-hwclock/template
+++ b/srcpkgs/fake-hwclock/template
@@ -2,7 +2,6 @@
 pkgname=fake-hwclock
 version=0.11
 revision=1
-archs=noarch
 wrksrc=git
 short_desc="Save/restore system clock on machines without working RTC hardware"
 maintainer="Ivan Gonzalez Polanco <ivan14polanco@gmail.com>"
diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 44628c261d2..80685a4e52a 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -2,7 +2,6 @@
 pkgname=fava
 version=1.15
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-Babel python3-Cheroot python3-Flask-Babel python3-Flask
diff --git a/srcpkgs/fbmenugen/template b/srcpkgs/fbmenugen/template
index 7b7659eb98d..ad03431b85f 100644
--- a/srcpkgs/fbmenugen/template
+++ b/srcpkgs/fbmenugen/template
@@ -2,7 +2,6 @@
 pkgname=fbmenugen
 version=0.84
 revision=1
-archs=noarch
 depends="fluxbox perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Fluxbox menu generator (with support for icons)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ferm/template b/srcpkgs/ferm/template
index 42241669552..1b0c4538c56 100644
--- a/srcpkgs/ferm/template
+++ b/srcpkgs/ferm/template
@@ -2,7 +2,6 @@
 pkgname=ferm
 version=2.5.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl iptables"
 short_desc="Frontend for iptables"
diff --git a/srcpkgs/fff/template b/srcpkgs/fff/template
index 310793c894f..dfe012ccbd1 100644
--- a/srcpkgs/fff/template
+++ b/srcpkgs/fff/template
@@ -2,7 +2,6 @@
 pkgname=fff
 version=2.1
 revision=1
-archs=noarch
 depends="bash coreutils xdg-utils"
 short_desc="Simple file manager written in bash"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/ffscreencast/template b/srcpkgs/ffscreencast/template
index 10653116d67..76bc9df0078 100644
--- a/srcpkgs/ffscreencast/template
+++ b/srcpkgs/ffscreencast/template
@@ -2,7 +2,6 @@
 pkgname=ffscreencast
 version=0.6.4
 revision=1
-archs=noarch
 depends="alsa-utils bash ffmpeg v4l-utils xdpyinfo"
 maintainer="Orphaned <orphan@voidlinux.org>"
 short_desc="Desktop-recording with video overlay and multi monitor support"
diff --git a/srcpkgs/fgit/template b/srcpkgs/fgit/template
index e298b9f4a71..1b031ec91c3 100644
--- a/srcpkgs/fgit/template
+++ b/srcpkgs/fgit/template
@@ -2,7 +2,6 @@
 pkgname=fgit
 version=1.0.2
 revision=1
-archs=noarch
 checkdepends="git"
 depends="bash git ncurses"
 short_desc="Run a Git command in several repositories"
diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 1d395274898..09062d70808 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -2,7 +2,6 @@
 pkgname=fierce
 version=1.4.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="fierce"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/figlet-fonts/template b/srcpkgs/figlet-fonts/template
index 36746d35612..be340f68c7a 100644
--- a/srcpkgs/figlet-fonts/template
+++ b/srcpkgs/figlet-fonts/template
@@ -2,7 +2,6 @@
 pkgname=figlet-fonts
 version=20150508
 revision=3
-archs=noarch
 create_wrksrc=yes
 depends="figlet perl"
 short_desc="Additional fonts for figlet"
diff --git a/srcpkgs/fillets-ng/template b/srcpkgs/fillets-ng/template
index 65f3ac43898..6b4be8c84e4 100644
--- a/srcpkgs/fillets-ng/template
+++ b/srcpkgs/fillets-ng/template
@@ -19,7 +19,6 @@ build_wrksrc="fillets-ng-${version}"
 
 fillets-ng-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/games
 		mv ${wrksrc}/fillets-ng-data-${version} ${PKGDESTDIR}/usr/share/games/fillets-ng
diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index 4834f0a0bf5..f87bc737a3d 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -2,7 +2,6 @@
 pkgname=flake8
 version=3.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycodestyle>=2.6.0<2.7.0
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-flake8_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="flake8>=${version}_${revision}"
diff --git a/srcpkgs/flare-engine/template b/srcpkgs/flare-engine/template
index 707157f38d9..59244d516f3 100644
--- a/srcpkgs/flare-engine/template
+++ b/srcpkgs/flare-engine/template
@@ -16,7 +16,6 @@ checksum=035ffd936d9e120dc2eb792779a0b7ff64574d4a29a1124946deaf7946d1059d
 
 flare-engine-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/flare
 	}
diff --git a/srcpkgs/flare-game/template b/srcpkgs/flare-game/template
index 9da28107b18..b769140e001 100644
--- a/srcpkgs/flare-game/template
+++ b/srcpkgs/flare-game/template
@@ -2,7 +2,6 @@
 pkgname=flare-game
 version=1.11
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DDATADIR=share/flare"
 depends="flare-engine>=${version}"
diff --git a/srcpkgs/flickcurl/template b/srcpkgs/flickcurl/template
index e1e33187b4c..c0800a39453 100644
--- a/srcpkgs/flickcurl/template
+++ b/srcpkgs/flickcurl/template
@@ -12,7 +12,6 @@ distfiles="http://download.dajobe.org/flickcurl/flickcurl-${version}.tar.gz"
 checksum=ff42a36c7c1c7d368246f6bc9b7d792ed298348e5f0f5d432e49f6803562f5a3
 
 flickcurl-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation (HTML Version)"
 	pkg_install() {
diff --git a/srcpkgs/flightgear/template b/srcpkgs/flightgear/template
index cbf60cc058c..c84d1fd9a44 100644
--- a/srcpkgs/flightgear/template
+++ b/srcpkgs/flightgear/template
@@ -41,7 +41,6 @@ post_install() {
 
 flightgear-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/flightgear
 		mv ${XBPS_BUILDDIR}/fgdata ${PKGDESTDIR}/usr/share/flightgear
diff --git a/srcpkgs/flinks/template b/srcpkgs/flinks/template
index 780aead102c..4fbd59497a1 100644
--- a/srcpkgs/flinks/template
+++ b/srcpkgs/flinks/template
@@ -2,7 +2,6 @@
 pkgname=flinks
 version=0.4.3
 revision=5
-archs=noarch
 build_style=python3-module
 pycompile_module="flinkspkg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/flowblade/template b/srcpkgs/flowblade/template
index c011d7dc115..b22f56309ba 100644
--- a/srcpkgs/flowblade/template
+++ b/srcpkgs/flowblade/template
@@ -2,7 +2,6 @@
 pkgname=flowblade
 version=2.4
 revision=2
-archs=noarch
 build_wrksrc=flowblade-trunk
 build_style=python3-module
 make_install_args="--install-lib=${DESTDIR}/usr/share/pyshared"
diff --git a/srcpkgs/foliate/template b/srcpkgs/foliate/template
index a3fc5ed2fe2..498172d4904 100644
--- a/srcpkgs/foliate/template
+++ b/srcpkgs/foliate/template
@@ -2,7 +2,6 @@
 pkgname=foliate
 version=2.4.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config gettext gjs glib-devel"
 depends="webkit2gtk gjs"
diff --git a/srcpkgs/font-3270/template b/srcpkgs/font-3270/template
index 2031b872668..5ec94a8b6fb 100644
--- a/srcpkgs/font-3270/template
+++ b/srcpkgs/font-3270/template
@@ -2,7 +2,6 @@
 pkgname=font-3270
 version=2.0.3
 revision=1
-archs=noarch
 wrksrc="3270font-${version}"
 build_style=gnu-makefile
 make_build_target="font"
diff --git a/srcpkgs/font-FixedMisc/template b/srcpkgs/font-FixedMisc/template
index 7f937497043..e4605c4079a 100644
--- a/srcpkgs/font-FixedMisc/template
+++ b/srcpkgs/font-FixedMisc/template
@@ -2,7 +2,6 @@
 pkgname=font-FixedMisc
 version=20200214
 revision=1
-archs=noarch
 wrksrc=FixedMisc
 hostmakedepends="bdftopcf"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Hasklig/template b/srcpkgs/font-Hasklig/template
index 656492ec093..bdd229dc9ec 100644
--- a/srcpkgs/font-Hasklig/template
+++ b/srcpkgs/font-Hasklig/template
@@ -2,7 +2,6 @@
 pkgname=font-Hasklig
 version=1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Siji/template b/srcpkgs/font-Siji/template
index cfd7e82ad6e..2dd7a1d88de 100644
--- a/srcpkgs/font-Siji/template
+++ b/srcpkgs/font-Siji/template
@@ -2,7 +2,6 @@
 pkgname=font-Siji
 version=0.0.0.20171022
 revision=1
-archs=noarch
 _githash=9d88311bb127b21672b2d4b43eed1ab0e494f143
 wrksrc="siji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/font-adobe-100dpi/template b/srcpkgs/font-adobe-100dpi/template
index 43c280a256a..da546a985b2 100644
--- a/srcpkgs/font-adobe-100dpi/template
+++ b/srcpkgs/font-adobe-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-75dpi/template b/srcpkgs/font-adobe-75dpi/template
index deb1d71ba1d..38965635fea 100644
--- a/srcpkgs/font-adobe-75dpi/template
+++ b/srcpkgs/font-adobe-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-source-code-pro/template b/srcpkgs/font-adobe-source-code-pro/template
index 093d75e286a..527d1f93c7d 100644
--- a/srcpkgs/font-adobe-source-code-pro/template
+++ b/srcpkgs/font-adobe-source-code-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-source-code-pro
 version=2.030R
 revision=2
-archs=noarch
 wrksrc="source-code-pro-${version}-ro-1.050R-it"
 depends="font-util"
 short_desc="Monospaced font family for user interface and coding environments"
@@ -20,7 +19,6 @@ do_install() {
 }
 
 font-sourcecodepro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/font-adobe-utopia-100dpi/template b/srcpkgs/font-adobe-utopia-100dpi/template
index 058691db022..182bd2973fa 100644
--- a/srcpkgs/font-adobe-utopia-100dpi/template
+++ b/srcpkgs/font-adobe-utopia-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-100dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-75dpi/template b/srcpkgs/font-adobe-utopia-75dpi/template
index bce9f9887f6..e5b0fc347e9 100644
--- a/srcpkgs/font-adobe-utopia-75dpi/template
+++ b/srcpkgs/font-adobe-utopia-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-75dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-type1/template b/srcpkgs/font-adobe-utopia-type1/template
index 0e7d539142e..5a3b04053e0 100644
--- a/srcpkgs/font-adobe-utopia-type1/template
+++ b/srcpkgs/font-adobe-utopia-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-type1
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-alias/template b/srcpkgs/font-alias/template
index 906543427b5..e399f0f92b8 100644
--- a/srcpkgs/font-alias/template
+++ b/srcpkgs/font-alias/template
@@ -2,7 +2,6 @@
 pkgname=font-alias
 version=1.0.3
 revision=4
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard aliases for X11 PCF fonts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/font-awesome/template b/srcpkgs/font-awesome/template
index a675bd4ad11..aacc7a44ad3 100644
--- a/srcpkgs/font-awesome/template
+++ b/srcpkgs/font-awesome/template
@@ -3,7 +3,6 @@ pkgname=font-awesome
 reverts="5.0.8_1 5.0.9_1 5.0.10_1"
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc=Font-Awesome-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-awesome5/template b/srcpkgs/font-awesome5/template
index 78cfb9f1146..0fc0a94f97d 100644
--- a/srcpkgs/font-awesome5/template
+++ b/srcpkgs/font-awesome5/template
@@ -2,7 +2,6 @@
 pkgname=font-awesome5
 version=5.14.0
 revision=1
-archs=noarch
 wrksrc="Font-Awesome-${version}"
 depends="font-util"
 short_desc="Iconic font (version 5)"
diff --git a/srcpkgs/font-b612/template b/srcpkgs/font-b612/template
index 0d6d974aa0a..45e731de6a5 100644
--- a/srcpkgs/font-b612/template
+++ b/srcpkgs/font-b612/template
@@ -2,7 +2,6 @@
 pkgname=font-b612
 version=1.008
 revision=1
-archs=noarch
 wrksrc="b612-${version}"
 depends="font-util xbps-triggers"
 short_desc="Highly legible font family designed for aircraft cockpit screens"
diff --git a/srcpkgs/font-bh-100dpi/template b/srcpkgs/font-bh-100dpi/template
index 0eee5166e2f..aa70e1e4597 100644
--- a/srcpkgs/font-bh-100dpi/template
+++ b/srcpkgs/font-bh-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-75dpi/template b/srcpkgs/font-bh-75dpi/template
index 99b51be90b5..291b0eca237 100644
--- a/srcpkgs/font-bh-75dpi/template
+++ b/srcpkgs/font-bh-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-100dpi/template b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
index 3840bad1134..c513a84160d 100644
--- a/srcpkgs/font-bh-lucidatypewriter-100dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-75dpi/template b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
index 6110fa4f547..2bc610d24c0 100644
--- a/srcpkgs/font-bh-lucidatypewriter-75dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-ttf/template b/srcpkgs/font-bh-ttf/template
index 955b9e6f14d..26acfa6544d 100644
--- a/srcpkgs/font-bh-ttf/template
+++ b/srcpkgs/font-bh-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-ttf
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-type1/template b/srcpkgs/font-bh-type1/template
index f7135cd6d50..ddd695e5312 100644
--- a/srcpkgs/font-bh-type1/template
+++ b/srcpkgs/font-bh-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-100dpi/template b/srcpkgs/font-bitstream-100dpi/template
index 08dbeee24a0..a7b0b8dde8f 100644
--- a/srcpkgs/font-bitstream-100dpi/template
+++ b/srcpkgs/font-bitstream-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-75dpi/template b/srcpkgs/font-bitstream-75dpi/template
index c6853fa8cd8..c1f60fb03da 100644
--- a/srcpkgs/font-bitstream-75dpi/template
+++ b/srcpkgs/font-bitstream-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-speedo/template b/srcpkgs/font-bitstream-speedo/template
index 96bdb122283..0e0f4880d57 100644
--- a/srcpkgs/font-bitstream-speedo/template
+++ b/srcpkgs/font-bitstream-speedo/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-speedo
 version=1.0.2
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf mkfontscale"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-bitstream-type1/template b/srcpkgs/font-bitstream-type1/template
index d6e4e2f8700..f8ed3355afe 100644
--- a/srcpkgs/font-bitstream-type1/template
+++ b/srcpkgs/font-bitstream-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-cozette/template b/srcpkgs/font-cozette/template
index fc1118ac3a4..4e3f8553fa0 100644
--- a/srcpkgs/font-cozette/template
+++ b/srcpkgs/font-cozette/template
@@ -2,7 +2,6 @@
 pkgname=font-cozette
 version=1.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="font-util"
 depends="font-util"
diff --git a/srcpkgs/font-cursor-misc/template b/srcpkgs/font-cursor-misc/template
index e01946f7dde..0d2d54e4a8e 100644
--- a/srcpkgs/font-cursor-misc/template
+++ b/srcpkgs/font-cursor-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-cursor-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-daewoo-misc/template b/srcpkgs/font-daewoo-misc/template
index da7e8c4ba1e..8dbd3cf7268 100644
--- a/srcpkgs/font-daewoo-misc/template
+++ b/srcpkgs/font-daewoo-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-daewoo-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-dec-misc/template b/srcpkgs/font-dec-misc/template
index a4bfec05b01..afa30bf8715 100644
--- a/srcpkgs/font-dec-misc/template
+++ b/srcpkgs/font-dec-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-dec-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-fantasque-sans-ttf/template b/srcpkgs/font-fantasque-sans-ttf/template
index 3f28af2faa8..3b79bdff398 100644
--- a/srcpkgs/font-fantasque-sans-ttf/template
+++ b/srcpkgs/font-fantasque-sans-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-fantasque-sans-ttf
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Handwriting-like programming typeface"
diff --git a/srcpkgs/font-fira-otf/template b/srcpkgs/font-fira-otf/template
index 921fcb8d30d..afaf098e6b7 100644
--- a/srcpkgs/font-fira-otf/template
+++ b/srcpkgs/font-fira-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-fira-otf
 version=4.202
 revision=3
-archs=noarch
 wrksrc="Fira-${version}"
 depends="font-util xbps-triggers"
 short_desc="Mozilla's new typeface OTF, used in Firefox OS"
@@ -23,7 +22,6 @@ do_install() {
 }
 
 font-fira-ttf_package() {
-	archs=noarch
 	font_dirs="/usr/share/fonts/TTF"
 	depends="font-util xbps-triggers"
 	pkg_install() {
diff --git a/srcpkgs/font-firacode/template b/srcpkgs/font-firacode/template
index 36df04b7ab1..1699c5211ad 100644
--- a/srcpkgs/font-firacode/template
+++ b/srcpkgs/font-firacode/template
@@ -2,7 +2,6 @@
 pkgname=font-firacode
 version=5.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="FiraCode: monospaced font with programming ligatures"
diff --git a/srcpkgs/font-fontin/template b/srcpkgs/font-fontin/template
index e91405490f5..c0ab17f0e66 100644
--- a/srcpkgs/font-fontin/template
+++ b/srcpkgs/font-fontin/template
@@ -2,7 +2,6 @@
 pkgname=font-fontin
 version=0.0.20151027
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hack-ttf/template b/srcpkgs/font-hack-ttf/template
index 2cec70ff0f0..5929977d6e3 100644
--- a/srcpkgs/font-hack-ttf/template
+++ b/srcpkgs/font-hack-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-hack-ttf
 version=3.003
 revision=1
 wrksrc="Hack-${version}"
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="A typeface designed for source code"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/font-hanazono/template b/srcpkgs/font-hanazono/template
index 0a529e23b0a..cbec1c249ac 100644
--- a/srcpkgs/font-hanazono/template
+++ b/srcpkgs/font-hanazono/template
@@ -3,7 +3,6 @@ pkgname=font-hanazono
 version=20170904
 _revision=68253
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hermit-otf/template b/srcpkgs/font-hermit-otf/template
index 20b784a8149..f20f2fd0e07 100644
--- a/srcpkgs/font-hermit-otf/template
+++ b/srcpkgs/font-hermit-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-hermit-otf
 version=2.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-ibm-plex-ttf/template b/srcpkgs/font-ibm-plex-ttf/template
index 98c9e838f9f..5cdd47ebd0a 100644
--- a/srcpkgs/font-ibm-plex-ttf/template
+++ b/srcpkgs/font-ibm-plex-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-plex-ttf
 version=5.1.0
 revision=1
-archs=noarch
 wrksrc="plex-${version}"
 depends="font-util"
 short_desc="IBM’s typeface, IBM Plex (TTF variant)"
diff --git a/srcpkgs/font-ibm-type1/template b/srcpkgs/font-ibm-type1/template
index aaa4caaab00..549768b91c5 100644
--- a/srcpkgs/font-ibm-type1/template
+++ b/srcpkgs/font-ibm-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-inconsolata-otf/template b/srcpkgs/font-inconsolata-otf/template
index 566e9b29479..65eff0728b6 100644
--- a/srcpkgs/font-inconsolata-otf/template
+++ b/srcpkgs/font-inconsolata-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-inconsolata-otf
 version=001.010
 revision=3
-archs=noarch
 build_style=fetch
 depends="font-util xbps-triggers"
 short_desc="Sans-serif monotype font designed for code listings"
diff --git a/srcpkgs/font-ionicons-ttf/template b/srcpkgs/font-ionicons-ttf/template
index b4fa51931b7..6ac73c9ebc4 100644
--- a/srcpkgs/font-ionicons-ttf/template
+++ b/srcpkgs/font-ionicons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ionicons-ttf
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="ionicons-$version"
 depends="font-util"
 short_desc="Icon font from the Ionic Framework"
diff --git a/srcpkgs/font-iosevka/template b/srcpkgs/font-iosevka/template
index a112064928e..de46bec7644 100644
--- a/srcpkgs/font-iosevka/template
+++ b/srcpkgs/font-iosevka/template
@@ -2,7 +2,6 @@
 pkgname=font-iosevka
 version=3.3.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Slender monospace sans-serif and slab-serif typeface"
diff --git a/srcpkgs/font-isas-misc/template b/srcpkgs/font-isas-misc/template
index 033459448c4..81f16f13ba2 100644
--- a/srcpkgs/font-isas-misc/template
+++ b/srcpkgs/font-isas-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-isas-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-jis-misc/template b/srcpkgs/font-jis-misc/template
index 45638227181..ff60c4b7f17 100644
--- a/srcpkgs/font-jis-misc/template
+++ b/srcpkgs/font-jis-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-jis-misc
 version=1.0.3
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-kakwafont/template b/srcpkgs/font-kakwafont/template
index 89859db95b3..525f489efeb 100644
--- a/srcpkgs/font-kakwafont/template
+++ b/srcpkgs/font-kakwafont/template
@@ -2,7 +2,6 @@
 pkgname=font-kakwafont
 version=0.1.1
 revision=3
-archs=noarch
 wrksrc="kakwafont-${version}"
 build_style=gnu-makefile
 make_install_args="INDEX=false"
diff --git a/srcpkgs/font-libertine-ttf/template b/srcpkgs/font-libertine-ttf/template
index b0521e80e57..7197d3e7c9c 100644
--- a/srcpkgs/font-libertine-ttf/template
+++ b/srcpkgs/font-libertine-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-libertine-ttf
 version=5.3.0
 revision=1
 _date=2012_07_02
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Libertine TTF Fonts - Libre multilingual font family"
@@ -26,7 +25,6 @@ do_install() {
 }
 
 font-libertine-otf_package() {
-	archs=noarch
 	depends="font-util xbps-triggers"
 	short_desc="Libertine OTF Fonts - Libre multilingual font family"
 	font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-manjari/template b/srcpkgs/font-manjari/template
index 459d5de5210..87745816524 100644
--- a/srcpkgs/font-manjari/template
+++ b/srcpkgs/font-manjari/template
@@ -2,7 +2,6 @@
 pkgname=font-manjari
 version=1.810
 revision=3
-archs="noarch"
 create_wrksrc=yes
 depends="font-util"
 short_desc="Malayalam font with smooth curves"
diff --git a/srcpkgs/font-material-design-icons-ttf/template b/srcpkgs/font-material-design-icons-ttf/template
index 70565c4255b..9e9fb6c2991 100644
--- a/srcpkgs/font-material-design-icons-ttf/template
+++ b/srcpkgs/font-material-design-icons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-material-design-icons-ttf
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="material-design-icons-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-micro-misc/template b/srcpkgs/font-micro-misc/template
index 9d07f30c819..6c91e2f0558 100644
--- a/srcpkgs/font-micro-misc/template
+++ b/srcpkgs/font-micro-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-micro-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-misc-misc/template b/srcpkgs/font-misc-misc/template
index bb14ad13e66..454fbcb197f 100644
--- a/srcpkgs/font-misc-misc/template
+++ b/srcpkgs/font-misc-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-misc-misc
 version=1.1.2
 revision=6
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-mplus-ttf/template b/srcpkgs/font-mplus-ttf/template
index 102d839baac..880a2a7d01b 100644
--- a/srcpkgs/font-mplus-ttf/template
+++ b/srcpkgs/font-mplus-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-mplus-ttf
 version=063a
 revision=1
-archs=noarch
 wrksrc="mplus-TESTFLIGHT-${version}"
 depends="fontconfig font-util"
 short_desc="M+ Japanese outline fonts"
diff --git a/srcpkgs/font-mutt-misc/template b/srcpkgs/font-mutt-misc/template
index ec6d140c270..abb8702ad6b 100644
--- a/srcpkgs/font-mutt-misc/template
+++ b/srcpkgs/font-mutt-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-mutt-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-open-dyslexic-ttf/template b/srcpkgs/font-open-dyslexic-ttf/template
index 4b2d57d022a..ae5c3307e9c 100644
--- a/srcpkgs/font-open-dyslexic-ttf/template
+++ b/srcpkgs/font-open-dyslexic-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-open-dyslexic-ttf
 version=20160623
 revision=2
-archs=noarch
 wrksrc="open-dyslexic-${version}-Stable"
 depends="font-util xbps-triggers"
 short_desc="Font created to increase readability for readers with dyslexia"
diff --git a/srcpkgs/font-sarasa-gothic/template b/srcpkgs/font-sarasa-gothic/template
index 8f5d2624504..8ea9f4795c7 100644
--- a/srcpkgs/font-sarasa-gothic/template
+++ b/srcpkgs/font-sarasa-gothic/template
@@ -2,7 +2,6 @@
 pkgname=font-sarasa-gothic
 version=0.12.9
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="CJK programming font based on Iosevka and Source Han Sans"
diff --git a/srcpkgs/font-schumacher-misc/template b/srcpkgs/font-schumacher-misc/template
index e4515207d37..20b0dd7f7dc 100644
--- a/srcpkgs/font-schumacher-misc/template
+++ b/srcpkgs/font-schumacher-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-schumacher-misc
 version=1.1.2
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-sil-abyssinica/template b/srcpkgs/font-sil-abyssinica/template
index 1c48dbfedd6..87bca44c4e4 100644
--- a/srcpkgs/font-sil-abyssinica/template
+++ b/srcpkgs/font-sil-abyssinica/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-abyssinica
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AbyssinicaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-alkalami/template b/srcpkgs/font-sil-alkalami/template
index 684c7b7d0d3..b6638f07c83 100644
--- a/srcpkgs/font-sil-alkalami/template
+++ b/srcpkgs/font-sil-alkalami/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-alkalami
 version=1.100
 revision=1
-archs=noarch
 wrksrc="Alkalami-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-andika/template b/srcpkgs/font-sil-andika/template
index 4b869085776..9cd574eac8e 100644
--- a/srcpkgs/font-sil-andika/template
+++ b/srcpkgs/font-sil-andika/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-andika
 version=5.000
 revision=1
-archs=noarch
 wrksrc="Andika-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-annapurna/template b/srcpkgs/font-sil-annapurna/template
index 388779d980f..0dd4a688a54 100644
--- a/srcpkgs/font-sil-annapurna/template
+++ b/srcpkgs/font-sil-annapurna/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-annapurna
 version=1.204
 revision=1
-archs=noarch
 wrksrc="AnnapurnaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-awami-nastaliq/template b/srcpkgs/font-sil-awami-nastaliq/template
index f09cd252e08..436b8c16390 100644
--- a/srcpkgs/font-sil-awami-nastaliq/template
+++ b/srcpkgs/font-sil-awami-nastaliq/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-awami-nastaliq
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AwamiNastaliq-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-charis/template b/srcpkgs/font-sil-charis/template
index cdff5cb6265..dc864c2e18b 100644
--- a/srcpkgs/font-sil-charis/template
+++ b/srcpkgs/font-sil-charis/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-charis
 version=5.000
 revision=1
-archs=noarch
 wrksrc="CharisSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-doulos/template b/srcpkgs/font-sil-doulos/template
index 67fd84dd976..557fa77a560 100644
--- a/srcpkgs/font-sil-doulos/template
+++ b/srcpkgs/font-sil-doulos/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-doulos
 version=5.000
 revision=1
-archs=noarch
 wrksrc="DoulosSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-ezra/template b/srcpkgs/font-sil-ezra/template
index 1573ff7d06e..b0879ce22b6 100644
--- a/srcpkgs/font-sil-ezra/template
+++ b/srcpkgs/font-sil-ezra/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-ezra
 version=2.51
 revision=1
-archs=noarch
 wrksrc="EzraSIL${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-galatia/template b/srcpkgs/font-sil-galatia/template
index 06742db160b..217d92847c6 100644
--- a/srcpkgs/font-sil-galatia/template
+++ b/srcpkgs/font-sil-galatia/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-galatia
 version=2.1
 revision=1
-archs=noarch
 wrksrc="GalSIL${version/./}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-gentium/template b/srcpkgs/font-sil-gentium/template
index a06cf2d5a9c..9926b9fd944 100644
--- a/srcpkgs/font-sil-gentium/template
+++ b/srcpkgs/font-sil-gentium/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-gentium
 version=5.000
 revision=1
-archs=noarch
 wrksrc="GentiumPlus-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-harmattan/template b/srcpkgs/font-sil-harmattan/template
index 465b63a7244..fbcc81cadd3 100644
--- a/srcpkgs/font-sil-harmattan/template
+++ b/srcpkgs/font-sil-harmattan/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-harmattan
 version=1.001
 revision=1
-archs=noarch
 wrksrc="Harmattan-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-lateef/template b/srcpkgs/font-sil-lateef/template
index d8ab4d2a7b2..8a91a92737a 100644
--- a/srcpkgs/font-sil-lateef/template
+++ b/srcpkgs/font-sil-lateef/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-lateef
 version=1.200
 revision=1
-archs=noarch
 wrksrc="LateefGR-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mingzat/template b/srcpkgs/font-sil-mingzat/template
index 1e227ee5603..079ca445bec 100644
--- a/srcpkgs/font-sil-mingzat/template
+++ b/srcpkgs/font-sil-mingzat/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mingzat
 version=1.000
 revision=1
-archs=noarch
 wrksrc="Mingzat-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mondulkiri/template b/srcpkgs/font-sil-mondulkiri/template
index 483056df803..3b8b09c0548 100644
--- a/srcpkgs/font-sil-mondulkiri/template
+++ b/srcpkgs/font-sil-mondulkiri/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mondulkiri
 version=7.100
 revision=1
-archs=noarch
 wrksrc="Mondulkiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-namdhinggo/template b/srcpkgs/font-sil-namdhinggo/template
index 9de1acbc5a7..d353210bf1e 100644
--- a/srcpkgs/font-sil-namdhinggo/template
+++ b/srcpkgs/font-sil-namdhinggo/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-namdhinggo
 version=1.004
 revision=1
-archs=noarch
 wrksrc="NamdhinggoSIL"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-nuosu/template b/srcpkgs/font-sil-nuosu/template
index 0ae86abefaa..1286c1acb86 100644
--- a/srcpkgs/font-sil-nuosu/template
+++ b/srcpkgs/font-sil-nuosu/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-nuosu
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=NuosuSIL
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-padauk/template b/srcpkgs/font-sil-padauk/template
index 8bbb222dff3..21b37341367 100644
--- a/srcpkgs/font-sil-padauk/template
+++ b/srcpkgs/font-sil-padauk/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-padauk
 version=4.000
 revision=1
-archs=noarch
 wrksrc="Padauk-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-scheherazade/template b/srcpkgs/font-sil-scheherazade/template
index 78a2ce6ee96..77e7c97c8da 100644
--- a/srcpkgs/font-sil-scheherazade/template
+++ b/srcpkgs/font-sil-scheherazade/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-scheherazade
 version=2.100
 revision=1
-archs=noarch
 wrksrc="Scheherazade-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-sophia-nubian/template b/srcpkgs/font-sil-sophia-nubian/template
index 2a97740dff3..597002945d8 100644
--- a/srcpkgs/font-sil-sophia-nubian/template
+++ b/srcpkgs/font-sil-sophia-nubian/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-sophia-nubian
 version=1.0
 revision=1
-archs=noarch
 wrksrc="SophiaNubian"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-tai-heritage-pro/template b/srcpkgs/font-sil-tai-heritage-pro/template
index 0d7283cd4ea..b94f9fc966a 100644
--- a/srcpkgs/font-sil-tai-heritage-pro/template
+++ b/srcpkgs/font-sil-tai-heritage-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-tai-heritage-pro
 version=2.600
 revision=1
-archs=noarch
 wrksrc="TaiHeritagePro-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sony-misc/template b/srcpkgs/font-sony-misc/template
index d7ffef11ed0..765bf6e3555 100644
--- a/srcpkgs/font-sony-misc/template
+++ b/srcpkgs/font-sony-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sony-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-spleen/template b/srcpkgs/font-spleen/template
index 381dabe5554..20e99cd62d8 100644
--- a/srcpkgs/font-spleen/template
+++ b/srcpkgs/font-spleen/template
@@ -2,7 +2,6 @@
 pkgname=font-spleen
 version=1.8.1
 revision=1
-archs=noarch
 wrksrc="spleen-${version}"
 build_style=gnu-makefile
 make_cmd=bmake
diff --git a/srcpkgs/font-sun-misc/template b/srcpkgs/font-sun-misc/template
index d556d006daa..423c85625a7 100644
--- a/srcpkgs/font-sun-misc/template
+++ b/srcpkgs/font-sun-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sun-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-symbola/template b/srcpkgs/font-symbola/template
index 23fa865c2ee..d14241ab6ba 100644
--- a/srcpkgs/font-symbola/template
+++ b/srcpkgs/font-symbola/template
@@ -2,7 +2,6 @@
 pkgname=font-symbola
 version=13.00
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-tamsyn/template b/srcpkgs/font-tamsyn/template
index b76186c2128..3c532eba7bb 100644
--- a/srcpkgs/font-tamsyn/template
+++ b/srcpkgs/font-tamsyn/template
@@ -2,7 +2,6 @@
 pkgname=font-tamsyn
 version=1.11
 revision=1
-archs=noarch
 wrksrc=tamsyn-font-${version}
 depends="font-util xbps-triggers"
 short_desc="A monospaced programming font for the console and X11"
diff --git a/srcpkgs/font-tamzen/template b/srcpkgs/font-tamzen/template
index a5621ff3a29..b20f7c77964 100644
--- a/srcpkgs/font-tamzen/template
+++ b/srcpkgs/font-tamzen/template
@@ -2,7 +2,6 @@
 pkgname=font-tamzen
 version=1.11.4
 revision=1
-archs=noarch
 wrksrc="tamzen-font-Tamzen-${version}"
 makedepends="font-util"
 depends="$makedepends"
diff --git a/srcpkgs/font-unifont-bdf/template b/srcpkgs/font-unifont-bdf/template
index a10e7ae5d7d..b7559c941f1 100644
--- a/srcpkgs/font-unifont-bdf/template
+++ b/srcpkgs/font-unifont-bdf/template
@@ -2,7 +2,6 @@
 pkgname=font-unifont-bdf
 version=13.0.02
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="GNU Unifont Glyphs"
diff --git a/srcpkgs/font-vazir/template b/srcpkgs/font-vazir/template
index 2c1eb8a10c8..d83ca102c7f 100755
--- a/srcpkgs/font-vazir/template
+++ b/srcpkgs/font-vazir/template
@@ -2,7 +2,6 @@
 pkgname=font-vazir
 version=26.0.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Persian (Farsi) Font - قلم (فونت) فارسی وزیر"
diff --git a/srcpkgs/font-vollkorn-ttf/template b/srcpkgs/font-vollkorn-ttf/template
index 43889413a0e..37291fafcd1 100644
--- a/srcpkgs/font-vollkorn-ttf/template
+++ b/srcpkgs/font-vollkorn-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-vollkorn-ttf
 version=4.105
 revision=1
 create_wrksrc=yes
-archs=noarch
 font_dirs="/usr/share/fonts/TTF"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-weather-icons/template b/srcpkgs/font-weather-icons/template
index 02b461ad41d..56f10f6b81d 100644
--- a/srcpkgs/font-weather-icons/template
+++ b/srcpkgs/font-weather-icons/template
@@ -2,7 +2,6 @@
 pkgname=font-weather-icons
 version=2.0.10
 revision=1
-archs=noarch
 wrksrc="weather-icons-${version}"
 depends="font-util"
 short_desc="215 Weather Themed Icons"
diff --git a/srcpkgs/fontconfig/template b/srcpkgs/fontconfig/template
index 18504e4503f..a2afdf88d0e 100644
--- a/srcpkgs/fontconfig/template
+++ b/srcpkgs/fontconfig/template
@@ -42,7 +42,6 @@ fontconfig-devel_package() {
 
 fontconfig-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fonts-croscore-ttf/template b/srcpkgs/fonts-croscore-ttf/template
index 2014d2fda6e..0f1bd7ef6ab 100644
--- a/srcpkgs/fonts-croscore-ttf/template
+++ b/srcpkgs/fonts-croscore-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-croscore-ttf
 version=1.31.0
 revision=2
-archs=noarch
 wrksrc="croscorefonts-${version}"
 depends="font-util xbps-triggers"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonts-droid-ttf/template b/srcpkgs/fonts-droid-ttf/template
index cae1c2979c2..90808815e94 100644
--- a/srcpkgs/fonts-droid-ttf/template
+++ b/srcpkgs/fonts-droid-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-droid-ttf
 version=20150613
 revision=1
-archs=noarch
 _githash=f5de525ee3547b8a69a21aec1e1a3175bc06f442
 create_wrksrc=yes
 depends="font-util"
diff --git a/srcpkgs/fonts-nanum-ttf/template b/srcpkgs/fonts-nanum-ttf/template
index 6a2e826673d..0c96fb5aa2b 100644
--- a/srcpkgs/fonts-nanum-ttf/template
+++ b/srcpkgs/fonts-nanum-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-nanum-ttf
 version=20180306
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 depends="font-util"
 short_desc="Nanum Korean fonts"
diff --git a/srcpkgs/fonts-roboto-ttf/template b/srcpkgs/fonts-roboto-ttf/template
index 2a268ab3c74..839ca2eabf7 100644
--- a/srcpkgs/fonts-roboto-ttf/template
+++ b/srcpkgs/fonts-roboto-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-roboto-ttf
 version=2.138
 revision=1
-archs=noarch
 wrksrc=roboto-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonttools/template b/srcpkgs/fonttools/template
index f94f794b2a2..fc25b5b0476 100644
--- a/srcpkgs/fonttools/template
+++ b/srcpkgs/fonttools/template
@@ -2,7 +2,6 @@
 pkgname=fonttools
 version=4.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/foomatic-db-nonfree/template b/srcpkgs/foomatic-db-nonfree/template
index bfdbd503f51..d909dcfdb41 100644
--- a/srcpkgs/foomatic-db-nonfree/template
+++ b/srcpkgs/foomatic-db-nonfree/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db-nonfree
 version=20200527
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=gnu-configure
 hostmakedepends="tar"
diff --git a/srcpkgs/foomatic-db/template b/srcpkgs/foomatic-db/template
index 07b9adddb78..7035fcc7b0a 100644
--- a/srcpkgs/foomatic-db/template
+++ b/srcpkgs/foomatic-db/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db
 version=20180118
 revision=1
-archs=noarch
 build_style=gnu-configure
 ceeate_wrksrc=yes
 hostmakedepends="tar"
diff --git a/srcpkgs/foot/template b/srcpkgs/foot/template
index 50991a6d351..f27b2bfaff0 100644
--- a/srcpkgs/foot/template
+++ b/srcpkgs/foot/template
@@ -21,7 +21,6 @@ post_install() {
 
 foot-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/fortune-mod-anarchism/template b/srcpkgs/fortune-mod-anarchism/template
index 6c27b0e9dcb..dba867fd63a 100644
--- a/srcpkgs/fortune-mod-anarchism/template
+++ b/srcpkgs/fortune-mod-anarchism/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-anarchism
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=blag-fortune
 build_style=gnu-makefile
 hostmakedepends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-de/template b/srcpkgs/fortune-mod-de/template
index 5f3d1dec7c7..84ff7076b3b 100644
--- a/srcpkgs/fortune-mod-de/template
+++ b/srcpkgs/fortune-mod-de/template
@@ -3,7 +3,6 @@ pkgname=fortune-mod-de
 reverts="1.0_2"
 version=0.34
 revision=1
-archs=noarch
 wrksrc="fortunes-de-upstream-${version}"
 hostmakedepends="fortune-mod"
 depends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-void/template b/srcpkgs/fortune-mod-void/template
index 55b5faab036..508db37b084 100644
--- a/srcpkgs/fortune-mod-void/template
+++ b/srcpkgs/fortune-mod-void/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-void
 version=20200307
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="fortune-mod"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/freedroidRPG/template b/srcpkgs/freedroidRPG/template
index b1cb939802a..a1ecfc60bc3 100644
--- a/srcpkgs/freedroidRPG/template
+++ b/srcpkgs/freedroidRPG/template
@@ -42,7 +42,6 @@ post_install() {
 
 freedroidRPG-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freedroidrpg
 	}
diff --git a/srcpkgs/freefont-ttf/template b/srcpkgs/freefont-ttf/template
index ec248d2f8c7..cae4908ae39 100644
--- a/srcpkgs/freefont-ttf/template
+++ b/srcpkgs/freefont-ttf/template
@@ -2,7 +2,6 @@
 pkgname=freefont-ttf
 version=20120503
 revision=7
-archs=noarch
 wrksrc="freefont-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers>=0.58"
diff --git a/srcpkgs/freeorion/template b/srcpkgs/freeorion/template
index 3078bee0d7b..9960b817536 100644
--- a/srcpkgs/freeorion/template
+++ b/srcpkgs/freeorion/template
@@ -25,7 +25,6 @@ post_extract() {
 freeorion-data_package() {
 	short_desc+=" - data files"
 	license="GPL-2.0-or-later, CC-BY-SA-3.0"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freeorion
 	}
diff --git a/srcpkgs/freepats/template b/srcpkgs/freepats/template
index a8d1bae328a..c96cdb5f5ee 100644
--- a/srcpkgs/freepats/template
+++ b/srcpkgs/freepats/template
@@ -2,7 +2,6 @@
 pkgname="freepats"
 version=20060219
 revision=5
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Free patch set for MIDI audio synthesis"
 maintainer="David <kalichakra@zoho.com>"
diff --git a/srcpkgs/freeplane/template b/srcpkgs/freeplane/template
index bb5875f7e7e..02f94d50ad1 100644
--- a/srcpkgs/freeplane/template
+++ b/srcpkgs/freeplane/template
@@ -2,7 +2,6 @@
 pkgname=freeplane
 version=1.8.6
 revision=1
-archs=noarch
 hostmakedepends="apache-ant openjdk8 unzip gradle"
 depends="virtual?java-runtime"
 short_desc="Application for Mind Mapping, Knowledge Management, Project Management"
diff --git a/srcpkgs/freerouting/template b/srcpkgs/freerouting/template
index 49af416078a..ae53f2e7e2d 100644
--- a/srcpkgs/freerouting/template
+++ b/srcpkgs/freerouting/template
@@ -2,7 +2,6 @@
 pkgname=freerouting
 version=1.4.4
 revision=1
-archs=noarch
 hostmakedepends="gradle openjdk11"
 depends="openjdk11"
 short_desc="Advanced PCB autorouter"
diff --git a/srcpkgs/freetds/template b/srcpkgs/freetds/template
index 43620742759..3aee702fe80 100644
--- a/srcpkgs/freetds/template
+++ b/srcpkgs/freetds/template
@@ -30,7 +30,6 @@ freetds-devel_package() {
 
 freetds-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fsharp/template b/srcpkgs/fsharp/template
index ef9f9b4ccbd..89cc3df9291 100644
--- a/srcpkgs/fsharp/template
+++ b/srcpkgs/fsharp/template
@@ -2,7 +2,6 @@
 pkgname=fsharp
 version=10.2.1
 revision=1
-archs=noarch
 lib32disabled=yes
 build_style=gnu-makefile
 hostmakedepends="msbuild-bin"
diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 51d5ea67a6c..1d6d1a72386 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -2,7 +2,6 @@
 pkgname=gajim
 version=1.2.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-gobject python3-nbxmpp python3-pyasn1 python3-setuptools
diff --git a/srcpkgs/gallery-dl/template b/srcpkgs/gallery-dl/template
index 2a361f53274..1d9283c9bf3 100644
--- a/srcpkgs/gallery-dl/template
+++ b/srcpkgs/gallery-dl/template
@@ -2,7 +2,6 @@
 pkgname=gallery-dl
 version=1.14.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-setuptools"
diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index fc6d3ba3320..4102d7fd7a0 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -2,7 +2,6 @@
 pkgname=gandi-cli
 version=1.5
 revision=2
-archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module
 pycompile_module="gandi/cli"
diff --git a/srcpkgs/gccmakedep/template b/srcpkgs/gccmakedep/template
index 29d6fdaafe0..267d448d92d 100644
--- a/srcpkgs/gccmakedep/template
+++ b/srcpkgs/gccmakedep/template
@@ -2,7 +2,6 @@
 pkgname=gccmakedep
 version=1.0.3
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="The gccmakedep program calls 'gcc -M' to output makefile rules"
 maintainer="Markus Berger <pulux@pf4sh.de>"
diff --git a/srcpkgs/gcdemu/template b/srcpkgs/gcdemu/template
index e12b1c932d2..b05436b54e9 100644
--- a/srcpkgs/gcdemu/template
+++ b/srcpkgs/gcdemu/template
@@ -2,7 +2,6 @@
 pkgname=gcdemu
 version=3.2.4
 revision=1
-archs=noarch
 wrksrc="gcdemu-${version}"
 build_style=cmake
 hostmakedepends="python3 intltool"
diff --git a/srcpkgs/gconfmm/template b/srcpkgs/gconfmm/template
index 5122dc300a3..2f96108e38b 100644
--- a/srcpkgs/gconfmm/template
+++ b/srcpkgs/gconfmm/template
@@ -28,7 +28,6 @@ gconfmm-devel_package() {
 if [ -z "$CROSS_BUILD" ]; then
 gconfmm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index a6b8de8f0cc..28c9f87dcaa 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -2,7 +2,6 @@
 pkgname=gcovr
 version=4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gdash/template b/srcpkgs/gdash/template
index 34e8e9afabb..7a566534167 100644
--- a/srcpkgs/gdash/template
+++ b/srcpkgs/gdash/template
@@ -35,7 +35,6 @@ post_install() {
 
 gdash-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/gdash
 	}
diff --git a/srcpkgs/gdown/template b/srcpkgs/gdown/template
index 8365ff593dd..b54b6173ac4 100644
--- a/srcpkgs/gdown/template
+++ b/srcpkgs/gdown/template
@@ -2,7 +2,6 @@
 pkgname=gdown
 version=3.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-filelock python3-requests python3-six python3-tqdm
diff --git a/srcpkgs/geda/template b/srcpkgs/geda/template
index fbce8bbf734..ec733d4f572 100644
--- a/srcpkgs/geda/template
+++ b/srcpkgs/geda/template
@@ -43,7 +43,6 @@ geda-devel_package() {
 	}
 }
 geda-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - documentation and exmaple files"
 	pkg_install() {
@@ -51,7 +50,6 @@ geda-doc_package() {
 	}
 }
 geda-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/gEDA
diff --git a/srcpkgs/gef/template b/srcpkgs/gef/template
index 16af44ee93e..b854e0b45f6 100644
--- a/srcpkgs/gef/template
+++ b/srcpkgs/gef/template
@@ -2,7 +2,6 @@
 pkgname=gef
 version=2020.06
 revision=1
-archs="noarch"
 pycompile_dirs="usr/share/gef"
 depends="keystone-python3 capstone-python3 unicorn-python3 python3-Ropper"
 short_desc="GDB Enhanced Features for exploit devs & reversers"
diff --git a/srcpkgs/geoip-data/template b/srcpkgs/geoip-data/template
index 2a1991ebf9b..dec0162c948 100644
--- a/srcpkgs/geoip-data/template
+++ b/srcpkgs/geoip-data/template
@@ -7,7 +7,6 @@ short_desc="Non-DNS IP-to-country resolver C library and utilities (data files)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="CC-BY-SA-4.0"
 homepage="https://dev.maxmind.com/geoip/legacy/geolite/"
-archs=noarch
 broken="broken URLs, downloads unversioned files that change daily!"
 
 do_fetch() {
diff --git a/srcpkgs/gespeaker/template b/srcpkgs/gespeaker/template
index bf29ef22410..23052bdb887 100644
--- a/srcpkgs/gespeaker/template
+++ b/srcpkgs/gespeaker/template
@@ -2,7 +2,6 @@
 pkgname=gespeaker
 version=0.8.6
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_dirs="/usr/share/gespeaker"
 hostmakedepends="gettext python"
diff --git a/srcpkgs/geteltorito/template b/srcpkgs/geteltorito/template
index c0be0b6e7a1..75ba25e607a 100644
--- a/srcpkgs/geteltorito/template
+++ b/srcpkgs/geteltorito/template
@@ -4,7 +4,6 @@ version=0.6
 revision=1
 wrksrc=${pkgname}
 depends="perl"
-archs=noarch
 short_desc="El Torito boot image extractor"
 maintainer="bra1nwave <brainwave@openmailbox.org>"
 license="GPL-2"
diff --git a/srcpkgs/getmail/template b/srcpkgs/getmail/template
index 51a5c4a109f..9f030553bda 100644
--- a/srcpkgs/getmail/template
+++ b/srcpkgs/getmail/template
@@ -2,7 +2,6 @@
 pkgname=getmail
 version=5.14
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="getmailcore"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/gettext/template b/srcpkgs/gettext/template
index 4495f83401f..7ecc61efe19 100644
--- a/srcpkgs/gettext/template
+++ b/srcpkgs/gettext/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gettext-devel-examples_package() {
-	archs=noarch
 	short_desc+=" - examples for development"
 	pkg_install() {
 		vmove usr/share/doc/gettext
diff --git a/srcpkgs/ghc/template b/srcpkgs/ghc/template
index e81da479cf0..925ad8693ca 100644
--- a/srcpkgs/ghc/template
+++ b/srcpkgs/ghc/template
@@ -86,7 +86,6 @@ post_install() {
 }
 
 ghc-doc_package() {
-	archs=noarch
 	short_desc+=" -- documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/ghi/template b/srcpkgs/ghi/template
index 907f7588841..9c2ab5da38c 100644
--- a/srcpkgs/ghi/template
+++ b/srcpkgs/ghi/template
@@ -2,7 +2,6 @@
 pkgname=ghi
 version=1.2.0
 revision=1
-archs=noarch
 depends="ruby"
 short_desc="GitHub command line interface"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/giac/template b/srcpkgs/giac/template
index 3d4a32c02e6..7247d9a4f27 100644
--- a/srcpkgs/giac/template
+++ b/srcpkgs/giac/template
@@ -38,7 +38,6 @@ giac-devel_package() {
 
 giac-doc_package() {
 	short_desc+=" - Documentation and Examples"
-	archs=noarch
 	pkg_install() {
 		vmove "usr/share/giac/doc"
 		vmove "usr/share/giac/examples"
diff --git a/srcpkgs/gimme/template b/srcpkgs/gimme/template
index 1893b659fae..4feac731cae 100644
--- a/srcpkgs/gimme/template
+++ b/srcpkgs/gimme/template
@@ -2,7 +2,6 @@
 pkgname=gimme
 version=1.5.4
 revision=1
-archs=noarch
 depends="bash curl git"
 short_desc="Shell script that knows how to install Go"
 maintainer="Alif Rachmawadi <arch@subosito.com>"
diff --git a/srcpkgs/gist/template b/srcpkgs/gist/template
index 39759f57e23..84c876b440e 100644
--- a/srcpkgs/gist/template
+++ b/srcpkgs/gist/template
@@ -2,7 +2,6 @@
 pkgname=gist
 version=5.1.0
 revision=1
-archs=noarch
 hostmakedepends="ruby"
 depends="ruby"
 short_desc="Uploads content to gist.github.com"
diff --git a/srcpkgs/git-cal/template b/srcpkgs/git-cal/template
index e05b6da5964..d4bba56af28 100644
--- a/srcpkgs/git-cal/template
+++ b/srcpkgs/git-cal/template
@@ -2,7 +2,6 @@
 pkgname=git-cal
 version=0.9.1
 revision=3
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/git-cola/template b/srcpkgs/git-cola/template
index bddc3f3fabd..9771e35eaab 100644
--- a/srcpkgs/git-cola/template
+++ b/srcpkgs/git-cola/template
@@ -2,7 +2,6 @@
 pkgname=git-cola
 version=3.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"
 hostmakedepends="python3"
diff --git a/srcpkgs/git-extras/template b/srcpkgs/git-extras/template
index 749b7c1291b..8a19b08ffb7 100644
--- a/srcpkgs/git-extras/template
+++ b/srcpkgs/git-extras/template
@@ -2,7 +2,6 @@
 pkgname=git-extras
 version=6.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="util-linux"
 depends="bash git"
diff --git a/srcpkgs/git-filter-repo/template b/srcpkgs/git-filter-repo/template
index 321464c7159..8d8a7b58010 100644
--- a/srcpkgs/git-filter-repo/template
+++ b/srcpkgs/git-filter-repo/template
@@ -2,7 +2,6 @@
 pkgname=git-filter-repo
 version=2.27.0
 revision=1
-archs=noarch
 depends="git python3"
 checkdepends="git python3 perl rsync dos2unix"
 short_desc="Versatile tool for rewriting git history"
diff --git a/srcpkgs/git-review/template b/srcpkgs/git-review/template
index 0ade5e3c4f2..5a8338df4c0 100644
--- a/srcpkgs/git-review/template
+++ b/srcpkgs/git-review/template
@@ -2,7 +2,6 @@
 pkgname=git-review
 version=1.28.0
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-requests"
diff --git a/srcpkgs/git-revise/template b/srcpkgs/git-revise/template
index 6d3071429b9..aa7b45340cf 100644
--- a/srcpkgs/git-revise/template
+++ b/srcpkgs/git-revise/template
@@ -2,7 +2,6 @@
 pkgname=git-revise
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="git python3-setuptools"
diff --git a/srcpkgs/git-secret/template b/srcpkgs/git-secret/template
index 01541c9b061..888033ef4ab 100644
--- a/srcpkgs/git-secret/template
+++ b/srcpkgs/git-secret/template
@@ -2,7 +2,6 @@
 pkgname=git-secret
 version=0.3.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="PREFIX=/usr"
 depends="bash gawk gnupg coreutils"
diff --git a/srcpkgs/git-toolbelt/template b/srcpkgs/git-toolbelt/template
index e79805ad5b0..223c14d450b 100644
--- a/srcpkgs/git-toolbelt/template
+++ b/srcpkgs/git-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=git-toolbelt
 version=1.5.0
 revision=1
-archs=noarch
 depends="git moreutils fzf"
 short_desc="Helper tools to make everyday life with Git much easier"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/git/template b/srcpkgs/git/template
index 5e258d0c20e..3dd8e39bd00 100644
--- a/srcpkgs/git/template
+++ b/srcpkgs/git/template
@@ -62,7 +62,6 @@ post_install() {
 }
 
 git-cvs_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} cvs cvsps2 perl-DBD-SQLite"
 	short_desc+=" - CVS support"
 	pkg_install() {
@@ -88,7 +87,6 @@ git-svn_package() {
 }
 
 gitk_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc="Git repository browser"
 	license="GPL-2.0-or-later"
@@ -100,7 +98,6 @@ gitk_package() {
 }
 
 git-gui_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc+=" - GUI tool"
 	license="GPL-2.0-or-later"
@@ -115,7 +112,6 @@ git-gui_package() {
 
 git-all_package() {
 	build_style=meta
-	archs=noarch
 	depends="${subpackages/git-all/}"
 	short_desc+=" - meta-package for complete Git installation"
 }
@@ -131,7 +127,6 @@ git-libsecret_package() {
 
 git-netrc_package() {
 	depends="git-${version}_${revision}"
-	archs=noarch
 	short_desc+=" - netrc credential helper"
 	pkg_install() {
 		vmove usr/libexec/git-core/git-credential-netrc
diff --git a/srcpkgs/gitflow/template b/srcpkgs/gitflow/template
index 79c4e1adf5c..481ee2eee2e 100644
--- a/srcpkgs/gitflow/template
+++ b/srcpkgs/gitflow/template
@@ -5,7 +5,6 @@ version=20120925
 revision=2
 _commit=15aab26490facf285acef56cb5d61025eacb3a69
 _shflags_commit=2fb06af13de884e9680f14a00c82e52a67c867f1
-archs=noarch
 hostmakedepends="perl"
 depends="git"
 short_desc="Git extensions to provide high-level repository operations"
diff --git a/srcpkgs/gitolite/template b/srcpkgs/gitolite/template
index 0374c3a991c..ad7d25cd8fe 100644
--- a/srcpkgs/gitolite/template
+++ b/srcpkgs/gitolite/template
@@ -2,7 +2,6 @@
 pkgname=gitolite
 version=3.6.11
 revision=2
-archs=noarch
 depends="git perl"
 short_desc="Access control layer on top of git"
 maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index daeec2ddd7d..f669611d1a9 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -2,7 +2,6 @@
 pkgname=glances
 version=3.1.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-future python3-psutil"
diff --git a/srcpkgs/glibc/template b/srcpkgs/glibc/template
index 4ea327aa1fa..f8e03d38093 100644
--- a/srcpkgs/glibc/template
+++ b/srcpkgs/glibc/template
@@ -201,7 +201,6 @@ glibc-devel_package() {
 	}
 }
 glibc-locales_package() {
-	archs="noarch"
 	conf_files="/etc/default/libc-locales"
 	short_desc+=" - locale data files"
 	pkg_install() {
diff --git a/srcpkgs/glibmm/template b/srcpkgs/glibmm/template
index bc373d3a90b..d3ffc563daf 100644
--- a/srcpkgs/glibmm/template
+++ b/srcpkgs/glibmm/template
@@ -18,7 +18,6 @@ post_patch() {
 }
 
 glibmm-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/glm/template b/srcpkgs/glm/template
index ae1a892e664..b978a0b992c 100644
--- a/srcpkgs/glm/template
+++ b/srcpkgs/glm/template
@@ -2,7 +2,6 @@
 pkgname=glm
 version=0.9.9.7
 revision=1
-archs=noarch
 wrksrc=glm
 hostmakedepends="dos2unix unzip"
 short_desc="C++ mathematics library for graphics programming"
diff --git a/srcpkgs/glog/template b/srcpkgs/glog/template
index 080a737fb35..dc33e06913a 100644
--- a/srcpkgs/glog/template
+++ b/srcpkgs/glog/template
@@ -27,7 +27,6 @@ glog-devel_package() {
 
 glog-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gmsh/template b/srcpkgs/gmsh/template
index 5d36aaf6eb6..dfac5740dd1 100644
--- a/srcpkgs/gmsh/template
+++ b/srcpkgs/gmsh/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gmsh-doc_package() {
-	archs=noarch
 	short_desc+=" - document and demo files"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/gmsl/template b/srcpkgs/gmsl/template
index 37ec5bcd993..050d9e3af4b 100644
--- a/srcpkgs/gmsl/template
+++ b/srcpkgs/gmsl/template
@@ -2,7 +2,6 @@
 pkgname=gmsl
 version=1.1.8
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="make"
 short_desc="GNU Make Standard Library"
diff --git a/srcpkgs/gmusicbrowser/template b/srcpkgs/gmusicbrowser/template
index a84cce8f01a..55c006dd40d 100644
--- a/srcpkgs/gmusicbrowser/template
+++ b/srcpkgs/gmusicbrowser/template
@@ -2,7 +2,6 @@
 pkgname=gmusicbrowser
 version=1.1.15
 revision=7
-archs=noarch
 hostmakedepends="perl gettext"
 depends="perl-Gtk2 perl-Glib-Object-Introspection gst-plugins-good1
  gst-plugins-bad1 gst-plugins-ugly1"
diff --git a/srcpkgs/gnome-backgrounds/template b/srcpkgs/gnome-backgrounds/template
index 0b1ee427353..67984a56c47 100644
--- a/srcpkgs/gnome-backgrounds/template
+++ b/srcpkgs/gnome-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=gnome-backgrounds
 version=3.36.0
 revision=2
-archs=noarch
 build_style=meson
 hostmakedepends=gettext
 short_desc="Set of background images for the GNOME Desktop"
diff --git a/srcpkgs/gnome-colors-icon-theme/template b/srcpkgs/gnome-colors-icon-theme/template
index 79f36d85e89..02e88ced0a8 100644
--- a/srcpkgs/gnome-colors-icon-theme/template
+++ b/srcpkgs/gnome-colors-icon-theme/template
@@ -1,7 +1,6 @@
 pkgname=gnome-colors-icon-theme
 version=5.5.1
 revision=1
-archs=noarch
 depends="gtk-update-icon-cache hicolor-icon-theme gnome-icon-theme"
 short_desc="GNOME-Colors icon theme"
 maintainer="Peter Bui <pnutzh4x0r@gmail.com>"
diff --git a/srcpkgs/gnome-common/template b/srcpkgs/gnome-common/template
index f8eb31e1333..bf33a8497dd 100644
--- a/srcpkgs/gnome-common/template
+++ b/srcpkgs/gnome-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-common
 version=3.18.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-autoconf-archive"
 hostmakedepends="automake"
diff --git a/srcpkgs/gnome-doc-utils/template b/srcpkgs/gnome-doc-utils/template
index d2fa2e9e4cd..75458a7081b 100644
--- a/srcpkgs/gnome-doc-utils/template
+++ b/srcpkgs/gnome-doc-utils/template
@@ -2,7 +2,6 @@
 pkgname=gnome-doc-utils
 version=0.20.10
 revision=5
-archs=noarch
 build_style=gnu-configure
 configure_args="--disable-scrollkeeper"
 hostmakedepends="pkg-config intltool python3 libxml2-python3 libxslt-python
diff --git a/srcpkgs/gnome-getting-started-docs/template b/srcpkgs/gnome-getting-started-docs/template
index 5bec93490ba..ca718090c24 100644
--- a/srcpkgs/gnome-getting-started-docs/template
+++ b/srcpkgs/gnome-getting-started-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-getting-started-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gnome-doc-utils intltool itstool pkg-config"
 short_desc="Getting Started documentation for GNOME"
diff --git a/srcpkgs/gnome-icon-theme-extras/template b/srcpkgs/gnome-icon-theme-extras/template
index ca52449b6f0..e907872b567 100644
--- a/srcpkgs/gnome-icon-theme-extras/template
+++ b/srcpkgs/gnome-icon-theme-extras/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-extras
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool icon-naming-utils gtk-update-icon-cache"
 makedepends="icon-naming-utils gnome-icon-theme"
diff --git a/srcpkgs/gnome-icon-theme-symbolic/template b/srcpkgs/gnome-icon-theme-symbolic/template
index a76da8de756..ec9d64ae185 100644
--- a/srcpkgs/gnome-icon-theme-symbolic/template
+++ b/srcpkgs/gnome-icon-theme-symbolic/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-symbolic
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="GTK_UPDATE_ICON_CACHE=/bin/true"
 hostmakedepends="pkg-config intltool icon-naming-utils"
diff --git a/srcpkgs/gnome-icon-theme-xfce/template b/srcpkgs/gnome-icon-theme-xfce/template
index 7ef56da2cbd..b08bca158a7 100644
--- a/srcpkgs/gnome-icon-theme-xfce/template
+++ b/srcpkgs/gnome-icon-theme-xfce/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-xfce
 version=0.6
 revision=2
-archs=noarch
 wrksrc="gnome-icon-theme-xfce"
 short_desc="Theme adding missing icons for Xfce"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/gnome-icon-theme/template b/srcpkgs/gnome-icon-theme/template
index e8a46ea8457..1f31970af43 100644
--- a/srcpkgs/gnome-icon-theme/template
+++ b/srcpkgs/gnome-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-icon-mapping"
 hostmakedepends="pkg-config intltool librsvg icon-naming-utils gtk-update-icon-cache"
diff --git a/srcpkgs/gnome-js-common/template b/srcpkgs/gnome-js-common/template
index 263813cf2c8..50582aa152a 100644
--- a/srcpkgs/gnome-js-common/template
+++ b/srcpkgs/gnome-js-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-js-common
 version=0.1.2
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="GNOME JavaScript common modules"
diff --git a/srcpkgs/gnome-mime-data/template b/srcpkgs/gnome-mime-data/template
index e79860e1820..3ca5cd0ab8f 100644
--- a/srcpkgs/gnome-mime-data/template
+++ b/srcpkgs/gnome-mime-data/template
@@ -2,7 +2,6 @@
 pkgname=gnome-mime-data
 version=2.18.0
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool shared-mime-info"
 makedepends="shared-mime-info"
diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index c4609214612..5c2775ffd5d 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -2,7 +2,6 @@
 pkgname=gnome-passwordsafe
 version=3.99.2
 revision=1
-archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson
 hostmakedepends="gettext glib-devel pkg-config gobject-introspection python3-pykeepass"
diff --git a/srcpkgs/gnome-shell-extensions/template b/srcpkgs/gnome-shell-extensions/template
index 97168b40f66..e6d61b34979 100644
--- a/srcpkgs/gnome-shell-extensions/template
+++ b/srcpkgs/gnome-shell-extensions/template
@@ -2,7 +2,6 @@
 pkgname=gnome-shell-extensions
 version=3.34.1
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dextension_set=all"
 hostmakedepends="pkg-config"
diff --git a/srcpkgs/gnome-themes-extra/template b/srcpkgs/gnome-themes-extra/template
index 02ea840e0bc..21981054da4 100644
--- a/srcpkgs/gnome-themes-extra/template
+++ b/srcpkgs/gnome-themes-extra/template
@@ -19,7 +19,6 @@ if [ "$CROSS_BUILD" ]; then
 fi
 
 gnome-themes-standard_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="gnome-themes-extra-${version}_${revision}"
diff --git a/srcpkgs/gnome-tweaks/template b/srcpkgs/gnome-tweaks/template
index 557005fad57..c00e5838422 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -2,7 +2,6 @@
 pkgname=gnome-tweaks
 version=3.34.0
 revision=3
-archs=noarch
 build_style=meson
 hostmakedepends="gettext"
 depends="gtk+3 dconf gnome-settings-daemon mutter libnotify python3-gobject libhandy"
@@ -15,7 +14,6 @@ checksum=003326fab46e6faad9485924bca503f0c583e3b4553d6f673406eda396205250
 replaces="gnome-tweak-tool>=0"
 
 gnome-tweak-tool_package() {
-	archs=noarch
 	build_style=meta
 	depends="gnome-tweaks>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/gnome-user-docs/template b/srcpkgs/gnome-user-docs/template
index 4cb55396e37..90b4044d402 100644
--- a/srcpkgs/gnome-user-docs/template
+++ b/srcpkgs/gnome-user-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-user-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext pkg-config itstool gnome-doc-utils"
 makedepends="yelp"
diff --git a/srcpkgs/gnome-video-effects/template b/srcpkgs/gnome-video-effects/template
index 08320ba36db..fa6bd46b9a7 100644
--- a/srcpkgs/gnome-video-effects/template
+++ b/srcpkgs/gnome-video-effects/template
@@ -2,7 +2,6 @@
 pkgname=gnome-video-effects
 version=0.5.0
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool gettext"
 makedepends="gstreamer1-devel"
diff --git a/srcpkgs/gns3-gui/template b/srcpkgs/gns3-gui/template
index 9ea3c9b78ad..f3c04137a40 100644
--- a/srcpkgs/gns3-gui/template
+++ b/srcpkgs/gns3-gui/template
@@ -2,7 +2,6 @@
 pkgname=gns3-gui
 version=2.2.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-psutil python3-jsonschema python3-sentry
diff --git a/srcpkgs/gns3-net-converter/template b/srcpkgs/gns3-net-converter/template
index 70b6c90e8c8..48afd26125b 100644
--- a/srcpkgs/gns3-net-converter/template
+++ b/srcpkgs/gns3-net-converter/template
@@ -2,7 +2,6 @@
 pkgname=gns3-net-converter
 version=1.3.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gnupod/template b/srcpkgs/gnupod/template
index d4e80ce6c9c..06caedf5738 100644
--- a/srcpkgs/gnupod/template
+++ b/srcpkgs/gnupod/template
@@ -2,7 +2,6 @@
 pkgname=gnupod
 version=0.99.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-Digest-SHA1 perl-XML-Parser perl-Unicode-String perl-MP3-Info perl-TimeDate"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/gnuradio/template b/srcpkgs/gnuradio/template
index 8c7c6e80eee..56969321295 100644
--- a/srcpkgs/gnuradio/template
+++ b/srcpkgs/gnuradio/template
@@ -31,7 +31,6 @@ post_install() {
 
 gnuradio-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gnustep-gui/template b/srcpkgs/gnustep-gui/template
index c6253ca745d..3c1cdbadfe0 100644
--- a/srcpkgs/gnustep-gui/template
+++ b/srcpkgs/gnustep-gui/template
@@ -18,7 +18,6 @@ nocross="objc doesn't get cross build at present within gcc"
 
 gnustep-gui-data_package() {
 	short_desc+=" - assets"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/GNUstep/Sounds
 		vmove usr/lib/GNUstep/Images
diff --git a/srcpkgs/gohufont/template b/srcpkgs/gohufont/template
index c6e43d9c0d1..3218d1befc3 100644
--- a/srcpkgs/gohufont/template
+++ b/srcpkgs/gohufont/template
@@ -2,7 +2,6 @@
 pkgname=gohufont
 version=2.1
 revision=2
-archs=noarch
 makedepends="font-util xbps-triggers"
 depends="$makedepends"
 short_desc="Programming monospace bitmap"
diff --git a/srcpkgs/google-cloud-sdk/template b/srcpkgs/google-cloud-sdk/template
index 62c449829cd..1b094157ca4 100644
--- a/srcpkgs/google-cloud-sdk/template
+++ b/srcpkgs/google-cloud-sdk/template
@@ -2,7 +2,6 @@
 pkgname=google-cloud-sdk
 version=303.0.0
 revision=1
-archs=noarch
 wrksrc=$pkgname
 depends="python3"
 short_desc="Command-line interface for Google Cloud Platform products and services"
diff --git a/srcpkgs/google-fonts-ttf/template b/srcpkgs/google-fonts-ttf/template
index 25ac61c5dbe..b5fdf32bd7b 100644
--- a/srcpkgs/google-fonts-ttf/template
+++ b/srcpkgs/google-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=google-fonts-ttf
 version=20190605
 revision=1
-archs=noarch
 _githash=87776223497b72be361b5c08ba16e9c659209f37
 wrksrc="fonts-${_githash}"
 depends="font-util cantarell-fonts noto-fonts-ttf"
diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 8ce466aaa83..580a64d140d 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -2,7 +2,6 @@
 pkgname=gpodder
 version=3.10.16
 revision=1
-archs=noarch
 wrksrc="gpodder-${version}"
 hostmakedepends="python3 intltool"
 depends="eyeD3 gtk+3 hicolor-icon-theme python3-dbus python3-gobject
diff --git a/srcpkgs/gradle/template b/srcpkgs/gradle/template
index bf4775cd7a7..5d4a15e50a8 100644
--- a/srcpkgs/gradle/template
+++ b/srcpkgs/gradle/template
@@ -2,7 +2,6 @@
 pkgname=gradle
 version=6.4.1
 revision=1
-archs=noarch
 depends="virtual?java-environment"
 short_desc="Build system for Java/C/C++ software"
 maintainer="Adrian Siekierka <kontakt@asie.pl>"
diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 35e3245ef62..a24b860e37f 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -2,7 +2,6 @@
 pkgname=gramps
 version=5.1.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config intltool python3"
 depends="gtk+3 python3-gobject python3-bsddb3"
diff --git a/srcpkgs/grc/template b/srcpkgs/grc/template
index 9efca90352e..a59c5e97f14 100644
--- a/srcpkgs/grc/template
+++ b/srcpkgs/grc/template
@@ -2,7 +2,6 @@
 pkgname=grc
 version=1.11.3
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Colouriser for logfiles and output of commands"
 maintainer="Georg Schabel <gescha@posteo.de>"
diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 237e2ac9ae9..ca6c9f42667 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -2,7 +2,6 @@
 pkgname=greg
 version=0.4.7
 revision=6
-archs=noarch
 build_style=python3-module
 pycompile_module="greg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/greybird-themes/template b/srcpkgs/greybird-themes/template
index 1ce9e214cb1..447ad0da879 100644
--- a/srcpkgs/greybird-themes/template
+++ b/srcpkgs/greybird-themes/template
@@ -2,7 +2,6 @@
 pkgname=greybird-themes
 version=3.22.12
 revision=1
-archs=noarch
 wrksrc="Greybird-${version}"
 build_style=meson
 hostmakedepends="sassc ninja glib-devel gdk-pixbuf-devel librsvg-devel"
diff --git a/srcpkgs/grip/template b/srcpkgs/grip/template
index 6acfe00b299..6459d6bb386 100755
--- a/srcpkgs/grip/template
+++ b/srcpkgs/grip/template
@@ -2,7 +2,6 @@
 pkgname=grip
 version=4.5.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-docopt python3-Flask python3-Markdown python3-path-and-address python3-Pygments python3-requests"
diff --git a/srcpkgs/grml-zsh-config/template b/srcpkgs/grml-zsh-config/template
index 1931c4d1f01..8b674961375 100644
--- a/srcpkgs/grml-zsh-config/template
+++ b/srcpkgs/grml-zsh-config/template
@@ -2,7 +2,6 @@
 pkgname=grml-zsh-config
 version=0.17.4
 revision=1
-archs=noarch
 wrksrc="grml-etc-core-${version}"
 short_desc="Grml's zsh setup"
 maintainer="Christian Poulwey <christian.poulwey@t-online.de>"
diff --git a/srcpkgs/groff/template b/srcpkgs/groff/template
index 690b26c94ff..a6c8419d0df 100644
--- a/srcpkgs/groff/template
+++ b/srcpkgs/groff/template
@@ -50,7 +50,6 @@ libgroff_package() {
 
 groff-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/grub-terminus/template b/srcpkgs/grub-terminus/template
index 5f53c77384d..9b5e867d4df 100644
--- a/srcpkgs/grub-terminus/template
+++ b/srcpkgs/grub-terminus/template
@@ -2,7 +2,6 @@
 pkgname=grub-terminus
 version=0.2
 revision=1
-archs=noarch
 hostmakedepends="grub-utils terminus-font"
 short_desc="Terminus bold fonts for GRUB"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/grub/template b/srcpkgs/grub/template
index 77c6cfbff2f..0c4642323d7 100644
--- a/srcpkgs/grub/template
+++ b/srcpkgs/grub/template
@@ -162,7 +162,6 @@ grub-utils_package() {
 	}
 }
 grub-x86_64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - x86_64 EFI support"
 	pkg_install() {
@@ -170,7 +169,6 @@ grub-x86_64-efi_package() {
 	}
 }
 grub-i386-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - i386 EFI support"
 	pkg_install() {
@@ -178,7 +176,6 @@ grub-i386-efi_package() {
 	}
 }
 grub-i386-coreboot_package() {
-	archs=noarch
 	depends="grub>=$version"
 	short_desc+=" - i386 coreboot support"
 	pkg_install() {
@@ -200,7 +197,6 @@ grub-xen_package() {
 	}
 }
 grub-arm64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - arm64 EFI support"
 	pkg_install() {
@@ -208,7 +204,6 @@ grub-arm64-efi_package() {
 	}
 }
 grub-powerpc-ieee1275_package() {
-	archs=noarch
 	depends="grub>=$version powerpc-utils"
 	short_desc+=" - powerpc Open Firmware support"
 	pkg_install() {
diff --git a/srcpkgs/gscan2pdf/template b/srcpkgs/gscan2pdf/template
index 6e01328a391..201cccf6224 100644
--- a/srcpkgs/gscan2pdf/template
+++ b/srcpkgs/gscan2pdf/template
@@ -2,7 +2,6 @@
 pkgname=gscan2pdf
 version=2.8.2
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl gettext"
 makedepends="ImageMagick djvulibre libmagick-perl perl-Config-General
diff --git a/srcpkgs/gscreenshot/template b/srcpkgs/gscreenshot/template
index 5537910592e..13964d4fbab 100644
--- a/srcpkgs/gscreenshot/template
+++ b/srcpkgs/gscreenshot/template
@@ -2,7 +2,6 @@
 pkgname=gscreenshot
 version=2.12.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="gtk+3 python3-setuptools python3-Pillow python3-gobject scrot"
diff --git a/srcpkgs/gsfonts/template b/srcpkgs/gsfonts/template
index 5d76979e0ed..511a929ceb7 100644
--- a/srcpkgs/gsfonts/template
+++ b/srcpkgs/gsfonts/template
@@ -2,7 +2,6 @@
 pkgname=gsfonts
 version=8.11
 revision=5
-archs=noarch
 wrksrc=fonts
 makedepends="font-util font-misc-misc"
 depends="${makedepends}"
diff --git a/srcpkgs/gtk-doc/template b/srcpkgs/gtk-doc/template
index 439da0d796e..d56054d12f6 100644
--- a/srcpkgs/gtk-doc/template
+++ b/srcpkgs/gtk-doc/template
@@ -2,7 +2,6 @@
 pkgname=gtk-doc
 version=1.32
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="usr/share/gtk-doc/python/gtkdoc"
 hostmakedepends="gettext docbook-xml docbook-xsl itstool libxslt pkg-config python3"
diff --git a/srcpkgs/gtk-theme-united-gnome/template b/srcpkgs/gtk-theme-united-gnome/template
index 3523498a780..355bf483d67 100644
--- a/srcpkgs/gtk-theme-united-gnome/template
+++ b/srcpkgs/gtk-theme-united-gnome/template
@@ -2,7 +2,6 @@
 pkgname=gtk-theme-united-gnome
 version=2.2
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="gnome-themes-standard gtk+3 gtk-engine-murrine"
 short_desc="GTK2/3 + GNOME Shell theme based on a Ubuntu 18.04 design concept"
diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 885fed99f0b..564d719856b 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -2,7 +2,6 @@
 pkgname=guake
 version=3.6.3
 revision=3
-archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"
 pycompile_module="guake"
diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index 1b87f809fe9..348c7ca7da8 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -2,7 +2,6 @@
 pkgname=gufw
 version=20.04.1
 revision=1
-archs=noarch
 wrksrc="gufw-${version}"
 build_style=python3-module
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/guilt/template b/srcpkgs/guilt/template
index 3c17d8cc879..76449857b96 100644
--- a/srcpkgs/guilt/template
+++ b/srcpkgs/guilt/template
@@ -4,7 +4,6 @@ version=0.36
 revision=2
 _githash=22d785dd24329170f66e7696da38b3e90e033d61
 _gitshort="${_githash:0:7}"
-archs=noarch
 wrksrc="guilt-${_gitshort}"
 build_style=gnu-makefile
 make_build_args="-C Documentation"
diff --git a/srcpkgs/gyazo/template b/srcpkgs/gyazo/template
index 3661570514a..261d2f6e175 100644
--- a/srcpkgs/gyazo/template
+++ b/srcpkgs/gyazo/template
@@ -4,7 +4,6 @@ version=1.2.1
 revision=1
 wrksrc="Gyazo-for-Linux-${version}"
 depends="ruby xclip ImageMagick"
-archs=noarch
 short_desc="Seriously Instant Screen-Grabbing"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
 license="GPL-2"
diff --git a/srcpkgs/hamster-applet/template b/srcpkgs/hamster-applet/template
index ce244c38f10..aa6e23f26b3 100644
--- a/srcpkgs/hamster-applet/template
+++ b/srcpkgs/hamster-applet/template
@@ -2,7 +2,6 @@
 pkgname=hamster-applet
 version=2.91.2
 revision=10
-archs=noarch
 build_style=waf
 pycompile_module="hamster"
 hostmakedepends="pkg-config intltool gnome-doc-utils docbook2x"
diff --git a/srcpkgs/hashboot/template b/srcpkgs/hashboot/template
index 67c071e4f9e..49dbe3478f4 100644
--- a/srcpkgs/hashboot/template
+++ b/srcpkgs/hashboot/template
@@ -2,7 +2,6 @@
 pkgname=hashboot
 version=0.9.14
 revision=1
-archs=noarch
 hostmakedepends="asciidoc"
 short_desc="Check integrity of files in /boot, mbr & (mostly) coreboot bios"
 maintainer="teldra <teldra@rotce.de>"
diff --git a/srcpkgs/hedgewars/template b/srcpkgs/hedgewars/template
index 40cdb1086b4..c7418ec778b 100644
--- a/srcpkgs/hedgewars/template
+++ b/srcpkgs/hedgewars/template
@@ -56,7 +56,6 @@ post_install() {
 
 hedgewars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/hedgewars/Data
 	}
diff --git a/srcpkgs/hg-git/template b/srcpkgs/hg-git/template
index 15f981d8563..4a47998a4a3 100644
--- a/srcpkgs/hg-git/template
+++ b/srcpkgs/hg-git/template
@@ -3,7 +3,6 @@ pkgname=hg-git
 version=0.8.12
 revision=1
 wrksrc="durin42-hg-git-c651bb6fcf33"
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python python-dulwich"
diff --git a/srcpkgs/hicolor-icon-theme/template b/srcpkgs/hicolor-icon-theme/template
index 35798239a5e..51d207c4a3c 100644
--- a/srcpkgs/hicolor-icon-theme/template
+++ b/srcpkgs/hicolor-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=hicolor-icon-theme
 version=0.17
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard icon theme called hicolor"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/hiera/template b/srcpkgs/hiera/template
index b8cd47376ba..69f4928eff1 100644
--- a/srcpkgs/hiera/template
+++ b/srcpkgs/hiera/template
@@ -2,7 +2,6 @@
 pkgname=hiera
 version=3.6.0
 revision=2
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/hostfw/template b/srcpkgs/hostfw/template
index 445c9bee74e..00484a3f5b9 100644
--- a/srcpkgs/hostfw/template
+++ b/srcpkgs/hostfw/template
@@ -2,7 +2,6 @@
 pkgname=hostfw
 version=0.6.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="iptables"
 short_desc="Simple host-based permit-by-exception iptables generation script"
diff --git a/srcpkgs/hostmux/template b/srcpkgs/hostmux/template
index c261e9487ec..4a7bd2f0dfa 100644
--- a/srcpkgs/hostmux/template
+++ b/srcpkgs/hostmux/template
@@ -2,7 +2,6 @@
 pkgname=hostmux
 version=1.4.0
 revision=1
-archs=noarch
 depends="tmux"
 short_desc="A small wrapper for tmux to easily connect to a series of hosts via ssh"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/hosts-update/template b/srcpkgs/hosts-update/template
index 4dc11da9b3a..12b123f5182 100644
--- a/srcpkgs/hosts-update/template
+++ b/srcpkgs/hosts-update/template
@@ -2,7 +2,6 @@
 pkgname=hosts-update
 version=1.37
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="bash curl"
 short_desc="Updates /etc/hosts with the mvps blocklist"
diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 2cb04c88273..6de3cef38ba 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -2,7 +2,6 @@
 pkgname=httpie
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests python3-Pygments"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-httpie_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="httpie>=${version}_${revision}"
diff --git a/srcpkgs/hunspell-da_DK/template b/srcpkgs/hunspell-da_DK/template
index 8fffc8f3f32..ebbf69fde46 100644
--- a/srcpkgs/hunspell-da_DK/template
+++ b/srcpkgs/hunspell-da_DK/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-da_DK
 version=2.4
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Danish da_DK dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_CH/template b/srcpkgs/hunspell-de_CH/template
index c23fb3ad0a0..6af64522019 100644
--- a/srcpkgs/hunspell-de_CH/template
+++ b/srcpkgs/hunspell-de_CH/template
@@ -3,7 +3,6 @@ pkgname=hunspell-de_CH
 version=20170112
 revision=1
 _version="${version:0:4}-${version:4:2}.${version:6:2}"
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="German (Switzerland) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_DE/template b/srcpkgs/hunspell-de_DE/template
index f7da2d64d4c..94733999f27 100644
--- a/srcpkgs/hunspell-de_DE/template
+++ b/srcpkgs/hunspell-de_DE/template
@@ -11,7 +11,6 @@ short_desc="German (Germany) dictionary for hunspell"
 distfiles="https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries/${_version}/@@download/file/dict-de_DE-frami_${_version}.oxt>dict-de.zip"
 checksum=af515015e306c634373b5382808a39691200de3439811d2f1502e9b91c23b46a
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall ${wrksrc}/de_DE_frami/de_DE_frami.aff 644 usr/share/hunspell de_DE.aff
diff --git a/srcpkgs/hunspell-el_GR/template b/srcpkgs/hunspell-el_GR/template
index 698057e616e..aaedf9fe65d 100644
--- a/srcpkgs/hunspell-el_GR/template
+++ b/srcpkgs/hunspell-el_GR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-el_GR
 version=0.4.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Greek el_GR dictionary for hunspell"
 maintainer="Nicholas Christopoulos <nereus@freemail.gr>"
diff --git a/srcpkgs/hunspell-en_AU/template b/srcpkgs/hunspell-en_AU/template
index f8f3b94e6ab..7b11e8840e5 100644
--- a/srcpkgs/hunspell-en_AU/template
+++ b/srcpkgs/hunspell-en_AU/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_AU
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Australian English en_AU dictionary for hunspell"
diff --git a/srcpkgs/hunspell-en_GB-ize/template b/srcpkgs/hunspell-en_GB-ize/template
index 41001a413a8..82b38cb25f3 100644
--- a/srcpkgs/hunspell-en_GB-ize/template
+++ b/srcpkgs/hunspell-en_GB-ize/template
@@ -4,7 +4,6 @@ _variant="ize"
 pkgname=${_vpkgname}-${_variant}
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="English dictionary for hunspell ${_variant} variant"
diff --git a/srcpkgs/hunspell-en_US/template b/srcpkgs/hunspell-en_US/template
index 0d100851774..807577870f1 100644
--- a/srcpkgs/hunspell-en_US/template
+++ b/srcpkgs/hunspell-en_US/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_US
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="American English en_US dictionary for hunspell"
diff --git a/srcpkgs/hunspell-es_ES/template b/srcpkgs/hunspell-es_ES/template
index f24f904620f..b08aaabb2a6 100644
--- a/srcpkgs/hunspell-es_ES/template
+++ b/srcpkgs/hunspell-es_ES/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-es_ES
 version=2.5
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Spanish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-fr_FR/template b/srcpkgs/hunspell-fr_FR/template
index 9ad9c70a087..7cd93fe29c6 100644
--- a/srcpkgs/hunspell-fr_FR/template
+++ b/srcpkgs/hunspell-fr_FR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-fr_FR
 version=6.4.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="French dictionary for hunspell"
@@ -24,7 +23,6 @@ hunspell-fr_FR-moderne_package() {
 	short_desc+=" - Moderne Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -37,7 +35,6 @@ hunspell-fr_FR-reforme1990_package() {
 	short_desc+=" - Reforme 1990 Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -50,7 +47,6 @@ hunspell-fr_FR-toutesvariantes_package() {
 	short_desc+=" - All variant in one file"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
diff --git a/srcpkgs/hunspell-hr_HR/template b/srcpkgs/hunspell-hr_HR/template
index a72930fe333..b0ab1484e90 100644
--- a/srcpkgs/hunspell-hr_HR/template
+++ b/srcpkgs/hunspell-hr_HR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-hr_HR
 version=20030928
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Croatian (Croatia) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-it_IT/template b/srcpkgs/hunspell-it_IT/template
index 44d83a79ae6..9d0e0c3186c 100644
--- a/srcpkgs/hunspell-it_IT/template
+++ b/srcpkgs/hunspell-it_IT/template
@@ -3,7 +3,6 @@ pkgname=hunspell-it_IT
 version=4.2
 revision=1
 build_style=fetch
-archs=noarch
 hostmakedepends="unzip"
 short_desc="Italian dictionary for hunspell"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
diff --git a/srcpkgs/hunspell-pl_PL/template b/srcpkgs/hunspell-pl_PL/template
index 31158cc9bec..4cb3ceb10fe 100644
--- a/srcpkgs/hunspell-pl_PL/template
+++ b/srcpkgs/hunspell-pl_PL/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pl_PL
 version=20191005
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Polish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-pt_BR/template b/srcpkgs/hunspell-pt_BR/template
index 4920979d7d3..91b14b275af 100644
--- a/srcpkgs/hunspell-pt_BR/template
+++ b/srcpkgs/hunspell-pt_BR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pt_BR
 version=3.2
 revision=2
-archs=noarch
 build_style=fetch
 hostmakedepends="unzip"
 short_desc="Brazillian Portuguese dictionary for hunspell"
diff --git a/srcpkgs/hunspell-ru_RU-ieyo/template b/srcpkgs/hunspell-ru_RU-ieyo/template
index dcc45866c09..82f485a910a 100644
--- a/srcpkgs/hunspell-ru_RU-ieyo/template
+++ b/srcpkgs/hunspell-ru_RU-ieyo/template
@@ -10,7 +10,6 @@ homepage="http://extensions.openoffice.org/en/projectrelease/russkiy-orfografich
 distfiles="${SOURCEFORGE_SITE}/project/aoo-extensions/5149/3/dict_ru_ru-aot-${version}-ieyo.oxt>dict-ru_RU-ieyo.zip"
 checksum=3b374cf18f00fd0a9b6514eb8413438ce5d425a2e04435ffd81d8acc7ee1e578
 create_wrksrc=yes
-archs=noarch
 provides="hunspell-ru_RU-${version}_${revision}"
 conflicts="hunspell-ru_RU"
 
diff --git a/srcpkgs/hunspell-ru_RU/template b/srcpkgs/hunspell-ru_RU/template
index 862bed568c1..ffd028dbcda 100644
--- a/srcpkgs/hunspell-ru_RU/template
+++ b/srcpkgs/hunspell-ru_RU/template
@@ -10,7 +10,6 @@ homepage="https://extensions.libreoffice.org/extensions/russian-spellcheck-dicti
 distfiles="https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group/${version/./-}/@@download/file/dict_ru_ru-aot-${version}.oxt>dict-ru.zip"
 checksum=ee9b0575e9f8caf1d0a948fb644aed864de47aaf3bc24d2b77f288fec7f8d4c4
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall russian-aot.aff 644 usr/share/hunspell ru_RU.aff
diff --git a/srcpkgs/hunspell-sv_SE/template b/srcpkgs/hunspell-sv_SE/template
index d36dd1359fa..991a74da507 100644
--- a/srcpkgs/hunspell-sv_SE/template
+++ b/srcpkgs/hunspell-sv_SE/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-sv_SE
 version=2.41
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Swedish sv_SE dictionary for hunspell"
diff --git a/srcpkgs/hwids/template b/srcpkgs/hwids/template
index 05feaae9dc1..0d99a8f959b 100644
--- a/srcpkgs/hwids/template
+++ b/srcpkgs/hwids/template
@@ -2,7 +2,6 @@
 pkgname=hwids
 version=20200306
 revision=1
-archs=noarch
 wrksrc="hwids-hwids-${version}"
 short_desc="Hardware Identification Databases"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/i3blocks-blocklets/template b/srcpkgs/i3blocks-blocklets/template
index 82d7380e856..b70dabb34c5 100644
--- a/srcpkgs/i3blocks-blocklets/template
+++ b/srcpkgs/i3blocks-blocklets/template
@@ -2,7 +2,6 @@
 pkgname=i3blocks-blocklets
 version=1.4.0
 revision=2
-archs=noarch
 wrksrc="i3blocks-contrib-${version}"
 depends="i3blocks>=1.5"
 short_desc="Flexible scheduler for i3bar"
diff --git a/srcpkgs/i3lock-fancy/template b/srcpkgs/i3lock-fancy/template
index 5bb3502b4ed..4b3e2ed4663 100644
--- a/srcpkgs/i3lock-fancy/template
+++ b/srcpkgs/i3lock-fancy/template
@@ -2,7 +2,6 @@
 pkgname=i3lock-fancy
 version=0.2
 revision=1
-archs=noarch
 depends="util-linux bash ImageMagick i3lock wmctrl gawk"
 short_desc="Fancy lockscreen using i3lock"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iana-etc/template b/srcpkgs/iana-etc/template
index cf2c419b23c..8717a999a08 100644
--- a/srcpkgs/iana-etc/template
+++ b/srcpkgs/iana-etc/template
@@ -3,7 +3,6 @@ pkgname=iana-etc
 version=20190504
 revision=1
 bootstrap=yes
-archs=noarch
 short_desc="Unix /etc/services and /etc/protocols files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
diff --git a/srcpkgs/ibus-avro/template b/srcpkgs/ibus-avro/template
index 78350f5f4df..5ae42e15aa6 100644
--- a/srcpkgs/ibus-avro/template
+++ b/srcpkgs/ibus-avro/template
@@ -2,7 +2,6 @@
 pkgname=ibus-avro
 version=1.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_target="installdeb"
 hostmakedepends="automake pkg-config"
diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 396448b86f4..6dfcb6e3de2 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -3,7 +3,6 @@ pkgname=icdiff
 version=1.9.5
 revision=2
 wrksrc="${pkgname}-release-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="icdiff.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-icdiff_package() {
-	archs=noarch
 	depends="python3 python3-setuptools"
 	pycompile_module="icdiff.py"
 	alternatives="
diff --git a/srcpkgs/ice-ssb/template b/srcpkgs/ice-ssb/template
index c06941257c1..c4c7625a15a 100644
--- a/srcpkgs/ice-ssb/template
+++ b/srcpkgs/ice-ssb/template
@@ -2,7 +2,6 @@
 pkgname=ice-ssb
 version=6.0.8
 revision=1
-archs=noarch
 wrksrc="ice-$version"
 depends="gtk+3 python3-BeautifulSoup4 python3-gobject python3-requests"
 short_desc="Site Specific Browsers (SSBs) manager"
diff --git a/srcpkgs/icecat/template b/srcpkgs/icecat/template
index 2cdfa5dc264..e3271443af8 100644
--- a/srcpkgs/icecat/template
+++ b/srcpkgs/icecat/template
@@ -208,7 +208,6 @@ do_install() {
 icecat-i18n-ach_package() {
 	short_desc+=" - Acholi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -217,7 +216,6 @@ icecat-i18n-ach_package() {
 icecat-i18n-af_package() {
 	short_desc+=" - Afrikaans language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -226,7 +224,6 @@ icecat-i18n-af_package() {
 icecat-i18n-an_package() {
 	short_desc+=" - Aragonese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -235,7 +232,6 @@ icecat-i18n-an_package() {
 icecat-i18n-ar_package() {
 	short_desc+=" - Arabic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -244,7 +240,6 @@ icecat-i18n-ar_package() {
 icecat-i18n-ast_package() {
 	short_desc+=" - Asturian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -253,7 +248,6 @@ icecat-i18n-ast_package() {
 icecat-i18n-az_package() {
 	short_desc+=" - Azerbaijani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -262,7 +256,6 @@ icecat-i18n-az_package() {
 icecat-i18n-be_package() {
 	short_desc+=" - Belarusian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -271,7 +264,6 @@ icecat-i18n-be_package() {
 icecat-i18n-bg_package() {
 	short_desc+=" - Bulgarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -280,7 +272,6 @@ icecat-i18n-bg_package() {
 icecat-i18n-bn_package() {
 	short_desc+=" - Bengali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -289,7 +280,6 @@ icecat-i18n-bn_package() {
 icecat-i18n-br_package() {
 	short_desc+=" - Breton language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -298,7 +288,6 @@ icecat-i18n-br_package() {
 icecat-i18n-bs_package() {
 	short_desc+=" - Bosnian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -307,7 +296,6 @@ icecat-i18n-bs_package() {
 icecat-i18n-ca_package() {
 	short_desc+=" - Catalan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -316,7 +304,6 @@ icecat-i18n-ca_package() {
 icecat-i18n-cak_package() {
 	short_desc+=" - Kaqchikel language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -325,7 +312,6 @@ icecat-i18n-cak_package() {
 icecat-i18n-cs_package() {
 	short_desc+=" - Czech language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -334,7 +320,6 @@ icecat-i18n-cs_package() {
 icecat-i18n-cy_package() {
 	short_desc+=" - Welsh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -343,7 +328,6 @@ icecat-i18n-cy_package() {
 icecat-i18n-da_package() {
 	short_desc+=" - Danish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -352,7 +336,6 @@ icecat-i18n-da_package() {
 icecat-i18n-de_package() {
 	short_desc+=" - German language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -361,7 +344,6 @@ icecat-i18n-de_package() {
 icecat-i18n-dsb_package() {
 	short_desc+=" - Lower Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -370,7 +352,6 @@ icecat-i18n-dsb_package() {
 icecat-i18n-el_package() {
 	short_desc+=" - Greek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -379,7 +360,6 @@ icecat-i18n-el_package() {
 icecat-i18n-en-CA_package() {
 	short_desc+=" - English (Canada) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -388,7 +368,6 @@ icecat-i18n-en-CA_package() {
 icecat-i18n-en-GB_package() {
 	short_desc+=" - English (British) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -397,7 +376,6 @@ icecat-i18n-en-GB_package() {
 icecat-i18n-en-US_package() {
 	short_desc+=" - English (US) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -406,7 +384,6 @@ icecat-i18n-en-US_package() {
 icecat-i18n-eo_package() {
 	short_desc+=" - Esperanto language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -415,7 +392,6 @@ icecat-i18n-eo_package() {
 icecat-i18n-es-AR_package() {
 	short_desc+=" - Spanish (Argentina) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -424,7 +400,6 @@ icecat-i18n-es-AR_package() {
 icecat-i18n-es-CL_package() {
 	short_desc+=" - Spanish (Chile) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -433,7 +408,6 @@ icecat-i18n-es-CL_package() {
 icecat-i18n-es-ES_package() {
 	short_desc+=" - Spanish (Spain) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -442,7 +416,6 @@ icecat-i18n-es-ES_package() {
 icecat-i18n-es-MX_package() {
 	short_desc+=" - Spanish (Mexico) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -451,7 +424,6 @@ icecat-i18n-es-MX_package() {
 icecat-i18n-et_package() {
 	short_desc+=" - Estonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -460,7 +432,6 @@ icecat-i18n-et_package() {
 icecat-i18n-eu_package() {
 	short_desc+=" - Basque language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -469,7 +440,6 @@ icecat-i18n-eu_package() {
 icecat-i18n-fa_package() {
 	short_desc+=" - Persian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -478,7 +448,6 @@ icecat-i18n-fa_package() {
 icecat-i18n-ff_package() {
 	short_desc+=" - Fulah language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -487,7 +456,6 @@ icecat-i18n-ff_package() {
 icecat-i18n-fi_package() {
 	short_desc+=" - Finnish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -496,7 +464,6 @@ icecat-i18n-fi_package() {
 icecat-i18n-fr_package() {
 	short_desc+=" - French language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -505,7 +472,6 @@ icecat-i18n-fr_package() {
 icecat-i18n-fy-NL_package() {
 	short_desc+=" - Frisian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -514,7 +480,6 @@ icecat-i18n-fy-NL_package() {
 icecat-i18n-ga-IE_package() {
 	short_desc+=" - Irish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -523,7 +488,6 @@ icecat-i18n-ga-IE_package() {
 icecat-i18n-gd_package() {
 	short_desc+=" - Gaelic (Scotland) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -532,7 +496,6 @@ icecat-i18n-gd_package() {
 icecat-i18n-gl_package() {
 	short_desc+=" - Galician language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -541,7 +504,6 @@ icecat-i18n-gl_package() {
 icecat-i18n-gn_package() {
 	short_desc+=" - Guarani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -550,7 +512,6 @@ icecat-i18n-gn_package() {
 icecat-i18n-gu-IN_package() {
 	short_desc+=" - Gujarati (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -559,7 +520,6 @@ icecat-i18n-gu-IN_package() {
 icecat-i18n-he_package() {
 	short_desc+=" - Hebrew language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -568,7 +528,6 @@ icecat-i18n-he_package() {
 icecat-i18n-hi-IN_package() {
 	short_desc+=" - Hindi (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -577,7 +536,6 @@ icecat-i18n-hi-IN_package() {
 icecat-i18n-hr_package() {
 	short_desc+=" - Croatian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -586,7 +544,6 @@ icecat-i18n-hr_package() {
 icecat-i18n-hsb_package() {
 	short_desc+=" - Upper Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -595,7 +552,6 @@ icecat-i18n-hsb_package() {
 icecat-i18n-hu_package() {
 	short_desc+=" - Hungarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -604,7 +560,6 @@ icecat-i18n-hu_package() {
 icecat-i18n-hy-AM_package() {
 	short_desc+=" - Armenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -613,7 +568,6 @@ icecat-i18n-hy-AM_package() {
 icecat-i18n-ia_package() {
 	short_desc+=" - Interlingua language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -622,7 +576,6 @@ icecat-i18n-ia_package() {
 icecat-i18n-id_package() {
 	short_desc+=" - Indonesian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -631,7 +584,6 @@ icecat-i18n-id_package() {
 icecat-i18n-is_package() {
 	short_desc+=" - Icelandic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -640,7 +592,6 @@ icecat-i18n-is_package() {
 icecat-i18n-it_package() {
 	short_desc+=" - Italian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -649,7 +600,6 @@ icecat-i18n-it_package() {
 icecat-i18n-ja_package() {
 	short_desc+=" - Japanese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -658,7 +608,6 @@ icecat-i18n-ja_package() {
 icecat-i18n-ka_package() {
 	short_desc+=" - Georgian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -667,7 +616,6 @@ icecat-i18n-ka_package() {
 icecat-i18n-kab_package() {
 	short_desc+=" - Kabyle language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -676,7 +624,6 @@ icecat-i18n-kab_package() {
 icecat-i18n-kk_package() {
 	short_desc+=" - Kazakh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -685,7 +632,6 @@ icecat-i18n-kk_package() {
 icecat-i18n-km_package() {
 	short_desc+=" - Khmer language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -694,7 +640,6 @@ icecat-i18n-km_package() {
 icecat-i18n-kn_package() {
 	short_desc+=" - Kannada language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -703,7 +648,6 @@ icecat-i18n-kn_package() {
 icecat-i18n-ko_package() {
 	short_desc+=" - Korean language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -712,7 +656,6 @@ icecat-i18n-ko_package() {
 icecat-i18n-lij_package() {
 	short_desc+=" - Ligurian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -721,7 +664,6 @@ icecat-i18n-lij_package() {
 icecat-i18n-lt_package() {
 	short_desc+=" - Lithuanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -730,7 +672,6 @@ icecat-i18n-lt_package() {
 icecat-i18n-lv_package() {
 	short_desc+=" - Latvian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -739,7 +680,6 @@ icecat-i18n-lv_package() {
 icecat-i18n-mk_package() {
 	short_desc+=" - Macedonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -748,7 +688,6 @@ icecat-i18n-mk_package() {
 icecat-i18n-mr_package() {
 	short_desc+=" - Marathi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -757,7 +696,6 @@ icecat-i18n-mr_package() {
 icecat-i18n-ms_package() {
 	short_desc+=" - Malay language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -766,7 +704,6 @@ icecat-i18n-ms_package() {
 icecat-i18n-my_package() {
 	short_desc+=" - Burmese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -775,7 +712,6 @@ icecat-i18n-my_package() {
 icecat-i18n-nb-NO_package() {
 	short_desc+=" - Norwegian (Bokmål) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -784,7 +720,6 @@ icecat-i18n-nb-NO_package() {
 icecat-i18n-ne-NP_package() {
 	short_desc+=" - Nepali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -793,7 +728,6 @@ icecat-i18n-ne-NP_package() {
 icecat-i18n-nl_package() {
 	short_desc+=" - Dutch language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -802,7 +736,6 @@ icecat-i18n-nl_package() {
 icecat-i18n-nn-NO_package() {
 	short_desc+=" - Norwegian (Nynorsk) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -811,7 +744,6 @@ icecat-i18n-nn-NO_package() {
 icecat-i18n-oc_package() {
 	short_desc+=" - Occitan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -820,7 +752,6 @@ icecat-i18n-oc_package() {
 icecat-i18n-pa-IN_package() {
 	short_desc+=" - Punjabi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -829,7 +760,6 @@ icecat-i18n-pa-IN_package() {
 icecat-i18n-pl_package() {
 	short_desc+=" - Polish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -838,7 +768,6 @@ icecat-i18n-pl_package() {
 icecat-i18n-pt-BR_package() {
 	short_desc+=" - Portuguese (Brazilian) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -847,7 +776,6 @@ icecat-i18n-pt-BR_package() {
 icecat-i18n-pt-PT_package() {
 	short_desc+=" - Portuguese (Portugal) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -856,7 +784,6 @@ icecat-i18n-pt-PT_package() {
 icecat-i18n-rm_package() {
 	short_desc+=" - Romansh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -865,7 +792,6 @@ icecat-i18n-rm_package() {
 icecat-i18n-ro_package() {
 	short_desc+=" - Romanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -874,7 +800,6 @@ icecat-i18n-ro_package() {
 icecat-i18n-ru_package() {
 	short_desc+=" - Russian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -883,7 +808,6 @@ icecat-i18n-ru_package() {
 icecat-i18n-si_package() {
 	short_desc+=" - Sinhala language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -892,7 +816,6 @@ icecat-i18n-si_package() {
 icecat-i18n-sk_package() {
 	short_desc+=" - Slovak language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -901,7 +824,6 @@ icecat-i18n-sk_package() {
 icecat-i18n-sl_package() {
 	short_desc+=" - Slovenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -910,7 +832,6 @@ icecat-i18n-sl_package() {
 icecat-i18n-son_package() {
 	short_desc+=" - Songhai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -919,7 +840,6 @@ icecat-i18n-son_package() {
 icecat-i18n-sq_package() {
 	short_desc+=" - Albanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -928,7 +848,6 @@ icecat-i18n-sq_package() {
 icecat-i18n-sr_package() {
 	short_desc+=" - Serbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -937,7 +856,6 @@ icecat-i18n-sr_package() {
 icecat-i18n-sv-SE_package() {
 	short_desc+=" - Swedish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -946,7 +864,6 @@ icecat-i18n-sv-SE_package() {
 icecat-i18n-ta_package() {
 	short_desc+=" - Tamil language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -955,7 +872,6 @@ icecat-i18n-ta_package() {
 icecat-i18n-te_package() {
 	short_desc+=" - Telugu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -964,7 +880,6 @@ icecat-i18n-te_package() {
 icecat-i18n-th_package() {
 	short_desc+=" - Thai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -973,7 +888,6 @@ icecat-i18n-th_package() {
 icecat-i18n-tr_package() {
 	short_desc+=" - Turkish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -982,7 +896,6 @@ icecat-i18n-tr_package() {
 icecat-i18n-uk_package() {
 	short_desc+=" - Ukrainian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -991,7 +904,6 @@ icecat-i18n-uk_package() {
 icecat-i18n-ur_package() {
 	short_desc+=" - Urdu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1000,7 +912,6 @@ icecat-i18n-ur_package() {
 icecat-i18n-uz_package() {
 	short_desc+=" - Uzbek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1009,7 +920,6 @@ icecat-i18n-uz_package() {
 icecat-i18n-vi_package() {
 	short_desc+=" - Vietnamese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1018,7 +928,6 @@ icecat-i18n-vi_package() {
 icecat-i18n-xh_package() {
 	short_desc+=" - Xhosa language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1027,7 +936,6 @@ icecat-i18n-xh_package() {
 icecat-i18n-zh-CN_package() {
 	short_desc+=" - Chinese (simplified) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1036,7 +944,6 @@ icecat-i18n-zh-CN_package() {
 icecat-i18n-zh-TW_package() {
 	short_desc+=" - Chinese (traditional) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
diff --git a/srcpkgs/icedtea-sound/template b/srcpkgs/icedtea-sound/template
index 4ad965c6806..ef2c242eedf 100644
--- a/srcpkgs/icedtea-sound/template
+++ b/srcpkgs/icedtea-sound/template
@@ -15,7 +15,6 @@ checksum=6ff852b82ae7db7a95981271037eb3a3d52c59581e3b27a638a7c6bc8eecb4a3
 
 icedtea-sound-doc_package() {
 	short_desc+=" - docs"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/icon-naming-utils/template b/srcpkgs/icon-naming-utils/template
index f069d604e37..e530a4c40c3 100644
--- a/srcpkgs/icon-naming-utils/template
+++ b/srcpkgs/icon-naming-utils/template
@@ -2,7 +2,6 @@
 pkgname=icon-naming-utils
 version=0.8.90
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Simple"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/imgp/template b/srcpkgs/imgp/template
index 872b3db406c..f7df8788ae5 100644
--- a/srcpkgs/imgp/template
+++ b/srcpkgs/imgp/template
@@ -2,7 +2,6 @@
 pkgname=imgp
 version=2.7
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-Pillow"
 short_desc="Multi-core batch image resizer and rotator"
diff --git a/srcpkgs/indic-otf/template b/srcpkgs/indic-otf/template
index 4f37e66f3ce..a4717a0a1ca 100644
--- a/srcpkgs/indic-otf/template
+++ b/srcpkgs/indic-otf/template
@@ -2,7 +2,6 @@
 pkgname=indic-otf
 version=0.2
 revision=3
-archs=noarch
 wrksrc=indic
 build_wrksrc=OpenType
 makedepends="font-util xbps-triggers"
diff --git a/srcpkgs/indicator-doom-cpu/template b/srcpkgs/indicator-doom-cpu/template
index 33158f90a16..7ebac683ada 100644
--- a/srcpkgs/indicator-doom-cpu/template
+++ b/srcpkgs/indicator-doom-cpu/template
@@ -2,7 +2,6 @@
 pkgname=indicator-doom-cpu
 version=1.0.1
 revision=1
-archs=noarch
 depends="python-gobject"
 short_desc="CPU load indicator showing the dying face from the video game DOOM"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/iniparser/template b/srcpkgs/iniparser/template
index 63eb336c7ea..5cef8a0a774 100644
--- a/srcpkgs/iniparser/template
+++ b/srcpkgs/iniparser/template
@@ -58,14 +58,12 @@ iniparser-devel_package() {
 }
 iniparser-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/iniparser
 	}
 }
 iniparser-example_package() {
 	short_desc+=" - example code"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/iniparser/example
 	}
diff --git a/srcpkgs/intltool/template b/srcpkgs/intltool/template
index 852e1e00ca2..00f0595c822 100644
--- a/srcpkgs/intltool/template
+++ b/srcpkgs/intltool/template
@@ -2,7 +2,6 @@
 pkgname=intltool
 version=0.51.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Parser"
 makedepends="perl-XML-Parser gettext"
diff --git a/srcpkgs/inxi/template b/srcpkgs/inxi/template
index 4126ef12968..df16132b791 100644
--- a/srcpkgs/inxi/template
+++ b/srcpkgs/inxi/template
@@ -2,7 +2,6 @@
 pkgname=inxi
 version=3.1.04
 revision=1
-archs=noarch
 wrksrc="inxi-${version}-1"
 depends="dmidecode file glxinfo pciutils perl usbutils xdpyinfo xprop xrandr
  procps-ng"
diff --git a/srcpkgs/io.elementary.stylesheet/template b/srcpkgs/io.elementary.stylesheet/template
index 6b40406712d..bf13584ffc7 100644
--- a/srcpkgs/io.elementary.stylesheet/template
+++ b/srcpkgs/io.elementary.stylesheet/template
@@ -2,7 +2,6 @@
 pkgname=io.elementary.stylesheet
 version=5.4.2
 revision=1
-archs=noarch
 wrksrc="stylesheet-${version}"
 build_style=meson
 short_desc="GTK Stylesheet for elementary OS"
diff --git a/srcpkgs/ioprof/template b/srcpkgs/ioprof/template
index 32b327b4677..26c0306eeb1 100644
--- a/srcpkgs/ioprof/template
+++ b/srcpkgs/ioprof/template
@@ -2,7 +2,6 @@
 pkgname=ioprof
 version=2.0.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="perl blktrace"
 short_desc="Linux I/O profiler"
diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 522bf32a7c2..1cde442db97 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -2,7 +2,6 @@
 pkgname=iotop
 version=0.6
 revision=6
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/ipafont-fonts-otf/template b/srcpkgs/ipafont-fonts-otf/template
index cd7a474d169..37223a3949d 100644
--- a/srcpkgs/ipafont-fonts-otf/template
+++ b/srcpkgs/ipafont-fonts-otf/template
@@ -3,7 +3,6 @@ pkgname=ipafont-fonts-otf
 version=003.03
 revision=3
 _pkgver=${version/./}
-archs=noarch
 wrksrc="IPAfont${_pkgver}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/ipcalc/template b/srcpkgs/ipcalc/template
index 6a35f924f0d..b9d7374e56a 100644
--- a/srcpkgs/ipcalc/template
+++ b/srcpkgs/ipcalc/template
@@ -2,7 +2,6 @@
 pkgname=ipcalc
 version=0.41
 revision=2
-archs=noarch
 depends="perl"
 short_desc="Calculator for IPv4 addresses"
 maintainer="allan <mail@may.mooo.com>"
diff --git a/srcpkgs/ipw2100-firmware/template b/srcpkgs/ipw2100-firmware/template
index 91d72d07724..ea086f6f90f 100644
--- a/srcpkgs/ipw2100-firmware/template
+++ b/srcpkgs/ipw2100-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2100-firmware
 _distname=ipw2100-fw
 version=1.3
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 create_wrksrc=yes
 short_desc="Firmware for the Intel PRO/Wireless 2100 wifi cards"
diff --git a/srcpkgs/ipw2200-firmware/template b/srcpkgs/ipw2200-firmware/template
index f6accfe3dbb..418eb943478 100644
--- a/srcpkgs/ipw2200-firmware/template
+++ b/srcpkgs/ipw2200-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2200-firmware
 _distname=ipw2200-fw
 version=3.1
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 short_desc="Firmware for the Intel PRO/Wireless 2200BG wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iscan-data/template b/srcpkgs/iscan-data/template
index 2953cb34344..bd5452da2e5 100644
--- a/srcpkgs/iscan-data/template
+++ b/srcpkgs/iscan-data/template
@@ -3,7 +3,6 @@ pkgname=iscan-data
 version=1.39.0
 revision=2
 _srcrev=1
-archs=noarch
 build_style=gnu-configure
 maintainer="Orphaned <orphan@voidlinux.org>"
 hostmakedepends="libxslt"
diff --git a/srcpkgs/iso-codes/template b/srcpkgs/iso-codes/template
index fc7a09d4007..af6c55a68ff 100644
--- a/srcpkgs/iso-codes/template
+++ b/srcpkgs/iso-codes/template
@@ -2,7 +2,6 @@
 pkgname=iso-codes
 version=4.5.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext python3"
 short_desc="List of country, language and currency names"
diff --git a/srcpkgs/itstool/template b/srcpkgs/itstool/template
index a3f124f23d7..9ac9bb0a603 100644
--- a/srcpkgs/itstool/template
+++ b/srcpkgs/itstool/template
@@ -2,7 +2,6 @@
 pkgname=itstool
 version=2.0.6
 revision=3
-archs=noarch
 build_style=gnu-configure
 configure_args="PYTHON=/usr/bin/python3"
 hostmakedepends="python3 libxml2-python3"
diff --git a/srcpkgs/jadx/template b/srcpkgs/jadx/template
index cde9ed2a8d4..fd52cd29d15 100644
--- a/srcpkgs/jadx/template
+++ b/srcpkgs/jadx/template
@@ -2,7 +2,6 @@
 pkgname=jadx
 version=1.1.0
 revision=1
-archs=noarch
 hostmakedepends="openjdk8 gradle"
 short_desc="Decompiler for Dalvik bytecode"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/java-commons-io/template b/srcpkgs/java-commons-io/template
index ffabff135f4..7a7601e085e 100644
--- a/srcpkgs/java-commons-io/template
+++ b/srcpkgs/java-commons-io/template
@@ -3,7 +3,6 @@ _origname=commons-io
 pkgname=java-commons-io
 version=2.6
 revision=1
-archs=noarch
 wrksrc="${_origname}-${version}-src"
 hostmakedepends="openjdk8 apache-maven which"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/javahelp2/template b/srcpkgs/javahelp2/template
index d3f7c69614d..afc69de8a88 100644
--- a/srcpkgs/javahelp2/template
+++ b/srcpkgs/javahelp2/template
@@ -4,7 +4,6 @@ version=2.0.05.20170719
 revision=1
 _gitver=3ca862d8626096770598a3a256886d205246f4a4
 wrksrc=javahelp-${_gitver}
-archs=noarch
 short_desc="Java based help system"
 hostmakedepends="openjdk8 apache-ant unzip which"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index b184ef09508..eb91cd9e2d9 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -2,7 +2,6 @@
 pkgname=jrnl
 version=1.9.8
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/kadu/template b/srcpkgs/kadu/template
index da8c8c086ff..1e4dc39ce37 100644
--- a/srcpkgs/kadu/template
+++ b/srcpkgs/kadu/template
@@ -55,7 +55,6 @@ pre_configure() {
 
 kadu-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons
 		vmove "usr/share/kadu/configuration/*.ui"
diff --git a/srcpkgs/kaitai-struct-compiler/template b/srcpkgs/kaitai-struct-compiler/template
index 011a403ca88..2901be0f58c 100644
--- a/srcpkgs/kaitai-struct-compiler/template
+++ b/srcpkgs/kaitai-struct-compiler/template
@@ -2,7 +2,6 @@
 pkgname=kaitai-struct-compiler
 version=0.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Compiler for the Kaitai declarative binary format parsing language"
diff --git a/srcpkgs/kapidox/template b/srcpkgs/kapidox/template
index 90b1e006254..6c74bf04220 100644
--- a/srcpkgs/kapidox/template
+++ b/srcpkgs/kapidox/template
@@ -2,7 +2,6 @@
 pkgname=kapidox
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 pycompile_module="kapidox"
 hostmakedepends="kcoreaddons extra-cmake-modules python"
diff --git a/srcpkgs/kbd/template b/srcpkgs/kbd/template
index 2680406aae9..72bc3eab653 100644
--- a/srcpkgs/kbd/template
+++ b/srcpkgs/kbd/template
@@ -53,7 +53,6 @@ post_install() {
 kbd-data_package() {
 	short_desc+=" - keymaps, console fonts and unicode maps"
 	replaces="kbd<2.0.1_1"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kbd/consolefonts
 		vmove usr/share/kbd/consoletrans
diff --git a/srcpkgs/key-mon/template b/srcpkgs/key-mon/template
index b483fd36c03..e42745bcbfb 100644
--- a/srcpkgs/key-mon/template
+++ b/srcpkgs/key-mon/template
@@ -2,7 +2,6 @@
 pkgname=key-mon
 version=1.17
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="keymon"
 hostmakedepends="python"
diff --git a/srcpkgs/keychain/template b/srcpkgs/keychain/template
index 617d205a587..20eaaf9f319 100644
--- a/srcpkgs/keychain/template
+++ b/srcpkgs/keychain/template
@@ -2,7 +2,6 @@
 pkgname=keychain
 version=2.8.5
 revision=1
-archs=noarch
 short_desc="Keychain manager for ssh-agent and gpg-agent"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="http://www.funtoo.org/wiki/Keychain"
diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index a73516695bf..af4605226e5 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -2,7 +2,6 @@
 pkgname=khal
 version=0.10.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="khal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index ff62c013202..d9f7ddbc972 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -2,7 +2,6 @@
 pkgname=khard
 version=0.15.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="khard"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/khmer-fonts-ttf/template b/srcpkgs/khmer-fonts-ttf/template
index e1791f740fe..749da440514 100644
--- a/srcpkgs/khmer-fonts-ttf/template
+++ b/srcpkgs/khmer-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=khmer-fonts-ttf
 version=5.0
 revision=1
-archs=noarch
 wrksrc="All_KhmerOS_${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/kicad-footprints/template b/srcpkgs/kicad-footprints/template
index 5beb079dea1..c3ba4a8375c 100644
--- a/srcpkgs/kicad-footprints/template
+++ b/srcpkgs/kicad-footprints/template
@@ -2,7 +2,6 @@
 pkgname=kicad-footprints
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad footprint libraries"
diff --git a/srcpkgs/kicad-i18n/template b/srcpkgs/kicad-i18n/template
index 8e9da8555cd..19b43b59a43 100644
--- a/srcpkgs/kicad-i18n/template
+++ b/srcpkgs/kicad-i18n/template
@@ -3,7 +3,6 @@ pkgname=kicad-i18n
 version=5.1.6
 revision=1
 _commit=5ad171ce5c8d90f4740517c2adecb310d8be51bd
-archs=noarch
 wrksrc="${pkgname}-${version}-${_commit}"
 build_style=cmake
 hostmakedepends="gettext"
diff --git a/srcpkgs/kicad-packages3D/template b/srcpkgs/kicad-packages3D/template
index cf606628cd2..d7e3636491c 100644
--- a/srcpkgs/kicad-packages3D/template
+++ b/srcpkgs/kicad-packages3D/template
@@ -2,7 +2,6 @@
 pkgname=kicad-packages3D
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad 3D model libraries"
diff --git a/srcpkgs/kicad-symbols/template b/srcpkgs/kicad-symbols/template
index 61e9021634b..b37b74386a4 100644
--- a/srcpkgs/kicad-symbols/template
+++ b/srcpkgs/kicad-symbols/template
@@ -2,7 +2,6 @@
 pkgname=kicad-symbols
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad symbol libraries"
diff --git a/srcpkgs/kicad-templates/template b/srcpkgs/kicad-templates/template
index 68412310182..5d4adb6a74f 100644
--- a/srcpkgs/kicad-templates/template
+++ b/srcpkgs/kicad-templates/template
@@ -2,7 +2,6 @@
 pkgname=kicad-templates
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad templates"
diff --git a/srcpkgs/kickassembler/template b/srcpkgs/kickassembler/template
index 938ec12394b..5b4bafa5fc9 100644
--- a/srcpkgs/kickassembler/template
+++ b/srcpkgs/kickassembler/template
@@ -2,7 +2,6 @@
 pkgname=kickassembler
 version=4.19
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="virtual?java-environment"
 hostmakedepends="unzip"
diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index 8c672f481b4..51608cf3e53 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -41,7 +41,6 @@ do_install() {
 
 kitty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/kobodeluxe/template b/srcpkgs/kobodeluxe/template
index 60539b09390..5a1ee26d3e4 100644
--- a/srcpkgs/kobodeluxe/template
+++ b/srcpkgs/kobodeluxe/template
@@ -29,7 +29,6 @@ post_install() {
 
 kobodeluxe-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kobo-deluxe
 	}
diff --git a/srcpkgs/kodi-binary-addons/template b/srcpkgs/kodi-binary-addons/template
index 50784a8adcb..f1eefbe8e23 100644
--- a/srcpkgs/kodi-binary-addons/template
+++ b/srcpkgs/kodi-binary-addons/template
@@ -2,7 +2,6 @@
 pkgname=kodi-binary-addons
 version=18.6
 revision=1
-archs=noarch
 build_style=meta
 depends="kodi-addon-pvr-zattoo kodi-addon-game-libretro
  kodi-addon-peripheral-joystick kodi-addon-inputstream-rtmp
diff --git a/srcpkgs/kpcli/template b/srcpkgs/kpcli/template
index 3201920ce88..073b3925444 100644
--- a/srcpkgs/kpcli/template
+++ b/srcpkgs/kpcli/template
@@ -2,7 +2,6 @@
 pkgname=kpcli
 version=3.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="perl perl-Crypt-Rijndael perl-Sort-Naturally perl-Term-ReadKey perl-Term-ShellUI perl-File-KeePass perl-Clone perl-Term-ReadLine-Gnu perl-XML-Parser"
 short_desc="KeePass Command Line Interface"
diff --git a/srcpkgs/kshdb/template b/srcpkgs/kshdb/template
index ee22e70d994..6653ee3de18 100644
--- a/srcpkgs/kshdb/template
+++ b/srcpkgs/kshdb/template
@@ -2,7 +2,6 @@
 pkgname=kshdb
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="automake ksh"
 depends="ksh python3"
diff --git a/srcpkgs/kupfer/template b/srcpkgs/kupfer/template
index 03e80e9fdc9..d351345376d 100644
--- a/srcpkgs/kupfer/template
+++ b/srcpkgs/kupfer/template
@@ -2,7 +2,6 @@
 pkgname=kupfer
 version=319
 revision=2
-archs=noarch
 build_style=waf3
 wrksrc="${pkgname}-v${version}"
 python_version=3
diff --git a/srcpkgs/laditools/template b/srcpkgs/laditools/template
index 88e45ee722c..50199e8646d 100644
--- a/srcpkgs/laditools/template
+++ b/srcpkgs/laditools/template
@@ -2,7 +2,6 @@
 pkgname=laditools
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="laditools"
 hostmakedepends="python-distutils-extra intltool librsvg-utils"
diff --git a/srcpkgs/ladspa-sdk/template b/srcpkgs/ladspa-sdk/template
index 792663a5c1f..9db8572efa5 100644
--- a/srcpkgs/ladspa-sdk/template
+++ b/srcpkgs/ladspa-sdk/template
@@ -2,7 +2,6 @@
 pkgname=ladspa-sdk
 version=1.15
 revision=2
-archs=noarch
 wrksrc="ladspa_sdk_${version}"
 makedepends="libsndfile-progs"
 short_desc="Linux Audio Developer's Simple Plugin API (LADSPA)"
@@ -24,7 +23,6 @@ do_install() {
 ladspa-sdk-doc_package() {
 	depends="ladspa-sdk"
 	short_desc+="- Documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc
 		cd ${wrksrc}/doc
diff --git a/srcpkgs/laptop-mode/template b/srcpkgs/laptop-mode/template
index 5f788f01135..09b790e9351 100644
--- a/srcpkgs/laptop-mode/template
+++ b/srcpkgs/laptop-mode/template
@@ -2,7 +2,6 @@
 pkgname=laptop-mode
 version=1.73.1
 revision=1
-archs=noarch
 wrksrc="${pkgname}-tools_${version}"
 short_desc="Laptop power saving package for Linux systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leiningen/template b/srcpkgs/leiningen/template
index d6ed85040cc..a9451ac81e7 100644
--- a/srcpkgs/leiningen/template
+++ b/srcpkgs/leiningen/template
@@ -2,7 +2,6 @@
 pkgname=leiningen
 version=2.9.3
 revision=1
-archs=noarch
 depends="bash virtual?java-runtime"
 short_desc="Automate Clojure projects without setting your hair on fire"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leocad/template b/srcpkgs/leocad/template
index 8cc39f9f535..6bcbaf9818d 100644
--- a/srcpkgs/leocad/template
+++ b/srcpkgs/leocad/template
@@ -19,7 +19,6 @@ checksum="b74557e00366f1d3ddc211f9e55c28dba39987d66e5e3106490ab5fb75d25bc0
 leocad-data_package() {
 	short_desc+=" - data files"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vinstall ../library.bin 644 usr/share/leocad/
 	}
diff --git a/srcpkgs/lesspipe/template b/srcpkgs/lesspipe/template
index 40ee9a36cf1..d922e937f7a 100644
--- a/srcpkgs/lesspipe/template
+++ b/srcpkgs/lesspipe/template
@@ -2,7 +2,6 @@
 pkgname=lesspipe
 version=1.84
 revision=1
-archs=noarch
 depends="less"
 short_desc="Input filter for the pager less"
 maintainer="Olga Ustuzhanina <me@laserbat.pw>"
diff --git a/srcpkgs/lfe/template b/srcpkgs/lfe/template
index 9dcca402dc5..9ca2fd95a2f 100644
--- a/srcpkgs/lfe/template
+++ b/srcpkgs/lfe/template
@@ -2,7 +2,6 @@
 pkgname=lfe
 version=1.3
 revision=1
-archs=noarch
 hostmakedepends="erlang"
 depends="erlang"
 short_desc="Lisp flavoured erlang"
diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 1e0e7cf29fa..2d6750b9451 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -2,7 +2,6 @@
 pkgname=lfm
 version=3.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/lftpfs/template b/srcpkgs/lftpfs/template
index f8b75902812..4a3b263c2ba 100644
--- a/srcpkgs/lftpfs/template
+++ b/srcpkgs/lftpfs/template
@@ -2,7 +2,6 @@
 pkgname=lftpfs
 version=0.4.3
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl-Fuse perl-IPC-Run lftp"
diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index fb01bd7fb78..db314976891 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -32,7 +32,6 @@ libbytesize-devel_package() {
 }
 
 libbytesize-python3_package() {
-	archs=noarch
 	depends="python3-six ${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Python3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/libcap-ng/template b/srcpkgs/libcap-ng/template
index d2bbea8cb94..4ec9317edd5 100644
--- a/srcpkgs/libcap-ng/template
+++ b/srcpkgs/libcap-ng/template
@@ -49,7 +49,6 @@ libcap-ng-python3_package() {
 }
 libcap-ng-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="libcap-ng-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/libchewing/template b/srcpkgs/libchewing/template
index 6518254b11e..7901a9e0f1a 100644
--- a/srcpkgs/libchewing/template
+++ b/srcpkgs/libchewing/template
@@ -27,7 +27,6 @@ libchewing-devel_package() {
 }
 
 libchewing-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/libchewing
diff --git a/srcpkgs/libclc-git/template b/srcpkgs/libclc-git/template
index 748ffe98fc8..e2263c4b0b4 100644
--- a/srcpkgs/libclc-git/template
+++ b/srcpkgs/libclc-git/template
@@ -15,7 +15,6 @@ license="BSD/MIT"
 homepage="http://libclc.llvm.org"
 provides="libclc-${version}_${revision}"
 replaces="libclc>=0"
-archs=noarch
 distfiles="https://github.com/llvm-mirror/libclc/archive/${_git_hash}.tar.gz>${pkgname}-${version}.tar.gz"
 checksum=d9cf73a5d1ab05995086e7a3a0fd6c06172ee59cdd2512c395caae99b9fce453
 
diff --git a/srcpkgs/libcppunit/template b/srcpkgs/libcppunit/template
index 238c6f57017..ca5760cc1ea 100644
--- a/srcpkgs/libcppunit/template
+++ b/srcpkgs/libcppunit/template
@@ -32,7 +32,6 @@ libcppunit-devel_package() {
 }
 
 libcppunit-examples_package() {
-	archs=noarch
 	replaces="cppunit-doc>=0"
 	depends="libcppunit-devel>=${version}_${revision}"
 	short_desc+=" - examples"
diff --git a/srcpkgs/libdwarf/template b/srcpkgs/libdwarf/template
index 5d5539c3ae3..dac373623f8 100644
--- a/srcpkgs/libdwarf/template
+++ b/srcpkgs/libdwarf/template
@@ -33,7 +33,6 @@ libdwarf-devel_package() {
 }
 
 libdwarf-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		for i in README NEWS libdwarf/*.pdf ; do
diff --git a/srcpkgs/libe-book/template b/srcpkgs/libe-book/template
index 89bf62399e3..b112e492171 100644
--- a/srcpkgs/libe-book/template
+++ b/srcpkgs/libe-book/template
@@ -30,7 +30,6 @@ libe-book-devel_package() {
 libe-book-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/liberation-fonts-ttf/template b/srcpkgs/liberation-fonts-ttf/template
index 47663b2b29d..ae6ab901471 100644
--- a/srcpkgs/liberation-fonts-ttf/template
+++ b/srcpkgs/liberation-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=liberation-fonts-ttf
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 build_style=gnu-makefile
 hostmakedepends="fontforge fonttools"
diff --git a/srcpkgs/libfreehand/template b/srcpkgs/libfreehand/template
index 08aae86bb0f..45c0bdcc5a5 100644
--- a/srcpkgs/libfreehand/template
+++ b/srcpkgs/libfreehand/template
@@ -31,7 +31,6 @@ libfreehand-devel_package() {
 libfreehand-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libgphoto2/template b/srcpkgs/libgphoto2/template
index 60573643e50..c0ea9d8c4b0 100644
--- a/srcpkgs/libgphoto2/template
+++ b/srcpkgs/libgphoto2/template
@@ -52,7 +52,6 @@ post_install() {
 
 libgphoto2-udev-rules_package() {
 	short_desc+=" - udev rules"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/udev/hwdb.d
 		vmove usr/lib/udev/rules.d
diff --git a/srcpkgs/libinput-gestures/template b/srcpkgs/libinput-gestures/template
index 872e8ad8588..2ee1d82e3e4 100644
--- a/srcpkgs/libinput-gestures/template
+++ b/srcpkgs/libinput-gestures/template
@@ -2,7 +2,6 @@
 pkgname=libinput-gestures
 version=2.50
 revision=1
-archs=noarch
 depends="python3 libinput xdotool wmctrl hicolor-icon-theme"
 short_desc="Action gestures on your touchpad using libinput"
 maintainer="Chinmay Pai <chinmaydpai@gmail.com>"
diff --git a/srcpkgs/libmwaw/template b/srcpkgs/libmwaw/template
index c81f91175d3..7ea5ce0051d 100644
--- a/srcpkgs/libmwaw/template
+++ b/srcpkgs/libmwaw/template
@@ -24,7 +24,6 @@ libmwaw-devel_package() {
 }
 
 libmwaw-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/libosmgpsmap/template b/srcpkgs/libosmgpsmap/template
index 4ab56904f2d..0690f592c42 100644
--- a/srcpkgs/libosmgpsmap/template
+++ b/srcpkgs/libosmgpsmap/template
@@ -19,7 +19,6 @@ build_options="gir"
 build_options_default="gir"
 
 libosmgpsmap-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation"
 	pkg_install() {
diff --git a/srcpkgs/libquvi-scripts/template b/srcpkgs/libquvi-scripts/template
index c2d247e52dd..551953eb763 100644
--- a/srcpkgs/libquvi-scripts/template
+++ b/srcpkgs/libquvi-scripts/template
@@ -2,7 +2,6 @@
 pkgname=libquvi-scripts
 version=0.4.21
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config lua53"
 makedepends="lua53"
diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 0eb5941e2ad..d46f4056f05 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -297,7 +297,6 @@ _add_lang() {
 	_languages="$_languages ${pkglang//_/-}"
 	eval "libreoffice-i18n-${1}_package() {
 		short_desc+=\"- ${2} language pack\"
-		archs=noarch
 		pkg_install() {
 			_split lang_${pkglang}
 		}
@@ -584,7 +583,6 @@ libreoffice-draw_package() {
 
 libreoffice-fonts_package() {
 	short_desc+=" - Fonts"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/lib/libreoffice/share
 		mv ${DESTDIR}/all/usr/lib/libreoffice/share/fonts \
diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 1aed9159ab9..052d243e477 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -39,7 +39,6 @@ libsearpc-codegen_package() {
 	short_desc+=" - code generator"
 	depends="python3"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vdoc AUTHORS
 		vdoc README.markdown
@@ -51,7 +50,6 @@ libsearpc-python3_package() {
 	short_desc+=" - Python3 bindings"
 	pycompile_module="pysearpc"
 	depends="python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
diff --git a/srcpkgs/libsoxr/template b/srcpkgs/libsoxr/template
index ae7c8c7e3f5..0ad80dfb5da 100644
--- a/srcpkgs/libsoxr/template
+++ b/srcpkgs/libsoxr/template
@@ -36,7 +36,6 @@ libsoxr-devel_package() {
 libsoxr-doc_package() {
 	short_desc+=" - documentation and examples"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libvpx5/template b/srcpkgs/libvpx5/template
index d6ce843134a..93d9a8866c6 100644
--- a/srcpkgs/libvpx5/template
+++ b/srcpkgs/libvpx5/template
@@ -58,7 +58,6 @@ libvpx5-devel_package() {
 }
 
 libvpx_package() {
-	archs=noarch
 	build_style=meta
 	depends="libvpx5-${version}_${revision}"
 	short_desc+=" (transitional package)"
diff --git a/srcpkgs/libwaylandpp/template b/srcpkgs/libwaylandpp/template
index 44f129f3f89..58a4c2568c9 100644
--- a/srcpkgs/libwaylandpp/template
+++ b/srcpkgs/libwaylandpp/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 libwaylandpp-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/lightdm-webkit2-greeter/template b/srcpkgs/lightdm-webkit2-greeter/template
index 1dd57b859cc..126238441e6 100644
--- a/srcpkgs/lightdm-webkit2-greeter/template
+++ b/srcpkgs/lightdm-webkit2-greeter/template
@@ -22,7 +22,6 @@ post_extract() {
 
 lightdm-webkit-greeter_package() {
 	short_desc+=" - (transitional dummy package)"
-	archs=noarch
 	depends="lightdm-webkit2-greeter>=${version}_${revision}"
 	pkg_install() {
 		vmkdir usr/bin
diff --git a/srcpkgs/lilypond-doc/template b/srcpkgs/lilypond-doc/template
index 1480cfe1d52..a8fe890cf45 100644
--- a/srcpkgs/lilypond-doc/template
+++ b/srcpkgs/lilypond-doc/template
@@ -2,7 +2,6 @@
 pkgname=lilypond-doc
 version=2.21.1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Documentation for the lilypond music engraving program"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/linux-firmware-dvb/template b/srcpkgs/linux-firmware-dvb/template
index 3109780e132..cf7df793297 100644
--- a/srcpkgs/linux-firmware-dvb/template
+++ b/srcpkgs/linux-firmware-dvb/template
@@ -7,7 +7,6 @@ short_desc="Linux TV firmware package"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
 license="GPL-2 Custom"
 homepage="https://linuxtv.org/"
-archs=noarch
 distfiles="
  https://github.com/OpenELEC/dvb-firmware/archive/${_gitrev}.tar.gz>${pkgname}-${version}.tar.gz
  https://linuxtv.org/downloads/firmware/dvb-firmwares.tar.bz2"
diff --git a/srcpkgs/linux-firmware/template b/srcpkgs/linux-firmware/template
index 9ee05164394..e6d48a6e08f 100644
--- a/srcpkgs/linux-firmware/template
+++ b/srcpkgs/linux-firmware/template
@@ -2,7 +2,6 @@
 pkgname=linux-firmware
 version=20200519
 revision=1
-archs=noarch
 depends="${pkgname}-amd-${version}_${revision} ${pkgname}-network-${version}_${revision}"
 short_desc="Binary firmware blobs for the Linux kernel"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -23,7 +22,6 @@ do_install() {
 
 linux-firmware-amd_package() {
 	short_desc+=" - AMD CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/amd*
 		vmove usr/lib/firmware/radeon
@@ -35,7 +33,6 @@ linux-firmware-amd_package() {
 
 linux-firmware-intel_package() {
 	short_desc+=" - Intel CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/i915
 		vmove usr/share/licenses/linux-firmware/LICENSE.i915
@@ -44,7 +41,6 @@ linux-firmware-intel_package() {
 
 linux-firmware-nvidia_package() {
 	short_desc+=" NVIDIA GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/nvidia
 		vmove usr/share/licenses/linux-firmware/LICENCE.nvidia*
@@ -53,7 +49,6 @@ linux-firmware-nvidia_package() {
 
 linux-firmware-network_package() {
 	short_desc+=" - network"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/3com
 		vmove usr/lib/firmware/RTL8192E
diff --git a/srcpkgs/lltag/template b/srcpkgs/lltag/template
index 58fadec2276..8a2e6ac8805 100644
--- a/srcpkgs/lltag/template
+++ b/srcpkgs/lltag/template
@@ -2,7 +2,6 @@
 pkgname=lltag
 version=0.14.6
 revision=2
-archs=noarch
 wrksrc="lltag-lltag-${version}"
 build_style=gnu-makefile
 hostmakedepends="perl"
diff --git a/srcpkgs/llvm10/template b/srcpkgs/llvm10/template
index 62c75d00061..84d4c587129 100644
--- a/srcpkgs/llvm10/template
+++ b/srcpkgs/llvm10/template
@@ -189,7 +189,6 @@ do_install() {
 }
 
 clang-analyzer_package() {
-	archs=noarch
 	pycompile_dirs="usr/share/scan-view"
 	depends="clang-${version}_${revision} python3"
 	short_desc+=" - A source code analysis framework"
diff --git a/srcpkgs/llvm6.0/template b/srcpkgs/llvm6.0/template
index d620db6415a..b0e518c4028 100644
--- a/srcpkgs/llvm6.0/template
+++ b/srcpkgs/llvm6.0/template
@@ -2,7 +2,6 @@
 pkgname=llvm6.0
 version=6.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (6.0.x series) (removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/llvm7/template b/srcpkgs/llvm7/template
index b06f887c3b7..011d7419a4e 100644
--- a/srcpkgs/llvm7/template
+++ b/srcpkgs/llvm7/template
@@ -2,7 +2,6 @@
 pkgname=llvm7
 version=7.0.1
 revision=9
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm8/template b/srcpkgs/llvm8/template
index 7af4f95fb4e..4eb8e0e4806 100644
--- a/srcpkgs/llvm8/template
+++ b/srcpkgs/llvm8/template
@@ -2,7 +2,6 @@
 pkgname=llvm8
 version=8.0.1
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 951a64e1a87..025c8845257 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -2,7 +2,6 @@
 pkgname=llvm9
 version=9.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="q66 <daniel@octaforge.org>"
diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index 3086f9ac8b8..c01adcb2d18 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -2,7 +2,6 @@
 pkgname=lollypop
 version=1.3.4
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="cmake git glib-devel gobject-introspection intltool itstool pkg-config"
 makedepends="gtk+3-devel libsoup-devel python3-gobject-devel python3-devel"
diff --git a/srcpkgs/lua54-MessagePack/template b/srcpkgs/lua54-MessagePack/template
index 6383677d8ca..d88a720a579 100644
--- a/srcpkgs/lua54-MessagePack/template
+++ b/srcpkgs/lua54-MessagePack/template
@@ -2,7 +2,6 @@
 pkgname=lua54-MessagePack
 version=0.5.2
 revision=2
-archs=noarch
 wrksrc="lua-MessagePack-${version}"
 depends="lua54"
 _desc="Pure Lua implementation of msgpack.org"
diff --git a/srcpkgs/lua54-stdlib-debug/template b/srcpkgs/lua54-stdlib-debug/template
index 1d862bc6726..73f13179fa7 100644
--- a/srcpkgs/lua54-stdlib-debug/template
+++ b/srcpkgs/lua54-stdlib-debug/template
@@ -3,7 +3,6 @@ pkgname=lua54-stdlib-debug
 version=1.0.1
 revision=3
 wrksrc=_debug-${version}
-archs=noarch
 depends="lua54"
 _desc="A debug hints management library for Lua"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/lua54-stdlib-normalize/template b/srcpkgs/lua54-stdlib-normalize/template
index 9a0d6071327..2fa1c7a75f6 100644
--- a/srcpkgs/lua54-stdlib-normalize/template
+++ b/srcpkgs/lua54-stdlib-normalize/template
@@ -2,7 +2,6 @@
 pkgname=lua54-stdlib-normalize
 version=2.0.3
 revision=3
-archs=noarch
 wrksrc=normalize-${version}
 depends="lua54 lua54-stdlib-debug"
 _desc="Collection of normalized Lua functions"
diff --git a/srcpkgs/lua54-vicious/template b/srcpkgs/lua54-vicious/template
index 9da7e6330c5..2a9b7f13f40 100644
--- a/srcpkgs/lua54-vicious/template
+++ b/srcpkgs/lua54-vicious/template
@@ -3,7 +3,6 @@ pkgname=lua54-vicious
 version=2.4.1
 revision=1
 wrksrc=vicious-${version}
-archs=noarch
 depends="lua54"
 _desc="Modular widget library for window managers"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/luarocks-lua53/template b/srcpkgs/luarocks-lua53/template
index 5c047f790c0..4480962a81a 100644
--- a/srcpkgs/luarocks-lua53/template
+++ b/srcpkgs/luarocks-lua53/template
@@ -2,7 +2,6 @@
 pkgname=luarocks-lua53
 version=3.3.1
 revision=3
-archs=noarch
 wrksrc=luarocks-${version}
 build_style=configure
 configure_args="
@@ -63,7 +62,6 @@ post_install() {
 }
 
 luarocks-lua54_package() {
-	archs=noarch
 	short_desc="${_desc} (5.4.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua54"
 	conf_files="/etc/luarocks/config-5.4.lua"
@@ -78,7 +76,6 @@ luarocks-lua54_package() {
 }
 
 luarocks-lua52_package() {
-	archs=noarch
 	short_desc="${_desc} (5.2.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua52"
 	conf_files="/etc/luarocks/config-5.2.lua"
@@ -93,7 +90,6 @@ luarocks-lua52_package() {
 }
 
 luarocks-lua51_package() {
-	archs=noarch
 	short_desc="${_desc} (5.1.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua51"
 	conf_files="/etc/luarocks/config-5.1.lua"
diff --git a/srcpkgs/lugaru/template b/srcpkgs/lugaru/template
index 618a3ab5894..2dd39570266 100644
--- a/srcpkgs/lugaru/template
+++ b/srcpkgs/lugaru/template
@@ -19,7 +19,6 @@ checksum=f3ea477caf78911c69939fbdc163f9f6517c7ef2267e716a0e050be1a166ef97
 
 lugaru-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	license="CC-BY-SA-4"
 	pkg_install() {
 		vmove usr/share/lugaru
diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 30fbd3ef8d0..28c3119fb47 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -2,7 +2,6 @@
 pkgname=lutris
 version=0.5.7.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext python3-setuptools python3-gobject gtk+3-devel"
 depends="python3-dbus python3-gobject python3-yaml python3-evdev python3-Pillow
diff --git a/srcpkgs/lxde-common/template b/srcpkgs/lxde-common/template
index 27e853db6e9..e6fef2f7f15 100644
--- a/srcpkgs/lxde-common/template
+++ b/srcpkgs/lxde-common/template
@@ -2,7 +2,6 @@
 pkgname=lxde-common
 version=0.99.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool"
 depends="lxsession gnome-themes-extra lxde-icon-theme"
diff --git a/srcpkgs/lxde-icon-theme/template b/srcpkgs/lxde-icon-theme/template
index 896f177f23f..90fb159959e 100644
--- a/srcpkgs/lxde-icon-theme/template
+++ b/srcpkgs/lxde-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=lxde-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 makedepends="gtk+-devel"
diff --git a/srcpkgs/lxdm-theme-vdojo/template b/srcpkgs/lxdm-theme-vdojo/template
index b41d9c94f6b..a706df6056f 100644
--- a/srcpkgs/lxdm-theme-vdojo/template
+++ b/srcpkgs/lxdm-theme-vdojo/template
@@ -2,7 +2,6 @@
 pkgname=lxdm-theme-vdojo
 version=1.0
 revision=1
-archs=noarch
 wrksrc="vdojo-$version"
 depends="lxdm"
 short_desc="LXDM theme for voidlinux"
diff --git a/srcpkgs/lxmenu-data/template b/srcpkgs/lxmenu-data/template
index 3bbb4b87f76..77d9af9b191 100644
--- a/srcpkgs/lxmenu-data/template
+++ b/srcpkgs/lxmenu-data/template
@@ -2,7 +2,6 @@
 pkgname=lxmenu-data
 version=0.1.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="LXDE freedesktop menu required files"
diff --git a/srcpkgs/lxqt-build-tools/template b/srcpkgs/lxqt-build-tools/template
index 335ff770e01..b0f7f26df9a 100644
--- a/srcpkgs/lxqt-build-tools/template
+++ b/srcpkgs/lxqt-build-tools/template
@@ -2,7 +2,6 @@
 pkgname=lxqt-build-tools
 version=0.7.0
 revision=1
-archs=noarch
 build_style=cmake
 hostmakedepends="qt5-host-tools qt5-qmake pkg-config"
 makedepends="qt5-devel"
diff --git a/srcpkgs/magic-wormhole/template b/srcpkgs/magic-wormhole/template
index b3a7bdf27f8..657778c7d83 100644
--- a/srcpkgs/magic-wormhole/template
+++ b/srcpkgs/magic-wormhole/template
@@ -2,7 +2,6 @@
 pkgname=magic-wormhole
 version=0.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-autobahn python3-cffi python3-click python3-humanize
diff --git a/srcpkgs/mailpile/template b/srcpkgs/mailpile/template
index 972c1da3106..e3010566a17 100644
--- a/srcpkgs/mailpile/template
+++ b/srcpkgs/mailpile/template
@@ -2,7 +2,6 @@
 pkgname=mailpile
 version=0.5.2
 revision=3
-archs=noarch
 wrksrc="Mailpile-${version}"
 build_style=python2-module
 pycompile_module="static mailpile"
diff --git a/srcpkgs/make-ca/template b/srcpkgs/make-ca/template
index 5c54e95cdc2..e308fa4f390 100644
--- a/srcpkgs/make-ca/template
+++ b/srcpkgs/make-ca/template
@@ -2,7 +2,6 @@
 pkgname=make-ca
 version=1.7
 revision=1
-archs=noarch
 wrksrc="make-ca-${version}"
 build_style=gnu-makefile
 make_install_args="SBINDIR=/usr/bin"
diff --git a/srcpkgs/makepasswd/template b/srcpkgs/makepasswd/template
index 12814d730d5..e997b1bd0f1 100644
--- a/srcpkgs/makepasswd/template
+++ b/srcpkgs/makepasswd/template
@@ -2,7 +2,6 @@
 pkgname=makepasswd
 version=1.10.9
 revision=2
-archs=noarch
 depends="perl-Crypt-OpenSSL-Random perl-Crypt-PasswdMD5"
 short_desc="Create and/or encrypt true-random-seeded password strings"
 maintainer="Kevin Berry <kevin@opensourcealchemist.com>"
diff --git a/srcpkgs/makeself/template b/srcpkgs/makeself/template
index 2fc0f26fbd5..aaf9bb75883 100644
--- a/srcpkgs/makeself/template
+++ b/srcpkgs/makeself/template
@@ -2,7 +2,6 @@
 pkgname=makeself
 version=2.4.2
 revision=1
-archs=noarch
 wrksrc="makeself-release-${version}"
 short_desc="Make self-extractable archives on Unix"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages-posix/template b/srcpkgs/man-pages-posix/template
index f16421308ae..25f42c2a692 100644
--- a/srcpkgs/man-pages-posix/template
+++ b/srcpkgs/man-pages-posix/template
@@ -4,7 +4,6 @@ _distver=2013
 _revver=a
 version="${_distver}${_revver}"
 revision=4
-archs=noarch
 wrksrc="${pkgname}-${_distver}-${_revver}"
 short_desc="Manual pages about POSIX systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages/template b/srcpkgs/man-pages/template
index c1e38ac3dba..507bbe9f7b3 100644
--- a/srcpkgs/man-pages/template
+++ b/srcpkgs/man-pages/template
@@ -2,7 +2,6 @@
 pkgname=man-pages
 version=5.08
 revision=1
-archs=noarch
 short_desc="Linux Documentation Project (LDP) manual pages"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-or-later"
@@ -50,7 +49,6 @@ do_install() {
 }
 
 man-pages-devel_package() {
-	archs=noarch
 	short_desc+=" - development pages"
 	pkg_install() {
 		vmove usr/share/man/man[2-3]
diff --git a/srcpkgs/mantablockscreen/template b/srcpkgs/mantablockscreen/template
index 79b21d96121..80172a917f9 100644
--- a/srcpkgs/mantablockscreen/template
+++ b/srcpkgs/mantablockscreen/template
@@ -2,7 +2,6 @@
 pkgname=mantablockscreen
 version=0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="ImageMagick xrandr i3lock-color compton bash"
 short_desc="Another i3lock-color wrapper that mantab"
diff --git a/srcpkgs/manuskript/template b/srcpkgs/manuskript/template
index c0c3269225c..55a7919c563 100644
--- a/srcpkgs/manuskript/template
+++ b/srcpkgs/manuskript/template
@@ -2,7 +2,6 @@
 pkgname=manuskript
 version=0.11.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}"
 hostmakedepends="python3-setuptools"
 depends="python3-enchant python3-lxml python3-Markdown python3-PyQt5 qt5-svg"
diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template
index 793f3aadf41..c81014b7394 100644
--- a/srcpkgs/mariadb/template
+++ b/srcpkgs/mariadb/template
@@ -134,7 +134,6 @@ mariadb-client_package() {
 	}
 }
 mytop_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} perl-Term-ReadKey perl-DBD-mysql"
 	short_desc="Top-like query monitor for MariaDB"
 	pkg_install() {
diff --git a/srcpkgs/marvin/template b/srcpkgs/marvin/template
index 65580f87728..3eac54a4c1a 100644
--- a/srcpkgs/marvin/template
+++ b/srcpkgs/marvin/template
@@ -2,7 +2,6 @@
 pkgname=marvin
 version=18.20.0
 revision=2
-archs=noarch
 maintainer="Brenton Horne <brentonhorne77@gmail.com>"
 homepage="https://chemaxon.com/products/marvin"
 license="marvin"
diff --git a/srcpkgs/mate-applets/template b/srcpkgs/mate-applets/template
index 8e9a40869f1..88196018390 100644
--- a/srcpkgs/mate-applets/template
+++ b/srcpkgs/mate-applets/template
@@ -25,7 +25,6 @@ case "$XBPS_TARGET_MACHINE" in
 esac
 
 mate-applets-data_package() {
-	archs=noarch
 	short_desc+=" - architecture independent data"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mate-backgrounds/template b/srcpkgs/mate-backgrounds/template
index 1c0b34f110c..31e6c7f094a 100644
--- a/srcpkgs/mate-backgrounds/template
+++ b/srcpkgs/mate-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=mate-backgrounds
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="Background images and data for MATE"
diff --git a/srcpkgs/mate-common/template b/srcpkgs/mate-common/template
index 17382ebcf1e..4850dbfe064 100644
--- a/srcpkgs/mate-common/template
+++ b/srcpkgs/mate-common/template
@@ -2,7 +2,6 @@
 pkgname=mate-common
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 depends="automake libtool intltool pkg-config gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mate-icon-theme-faenza/template b/srcpkgs/mate-icon-theme-faenza/template
index 8eaa696d780..80299aa0b61 100644
--- a/srcpkgs/mate-icon-theme-faenza/template
+++ b/srcpkgs/mate-icon-theme-faenza/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme-faenza
 version=1.20.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="mate-common pkg-config intltool itstool icon-naming-utils"
 depends="gtk-update-icon-cache hicolor-icon-theme"
diff --git a/srcpkgs/mate-icon-theme/template b/srcpkgs/mate-icon-theme/template
index f5dfc2932fe..dc3c584cc56 100644
--- a/srcpkgs/mate-icon-theme/template
+++ b/srcpkgs/mate-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="icon-naming-utils"
diff --git a/srcpkgs/mate-menu/template b/srcpkgs/mate-menu/template
index 3c59954a4bc..6191d683ce9 100644
--- a/srcpkgs/mate-menu/template
+++ b/srcpkgs/mate-menu/template
@@ -2,7 +2,6 @@
 pkgname=mate-menu
 version=20.04.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/lib/mate-menu"
 hostmakedepends="intltool python3-distutils-extra python3-setuptools"
diff --git a/srcpkgs/mate-themes/template b/srcpkgs/mate-themes/template
index 577574cedc0..c93250d5589 100644
--- a/srcpkgs/mate-themes/template
+++ b/srcpkgs/mate-themes/template
@@ -2,7 +2,6 @@
 pkgname=mate-themes
 version=3.22.21
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="gtk+-devel gtk+3-devel"
diff --git a/srcpkgs/mate-tweak/template b/srcpkgs/mate-tweak/template
index a7da4bd36d8..76179410d25 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -2,7 +2,6 @@
 pkgname=mate-tweak
 version=20.04.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"
 depends="mate-panel python3-gobject python3-psutil python3-setproctitle
diff --git a/srcpkgs/mate-user-guide/template b/srcpkgs/mate-user-guide/template
index 7c1363e3ae2..41c477d013c 100644
--- a/srcpkgs/mate-user-guide/template
+++ b/srcpkgs/mate-user-guide/template
@@ -2,7 +2,6 @@
 pkgname=mate-user-guide
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="MATE User Guide"
diff --git a/srcpkgs/mathjax/template b/srcpkgs/mathjax/template
index c1088202b51..b86cc52aa5a 100644
--- a/srcpkgs/mathjax/template
+++ b/srcpkgs/mathjax/template
@@ -2,7 +2,6 @@
 pkgname=mathjax
 version=2.7.6
 revision=1
-archs=noarch
 wrksrc="MathJax-${version}"
 depends="font-util"
 short_desc="JavaScript display engine for LaTeX, MathML and AsciiMath"
diff --git a/srcpkgs/maxima/template b/srcpkgs/maxima/template
index 90d2df8667d..8e8fde12aff 100644
--- a/srcpkgs/maxima/template
+++ b/srcpkgs/maxima/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 maxima-src_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision}"
 	short_desc+=" - source files"
 	pkg_install() {
@@ -41,7 +40,6 @@ maxima-src_package() {
 }
 
 maxima-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -50,7 +48,6 @@ maxima-emacs_package() {
 }
 
 xmaxima_package() {
-	archs=noarch
 	short_desc+=" - Tk interface"
 	depends="${sourcepkg}-${version}_${revision} tk"
 	pkg_install() {
diff --git a/srcpkgs/mb2md/template b/srcpkgs/mb2md/template
index 2fc5c5062d8..d226aac792e 100644
--- a/srcpkgs/mb2md/template
+++ b/srcpkgs/mb2md/template
@@ -2,7 +2,6 @@
 pkgname=mb2md
 version=3.20
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="perl-TimeDate"
 short_desc="Convert mbox mailboxes into maildir mailboxes"
diff --git a/srcpkgs/mcomix/template b/srcpkgs/mcomix/template
index 397fd241c49..15a556ad9f6 100644
--- a/srcpkgs/mcomix/template
+++ b/srcpkgs/mcomix/template
@@ -2,7 +2,6 @@
 pkgname=mcomix
 version=1.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="${pkgname}"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mdds/template b/srcpkgs/mdds/template
index 5530252ec3d..9e497d8f6a4 100644
--- a/srcpkgs/mdds/template
+++ b/srcpkgs/mdds/template
@@ -7,7 +7,6 @@
 pkgname=mdds
 version=1.5.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Collection of multi-dimensional data structures and indexing algorithms"
diff --git a/srcpkgs/mdevd/template b/srcpkgs/mdevd/template
index 4dc0d6e1f64..6dd20225c36 100644
--- a/srcpkgs/mdevd/template
+++ b/srcpkgs/mdevd/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 mdevd-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index acd79293246..72c81620747 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -36,7 +36,6 @@ libmed_package() {
 
 med-doc_package() {
 	short_desc+=" - Documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/med
 	}
diff --git a/srcpkgs/media-player-info/template b/srcpkgs/media-player-info/template
index 40f59736d3b..b4b60e3e1b2 100644
--- a/srcpkgs/media-player-info/template
+++ b/srcpkgs/media-player-info/template
@@ -2,7 +2,6 @@
 pkgname=media-player-info
 version=24
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="eudev-libudev-devel"
diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 486d3b7104b..35c53f8b2b9 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -2,7 +2,6 @@
 pkgname=meld
 version=3.20.2
 revision=1
-archs=noarch
 build_style=python3-module
 configure_args="--disable-schemas-compile"
 hostmakedepends="pkg-config intltool gnome-doc-utils python3 itstool gtk-update-icon-cache libxml2-python3"
diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index f16c5f64337..d67b6909924 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -2,7 +2,6 @@
 pkgname=menulibre
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/menumaker/template b/srcpkgs/menumaker/template
index 1e4e3f6fc6b..1b73dd13862 100644
--- a/srcpkgs/menumaker/template
+++ b/srcpkgs/menumaker/template
@@ -2,7 +2,6 @@
 pkgname=menumaker
 version=0.99.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/menumaker"
 hostmakedepends="python"
diff --git a/srcpkgs/menutray/template b/srcpkgs/menutray/template
index 6f06e21ff21..3c986f208de 100644
--- a/srcpkgs/menutray/template
+++ b/srcpkgs/menutray/template
@@ -2,7 +2,6 @@
 pkgname=menutray
 version=0.53
 revision=1
-archs=noarch
 depends="perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Application menu through a GTK+ tray status icon"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/meson-cmake-wrapper/template b/srcpkgs/meson-cmake-wrapper/template
index b13ca9229dc..e9058501f60 100644
--- a/srcpkgs/meson-cmake-wrapper/template
+++ b/srcpkgs/meson-cmake-wrapper/template
@@ -2,7 +2,6 @@
 pkgname=meson-cmake-wrapper
 version=0.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mcw"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 8f02d6ba333..a78967b7eae 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,6 @@
 pkgname=meson
 version=0.55.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-devel python3-setuptools"
 depends="ninja python3-setuptools"
diff --git a/srcpkgs/mime-types/template b/srcpkgs/mime-types/template
index 09b3fb9be3c..1f9c9830b9e 100644
--- a/srcpkgs/mime-types/template
+++ b/srcpkgs/mime-types/template
@@ -2,7 +2,6 @@
 pkgname=mime-types
 version=9
 revision=4
-archs=noarch
 conf_files="/etc/mime.types"
 short_desc="Provides a shared /etc/mime.types file"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index 66cd1e12539..82cfd4aa6da 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -2,7 +2,6 @@
 pkgname=mimeo
 version=2019.7
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"
 hostmakedepends="python3"
diff --git a/srcpkgs/mimms/template b/srcpkgs/mimms/template
index 3c1decf9178..db3c660d808 100644
--- a/srcpkgs/mimms/template
+++ b/srcpkgs/mimms/template
@@ -2,7 +2,6 @@
 pkgname=mimms
 version=3.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="libmimms"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/minigalaxy/template b/srcpkgs/minigalaxy/template
index 1d2daaea8d0..12f907fc150 100644
--- a/srcpkgs/minigalaxy/template
+++ b/srcpkgs/minigalaxy/template
@@ -2,7 +2,6 @@
 pkgname=minigalaxy
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="hicolor-icon-theme webkit2gtk python3-gobject python3-requests"
diff --git a/srcpkgs/miro-video-converter/template b/srcpkgs/miro-video-converter/template
index c9d0777aea6..00d273e6bdb 100644
--- a/srcpkgs/miro-video-converter/template
+++ b/srcpkgs/miro-video-converter/template
@@ -3,7 +3,6 @@ pkgname=miro-video-converter
 version=3.0.2
 revision=2
 wrksrc=mirovideoconverter3-${version}
-archs=noarch
 build_style=python2-module
 pycompile_module="mvc"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mkchromecast/template b/srcpkgs/mkchromecast/template
index e5d9626f9dd..fd977f906a3 100644
--- a/srcpkgs/mkchromecast/template
+++ b/srcpkgs/mkchromecast/template
@@ -2,7 +2,6 @@
 pkgname=mkchromecast
 version=0.3.8.1
 revision=2
-archs=noarch
 pycompile_dirs="/usr/share/mkchromecast/mkchromecast"
 depends="python3-Flask python3-netifaces python3-setuptools python3-requests
  python3-mutagen python3-psutil python3-PyQt5 python3-SoCo python3-chromecast
diff --git a/srcpkgs/mkfontscale/template b/srcpkgs/mkfontscale/template
index dafbb915ca8..a1405b8123c 100644
--- a/srcpkgs/mkfontscale/template
+++ b/srcpkgs/mkfontscale/template
@@ -18,7 +18,6 @@ post_install() {
 }
 
 mkfontdir_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}-${version}_${revision}"
 }
diff --git a/srcpkgs/mkinitcpio-encryptssh/template b/srcpkgs/mkinitcpio-encryptssh/template
index 7da6d9e243b..9764febbfeb 100644
--- a/srcpkgs/mkinitcpio-encryptssh/template
+++ b/srcpkgs/mkinitcpio-encryptssh/template
@@ -3,7 +3,6 @@ pkgname=mkinitcpio-encryptssh
 version=0.16
 revision=2
 _version_suffix=1
-archs=noarch
 wrksrc="dropbear_initrd_encrypt-${version}-${_version_suffix}"
 depends="mkinitcpio cryptsetup dropbear mkinitcpio-nfs-utils psmisc iproute2"
 short_desc="Allows for an encrypted root device to be unlocked remotely over SSH"
diff --git a/srcpkgs/mkinitcpio/template b/srcpkgs/mkinitcpio/template
index a0f44360db4..89a6deab1df 100644
--- a/srcpkgs/mkinitcpio/template
+++ b/srcpkgs/mkinitcpio/template
@@ -2,7 +2,6 @@
 pkgname=mkinitcpio
 version=27
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="busybox-static bsdtar bash"
 short_desc="Next generation of initramfs creation"
@@ -30,7 +29,6 @@ post_install() {
 mkinitcpio-udev_package() {
 	depends="${sourcepkg}>=${version}_${revision} eudev"
 	short_desc+=" - udev support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/udev_hook 644 usr/lib/initcpio/hooks udev
 		vinstall ${FILESDIR}/udev_install 644 usr/lib/initcpio/install udev
@@ -40,7 +38,6 @@ mkinitcpio-udev_package() {
 mkinitcpio-lvm2_package() {
 	depends="${sourcepkg}>=${version}_${revision} lvm2 thin-provisioning-tools"
 	short_desc+=" - lvm2 support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/lvm2_hook 644 usr/lib/initcpio/hooks lvm2
 		vinstall ${FILESDIR}/lvm2_install 644 usr/lib/initcpio/install lvm2
@@ -54,7 +51,6 @@ mkinitcpio-encrypt_package() {
 	depends="${sourcepkg}>=${version}_${revision}
 		${sourcepkg}-lvm2>=${version}_${revision} cryptsetup"
 	short_desc+=" - encrypt support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/encrypt_hook 644 usr/lib/initcpio/hooks encrypt
 		vinstall ${FILESDIR}/encrypt_install 644 usr/lib/initcpio/install encrypt
@@ -64,7 +60,6 @@ mkinitcpio-encrypt_package() {
 mkinitcpio-mdadm_package() {
 	depends="${sourcepkg}>=${version}_${revision} mdadm"
 	short_desc+=" - mdadm support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/mdadm_hook 644 usr/lib/initcpio/hooks mdadm
 		vinstall ${FILESDIR}/mdadm_install 644 usr/lib/initcpio/install mdadm
@@ -75,7 +70,6 @@ mkinitcpio-mdadm_package() {
 mkinitcpio-xbps_package() {
 	depends="${sourcepkg}>=${version}_${revision} xbps"
 	short_desc+=" - xbps support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/xbps_install 644 usr/lib/initcpio/install xbps
 	}
diff --git a/srcpkgs/mlt/template b/srcpkgs/mlt/template
index 1579a5b21dd..1798e9e7326 100644
--- a/srcpkgs/mlt/template
+++ b/srcpkgs/mlt/template
@@ -57,7 +57,6 @@ post_install() {
 
 mlt-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mlt
 	}
@@ -65,7 +64,6 @@ mlt-data_package() {
 
 mlt-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
@@ -94,7 +92,6 @@ mlt-python3_package() {
 
 mlt-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="mlt-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/mm-common/template b/srcpkgs/mm-common/template
index da83e052bd6..5398a1b143e 100644
--- a/srcpkgs/mm-common/template
+++ b/srcpkgs/mm-common/template
@@ -2,7 +2,6 @@
 pkgname=mm-common
 version=1.0.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool itstool"
 depends="gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mobile-broadband-provider-info/template b/srcpkgs/mobile-broadband-provider-info/template
index b51be988591..d4986e56405 100644
--- a/srcpkgs/mobile-broadband-provider-info/template
+++ b/srcpkgs/mobile-broadband-provider-info/template
@@ -2,7 +2,6 @@
 pkgname=mobile-broadband-provider-info
 version=20190618
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libxslt"
 checkdepends="libxml2"
diff --git a/srcpkgs/mog/template b/srcpkgs/mog/template
index 51f76b94dc4..41a9230f6e1 100644
--- a/srcpkgs/mog/template
+++ b/srcpkgs/mog/template
@@ -29,7 +29,6 @@ pre_build() {
 
 mog-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mog/graphics
 		vmove usr/share/mog/sound
diff --git a/srcpkgs/mongoose/template b/srcpkgs/mongoose/template
index 587b1ff34eb..6de2663d477 100644
--- a/srcpkgs/mongoose/template
+++ b/srcpkgs/mongoose/template
@@ -22,7 +22,6 @@ mongoose-devel_package() {
 }
 
 mongoose-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mons/template b/srcpkgs/mons/template
index d326cc456c5..4353a22fecb 100644
--- a/srcpkgs/mons/template
+++ b/srcpkgs/mons/template
@@ -3,7 +3,6 @@ pkgname=mons
 version=0.8.2
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="libXrandr"
 hostmakedepends="help2man"
 short_desc="Quickly manage 2-monitors display using xrandr"
diff --git a/srcpkgs/mopidy-local/template b/srcpkgs/mopidy-local/template
index 53f42032019..9cb909cbd8e 100644
--- a/srcpkgs/mopidy-local/template
+++ b/srcpkgs/mopidy-local/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-local
 version=3.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="mopidy python3-pykka python3-setuptools"
diff --git a/srcpkgs/mopidy-mpd/template b/srcpkgs/mopidy-mpd/template
index db1642166fd..5cd84e87ba2 100644
--- a/srcpkgs/mopidy-mpd/template
+++ b/srcpkgs/mopidy-mpd/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-mpd
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="Mopidy-MPD-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mopidy/template b/srcpkgs/mopidy/template
index c3497f3b88d..db3eca17752 100644
--- a/srcpkgs/mopidy/template
+++ b/srcpkgs/mopidy/template
@@ -2,7 +2,6 @@
 pkgname=mopidy
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="Mopidy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme python3-pykka"
diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 22bf450556e..d1d4f4b02c1 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -2,7 +2,6 @@
 pkgname=mozo
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="glib-devel mate-menus-devel python3-gobject-devel"
diff --git a/srcpkgs/mpd-sima/template b/srcpkgs/mpd-sima/template
index 831fec709b7..0b8e1079760 100644
--- a/srcpkgs/mpd-sima/template
+++ b/srcpkgs/mpd-sima/template
@@ -2,7 +2,6 @@
 pkgname=mpd-sima
 version=0.15.1
 revision=2
-archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module
 pycompile_module="sima"
diff --git a/srcpkgs/mps-youtube/template b/srcpkgs/mps-youtube/template
index 2141b3e627d..1ce565e4bc5 100644
--- a/srcpkgs/mps-youtube/template
+++ b/srcpkgs/mps-youtube/template
@@ -2,7 +2,6 @@
 pkgname=mps-youtube
 version=0.2.8
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/msbuild-bin/template b/srcpkgs/msbuild-bin/template
index 58e9bd501b0..ac05eb692b4 100644
--- a/srcpkgs/msbuild-bin/template
+++ b/srcpkgs/msbuild-bin/template
@@ -3,7 +3,6 @@ _xamarin_rel="xamarinxplat.2020.01.10.05.36-0xamarin1+ubuntu1804b1"
 pkgname=msbuild-bin
 version=16.5
 revision=2
-archs=noarch
 build_style=fetch
 depends="mono"
 short_desc="Xamarin/Mono fork of the Microsoft Build system"
diff --git a/srcpkgs/msttcorefonts/template b/srcpkgs/msttcorefonts/template
index 938e03315c1..a253ba88b94 100644
--- a/srcpkgs/msttcorefonts/template
+++ b/srcpkgs/msttcorefonts/template
@@ -45,7 +45,6 @@ restricted=yes
 repository=nonfree
 
 # They're just fonts...
-archs=noarch
 
 # Tell XBPS that these are fonts
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/mtm/template b/srcpkgs/mtm/template
index ed69349285b..81ac285cd77 100644
--- a/srcpkgs/mtm/template
+++ b/srcpkgs/mtm/template
@@ -24,7 +24,6 @@ do_install() {
 
 mtm-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/mu/template b/srcpkgs/mu/template
index c31ee5b5900..2ee0ba83dd9 100644
--- a/srcpkgs/mu/template
+++ b/srcpkgs/mu/template
@@ -26,7 +26,6 @@ pre_configure() {
 
 if [ ! "$CROSS_BUILD" ]; then
 	mu4e_package() {
-		archs=noarch
 		short_desc+=" - Emacs frontend"
 		depends="${sourcepkg}-${version}_${revision} emacs"
 		pkg_install() {
diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index 1e695654a86..3a0c2120a6d 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -2,7 +2,6 @@
 pkgname=mugshot
 version=0.4.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"
 depends="accountsservice gtk+3 python3-dbus python3-gobject python3-pexpect"
diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index c451109bd69..5ec9968ad90 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -2,7 +2,6 @@
 pkgname=multibootusb
 version=9.2.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="scripts"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index 957ed3ed818..7f75588deec 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -2,7 +2,6 @@
 pkgname=mutagen
 version=1.43.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mutagen"
 hostmakedepends="python-devel python-setuptools python3-devel
@@ -39,7 +38,6 @@ python3-mutagen_package() {
 	 mutagen:moggsplit:/usr/bin/moggsplit3
 	 mutagen:mutagen-inspect:/usr/bin/mutagen-inspect3
 	 mutagen:mutagen-pony:/usr/bin/mutagen-pony3"
-	archs=noarch
 	depends="python3"
 	pycompile_module="mutagen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index c46fe9b101e..3f3a3ab0a7c 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -2,7 +2,6 @@
 pkgname=mymcplus
 version=3.0.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="wxPython4 python3-PyOpenGL"
diff --git a/srcpkgs/mypaint-brushes/template b/srcpkgs/mypaint-brushes/template
index 5226d6f18d6..045d7d6a0dc 100644
--- a/srcpkgs/mypaint-brushes/template
+++ b/srcpkgs/mypaint-brushes/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes
 version=2.0.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Brushes used by MyPaint and other software using libmypaint"
diff --git a/srcpkgs/mypaint-brushes1/template b/srcpkgs/mypaint-brushes1/template
index 8622bb46bb8..fe9ad775afd 100644
--- a/srcpkgs/mypaint-brushes1/template
+++ b/srcpkgs/mypaint-brushes1/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes1
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="mypaint-brushes-${version}"
 build_style=gnu-configure
 hostmakedepends="automake"
diff --git a/srcpkgs/myrepos/template b/srcpkgs/myrepos/template
index 2a67216feb7..fb282542f6d 100644
--- a/srcpkgs/myrepos/template
+++ b/srcpkgs/myrepos/template
@@ -2,7 +2,6 @@
 pkgname=myrepos
 version=1.20180726
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="git mercurial perl"
diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 0eb5bc75d27..710d7c861ba 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -2,7 +2,6 @@
 pkgname=nagstamon
 version=3.2.1
 revision=2
-archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
 pycompile_module="Nagstamon"
diff --git a/srcpkgs/nautilus-python/template b/srcpkgs/nautilus-python/template
index 7a32e9e6617..414848a4e8d 100644
--- a/srcpkgs/nautilus-python/template
+++ b/srcpkgs/nautilus-python/template
@@ -2,7 +2,6 @@
 pkgname=nautilus-python
 version=1.2.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-gtk-doc PYTHON=python3"
 hostmakedepends="automake libtool pkg-config which"
diff --git a/srcpkgs/ncurses/template b/srcpkgs/ncurses/template
index d1bb2ae3aa8..bcc9515dfec 100644
--- a/srcpkgs/ncurses/template
+++ b/srcpkgs/ncurses/template
@@ -131,7 +131,6 @@ ncurses-devel_package() {
 }
 ncurses-base_package() {
 	short_desc+=" - base terminfo files"
-	archs=noarch
 	pkg_install() {
 		cat ${FILESDIR}/base-files | while read line; do
 			vmove ${line}
@@ -141,7 +140,6 @@ ncurses-base_package() {
 ncurses-term_package() {
 	depends="ncurses-base-${version}_${revision}"
 	short_desc+=" - full terminal descriptions"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tabset
 		vmove usr/share/terminfo
diff --git a/srcpkgs/neofetch/template b/srcpkgs/neofetch/template
index 60862481a28..99a5b6fa463 100644
--- a/srcpkgs/neofetch/template
+++ b/srcpkgs/neofetch/template
@@ -2,7 +2,6 @@
 pkgname=neofetch
 version=7.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 short_desc="Simple system information script"
diff --git a/srcpkgs/neovim-remote/template b/srcpkgs/neovim-remote/template
index c826750a004..8b84712d21f 100644
--- a/srcpkgs/neovim-remote/template
+++ b/srcpkgs/neovim-remote/template
@@ -2,7 +2,6 @@
 pkgname=neovim-remote
 version=2.4.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-neovim python3-psutil"
diff --git a/srcpkgs/nerd-fonts/template b/srcpkgs/nerd-fonts/template
index a2f2084738b..16d4b469627 100644
--- a/srcpkgs/nerd-fonts/template
+++ b/srcpkgs/nerd-fonts/template
@@ -2,7 +2,6 @@
 pkgname=nerd-fonts
 version=2.1.0
 revision=2
-archs=noarch
 depends="font-util xbps-triggers nerd-fonts-ttf nerd-fonts-otf"
 short_desc="Iconic font aggregator, collection and patcher"
 maintainer="cinerea0 <cinerea0@protonmail.com>"
@@ -32,7 +31,6 @@ do_install() {
 }
 
 nerd-fonts-otf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - otf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/otf"
 	depends="font-util xbps-triggers"
@@ -42,7 +40,6 @@ nerd-fonts-otf_package() {
 }
 
 nerd-fonts-ttf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - ttf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/ttf"
 	depends="font-util xbps-triggers"
diff --git a/srcpkgs/netbsd-wtf/template b/srcpkgs/netbsd-wtf/template
index 87708e08847..878f674a0af 100644
--- a/srcpkgs/netbsd-wtf/template
+++ b/srcpkgs/netbsd-wtf/template
@@ -3,7 +3,6 @@ pkgname=netbsd-wtf
 version=20180621
 revision=2
 _commit=b1e5be48e340146f63b174cc14fef892a783168b
-archs=noarch
 build_style=gnu-makefile
 short_desc="The NetBSD's wtf(6) utility"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/netdata/template b/srcpkgs/netdata/template
index 29e9ca1ce2c..4c39efa113d 100644
--- a/srcpkgs/netdata/template
+++ b/srcpkgs/netdata/template
@@ -48,7 +48,6 @@ post_install() {
 netdata-plugins-nodejs_package() {
 	short_desc+=" - NodeJS Plugins"
 	depends="${sourcepkg}>=${version}_${revision} virtual?nodejs-runtime"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/node.d.plugin
 		vmove usr/libexec/netdata/node.d
@@ -58,7 +57,6 @@ netdata-plugins-nodejs_package() {
 netdata-plugins-python_package() {
 	short_desc+=" - Python Plugins"
 	depends="${sourcepkg}>=${version}_${revision} python"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/python.d.plugin
 		vmove usr/libexec/netdata/python.d
diff --git a/srcpkgs/netsurf-buildsystem/template b/srcpkgs/netsurf-buildsystem/template
index b65615497e2..1a8f7dd25bc 100644
--- a/srcpkgs/netsurf-buildsystem/template
+++ b/srcpkgs/netsurf-buildsystem/template
@@ -2,7 +2,6 @@
 pkgname=netsurf-buildsystem
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#netsurf-}-${version}"
 short_desc="Netsurf buildsystem"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/nicotine+/template b/srcpkgs/nicotine+/template
index 6f743890f83..ad57c8a98b0 100644
--- a/srcpkgs/nicotine+/template
+++ b/srcpkgs/nicotine+/template
@@ -2,7 +2,6 @@
 pkgname=nicotine+
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="nicotine-plus-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/nmap/template b/srcpkgs/nmap/template
index 8f036af7fc4..c868f1fd8ac 100644
--- a/srcpkgs/nmap/template
+++ b/srcpkgs/nmap/template
@@ -36,7 +36,6 @@ post_install() {
 }
 
 zenmap_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} pygtk"
 	short_desc+=" - GUI Frontend"
 	pkg_install() {
diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index d9bba6a03b8..8e0fb2a7300 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -91,7 +91,6 @@ libnotmuch-devel_package() {
 }
 
 notmuch-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -104,7 +103,6 @@ notmuch-emacs_package() {
 }
 
 notmuch-mutt_package() {
-	archs=noarch
 	short_desc+=" - Mutt interface"
 	depends="${sourcepkg}-${version}_${revision} perl-Mail-Box perl-MailTools
 	 perl-String-ShellQuote perl-Term-ReadLine-Gnu perl-File-Which"
@@ -115,7 +113,6 @@ notmuch-mutt_package() {
 }
 
 notmuch-python3_package() {
-	archs=noarch
 	depends="libnotmuch-${version}_${revision}"
 	short_desc+=" - Python 3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/noto-fonts-cjk/template b/srcpkgs/noto-fonts-cjk/template
index 8f35b2e9307..1de8196f2a8 100644
--- a/srcpkgs/noto-fonts-cjk/template
+++ b/srcpkgs/noto-fonts-cjk/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-cjk
 version=20190416
 revision=1
-archs=noarch
 _githash=be6c059ac1587e556e2412b27f5155c8eb3ddbe6
 wrksrc="noto-cjk-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-emoji/template b/srcpkgs/noto-fonts-emoji/template
index 5c467f27551..ee804e84650 100644
--- a/srcpkgs/noto-fonts-emoji/template
+++ b/srcpkgs/noto-fonts-emoji/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-emoji
 version=20200722
 revision=1
-archs=noarch
 _githash=d5e261484286d33a1fe8a02676f5907ecc02106f
 wrksrc="noto-emoji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-ttf/template b/srcpkgs/noto-fonts-ttf/template
index 59c5f03f8e6..21f2064f3aa 100644
--- a/srcpkgs/noto-fonts-ttf/template
+++ b/srcpkgs/noto-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-ttf
 version=20190926
 revision=1
-archs=noarch
 _githash=0fa1dfabd6e3746bb7463399e2813f60d3f1b256
 wrksrc="noto-fonts-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/novaboot/template b/srcpkgs/novaboot/template
index f93c1ebe23b..f5f539b55dc 100644
--- a/srcpkgs/novaboot/template
+++ b/srcpkgs/novaboot/template
@@ -2,7 +2,6 @@
 pkgname=novaboot
 version=20191023
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 makedepends="perl"
diff --git a/srcpkgs/nsss/template b/srcpkgs/nsss/template
index 947efc1a496..fafa035d570 100644
--- a/srcpkgs/nsss/template
+++ b/srcpkgs/nsss/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 nsss-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/ntp/template b/srcpkgs/ntp/template
index c1cd814ea9d..e89fd2f8ae1 100644
--- a/srcpkgs/ntp/template
+++ b/srcpkgs/ntp/template
@@ -42,7 +42,6 @@ post_install() {
 
 ntp-perl_package() {
 	depends="ntp>=$version perl"
-	archs=noarch
 	short_desc+=" - perl scripts"
 	pkg_install() {
 		vmove usr/bin/ntp-wait
diff --git a/srcpkgs/num-utils/template b/srcpkgs/num-utils/template
index d7b542fa7af..ed38c538be1 100644
--- a/srcpkgs/num-utils/template
+++ b/srcpkgs/num-utils/template
@@ -10,7 +10,6 @@ license="GPL-2"
 homepage="http://suso.suso.org/xulu/Num-utils"
 distfiles="http://suso.suso.org/programs/${pkgname}/downloads/${pkgname}-${version}.tar.gz"
 checksum=03592760fc7844492163b14ddc9bb4e4d6526e17b468b5317b4a702ea7f6c64e
-archs=noarch
 
 post_extract() {
 	sed -i 's/\$new_number\^\$1/$new_number**$1/g' numprocess
diff --git a/srcpkgs/numix-themes/template b/srcpkgs/numix-themes/template
index f993b7949a4..78b431f7072 100644
--- a/srcpkgs/numix-themes/template
+++ b/srcpkgs/numix-themes/template
@@ -2,7 +2,6 @@ pkgname=numix-themes
 version=2.6.7
 revision=1
 wrksrc="numix-gtk-theme-${version}"
-archs=noarch
 build_style=gnu-makefile
 short_desc="A modern flat theme with a combination of light and dark elements"
 maintainer="Jakub Skrzypnik <jot.skrzyp@gmail.com>"
diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 4b265771793..fe9734dc24d 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -2,7 +2,6 @@
 pkgname=nyx
 version=2.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="nyx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/oblogout/template b/srcpkgs/oblogout/template
index 7d7b93a2fd1..70623e2c76a 100644
--- a/srcpkgs/oblogout/template
+++ b/srcpkgs/oblogout/template
@@ -2,7 +2,6 @@
 pkgname=oblogout
 version=0.2
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 build_style=python2-module
 conf_files="/etc/oblogout.conf"
diff --git a/srcpkgs/obmenu-generator/template b/srcpkgs/obmenu-generator/template
index 370c37bec39..35236b5433b 100644
--- a/srcpkgs/obmenu-generator/template
+++ b/srcpkgs/obmenu-generator/template
@@ -2,7 +2,6 @@
 pkgname=obmenu-generator
 version=0.88
 revision=1
-archs=noarch
 depends="perl perl-Linux-DesktopFiles perl-Data-Dump perl-Gtk2"
 short_desc="Perl Script to generate Openbox menu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/obmenu/template b/srcpkgs/obmenu/template
index 0e72c282bef..7191ad31d54 100644
--- a/srcpkgs/obmenu/template
+++ b/srcpkgs/obmenu/template
@@ -2,7 +2,6 @@
 pkgname=obmenu
 version=1.0
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="obxml.py"
 hostmakedepends="python"
diff --git a/srcpkgs/offlineimap/template b/srcpkgs/offlineimap/template
index c66f7f4581e..95be25f9aeb 100644
--- a/srcpkgs/offlineimap/template
+++ b/srcpkgs/offlineimap/template
@@ -2,7 +2,6 @@
 pkgname=offlineimap
 version=7.3.3
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-six python-rfc6555 asciidoc"
 depends="python-six python-rfc6555"
diff --git a/srcpkgs/ohsnap-font/template b/srcpkgs/ohsnap-font/template
index 2ce38c54ac7..f582d716f0a 100644
--- a/srcpkgs/ohsnap-font/template
+++ b/srcpkgs/ohsnap-font/template
@@ -2,7 +2,6 @@
 pkgname=ohsnap-font
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="ohsnap-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/ok.sh/template b/srcpkgs/ok.sh/template
index ac00f710837..400767cc52b 100644
--- a/srcpkgs/ok.sh/template
+++ b/srcpkgs/ok.sh/template
@@ -2,7 +2,6 @@
 pkgname=ok.sh
 version=0.6.1
 revision=1
-archs=noarch
 depends="curl jq"
 checkdepends="socat ${depends}"
 short_desc="GitHub API client library written in POSIX sh"
diff --git a/srcpkgs/oniguruma/template b/srcpkgs/oniguruma/template
index c017fe458d5..c84b5b51f61 100644
--- a/srcpkgs/oniguruma/template
+++ b/srcpkgs/oniguruma/template
@@ -28,7 +28,6 @@ oniguruma-devel_package() {
 }
 
 oniguruma-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index b8df8ae79c7..5fd796c2ebd 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -2,7 +2,6 @@
 pkgname=onionshare
 version=2.2
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_dirs="/usr/share/nautilus-python/extensions"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/opencl-clhpp/template b/srcpkgs/opencl-clhpp/template
index a2d140b5f9b..7ac36210b97 100644
--- a/srcpkgs/opencl-clhpp/template
+++ b/srcpkgs/opencl-clhpp/template
@@ -3,7 +3,6 @@ pkgname=opencl-clhpp
 version=2.0.10
 revision=1
 wrksrc="OpenCL-CLHPP-${version}"
-archs=noarch
 hostmakedepends="python"
 short_desc="OpenCL Host API C++ bindings (cl.hpp and cl2.hpp)"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/opencl2-headers/template b/srcpkgs/opencl2-headers/template
index 4a1ef594025..20b005fccbe 100644
--- a/srcpkgs/opencl2-headers/template
+++ b/srcpkgs/opencl2-headers/template
@@ -2,7 +2,6 @@
 pkgname=opencl2-headers
 version=2020.06.16
 revision=1
-archs=noarch
 wrksrc="OpenCL-Headers-${version}"
 short_desc="OpenCL 2.2 (Open Computing Language) header files"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/openjdk8/template b/srcpkgs/openjdk8/template
index 9f9c5998fdc..a95d647e9f7 100644
--- a/srcpkgs/openjdk8/template
+++ b/srcpkgs/openjdk8/template
@@ -286,28 +286,24 @@ openjdk8-doc_package() {
 }
 
 openjdk_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 openjdk-jre_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-jre>=${version}_${revision}"
 	short_desc+=" - runtime components (transitional dummy package)"
 }
 
 openjdk-src_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-src>=${version}_${revision}"
 	short_desc+=" - source code (transitional dummy package)"
 }
 
 openjdk-doc_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-doc>=${version}_${revision}"
 	short_desc+=" - documentation (transitional dummy package)"
diff --git a/srcpkgs/openlierox/template b/srcpkgs/openlierox/template
index 33784034232..52e90f4e834 100644
--- a/srcpkgs/openlierox/template
+++ b/srcpkgs/openlierox/template
@@ -42,7 +42,6 @@ do_install() {
 
 openlierox-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/OpenLieroX
 	}
diff --git a/srcpkgs/openra/template b/srcpkgs/openra/template
index f191405c111..afdde5c1125 100644
--- a/srcpkgs/openra/template
+++ b/srcpkgs/openra/template
@@ -2,7 +2,6 @@
 pkgname=openra
 version=20200503
 revision=1
-archs=noarch
 wrksrc="OpenRA-release-${version}"
 build_style="gnu-makefile"
 make_install_target="install install-linux-shortcuts install-linux-mime
diff --git a/srcpkgs/openresolv/template b/srcpkgs/openresolv/template
index c542e9b5310..2eb521564c6 100644
--- a/srcpkgs/openresolv/template
+++ b/srcpkgs/openresolv/template
@@ -2,7 +2,6 @@
 pkgname=openresolv
 version=3.10.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Management framework for resolv.conf"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/opensonic/template b/srcpkgs/opensonic/template
index c32bb11cb93..21487454e74 100644
--- a/srcpkgs/opensonic/template
+++ b/srcpkgs/opensonic/template
@@ -38,7 +38,6 @@ post_install() {
 
 opensonic-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/opensonic/config
 		vmove usr/share/opensonic/images
diff --git a/srcpkgs/opensurge/template b/srcpkgs/opensurge/template
index 187cace09e6..a80afb13578 100644
--- a/srcpkgs/opensurge/template
+++ b/srcpkgs/opensurge/template
@@ -15,7 +15,6 @@ checksum=d060e3215231741ce0b4e5b897af52f8755c57660c8a33856bf921c83af18ba2
 
 opensurge-data_package() {
 	short_desc+=" - game data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/opentmpfiles/template b/srcpkgs/opentmpfiles/template
index 66e3bd34f2f..cec60fef210 100644
--- a/srcpkgs/opentmpfiles/template
+++ b/srcpkgs/opentmpfiles/template
@@ -2,7 +2,6 @@
 pkgname=opentmpfiles
 version=0.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="A standalone utility for handling systemd-style tmpfiles.d settings"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/openttd/template b/srcpkgs/openttd/template
index 47df4a01b56..17c3c6577dd 100644
--- a/srcpkgs/openttd/template
+++ b/srcpkgs/openttd/template
@@ -45,7 +45,6 @@ do_configure() {
 
 openttd-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openttd
 		vmkdir usr/share/openttd/data
diff --git a/srcpkgs/opentyrian/template b/srcpkgs/opentyrian/template
index 92a1ef220b5..0ec941fd3f5 100644
--- a/srcpkgs/opentyrian/template
+++ b/srcpkgs/opentyrian/template
@@ -37,7 +37,6 @@ EOT
 
 opentyrian-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/${sourcepkg}/data
 		vcopy "${XBPS_BUILDDIR}/tyrian${_dataver}/*" usr/share/${sourcepkg}/data
diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index f70202e6d76..18de381eaed 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -2,7 +2,6 @@
 pkgname=orca
 version=3.36.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="at-spi2-atk-devel liblouis-devel python3-gobject-devel"
diff --git a/srcpkgs/orjail/template b/srcpkgs/orjail/template
index 37ae9bbf042..67608de589d 100644
--- a/srcpkgs/orjail/template
+++ b/srcpkgs/orjail/template
@@ -2,7 +2,6 @@
 pkgname=orjail
 version=1.1
 revision=1
-archs=noarch
 hostmakedepends="ruby-ronn"
 depends="bash bc-gh coreutils grep iproute2 ncurses tor util-linux"
 short_desc="Force a program to exclusively use the Tor network"
diff --git a/srcpkgs/osinfo-db/template b/srcpkgs/osinfo-db/template
index 836b38995cc..64813ebfaec 100644
--- a/srcpkgs/osinfo-db/template
+++ b/srcpkgs/osinfo-db/template
@@ -2,7 +2,6 @@
 pkgname=osinfo-db
 version=20200529
 revision=1
-archs=noarch
 build_style=fetch
 hostmakedepends="osinfo-db-tools"
 short_desc="Osinfo database about operating systems"
diff --git a/srcpkgs/othman/template b/srcpkgs/othman/template
index 7c75a6b04f2..5bbcaed9424 100644
--- a/srcpkgs/othman/template
+++ b/srcpkgs/othman/template
@@ -2,7 +2,6 @@
 pkgname=othman
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="othman"
 hostmakedepends="python3 ImageMagick sqlite intltool"
diff --git a/srcpkgs/overpass-otf/template b/srcpkgs/overpass-otf/template
index 3f349b80966..b5d2d7cb8e4 100644
--- a/srcpkgs/overpass-otf/template
+++ b/srcpkgs/overpass-otf/template
@@ -2,7 +2,6 @@
 pkgname=overpass-otf
 version=3.0.4
 revision=1
-archs=noarch
 wrksrc="Overpass-${version}"
 depends="font-util xbps-triggers"
 short_desc="Open source font family inspired by Highway Gothic"
diff --git a/srcpkgs/oxygen-icons5/template b/srcpkgs/oxygen-icons5/template
index 583e7880eb6..9a93f760e19 100644
--- a/srcpkgs/oxygen-icons5/template
+++ b/srcpkgs/oxygen-icons5/template
@@ -2,7 +2,6 @@
 pkgname=oxygen-icons5
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="kcoreaddons extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/pam-base/template b/srcpkgs/pam-base/template
index 216cea3679f..dc0de192b4a 100644
--- a/srcpkgs/pam-base/template
+++ b/srcpkgs/pam-base/template
@@ -2,7 +2,6 @@
 pkgname=pam-base
 version=0.3
 revision=5
-archs=noarch
 short_desc="PAM base configuration files"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="public domain"
diff --git a/srcpkgs/pantalaimon/template b/srcpkgs/pantalaimon/template
index 31a1763ab24..4c9523bbc02 100644
--- a/srcpkgs/pantalaimon/template
+++ b/srcpkgs/pantalaimon/template
@@ -2,7 +2,6 @@
 pkgname=pantalaimon
 version=0.6.5
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-attrs python3-aiohttp python3-appdirs python3-click
diff --git a/srcpkgs/paper-gtk-theme/template b/srcpkgs/paper-gtk-theme/template
index a00a0ce1a4c..39d19abbf34 100644
--- a/srcpkgs/paper-gtk-theme/template
+++ b/srcpkgs/paper-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=paper-gtk-theme
 version=2.1.0
 revision=1
-archs=noarch
 short_desc="A modern Linux desktop theme suite"
 build_style=gnu-configure
 maintainer="Satoshi Amemiya <amemiya@protonmail.com>"
diff --git a/srcpkgs/paper-icon-theme/template b/srcpkgs/paper-icon-theme/template
index dabaa3d7ec0..c57bb2af7fc 100644
--- a/srcpkgs/paper-icon-theme/template
+++ b/srcpkgs/paper-icon-theme/template
@@ -3,7 +3,6 @@ pkgname=paper-icon-theme
 version=1.5.0
 revision=1
 wrksrc="${pkgname}-v.${version}"
-archs=noarch
 build_style=meson
 short_desc="A modern freedesktop icon theme"
 maintainer="travankor <travankor@tuta.io>"
diff --git a/srcpkgs/papirus-folders/template b/srcpkgs/papirus-folders/template
index 9dd36bdee91..cdcefee2ff2 100644
--- a/srcpkgs/papirus-folders/template
+++ b/srcpkgs/papirus-folders/template
@@ -2,7 +2,6 @@
 pkgname=papirus-folders
 version=1.7.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="papirus-icon-theme"
 short_desc="Allows to change the color of folder"
diff --git a/srcpkgs/papirus-icon-theme/template b/srcpkgs/papirus-icon-theme/template
index 39e5fef6086..929b9486b64 100644
--- a/srcpkgs/papirus-icon-theme/template
+++ b/srcpkgs/papirus-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=papirus-icon-theme
 version=20200801
 revision=1
-archs=noarch
 short_desc="SVG icon theme for Linux, based on Paper Icon Set"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/parallel/template b/srcpkgs/parallel/template
index dab4f184aad..b2201c0f73a 100644
--- a/srcpkgs/parallel/template
+++ b/srcpkgs/parallel/template
@@ -2,7 +2,6 @@
 pkgname=parallel
 version=20200722
 revision=1
-archs="noarch"
 build_style=gnu-configure
 depends="perl"
 checkdepends="perl"
diff --git a/srcpkgs/pass-git-helper/template b/srcpkgs/pass-git-helper/template
index 6d7f25bd8a7..5707c2d6a2d 100644
--- a/srcpkgs/pass-git-helper/template
+++ b/srcpkgs/pass-git-helper/template
@@ -2,7 +2,6 @@
 pkgname=pass-git-helper
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="pass python3-xdg"
diff --git a/srcpkgs/pass-import/template b/srcpkgs/pass-import/template
index ac7590bea99..3ac75af3910 100644
--- a/srcpkgs/pass-import/template
+++ b/srcpkgs/pass-import/template
@@ -2,7 +2,6 @@
 pkgname=pass-import
 version=3.0
 revision=3
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3-setuptools python3-yaml"
 depends="pass>=1.7.0 python3-defusedxml python3-magic
diff --git a/srcpkgs/pass-otp/template b/srcpkgs/pass-otp/template
index a9e3de053ae..9aaf5418b7a 100644
--- a/srcpkgs/pass-otp/template
+++ b/srcpkgs/pass-otp/template
@@ -2,7 +2,6 @@
 pkgname=pass-otp
 version=1.2.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="pass oath-toolkit qrencode"
 short_desc="A pass extension for managing one-time-password (OTP) tokens"
diff --git a/srcpkgs/pass-update/template b/srcpkgs/pass-update/template
index 0265a3aeafd..321a9fb4216 100644
--- a/srcpkgs/pass-update/template
+++ b/srcpkgs/pass-update/template
@@ -2,7 +2,6 @@
 pkgname=pass-update
 version=2.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args=BASHCOMPDIR=/usr/share/bash-completion/completions
 depends="pass"
diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template
index 229bb79c70d..1ca941ac4a5 100644
--- a/srcpkgs/pass/template
+++ b/srcpkgs/pass/template
@@ -2,7 +2,6 @@
 pkgname=pass
 version=1.7.3
 revision=3
-archs=noarch
 wrksrc="password-store-${version}"
 build_style=gnu-makefile
 make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
diff --git a/srcpkgs/pastebinit/template b/srcpkgs/pastebinit/template
index 1fcff9d6e4c..a7a692126a8 100644
--- a/srcpkgs/pastebinit/template
+++ b/srcpkgs/pastebinit/template
@@ -2,7 +2,6 @@
 pkgname=pastebinit
 version=1.5
 revision=3
-archs=noarch
 hostmakedepends="asciidoc gettext"
 depends="python3"
 short_desc="Pastebin command-line client"
diff --git a/srcpkgs/pcb/template b/srcpkgs/pcb/template
index 882fffad2c7..ad749498d5c 100644
--- a/srcpkgs/pcb/template
+++ b/srcpkgs/pcb/template
@@ -18,7 +18,6 @@ distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=1ceeaf1bdbe0508b9b140ca421eb600836579114c04dee939341c5d594f36e5d
 
 pcb-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/pcb
diff --git a/srcpkgs/pdd/template b/srcpkgs/pdd/template
index 70deb5a1ae3..6cb6ae2867a 100644
--- a/srcpkgs/pdd/template
+++ b/srcpkgs/pdd/template
@@ -2,7 +2,6 @@
 pkgname=pdd
 version=1.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-dateutil"
 checkdepends="python3-dateutil python3-pytest"
diff --git a/srcpkgs/pdf.js/template b/srcpkgs/pdf.js/template
index fbd2704e5f5..71f2403818f 100644
--- a/srcpkgs/pdf.js/template
+++ b/srcpkgs/pdf.js/template
@@ -2,7 +2,6 @@
 pkgname=pdf.js
 version=2.5.207
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Portable Document Format (PDF) viewer built with HTML5"
 maintainer="Daniel Santana <daniel@santana.tech>"
diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index 5ecede6cf56..bccb91ce3da 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -2,7 +2,6 @@
 pkgname=peframe
 version=6.0.3
 revision=2
-archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pelican/template b/srcpkgs/pelican/template
index c505227c554..9b390fa7726 100644
--- a/srcpkgs/pelican/template
+++ b/srcpkgs/pelican/template
@@ -2,7 +2,6 @@
 pkgname=pelican
 version=4.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pelican"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/percona-toolkit/template b/srcpkgs/percona-toolkit/template
index 612be5996a6..42cc7d91487 100644
--- a/srcpkgs/percona-toolkit/template
+++ b/srcpkgs/percona-toolkit/template
@@ -2,7 +2,6 @@
 pkgname=percona-toolkit
 version=3.0.13
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-DBD-mysql"
 depends="perl-DBD-mysql perl-Term-ReadKey"
diff --git a/srcpkgs/perl-ACL-Lite/template b/srcpkgs/perl-ACL-Lite/template
index f3ce855be07..3b2240d8650 100644
--- a/srcpkgs/perl-ACL-Lite/template
+++ b/srcpkgs/perl-ACL-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-ACL-Lite
 version=0.0004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AWS-Signature4/template b/srcpkgs/perl-AWS-Signature4/template
index 33844d45194..de5fac2cdb1 100644
--- a/srcpkgs/perl-AWS-Signature4/template
+++ b/srcpkgs/perl-AWS-Signature4/template
@@ -2,7 +2,6 @@
 pkgname=perl-AWS-Signature4
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Algorithm-Diff/template b/srcpkgs/perl-Algorithm-Diff/template
index 9bff5156ed2..08feaa2eb59 100644
--- a/srcpkgs/perl-Algorithm-Diff/template
+++ b/srcpkgs/perl-Algorithm-Diff/template
@@ -2,7 +2,6 @@
 pkgname=perl-Algorithm-Diff
 version=1.1903
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Alien-Build/template b/srcpkgs/perl-Alien-Build/template
index edc1f516035..4de28b0505c 100644
--- a/srcpkgs/perl-Alien-Build/template
+++ b/srcpkgs/perl-Alien-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-Build
 version=2.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-PkgConfig perl-File-Which"
diff --git a/srcpkgs/perl-Alien-wxWidgets/template b/srcpkgs/perl-Alien-wxWidgets/template
index 3c0a7eae5e8..fef3d2e27c0 100644
--- a/srcpkgs/perl-Alien-wxWidgets/template
+++ b/srcpkgs/perl-Alien-wxWidgets/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-wxWidgets
 version=0.69
 revision=1
-archs=noarch
 wrksrc="Alien-wxWidgets-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Module-Pluggable perl-LWP-Protocol-https"
diff --git a/srcpkgs/perl-Alien/template b/srcpkgs/perl-Alien/template
index 9149deae190..ffb54bc1566 100644
--- a/srcpkgs/perl-Alien/template
+++ b/srcpkgs/perl-Alien/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien
 version=0.95
 revision=1
-archs=noarch
 wrksrc="Alien-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AnyEvent-I3/template b/srcpkgs/perl-AnyEvent-I3/template
index 306cf53f404..bc087f6a578 100644
--- a/srcpkgs/perl-AnyEvent-I3/template
+++ b/srcpkgs/perl-AnyEvent-I3/template
@@ -3,7 +3,6 @@ pkgname=perl-AnyEvent-I3
 version=0.17
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-JSON-XS perl-AnyEvent"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/perl-AnyEvent/template b/srcpkgs/perl-AnyEvent/template
index 1d938d338c4..415f3eadeff 100644
--- a/srcpkgs/perl-AnyEvent/template
+++ b/srcpkgs/perl-AnyEvent/template
@@ -2,7 +2,6 @@
 pkgname=perl-AnyEvent
 version=7.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Apache-LogFormat-Compiler/template b/srcpkgs/perl-Apache-LogFormat-Compiler/template
index 36136de1a91..6b9aaacd152 100644
--- a/srcpkgs/perl-Apache-LogFormat-Compiler/template
+++ b/srcpkgs/perl-Apache-LogFormat-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Apache-LogFormat-Compiler
 version=0.36
 revision=1
-archs=noarch
 wrksrc="Apache-LogFormat-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-AppConfig/template b/srcpkgs/perl-AppConfig/template
index 02893ec6303..15b76b83b73 100644
--- a/srcpkgs/perl-AppConfig/template
+++ b/srcpkgs/perl-AppConfig/template
@@ -2,7 +2,6 @@
 pkgname=perl-AppConfig
 version=1.71
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Extract/template b/srcpkgs/perl-Archive-Extract/template
index ab0af642e64..89eb8ea79b0 100644
--- a/srcpkgs/perl-Archive-Extract/template
+++ b/srcpkgs/perl-Archive-Extract/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Extract
 version=0.86
 revision=1
-archs=noarch
 wrksrc="Archive-Extract-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Zip/template b/srcpkgs/perl-Archive-Zip/template
index e06ed44535c..ebc31653704 100644
--- a/srcpkgs/perl-Archive-Zip/template
+++ b/srcpkgs/perl-Archive-Zip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Zip
 version=1.68
 revision=1
-archs=noarch
 wrksrc="Archive-Zip-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Authen-SASL/template b/srcpkgs/perl-Authen-SASL/template
index 9b31f20e858..55329c9e917 100644
--- a/srcpkgs/perl-Authen-SASL/template
+++ b/srcpkgs/perl-Authen-SASL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Authen-SASL
 version=2.16
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-B-Hooks-EndOfScope/template b/srcpkgs/perl-B-Hooks-EndOfScope/template
index 8d2ec1ee190..6ece75610ba 100644
--- a/srcpkgs/perl-B-Hooks-EndOfScope/template
+++ b/srcpkgs/perl-B-Hooks-EndOfScope/template
@@ -14,4 +14,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/B-Hooks-EndOfScope"
 distfiles="${CPAN_SITE}/B/${pkgname/perl-/}-${version}.tar.gz"
 checksum=03aa3dfe5d0aa6471a96f43fe8318179d19794d4a640708f0288f9216ec7acc6
-archs=noarch
diff --git a/srcpkgs/perl-Business-ISBN-Data/template b/srcpkgs/perl-Business-ISBN-Data/template
index 1e0864d9058..674100474ca 100644
--- a/srcpkgs/perl-Business-ISBN-Data/template
+++ b/srcpkgs/perl-Business-ISBN-Data/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN-Data
 version=20191107
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISBN/template b/srcpkgs/perl-Business-ISBN/template
index 9a3d872045f..79451fa92db 100644
--- a/srcpkgs/perl-Business-ISBN/template
+++ b/srcpkgs/perl-Business-ISBN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN
 version=3.005
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISMN/template b/srcpkgs/perl-Business-ISMN/template
index 82b5caa5a85..82f8b48d51d 100644
--- a/srcpkgs/perl-Business-ISMN/template
+++ b/srcpkgs/perl-Business-ISMN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISMN
 version=1.201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISSN/template b/srcpkgs/perl-Business-ISSN/template
index ba5031a7874..c7c1350016d 100644
--- a/srcpkgs/perl-Business-ISSN/template
+++ b/srcpkgs/perl-Business-ISSN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISSN
 version=1.004
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CGI/template b/srcpkgs/perl-CGI/template
index 8c04e0a3178..2e7e64657f6 100644
--- a/srcpkgs/perl-CGI/template
+++ b/srcpkgs/perl-CGI/template
@@ -2,7 +2,6 @@
 pkgname=perl-CGI
 version=4.50
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Changes/template b/srcpkgs/perl-CPAN-Changes/template
index 3c4291e8350..e43b9b1aedc 100644
--- a/srcpkgs/perl-CPAN-Changes/template
+++ b/srcpkgs/perl-CPAN-Changes/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Changes
 version=0.400002
 revision=2
-archs=noarch
 wrksrc="CPAN-Changes-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Common-Index/template b/srcpkgs/perl-CPAN-Common-Index/template
index e37b7258507..273a368bbcf 100644
--- a/srcpkgs/perl-CPAN-Common-Index/template
+++ b/srcpkgs/perl-CPAN-Common-Index/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Common-Index
 version=0.010
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-DistnameInfo/template b/srcpkgs/perl-CPAN-DistnameInfo/template
index 16703b14b42..a353e608d67 100644
--- a/srcpkgs/perl-CPAN-DistnameInfo/template
+++ b/srcpkgs/perl-CPAN-DistnameInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-DistnameInfo
 version=0.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Meta-Check/template b/srcpkgs/perl-CPAN-Meta-Check/template
index 1bce3bc0b3f..1ae99ce17b3 100644
--- a/srcpkgs/perl-CPAN-Meta-Check/template
+++ b/srcpkgs/perl-CPAN-Meta-Check/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Meta-Check
 version=0.014
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Canary-Stability/template b/srcpkgs/perl-Canary-Stability/template
index 75eb874d31e..2bfd0243908 100644
--- a/srcpkgs/perl-Canary-Stability/template
+++ b/srcpkgs/perl-Canary-Stability/template
@@ -2,7 +2,6 @@
 pkgname=perl-Canary-Stability
 version=2013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Capture-Tiny/template b/srcpkgs/perl-Capture-Tiny/template
index 16ed2ed387e..9ac147eed2b 100644
--- a/srcpkgs/perl-Capture-Tiny/template
+++ b/srcpkgs/perl-Capture-Tiny/template
@@ -13,4 +13,3 @@ license="Apache-2.0"
 homepage="https://metacpan.org/release/Capture-Tiny"
 distfiles="${CPAN_SITE}/Mail/DAGOLDEN/Capture-Tiny-${version}.tar.gz"
 checksum=6c23113e87bad393308c90a207013e505f659274736638d8c79bac9c67cc3e19
-archs=noarch
diff --git a/srcpkgs/perl-Carp-Clan/template b/srcpkgs/perl-Carp-Clan/template
index 59704ed94f5..f2d100f73ec 100644
--- a/srcpkgs/perl-Carp-Clan/template
+++ b/srcpkgs/perl-Carp-Clan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Carp-Clan
 version=6.08
 revision=1
-archs=noarch
 wrksrc="Carp-Clan-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Accessor/template b/srcpkgs/perl-Class-Accessor/template
index 7dede179620..bfe3ad483d7 100644
--- a/srcpkgs/perl-Class-Accessor/template
+++ b/srcpkgs/perl-Class-Accessor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Accessor
 version=0.51
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Data-Inheritable/template b/srcpkgs/perl-Class-Data-Inheritable/template
index a7cc019bdae..8c7a6b8e448 100644
--- a/srcpkgs/perl-Class-Data-Inheritable/template
+++ b/srcpkgs/perl-Class-Data-Inheritable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Data-Inheritable
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Factory-Util/template b/srcpkgs/perl-Class-Factory-Util/template
index 92597b7ddd4..784eabeaa30 100644
--- a/srcpkgs/perl-Class-Factory-Util/template
+++ b/srcpkgs/perl-Class-Factory-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Factory-Util
 version=1.7
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Class-Inspector/template b/srcpkgs/perl-Class-Inspector/template
index cf071445c1d..78abb98fd8c 100644
--- a/srcpkgs/perl-Class-Inspector/template
+++ b/srcpkgs/perl-Class-Inspector/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Inspector
 version=1.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Load/template b/srcpkgs/perl-Class-Load/template
index 03f6e1c1a9a..ee0fe237b76 100644
--- a/srcpkgs/perl-Class-Load/template
+++ b/srcpkgs/perl-Class-Load/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Load
 version=0.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Method-Modifiers/template b/srcpkgs/perl-Class-Method-Modifiers/template
index 533720aa724..a255a8047f0 100644
--- a/srcpkgs/perl-Class-Method-Modifiers/template
+++ b/srcpkgs/perl-Class-Method-Modifiers/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Method-Modifiers
 version=2.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Singleton/template b/srcpkgs/perl-Class-Singleton/template
index d3ae0a38c8b..b0339fdbcc3 100644
--- a/srcpkgs/perl-Class-Singleton/template
+++ b/srcpkgs/perl-Class-Singleton/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Singleton
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Tiny/template b/srcpkgs/perl-Class-Tiny/template
index 6aee90c1149..1eeba58dc3c 100644
--- a/srcpkgs/perl-Class-Tiny/template
+++ b/srcpkgs/perl-Class-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Tiny
 version=1.006
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Clipboard/template b/srcpkgs/perl-Clipboard/template
index 36ce5a991c4..3bee57ee587 100644
--- a/srcpkgs/perl-Clipboard/template
+++ b/srcpkgs/perl-Clipboard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clipboard
 version=0.26
 revision=1
-archs=noarch
 wrksrc="Clipboard-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Clone-Choose/template b/srcpkgs/perl-Clone-Choose/template
index d5264c751eb..cabbf1da02e 100644
--- a/srcpkgs/perl-Clone-Choose/template
+++ b/srcpkgs/perl-Clone-Choose/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-Choose
 version=0.010
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Test-Without-Module"
diff --git a/srcpkgs/perl-Clone-PP/template b/srcpkgs/perl-Clone-PP/template
index 81ea599562d..3898d320b82 100644
--- a/srcpkgs/perl-Clone-PP/template
+++ b/srcpkgs/perl-Clone-PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-PP
 version=1.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-AutoConf/template b/srcpkgs/perl-Config-AutoConf/template
index 254014993da..9774e110628 100644
--- a/srcpkgs/perl-Config-AutoConf/template
+++ b/srcpkgs/perl-Config-AutoConf/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-AutoConf
 version=0.318
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Config-General/template b/srcpkgs/perl-Config-General/template
index 3b3490b88b9..edb0b74dd47 100644
--- a/srcpkgs/perl-Config-General/template
+++ b/srcpkgs/perl-Config-General/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-General
 version=2.63
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-INI-Reader-Ordered/template b/srcpkgs/perl-Config-INI-Reader-Ordered/template
index e733962c6d0..924a10df4d6 100644
--- a/srcpkgs/perl-Config-INI-Reader-Ordered/template
+++ b/srcpkgs/perl-Config-INI-Reader-Ordered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI-Reader-Ordered
 version=0.020
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Config-INI"
diff --git a/srcpkgs/perl-Config-INI/template b/srcpkgs/perl-Config-INI/template
index 5d24f752f44..69bb56fed6f 100644
--- a/srcpkgs/perl-Config-INI/template
+++ b/srcpkgs/perl-Config-INI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI
 version=0.025
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Mixin-Linewise"
diff --git a/srcpkgs/perl-Config-IniFiles/template b/srcpkgs/perl-Config-IniFiles/template
index 30b71ca775e..0b5b7c67fee 100644
--- a/srcpkgs/perl-Config-IniFiles/template
+++ b/srcpkgs/perl-Config-IniFiles/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-IniFiles
 version=3.000003
 revision=1
-archs=noarch
 wrksrc="Config-IniFiles-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Simple/template b/srcpkgs/perl-Config-Simple/template
index dc86662227a..f89baab02a2 100644
--- a/srcpkgs/perl-Config-Simple/template
+++ b/srcpkgs/perl-Config-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Simple
 version=4.59
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Tiny/template b/srcpkgs/perl-Config-Tiny/template
index e96ba7aeab9..817b36e7fa8 100644
--- a/srcpkgs/perl-Config-Tiny/template
+++ b/srcpkgs/perl-Config-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Tiny
 version=2.24
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Convert-BinHex/template b/srcpkgs/perl-Convert-BinHex/template
index d8ead1e579d..a3d5cee38b8 100644
--- a/srcpkgs/perl-Convert-BinHex/template
+++ b/srcpkgs/perl-Convert-BinHex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Convert-BinHex
 version=1.125
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Cookie-Baker/template b/srcpkgs/perl-Cookie-Baker/template
index ecb7b80e30c..97380da327c 100644
--- a/srcpkgs/perl-Cookie-Baker/template
+++ b/srcpkgs/perl-Cookie-Baker/template
@@ -2,7 +2,6 @@
 pkgname=perl-Cookie-Baker
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Crypt-Blowfish_PP/template b/srcpkgs/perl-Crypt-Blowfish_PP/template
index e2e7680ae52..25e05ae03fb 100644
--- a/srcpkgs/perl-Crypt-Blowfish_PP/template
+++ b/srcpkgs/perl-Crypt-Blowfish_PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-Blowfish_PP
 version=1.12
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index f09b1dc8ba3..9ca4812c589 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-CBC
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DES_EDE3/template b/srcpkgs/perl-Crypt-DES_EDE3/template
index e4a7abc00f3..55c7d689554 100644
--- a/srcpkgs/perl-Crypt-DES_EDE3/template
+++ b/srcpkgs/perl-Crypt-DES_EDE3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DES_EDE3
 version=0.01
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DH/template b/srcpkgs/perl-Crypt-DH/template
index 07c4dc70d23..ccb82e6d101 100644
--- a/srcpkgs/perl-Crypt-DH/template
+++ b/srcpkgs/perl-Crypt-DH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DH
 version=0.07
 revision=9
-archs=noarch
 wrksrc="Crypt-DH-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Math-BigInt-GMP perl-Archive-Zip"
diff --git a/srcpkgs/perl-Crypt-OpenSSL-Guess/template b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
index 8c207e50fa0..4c9691ec99c 100644
--- a/srcpkgs/perl-Crypt-OpenSSL-Guess/template
+++ b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-OpenSSL-Guess
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-PasswdMD5/template b/srcpkgs/perl-Crypt-PasswdMD5/template
index a579748e61d..7d1fccac254 100644
--- a/srcpkgs/perl-Crypt-PasswdMD5/template
+++ b/srcpkgs/perl-Crypt-PasswdMD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-PasswdMD5
 version=1.40
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-RC4/template b/srcpkgs/perl-Crypt-RC4/template
index bb7bb8931ec..04bb549019d 100644
--- a/srcpkgs/perl-Crypt-RC4/template
+++ b/srcpkgs/perl-Crypt-RC4/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-RC4
 version=2.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Danga-Socket/template b/srcpkgs/perl-Danga-Socket/template
index 049159b68a7..6ebc84f42e8 100644
--- a/srcpkgs/perl-Danga-Socket/template
+++ b/srcpkgs/perl-Danga-Socket/template
@@ -2,7 +2,6 @@
 pkgname=perl-Danga-Socket
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Compare/template b/srcpkgs/perl-Data-Compare/template
index c5fb3661f94..b7b42a7c299 100644
--- a/srcpkgs/perl-Data-Compare/template
+++ b/srcpkgs/perl-Data-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Compare
 version=1.27
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-Find-Rule perl-Clone"
diff --git a/srcpkgs/perl-Data-Dump/template b/srcpkgs/perl-Data-Dump/template
index 6ec79b62440..2d1cfd4901a 100644
--- a/srcpkgs/perl-Data-Dump/template
+++ b/srcpkgs/perl-Data-Dump/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dump
 version=1.23
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Dx/template b/srcpkgs/perl-Data-Dx/template
index ea44d272f58..4ad2bec1cc2 100644
--- a/srcpkgs/perl-Data-Dx/template
+++ b/srcpkgs/perl-Data-Dx/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dx
 version=0.000010
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Data-Dump perl-Keyword-Declare"
diff --git a/srcpkgs/perl-Data-OptList/template b/srcpkgs/perl-Data-OptList/template
index 7ea35f387b1..15c14aaf4a8 100644
--- a/srcpkgs/perl-Data-OptList/template
+++ b/srcpkgs/perl-Data-OptList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-OptList
 version=0.110
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Section-Simple/template b/srcpkgs/perl-Data-Section-Simple/template
index 5148ad90e52..5ac37007280 100644
--- a/srcpkgs/perl-Data-Section-Simple/template
+++ b/srcpkgs/perl-Data-Section-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Section-Simple
 version=0.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Uniqid/template b/srcpkgs/perl-Data-Uniqid/template
index 4005118cf6b..fcfa5baecc9 100644
--- a/srcpkgs/perl-Data-Uniqid/template
+++ b/srcpkgs/perl-Data-Uniqid/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Uniqid
 version=0.12
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Validate-IP/template b/srcpkgs/perl-Data-Validate-IP/template
index 5e0fb95de5a..2029d98c4c2 100644
--- a/srcpkgs/perl-Data-Validate-IP/template
+++ b/srcpkgs/perl-Data-Validate-IP/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/Data-Validate-IP"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Data/Data-Validate-IP-${version}.tar.gz"
 checksum=e1aa92235dcb9c6fd9b6c8cda184d1af73537cc77f4f83a0f88207a8bfbfb7d6
-archs=noarch
diff --git a/srcpkgs/perl-Date-Calc/template b/srcpkgs/perl-Date-Calc/template
index 3708c34ce4a..9cf7b813852 100644
--- a/srcpkgs/perl-Date-Calc/template
+++ b/srcpkgs/perl-Date-Calc/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl perl-Carp-Clan perl-Bit-Vector"
 depends="${makedepends}"
-archs=noarch
 short_desc="Date::Calc - Gregorian calendar date calculations"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 homepage="https://metacpan.org/release/Date-Calc"
diff --git a/srcpkgs/perl-Date-Manip/template b/srcpkgs/perl-Date-Manip/template
index 1474cd7aa17..2e19d7bee53 100644
--- a/srcpkgs/perl-Date-Manip/template
+++ b/srcpkgs/perl-Date-Manip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Date-Manip
 version=6.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Calendar-Julian/template b/srcpkgs/perl-DateTime-Calendar-Julian/template
index caf881a51e4..160ee75faf6 100644
--- a/srcpkgs/perl-DateTime-Calendar-Julian/template
+++ b/srcpkgs/perl-DateTime-Calendar-Julian/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Calendar-Julian
 version=0.102
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime"
diff --git a/srcpkgs/perl-DateTime-Format-Builder/template b/srcpkgs/perl-DateTime-Format-Builder/template
index 5ebef529fed..20fadc3ae7b 100644
--- a/srcpkgs/perl-DateTime-Format-Builder/template
+++ b/srcpkgs/perl-DateTime-Format-Builder/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Builder
 version=0.82
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime perl-Class-Factory-Util perl-DateTime-Format-Strptime perl-Params-Validate"
diff --git a/srcpkgs/perl-DateTime-Format-Strptime/template b/srcpkgs/perl-DateTime-Format-Strptime/template
index 4d4dd839035..0aca7d6b237 100644
--- a/srcpkgs/perl-DateTime-Format-Strptime/template
+++ b/srcpkgs/perl-DateTime-Format-Strptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Strptime
 version=1.77
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Locale/template b/srcpkgs/perl-DateTime-Locale/template
index 1c24fdaecce..6b1208e781b 100644
--- a/srcpkgs/perl-DateTime-Locale/template
+++ b/srcpkgs/perl-DateTime-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Locale
 version=1.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-DateTime-TimeZone/template b/srcpkgs/perl-DateTime-TimeZone/template
index b9c9149fc87..a681fa5c7bd 100644
--- a/srcpkgs/perl-DateTime-TimeZone/template
+++ b/srcpkgs/perl-DateTime-TimeZone/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-TimeZone
 version=2.39
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-CheckLib/template b/srcpkgs/perl-Devel-CheckLib/template
index be4e79419aa..fe9bd2398bc 100644
--- a/srcpkgs/perl-Devel-CheckLib/template
+++ b/srcpkgs/perl-Devel-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-CheckLib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="Devel-CheckLib-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-CaptureOutput"
diff --git a/srcpkgs/perl-Devel-GlobalDestruction/template b/srcpkgs/perl-Devel-GlobalDestruction/template
index 538d06d9e9f..5d971b90606 100644
--- a/srcpkgs/perl-Devel-GlobalDestruction/template
+++ b/srcpkgs/perl-Devel-GlobalDestruction/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-GlobalDestruction
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Sub-Exporter-Progressive"
diff --git a/srcpkgs/perl-Devel-StackTrace-AsHTML/template b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
index 446496001c7..42a8a6102de 100644
--- a/srcpkgs/perl-Devel-StackTrace-AsHTML/template
+++ b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Apache-LogFormat-Compiler"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Devel/Devel-StackTrace-AsHTML-${version}.tar.gz"
 checksum=6283dbe2197e2f20009cc4b449997742169cdd951bfc44cbc6e62c2a962d3147
-archs=noarch
diff --git a/srcpkgs/perl-Devel-StackTrace/template b/srcpkgs/perl-Devel-StackTrace/template
index 45972e75631..318568b9c3f 100644
--- a/srcpkgs/perl-Devel-StackTrace/template
+++ b/srcpkgs/perl-Devel-StackTrace/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-StackTrace
 version=2.04
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-Symdump/template b/srcpkgs/perl-Devel-Symdump/template
index d4823034b1f..d63c6e5a9d2 100644
--- a/srcpkgs/perl-Devel-Symdump/template
+++ b/srcpkgs/perl-Devel-Symdump/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Devel-Symdump"
 license="GPL-1, Artistic"
 distfiles="$CPAN_SITE/Devel/Devel-Symdump-${version}.tar.gz"
 checksum=826f81a107f5592a2516766ed43beb47e10cc83edc9ea48090b02a36040776c0
-archs=noarch
diff --git a/srcpkgs/perl-Digest-HMAC/template b/srcpkgs/perl-Digest-HMAC/template
index 5ece091d408..e47d13022ed 100644
--- a/srcpkgs/perl-Digest-HMAC/template
+++ b/srcpkgs/perl-Digest-HMAC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-HMAC
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Digest-Perl-MD5/template b/srcpkgs/perl-Digest-Perl-MD5/template
index 4ea78427ea5..0785fb4d25a 100644
--- a/srcpkgs/perl-Digest-Perl-MD5/template
+++ b/srcpkgs/perl-Digest-Perl-MD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-Perl-MD5
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Dist-CheckConflicts/template b/srcpkgs/perl-Dist-CheckConflicts/template
index 8c1f653ca03..0ae6651298f 100644
--- a/srcpkgs/perl-Dist-CheckConflicts/template
+++ b/srcpkgs/perl-Dist-CheckConflicts/template
@@ -2,7 +2,6 @@
 pkgname=perl-Dist-CheckConflicts
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Date-Format/template b/srcpkgs/perl-Email-Date-Format/template
index 57781d72c02..aa4db10ad48 100644
--- a/srcpkgs/perl-Email-Date-Format/template
+++ b/srcpkgs/perl-Email-Date-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Date-Format
 version=1.005
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-FolderType/template b/srcpkgs/perl-Email-FolderType/template
index a538f294158..3a57b288169 100644
--- a/srcpkgs/perl-Email-FolderType/template
+++ b/srcpkgs/perl-Email-FolderType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-FolderType
 version=0.814
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-LocalDelivery/template b/srcpkgs/perl-Email-LocalDelivery/template
index 3b2ed70646a..19d61c3f06f 100644
--- a/srcpkgs/perl-Email-LocalDelivery/template
+++ b/srcpkgs/perl-Email-LocalDelivery/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-LocalDelivery
 version=1.200
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-ContentType/template b/srcpkgs/perl-Email-MIME-ContentType/template
index 3131fafdbb4..17108543bde 100644
--- a/srcpkgs/perl-Email-MIME-ContentType/template
+++ b/srcpkgs/perl-Email-MIME-ContentType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-ContentType
 version=1.024
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-Encodings/template b/srcpkgs/perl-Email-MIME-Encodings/template
index ba28cb0ac78..1141dcb43e3 100644
--- a/srcpkgs/perl-Email-MIME-Encodings/template
+++ b/srcpkgs/perl-Email-MIME-Encodings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-Encodings
 version=1.315
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME/template b/srcpkgs/perl-Email-MIME/template
index 55a6b438578..32573aa6f9b 100644
--- a/srcpkgs/perl-Email-MIME/template
+++ b/srcpkgs/perl-Email-MIME/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME
 version=1.949
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MessageID/template b/srcpkgs/perl-Email-MessageID/template
index 5b52585b5f9..729503da15e 100644
--- a/srcpkgs/perl-Email-MessageID/template
+++ b/srcpkgs/perl-Email-MessageID/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MessageID
 version=1.406
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Simple/template b/srcpkgs/perl-Email-Simple/template
index 57ccc513dbe..f27eec6ebad 100644
--- a/srcpkgs/perl-Email-Simple/template
+++ b/srcpkgs/perl-Email-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Simple
 version=2.216
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Encode-Locale/template b/srcpkgs/perl-Encode-Locale/template
index 53e09d8a2e7..20371b4daf7 100644
--- a/srcpkgs/perl-Encode-Locale/template
+++ b/srcpkgs/perl-Encode-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-Encode-Locale
 version=1.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Eval-Closure/template b/srcpkgs/perl-Eval-Closure/template
index c3301afd97f..0a3a9ba40e0 100644
--- a/srcpkgs/perl-Eval-Closure/template
+++ b/srcpkgs/perl-Eval-Closure/template
@@ -2,7 +2,6 @@
 pkgname=perl-Eval-Closure
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exception-Class/template b/srcpkgs/perl-Exception-Class/template
index 3d0f37bf503..91280322f46 100644
--- a/srcpkgs/perl-Exception-Class/template
+++ b/srcpkgs/perl-Exception-Class/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl-Class-Data-Inheritable perl-Devel-StackTrace"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Allows you to declare real exception classes'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Exception-Class"
diff --git a/srcpkgs/perl-Expect/template b/srcpkgs/perl-Expect/template
index 6ec5f668697..8832c5148ef 100644
--- a/srcpkgs/perl-Expect/template
+++ b/srcpkgs/perl-Expect/template
@@ -2,7 +2,6 @@
 pkgname=perl-Expect
 version=1.35
 revision=1
-archs=noarch
 wrksrc="Expect-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exporter-Tiny/template b/srcpkgs/perl-Exporter-Tiny/template
index c1d2a7c3f9b..091e19bf774 100644
--- a/srcpkgs/perl-Exporter-Tiny/template
+++ b/srcpkgs/perl-Exporter-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Exporter-Tiny
 version=1.002002
 revision=1
-archs=noarch
 wrksrc="Exporter-Tiny-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Config/template b/srcpkgs/perl-ExtUtils-Config/template
index 5951b92a159..6fcc7265c85 100644
--- a/srcpkgs/perl-ExtUtils-Config/template
+++ b/srcpkgs/perl-ExtUtils-Config/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Config
 version=0.008
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-CppGuess/template b/srcpkgs/perl-ExtUtils-CppGuess/template
index df071fc6b85..b1cdbf48c6e 100644
--- a/srcpkgs/perl-ExtUtils-CppGuess/template
+++ b/srcpkgs/perl-ExtUtils-CppGuess/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-CppGuess
 version=0.21
 revision=1
-archs=noarch
 wrksrc="ExtUtils-CppGuess-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Capture-Tiny perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-Depends/template b/srcpkgs/perl-ExtUtils-Depends/template
index 80ac7515fa1..6b6c52e1d5a 100644
--- a/srcpkgs/perl-ExtUtils-Depends/template
+++ b/srcpkgs/perl-ExtUtils-Depends/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Depends
 version=0.8000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Helpers/template b/srcpkgs/perl-ExtUtils-Helpers/template
index 5b95d1cdeed..7c44bcad431 100644
--- a/srcpkgs/perl-ExtUtils-Helpers/template
+++ b/srcpkgs/perl-ExtUtils-Helpers/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Helpers
 version=0.026
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-InstallPaths/template b/srcpkgs/perl-ExtUtils-InstallPaths/template
index 168a4104de6..f9408e37b16 100644
--- a/srcpkgs/perl-ExtUtils-InstallPaths/template
+++ b/srcpkgs/perl-ExtUtils-InstallPaths/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-InstallPaths
 version=0.012
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-LibBuilder/template b/srcpkgs/perl-ExtUtils-LibBuilder/template
index c2c582b0aa2..b3a7082d078 100644
--- a/srcpkgs/perl-ExtUtils-LibBuilder/template
+++ b/srcpkgs/perl-ExtUtils-LibBuilder/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-LibBuilder
 version=0.08
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
index 5a42f6710d4..eb51966421e 100644
--- a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
+++ b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-MakeMaker-CPANfile
 version=0.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-PkgConfig/template b/srcpkgs/perl-ExtUtils-PkgConfig/template
index 72e96b548e5..7b1910322d9 100644
--- a/srcpkgs/perl-ExtUtils-PkgConfig/template
+++ b/srcpkgs/perl-ExtUtils-PkgConfig/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl pkg-config"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="Simplistic perl interface to pkg-config"
 homepage="https://metacpan.org/release/ExtUtils-PkgConfig"
 license="LGPL-2.1"
diff --git a/srcpkgs/perl-ExtUtils-XSpp/template b/srcpkgs/perl-ExtUtils-XSpp/template
index 708071a8279..29bf5791813 100644
--- a/srcpkgs/perl-ExtUtils-XSpp/template
+++ b/srcpkgs/perl-ExtUtils-XSpp/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-XSpp
 version=0.18
 revision=1
-archs=noarch
 wrksrc="ExtUtils-XSpp-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Base perl-Test-Differences"
diff --git a/srcpkgs/perl-FFI-CheckLib/template b/srcpkgs/perl-FFI-CheckLib/template
index 3b740cdacf3..cb88b1082d7 100644
--- a/srcpkgs/perl-FFI-CheckLib/template
+++ b/srcpkgs/perl-FFI-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-FFI-CheckLib
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-BaseDir/template b/srcpkgs/perl-File-BaseDir/template
index ada966fc66f..90b32ebe6e5 100644
--- a/srcpkgs/perl-File-BaseDir/template
+++ b/srcpkgs/perl-File-BaseDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-BaseDir
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Copy-Recursive/template b/srcpkgs/perl-File-Copy-Recursive/template
index 02d38a02582..a62a14f1614 100644
--- a/srcpkgs/perl-File-Copy-Recursive/template
+++ b/srcpkgs/perl-File-Copy-Recursive/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Copy-Recursive
 version=0.45
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-DesktopEntry/template b/srcpkgs/perl-File-DesktopEntry/template
index 5ce93ef5ff1..3b0baa47c3f 100644
--- a/srcpkgs/perl-File-DesktopEntry/template
+++ b/srcpkgs/perl-File-DesktopEntry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-DesktopEntry
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Find-Rule/template b/srcpkgs/perl-File-Find-Rule/template
index aecdb1ab8d5..82f01d58436 100644
--- a/srcpkgs/perl-File-Find-Rule/template
+++ b/srcpkgs/perl-File-Find-Rule/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Find-Rule
 version=0.34
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Glob perl-Number-Compare"
diff --git a/srcpkgs/perl-File-Flock-Retry/template b/srcpkgs/perl-File-Flock-Retry/template
index 0d7d912386a..c89b100a27f 100644
--- a/srcpkgs/perl-File-Flock-Retry/template
+++ b/srcpkgs/perl-File-Flock-Retry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Flock-Retry
 version=0.631
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-HomeDir/template b/srcpkgs/perl-File-HomeDir/template
index d318404f3cb..bb719e466f9 100644
--- a/srcpkgs/perl-File-HomeDir/template
+++ b/srcpkgs/perl-File-HomeDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-HomeDir
 version=1.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Which"
diff --git a/srcpkgs/perl-File-KeePass/template b/srcpkgs/perl-File-KeePass/template
index 35ac51656ea..2d8b536cfdd 100644
--- a/srcpkgs/perl-File-KeePass/template
+++ b/srcpkgs/perl-File-KeePass/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-KeePass
 version=2.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Listing/template b/srcpkgs/perl-File-Listing/template
index 88e1782c01a..431be101ddf 100644
--- a/srcpkgs/perl-File-Listing/template
+++ b/srcpkgs/perl-File-Listing/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Listing
 version=6.04
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-MimeInfo/template b/srcpkgs/perl-File-MimeInfo/template
index c9286a3e2be..a35a097b9fa 100644
--- a/srcpkgs/perl-File-MimeInfo/template
+++ b/srcpkgs/perl-File-MimeInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-MimeInfo
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Next/template b/srcpkgs/perl-File-Next/template
index ad618b321f0..10f79dfeea8 100644
--- a/srcpkgs/perl-File-Next/template
+++ b/srcpkgs/perl-File-Next/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Next
 version=1.18
 revision=1
-archs=noarch
 wrksrc="File-Next-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Path-Expand/template b/srcpkgs/perl-File-Path-Expand/template
index a1160ae2bd0..330f3255553 100644
--- a/srcpkgs/perl-File-Path-Expand/template
+++ b/srcpkgs/perl-File-Path-Expand/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Path-Expand
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Remove/template b/srcpkgs/perl-File-Remove/template
index bf19bbe94c6..1d97e011026 100644
--- a/srcpkgs/perl-File-Remove/template
+++ b/srcpkgs/perl-File-Remove/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Remove
 version=1.58
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Rename/template b/srcpkgs/perl-File-Rename/template
index 5c198686de0..fd7c1000574 100644
--- a/srcpkgs/perl-File-Rename/template
+++ b/srcpkgs/perl-File-Rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Rename
 version=1.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-ShareDir-Install/template b/srcpkgs/perl-File-ShareDir-Install/template
index 208a8575079..63c63c755e3 100644
--- a/srcpkgs/perl-File-ShareDir-Install/template
+++ b/srcpkgs/perl-File-ShareDir-Install/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="File::ShareDir::Install - Install shared files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/File-ShareDir-Install"
diff --git a/srcpkgs/perl-File-ShareDir/template b/srcpkgs/perl-File-ShareDir/template
index beb7e228afc..6c453f01997 100644
--- a/srcpkgs/perl-File-ShareDir/template
+++ b/srcpkgs/perl-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-ShareDir
 version=1.116
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp-Tiny/template b/srcpkgs/perl-File-Slurp-Tiny/template
index 8a9d8804674..a1dbc242b72 100644
--- a/srcpkgs/perl-File-Slurp-Tiny/template
+++ b/srcpkgs/perl-File-Slurp-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp-Tiny
 version=0.004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp/template b/srcpkgs/perl-File-Slurp/template
index e80907b93f6..6d6eaf13023 100644
--- a/srcpkgs/perl-File-Slurp/template
+++ b/srcpkgs/perl-File-Slurp/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp
 version=9999.30
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurper/template b/srcpkgs/perl-File-Slurper/template
index 4d863f45594..abad103efaf 100644
--- a/srcpkgs/perl-File-Slurper/template
+++ b/srcpkgs/perl-File-Slurper/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurper
 version=0.012
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Which/template b/srcpkgs/perl-File-Which/template
index 3cf781fc48c..dda22972729 100644
--- a/srcpkgs/perl-File-Which/template
+++ b/srcpkgs/perl-File-Which/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Which
 version=1.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Write-Rotate/template b/srcpkgs/perl-File-Write-Rotate/template
index b0cce6f7c18..6f8e780d6f6 100644
--- a/srcpkgs/perl-File-Write-Rotate/template
+++ b/srcpkgs/perl-File-Write-Rotate/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Write-Rotate
 version=0.321
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-chdir/template b/srcpkgs/perl-File-chdir/template
index af6a761eaf2..6a37200eda4 100644
--- a/srcpkgs/perl-File-chdir/template
+++ b/srcpkgs/perl-File-chdir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-chdir
 version=0.1011
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-pushd/template b/srcpkgs/perl-File-pushd/template
index 1ff8d169a2f..2d94f16b604 100644
--- a/srcpkgs/perl-File-pushd/template
+++ b/srcpkgs/perl-File-pushd/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-pushd
 version=1.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Filesys-Notify-Simple/template b/srcpkgs/perl-Filesys-Notify-Simple/template
index 63162d61a23..4ec2992d5bf 100644
--- a/srcpkgs/perl-Filesys-Notify-Simple/template
+++ b/srcpkgs/perl-Filesys-Notify-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Filesys-Notify-Simple
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Font-TTF/template b/srcpkgs/perl-Font-TTF/template
index 16637e92dbc..9e521a86ca1 100644
--- a/srcpkgs/perl-Font-TTF/template
+++ b/srcpkgs/perl-Font-TTF/template
@@ -2,7 +2,6 @@
 pkgname=perl-Font-TTF
 version=1.06
 revision=3
-archs=noarch
 wrksrc="Font-TTF-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-String"
diff --git a/srcpkgs/perl-Getopt-Compact/template b/srcpkgs/perl-Getopt-Compact/template
index 4fd53e9b485..693125559ff 100644
--- a/srcpkgs/perl-Getopt-Compact/template
+++ b/srcpkgs/perl-Getopt-Compact/template
@@ -2,7 +2,6 @@
 pkgname=perl-Getopt-Compact
 version=0.04
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-GooCanvas2/template b/srcpkgs/perl-GooCanvas2/template
index c1236ce2d94..407993e27f5 100644
--- a/srcpkgs/perl-GooCanvas2/template
+++ b/srcpkgs/perl-GooCanvas2/template
@@ -2,7 +2,6 @@
 pkgname=perl-GooCanvas2
 version=0.06
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Graphics-ColorUtils/template b/srcpkgs/perl-Graphics-ColorUtils/template
index eaa71105c53..d11ed93971f 100644
--- a/srcpkgs/perl-Graphics-ColorUtils/template
+++ b/srcpkgs/perl-Graphics-ColorUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-Graphics-ColorUtils
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk2-Ex-Simple-List/template b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
index e07199fd18a..6399c0d906f 100644
--- a/srcpkgs/perl-Gtk2-Ex-Simple-List/template
+++ b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk2-Ex-Simple-List
 version=0.50
 revision=2
-archs=noarch
 wrksrc="Gtk2-Ex-Simple-List-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3-SimpleList/template b/srcpkgs/perl-Gtk3-SimpleList/template
index 5e647b5a737..78e57b052c3 100644
--- a/srcpkgs/perl-Gtk3-SimpleList/template
+++ b/srcpkgs/perl-Gtk3-SimpleList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3-SimpleList
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3/template b/srcpkgs/perl-Gtk3/template
index d1ab6cccf8c..b5f50a2f058 100644
--- a/srcpkgs/perl-Gtk3/template
+++ b/srcpkgs/perl-Gtk3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3
 version=0.037
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Form/template b/srcpkgs/perl-HTML-Form/template
index 0eeb276979c..bf4020cfe3f 100644
--- a/srcpkgs/perl-HTML-Form/template
+++ b/srcpkgs/perl-HTML-Form/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Form
 version=6.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tagset/template b/srcpkgs/perl-HTML-Tagset/template
index 5525e6d93ad..3b8ed139843 100644
--- a/srcpkgs/perl-HTML-Tagset/template
+++ b/srcpkgs/perl-HTML-Tagset/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tagset
 version=3.20
 revision=7
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tree/template b/srcpkgs/perl-HTML-Tree/template
index b77bf5c83a6..328478a1b15 100644
--- a/srcpkgs/perl-HTML-Tree/template
+++ b/srcpkgs/perl-HTML-Tree/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tree
 version=5.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-HTTP-Cookies/template b/srcpkgs/perl-HTTP-Cookies/template
index b3bf18556b3..06e37f0719e 100644
--- a/srcpkgs/perl-HTTP-Cookies/template
+++ b/srcpkgs/perl-HTTP-Cookies/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Cookies
 version=6.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Daemon/template b/srcpkgs/perl-HTTP-Daemon/template
index 5ca067d49d5..ba5d3f2190a 100644
--- a/srcpkgs/perl-HTTP-Daemon/template
+++ b/srcpkgs/perl-HTTP-Daemon/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Daemon
 version=6.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Date/template b/srcpkgs/perl-HTTP-Date/template
index c97750feba0..c193712ee37 100644
--- a/srcpkgs/perl-HTTP-Date/template
+++ b/srcpkgs/perl-HTTP-Date/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Date
 version=6.05
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Entity-Parser/template b/srcpkgs/perl-HTTP-Entity-Parser/template
index 6fcada68323..8886aa27d4b 100644
--- a/srcpkgs/perl-HTTP-Entity-Parser/template
+++ b/srcpkgs/perl-HTTP-Entity-Parser/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Entity-Parser
 version=0.24
 revision=1
-archs=noarch
 wrksrc="HTTP-Entity-Parser-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Headers-Fast/template b/srcpkgs/perl-HTTP-Headers-Fast/template
index 2f263d67329..69876b00abb 100644
--- a/srcpkgs/perl-HTTP-Headers-Fast/template
+++ b/srcpkgs/perl-HTTP-Headers-Fast/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Headers-Fast
 version=0.22
 revision=1
-archs=noarch
 wrksrc="HTTP-Headers-Fast-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Message/template b/srcpkgs/perl-HTTP-Message/template
index 3fb6cd73ecf..d1fa295004e 100644
--- a/srcpkgs/perl-HTTP-Message/template
+++ b/srcpkgs/perl-HTTP-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Message
 version=6.24
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-MultiPartParser/template b/srcpkgs/perl-HTTP-MultiPartParser/template
index 91c07646740..8f0a5ca5c1a 100644
--- a/srcpkgs/perl-HTTP-MultiPartParser/template
+++ b/srcpkgs/perl-HTTP-MultiPartParser/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/HTTP-MultiPartParser"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/HTTP/HTTP-MultiPartParser-${version}.tar.gz"
 checksum=5eddda159f54d16f868e032440ac2b024e55aac48931871b62627f1a16d00b12
-archs=noarch
diff --git a/srcpkgs/perl-HTTP-Negotiate/template b/srcpkgs/perl-HTTP-Negotiate/template
index 7cdc61fca6c..3fa8d2c8373 100644
--- a/srcpkgs/perl-HTTP-Negotiate/template
+++ b/srcpkgs/perl-HTTP-Negotiate/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Negotiate
 version=6.01
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Response-Encoding/template b/srcpkgs/perl-HTTP-Response-Encoding/template
index 8f2b5d0a854..c21570e1a36 100644
--- a/srcpkgs/perl-HTTP-Response-Encoding/template
+++ b/srcpkgs/perl-HTTP-Response-Encoding/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Response-Encoding
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Server-Simple/template b/srcpkgs/perl-HTTP-Server-Simple/template
index 732f2a05326..a2a50984056 100644
--- a/srcpkgs/perl-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Server-Simple
 version=0.52
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Tinyish/template b/srcpkgs/perl-HTTP-Tinyish/template
index 065830e5d50..fb574fefcca 100644
--- a/srcpkgs/perl-HTTP-Tinyish/template
+++ b/srcpkgs/perl-HTTP-Tinyish/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Tinyish
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-Merge/template b/srcpkgs/perl-Hash-Merge/template
index 8b01ec990ce..935f53319b2 100644
--- a/srcpkgs/perl-Hash-Merge/template
+++ b/srcpkgs/perl-Hash-Merge/template
@@ -2,7 +2,6 @@
 pkgname=perl-Hash-Merge
 version=0.302
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-MultiValue/template b/srcpkgs/perl-Hash-MultiValue/template
index d9be3ac82ab..8624237f1ef 100644
--- a/srcpkgs/perl-Hash-MultiValue/template
+++ b/srcpkgs/perl-Hash-MultiValue/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Hash-MultiValue"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Hash/Hash-MultiValue-${version}.tar.gz"
 checksum=66181df7aa68e2786faf6895c88b18b95c800a8e4e6fb4c07fd176410a3c73f4
-archs=noarch
diff --git a/srcpkgs/perl-IO-CaptureOutput/template b/srcpkgs/perl-IO-CaptureOutput/template
index e2d5f360b38..1ad727f0916 100644
--- a/srcpkgs/perl-IO-CaptureOutput/template
+++ b/srcpkgs/perl-IO-CaptureOutput/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-CaptureOutput
 version=1.1105
 revision=1
-archs=noarch
 wrksrc="IO-CaptureOutput-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-HTML/template b/srcpkgs/perl-IO-HTML/template
index 7fb1ca71ede..2566ea52211 100644
--- a/srcpkgs/perl-IO-HTML/template
+++ b/srcpkgs/perl-IO-HTML/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-HTML
 version=1.001
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-SessionData/template b/srcpkgs/perl-IO-SessionData/template
index 04b7108a4df..0c0f2cefb7c 100644
--- a/srcpkgs/perl-IO-SessionData/template
+++ b/srcpkgs/perl-IO-SessionData/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-SessionData
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-INET6/template b/srcpkgs/perl-IO-Socket-INET6/template
index c94145ca85a..f67537b5b17 100644
--- a/srcpkgs/perl-IO-Socket-INET6/template
+++ b/srcpkgs/perl-IO-Socket-INET6/template
@@ -8,7 +8,6 @@ hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-Socket6"
 checkdepends="perl-Test-Pod perl-Test-Pod-Coverage"
 depends="${makedepends}"
-archs=noarch
 short_desc="IO::Socket::INET6 - Object interface for AF_INET/AF_INET6 domain sockets"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/IO-Socket-INET6"
diff --git a/srcpkgs/perl-IO-Socket-SSL/template b/srcpkgs/perl-IO-Socket-SSL/template
index 70463405a2a..21792ff27ac 100644
--- a/srcpkgs/perl-IO-Socket-SSL/template
+++ b/srcpkgs/perl-IO-Socket-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-SSL
 version=2.068
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-Socks/template b/srcpkgs/perl-IO-Socket-Socks/template
index d37fbcfc55a..8a970ad4a2e 100644
--- a/srcpkgs/perl-IO-Socket-Socks/template
+++ b/srcpkgs/perl-IO-Socket-Socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-Socks
 version=0.74
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-String/template b/srcpkgs/perl-IO-String/template
index 7c0735b6b81..4732a8ee56e 100644
--- a/srcpkgs/perl-IO-String/template
+++ b/srcpkgs/perl-IO-String/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-String
 version=1.08
 revision=2
-archs=noarch
 wrksrc="IO-String-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Stty/template b/srcpkgs/perl-IO-Stty/template
index a6fdf1c2fe6..cc00d3bc064 100644
--- a/srcpkgs/perl-IO-Stty/template
+++ b/srcpkgs/perl-IO-Stty/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Stty
 version=0.04
 revision=1
-archs=noarch
 wrksrc="IO-Stty-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-stringy/template b/srcpkgs/perl-IO-stringy/template
index 411a8374bcf..ccc92e36fc0 100644
--- a/srcpkgs/perl-IO-stringy/template
+++ b/srcpkgs/perl-IO-stringy/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-stringy
 version=2.113
 revision=1
-archs=noarch
 wrksrc="IO-Stringy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run/template b/srcpkgs/perl-IPC-Run/template
index ceb5b93652b..dccd5ebcbbb 100644
--- a/srcpkgs/perl-IPC-Run/template
+++ b/srcpkgs/perl-IPC-Run/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run
 version=20200505.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run3/template b/srcpkgs/perl-IPC-Run3/template
index 25155d2b8f3..068ec8b309f 100644
--- a/srcpkgs/perl-IPC-Run3/template
+++ b/srcpkgs/perl-IPC-Run3/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run3
 version=0.048
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-System-Simple/template b/srcpkgs/perl-IPC-System-Simple/template
index 29fe8c39e4b..a022bad07c9 100644
--- a/srcpkgs/perl-IPC-System-Simple/template
+++ b/srcpkgs/perl-IPC-System-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-System-Simple
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Importer/template b/srcpkgs/perl-Importer/template
index 455ee533b1b..2d848054f57 100644
--- a/srcpkgs/perl-Importer/template
+++ b/srcpkgs/perl-Importer/template
@@ -2,7 +2,6 @@
 pkgname=perl-Importer
 version=0.025
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Inline-C/template b/srcpkgs/perl-Inline-C/template
index 1ed461f4ffa..a38df73e0c3 100644
--- a/srcpkgs/perl-Inline-C/template
+++ b/srcpkgs/perl-Inline-C/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline-C
 version=0.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Inline/template b/srcpkgs/perl-Inline/template
index 60849405c13..c8099adbad9 100644
--- a/srcpkgs/perl-Inline/template
+++ b/srcpkgs/perl-Inline/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline
 version=0.86
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON-MaybeXS/template b/srcpkgs/perl-JSON-MaybeXS/template
index 5bde5e5d988..88bf28d7481 100644
--- a/srcpkgs/perl-JSON-MaybeXS/template
+++ b/srcpkgs/perl-JSON-MaybeXS/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON-MaybeXS
 version=1.004002
 revision=1
-archs=noarch
 wrksrc="JSON-MaybeXS-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON/template b/srcpkgs/perl-JSON/template
index 2d3962b3835..a2386e14e2a 100644
--- a/srcpkgs/perl-JSON/template
+++ b/srcpkgs/perl-JSON/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON
 version=4.02
 revision=1
-archs=noarch
 wrksrc="JSON-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Keyword-Declare/template b/srcpkgs/perl-Keyword-Declare/template
index 67afa378530..54b839a4316 100644
--- a/srcpkgs/perl-Keyword-Declare/template
+++ b/srcpkgs/perl-Keyword-Declare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Declare
 version=0.001017
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope perl-Keyword-Simple perl-PPR"
diff --git a/srcpkgs/perl-Keyword-Simple/template b/srcpkgs/perl-Keyword-Simple/template
index abc491b1a2a..16b0a062a2b 100644
--- a/srcpkgs/perl-Keyword-Simple/template
+++ b/srcpkgs/perl-Keyword-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Simple
 version=0.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-MediaTypes/template b/srcpkgs/perl-LWP-MediaTypes/template
index bdb32bcf9ee..a861f096acd 100644
--- a/srcpkgs/perl-LWP-MediaTypes/template
+++ b/srcpkgs/perl-LWP-MediaTypes/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-MediaTypes
 version=6.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-https/template b/srcpkgs/perl-LWP-Protocol-https/template
index a78137a3199..5b64992fb00 100644
--- a/srcpkgs/perl-LWP-Protocol-https/template
+++ b/srcpkgs/perl-LWP-Protocol-https/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-https
 version=6.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-socks/template b/srcpkgs/perl-LWP-Protocol-socks/template
index 15a96605eea..dc2a1b01c58 100644
--- a/srcpkgs/perl-LWP-Protocol-socks/template
+++ b/srcpkgs/perl-LWP-Protocol-socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-socks
 version=1.7
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP/template b/srcpkgs/perl-LWP/template
index 52c256e3b80..24238e19363 100644
--- a/srcpkgs/perl-LWP/template
+++ b/srcpkgs/perl-LWP/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP
 version=6.47
 revision=1
-archs=noarch
 wrksrc="libwww-perl-${version}"
 build_style=perl-module
 hostmakedepends="
diff --git a/srcpkgs/perl-Lingua-Translit/template b/srcpkgs/perl-Lingua-Translit/template
index 075e12b8190..f3caaac516e 100644
--- a/srcpkgs/perl-Lingua-Translit/template
+++ b/srcpkgs/perl-Lingua-Translit/template
@@ -2,7 +2,6 @@
 pkgname=perl-Lingua-Translit
 version=0.28
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Linux-DesktopFiles/template b/srcpkgs/perl-Linux-DesktopFiles/template
index 9d6cda1c3f7..0cde8fbf700 100644
--- a/srcpkgs/perl-Linux-DesktopFiles/template
+++ b/srcpkgs/perl-Linux-DesktopFiles/template
@@ -4,7 +4,6 @@ version=0.25
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/perl-Linux-Distribution/template b/srcpkgs/perl-Linux-Distribution/template
index 01a726003d3..9e9ef9c3ac0 100644
--- a/srcpkgs/perl-Linux-Distribution/template
+++ b/srcpkgs/perl-Linux-Distribution/template
@@ -2,7 +2,6 @@
 pkgname=perl-Linux-Distribution
 version=0.23
 revision=2
-archs=noarch
 wrksrc="Linux-Distribution-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-AllUtils/template b/srcpkgs/perl-List-AllUtils/template
index a47d19136ac..2a422e705be 100644
--- a/srcpkgs/perl-List-AllUtils/template
+++ b/srcpkgs/perl-List-AllUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-AllUtils
 version=0.16
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-MoreUtils/template b/srcpkgs/perl-List-MoreUtils/template
index 55467ee119b..d4f371fc627 100644
--- a/srcpkgs/perl-List-MoreUtils/template
+++ b/srcpkgs/perl-List-MoreUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-MoreUtils
 version=0.428
 revision=2
-archs=noarch
 wrksrc="List-MoreUtils-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-SomeUtils/template b/srcpkgs/perl-List-SomeUtils/template
index df6e1570cd0..014fd652caa 100644
--- a/srcpkgs/perl-List-SomeUtils/template
+++ b/srcpkgs/perl-List-SomeUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-SomeUtils
 version=0.58
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-UtilsBy/template b/srcpkgs/perl-List-UtilsBy/template
index 7f22975ec4f..359fe5c1a9e 100644
--- a/srcpkgs/perl-List-UtilsBy/template
+++ b/srcpkgs/perl-List-UtilsBy/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-UtilsBy
 version=0.11
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Locale-PO/template b/srcpkgs/perl-Locale-PO/template
index 77341df5cdf..a7efbeec358 100644
--- a/srcpkgs/perl-Locale-PO/template
+++ b/srcpkgs/perl-Locale-PO/template
@@ -2,7 +2,6 @@
 pkgname=perl-Locale-PO
 version=0.27
 revision=3
-archs=noarch
 wrksrc="Locale-PO-${version}"
 build_style="perl-module"
 hostmakedepends="perl perl-File-Slurp"
diff --git a/srcpkgs/perl-Log-Log4perl/template b/srcpkgs/perl-Log-Log4perl/template
index 3af10b95a39..5633665e577 100644
--- a/srcpkgs/perl-Log-Log4perl/template
+++ b/srcpkgs/perl-Log-Log4perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Log-Log4perl
 version=1.50
 revision=1
-archs=noarch
 wrksrc="Log-Log4perl-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Charset/template b/srcpkgs/perl-MIME-Charset/template
index 568dc6d95e1..8aa6b243e7a 100644
--- a/srcpkgs/perl-MIME-Charset/template
+++ b/srcpkgs/perl-MIME-Charset/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Charset
 version=1.012.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Types/template b/srcpkgs/perl-MIME-Types/template
index 4ce98fe5137..7253144ee47 100644
--- a/srcpkgs/perl-MIME-Types/template
+++ b/srcpkgs/perl-MIME-Types/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Types
 version=2.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-tools/template b/srcpkgs/perl-MIME-tools/template
index e4df2da1748..f12f1e5cc1c 100644
--- a/srcpkgs/perl-MIME-tools/template
+++ b/srcpkgs/perl-MIME-tools/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-tools
 version=5.509
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Info/template b/srcpkgs/perl-MP3-Info/template
index 70b84cc316c..9bc827ca727 100644
--- a/srcpkgs/perl-MP3-Info/template
+++ b/srcpkgs/perl-MP3-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Info
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Tag/template b/srcpkgs/perl-MP3-Tag/template
index 1bff6e2e7b7..62377f0bea1 100644
--- a/srcpkgs/perl-MP3-Tag/template
+++ b/srcpkgs/perl-MP3-Tag/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Tag
 version=1.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl unzip"
diff --git a/srcpkgs/perl-MRO-Compat/template b/srcpkgs/perl-MRO-Compat/template
index bf51f72241c..6c09d01d943 100644
--- a/srcpkgs/perl-MRO-Compat/template
+++ b/srcpkgs/perl-MRO-Compat/template
@@ -2,7 +2,6 @@
 pkgname=perl-MRO-Compat
 version=0.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Box/template b/srcpkgs/perl-Mail-Box/template
index f2e68883b5e..c21c166845b 100644
--- a/srcpkgs/perl-Mail-Box/template
+++ b/srcpkgs/perl-Mail-Box/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Box
 version=3.008
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-DKIM/template b/srcpkgs/perl-Mail-DKIM/template
index 5dfd3f9b2f0..30af708ec25 100644
--- a/srcpkgs/perl-Mail-DKIM/template
+++ b/srcpkgs/perl-Mail-DKIM/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-DKIM
 version=1.20200724
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Message/template b/srcpkgs/perl-Mail-Message/template
index 1bf220ad388..76ed0153002 100644
--- a/srcpkgs/perl-Mail-Message/template
+++ b/srcpkgs/perl-Mail-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Message
 version=3.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-POP3Client/template b/srcpkgs/perl-Mail-POP3Client/template
index 5317b8ce273..577dfc1c30c 100644
--- a/srcpkgs/perl-Mail-POP3Client/template
+++ b/srcpkgs/perl-Mail-POP3Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-POP3Client
 version=2.19
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Sendmail/template b/srcpkgs/perl-Mail-Sendmail/template
index 55fdfc7f3ad..b61ecddae98 100644
--- a/srcpkgs/perl-Mail-Sendmail/template
+++ b/srcpkgs/perl-Mail-Sendmail/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Sendmail
 version=0.80
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Transport/template b/srcpkgs/perl-Mail-Transport/template
index 1e1501c286e..f1ec85e7000 100644
--- a/srcpkgs/perl-Mail-Transport/template
+++ b/srcpkgs/perl-Mail-Transport/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Transport
 version=3.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MailTools/template b/srcpkgs/perl-MailTools/template
index 8687178a114..65911f6edb5 100644
--- a/srcpkgs/perl-MailTools/template
+++ b/srcpkgs/perl-MailTools/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-TimeDate"
 depends="${makedepends}"
-archs=noarch
 short_desc="MailTools -- Various e-mail related modules"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://metacpan.org/release/MailTools"
diff --git a/srcpkgs/perl-Menlo-Legacy/template b/srcpkgs/perl-Menlo-Legacy/template
index 217e8836b13..5b285a92548 100644
--- a/srcpkgs/perl-Menlo-Legacy/template
+++ b/srcpkgs/perl-Menlo-Legacy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo-Legacy
 version=1.9022
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Menlo/template b/srcpkgs/perl-Menlo/template
index c16d725e03b..94751be3421 100644
--- a/srcpkgs/perl-Menlo/template
+++ b/srcpkgs/perl-Menlo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo
 version=1.9019
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mixin-Linewise/template b/srcpkgs/perl-Mixin-Linewise/template
index 1f2c66462b7..02573bc745a 100644
--- a/srcpkgs/perl-Mixin-Linewise/template
+++ b/srcpkgs/perl-Mixin-Linewise/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mixin-Linewise
 version=0.108
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-PerlIO-utf8-strict perl-Sub-Exporter"
diff --git a/srcpkgs/perl-Module-Build-Tiny/template b/srcpkgs/perl-Module-Build-Tiny/template
index f1b3c327040..e7c462fe4d6 100644
--- a/srcpkgs/perl-Module-Build-Tiny/template
+++ b/srcpkgs/perl-Module-Build-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build-Tiny
 version=0.039
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-ExtUtils-Config perl-ExtUtils-Helpers perl-ExtUtils-InstallPaths"
diff --git a/srcpkgs/perl-Module-Build/template b/srcpkgs/perl-Module-Build/template
index 654c0dedc6b..251896beee8 100644
--- a/srcpkgs/perl-Module-Build/template
+++ b/srcpkgs/perl-Module-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build
 version=0.4231
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-CPANfile/template b/srcpkgs/perl-Module-CPANfile/template
index b6c80ffe2d9..6a01786a74a 100644
--- a/srcpkgs/perl-Module-CPANfile/template
+++ b/srcpkgs/perl-Module-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-CPANfile
 version=1.1004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Find/template b/srcpkgs/perl-Module-Find/template
index 53aaaf84e0a..80d4c29af95 100644
--- a/srcpkgs/perl-Module-Find/template
+++ b/srcpkgs/perl-Module-Find/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Find
 version=0.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Implementation/template b/srcpkgs/perl-Module-Implementation/template
index cd8764774e0..725a6a104cb 100644
--- a/srcpkgs/perl-Module-Implementation/template
+++ b/srcpkgs/perl-Module-Implementation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Implementation
 version=0.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Manifest/template b/srcpkgs/perl-Module-Manifest/template
index 1a56b9da224..86674f57437 100644
--- a/srcpkgs/perl-Module-Manifest/template
+++ b/srcpkgs/perl-Module-Manifest/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Module-Manifest"
 license="Artistic, GPL-1"
 distfiles="$CPAN_SITE/Module/Module-Manifest-${version}.tar.gz"
 checksum=a395f80ff15ea0e66fd6c453844b6787ed4a875a3cd8df9f7e29280250bd539b
-archs=noarch
diff --git a/srcpkgs/perl-Module-Pluggable/template b/srcpkgs/perl-Module-Pluggable/template
index 793c7d6c8bd..b66ec862bdc 100644
--- a/srcpkgs/perl-Module-Pluggable/template
+++ b/srcpkgs/perl-Module-Pluggable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Pluggable
 version=5.2
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Runtime/template b/srcpkgs/perl-Module-Runtime/template
index a8e421f60e1..11231dffd67 100644
--- a/srcpkgs/perl-Module-Runtime/template
+++ b/srcpkgs/perl-Module-Runtime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Runtime
 version=0.016
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Mojolicious/template b/srcpkgs/perl-Mojolicious/template
index 14cf2b6160e..46174772c5e 100644
--- a/srcpkgs/perl-Mojolicious/template
+++ b/srcpkgs/perl-Mojolicious/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mojolicious
 version=8.42
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Monkey-Patch-Action/template b/srcpkgs/perl-Monkey-Patch-Action/template
index f13376e85df..2d7bfdf6240 100644
--- a/srcpkgs/perl-Monkey-Patch-Action/template
+++ b/srcpkgs/perl-Monkey-Patch-Action/template
@@ -2,7 +2,6 @@
 pkgname=perl-Monkey-Patch-Action
 version=0.061
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Moo/template b/srcpkgs/perl-Moo/template
index 155a50b3112..ad85f0207cb 100644
--- a/srcpkgs/perl-Moo/template
+++ b/srcpkgs/perl-Moo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Moo
 version=2.004000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mozilla-CA/template b/srcpkgs/perl-Mozilla-CA/template
index 3a406de17d2..60e89cd77e6 100644
--- a/srcpkgs/perl-Mozilla-CA/template
+++ b/srcpkgs/perl-Mozilla-CA/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mozilla-CA
 version=20200520
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS-Resolver-Mock/template b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
index 5583cb8138d..b31762710e9 100644
--- a/srcpkgs/perl-Net-DNS-Resolver-Mock/template
+++ b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS-Resolver-Mock
 version=1.20200215
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS/template b/srcpkgs/perl-Net-DNS/template
index efa3b7dd63e..ae5529844fc 100644
--- a/srcpkgs/perl-Net-DNS/template
+++ b/srcpkgs/perl-Net-DNS/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS
 version=1.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-HTTP/template b/srcpkgs/perl-Net-HTTP/template
index 105416774df..0b6d48cc134 100644
--- a/srcpkgs/perl-Net-HTTP/template
+++ b/srcpkgs/perl-Net-HTTP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-HTTP
 version=6.19
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Client/template b/srcpkgs/perl-Net-IMAP-Client/template
index 1e0f579548f..ddb280e9e4e 100644
--- a/srcpkgs/perl-Net-IMAP-Client/template
+++ b/srcpkgs/perl-Net-IMAP-Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Client
 version=0.9505
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Simple/template b/srcpkgs/perl-Net-IMAP-Simple/template
index 30d331492fb..70244a0ab64 100644
--- a/srcpkgs/perl-Net-IMAP-Simple/template
+++ b/srcpkgs/perl-Net-IMAP-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Simple
 version=1.2212
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-MPD/template b/srcpkgs/perl-Net-MPD/template
index 38363aa7b48..e69ff0d37cc 100644
--- a/srcpkgs/perl-Net-MPD/template
+++ b/srcpkgs/perl-Net-MPD/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-MPD
 version=0.07
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Net-OpenSSH/template b/srcpkgs/perl-Net-OpenSSH/template
index 69fc0d570e1..b8e6439ead8 100644
--- a/srcpkgs/perl-Net-OpenSSH/template
+++ b/srcpkgs/perl-Net-OpenSSH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-OpenSSH
 version=0.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SFTP-Foreign/template b/srcpkgs/perl-Net-SFTP-Foreign/template
index a447269f22a..852d70c9c5d 100644
--- a/srcpkgs/perl-Net-SFTP-Foreign/template
+++ b/srcpkgs/perl-Net-SFTP-Foreign/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SFTP-Foreign
 version=1.91
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SMTP-SSL/template b/srcpkgs/perl-Net-SMTP-SSL/template
index 4bceff607f7..066b9325ace 100644
--- a/srcpkgs/perl-Net-SMTP-SSL/template
+++ b/srcpkgs/perl-Net-SMTP-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SMTP-SSL
 version=1.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-Server/template b/srcpkgs/perl-Net-Server/template
index d6303b7a70b..663ed0d44de 100644
--- a/srcpkgs/perl-Net-Server/template
+++ b/srcpkgs/perl-Net-Server/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-Server
 version=2.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Compare/template b/srcpkgs/perl-Number-Compare/template
index df4eaca2780..c7a4c986303 100644
--- a/srcpkgs/perl-Number-Compare/template
+++ b/srcpkgs/perl-Number-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Compare
 version=0.03
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Format/template b/srcpkgs/perl-Number-Format/template
index f0c958a696c..435d082ab86 100644
--- a/srcpkgs/perl-Number-Format/template
+++ b/srcpkgs/perl-Number-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Format
 version=1.75
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-OLE-Storage_Lite/template b/srcpkgs/perl-OLE-Storage_Lite/template
index 28db86c8be5..37e893ecfa5 100644
--- a/srcpkgs/perl-OLE-Storage_Lite/template
+++ b/srcpkgs/perl-OLE-Storage_Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-OLE-Storage_Lite
 version=0.20
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-MultiType/template b/srcpkgs/perl-Object-MultiType/template
index 7caf30b452d..0a459d4e712 100644
--- a/srcpkgs/perl-Object-MultiType/template
+++ b/srcpkgs/perl-Object-MultiType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-MultiType
 version=0.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-Realize-Later/template b/srcpkgs/perl-Object-Realize-Later/template
index 51682d45083..6aa801950c7 100644
--- a/srcpkgs/perl-Object-Realize-Later/template
+++ b/srcpkgs/perl-Object-Realize-Later/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-Realize-Later
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PDF-API2/template b/srcpkgs/perl-PDF-API2/template
index 076c45b88ec..b8169a27809 100644
--- a/srcpkgs/perl-PDF-API2/template
+++ b/srcpkgs/perl-PDF-API2/template
@@ -2,7 +2,6 @@
 pkgname=perl-PDF-API2
 version=2.037
 revision=1
-archs=noarch
 wrksrc="PDF-API2-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-POSIX-strftime-Compiler/template b/srcpkgs/perl-POSIX-strftime-Compiler/template
index 6b68d220377..5b9eff0e86a 100644
--- a/srcpkgs/perl-POSIX-strftime-Compiler/template
+++ b/srcpkgs/perl-POSIX-strftime-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-POSIX-strftime-Compiler
 version=0.44
 revision=1
-archs=noarch
 wrksrc="POSIX-strftime-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-PPR/template b/srcpkgs/perl-PPR/template
index bc7165f468a..2ed7e88c560 100644
--- a/srcpkgs/perl-PPR/template
+++ b/srcpkgs/perl-PPR/template
@@ -2,7 +2,6 @@
 pkgname=perl-PPR
 version=0.000028
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope"
diff --git a/srcpkgs/perl-Package-DeprecationManager/template b/srcpkgs/perl-Package-DeprecationManager/template
index 9e4cf28789d..6a5d31909f1 100644
--- a/srcpkgs/perl-Package-DeprecationManager/template
+++ b/srcpkgs/perl-Package-DeprecationManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-DeprecationManager
 version=0.17
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Package-Stash/template b/srcpkgs/perl-Package-Stash/template
index 4b021644ae0..9a17b5d6bc0 100644
--- a/srcpkgs/perl-Package-Stash/template
+++ b/srcpkgs/perl-Package-Stash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-Stash
 version=0.38
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Dist-CheckConflicts"
diff --git a/srcpkgs/perl-Parallel-ForkManager/template b/srcpkgs/perl-Parallel-ForkManager/template
index ba0d496c36f..e0195f5ddbf 100644
--- a/srcpkgs/perl-Parallel-ForkManager/template
+++ b/srcpkgs/perl-Parallel-ForkManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parallel-ForkManager
 version=2.02
 revision=1
-archs=noarch
 wrksrc="Parallel-ForkManager-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Params-ValidationCompiler/template b/srcpkgs/perl-Params-ValidationCompiler/template
index 79331a19c2d..a3e5a189a72 100644
--- a/srcpkgs/perl-Params-ValidationCompiler/template
+++ b/srcpkgs/perl-Params-ValidationCompiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Params-ValidationCompiler
 version=0.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-CPAN-Meta/template b/srcpkgs/perl-Parse-CPAN-Meta/template
index 7f2a04132a2..0463d20ca47 100644
--- a/srcpkgs/perl-Parse-CPAN-Meta/template
+++ b/srcpkgs/perl-Parse-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-CPAN-Meta
 version=1.4422
 revision=2
-archs=noarch
 wrksrc="Parse-CPAN-Meta-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-PMFile/template b/srcpkgs/perl-Parse-PMFile/template
index 3d406c6d5c3..5090b138072 100644
--- a/srcpkgs/perl-Parse-PMFile/template
+++ b/srcpkgs/perl-Parse-PMFile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-PMFile
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-MakeMaker-CPANfile perl-Module-CPANfile"
diff --git a/srcpkgs/perl-Parse-RecDescent/template b/srcpkgs/perl-Parse-RecDescent/template
index 272fe0008b6..d8236b57ce9 100644
--- a/srcpkgs/perl-Parse-RecDescent/template
+++ b/srcpkgs/perl-Parse-RecDescent/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-RecDescent
 version=1.967015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-Yapp/template b/srcpkgs/perl-Parse-Yapp/template
index bd200ede930..593310b30cf 100644
--- a/srcpkgs/perl-Parse-Yapp/template
+++ b/srcpkgs/perl-Parse-Yapp/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-Yapp
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PatchReader/template b/srcpkgs/perl-PatchReader/template
index 51cd3172766..f92209bfd06 100644
--- a/srcpkgs/perl-PatchReader/template
+++ b/srcpkgs/perl-PatchReader/template
@@ -2,7 +2,6 @@
 pkgname=perl-PatchReader
 version=0.9.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Path-Tiny/template b/srcpkgs/perl-Path-Tiny/template
index 6db01f7ff4e..c81538f8fbd 100644
--- a/srcpkgs/perl-Path-Tiny/template
+++ b/srcpkgs/perl-Path-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Path-Tiny
 version=0.114
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Pegex/template b/srcpkgs/perl-Pegex/template
index b1ae1eef38f..c6531608145 100644
--- a/srcpkgs/perl-Pegex/template
+++ b/srcpkgs/perl-Pegex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pegex
 version=0.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Plack-Middleware-Deflater/template b/srcpkgs/perl-Plack-Middleware-Deflater/template
index c18fa1932bd..64e97653d56 100644
--- a/srcpkgs/perl-Plack-Middleware-Deflater/template
+++ b/srcpkgs/perl-Plack-Middleware-Deflater/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Plack-Middleware-Deflater"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-Deflater-${version}.tar.gz"
 checksum=28da95e7da4c8b5591ac454509c92176cd0842960ce074fde30f9a1075dcc275
-archs=noarch
diff --git a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
index 3c120a2ce23..4187eaf1bd3 100644
--- a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
+++ b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Plack-Middleware-ReverseProxy"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-ReverseProxy-${version}.tar.gz"
 checksum=874931d37d07667ba0d0f37903b94511071f4191feb73fa45765da2b8c15a128
-archs="noarch"
diff --git a/srcpkgs/perl-Plack/template b/srcpkgs/perl-Plack/template
index 6954a1eccc1..b0893d9875d 100644
--- a/srcpkgs/perl-Plack/template
+++ b/srcpkgs/perl-Plack/template
@@ -18,4 +18,3 @@ homepage="https://metacpan.org/release/Plack"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-${version}.tar.gz"
 checksum=322c93f5acc0a0f0e11fd4a76188f978bdc14338a9f1df3ae535227017046561
-archs=noarch
diff --git a/srcpkgs/perl-Pod-Coverage/template b/srcpkgs/perl-Pod-Coverage/template
index 6202ae090fc..50545eed804 100644
--- a/srcpkgs/perl-Pod-Coverage/template
+++ b/srcpkgs/perl-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Coverage
 version=0.23
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-Symdump"
diff --git a/srcpkgs/perl-Pod-Simple-Text-Termcap/template b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
index 65fcd4aa738..7df35f1e433 100644
--- a/srcpkgs/perl-Pod-Simple-Text-Termcap/template
+++ b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Simple-Text-Termcap
 version=0.01
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Probe-Perl/template b/srcpkgs/perl-Probe-Perl/template
index 673236a744c..cef72577248 100644
--- a/srcpkgs/perl-Probe-Perl/template
+++ b/srcpkgs/perl-Probe-Perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Probe-Perl
 version=0.03
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Daemontools/template b/srcpkgs/perl-Proc-Daemontools/template
index ded05432e82..c4979387c25 100644
--- a/srcpkgs/perl-Proc-Daemontools/template
+++ b/srcpkgs/perl-Proc-Daemontools/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Daemontools
 version=1.06
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Govern/template b/srcpkgs/perl-Proc-Govern/template
index 5b999a8099e..910bd8a0be7 100644
--- a/srcpkgs/perl-Proc-Govern/template
+++ b/srcpkgs/perl-Proc-Govern/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Govern
 version=0.209
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-PID-File/template b/srcpkgs/perl-Proc-PID-File/template
index c0a1929f98c..40b10ab049a 100644
--- a/srcpkgs/perl-Proc-PID-File/template
+++ b/srcpkgs/perl-Proc-PID-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-PID-File
 version=1.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Readonly/template b/srcpkgs/perl-Readonly/template
index fafb9a80950..d6a5e85c73d 100644
--- a/srcpkgs/perl-Readonly/template
+++ b/srcpkgs/perl-Readonly/template
@@ -2,7 +2,6 @@
 pkgname=perl-Readonly
 version=2.05
 revision=2
-archs=noarch
 wrksrc="Readonly-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Ref-Util/template b/srcpkgs/perl-Ref-Util/template
index 2b6acde1820..66a77e571ab 100644
--- a/srcpkgs/perl-Ref-Util/template
+++ b/srcpkgs/perl-Ref-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Ref-Util
 version=0.204
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Common/template b/srcpkgs/perl-Regexp-Common/template
index 0a8ef2222cb..6b9d253162b 100644
--- a/srcpkgs/perl-Regexp-Common/template
+++ b/srcpkgs/perl-Regexp-Common/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Common
 version=2017060201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Grammars/template b/srcpkgs/perl-Regexp-Grammars/template
index cae12ff654b..761e58df7ff 100644
--- a/srcpkgs/perl-Regexp-Grammars/template
+++ b/srcpkgs/perl-Regexp-Grammars/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Grammars
 version=1.057
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Reply/template b/srcpkgs/perl-Reply/template
index 8dc0d7fb756..64a4341d012 100644
--- a/srcpkgs/perl-Reply/template
+++ b/srcpkgs/perl-Reply/template
@@ -2,7 +2,6 @@
 pkgname=perl-Reply
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-LexAlias perl-Eval-Closure perl-Package-Stash perl-PadWalker perl-Term-ReadLine-Gnu perl-Try-Tiny perl-File-HomeDir perl-Config-INI-Reader-Ordered"
diff --git a/srcpkgs/perl-Role-Tiny/template b/srcpkgs/perl-Role-Tiny/template
index 7eb125fbd4e..a51bd0ec025 100644
--- a/srcpkgs/perl-Role-Tiny/template
+++ b/srcpkgs/perl-Role-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Role-Tiny
 version=2.001004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SGMLSpm/template b/srcpkgs/perl-SGMLSpm/template
index e1f9ac69878..2ece0a3567e 100644
--- a/srcpkgs/perl-SGMLSpm/template
+++ b/srcpkgs/perl-SGMLSpm/template
@@ -4,7 +4,6 @@ version=1.1
 revision=1
 wrksrc=${pkgname/perl-/}-${version}
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-SOAP-Lite/template b/srcpkgs/perl-SOAP-Lite/template
index e74a27a0497..e0382bf0464 100644
--- a/srcpkgs/perl-SOAP-Lite/template
+++ b/srcpkgs/perl-SOAP-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-SOAP-Lite
 version=1.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SUPER/template b/srcpkgs/perl-SUPER/template
index 1b11e76b38e..89c9f219f55 100644
--- a/srcpkgs/perl-SUPER/template
+++ b/srcpkgs/perl-SUPER/template
@@ -2,7 +2,6 @@
 pkgname=perl-SUPER
 version=1.20190531
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Scope-Guard/template b/srcpkgs/perl-Scope-Guard/template
index f17c470e784..85a5038e0c0 100644
--- a/srcpkgs/perl-Scope-Guard/template
+++ b/srcpkgs/perl-Scope-Guard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Scope-Guard
 version=0.21
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Set-IntSpan/template b/srcpkgs/perl-Set-IntSpan/template
index 681aa0b1386..f6565cf8ce3 100644
--- a/srcpkgs/perl-Set-IntSpan/template
+++ b/srcpkgs/perl-Set-IntSpan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Set-IntSpan
 version=1.19
 revision=2
-archs=noarch
 wrksrc="Set-IntSpan-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Naturally/template b/srcpkgs/perl-Sort-Naturally/template
index 11cfb97cfe4..a621922cdc4 100644
--- a/srcpkgs/perl-Sort-Naturally/template
+++ b/srcpkgs/perl-Sort-Naturally/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Naturally
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Versions/template b/srcpkgs/perl-Sort-Versions/template
index 292e0def8ea..97efedd9fa6 100644
--- a/srcpkgs/perl-Sort-Versions/template
+++ b/srcpkgs/perl-Sort-Versions/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Versions
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Specio/template b/srcpkgs/perl-Specio/template
index 22fc22f79e8..353cd58a5fe 100644
--- a/srcpkgs/perl-Specio/template
+++ b/srcpkgs/perl-Specio/template
@@ -2,7 +2,6 @@
 pkgname=perl-Specio
 version=0.46
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spiffy/template b/srcpkgs/perl-Spiffy/template
index 4412ade6858..d2ae23c5386 100644
--- a/srcpkgs/perl-Spiffy/template
+++ b/srcpkgs/perl-Spiffy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spiffy
 version=0.46
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseExcel/template b/srcpkgs/perl-Spreadsheet-ParseExcel/template
index 748f157113a..c5449492a99 100644
--- a/srcpkgs/perl-Spreadsheet-ParseExcel/template
+++ b/srcpkgs/perl-Spreadsheet-ParseExcel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseExcel
 version=0.65
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseXLSX/template b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
index 189c47dd66b..da0e9fa9e7f 100644
--- a/srcpkgs/perl-Spreadsheet-ParseXLSX/template
+++ b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseXLSX
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Stow/template b/srcpkgs/perl-Stow/template
index 9ed2a52ed93..c52f0ec06cd 100644
--- a/srcpkgs/perl-Stow/template
+++ b/srcpkgs/perl-Stow/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stow
 version=2.3.1
 revision=1
-archs=noarch
 wrksrc="Stow-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Output perl-IO-stringy"
diff --git a/srcpkgs/perl-Stream-Buffered/template b/srcpkgs/perl-Stream-Buffered/template
index d872e01d511..ed0566b75d7 100644
--- a/srcpkgs/perl-Stream-Buffered/template
+++ b/srcpkgs/perl-Stream-Buffered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stream-Buffered
 version=0.03
 revision=2
-archs=noarch
 wrksrc="Stream-Buffered-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-Escape/template b/srcpkgs/perl-String-Escape/template
index f33bacae2a8..d62b712adf1 100644
--- a/srcpkgs/perl-String-Escape/template
+++ b/srcpkgs/perl-String-Escape/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-Escape
 version=2010.002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-ShellQuote/template b/srcpkgs/perl-String-ShellQuote/template
index 7992c6bfd54..0620e27d55e 100644
--- a/srcpkgs/perl-String-ShellQuote/template
+++ b/srcpkgs/perl-String-ShellQuote/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-ShellQuote
 version=1.04
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Delete/template b/srcpkgs/perl-Sub-Delete/template
index f57c5ceee74..b93395a327f 100644
--- a/srcpkgs/perl-Sub-Delete/template
+++ b/srcpkgs/perl-Sub-Delete/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Delete
 version=1.00002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter-Progressive/template b/srcpkgs/perl-Sub-Exporter-Progressive/template
index ba7ff3325fd..ca3735cf30d 100644
--- a/srcpkgs/perl-Sub-Exporter-Progressive/template
+++ b/srcpkgs/perl-Sub-Exporter-Progressive/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter-Progressive
 version=0.001013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter/template b/srcpkgs/perl-Sub-Exporter/template
index 580e244d5bf..fd7835fa11b 100644
--- a/srcpkgs/perl-Sub-Exporter/template
+++ b/srcpkgs/perl-Sub-Exporter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter
 version=0.987
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Info/template b/srcpkgs/perl-Sub-Info/template
index 6026d8f5bf2..b92e7492406 100644
--- a/srcpkgs/perl-Sub-Info/template
+++ b/srcpkgs/perl-Sub-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Info
 version=0.002
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Install/template b/srcpkgs/perl-Sub-Install/template
index ef853d0d7fd..9515c5147a4 100644
--- a/srcpkgs/perl-Sub-Install/template
+++ b/srcpkgs/perl-Sub-Install/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Install
 version=0.928
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Quote/template b/srcpkgs/perl-Sub-Quote/template
index 1ab6d42ec20..8f0f784f114 100644
--- a/srcpkgs/perl-Sub-Quote/template
+++ b/srcpkgs/perl-Sub-Quote/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Quote
 version=2.006006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Uplevel/template b/srcpkgs/perl-Sub-Uplevel/template
index 5986ba70ba7..eddf582a4e3 100644
--- a/srcpkgs/perl-Sub-Uplevel/template
+++ b/srcpkgs/perl-Sub-Uplevel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Uplevel
 version=0.2800
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Svsh/template b/srcpkgs/perl-Svsh/template
index 06a7bfa948e..c70cb1572d4 100644
--- a/srcpkgs/perl-Svsh/template
+++ b/srcpkgs/perl-Svsh/template
@@ -2,7 +2,6 @@
 pkgname=perl-Svsh
 version=1.002000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sys-Syscall/template b/srcpkgs/perl-Sys-Syscall/template
index cdcc58dc479..564b0dab0eb 100644
--- a/srcpkgs/perl-Sys-Syscall/template
+++ b/srcpkgs/perl-Sys-Syscall/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sys-Syscall
 version=0.25
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Animation/template b/srcpkgs/perl-Term-Animation/template
index 3341a3eab6c..bfe5c34c8dc 100644
--- a/srcpkgs/perl-Term-Animation/template
+++ b/srcpkgs/perl-Term-Animation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Animation
 version=2.6
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Curses"
diff --git a/srcpkgs/perl-Term-ExtendedColor/template b/srcpkgs/perl-Term-ExtendedColor/template
index 971fc6ffbd0..b4936d810ce 100644
--- a/srcpkgs/perl-Term-ExtendedColor/template
+++ b/srcpkgs/perl-Term-ExtendedColor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ExtendedColor
 version=0.504
 revision=1
-archs=noarch
 wrksrc="Term-ExtendedColor-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-ShellUI/template b/srcpkgs/perl-Term-ShellUI/template
index f5d77d801db..dfd12fc0ba4 100644
--- a/srcpkgs/perl-Term-ShellUI/template
+++ b/srcpkgs/perl-Term-ShellUI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ShellUI
 version=0.92
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Table/template b/srcpkgs/perl-Term-Table/template
index 0934b654d5a..e2a14a69a6a 100644
--- a/srcpkgs/perl-Term-Table/template
+++ b/srcpkgs/perl-Term-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Table
 version=0.015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Base/template b/srcpkgs/perl-Test-Base/template
index 9eef8acf384..dd7e15cc716 100644
--- a/srcpkgs/perl-Test-Base/template
+++ b/srcpkgs/perl-Test-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Base
 version=0.89
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-CPAN-Meta/template b/srcpkgs/perl-Test-CPAN-Meta/template
index 3c21325b9e1..694b3b17142 100644
--- a/srcpkgs/perl-Test-CPAN-Meta/template
+++ b/srcpkgs/perl-Test-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-CPAN-Meta
 version=0.25
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Class/template b/srcpkgs/perl-Test-Class/template
index 1b60133766e..aeff642718d 100644
--- a/srcpkgs/perl-Test-Class/template
+++ b/srcpkgs/perl-Test-Class/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Class
 version=0.50
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Cmd/template b/srcpkgs/perl-Test-Cmd/template
index aa4e8c68a7c..b667845728b 100644
--- a/srcpkgs/perl-Test-Cmd/template
+++ b/srcpkgs/perl-Test-Cmd/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Cmd
 version=1.09
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Command/template b/srcpkgs/perl-Test-Command/template
index 2232d4c1d82..3b42a6f14eb 100644
--- a/srcpkgs/perl-Test-Command/template
+++ b/srcpkgs/perl-Test-Command/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Command
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Deep/template b/srcpkgs/perl-Test-Deep/template
index 6bde21fc2ff..a8127d43469 100644
--- a/srcpkgs/perl-Test-Deep/template
+++ b/srcpkgs/perl-Test-Deep/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Deep
 version=1.130
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Differences/template b/srcpkgs/perl-Test-Differences/template
index b65ac242d0c..1fed4aa2222 100644
--- a/srcpkgs/perl-Test-Differences/template
+++ b/srcpkgs/perl-Test-Differences/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Differences
 version=0.67
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Diff"
diff --git a/srcpkgs/perl-Test-DistManifest/template b/srcpkgs/perl-Test-DistManifest/template
index 31d92ee2296..da092b7a3c5 100644
--- a/srcpkgs/perl-Test-DistManifest/template
+++ b/srcpkgs/perl-Test-DistManifest/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-DistManifest
 version=1.014
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Test-NoWarnings perl-Module-Manifest"
diff --git a/srcpkgs/perl-Test-Exception/template b/srcpkgs/perl-Test-Exception/template
index 6fe7eec0c4a..e66c8fc81ac 100644
--- a/srcpkgs/perl-Test-Exception/template
+++ b/srcpkgs/perl-Test-Exception/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Exception
 version=0.43
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Sub-Uplevel"
diff --git a/srcpkgs/perl-Test-FailWarnings/template b/srcpkgs/perl-Test-FailWarnings/template
index e3fdb4ab06e..d585bd9b896 100644
--- a/srcpkgs/perl-Test-FailWarnings/template
+++ b/srcpkgs/perl-Test-FailWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-FailWarnings
 version=0.008
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Fatal/template b/srcpkgs/perl-Test-Fatal/template
index e67737a383d..e467fb12fb2 100644
--- a/srcpkgs/perl-Test-Fatal/template
+++ b/srcpkgs/perl-Test-Fatal/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Fatal
 version=0.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File-ShareDir/template b/srcpkgs/perl-Test-File-ShareDir/template
index 6dd421ddbde..75ff5004ffb 100644
--- a/srcpkgs/perl-Test-File-ShareDir/template
+++ b/srcpkgs/perl-Test-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File-ShareDir
 version=1.001002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File/template b/srcpkgs/perl-Test-File/template
index 08d104ca38a..7206a9d5d8a 100644
--- a/srcpkgs/perl-Test-File/template
+++ b/srcpkgs/perl-Test-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File
 version=1.443
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-HTTP-Server-Simple/template b/srcpkgs/perl-Test-HTTP-Server-Simple/template
index a9ea7150716..215be3be929 100644
--- a/srcpkgs/perl-Test-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-Test-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-HTTP-Server-Simple
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Inter/template b/srcpkgs/perl-Test-Inter/template
index 321f710da5f..f43818096b0 100644
--- a/srcpkgs/perl-Test-Inter/template
+++ b/srcpkgs/perl-Test-Inter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Inter
 version=1.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Find-Rule"
diff --git a/srcpkgs/perl-Test-MockModule/template b/srcpkgs/perl-Test-MockModule/template
index 23acd60fdb8..1d7a8e5b1c3 100644
--- a/srcpkgs/perl-Test-MockModule/template
+++ b/srcpkgs/perl-Test-MockModule/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-MockModule
 version=0.172.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Test-Most/template b/srcpkgs/perl-Test-Most/template
index 6a9db439290..532381fa8ee 100644
--- a/srcpkgs/perl-Test-Most/template
+++ b/srcpkgs/perl-Test-Most/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Most
 version=0.37
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Needs/template b/srcpkgs/perl-Test-Needs/template
index e5c81edc3ac..5e54b40b06c 100644
--- a/srcpkgs/perl-Test-Needs/template
+++ b/srcpkgs/perl-Test-Needs/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Needs
 version=0.002006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-NoWarnings/template b/srcpkgs/perl-Test-NoWarnings/template
index 96e81fec90f..fd15cd958a0 100644
--- a/srcpkgs/perl-Test-NoWarnings/template
+++ b/srcpkgs/perl-Test-NoWarnings/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Test::NoWarnings - Make sure you did not emit warnings while testing.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-NoWarnings"
diff --git a/srcpkgs/perl-Test-Output/template b/srcpkgs/perl-Test-Output/template
index df03ea4add2..5a625bee5f3 100644
--- a/srcpkgs/perl-Test-Output/template
+++ b/srcpkgs/perl-Test-Output/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Output
 version=1.031
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Pod-Coverage/template b/srcpkgs/perl-Test-Pod-Coverage/template
index a752e59d35d..19cb1a8f2f9 100644
--- a/srcpkgs/perl-Test-Pod-Coverage/template
+++ b/srcpkgs/perl-Test-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Pod-Coverage
 version=1.10
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Pod-Coverage"
diff --git a/srcpkgs/perl-Test-Pod/template b/srcpkgs/perl-Test-Pod/template
index c34f8ea27df..cbfd3ff23c2 100644
--- a/srcpkgs/perl-Test-Pod/template
+++ b/srcpkgs/perl-Test-Pod/template
@@ -12,4 +12,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Test-Pod"
 distfiles="${CPAN_SITE}/Test/Test-Pod-${version}.tar.gz"
 checksum=60a8dbcc60168bf1daa5cc2350236df9343e9878f4ab9830970a5dde6fe8e5fc
-archs=noarch
diff --git a/srcpkgs/perl-Test-Requires/template b/srcpkgs/perl-Test-Requires/template
index 64ffb6664b7..8e8818008b7 100644
--- a/srcpkgs/perl-Test-Requires/template
+++ b/srcpkgs/perl-Test-Requires/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Requires
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-RequiresInternet/template b/srcpkgs/perl-Test-RequiresInternet/template
index 69d8f515348..075072dee81 100644
--- a/srcpkgs/perl-Test-RequiresInternet/template
+++ b/srcpkgs/perl-Test-RequiresInternet/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-RequiresInternet
 version=0.05
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Script/template b/srcpkgs/perl-Test-Script/template
index 3dc87e44f2f..ae1409a00ae 100644
--- a/srcpkgs/perl-Test-Script/template
+++ b/srcpkgs/perl-Test-Script/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Script
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Probe-Perl perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Test-SharedFork/template b/srcpkgs/perl-Test-SharedFork/template
index b975ff0ecc3..66b02b46b37 100644
--- a/srcpkgs/perl-Test-SharedFork/template
+++ b/srcpkgs/perl-Test-SharedFork/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-SharedFork
 version=0.35
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Simple/template b/srcpkgs/perl-Test-Simple/template
index 963b288dc55..daa105b57de 100644
--- a/srcpkgs/perl-Test-Simple/template
+++ b/srcpkgs/perl-Test-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Simple
 version=1.302175
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Subroutines/template b/srcpkgs/perl-Test-Subroutines/template
index acfd9da0cd8..316a27b3ab7 100644
--- a/srcpkgs/perl-Test-Subroutines/template
+++ b/srcpkgs/perl-Test-Subroutines/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Subroutines
 version=1.113350
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-TCP/template b/srcpkgs/perl-Test-TCP/template
index 31caea2c412..48ff54b37a0 100644
--- a/srcpkgs/perl-Test-TCP/template
+++ b/srcpkgs/perl-Test-TCP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-TCP
 version=2.22
 revision=1
-archs=noarch
 wrksrc="Test-TCP-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Time/template b/srcpkgs/perl-Test-Time/template
index 5af68205289..7f65a8e54e2 100644
--- a/srcpkgs/perl-Test-Time/template
+++ b/srcpkgs/perl-Test-Time/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Time
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Trap/template b/srcpkgs/perl-Test-Trap/template
index 79e8b842023..108e7c6e2d3 100644
--- a/srcpkgs/perl-Test-Trap/template
+++ b/srcpkgs/perl-Test-Trap/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Data-Dump"
 makedepends="$hostmakedepends"
 depends="$hostmakedepends"
-archs=noarch
 short_desc='Test::Trap - Trap exit codes, exceptions, output, etc.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-Trap"
diff --git a/srcpkgs/perl-Test-UseAllModules/template b/srcpkgs/perl-Test-UseAllModules/template
index 1205fc0be5d..003c510ec78 100644
--- a/srcpkgs/perl-Test-UseAllModules/template
+++ b/srcpkgs/perl-Test-UseAllModules/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Test-UseAllModules"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Test/Test-UseAllModules-${version}.tar.gz"
 checksum=a71f2fe8b96ab8bfc2760aa1d3135ea049a5b20dcb105457b769a1195c7a2509
-archs=noarch
diff --git a/srcpkgs/perl-Test-Warn/template b/srcpkgs/perl-Test-Warn/template
index 174a5303531..a643e723110 100644
--- a/srcpkgs/perl-Test-Warn/template
+++ b/srcpkgs/perl-Test-Warn/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warn
 version=0.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Warnings/template b/srcpkgs/perl-Test-Warnings/template
index 465830261d6..988e26c5ae4 100644
--- a/srcpkgs/perl-Test-Warnings/template
+++ b/srcpkgs/perl-Test-Warnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warnings
 version=0.030
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Weaken/template b/srcpkgs/perl-Test-Weaken/template
index f336b5a09b6..6cfef3bf09a 100644
--- a/srcpkgs/perl-Test-Weaken/template
+++ b/srcpkgs/perl-Test-Weaken/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Weaken
 version=3.022000
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Without-Module/template b/srcpkgs/perl-Test-Without-Module/template
index 662a2293596..f869abe5d61 100644
--- a/srcpkgs/perl-Test-Without-Module/template
+++ b/srcpkgs/perl-Test-Without-Module/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Without-Module
 version=0.20
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-YAML/template b/srcpkgs/perl-Test-YAML/template
index 21f167214ef..a4c1e3c1389 100644
--- a/srcpkgs/perl-Test-YAML/template
+++ b/srcpkgs/perl-Test-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-YAML
 version=1.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-utf8/template b/srcpkgs/perl-Test-utf8/template
index 3b331fae4ec..56e18704f89 100644
--- a/srcpkgs/perl-Test-utf8/template
+++ b/srcpkgs/perl-Test-utf8/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-utf8
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Plugin-NoWarnings/template b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
index 45501cb5757..31813c6a98e 100644
--- a/srcpkgs/perl-Test2-Plugin-NoWarnings/template
+++ b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Plugin-NoWarnings
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Suite/template b/srcpkgs/perl-Test2-Suite/template
index 57ac88d0ff6..82813453486 100644
--- a/srcpkgs/perl-Test2-Suite/template
+++ b/srcpkgs/perl-Test2-Suite/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Suite
 version=0.000129
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-ASCIITable/template b/srcpkgs/perl-Text-ASCIITable/template
index c9cde14602c..3250aa44596 100644
--- a/srcpkgs/perl-Text-ASCIITable/template
+++ b/srcpkgs/perl-Text-ASCIITable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-ASCIITable
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Text-Aligner/template b/srcpkgs/perl-Text-Aligner/template
index d2c819ffc37..fcecd066492 100644
--- a/srcpkgs/perl-Text-Aligner/template
+++ b/srcpkgs/perl-Text-Aligner/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Aligner
 version=0.16
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Autoformat/template b/srcpkgs/perl-Text-Autoformat/template
index 38486635f16..d154567480e 100644
--- a/srcpkgs/perl-Text-Autoformat/template
+++ b/srcpkgs/perl-Text-Autoformat/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Autoformat
 version=1.75
 revision=1
-archs=noarch
 wrksrc="Text-Autoformat-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Reform"
diff --git a/srcpkgs/perl-Text-CSV/template b/srcpkgs/perl-Text-CSV/template
index b5a7d98cca5..20fa46051ac 100644
--- a/srcpkgs/perl-Text-CSV/template
+++ b/srcpkgs/perl-Text-CSV/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-CSV
 version=2.00
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Diff/template b/srcpkgs/perl-Text-Diff/template
index 9867a6ea528..73f9054c0d9 100644
--- a/srcpkgs/perl-Text-Diff/template
+++ b/srcpkgs/perl-Text-Diff/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Algorithm-Diff"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Text::Diff - Perform diffs on files and record sets'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Text-Diff"
diff --git a/srcpkgs/perl-Text-Glob/template b/srcpkgs/perl-Text-Glob/template
index cfe57391caf..3d4a030dd06 100644
--- a/srcpkgs/perl-Text-Glob/template
+++ b/srcpkgs/perl-Text-Glob/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Glob
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Markdown/template b/srcpkgs/perl-Text-Markdown/template
index 753ace32d12..300414f4746 100644
--- a/srcpkgs/perl-Text-Markdown/template
+++ b/srcpkgs/perl-Text-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Markdown
 version=1.000031
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Reform/template b/srcpkgs/perl-Text-Reform/template
index dd1b6b62268..9cd9582f468 100644
--- a/srcpkgs/perl-Text-Reform/template
+++ b/srcpkgs/perl-Text-Reform/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Reform
 version=1.20
 revision=2
-archs=noarch
 wrksrc="Text-Reform-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Roman/template b/srcpkgs/perl-Text-Roman/template
index 80d0865b293..a5d09c1287b 100644
--- a/srcpkgs/perl-Text-Roman/template
+++ b/srcpkgs/perl-Text-Roman/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Roman
 version=3.5
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Table/template b/srcpkgs/perl-Text-Table/template
index 4f74932bfe9..ed02ceae69e 100644
--- a/srcpkgs/perl-Text-Table/template
+++ b/srcpkgs/perl-Text-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Table
 version=1.134
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Unidecode/template b/srcpkgs/perl-Text-Unidecode/template
index 220aa563058..ed3ecd863ac 100644
--- a/srcpkgs/perl-Text-Unidecode/template
+++ b/srcpkgs/perl-Text-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Unidecode
 version=1.30
 revision=1
-archs=noarch
 wrksrc="Text-Unidecode-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-WrapI18N/template b/srcpkgs/perl-Text-WrapI18N/template
index b356989f72c..89897a18bbe 100644
--- a/srcpkgs/perl-Text-WrapI18N/template
+++ b/srcpkgs/perl-Text-WrapI18N/template
@@ -4,7 +4,6 @@ version=0.06
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl perl-Text-CharWidth"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-Text-XLogfile/template b/srcpkgs/perl-Text-XLogfile/template
index 6cc929a6493..893e5ff0710 100644
--- a/srcpkgs/perl-Text-XLogfile/template
+++ b/srcpkgs/perl-Text-XLogfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-XLogfile
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Cycle/template b/srcpkgs/perl-Tie-Cycle/template
index 5010b16ec37..35e968852cd 100644
--- a/srcpkgs/perl-Tie-Cycle/template
+++ b/srcpkgs/perl-Tie-Cycle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Cycle
 version=1.225
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Handle-Offset/template b/srcpkgs/perl-Tie-Handle-Offset/template
index 88e4298951d..fd4aa1745fa 100644
--- a/srcpkgs/perl-Tie-Handle-Offset/template
+++ b/srcpkgs/perl-Tie-Handle-Offset/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Handle-Offset
 version=0.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-IxHash/template b/srcpkgs/perl-Tie-IxHash/template
index 9d926ee407e..4fb6114ce42 100644
--- a/srcpkgs/perl-Tie-IxHash/template
+++ b/srcpkgs/perl-Tie-IxHash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-IxHash
 version=1.23
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-Duration/template b/srcpkgs/perl-Time-Duration/template
index 686edca3d76..23fa2c1e0ee 100644
--- a/srcpkgs/perl-Time-Duration/template
+++ b/srcpkgs/perl-Time-Duration/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-Duration
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-modules/template b/srcpkgs/perl-Time-modules/template
index 0bd579a552a..c79a85f112d 100644
--- a/srcpkgs/perl-Time-modules/template
+++ b/srcpkgs/perl-Time-modules/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-modules
 version=2013.0912
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-TimeDate/template b/srcpkgs/perl-TimeDate/template
index d4614cb2855..ffde91659cd 100644
--- a/srcpkgs/perl-TimeDate/template
+++ b/srcpkgs/perl-TimeDate/template
@@ -2,7 +2,6 @@
 pkgname=perl-TimeDate
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tree-DAG_Node/template b/srcpkgs/perl-Tree-DAG_Node/template
index 54039240222..5e269fdb381 100644
--- a/srcpkgs/perl-Tree-DAG_Node/template
+++ b/srcpkgs/perl-Tree-DAG_Node/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-File-Slurp-Tiny"
 depends="${makedepends}"
-archs=noarch
 short_desc="Tree::DAG_Node - An N-ary tree"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/Tree-DAG_Node"
diff --git a/srcpkgs/perl-Try-Tiny/template b/srcpkgs/perl-Try-Tiny/template
index 0d80bce773c..3cd203ebb79 100644
--- a/srcpkgs/perl-Try-Tiny/template
+++ b/srcpkgs/perl-Try-Tiny/template
@@ -14,7 +14,6 @@ homepage="https://metacpan.org/release/Try-Tiny"
 license="MIT"
 distfiles="${CPAN_SITE}/XML/ETHER/Try-Tiny-${version}.tar.gz"
 checksum=da5bd0d5c903519bbf10bb9ba0cb7bcac0563882bcfe4503aee3fb143eddef6b
-archs=noarch
 
 post_install() {
 	vlicense LICENCE LICENSE
diff --git a/srcpkgs/perl-Types-Serialiser/template b/srcpkgs/perl-Types-Serialiser/template
index 8946b5040f1..dd496b881ba 100644
--- a/srcpkgs/perl-Types-Serialiser/template
+++ b/srcpkgs/perl-Types-Serialiser/template
@@ -2,7 +2,6 @@
 pkgname=perl-Types-Serialiser
 version=1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-URI/template b/srcpkgs/perl-URI/template
index 825be5c78fd..6cc6fce1a26 100644
--- a/srcpkgs/perl-URI/template
+++ b/srcpkgs/perl-URI/template
@@ -2,7 +2,6 @@
 pkgname=perl-URI
 version=1.76
 revision=1
-archs=noarch
 wrksrc="URI-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unicode-Tussle/template b/srcpkgs/perl-Unicode-Tussle/template
index 69503663e56..883dedfb1d0 100644
--- a/srcpkgs/perl-Unicode-Tussle/template
+++ b/srcpkgs/perl-Unicode-Tussle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unicode-Tussle
 version=1.111
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unix-Uptime/template b/srcpkgs/perl-Unix-Uptime/template
index 0c9454e3374..c522917d6f3 100644
--- a/srcpkgs/perl-Unix-Uptime/template
+++ b/srcpkgs/perl-Unix-Uptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unix-Uptime
 version=0.4000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-User-Identity/template b/srcpkgs/perl-User-Identity/template
index 53b43af710f..7a0e453bfb2 100644
--- a/srcpkgs/perl-User-Identity/template
+++ b/srcpkgs/perl-User-Identity/template
@@ -2,7 +2,6 @@
 pkgname=perl-User-Identity
 version=0.99
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WL/template b/srcpkgs/perl-WL/template
index 0f5fdbfe394..0553c2ea3e8 100644
--- a/srcpkgs/perl-WL/template
+++ b/srcpkgs/perl-WL/template
@@ -2,7 +2,6 @@
 pkgname=perl-WL
 version=0.92
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Form-UrlEncoded/template b/srcpkgs/perl-WWW-Form-UrlEncoded/template
index ccda0fc7384..e49fd8526d2 100644
--- a/srcpkgs/perl-WWW-Form-UrlEncoded/template
+++ b/srcpkgs/perl-WWW-Form-UrlEncoded/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Form-UrlEncoded
 version=0.26
 revision=1
-archs=noarch
 wrksrc="WWW-Form-UrlEncoded-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Mechanize/template b/srcpkgs/perl-WWW-Mechanize/template
index 6e00152f672..cd39fd9dc92 100644
--- a/srcpkgs/perl-WWW-Mechanize/template
+++ b/srcpkgs/perl-WWW-Mechanize/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Mechanize
 version=2.00
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-CGI perl-HTML-Form perl-HTML-Tree
diff --git a/srcpkgs/perl-WWW-RobotRules/template b/srcpkgs/perl-WWW-RobotRules/template
index c21656741a3..3c3b3c925e4 100644
--- a/srcpkgs/perl-WWW-RobotRules/template
+++ b/srcpkgs/perl-WWW-RobotRules/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-RobotRules
 version=6.02
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WebService-MusicBrainz/template b/srcpkgs/perl-WebService-MusicBrainz/template
index a4d281f6c13..4755a1d2c6b 100644
--- a/srcpkgs/perl-WebService-MusicBrainz/template
+++ b/srcpkgs/perl-WebService-MusicBrainz/template
@@ -2,7 +2,6 @@
 pkgname=perl-WebService-MusicBrainz
 version=1.0.5
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol-Other/template b/srcpkgs/perl-X11-Protocol-Other/template
index b076d9786c1..264a518269a 100644
--- a/srcpkgs/perl-X11-Protocol-Other/template
+++ b/srcpkgs/perl-X11-Protocol-Other/template
@@ -2,7 +2,6 @@
 pkgname=perl-X11-Protocol-Other
 version=31
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol/template b/srcpkgs/perl-X11-Protocol/template
index 5cae4bdc214..a8f979b1f28 100644
--- a/srcpkgs/perl-X11-Protocol/template
+++ b/srcpkgs/perl-X11-Protocol/template
@@ -3,7 +3,6 @@ pkgname=perl-X11-Protocol
 #TODO
 version=0.56
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-PrettyPrint/template b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
index 8e8cc1b013a..741cb36485d 100644
--- a/srcpkgs/perl-XML-LibXML-PrettyPrint/template
+++ b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-PrettyPrint
 version=0.006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-Simple/template b/srcpkgs/perl-XML-LibXML-Simple/template
index 1b4fb0e6ff3..7fe3b756c91 100644
--- a/srcpkgs/perl-XML-LibXML-Simple/template
+++ b/srcpkgs/perl-XML-LibXML-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-Simple
 version=1.01
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-XML-LibXML perl-File-Slurp-Tiny"
diff --git a/srcpkgs/perl-XML-NamespaceSupport/template b/srcpkgs/perl-XML-NamespaceSupport/template
index 4163007fae5..6bd16959aba 100644
--- a/srcpkgs/perl-XML-NamespaceSupport/template
+++ b/srcpkgs/perl-XML-NamespaceSupport/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-NamespaceSupport
 version=1.12
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Parser-Lite/template b/srcpkgs/perl-XML-Parser-Lite/template
index 3f2bea8e8f5..56b5725ab10 100644
--- a/srcpkgs/perl-XML-Parser-Lite/template
+++ b/srcpkgs/perl-XML-Parser-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Parser-Lite
 version=0.722
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX-Base/template b/srcpkgs/perl-XML-SAX-Base/template
index 4a7baac7fce..f9b270aa02f 100644
--- a/srcpkgs/perl-XML-SAX-Base/template
+++ b/srcpkgs/perl-XML-SAX-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX-Base
 version=1.09
 revision=2
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX/template b/srcpkgs/perl-XML-SAX/template
index 33a0de887bc..973a341ba84 100644
--- a/srcpkgs/perl-XML-SAX/template
+++ b/srcpkgs/perl-XML-SAX/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Simple/template b/srcpkgs/perl-XML-Simple/template
index 3b8f8c40688..4a0b0f4b6e8 100644
--- a/srcpkgs/perl-XML-Simple/template
+++ b/srcpkgs/perl-XML-Simple/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 maintainer="Orphaned <orphan@voidlinux.org>"
 distfiles="${CPAN_SITE}/XML/XML-Simple-$version.tar.gz"
 checksum=531fddaebea2416743eb5c4fdfab028f502123d9a220405a4100e68fc480dbf8
-archs=noarch
diff --git a/srcpkgs/perl-XML-Smart/template b/srcpkgs/perl-XML-Smart/template
index 622a2ecf1be..1dbe4ced2fc 100644
--- a/srcpkgs/perl-XML-Smart/template
+++ b/srcpkgs/perl-XML-Smart/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Smart
 version=1.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Twig/template b/srcpkgs/perl-XML-Twig/template
index 9ec76ea5248..ce3d0458926 100644
--- a/srcpkgs/perl-XML-Twig/template
+++ b/srcpkgs/perl-XML-Twig/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Twig
 version=3.52
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Writer/template b/srcpkgs/perl-XML-Writer/template
index cde06ed960b..31e76ae5831 100644
--- a/srcpkgs/perl-XML-Writer/template
+++ b/srcpkgs/perl-XML-Writer/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Writer
 version=0.625
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-XPath/template b/srcpkgs/perl-XML-XPath/template
index 7b7f6bde62b..a709df1ec21 100644
--- a/srcpkgs/perl-XML-XPath/template
+++ b/srcpkgs/perl-XML-XPath/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-XPath
 version=1.44
 revision=1
-archs=noarch
 wrksrc="XML-XPath-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML-Tiny/template b/srcpkgs/perl-YAML-Tiny/template
index 84a40add1d4..fd6de16f557 100644
--- a/srcpkgs/perl-YAML-Tiny/template
+++ b/srcpkgs/perl-YAML-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML-Tiny
 version=1.73
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML/template b/srcpkgs/perl-YAML/template
index b73e193ed08..7b8cd68384b 100644
--- a/srcpkgs/perl-YAML/template
+++ b/srcpkgs/perl-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-common-sense/template b/srcpkgs/perl-common-sense/template
index 2a2ec4a54ef..d651e673d95 100644
--- a/srcpkgs/perl-common-sense/template
+++ b/srcpkgs/perl-common-sense/template
@@ -2,7 +2,6 @@
 pkgname=perl-common-sense
 version=3.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-local-lib/template b/srcpkgs/perl-local-lib/template
index afc54934dcf..1204b0dba79 100644
--- a/srcpkgs/perl-local-lib/template
+++ b/srcpkgs/perl-local-lib/template
@@ -2,7 +2,6 @@
 pkgname=perl-local-lib
 version=2.000024
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-autoclean/template b/srcpkgs/perl-namespace-autoclean/template
index a523c1aba25..210020077ac 100644
--- a/srcpkgs/perl-namespace-autoclean/template
+++ b/srcpkgs/perl-namespace-autoclean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-autoclean
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-clean/template b/srcpkgs/perl-namespace-clean/template
index c0a01f76b59..6625382226c 100644
--- a/srcpkgs/perl-namespace-clean/template
+++ b/srcpkgs/perl-namespace-clean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-clean
 version=0.27
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-rename/template b/srcpkgs/perl-rename/template
index 5cd20da30ac..bdd861b7d43 100644
--- a/srcpkgs/perl-rename/template
+++ b/srcpkgs/perl-rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-rename
 version=1.9
 revision=2
-archs=noarch
 wrksrc="rename-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-strictures/template b/srcpkgs/perl-strictures/template
index f682d3b3732..8ecccbe64d6 100644
--- a/srcpkgs/perl-strictures/template
+++ b/srcpkgs/perl-strictures/template
@@ -2,7 +2,6 @@
 pkgname=perl-strictures
 version=2.000006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-tainting/template b/srcpkgs/perl-tainting/template
index f24735ecfba..313f390856c 100644
--- a/srcpkgs/perl-tainting/template
+++ b/srcpkgs/perl-tainting/template
@@ -2,7 +2,6 @@
 pkgname=perl-tainting
 version=0.02
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perltidy/template b/srcpkgs/perltidy/template
index 64d15fc211c..3db9d250866 100644
--- a/srcpkgs/perltidy/template
+++ b/srcpkgs/perltidy/template
@@ -2,7 +2,6 @@
 pkgname=perltidy
 version=20200619
 revision=1
-archs=noarch
 wrksrc="Perl-Tidy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/persepolis/template b/srcpkgs/persepolis/template
index 696afdd62e6..d04d25bca08 100644
--- a/srcpkgs/persepolis/template
+++ b/srcpkgs/persepolis/template
@@ -2,7 +2,6 @@
 pkgname=persepolis
 version=3.2.0
 revision=2
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools python3-setproctitle python3-requests
 	python3-psutil aria2 ffmpeg libnotify pulseaudio youtube-dl sound-theme-freedesktop
diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 6cfdf8170c0..97b33d3071c 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -2,7 +2,6 @@
 pkgname=peru
 version=1.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="peru"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pex/template b/srcpkgs/pex/template
index 105fb3e896d..544c117a4c1 100644
--- a/srcpkgs/pex/template
+++ b/srcpkgs/pex/template
@@ -2,7 +2,6 @@
 pkgname=pex
 version=2.1.15
 revision=1
-archs=noarch
 wrksrc="pex-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/pfetch/template b/srcpkgs/pfetch/template
index d67c2564bfb..992ed6619a4 100644
--- a/srcpkgs/pfetch/template
+++ b/srcpkgs/pfetch/template
@@ -2,7 +2,6 @@
 pkgname=pfetch
 version=0.6.0
 revision=1
-archs="noarch"
 short_desc="System information tool written in POSIX sh"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 license="MIT"
diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index 51835304d71..3120ac477fc 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -2,7 +2,6 @@
 pkgname=pgcli
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
diff --git a/srcpkgs/phoronix-test-suite/template b/srcpkgs/phoronix-test-suite/template
index 417e31c77bf..fe798298d6e 100644
--- a/srcpkgs/phoronix-test-suite/template
+++ b/srcpkgs/phoronix-test-suite/template
@@ -2,7 +2,6 @@
 pkgname=phoronix-test-suite
 version=9.6.1
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="php"
 short_desc="Comprehensive testing and benchmarking platform for Linux"
diff --git a/srcpkgs/phpMyAdmin/template b/srcpkgs/phpMyAdmin/template
index 8c82cc872b6..9a316fba310 100644
--- a/srcpkgs/phpMyAdmin/template
+++ b/srcpkgs/phpMyAdmin/template
@@ -2,7 +2,6 @@
 pkgname=phpMyAdmin
 version=5.0.2
 revision=1
-archs=noarch
 wrksrc="phpMyAdmin-${version}-all-languages"
 conf_files="/etc/webapps/phpMyAdmin/config.inc.php"
 depends="php mysql"
diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index ca1f29c11de..cdd41a84cfd 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -2,7 +2,6 @@
 pkgname=picard
 version=2.3.2
 revision=1
-archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module
 make_install_args="--disable-autoupdate"
diff --git a/srcpkgs/pingus/template b/srcpkgs/pingus/template
index 5551b01171f..b7277d10be3 100644
--- a/srcpkgs/pingus/template
+++ b/srcpkgs/pingus/template
@@ -29,7 +29,6 @@ do_install() {
 
 pingus-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pingus
 	}
diff --git a/srcpkgs/pioneer/template b/srcpkgs/pioneer/template
index b8eb8607375..ce00e4469fa 100644
--- a/srcpkgs/pioneer/template
+++ b/srcpkgs/pioneer/template
@@ -33,7 +33,6 @@ pioneer-modelcompiler_package() {
 
 pioneer-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pioneer
 	}
diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index 0f54fe32153..ac49322856e 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -2,7 +2,6 @@
 pkgname=piper
 version=0.5.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext libratbag pkg-config glib-devel python3-lxml"
 makedepends="python3-devel python3-gobject-devel"
diff --git a/srcpkgs/pipewire/template b/srcpkgs/pipewire/template
index 494f2296327..d6a31ad764a 100644
--- a/srcpkgs/pipewire/template
+++ b/srcpkgs/pipewire/template
@@ -151,7 +151,6 @@ libjack-pipewire_package() {
 }
 
 pipewire-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/plantuml/template b/srcpkgs/plantuml/template
index a28ec87cf43..fd71dd487f0 100644
--- a/srcpkgs/plantuml/template
+++ b/srcpkgs/plantuml/template
@@ -3,7 +3,6 @@ pkgname=plantuml
 reverts="8047_1 8053_1 8059_1"
 version=1.2020.15
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="virtual?java-environment graphviz"
diff --git a/srcpkgs/plasma-workspace-wallpapers/template b/srcpkgs/plasma-workspace-wallpapers/template
index 03f0cd0aff8..4a7d9c5a3cd 100644
--- a/srcpkgs/plasma-workspace-wallpapers/template
+++ b/srcpkgs/plasma-workspace-wallpapers/template
@@ -2,7 +2,6 @@
 pkgname=plasma-workspace-wallpapers
 version=5.19.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/plata-theme/template b/srcpkgs/plata-theme/template
index 7701b8598c7..f0da75a1120 100644
--- a/srcpkgs/plata-theme/template
+++ b/srcpkgs/plata-theme/template
@@ -2,7 +2,6 @@
 pkgname=plata-theme
 version=0.9.8
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-parallel --enable-telegram"
 hostmakedepends="automake libtool pkg-config glib-devel libxml2 sassc inkscape
diff --git a/srcpkgs/platformio/template b/srcpkgs/platformio/template
index b8ec9a97db9..6831a5cfab7 100644
--- a/srcpkgs/platformio/template
+++ b/srcpkgs/platformio/template
@@ -2,7 +2,6 @@
 pkgname=platformio
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="platformio-core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index 6d3483ae251..f5c171ff726 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -2,7 +2,6 @@
 pkgname=playitslowly
 version=1.5.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 python3-gobject gtk+3 gstreamer1 gst-plugins-base1 gst-plugins-good1
diff --git a/srcpkgs/plymouth/template b/srcpkgs/plymouth/template
index e60716016a8..bc5466e18c8 100644
--- a/srcpkgs/plymouth/template
+++ b/srcpkgs/plymouth/template
@@ -48,7 +48,6 @@ plymouth-devel_package() {
 
 plymouth-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	depends="void-artwork"
 	pkg_install() {
 		vmove usr/share/plymouth/themes
diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index c2b2d92e87a..c0e4377a1d7 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -2,7 +2,6 @@
 pkgname=pmbootstrap
 version=1.22.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools coreutils procps-ng libressl git"
diff --git a/srcpkgs/po4a/template b/srcpkgs/po4a/template
index afa923f9e3e..9e9a726118e 100644
--- a/srcpkgs/po4a/template
+++ b/srcpkgs/po4a/template
@@ -2,7 +2,6 @@
 pkgname=po4a
 version=0.61
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 _perldeps="perl perl-Text-WrapI18N perl-Term-ReadKey perl-Unicode-LineBreak
  perl-SGMLSpm perl-YAML-Tiny"
diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index eee3691d959..072c9186985 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -2,7 +2,6 @@
 pkgname=pockyt
 version=1.2
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-parse"
diff --git a/srcpkgs/podman-compose/template b/srcpkgs/podman-compose/template
index 4f4467de689..7df91e17cb8 100644
--- a/srcpkgs/podman-compose/template
+++ b/srcpkgs/podman-compose/template
@@ -2,7 +2,6 @@
 pkgname=podman-compose
 version=0.1.5
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-yaml"
 depends="${hostmakedepends} podman"
diff --git a/srcpkgs/polysh/template b/srcpkgs/polysh/template
index 36e743fabbb..a374979aeab 100644
--- a/srcpkgs/polysh/template
+++ b/srcpkgs/polysh/template
@@ -2,7 +2,6 @@
 pkgname=polysh
 version=0.4
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="polysh"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/pony-stable/template b/srcpkgs/pony-stable/template
index 4bd27ef0538..87694cad4ed 100644
--- a/srcpkgs/pony-stable/template
+++ b/srcpkgs/pony-stable/template
@@ -2,7 +2,6 @@
 pkgname=pony-stable
 version=0.2.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Simple dependency manager for the Pony language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponyc/template b/srcpkgs/ponyc/template
index 76f6e23475a..b7a79ce00a1 100644
--- a/srcpkgs/ponyc/template
+++ b/srcpkgs/ponyc/template
@@ -2,7 +2,6 @@
 pkgname=ponyc
 version=0.33.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Pony programming language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponysay/template b/srcpkgs/ponysay/template
index 5e916c5d485..ea0e87a5280 100644
--- a/srcpkgs/ponysay/template
+++ b/srcpkgs/ponysay/template
@@ -2,7 +2,6 @@
 pkgname=ponysay
 version=3.0.3
 revision=4
-archs=noarch
 hostmakedepends="python3 texinfo"
 depends="python3"
 short_desc="Pony rewrite of cowsay"
diff --git a/srcpkgs/poppler-data/template b/srcpkgs/poppler-data/template
index a83e7dbcf65..babd5990158 100644
--- a/srcpkgs/poppler-data/template
+++ b/srcpkgs/poppler-data/template
@@ -2,7 +2,6 @@
 pkgname=poppler-data
 version=0.4.9
 revision=1
-archs=noarch
 short_desc="Encoding data for the poppler PDF rendering library"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, GPL-2.0-or-later, BSD-3-Clause"
diff --git a/srcpkgs/postgresql/template b/srcpkgs/postgresql/template
index 2880d5f673b..b68ff9ca9f0 100644
--- a/srcpkgs/postgresql/template
+++ b/srcpkgs/postgresql/template
@@ -74,7 +74,6 @@ post_install() {
 
 postgresql-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/postgresql12/template b/srcpkgs/postgresql12/template
index 7d724e174e4..86ba8e7e9ff 100644
--- a/srcpkgs/postgresql12/template
+++ b/srcpkgs/postgresql12/template
@@ -104,7 +104,6 @@ _substitute() {
 
 postgresql12-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove ${_prefix}/share/doc
 	}
diff --git a/srcpkgs/printrun/template b/srcpkgs/printrun/template
index 3784d97eaa4..bdc6ce8d85c 100644
--- a/srcpkgs/printrun/template
+++ b/srcpkgs/printrun/template
@@ -2,7 +2,6 @@
 pkgname=printrun
 version=1.6.0
 revision=3
-archs=noarch
 wrksrc="Printrun-printrun-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools python-pyserial"
diff --git a/srcpkgs/pritunl-client/template b/srcpkgs/pritunl-client/template
index d61a2bfc7bc..a184a2f925c 100644
--- a/srcpkgs/pritunl-client/template
+++ b/srcpkgs/pritunl-client/template
@@ -2,7 +2,6 @@
 pkgname=pritunl-client
 version=1.0.1865.25
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="pritunl-client"
 make_install_args="--no-upstart --no-systemd"
diff --git a/srcpkgs/profile-cleaner/template b/srcpkgs/profile-cleaner/template
index 0128620c1af..1d5e7ba2237 100644
--- a/srcpkgs/profile-cleaner/template
+++ b/srcpkgs/profile-cleaner/template
@@ -2,7 +2,6 @@
 pkgname=profile-cleaner
 version=2.37
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Reduces profile size by cleaning their sqlite databases"
 depends="bash sqlite bc parallel findutils"
diff --git a/srcpkgs/protonvpn-cli/template b/srcpkgs/protonvpn-cli/template
index fb8ed8e0b57..081cbeea0b1 100644
--- a/srcpkgs/protonvpn-cli/template
+++ b/srcpkgs/protonvpn-cli/template
@@ -2,7 +2,6 @@
 pkgname=protonvpn-cli
 version=2.2.4
 revision=1
-archs=noarch
 wrksrc="linux-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pslist/template b/srcpkgs/pslist/template
index 52f36b6c129..673b4d932a9 100644
--- a/srcpkgs/pslist/template
+++ b/srcpkgs/pslist/template
@@ -2,7 +2,6 @@
 pkgname=pslist
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANDIR=/usr/share/man/man"
 make_check_target="test"
diff --git a/srcpkgs/psuinfo/template b/srcpkgs/psuinfo/template
index ca491f25bef..0705658530b 100644
--- a/srcpkgs/psuinfo/template
+++ b/srcpkgs/psuinfo/template
@@ -2,7 +2,6 @@
 pkgname=psuinfo
 version=1.1
 revision=1
-archs=noarch
 depends="python3>=3.5 python3-psutil"
 short_desc="Script to display customizable system info in Tint2 or other panels"
 maintainer="Piotr Miller <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/public-inbox/template b/srcpkgs/public-inbox/template
index 7a7198e79b5..ab9f82f6a82 100644
--- a/srcpkgs/public-inbox/template
+++ b/srcpkgs/public-inbox/template
@@ -2,7 +2,6 @@
 pkgname=public-inbox
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version/pre/-pre}"
 build_style=perl-module
 hostmakedepends="git perl perl-DBD-SQLite perl-Danga-Socket
diff --git a/srcpkgs/pulsemixer/template b/srcpkgs/pulsemixer/template
index 918b5af771a..e9f2c4f272d 100644
--- a/srcpkgs/pulsemixer/template
+++ b/srcpkgs/pulsemixer/template
@@ -2,7 +2,6 @@
 pkgname=pulsemixer
 version=1.5.1
 revision=1
-archs=noarch
 depends="python3 libpulseaudio"
 short_desc="CLI and curses mixer for Pulseaudio"
 maintainer="Dean Thomson <mrrobot@fsociety.info>"
diff --git a/srcpkgs/puppet/template b/srcpkgs/puppet/template
index 404319be63e..8156914f5d3 100644
--- a/srcpkgs/puppet/template
+++ b/srcpkgs/puppet/template
@@ -2,7 +2,6 @@
 pkgname=puppet
 version=6.16.0
 revision=1
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby facter-devel hiera which"
 makedepends="facter-devel"
diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index c0becb7bf58..e18b9ae3b5e 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -2,7 +2,6 @@
 pkgname=py3status
 version=3.28
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pyudev"
diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index d0594aa77f4..c3113303009 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -4,7 +4,6 @@ version=0.12.4
 revision=3
 build_style=python3-module
 pycompile_module="pychess"
-archs=noarch
 hostmakedepends="python3-setuptools"
 depends="gobject-introspection gst-plugins-base1 gtksourceview python3-gobject"
 short_desc="A GTK chess client written in Python"
diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index c9066259862..d4480023613 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -2,7 +2,6 @@
 pkgname=pycp
 version=8.0.8
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pycp"
 hostmakedepends="help2man python3-setuptools"
diff --git a/srcpkgs/pylint/template b/srcpkgs/pylint/template
index bd44b2c2d7d..3cf2c6f5687 100644
--- a/srcpkgs/pylint/template
+++ b/srcpkgs/pylint/template
@@ -2,7 +2,6 @@
 pkgname=pylint
 version=2.4.4
 revision=2
-archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module
 pycompile_module="pylint"
diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 808c298c7b5..7ed0770161b 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -2,7 +2,6 @@
 pkgname=pyradio
 version=0.8.7.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/pysolfc-cardsets/template b/srcpkgs/pysolfc-cardsets/template
index 2b1786bbce4..19a94b652f6 100644
--- a/srcpkgs/pysolfc-cardsets/template
+++ b/srcpkgs/pysolfc-cardsets/template
@@ -3,7 +3,6 @@ pkgname=pysolfc-cardsets
 version=2.0
 revision=1
 wrksrc="PySolFC-Cardsets-${version}"
-archs=noarch
 build_style=fetch
 short_desc="PySolFC Cardsets"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index b634a8da817..9f405513f6c 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -2,7 +2,6 @@
 pkgname=pysolfc
 version=2.10.1
 revision=1
-archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="gettext python3-pygame python3-random2 python3-six
diff --git a/srcpkgs/pystopwatch/template b/srcpkgs/pystopwatch/template
index b10e194b021..1540db0c152 100644
--- a/srcpkgs/pystopwatch/template
+++ b/srcpkgs/pystopwatch/template
@@ -2,7 +2,6 @@
 pkgname=pystopwatch
 version=2019
 revision=1
-archs=noarch
 makedepends="pygtk-devel librsvg-devel"
 depends="python pygtk librsvg"
 short_desc="GTK2+ stopwatch written in Python"
diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index a8c2e30c74b..471aef78fd3 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,6 @@
 pkgname=python-Arrow
 version=0.15.5
 revision=1
-archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/a/arrow/arrow-${version}.tar.gz"
 checksum=5390e464e2c5f76971b60ffa7ee29c598c7501a294bc9f5e6dadcb251a5d027b
 
 python3-Arrow_package() {
-	archs=noarch
 	depends="python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 2b175b4ecba..d8482560e9d 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Babel
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-pytz"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="babel:pybabel:/usr/bin/pybabel3"
diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 956348442ff..b8f87d432bf 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -2,7 +2,6 @@
 pkgname=python-BeautifulSoup4
 version=4.8.2
 revision=1
-archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-BeautifulSoup4_package() {
-	archs=noarch
 	depends="python3 python3-soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index ce0447f4d35..d0f78cc8a5e 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -2,7 +2,6 @@
 pkgname=python-Cheroot
 version=8.3.1
 revision=1
-archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-Cheroot_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-more-itertools
 	 python3-jaraco.functools"
 	alternatives="cheroot:cheroot:/usr/bin/cheroot3"
diff --git a/srcpkgs/python-CherryPy/template b/srcpkgs/python-CherryPy/template
index b1e17cca37a..dc4db21f582 100644
--- a/srcpkgs/python-CherryPy/template
+++ b/srcpkgs/python-CherryPy/template
@@ -3,7 +3,6 @@ pkgname=python-CherryPy
 reverts="18.0.1_1 18.0.0_1"
 version=17.4.2
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python2-module
 pycompile_module="cherrypy"
diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 6549f5c0fae..e3049bfb0c8 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -2,7 +2,6 @@
 pkgname=python-Django
 version=1.11.29
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 3ca0de18077..d90c614b497 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Assets
 version=0.12
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_assets.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Assets_package() {
-	archs=noarch
 	depends="python3-Flask python3-webassets"
 	pycompile_module="flask_assets.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index e5b600bf922..ec0457edaa8 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Babel
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Babel python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index a9b982bdce6..8ccc741026f 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Login
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Login_package() {
-	archs=noarch
 	depends="python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index edf5c13560e..a5f93f870ae 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-OAuthlib
 version=0.9.5
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-OAuthlib_package() {
-	archs=noarch
 	depends="python3-Flask python3-requests-oauthlib"
 	pycompile_module="flask_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index ebac828a5b1..66b81795f21 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Script
 version=2.0.6
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_script"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Script_package() {
-	archs=noarch
 	depends="python3-Flask"
 	pycompile_module="flask_script"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index f72307f79be..5fbba684f2d 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-WTF
 version=0.14.3
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-WTF_package() {
-	archs=noarch
 	depends="python3-Flask python3-WTForms"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 1aa7f5208ed..c408c68feaf 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-Flask_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Werkzeug python3-itsdangerous python3-click"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="flask:flask:/usr/bin/flask3"
diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 232429265f1..d04bb9d9bf6 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -2,7 +2,6 @@
 pkgname=python-GitPython
 version=2.1.11
 revision=2
-archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module
 pycompile_module="git"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-GitPython_package() {
-	archs=noarch
 	depends="python3-gitdb"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index aaae9fcd002..57f7d363e0f 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -2,7 +2,6 @@
 pkgname=python-IPy
 version=1.00
 revision=2
-archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module
 pycompile_module="IPy.py"
@@ -21,7 +20,6 @@ post_install() {
 
 python3-IPy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="IPy.py"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index 3fcd44dc198..b7b7acd1086 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -2,7 +2,6 @@
 pkgname=python-Jinja2
 version=2.10.1
 revision=2
-archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module
 pycompile_module="jinja2"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-Jinja2_package() {
-	archs=noarch
 	depends="python3-MarkupSafe"
 	pycompile_module="jinja2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index f0184179b83..547e02dee29 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -2,7 +2,6 @@
 pkgname=python-Mako
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module
 pycompile_module="mako"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-Mako_package() {
-	archs=noarch
 	pycompile_module="mako"
 	depends="python3-setuptools python3-MarkupSafe"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index fa75ca590cc..7e426c6463c 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python-Markdown
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index 1eb15b49301..7e120f7f16a 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -2,7 +2,6 @@
 pkgname=python-Markups
 version=3.0.0
 revision=3
-archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Markups_package() {
-	archs=noarch
 	depends="python3 python3-markdown-math"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 8b8c4f5f1e6..cfb5ce7ee5e 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -2,7 +2,6 @@
 pkgname=python-MiniMock
 version=1.2.8
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="minimock.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-MiniMock_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="minimock.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyHamcrest/template b/srcpkgs/python-PyHamcrest/template
index 48f001595aa..f105d8557af 100644
--- a/srcpkgs/python-PyHamcrest/template
+++ b/srcpkgs/python-PyHamcrest/template
@@ -2,7 +2,6 @@
 pkgname=python-PyHamcrest
 version=1.9.0
 revision=2
-archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module
 pycompile_module="hamcrest"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-PyHamcrest_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="hamcrest"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index 79709575673..a5afbb8b356 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -2,7 +2,6 @@
 pkgname=python-PyOpenGL
 version=3.1.5
 revision=1
-archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-PyOpenGL_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index d464e59d617..cf6ceb24d86 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -2,7 +2,6 @@
 pkgname=python-Pygments
 version=2.5.2
 revision=1
-archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-Pygments_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pygments:pygmentize:/usr/bin/pygmentize3"
diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index 3eba13d0e9c..2a71b87f354 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -2,7 +2,6 @@
 pkgname=python-Pyro4
 version=4.80
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -34,7 +33,6 @@ python3-Pyro4_package() {
 	 pyro4:pyro4-ns:/usr/bin/pyro4-ns3
 	 pyro4:pyro4-nsc:/usr/bin/pyro4-nsc3
 	 pyro4:pyro4-test-echoserver:/usr/bin/pyro4-test-echoserver3"
-	archs=noarch
 	depends="python3-setuptools python3-serpent"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index 8d2db9a02b3..01c58198024 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -2,7 +2,6 @@
 pkgname=python-SPARQLWrapper
 version=1.8.4
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="SPARQLWrapper"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/S/SPARQLWrapper/SPARQLWrapper-${version}.tar.gz"
 checksum=21928e7a97f565e772cdeeb0abad428960f4307e3a13dbdd8f6d3da8a6a506c9
 
 python3-SPARQLWrapper_package() {
-	archs=noarch
 	depends="python3-rdflib"
 	pycompile_module="SPARQLWrapper"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 444eb1427d6..244948a7621 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python-Unidecode
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module
 pycompile_module="unidecode"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-Unidecode_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="unidecode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 33f16940cb8..cdc03a45a1f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -2,7 +2,6 @@
 pkgname=python-WTForms
 version=2.2.1
 revision=2
-archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module
 pycompile_module="wtforms"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-WTForms_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wtforms"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index b4bf1071851..5fcd9781c3d 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -2,7 +2,6 @@
 pkgname=python-Werkzeug
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-Werkzeug_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index 66856b206a7..92cb5811a13 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -3,7 +3,6 @@ pkgname=python-Whoosh
 version=2.7.4
 revision=2
 wrksrc="Whoosh-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="whoosh"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 python3-Whoosh_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="whoosh"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 5ad8b234f5d..bc8e29f99a0 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -2,7 +2,6 @@
 pkgname=python-Yapsy
 version=1.12.2
 revision=2
-archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module
 pycompile_module="yapsy"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Yapsy_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="yapsy"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index f9621a9c8dc..d51c8447d4b 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -12,7 +12,6 @@ license="MIT"
 homepage="http://jwilk.net/software/python-aalib"
 distfiles="${PYPI_SITE}/p/python-aalib/python-aalib-${version}.tar.gz"
 checksum=c39071629e7962dcd926faf0135dc73e2a8eb5db9a53bc2ebe5965f8c39165a2
-archs=noarch
 
 post_install() {
 	sed -n '3,21p' < setup.py > LICENSE
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-aalib_package() {
-	archs=noarch
 	pycompile_module="aalib.py"
 	depends="aalib python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index b33009d5efb..5530541c6c4 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -2,7 +2,6 @@
 pkgname=python-alabaster
 version=0.7.12
 revision=2
-archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module
 pycompile_module="alabaster"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-alabaster_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="alabaster"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 2b57aae5674..644326085e5 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -2,7 +2,6 @@
 pkgname=python-alembic
 version=1.4.2
 revision=1
-archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-alembic_package() {
-	archs=noarch
 	depends="python3-Mako python3-SQLAlchemy python3-dateutil python3-editor"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index 3663a82f0cc..1756b99acab 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -2,7 +2,6 @@
 pkgname=python-ansicolor
 version=0.2.6
 revision=3
-archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module
 pycompile_module="ansicolor"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/ansicolor/ansicolor-${version}.tar.gz"
 checksum=d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d
 
 python3-ansicolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ansicolor"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index 68f8fa5cb4f..bf3b69cce99 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -2,7 +2,6 @@
 pkgname=python-appdirs
 version=1.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-appdirs_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 656da441757..1d4aae379bc 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -2,7 +2,6 @@
 pkgname=python-argh
 version=0.26.2
 revision=2
-archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module
 pycompile_module="argh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/argh/argh-${version}.tar.gz"
 checksum=e9535b8c84dc9571a48999094fda7f33e63c3f1b74f3e5f3ac0105a58405bb65
 
 python3-argh_package() {
-	archs=noarch
 	pycompile_module="argh"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 4f245755dcf..b1d370ba61c 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -2,7 +2,6 @@
 pkgname=python-arxiv2bib
 version=1.0.8
 revision=3
-archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module
 pycompile_module="arxiv2bib"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-arxiv2bib_package() {
-	archs=noarch
 	pycompile_module="arxiv2bib.py"
 	alternatives="arxiv2bib:arxiv2bib:/usr/bin/arxiv2bib3"
 	depends="python3-setuptools"
diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index e7ffe7415fc..7cf0624d22e 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -2,7 +2,6 @@
 pkgname=python-asn1crypto
 version=0.24.0
 revision=2
-archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module
 pycompile_module="asn1crypto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-asn1crypto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="asn1crypto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-astroid/template b/srcpkgs/python-astroid/template
index 9da6aebae87..71cb18836cb 100644
--- a/srcpkgs/python-astroid/template
+++ b/srcpkgs/python-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python-astroid
 version=1.6.6
 revision=2
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python2-module
 pycompile_module="astroid"
diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index ec411d981d4..5eebc020c12 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -2,7 +2,6 @@
 pkgname=python-atomicwrites
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module
 pycompile_module="atomicwrites"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-atomicwrites_package() {
-	archs=noarch
 	pycompile_module="atomicwrites"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 0141d97f85d..f7923ca89d1 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -3,7 +3,6 @@
 pkgname=python-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python"
diff --git a/srcpkgs/python-attrs/template b/srcpkgs/python-attrs/template
index 6e2297a9553..644601aa77b 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -2,7 +2,6 @@
 pkgname=python-attrs
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module
 pycompile_module="attr"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-attrs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="attr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index bc878d4b82d..55b3fc03ff5 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -2,7 +2,6 @@
 pkgname=python-audioread
 version=2.1.8
 revision=2
-archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module
 pycompile_module="audioread"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-audioread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="audioread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-automat/template b/srcpkgs/python-automat/template
index 66dad2f84bc..a73c9095962 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -2,7 +2,6 @@
 pkgname=python-automat
 version=20.2.0
 revision=1
-archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -32,7 +31,6 @@ post_install() {
 }
 
 python3-automat_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-attrs python3-six"
 	alternatives="automat:automat-visualize:/usr/bin/automat-visualize3"
diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index 74480b5a9fe..9ab879f9e87 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -2,7 +2,6 @@
 pkgname=python-axolotl
 version=0.2.3
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="axolotl"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=fe0e8147423f8dc4ec1077ea18ca5a54091366d22faa903a772ee6ea88b88daf
 
 python3-axolotl_package() {
-	archs=noarch
 	depends="python3-axolotl-curve25519 python3-cryptography python3-protobuf"
 	pycompile_module="axolotl"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-b2sdk/template b/srcpkgs/python-b2sdk/template
index 8c51c62d603..5ea032ed0dc 100644
--- a/srcpkgs/python-b2sdk/template
+++ b/srcpkgs/python-b2sdk/template
@@ -3,7 +3,6 @@
 pkgname=python-b2sdk
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc="b2sdk-${version}"
 build_style=python3-module
 pycompile_module="b2sdk"
diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index 47d5bb176cc..6de0b031414 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -2,7 +2,6 @@
 pkgname=python-babelfish
 version=0.5.5
 revision=2
-archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module
 pycompile_module="babelfish"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-babelfish_package() {
-	archs=noarch
 	pycompile_module="babelfish"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index a55af727ab6..d43ccd1d1c7 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -2,7 +2,6 @@
 pkgname=python-backcall
 version=0.1.0
 revision=2
-archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module
 pycompile_module="backcall"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/backcall/backcall-${version}.tar.gz"
 checksum=38ecd85be2c1e78f77fd91700c76e14667dc21e2713b63876c0eb901196e01e4
 
 python3-backcall_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="backcall"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backports.configparser/template b/srcpkgs/python-backports.configparser/template
index 8a641320820..91d60205364 100644
--- a/srcpkgs/python-backports.configparser/template
+++ b/srcpkgs/python-backports.configparser/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.configparser
 version=3.5.0
 revision=1
-archs=noarch
 wrksrc="configparser-${version}"
 build_style=python2-module
 pycompile_module="backports configparser.py"
diff --git a/srcpkgs/python-backports.functools_lru_cache/template b/srcpkgs/python-backports.functools_lru_cache/template
index 0d268c9efa6..4829107b32d 100644
--- a/srcpkgs/python-backports.functools_lru_cache/template
+++ b/srcpkgs/python-backports.functools_lru_cache/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.functools_lru_cache
 version=1.5
 revision=1
-archs=noarch
 wrksrc="backports.functools_lru_cache-${version}"
 build_style=python2-module
 pycompile_module="backports/functools_lru_cache.py"
diff --git a/srcpkgs/python-backports.shutil_get_terminal_size/template b/srcpkgs/python-backports.shutil_get_terminal_size/template
index 2e9a5af7f52..8d0923ea0d1 100644
--- a/srcpkgs/python-backports.shutil_get_terminal_size/template
+++ b/srcpkgs/python-backports.shutil_get_terminal_size/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.shutil_get_terminal_size
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="backports.shutil_get_terminal_size-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports.ssl_match_hostname/template b/srcpkgs/python-backports.ssl_match_hostname/template
index dd4d76b47db..cd15b2c217c 100644
--- a/srcpkgs/python-backports.ssl_match_hostname/template
+++ b/srcpkgs/python-backports.ssl_match_hostname/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.ssl_match_hostname
 version=3.5.0.1
 revision=3
-archs=noarch
 wrksrc="backports.ssl_match_hostname-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports/template b/srcpkgs/python-backports/template
index eec822727a8..ab40751073d 100644
--- a/srcpkgs/python-backports/template
+++ b/srcpkgs/python-backports/template
@@ -2,7 +2,6 @@
 pkgname=python-backports
 version=1.0
 revision=3
-archs=noarch
 wrksrc="backports-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports_abc/template b/srcpkgs/python-backports_abc/template
index 9d2e5565f02..0d23f9bd983 100644
--- a/srcpkgs/python-backports_abc/template
+++ b/srcpkgs/python-backports_abc/template
@@ -2,7 +2,6 @@
 pkgname=python-backports_abc
 version=0.5
 revision=1
-archs=noarch
 wrksrc="backports_abc-${version}"
 build_style=python2-module
 pycompile_module="backports_abc.py"
diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index c40115c9fb8..ae63106cf4b 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -2,7 +2,6 @@
 pkgname=python-bibtexparser
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module
 pycompile_module="bibtexparser"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bibtexparser/bibtexparser-${version}.tar.gz"
 checksum=df8966ea752db6d74657a69b9d684a61aa33457ad6d9d50e41c50ef7f374907f
 
 python3-bibtexparser_package() {
-	archs=noarch
 	pycompile_module="bibtexparser"
 	depends="python3-parsing python3-future"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 448ea60d53d..6e70a5976c1 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -2,7 +2,6 @@
 pkgname=python-bitbucket-api
 version=0.5.0
 revision=4
-archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module
 pycompile_module="bitbucket"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-bitbucket-api_package() {
-	archs=noarch
 	depends="python3-requests-oauthlib python3-sh"
 	pycompile_module="bitbucket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index 84b0f132eba..e298a86007b 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -2,7 +2,6 @@
 pkgname=python-bleach
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bleach/bleach-${version}.tar.gz"
 checksum=aa8b870d0f46965bac2c073a93444636b0e1ca74e9777e34f03dd494b8a59d48
 
 python3-bleach_package() {
-	archs=noarch
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index baa4938c328..314dda27c56 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -2,7 +2,6 @@
 pkgname=python-blessings
 version=1.7
 revision=2
-archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module
 pycompile_module="blessings"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-blessings_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="blessings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index b6d1d63d19a..d1df76cb181 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -2,7 +2,6 @@
 pkgname=python-blinker
 version=1.4
 revision=4
-archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-blinker_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="blinker"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 684c00feee0..583c1b3c3b2 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -2,7 +2,6 @@
 pkgname=python-boto
 version=2.49.0
 revision=2
-archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module
 pycompile_module="boto"
@@ -41,7 +40,6 @@ post_install() {
 }
 
 python3-boto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="boto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index 600559839d2..5430a3ed15f 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -2,7 +2,6 @@
 pkgname=python-botocore
 version=1.17.28
 revision=1
-archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/botocore/archive/${version}.tar.gz"
 checksum=c9a4b4ffedeff89848a899bd4634be46a21a190690b505c2050888c0a5447936
 
 python3-botocore_package() {
-	archs=noarch
 	depends="python3-dateutil python3-docutils python3-jmespath python3-urllib3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 0ffc8adfec7..67ce25c0e25 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -2,7 +2,6 @@
 pkgname=python-bottle
 version=0.12.17
 revision=2
-archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module
 pycompile_module="bottle"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-bottle_package() {
-	archs=noarch
 	pycompile_module="bottle"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index 16c89346565..101466a7524 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -2,7 +2,6 @@
 pkgname=python-cached-property
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module
 pycompile_module="cached_property.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cached-property_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cached_property.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index c057739b03d..b505bb1b258 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -2,7 +2,6 @@
 pkgname=python-cairocffi
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module
 pycompile_module="cairocffi"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cairocffi_package() {
-	archs=noarch
 	depends="python3-cffi"
 	pycompile_module="cairocffi"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index bd502bbbddf..8874a5e3dd6 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -2,7 +2,6 @@
 pkgname=python-chardet
 version=3.0.4
 revision=3
-archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae
 alternatives="chardet:chardetect:/usr/bin/chardetect2"
 
 python3-chardet_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="chardet"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 7faa0f4cce9..e93599c9a9c 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -2,7 +2,6 @@
 pkgname=python-chroot
 version=0.9.18
 revision=2
-archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module
 pycompile_module="pychroot"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-chroot_package() {
-	archs=noarch
 	depends="python3-snakeoil"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="chroot:pychroot:/usr/bin/pychroot3"
diff --git a/srcpkgs/python-cliapp/template b/srcpkgs/python-cliapp/template
index fd2c8cc4d13..c79ac262aa5 100644
--- a/srcpkgs/python-cliapp/template
+++ b/srcpkgs/python-cliapp/template
@@ -2,7 +2,6 @@
 pkgname=python-cliapp
 version=1.20180121
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="cliapp"
 hostmakedepends="python-setuptools python-yaml"
diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index b57a7a74b4a..663e72fc0b0 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -2,7 +2,6 @@
 pkgname=python-click-log
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"
 pycompile_module="click_log"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-log_package() {
-	archs=noarch
 	pycompile_module="click_log"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 49b4a4a9aae..39de1538611 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -2,7 +2,6 @@
 pkgname=python-click-threading
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-threading_package() {
-	archs=noarch
 	pycompile_module="click_threading"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 40d1b25a7ab..4f6444c307c 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -2,7 +2,6 @@
 pkgname=python-click
 version=7.1.2
 revision=1
-archs=noarch
 wrksrc="click-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-click_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 9ae2e19435c..13fdb17246b 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -2,7 +2,6 @@
 pkgname=python-codespell
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module
 pycompile_module="codespell_lib"
@@ -17,7 +16,6 @@ checksum=53d22aefa1daf3365ca4625877271d23d143c0a92c16e55daf5cd14b6494b8f4
 alternatives="python-codespell:codespell:/usr/bin/codespell2"
 
 python3-codespell_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="codespell_lib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 09562385243..db815379183 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -2,7 +2,6 @@
 pkgname=python-colorama
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module
 pycompile_module="colorama"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-colorama_package() {
-	archs=noarch
 	pycompile_module="colorama"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index a8cb5d5d34e..3848feac2d6 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -2,7 +2,6 @@
 pkgname=python-configobj
 version=5.0.6
 revision=6
-archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module
 pycompile_module="_version.py configobj.py validate.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-configobj_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="_version.py configobj.py validate.py"
 	depends="python3-six"
diff --git a/srcpkgs/python-constantly/template b/srcpkgs/python-constantly/template
index 9160aec9edd..34edf105840 100644
--- a/srcpkgs/python-constantly/template
+++ b/srcpkgs/python-constantly/template
@@ -2,7 +2,6 @@
 pkgname=python-constantly
 version=15.1.0
 revision=3
-archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module
 pycompile_module="constantly"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-constantly_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="constantly"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index d6d0b8010e2..5297e842c14 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -2,7 +2,6 @@
 pkgname=python-construct
 version=2.9.45
 revision=3
-archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module
 pycompile_module="construct"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-construct_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="construct"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-contextlib2/template b/srcpkgs/python-contextlib2/template
index 97ef11550c8..6bd95147447 100644
--- a/srcpkgs/python-contextlib2/template
+++ b/srcpkgs/python-contextlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-contextlib2
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="contextlib2-${version}"
 build_style=python2-module
 pycompile_module="contextlib2.py"
diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index 8c5d65fe260..132980d887a 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -2,7 +2,6 @@
 pkgname=python-cram
 version=0.7
 revision=3
-archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module
 pycompile_module="cram"
@@ -17,7 +16,6 @@ checksum=7da7445af2ce15b90aad5ec4792f857cef5786d71f14377e9eb994d8b8337f2f
 alternatives="cram:cram:/usr/bin/cram2"
 
 python3-cram_package() {
-	archs=noarch
 	pycompile_module="cram"
 	alternatives="cram:cram:/usr/bin/cram3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index 3eee49a6dbf..d375016bc91 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -2,7 +2,6 @@
 pkgname=python-cryptography_vectors
 version=3.0
 revision=1
-archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index f6d2d0cbf8b..f4e95f73e48 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -2,7 +2,6 @@
 pkgname=python-css-parser
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module
 pycompile_module="css_parser"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-css-parser_package() {
-	archs=noarch
 	pycompile_module="css_parser"
 	depends="python3"
 	short_desc="${short_desc/2/3}"
diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index c7f43ebca9f..81f28f8d682 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -2,7 +2,6 @@
 pkgname=python-cssselect
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="cssselect"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cssselect_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cssselect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 5f08903b9a0..2f023f342b0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -2,7 +2,6 @@
 pkgname=python-cssutils
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ python3-cssutils_package() {
 	 cssutils:csscapture:/usr/bin/csscapture3
 	 cssutils:csscombine:/usr/bin/csscombine3
 	 cssutils:cssparse:/usr/bin/cssparse3"
-	archs=noarch
 	pycompile_module="cssutils encutils"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 6126a11e9b4..c07d2d0270b 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -2,7 +2,6 @@
 pkgname=python-curtsies
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module
 pycompile_module="curtsies"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-curtsies_package() {
-	archs=noarch
 	pycompile_module="curtsies"
 	depends="python3-blessings python3-wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index 0b53c195dae..1d6b1ec2bf2 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -2,7 +2,6 @@
 pkgname=python-cycler
 version=0.10.0
 revision=5
-archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cycler_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="cycler.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index efaf163e573..51740f1ee4c 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -2,7 +2,6 @@
 pkgname=python-daemonize
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module
 pycompile_module="daemonize.py"
@@ -20,7 +19,6 @@ post_Install() {
 }
 
 python3-daemonize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="daemonize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dateutil/template b/srcpkgs/python-dateutil/template
index 7675b8f9447..ecedb52ebbd 100644
--- a/srcpkgs/python-dateutil/template
+++ b/srcpkgs/python-dateutil/template
@@ -2,7 +2,6 @@
 pkgname=python-dateutil
 version=2.8.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="dateutil"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-dateutil_package() {
-	archs=noarch
 	depends="python3-six tzdata"
 	pycompile_module="dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 7f14fef90a6..8ef89843121 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -2,7 +2,6 @@
 pkgname=python-decorator
 version=4.4.0
 revision=2
-archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module
 pycompile_module="decorator.py"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-decorator_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="decorator.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index 96234eb18c7..a0cf9f80b07 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -2,7 +2,6 @@
 pkgname=python-defusedxml
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module
 pycompile_module="defusedxml"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-defusedxml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="defusedxml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index 5af18eda664..990062e8ffe 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -2,7 +2,6 @@
 pkgname=python-discogs_client
 version=2.2.2
 revision=2
-archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-discogs_client_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-oauthlib"
 	pycompile_module="discogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 46bb0cccc31..9e5b8cafc56 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -2,7 +2,6 @@
 pkgname=python-distutils-extra
 version=2.39
 revision=4
-archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"
 hostmakedepends="intltool python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://launchpad.net/${pkgname}/trunk/${version}/+download/${pkgname}
 checksum=723f24f4d65fc8d99b33a002fbbb3771d4cc9d664c97085bf37f3997ae8063af
 
 python3-distutils-extra_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="DistUtilsExtra"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 66d237e89ee..2ee14846431 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -2,7 +2,6 @@
 pkgname=python-dnspython
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module
 pycompile_module="dns"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-dnspython_package() {
-	archs=noarch
 	pycompile_module="dns"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index 2224be0d21d..4d743effbe2 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -2,7 +2,6 @@
 pkgname=python-docker-pycreds
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module
 pycompile_module="dockerpycreds"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker-pycreds/docker-pycreds-${version}.tar.gz"
 checksum=6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4
 
 python3-docker-pycreds_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="dockerpycreds"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index 1a325bd6c46..8156dac04c2 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -2,7 +2,6 @@
 pkgname=python-docker
 version=4.2.0
 revision=1
-archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker/docker-${version}.tar.gz"
 checksum=ddae66620ab5f4bce769f64bcd7934f880c8abe6aa50986298db56735d0f722e
 
 python3-docker_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-websocket-client python3-docker-pycreds"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 4a0b3a7a33f..f3f10985243 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -2,7 +2,6 @@
 pkgname=python-dockerpty
 version=0.4.1
 revision=4
-archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/dockerpty/dockerpty-${version}.tar.gz"
 checksum=69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce
 
 python3-dockerpty_package() {
-	archs=noarch
 	depends="python3-six python3-docker"
 	pycompile_module="dockerpty"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 48e5f86c1e0..911a684ac8c 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -2,7 +2,6 @@
 pkgname=python-docopt
 version=0.6.2
 revision=5
-archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-docopt_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="docopt.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 99e74968ddd..b818198b077 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -2,7 +2,6 @@
 pkgname=python-docutils
 version=0.16
 revision=1
-archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -53,7 +52,6 @@ python3-docutils_package() {
 	 docutils:rst2xetex:/usr/bin/rst2xetex.py3
 	 docutils:rst2xml:/usr/bin/rst2xml.py3
 	 docutils:rstpep2html:/usr/bin/rstpep2html.py3"
-	archs=noarch
 	depends="python3 python3-Pygments"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 0978b7e168c..0c967a1e546 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -2,7 +2,6 @@
 pkgname=python-dogpile.cache
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-dogpile.cache_package() {
-	archs=noarch
 	depends="python3 python3-decorator"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 87e5c4eedd3..1bf492b81a1 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -2,7 +2,6 @@
 pkgname=python-dominate
 version=2.5.1
 revision=1
-archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -14,7 +13,6 @@ distfiles="https://github.com/Knio/dominate/archive/${version}.tar.gz"
 checksum=f2c11e107c13c4af9515f81c762b09c350f66d50440eae0c5ec1c443beb3f4af
 
 python3-dominate_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 9e1108b28eb..f7854dad45d 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -2,7 +2,6 @@
 pkgname=python-ecdsa
 version=0.14.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 pycompile_module="ecdsa"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-ecdsa_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="ecdsa"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 3594e407205..0cc765fc3ea 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -2,7 +2,6 @@
 pkgname=python-editor
 version=1.0.4
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="editor"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/python-editor/python-editor-${version}.tar.gz"
 checksum=51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b
 
 python3-editor_package() {
-	archs=noarch
 	pycompile_module="editor"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 4668a9cc814..944d9424edd 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -2,7 +2,6 @@
 pkgname=python-empy
 version=3.3.4
 revision=2
-archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module
 pycompile_module="EmPy"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-empy_package() {
-	archs=noarch
 	pycompile_module="EmPy"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index 68d35c0e13a..3a9f8f9235e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python-enchant
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools enchant-devel"
diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index 6070650f35d..846be545b54 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -2,7 +2,6 @@
 pkgname=python-entrypoints
 version=0.3
 revision=2
-archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module
 pycompile_module="entrypoints.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-entrypoints_package() {
-	archs=noarch
 	pycompile_module="entrypoints.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enum34/template b/srcpkgs/python-enum34/template
index 9bd644fe47d..849d37e119d 100644
--- a/srcpkgs/python-enum34/template
+++ b/srcpkgs/python-enum34/template
@@ -2,7 +2,6 @@
 pkgname=python-enum34
 version=1.1.6
 revision=1
-archs=noarch
 wrksrc="enum34-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index b8cccad60ac..e00112ebce3 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -2,7 +2,6 @@
 pkgname=python-envdir
 version=1.0.1
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="envdir"
@@ -26,7 +25,6 @@ python3-envdir_package() {
 	alternatives="
 	 envdir:envdir:/usr/bin/envdir3
 	 envdir:envshell:/usr/bin/envshell3"
-	archs=noarch
 	pycompile_module="envdir"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index f28f40b0319..14cac54c7ea 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -2,7 +2,6 @@
 pkgname=python-enzyme
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module
 pycompile_module="enzyme"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/enzyme/enzyme-${version}.tar.gz"
 checksum=f2167fa97c24d1103a94d4bf4eb20f00ca76c38a37499821049253b2059c62bb
 
 python3-enzyme_package() {
-	archs=noarch
 	pycompile_module="enzyme"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index a96490fb56d..bbd1a376d97 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -2,7 +2,6 @@
 pkgname=python-ewmh
 version=0.1.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="ewmh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/ewmh/ewmh-${version}.tar.gz"
 checksum=c56b093f7d575181e979bb3a7d15c34065755f811c351ff0a31fede12b09343d
 
 python3-ewmh_package() {
-	archs=noarch
 	depends="python3-xlib"
 	pycompile_module="ewmh"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 834aa7730ee..842bc1534cb 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -2,7 +2,6 @@
 pkgname=python-exifread
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"
 pycompile_module="exifread"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-exifread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="exifread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 24d2ec0611f..ae213f138ad 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -2,7 +2,6 @@
 pkgname=python-fasteners
 version=0.15
 revision=2
-archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/fasteners/fasteners-${version}.tar.gz"
 checksum=3a176da6b70df9bb88498e1a18a9e4a8579ed5b9141207762368a1017bf8f5ef
 
 python3-fasteners_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="fasteners"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 24d5317b1e9..e2cc73a0da7 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -2,7 +2,6 @@
 pkgname=python-feedgenerator
 version=1.9.1
 revision=1
-archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/feedgenerator/feedgenerator-${version}.tar.gz"
 checksum=a28a5add781509390d1a6a52d017829853ee4bef1d2e7b4d5da0e9d1b395ce54
 
 python3-feedgenerator_package() {
-	archs=noarch
 	depends="python3-pytz python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index 94f0a58ec88..e803b2d67d8 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -2,7 +2,6 @@
 pkgname=python-feedparser
 version=5.2.1
 revision=6
-archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module
 pycompile_module="feedparser.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-feedparser_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="feedparser.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 10b974794b5..5951e1658ba 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -2,7 +2,6 @@
 pkgname=python-filetype
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module
 pycompile_module="filetype"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-filetype_package() {
-	archs=noarch
 	pycompile_module="filetype"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index e8e681421f7..07a57e6a816 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -2,7 +2,6 @@
 pkgname=python-flaky
 version=3.6.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="flaky"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/flaky/flaky-${version}.tar.gz"
 checksum=8cd5455bb00c677f787da424eaf8c4a58a922d0e97126d3085db5b279a98b698
 
 python3-flaky_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="flaky"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-funcsigs/template b/srcpkgs/python-funcsigs/template
index 26f14b0ca3c..627e54dbebb 100644
--- a/srcpkgs/python-funcsigs/template
+++ b/srcpkgs/python-funcsigs/template
@@ -2,7 +2,6 @@
 pkgname=python-funcsigs
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="funcsigs-${version}"
 build_style=python2-module
 pycompile_module="funcsigs"
diff --git a/srcpkgs/python-functools32/template b/srcpkgs/python-functools32/template
index 53f9d69a576..4d553cfc1a0 100644
--- a/srcpkgs/python-functools32/template
+++ b/srcpkgs/python-functools32/template
@@ -2,7 +2,6 @@
 pkgname=python-functools32
 version=3.2.3.post2
 revision=1
-archs=noarch
 wrksrc="functools32-${version/.post/-}"
 build_style=python2-module
 pycompile_module="functools32"
diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 88b09a1944f..bdca44ab56f 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -2,7 +2,6 @@
 pkgname=python-future
 version=0.18.2
 revision=1
-archs=noarch
 wrksrc="future-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ python3-future_package() {
 	alternatives="
 	 future:futurize:/usr/bin/futurize3
 	 future:pasteurize:/usr/bin/pasteurize3"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-futures/template b/srcpkgs/python-futures/template
index 12d1f4ae71f..3657171b7c9 100644
--- a/srcpkgs/python-futures/template
+++ b/srcpkgs/python-futures/template
@@ -2,7 +2,6 @@
 pkgname=python-futures
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="futures-${version}"
 build_style=python2-module
 pycompile_module="concurrent"
diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index 253ddaa07bd..be12400dee5 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -2,7 +2,6 @@
 pkgname=python-gitdb
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module
 pycompile_module="gitdb"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-gitdb_package() {
-	archs=noarch
 	depends="python3-smmap"
 	pycompile_module="gitdb"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 425fe1b7362..25a6dfa5265 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -2,7 +2,6 @@
 pkgname=python-github3
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module
 pycompile_module="github3"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-github3_package() {
-	archs=noarch
 	depends="python3-requests python3-uritemplate"
 	pycompile_module="github3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 0f71b4c7153..b7d621f71f9 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -2,7 +2,6 @@
 pkgname=python-gitlab
 version=1.12.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="gitlab"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-gitlab_package() {
-	archs=noarch
 	depends="python3-setuptools python3-requests python3-six"
 	pycompile_module="gitlab"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 7b3bb5a7bb7..2b05b8facce 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -2,7 +2,6 @@
 pkgname=python-gntp
 version=1.0.3
 revision=5
-archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module
 pycompile_module="gntp"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-gntp_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="gntp"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index b5dd94bf8e1..d3be663d966 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=python-gnupg
 version=0.4.6
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python gnupg"
@@ -20,7 +19,6 @@ post_install() {
 python3-gnupg_package() {
 	depends="python3 gnupg"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 		vlicense LICENSE.txt
diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index 027135d430c..348c347a094 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -2,7 +2,6 @@
 pkgname=python-gogs-client
 version=1.0.6
 revision=4
-archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module
 pycompile_module="gogs_client"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-gogs-client_package() {
-	archs=noarch
 	depends="python3-future python3-requests python3-attrs"
 	pycompile_module="gogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index a962f14522f..acf0b08270c 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -2,7 +2,6 @@
 pkgname=python-guessit
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module
 pycompile_module="guessit"
@@ -17,7 +16,6 @@ checksum=2dcd3f2acaf6c1a864f903f084ddd6a6b753f3107ae864355d7c8c1e9cb205b2
 alternatives="guessit:guessit:/usr/bin/guessit2"
 
 python3-guessit_package() {
-	archs=noarch
 	pycompile_module="guessit"
 	depends="python3 python3-rebulk python3-babelfish python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 7f2d2c5fa8a..c078bb1edda 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -2,7 +2,6 @@
 pkgname=python-h11
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc=h11-${version}
 build_style=python-module
 pycompile_module="h11"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-h11_package() {
-	archs=noarch
 	pycompile_module="h11"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index a914f21ecb7..13f16c5495c 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -2,7 +2,6 @@
 pkgname=python-habanero
 version=0.6.2
 revision=2
-archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module
 pycompile_module="habanero"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-habanero_package() {
-	archs=noarch
 	pycompile_module="habanero"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index ffbac313103..2855219bb2a 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -2,7 +2,6 @@
 pkgname=python-hpack
 version=3.0.0
 revision=2
-archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module
 pycompile_module="hpack"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hpack_package() {
-	archs=noarch
 	pycompile_module="hpack"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-html2text/template b/srcpkgs/python-html2text/template
index f83a3a4c020..5b4e911b0a3 100644
--- a/srcpkgs/python-html2text/template
+++ b/srcpkgs/python-html2text/template
@@ -3,7 +3,6 @@
 pkgname=python-html2text
 version=2019.8.11
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 2565de64fd2..9740f92e0f7 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -2,7 +2,6 @@
 pkgname=python-html5lib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-html5lib_package() {
-	archs=noarch
 	pycompile_module="html5lib"
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index e798b4fc1b3..7d9e0b7e45f 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -2,7 +2,6 @@
 pkgname=python-httmock
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module
 pycompile_module="httmock.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-httmock_package() {
-	archs=noarch
 	pycompile_module="httmock.py"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index 3a31c396621..0b52b6a8c0e 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python-httplib2
 version=0.14.0
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="httplib2-${version}"
 build_style=python-module
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-httplib2_package() {
-	archs=noarch
 	depends="python3 ca-certificates"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 2c6942ac329..c31e3301020 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -2,7 +2,6 @@
 pkgname=python-hyper-h2
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-hyper-h2_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3 python3-hpack python3-hyperframe"
 	pkg_install() {
diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index 6b544c2061c..3e097830d29 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperframe
 version=5.2.0
 revision=2
-archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module
 pycompile_module="hyperframe"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperframe_package() {
-	archs=noarch
 	pycompile_module="hyperframe"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hyperlink/template b/srcpkgs/python-hyperlink/template
index 945bf72ee59..8f09927f274 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperlink
 version=19.0.0
 revision=2
-archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module
 pycompile_module="hyperlink"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperlink_package() {
-	archs=noarch
 	depends="python3-idna"
 	pycompile_module="hyperlink"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index de55593fc02..abbb225b87b 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -2,7 +2,6 @@
 pkgname=python-hypothesis
 version=4.38.2
 revision=2
-archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python
 build_style=python-module
@@ -35,7 +34,6 @@ do_check() {
 }
 
 python3-hypothesis_package() {
-	archs=noarch
 	pycompile_module="hypothesis"
 	depends="python3-attrs python3-coverage"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index dbb7ddb8fd3..f0a50b1a760 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -2,7 +2,6 @@
 pkgname=python-icalendar
 version=4.0.6
 revision=1
-archs=noarch
 wrksrc="icalendar-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-icalendar_package() {
-	archs=noarch
 	depends="python3-setuptools python3-dateutil python3-pytz"
 	alternatives="icalendar:icalendar:/usr/bin/icalendar3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 9de25fa6392..74896b4e4c5 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -2,7 +2,6 @@
 pkgname=python-idna
 version=2.9
 revision=1
-archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-idna_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index f64c86812b5..e65fa624fb8 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -2,7 +2,6 @@
 pkgname=python-imagesize
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module
 pycompile_module="imagesize.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-imagesize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="imagesize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-importlib_metadata/template b/srcpkgs/python-importlib_metadata/template
index 227e67ed565..f4a2e9438d0 100644
--- a/srcpkgs/python-importlib_metadata/template
+++ b/srcpkgs/python-importlib_metadata/template
@@ -2,7 +2,6 @@
 pkgname=python-importlib_metadata
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-incremental/template b/srcpkgs/python-incremental/template
index 70477e26866..70c332e0274 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -2,7 +2,6 @@
 pkgname=python-incremental
 version=17.5.0
 revision=3
-archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module
 pycompile_module="incremental"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-incremental_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="incremental"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index 64e48fd9330..02f724b4bdf 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -2,7 +2,6 @@
 pkgname=python-inotify
 version=0.9.6
 revision=4
-archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-inotify_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyinotify.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ipaddr/template b/srcpkgs/python-ipaddr/template
index 9bd50773ae6..f17949a1822 100644
--- a/srcpkgs/python-ipaddr/template
+++ b/srcpkgs/python-ipaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddr
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="ipaddr-${version}"
 build_style=python2-module
 pycompile_module="ipaddr.py"
diff --git a/srcpkgs/python-ipaddress/template b/srcpkgs/python-ipaddress/template
index 8a2d6c80b31..4d598e1146a 100644
--- a/srcpkgs/python-ipaddress/template
+++ b/srcpkgs/python-ipaddress/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddress
 version=1.0.23
 revision=1
-archs=noarch
 wrksrc="ipaddress-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 3c53013fb9d..f44d919759b 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -2,7 +2,6 @@
 pkgname=python-iptools
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="iptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-iptools_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="iptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 1cc46a060d6..92d61d8166b 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -2,7 +2,6 @@
 pkgname=python-isbnlib
 version=3.9.6
 revision=2
-archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module
 pycompile_module="isbnlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-isbnlib_package() {
-	archs=noarch
 	pycompile_module="isbnlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a841866d439..4e59ea10e12 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -2,7 +2,6 @@
 pkgname=python-iso-8601
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module
 pycompile_module="iso8601"
diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index 74e4e813e64..bb5115ef04e 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -2,7 +2,6 @@
 pkgname=python-isodate
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module
 pycompile_module="isodate"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-isodate_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="isodate"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index cd8e43b69ea..bcc48aa6abd 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -2,7 +2,6 @@
 pkgname=python-isort
 version=4.3.21
 revision=2
-archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module
 pycompile_module="isort"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-isort_package() {
-	archs=noarch
 	pycompile_module="isort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index fe51cc78a9b..b02eeabc46a 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -2,7 +2,6 @@
 pkgname=python-itsdangerous
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-itsdangerous_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jaraco.functools/template b/srcpkgs/python-jaraco.functools/template
index 55c82a8101a..84aaea71b7e 100644
--- a/srcpkgs/python-jaraco.functools/template
+++ b/srcpkgs/python-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python-jaraco.functools
 version=2.0
 revision=3
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 0799a69c69f..5c0437ae78d 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -2,7 +2,6 @@
 pkgname=python-jedi
 version=0.17.2
 revision=2
-archs=noarch
 wrksrc="jedi-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jedi_package() {
-	archs=noarch
 	depends="python3-parso"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 6f1dfcecf0f..5716281b7fd 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -2,7 +2,6 @@
 pkgname=python-jmespath
 version=0.10.0
 revision=1
-archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jmespath_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="jmespath:jp.py:/usr/bin/jp.py3"
diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index fd103d123aa..c7e06343501 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonpointer
 version=2.0
 revision=2
-archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-jsonpointer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="jsonpointer.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index a245168a824..d70336fef15 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonrpclib
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module
 pycompile_module="jsonrpclib"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/j/jsonrpclib-pelix/jsonrpclib-pelix-${version}.tar.gz"
 checksum=19c558e169a51480b39548783067ca55046b62b2409ab4559931255e12f635de
 
 python3-jsonrpclib_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 326b5609d36..f62b9a370a1 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -3,7 +3,6 @@ pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
 revision=4
-archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-jsonschema_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="jsonschema"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 6668b240008..a1a5ba3cb30 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -2,7 +2,6 @@
 pkgname=python-kaptan
 version=0.5.12
 revision=2
-archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module
 pycompile_module="kaptan"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-kaptan_package() {
-	archs=noarch
 	pycompile_module="kaptan"
 	depends="python3 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index 50e1d7e6e78..c9ed9368215 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -2,7 +2,6 @@
 pkgname=python-keepalive
 version=0.5
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/k/keepalive/keepalive-${version}.tar.gz"
 checksum=3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1
 
 python3-keepalive_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="keepalive"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 917131d6d93..96ea9ebf05b 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -2,7 +2,6 @@
 pkgname=python-kitchen
 version=1.2.6
 revision=3
-archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module
 pycompile_module="kitchen"
@@ -16,7 +15,6 @@ distfiles="https://github.com/fedora-infra/kitchen/archive/${version}.tar.gz"
 checksum=6963dd84819713aafdd55e5314dcce6df5a37430b62fd9c48770e9f1a467b2b0
 
 python3-kitchen_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="kitchen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-larch/template b/srcpkgs/python-larch/template
index 7b9fb4a1e5e..9cdece3c5a1 100644
--- a/srcpkgs/python-larch/template
+++ b/srcpkgs/python-larch/template
@@ -2,7 +2,6 @@
 pkgname=python-larch
 version=1.20151025
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools python-tracing"
 makedepends="python-devel python-tracing"
diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 39fcc264979..9ab0a38ac90 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -2,7 +2,6 @@
 pkgname=python-ldap3
 version=2.6.1
 revision=2
-archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module
 pycompile_module="ldap3"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=f21d1a65e19ed5a691d7cf30af375e84663254e800ddc950bd7b6f9bb15d2c19
 
 python3-ldap3_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="ldap3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 20f43af5f7d..6e155bae91b 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -2,7 +2,6 @@
 pkgname=python-libtmux
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module
 pycompile_module="libtmux"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-libtmux_package() {
-	archs=noarch
 	pycompile_module="libtmux"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 778cecba7e9..c03de4dada8 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-lockfile
 version=0.12.2
 revision=4
-archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-pbr python3-pbr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-lockfile_package() {
-	archs=noarch
 	pycompile_module="lockfile"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index c190d529bfe..13d75a8a077 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -2,7 +2,6 @@
 pkgname=python-logfury
 version=0.1.2
 revision=5
-archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module
 pycompile_module="logfury"
@@ -29,7 +28,6 @@ do_check() {
 }
 
 python3-logfury_package() {
-	archs=noarch
 	pycompile_module="logfury"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 6bb26bb6cd2..2265a60b796 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -2,7 +2,6 @@
 pkgname=python-magic
 version=0.4.18
 revision=2
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python libmagic"
@@ -18,7 +17,6 @@ post_install() {
 }
 
 python3-magic_package() {
-	archs=noarch
 	depends="python3 libmagic"
 	# Beware: not an alternative
 	conflicts="python3-file-magic>=0"
diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index e9068f64202..88f400e3d29 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -2,7 +2,6 @@
 pkgname=python-markdown2
 version=2.3.8
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="markdown2"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-markdown2_package() {
-	archs=noarch
 	pycompile_module="markdown2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-matplotlib/template b/srcpkgs/python-matplotlib/template
index b155d980569..421a1930bda 100644
--- a/srcpkgs/python-matplotlib/template
+++ b/srcpkgs/python-matplotlib/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 python-matplotlib-data_package() {
-	archs=noarch
 	conf_files="/etc/matplotlibrc"
 	short_desc+=" - data files"
 	pkg_install() {
diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index 1e2ed6328b8..d20b004b852 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -2,7 +2,6 @@
 pkgname=python-mccabe
 version=0.6.1
 revision=3
-archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-mccabe_package() {
-	archs=noarch
 	pycompile_module="mccabe.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index ca29bbd0d23..a9be9b7ff2f 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -2,7 +2,6 @@
 pkgname=python-mechanize
 version=0.4.3
 revision=3
-archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module
 pycompile_module="mechanize"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mechanize_package() {
-	archs=noarch
 	depends="python3 python3-html5lib"
 	pycompile_module="mechanize"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index ef5c054ba75..56e75385714 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -2,7 +2,6 @@
 pkgname=python-mistune
 version=0.8.4
 revision=2
-archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module
 pycompile_module="mistune.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mistune_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mistune.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mock/template b/srcpkgs/python-mock/template
index 95196de39df..bf2ede1da91 100644
--- a/srcpkgs/python-mock/template
+++ b/srcpkgs/python-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-mock
 version=3.0.5
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="mock"
diff --git a/srcpkgs/python-monotonic/template b/srcpkgs/python-monotonic/template
index 2c1e997bea1..d291dc8b5bb 100644
--- a/srcpkgs/python-monotonic/template
+++ b/srcpkgs/python-monotonic/template
@@ -2,7 +2,6 @@
 pkgname=python-monotonic
 version=1.5
 revision=1
-archs=noarch
 wrksrc="monotonic-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-more-itertools/template b/srcpkgs/python-more-itertools/template
index 8b77456eed7..598f5e643b9 100644
--- a/srcpkgs/python-more-itertools/template
+++ b/srcpkgs/python-more-itertools/template
@@ -3,7 +3,6 @@ pkgname=python-more-itertools
 reverts="6.0.0_1"
 version=5.0.0
 revision=2
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python2-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 0389f8c2a28..2bb2a79ee73 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -2,7 +2,6 @@
 pkgname=python-mpd2
 version=1.0.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mpd"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-mpd2_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpd"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index 8fd4873dd62..ef9609f1eac 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -2,7 +2,6 @@
 pkgname=python-mpmath
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module
 pycompile_module="mpmath"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mpmath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpmath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-msp430-tools/template b/srcpkgs/python-msp430-tools/template
index 84c0fd78cb8..af7413be891 100644
--- a/srcpkgs/python-msp430-tools/template
+++ b/srcpkgs/python-msp430-tools/template
@@ -2,7 +2,6 @@
 pkgname=python-msp430-tools
 version=0.9.2
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="msp430"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index 992c7b76fe9..524ccf0cf27 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -2,7 +2,6 @@
 pkgname=python-mtranslate
 version=1.6
 revision=2
-archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module
 pycompile_module="mtranslate"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mtranslate_package() {
-	archs=noarch
 	pycompile_module="mtranslate"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-munkres/template b/srcpkgs/python-munkres/template
index 97694aeac84..a0d670f74a1 100644
--- a/srcpkgs/python-munkres/template
+++ b/srcpkgs/python-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python-munkres
 version=1.0.12
 revision=1
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python2-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index a17ca953a3a..69ddaaa6924 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -2,7 +2,6 @@
 pkgname=python-musicbrainzngs
 version=0.6
 revision=4
-archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"
 pycompile_module="musicbrainzngs"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-musicbrainzngs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="musicbrainzngs"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index ffad63a70a1..638453e695e 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -2,7 +2,6 @@
 pkgname=python-mygpoclient
 version=1.8
 revision=3
-archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module
 pycompile_module="mygpoclient"
@@ -30,7 +29,6 @@ python3-mygpoclient_package() {
 	 mygpoclient:mygpo-simple-client:/usr/bin/mygpo-simple-client3"
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="mygpoclient"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 75626b9f6d5..21d4346f554 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -2,7 +2,6 @@
 pkgname=python-namedlist
 version=1.7
 revision=6
-archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/namedlist/namedlist-${version}.tar.gz"
 checksum=190b39ceaf1d6b59999811259e61beb1b26aaa482fb8c95538294d551461c986
 
 python3-namedlist_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="namedlist.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 7101e297aad..ec6df73b102 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -2,7 +2,6 @@
 pkgname=python-natsort
 version=6.0.0
 revision=2
-archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module
 pycompile_module="natsort"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-natsort_package() {
-	archs=noarch
 	pycompile_module="natsort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 54b653f68a9..ddf490888c6 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -2,7 +2,6 @@
 pkgname=python-ndg_httpsclient
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module
 pycompile_module="ndg/httpsclient"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ndg_httpsclient_package() {
-	archs=noarch
 	depends="python3-openssl python3-pyasn1"
 	pycompile_module="ndg/httpsclient"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 20cc1c93134..69fa4080f1c 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-netaddr
 version=0.7.19
 revision=3
-archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module
 pycompile_module="netaddr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-netaddr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="netaddr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index f2cd7fe5c3f..2ad6f5bb304 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -2,7 +2,6 @@
 pkgname=python-nose
 version=1.3.7
 revision=4
-archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module
 pycompile_module="nose"
@@ -18,7 +17,6 @@ checksum=f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98
 alternatives="nose:nosetests:/usr/bin/nosetests2"
 
 python3-nose_package() {
-	archs=noarch
 	pycompile_module="nose"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index 058abbd4253..de6db0c3cac 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -2,7 +2,6 @@
 pkgname=python-nose2
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="nose2"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-nose2_package() {
-	archs=noarch
 	pycompile_module="nose2"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-coverage python3-six"
diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 2223850f22e..1e47ceb7e75 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -13,14 +13,12 @@ license="BSD-2-Clause"
 homepage="https://github.com/bad-day/npyscreen"
 distfiles="https://github.com/bad-day/npyscreen/archive/${version}.tar.gz"
 checksum=6703c22d6bad3131b075d7d242c611a3c7ba8eae03f6d3cb414e3d35dae94b29
-archs=noarch
 
 post_install() {
 	vlicense LICENCE
 }
 
 python3-npyscreen_package() {
-	archs=noarch
 	pycompile_module="npyscreen"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 0582fb326c1..7bb1ee3effe 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -2,7 +2,6 @@
 pkgname=python-ntplib
 version=0.3.3
 revision=4
-archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"
 pycompile_module="ntplib.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/ntplib/ntplib-${version}.tar.gz"
 checksum="c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"
 
 python3-ntplib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ntplib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index 2398adba276..9469fb2411e 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -2,7 +2,6 @@
 pkgname=python-oauth2client
 version=4.1.3
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauth2client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/o/oauth2client/oauth2client-${version}.tar.gz"
 checksum=d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6
 
 python3-oauth2client_package() {
-	archs=noarch
 	depends="python3-httplib2 python3-pyasn1 python3-pyasn1-modules
 	 python3-rsa python3-six"
 	pycompile_module="oauth2client"
diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 036f1b31c92..ba8887bb647 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-oauthlib
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-oauthlib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 803d7b67cd8..8d57d382f61 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -2,7 +2,6 @@
 pkgname=python-olefile
 version=0.46
 revision=2
-archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module
 pycompile_module="olefile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-olefile_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="olefile"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index d7ab230194d..92d746abf01 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -2,7 +2,6 @@
 pkgname=python-openssl
 version=19.1.0
 revision=1
-archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pyOpenSSL/pyOpenSSL-${version}.tar.gz"
 checksum=9a24494b2602aaf402be5c9e30a0b82d4a5c67528fe8fb475e3f3bc00dd69507
 
 python3-openssl_package() {
-	archs=noarch
 	depends="python3-cryptography python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 06042d12b90..3aff25e48ab 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -2,7 +2,6 @@
 pkgname=python-packaging
 version=19.1
 revision=3
-archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module
 pycompile_module="packaging"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-packaging_package() {
-	archs=noarch
 	pycompile_module="packaging"
 	depends="python3-attrs python3-parsing python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index 780e9008ea7..91331977858 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -2,7 +2,6 @@
 pkgname=python-pam
 version=1.8.4
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="pam.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pam_package() {
-	archs=noarch
 	depends="python3 pam"
 	pycompile_module="pam.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index 8650d20256f..119156c8578 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -2,7 +2,6 @@
 pkgname=python-pandocfilters
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module
 pycompile_module="pandocfilters.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pandocfilters_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pandocfilters.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index f1bca0aea24..54447c2eb96 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -2,7 +2,6 @@
 pkgname=python-paramiko
 version=2.7.1
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/paramiko/paramiko-${version}.tar.gz"
 checksum=920492895db8013f6cc0179293147f830b8c7b21fdfc839b6bad760c27459d9f
 
 python3-paramiko_package() {
-	archs=noarch
 	depends="python3-cryptography python3-pyasn1 python3-bcrypt python3-pynacl"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 9ccdc26d51e..0eda1fafae5 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -2,7 +2,6 @@
 pkgname=python-parse
 version=1.12.0
 revision=2
-archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module
 pycompile_module="parse.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-parse_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="parse.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 56d64c7cbaa..db4b7f35583 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -2,7 +2,6 @@
 pkgname=python-parsing
 version=2.4.6
 revision=1
-archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-parsing_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 49ed2fbdf20..93cbe8ef17d 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -2,7 +2,6 @@
 pkgname=python-parso
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index f46a3e92642..805563fc9a6 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -2,7 +2,6 @@
 pkgname=python-passlib
 version=1.7.1
 revision=3
-archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module
 pycompile_module="passlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-passlib_package() {
-	archs=noarch
 	pycompile_module="passlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathlib/template b/srcpkgs/python-pathlib/template
index 65704965145..b71e822c2e8 100644
--- a/srcpkgs/python-pathlib/template
+++ b/srcpkgs/python-pathlib/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="pathlib-${version}"
 build_style=python2-module
 pycompile_module="pathlib.py"
diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index fa600b78fbe..d879dbb709c 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib2
 version=2.3.4
 revision=3
-archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module
 pycompile_module="pathlib2"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pathlib2/pathlib2-${version}.tar.gz"
 checksum=446014523bb9be5c28128c4d2a10ad6bb60769e78bd85658fe44a450674e0ef8
 
 python3-pathlib2_package() {
-	archs=noarch
 	depends="python3-six python3-scandir"
 	pycompile_module="pathlib2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index bd4736ec45d..33d17e59452 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -2,7 +2,6 @@
 pkgname=python-pathspec
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module
 pycompile_module="pathspec"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-pathspec_package() {
-	archs=noarch
 	pycompile_module="pathspec"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 47dc6ef6a71..d8785d20444 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -2,7 +2,6 @@
 pkgname=python-pathtools
 version=0.1.2
 revision=2
-archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module
 pycompile_module="pathtools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pathtools_package() {
-	archs=noarch
 	pycompile_module="pathtools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index 956d0b4cad9..218cf6e1bae 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -2,7 +2,6 @@
 pkgname=python-pbkdf2
 version=1.3
 revision=4
-archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module
 pycompile_module="pbkdf2"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pbkdf2_package() {
-	archs=noarch
 	pycompile_module="pbkdf2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pbr/template b/srcpkgs/python-pbr/template
index 9c7216056fe..fca5c38e134 100644
--- a/srcpkgs/python-pbr/template
+++ b/srcpkgs/python-pbr/template
@@ -2,7 +2,6 @@
 pkgname=python-pbr
 version=5.4.3
 revision=2
-archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module
 pycompile_module="pbr"
@@ -17,7 +16,6 @@ checksum=2c8e420cd4ed4cec4e7999ee47409e876af575d4c35a45840d59e8b5f3155ab8
 alternatives="pbr:pbr:/usr/bin/pbr2"
 
 python3-pbr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pbr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ef7db98e491..ae37b56cb7c 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -2,7 +2,6 @@
 pkgname=python-pdfrw
 version=0.4
 revision=3
-archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 
 python3-pdfrw_package() {
 	replaces="python-pdfrw-example<${version}_${revision}"
-	archs=noarch
 	pycompile_module="pdfrw"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 03102c3d294..c17f54ee717 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -2,7 +2,6 @@
 pkgname=python-pexpect
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module
 pycompile_module="pexpect"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-pexpect_package() {
-	archs=noarch
 	depends="python3-ptyprocess"
 	pycompile_module="pexpect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index f98052f4151..a0120b06438 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -2,7 +2,6 @@
 pkgname=python-pgmigrate
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pgmigrate_package() {
-	archs=noarch
 	depends="python3 python3-sqlparse python3-psycopg2 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index a28b6e209e7..86291588854 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -2,7 +2,6 @@
 pkgname=python-pgpdump
 version=1.5
 revision=6
-archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/toofishes/python-pgpdump/archive/${version}.tar.gz
 checksum=05383f66e467e855299d1ed51161c6038ac338d9d10bd33476b574dc3bef64ff
 
 python3-pgpdump_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pgpdump"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index e3c9a17bfdc..dd4753a52af 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -2,7 +2,6 @@
 pkgname=python-picamera
 version=1.13
 revision=2
-archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module
 pycompile_module="picamera"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-picamera_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="picamera"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index c1d86826c15..2cbddcf65af 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -2,7 +2,6 @@
 pkgname=python-pickleshare
 version=0.7.5
 revision=2
-archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module
 pycompile_module="pickleshare.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pickleshare_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pickleshare.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index d44215124f4..58b3e982ca7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -2,7 +2,6 @@
 pkgname=python-pip
 version=20.0.2
 revision=1
-archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pip_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pip:pip:/usr/bin/pip3"
diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index 69490a04324..b5c3c76ad0f 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -2,7 +2,6 @@
 pkgname=python-pipenv
 version=2020.8.13
 revision=1
-archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ post_install() {
 }
 
 python3-pipenv_package() {
-	archs=noarch
 	depends="python3 python3-pip python3-virtualenv python3-virtualenv-clone"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="
diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index e9e5480907d..9a423f67e48 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -2,7 +2,6 @@
 pkgname=python-pkgconfig
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module
 pycompile_module="pkgconfig"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pkgconfig_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pkgconfig"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pluggy/template b/srcpkgs/python-pluggy/template
index e52dee341ec..89bedfb33d4 100644
--- a/srcpkgs/python-pluggy/template
+++ b/srcpkgs/python-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python-pluggy
 version=0.13.1
 revision=1
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-ply/template b/srcpkgs/python-ply/template
index 04a3defa6aa..0ea8ca0f182 100644
--- a/srcpkgs/python-ply/template
+++ b/srcpkgs/python-ply/template
@@ -2,7 +2,6 @@
 pkgname=python-ply
 version=3.11
 revision=2
-archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ply_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ply"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index 58fd20d3f73..6edc83ab027 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -2,7 +2,6 @@
 pkgname=python-podcastparser
 version=0.6.5
 revision=1
-archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -25,7 +24,6 @@ post_install() {
 
 python3-podcastparser_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove "usr/lib/python3*"
diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index 8b8d4b66c68..67e81743db3 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -2,7 +2,6 @@
 pkgname=python-polib
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-polib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="polib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 455051f5a50..88fa8a98417 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -2,7 +2,6 @@
 pkgname=python-portend
 version=2.5
 revision=2
-archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
 pycompile_module="portend.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-portend_package() {
-	archs=noarch
 	depends="python3-tempora"
 	pycompile_module="portend.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 6d8063fc43a..8cd4d8943da 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -2,7 +2,6 @@
 pkgname=python-pretend
 version=1.0.9
 revision=2
-archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module
 pycompile_module="pretend"
diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 0d6bd1db69d..80371bed0fa 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -2,7 +2,6 @@
 pkgname=python-progress
 version=1.5
 revision=2
-archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module
 pycompile_module="progress"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-progress_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="progress"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 7b71fbeffc2..ee3bd9aafad 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -2,7 +2,6 @@
 pkgname=python-prometheus_client
 version=0.7.1
 revision=2
-archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module
 pycompile_module="prometheus_client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/prometheus_client/prometheus_client-${version}.tar.gz"
 checksum=71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da
 
 python3-prometheus_client_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="prometheus_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index 70516738c27..614745d925b 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -3,7 +3,6 @@ pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.18
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index e0f00f41668..1d93496f287 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -2,7 +2,6 @@
 pkgname=python-prompt_toolkit2
 version=2.0.9
 revision=5
-archs=noarch
 build_style=meta
 short_desc="Python2 library for building command lines (removed package)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index b1da90de474..b4e6f91a33f 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -2,7 +2,6 @@
 pkgname=python-proselint
 version=0.10.2
 revision=2
-archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module
 pycompile_module="proselint"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-proselint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-click python3-future python3-six"
 	pycompile_module="proselint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 0485f0d930d..816bddbb2c0 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python-protobuf
 version=3.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-protobuf_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index fd2e51fa3ac..961bbff5e30 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -2,7 +2,6 @@
 pkgname=python-ptyprocess
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module
 pycompile_module="ptyprocess"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-ptyprocess_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ptyprocess"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 2a0559b4dc3..1256aeab468 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -2,7 +2,6 @@
 pkgname=python-py
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="py-${version}"
 build_style=python-module
 pycompile_module="py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-py_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index e9a10e88c15..8c54b620b8a 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -2,7 +2,6 @@
 pkgname=python-pyPEG2
 version=2.15.2
 revision=5
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/${pkgname#*-}/${pkgname#*-}-${version}.tar.gz"
 checksum=2b2d4f80d8e1a9370b2a91f4a25f4abf7f69b85c8da84cd23ec36451958a1f6d
 
 python3-pyPEG2_package() {
-	archs=noarch
 	depends="python3-lxml"
 	pycompile_module="pypeg2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index d5b2d967f4e..d3524454dbe 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -2,7 +2,6 @@
 pkgname=python-pyacoustid
 version=1.1.5
 revision=3
-archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyacoustid_package() {
-	archs=noarch
 	pycompile_module="acoustid.py chromaprint.py"
 	depends="chromaprint python3-audioread python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index f45976e5b0b..3a4cfe7f541 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyaes
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module
 pycompile_module="pyaes"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyaes_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyaes"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1-modules/template b/srcpkgs/python-pyasn1-modules/template
index b180252b96d..20626d431c6 100644
--- a/srcpkgs/python-pyasn1-modules/template
+++ b/srcpkgs/python-pyasn1-modules/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1-modules
 version=0.2.8
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyasn1_modules"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-pyasn1-modules_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="pyasn1_modules"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1/template b/srcpkgs/python-pyasn1/template
index 7f50c81b281..bb3e06272af 100644
--- a/srcpkgs/python-pyasn1/template
+++ b/srcpkgs/python-pyasn1/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1
 version=0.4.8
 revision=1
-archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyasn1_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index 04e85465121..647bd2d58d3 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -2,7 +2,6 @@
 pkgname=python-pycodestyle
 version=2.6.0
 revision=1
-archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pycodestyle_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle3"
diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index c4a4c9cafbd..a7cf612255f 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -2,7 +2,6 @@
 pkgname=python-pycountry
 version=19.8.18
 revision=1
-archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/pycountry/pycountry-${version}.tar.gz"
 checksum=3c57aa40adcf293d59bebaffbe60d8c39976fba78d846a018dc0c2ec9c6cb3cb
 
 python3-pycountry_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index d2e83aa79b2..b833ec6e2d2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -2,7 +2,6 @@
 pkgname=python-pycparser
 version=2.19
 revision=2
-archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module
 pycompile_module="pycparser"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pycparser_package() {
-	archs=noarch
 	depends="python3-ply"
 	pycompile_module="pycparser"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pydns/template b/srcpkgs/python-pydns/template
index 50f97da8ede..5d0027f9eee 100644
--- a/srcpkgs/python-pydns/template
+++ b/srcpkgs/python-pydns/template
@@ -2,7 +2,6 @@
 pkgname=python-pydns
 version=2.3.6
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="DNS"
diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index 193650442fc..694e8598c45 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -2,7 +2,6 @@
 pkgname=python-pyelftools
 version=0.25
 revision=2
-archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module
 pycompile_module="elftools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyelftools_package() {
-	archs=noarch
 	pycompile_module="elftools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 586cba32b89..97d5c43a109 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyflakes
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyflakes_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pyflakes:pyflakes:/usr/bin/pyflakes3"
diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index 397103c49f7..084f261cdf7 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -2,7 +2,6 @@
 pkgname=python-pyglet
 version=1.4.10
 revision=1
-archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools unzip"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pyglet_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pykka/template b/srcpkgs/python-pykka/template
index 512639c69c3..9c668bc01e2 100644
--- a/srcpkgs/python-pykka/template
+++ b/srcpkgs/python-pykka/template
@@ -2,7 +2,6 @@
 pkgname=python-pykka
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="Pykka-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/P/Pykka/Pykka-${version}.tar.gz"
 checksum=895cc2ed8779b65dd14a90ba3f4b8cb0f7904c7bf0710fe96a923019f8e82a39
 
 python3-pykka_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index b70bd73d4aa..34131d837e6 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -2,7 +2,6 @@
 pkgname=python-pyotp
 version=2.3.0
 revision=2
-archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module
 pycompile_module="pyotp"
@@ -26,7 +25,6 @@ post_install() {
 
 python3-pyotp_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="pyotp"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-pypcapfile/template b/srcpkgs/python-pypcapfile/template
index 73b767f61c2..ef4d475ff13 100644
--- a/srcpkgs/python-pypcapfile/template
+++ b/srcpkgs/python-pypcapfile/template
@@ -3,7 +3,6 @@ pkgname=python-pypcapfile
 version=0.12.0
 revision=1
 wrksrc="pypcapfile-${version}"
-archs=noarch
 build_style=python2-module
 pycompile_module="pcapfile"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 1286923b906..302c6765857 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -2,7 +2,6 @@
 pkgname=python-pyperclip
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_wrksrc=pyperclip-${version}
 build_style=python-module
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-pyperclip_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index 1bea9c2ffdf..8ff86f6f711 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -2,7 +2,6 @@
 pkgname=python-pyqtgraph
 version=0.10.0
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyqtgraph"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyqtgraph_package() {
-	archs=noarch
 	depends="python3-PyQt5 python3-numpy python3-PyOpenGL"
 	pycompile_module="pyqtgraph"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index cd81c4d0624..18387d894a8 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -2,7 +2,6 @@
 pkgname=python-pyrfc3339
 version=1.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"
 wrksrc="pyRFC3339-${version}"
@@ -23,7 +22,6 @@ python3-pyrfc3339_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-pytz"
 	pycompile_module="pyrfc3339"
-	archs=noarch
 	pkg_install() {
 		vlicense LICENSE.txt LICENSE
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-pyserial/template b/srcpkgs/python-pyserial/template
index 354be493b16..ea2ba7123ee 100644
--- a/srcpkgs/python-pyserial/template
+++ b/srcpkgs/python-pyserial/template
@@ -2,7 +2,6 @@
 pkgname=python-pyserial
 version=3.4
 revision=3
-archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyserial_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="serial"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index ca508a4a7cc..1396099515a 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -2,7 +2,6 @@
 pkgname=python-pysocks
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pysocks_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index be742c08ce4..42a6719080a 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -2,7 +2,6 @@
 pkgname=python-pysrt
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=b4f844ba33e4e7743e9db746492f3a193dc0bc112b153914698e7c1cdeb9b0b9
 alternatives="srt:srt:/usr/bin/srt2"
 
 python3-pysrt_package() {
-	archs=noarch
 	depends="python3 python3-chardet"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="srt:srt:/usr/bin/srt3"
diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 893045b8998..26c053a1158 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -2,7 +2,6 @@
 pkgname=python-pystache
 version=0.5.4
 revision=3
-archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module
 pycompile_module="pystache"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pystache_package() {
-	archs=noarch
 	pycompile_module="pystache"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 1efc2f9a488..86bcd331228 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -2,7 +2,6 @@
 pkgname=python-pyte
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module
 pycompile_module="pyte"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-pyte_package() {
-	archs=noarch
 	pycompile_module="pyte"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-wcwidth"
diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index 14255af8a35..3dd87c592dd 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-fixture-config
 version=1.3.0
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_fixture_config.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-fixture-config_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_fixture_config.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index 240e8773aaa..d963da9fb14 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-mock
 version=1.10.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_mock.py _pytest_mock_version.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-mock_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_mock.py _pytest_mock_version.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 5e2ffe71b6e..3c205b971de 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest
 version=4.6.9
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index 40f582962c8..81df887b425 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -2,7 +2,6 @@
 pkgname=python-pytz
 version=2019.3
 revision=2
-archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module
 pycompile_module="pytz"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pytz_package() {
-	archs=noarch
 	depends="python3 tzdata"
 	pycompile_module="pytz"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index 2ec53088636..bc6fb1ba8a5 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -2,7 +2,6 @@
 pkgname=python-pyudev
 version=0.21.0
 revision=3
-archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module
 pycompile_module="pyudev"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=5f4625f89347e465731866ddbe042a055bbc5092577356aa3d089ac5fb8efd94
 
 python3-pyudev_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 
diff --git a/srcpkgs/python-pyx/template b/srcpkgs/python-pyx/template
index 1ece52764ab..24a8edae5fb 100644
--- a/srcpkgs/python-pyx/template
+++ b/srcpkgs/python-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python-pyx
 version=0.12.1
 revision=4
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python2-module
 pycompile_module="pyx"
diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 35b568eb4e6..28c0ca61c67 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -2,7 +2,6 @@
 pkgname=python-pyzbar
 version=0.1.8
 revision=2
-archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module
 pycompile_module="pyzbar"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-pyzbar_package() {
-	archs=noarch
 	pycompile_module="pyzbar"
 	depends="libzbar python3"
 	alternatives="pyzbar:read_zbar:/usr/bin/read_zbar.py3"
diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index bf35c82757e..10f8455d835 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -2,7 +2,6 @@
 pkgname=python-qrcode
 version=6.1
 revision=2
-archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module
 pycompile_module="qrcode"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-qrcode_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="qrcode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 2603cae3584..741b7f63a76 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -2,7 +2,6 @@
 pkgname=python-random2
 version=1.0.1
 revision=4
-archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module
 pycompile_module="random2.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/random2/random2-${version}.zip"
 checksum=34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007
 
 python3-random2_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="random2.py"
 	pkg_install() {
diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index 83ff75c6e03..20e7a42f8d8 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -2,7 +2,6 @@
 pkgname=python-rarfile
 version=4.0
 revision=1
-archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-rarfile_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index 87382c21602..b7457cfda31 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -2,7 +2,6 @@
 pkgname=python-raven
 version=6.10.0
 revision=2
-archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module
 pycompile_module="raven"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-raven_package() {
-	archs=noarch
 	pycompile_module="raven"
 	depends="ca-certificates python3-setuptools"
 	alternatives="raven:raven:/usr/bin/raven3"
diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index f676dedfb2f..471a4d5ad1b 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -2,7 +2,6 @@
 pkgname=python-rdflib
 version=4.2.2
 revision=3
-archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ python3-rdflib_package() {
 	 rdflib:rdfgraphisomorphism:/usr/bin/rdfgraphisomorphism3
 	 rdflib:rdfpipe:/usr/bin/rdfpipe3
 	 rdflib:rdfs2dot:/usr/bin/rdfs2dot3"
-	archs=noarch
 	depends="python3-setuptools python3-isodate python3-parsing"
 	pycompile_module="rdflib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ace92da477b..46caca6191c 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -2,7 +2,6 @@
 pkgname=python-readability-lxml
 version=0.8.1
 revision=1
-archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/r/readability-lxml/readability-lxml-${version}.tar.gz"
 checksum=e51fea56b5909aaf886d307d48e79e096293255afa567b7d08bca94d25b1a4e1
 
 python3-readability-lxml_package() {
-	archs=noarch
 	depends="python3-lxml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 3bc58c3a7dd..ed683fde9ef 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -2,7 +2,6 @@
 pkgname=python-rebulk
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-rebulk_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index 194d682dc32..1729e362ed7 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -2,7 +2,6 @@
 pkgname=python-redis
 version=3.3.11
 revision=1
-archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-redis_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 2d1410fcd1b..6c66bce1309 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-mock
 version=1.5.2
 revision=3
-archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module
 pycompile_module="requests_mock"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-mock/requests-mock-${version}.tar.gz"
 checksum=7a5fa99db5e3a2a961b6f20ed40ee6baeff73503cf0a553cc4d679409e6170fb
 
 python3-requests-mock_package() {
-	archs=noarch
 	pycompile_module="requests_mock"
 	depends="python3-requests python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index e3e824b35b1..84cf752dcb0 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-oauthlib
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_oauthlib"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-requests-oauthlib_package() {
-	archs=noarch
 	depends="python3-requests python3-oauthlib"
 	pycompile_module="requests_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 13a81586221..62d763b2b5d 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-toolbelt
 version=0.9.1
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_toolbelt"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-toolbelt/requests-toolbelt-${version}.tar.gz"
 checksum=968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0
 
 python3-requests-toolbelt_package() {
-	archs=noarch
 	pycompile_module="requests_toolbelt"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index 1bd9f51333c..a2c68c7452a 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -2,7 +2,6 @@
 pkgname=python-requests
 version=2.23.0
 revision=1
-archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-requests_package() {
-	archs=noarch
 	depends="ca-certificates python3-chardet python3-urllib3 python3-idna"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index 2522872cc32..4543670a319 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -2,7 +2,6 @@
 pkgname=python-rfc6555
 version=0.0.0
 revision=2
-archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module
 pycompile_module="rfc6555"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/rfc6555/rfc6555-${version}.tar.gz"
 checksum=191cbba0315b53654155321e56a93466f42cd0a474b4f341df4d03264dcb5217
 
 python3-rfc6555_package() {
-	archs=noarch
 	pycompile_module="rfc6555"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index 72f32a9da0d..f9a3dbd72ad 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -3,7 +3,6 @@ pkgname=python-ripe-atlas-cousteau
 version=1.4.2
 revision=2
 build_style=python-module
-archs=noarch
 pycompile_module="ripe/atlas/cousteau"
 wrksrc="ripe-atlas-cousteau-${version}"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=91bfaaafe7561ccc7b91f555a5004c467d615b9f404739496a4ed6a22fcb07b7
 
 python3-ripe-atlas-cousteau_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="ripe/atlas/cousteau"
 	depends="python3-dateutil python3-socketIO-client"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 22abb48af46..3e9b273ed72 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -2,7 +2,6 @@
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module
 pycompile_module="ripe/atlas/sagan"
@@ -17,7 +16,6 @@ checksum=39d8c0864ec8d790fe46f45cb55020d8603fceb374c77cda46f96b71279af016
 
 python3-ripe-atlas-sagan_package() {
 	depends="python3-dateutil python3-pytz python3-cryptography"
-	archs=noarch
 	pycompile_module="ripe/atlas/sagan"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index 11e9bf2c60d..17e034b0edc 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -2,7 +2,6 @@
 pkgname=python-rsa
 version=4.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="rsa"
@@ -31,7 +30,6 @@ python3-rsa_package() {
 	 rsa:pyrsa-priv2pub:/usr/bin/pyrsa-priv2pub3
 	 rsa:pyrsa-sign:/usr/bin/pyrsa-sign3
 	 rsa:pyrsa-verify:/usr/bin/pyrsa-verify3"
-	archs=noarch
 	pycompile_module="rsa"
 	depends="python3-setuptools python3-pyasn1"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index 29aba6cc68b..70f276e67d2 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -2,7 +2,6 @@
 pkgname=python-s3transfer
 version=0.3.3
 revision=1
-archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/s3transfer/archive/${version}.tar.gz"
 checksum=0c8b0f7aaf32173d1475df0a453bfdc37be8207ea15c1d8415a590ef3986fc51
 
 python3-s3transfer_package() {
-	archs=noarch
 	depends="python3-botocore"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index 0db5b157ce1..49654ed01ce 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -2,7 +2,6 @@
 pkgname=python-scour
 version=0.37
 revision=2
-archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module
 pycompile_module="scour"
@@ -23,7 +22,6 @@ do_check() {
 }
 
 python3-scour_package() {
-	archs=noarch
 	pycompile_module="scour"
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-selectors2/template b/srcpkgs/python-selectors2/template
index 1ad45d8e7d3..c73fcb17309 100644
--- a/srcpkgs/python-selectors2/template
+++ b/srcpkgs/python-selectors2/template
@@ -2,7 +2,6 @@
 pkgname=python-selectors2
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="selectors2-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 94f56545695..68a97a3aa47 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -2,7 +2,6 @@
 pkgname=python-send2trash
 version=1.5.0
 revision=2
-archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module
 pycompile_module="send2trash"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-send2trash_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="send2trash"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index 658802bef0d..59083a2af5c 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python-serpent
 version=1.28
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-service_identity/template b/srcpkgs/python-service_identity/template
index e21a1520a75..d4957063827 100644
--- a/srcpkgs/python-service_identity/template
+++ b/srcpkgs/python-service_identity/template
@@ -2,7 +2,6 @@
 pkgname=python-service_identity
 version=18.1.0
 revision=2
-archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module
 pycompile_module="service_identity"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-service_identity_package() {
-	archs=noarch
 	depends="python3-attrs python3-pyasn1-modules python3-cryptography"
 	pycompile_module="service_identity"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index d71e746e12e..3e3aeaa589c 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -4,7 +4,6 @@ pkgname=python-setuptools
 # python2 support for setuptools ended at 44.0.0
 version=44.0.0
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 16de6daf662..67cd0c68998 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -2,7 +2,6 @@
 pkgname=python-sh
 version=1.13.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-sh_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index 6c95222fa7e..cbd435e04e5 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -2,7 +2,6 @@
 pkgname=python-simplebayes
 version=1.5.8
 revision=2
-archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module
 pycompile_module="simplebayes"
@@ -22,7 +21,6 @@ post_install() {
 python3-simplebayes_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="simplebayes"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index f352387fa1f..483244ed30f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -2,7 +2,6 @@
 pkgname=python-simplegeneric
 version=0.8.1
 revision=4
-archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/simplegeneric/simplegeneric-${version}.zip"
 checksum=dc972e06094b9af5b855b3df4a646395e43d1c9d0d39ed345b7393560d0b9173
 
 python3-simplegeneric_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="simplegeneric.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-singledispatch/template b/srcpkgs/python-singledispatch/template
index 9da989105f8..cc5f1468f5b 100644
--- a/srcpkgs/python-singledispatch/template
+++ b/srcpkgs/python-singledispatch/template
@@ -2,7 +2,6 @@
 pkgname=python-singledispatch
 version=3.4.0.3
 revision=1
-archs=noarch
 wrksrc="singledispatch-${version}"
 build_style=python2-module
 pycompile_module="singledispatch.py singledispatch_helpers.py"
diff --git a/srcpkgs/python-six/template b/srcpkgs/python-six/template
index bc47a16d28d..a57040dd697 100644
--- a/srcpkgs/python-six/template
+++ b/srcpkgs/python-six/template
@@ -2,7 +2,6 @@
 pkgname=python-six
 version=1.14.0
 revision=1
-archs=noarch
 wrksrc="six-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-six_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 8c8ea952285..5de11eb3f6b 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -2,7 +2,6 @@
 pkgname=python-smmap
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module
 pycompile_module="smmap"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-smmap_package() {
-	archs=noarch
 	pycompile_module="smmap"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 221478860e5..a3059e544d9 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -2,7 +2,6 @@
 pkgname=python-snowballstemmer
 version=1.2.1
 revision=4
-archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/snowballstemmer/snowballstemmer-${version}.tar.gz"
 checksum=919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128
 
 python3-snowballstemmer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="snowballstemmer"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 9495d7cf40b..7924c6d0cf4 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -2,7 +2,6 @@
 pkgname=python-socketIO-client
 version=0.7.2
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"
 wrksrc="socketIO-client-${version}"
@@ -22,7 +21,6 @@ post_install() {
 python3-socketIO-client_package() {
 	depends="python3-requests python3-six python3-websocket-client"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="socketIO_client"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 062cc3e6a8a..f412d7e4b4e 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -2,7 +2,6 @@
 pkgname=python-soupsieve
 version=1.9.5
 revision=2
-archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module
 pycompile_module="soupsieve"
@@ -34,7 +33,6 @@ post_install() {
 }
 
 python3-soupsieve_package() {
-	archs=noarch
 	pycompile_module="soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-spambayes/template b/srcpkgs/python-spambayes/template
index 9a85558c1d3..24d92de47dd 100644
--- a/srcpkgs/python-spambayes/template
+++ b/srcpkgs/python-spambayes/template
@@ -3,7 +3,6 @@ pkgname=python-spambayes
 version=1.1b3
 revision=1
 wrksrc=${pkgname#*-}-${version}
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python-lockfile python-pydns"
diff --git a/srcpkgs/python-sqlalchemy-migrate/template b/srcpkgs/python-sqlalchemy-migrate/template
index bb002660c0f..d9818bc1975 100644
--- a/srcpkgs/python-sqlalchemy-migrate/template
+++ b/srcpkgs/python-sqlalchemy-migrate/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlalchemy-migrate
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="migrate"
@@ -27,7 +26,6 @@ python3-sqlalchemy-migrate_package() {
 	alternatives="
 	 migrate:migrate-repository:/usr/bin/migrate-repository3
 	 migrate:migrate:/usr/bin/migrate3"
-	archs=noarch
 	depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
 	 python3-sqlparse python3-tempita"
 	pycompile_module="migrate"
diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 0f8c6f8ea2e..18369a5ab6b 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module
 pycompile_module="sqlparse"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-sqlparse_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="sqlparse"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 97bb4b48cb6..f032c8cb0b0 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -2,7 +2,6 @@
 pkgname=python-stem
 version=1.8.0
 revision=1
-archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module
 pycompile_module="stem"
@@ -18,7 +17,6 @@ checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
 
 python3-stem_package() {
-	archs=noarch
 	depends="python3-cryptography"
 	pycompile_module="stem"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 4f781304d3f..21efeca4d6a 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -2,7 +2,6 @@
 pkgname=python-stevedore
 version=1.30.1
 revision=2
-archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module
 pycompile_module="stevedore"
@@ -21,7 +20,6 @@ pre_build() {
 }
 
 python3-stevedore_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="stevedore"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 11f63f67bba..093db30e6da 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -2,7 +2,6 @@
 pkgname=python-stormssh
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc=storm-${version}
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-stormssh_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-paramiko python3-termcolor python3-Flask"
 	pycompile_module="storm"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 74dcf00ebdd..fe30efae2dc 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -2,7 +2,6 @@
 pkgname=python-subliminal
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-subliminal_package() {
-	archs=noarch
 	depends="python3 python3-guessit python3-babelfish python3-enzyme
 	 python3-BeautifulSoup4 python3-requests python3-click python3-dogpile.cache
 	 python3-stevedore python3-chardet python3-pysrt python3-six python3-appdirs
diff --git a/srcpkgs/python-tempita/template b/srcpkgs/python-tempita/template
index c1c75ee1cac..1c59ba302bf 100644
--- a/srcpkgs/python-tempita/template
+++ b/srcpkgs/python-tempita/template
@@ -2,7 +2,6 @@
 pkgname=python-tempita
 version=0.5.2
 revision=4
-archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/T/Tempita/Tempita-${version}.tar.gz"
 checksum=cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c
 
 python3-tempita_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="tempita"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index 194dc2718e5..166dd7c1157 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -2,7 +2,6 @@
 pkgname=python-tempora
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-tempora_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-pytz"
 	alternatives="tempora:calc-prorate:/usr/bin/calc-prorate3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 73c18fc79eb..f68d3be8832 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -2,7 +2,6 @@
 pkgname=python-termcolor
 version=1.1.0
 revision=6
-archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-termcolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="termcolor.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index d649364d88d..1777e9906e4 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -2,7 +2,6 @@
 pkgname=python-terminado
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module
 pycompile_module="terminado"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-terminado_package() {
-	archs=noarch
 	depends="python3-ptyprocess python3-tornado"
 	pycompile_module="terminado"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index abfc59900c0..da250a65f02 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -2,7 +2,6 @@
 pkgname=python-testpath
 version=0.4.2
 revision=2
-archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module
 pycompile_module="testpath"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-testpath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="testpath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index 24bac87af6a..2e7ca37e415 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -2,7 +2,6 @@
 pkgname=python-texttable
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module
 pycompile_module="texttable.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-texttable_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="texttable.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tkinter/template b/srcpkgs/python-tkinter/template
index f2b6d0bacf1..e9019fbc09c 100644
--- a/srcpkgs/python-tkinter/template
+++ b/srcpkgs/python-tkinter/template
@@ -76,7 +76,6 @@ do_install() {
 }
 
 idle-python_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python2 using Tkinter"
 	pycompile_dirs="usr/lib/python2.7/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 812d80343cc..350b4c93b51 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -2,7 +2,6 @@
 pkgname=python-tmuxp
 version=1.5.4
 revision=1
-archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module
 pycompile_module="tmuxp"
@@ -28,7 +27,6 @@ post_install() {
 }
 
 python3-tmuxp_package() {
-	archs=noarch
 	pycompile_module="tmuxp"
 	depends="python3 python3-setuptools python3-colorama python3-click python3-kaptan python3-libtmux"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 2fd6eaa0cea..d853e4385fd 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -2,7 +2,6 @@
 pkgname=python-toml
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module
 pycompile_module="toml"
@@ -20,7 +19,6 @@ pkg_install() {
 }
 
 python3-toml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="toml"
 	short_desc=${short_desc/Python2/Python3}
diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index f7ee7d037af..3d3c1dafc5a 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -2,7 +2,6 @@
 pkgname=python-tqdm
 version=4.48.2
 revision=1
-archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -27,7 +26,6 @@ python3-tqdm_package() {
 	alternatives="
 	 tqdm:tqdm:/usr/bin/tqdm3
 	 tqdm:tqdm.1:/usr/share/man/man1/tqdm3.1"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-tracing/template b/srcpkgs/python-tracing/template
index 4408f31be9f..7281f1f9ecd 100644
--- a/srcpkgs/python-tracing/template
+++ b/srcpkgs/python-tracing/template
@@ -2,7 +2,6 @@
 pkgname=python-tracing
 version=0.10
 revision=1
-archs=noarch
 wrksrc="python-tracing-tracing-${version}"
 build_style=python2-module
 pycompile_module="tracing"
diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 2df1a81c9be..4742cade8b8 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -2,7 +2,6 @@
 pkgname=python-ttystatus
 version=0.38
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://code.liw.fi/debian/pool/main/p/${pkgname}/${pkgname}_${version
 checksum=e544dd5b0f77ebc3bb5b4ace34bd3d2751e72956ec096c8ffb34beaead433628
 
 python3-ttystatus_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ttystatus"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index 2487511922a..f2a6afd286f 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -2,7 +2,6 @@
 pkgname=python-tweepy
 version=3.8.0
 revision=2
-archs=noarch
 wrksrc="tweepy-${version}"
 build_style=python-module
 pycompile_module="tweepy"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-tweepy_package() {
-	archs=noarch
 	pycompile_module="tweepy"
 	depends="python3-requests-oauthlib python3-six python3-pysocks"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index e5e7194078a..775fbf19426 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -2,7 +2,6 @@
 pkgname=python-twitter
 version=3.5
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="twitter"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ pre_build() {
 }
 
 python3-twitter_package() {
-	archs=noarch
 	pycompile_module="twitter"
 	depends="python3-future python3-requests python3-requests-oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-txgithub/template b/srcpkgs/python-txgithub/template
index e33466d59e3..ccd5f7b9747 100644
--- a/srcpkgs/python-txgithub/template
+++ b/srcpkgs/python-txgithub/template
@@ -2,7 +2,6 @@
 pkgname=python-txgithub
 version=15.0.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="txgithub"
diff --git a/srcpkgs/python-typing/template b/srcpkgs/python-typing/template
index dce911b6b1a..b5bd5971843 100644
--- a/srcpkgs/python-typing/template
+++ b/srcpkgs/python-typing/template
@@ -2,7 +2,6 @@
 pkgname=python-typing
 version=3.6.6
 revision=1
-archs=noarch
 wrksrc="typing-${version}"
 build_style=python2-module
 pycompile_module="typing.py"
diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 2ff5c497523..dfbb1fc9b34 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -2,7 +2,6 @@
 pkgname=python-unittest-mixins
 version=1.6
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="unittest_mixins"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/u/unittest-mixins/unittest-mixins-${version}.tar.gz"
 checksum=05363abe099f0724b7bb6d71d0ce1046078c868cb10b3f1ebdf3ca6593c52507
 
 python3-unittest-mixins_package() {
-	archs=noarch
 	pycompile_module="unittest_mixins"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index 0808a11e98d..f5ae56e2e2d 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -2,7 +2,6 @@
 pkgname=python-urbandict
 version=0.6.1
 revision=1
-archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=a19685ffa2450bea2df9bf328a6ce7c3c1e2213c95171ae2263b987cc54d201b
 alternatives="urbandicli:urbandicli:/usr/bin/urbandicli2"
 
 python3-urbandict_package() {
-	archs=noarch
 	alternatives="urbandicli:urbandicli:/usr/bin/urbandicli3"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3"
diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 5a44f7e24af..7598cdcb114 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -2,7 +2,6 @@
 pkgname=python-uritemplate
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-uritemplate_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 3f354488f86..fd464147487 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -2,7 +2,6 @@
 pkgname=python-urllib3
 version=1.25.8
 revision=1
-archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-urllib3_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urlnorm/template b/srcpkgs/python-urlnorm/template
index ae488dc3179..2a4a1ab6eab 100644
--- a/srcpkgs/python-urlnorm/template
+++ b/srcpkgs/python-urlnorm/template
@@ -2,7 +2,6 @@
 pkgname=python-urlnorm
 version=1.1.4
 revision=2
-archs=noarch
 wrksrc="urlnorm-${version}"
 build_style=python2-module
 pycompile_module="urlnorm"
diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index 62d214489e2..86bf7e4fae0 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -2,7 +2,6 @@
 pkgname=python-urwidtrees
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module
 pycompile_module="urwidtrees"
@@ -16,7 +15,6 @@ distfiles="https://github.com/pazz/urwidtrees/archive/${version}.tar.gz"
 checksum=703f4b161b930a26a461a3e3e695f94237ac75e2a52b87613e49093d9aa76034
 
 python3-urwidtrees_package() {
-	archs=noarch
 	pycompile_module="urwidtrees"
 	depends="python3-urwid"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index 4c7a5ef1bfb..15d10eb36fd 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -2,7 +2,6 @@
 pkgname=python-utils
 version=2.4.0
 revision=1
-archs=noarch
 wrksrc="python-utils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-utils_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 62c663bf18e..2683de6e90b 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -2,7 +2,6 @@
 pkgname=python-vint
 version=0.3.19
 revision=3
-archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module
 pycompile_module="vint"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-vint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-ansicolor python3-chardet python3-yaml"
 	pycompile_module="vint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index 624ade6f12b..32154cafe05 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -21,7 +21,6 @@ post_install() {
 
 python3-vispy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="vispy"
 	depends="python3-numpy"
 	pkg_install() {
diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 2c1c215527c..91bb0d96e17 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -2,7 +2,6 @@
 pkgname=python-vobject
 version=0.9.6.1
 revision=2
-archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module
 pycompile_module="vobject"
@@ -20,7 +19,6 @@ alternatives="
  vobject:ics_diff:/usr/bin/ics_diff2"
 
 python3-vobject_package() {
-	archs=noarch
 	pycompile_module="vobject"
 	depends="python3-setuptools python3-dateutil python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index 1dd5de27491..cd6da9e8785 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -2,7 +2,6 @@
 pkgname=python-voluptuous
 version=0.11.5
 revision=3
-archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module
 pycompile_module="voluptuous"
diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index 2eea6397f00..839e4edc91e 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -2,7 +2,6 @@
 pkgname=python-watchdog
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module
 pycompile_module="watchdog"
@@ -17,7 +16,6 @@ checksum=965f658d0732de3188211932aeb0bb457587f04f63ab4c1e33eab878e9de961d
 alternatives="watchdog:watchmedo:/usr/bin/watchmedo2"
 
 python3-watchdog_package() {
-	archs=noarch
 	pycompile_module="watchdog"
 	alternatives="watchdog:watchmedo:/usr/bin/watchmedo3"
 	depends="python3-setuptools python3-yaml python3-argh python3-pathtools"
diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 8ec6d17450c..e043794dc2d 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -2,7 +2,6 @@
 pkgname=python-wcwidth
 version=0.1.7
 revision=3
-archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module
 pycompile_module="wcwidth"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wcwidth_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 7ed3cfd1b4c..5e6673ed205 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -2,7 +2,6 @@
 pkgname=python-webassets
 version=0.12.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="webassets"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-webassets_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="webassets"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index f047a9e3c52..048c9bb5d3a 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -2,7 +2,6 @@
 pkgname=python-webencodings
 version=0.5.1
 revision=3
-archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module
 pycompile_module="webencodings"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/w/webencodings/webencodings-${version}.tar.gz"
 checksum=b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923
 
 python3-webencodings_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 3df8ab42b36..68773ce04ab 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -2,7 +2,6 @@
 pkgname=python-websocket-client
 version=0.56.0
 revision=2
-archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module
 pycompile_module="websocket"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-websocket-client_package() {
-	archs=noarch
 	depends="python3-six ca-certificates"
 	pycompile_module="websocket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 05fc8d1cc06..d3a346aa67e 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -2,7 +2,6 @@
 pkgname=python-wheel
 version=0.34.2
 revision=1
-archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wheel_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="wheel:wheel:usr/bin/wheel3"
diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index f8a69755b74..82b835789b0 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -2,7 +2,6 @@
 pkgname=python-wikipedia
 version=1.4.0
 revision=3
-archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module
 pycompile_module="wikipedia"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wikipedia_package() {
-	archs=noarch
 	pycompile_module="wikipedia"
 	depends="python3-BeautifulSoup4 python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index f8b131104e6..aab4fcc6e05 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -2,7 +2,6 @@
 pkgname=python-wsproto
 version=0.15.0
 revision=2
-archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module
 pycompile_module="wsproto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wsproto_package() {
-	archs=noarch
 	pycompile_module="wsproto"
 	depends="python3 python3-h11"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index 4e819c8bec7..b75ee56b800 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -2,7 +2,6 @@
 pkgname=python-xdg
 version=0.26
 revision=2
-archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module
 hostmakedepends="python python3"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/pyxdg/pyxdg-${version}.tar.gz"
 checksum=fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06
 
 python3-xdg_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="xdg"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 8c409c7f8c4..24933a8ee2e 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -2,7 +2,6 @@
 pkgname=python-xlib
 version=0.27
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python-six"
@@ -18,7 +17,6 @@ pre_build() {
 }
 
 python3-xlib_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index b8f25af9575..6991a03edaf 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -2,7 +2,6 @@
 pkgname=python-xmldiff
 version=2.4
 revision=1
-archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,14 +18,12 @@ alternatives="xmldiff:xmldiff:/usr/bin/xmldiff2"
 replaces="xmldiff>=0"
 
 xmldiff_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 python3-xmldiff_package() {
-	archs=noarch
 	depends="python3-lxml python3-six python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="xmldiff:xmldiff:/usr/bin/xmldiff3"
diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index b3d7ef042e8..925469ed211 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -2,7 +2,6 @@
 pkgname=python-xmltodict
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module
 pycompile_module="xmltodict.py"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-xmltodict_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="xmltodict.py"
 	depends="python3"
diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index d0b51ba637a..3ec999d2d8c 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -2,7 +2,6 @@
 pkgname=python-yamllint
 version=1.15.0
 revision=2
-archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module
 pycompile_module="yamllint"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-yamllint_package() {
-	archs=noarch
 	depends="python3-pathspec python3-setuptools python3-yaml"
 	pycompile_module="yamllint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index 4a44b0c926e..a254226ce8c 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-zc.lockfile
 version=2.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zc/lockfile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-zc.lockfile_package() {
-	archs=noarch
 	pycompile_module="zc/lockfile"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zipp/template b/srcpkgs/python-zipp/template
index c58f294006f..16c30842069 100644
--- a/srcpkgs/python-zipp/template
+++ b/srcpkgs/python-zipp/template
@@ -2,7 +2,6 @@
 pkgname=python-zipp
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="zipp-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 2c7390127ac..cdc08a374f0 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -2,7 +2,6 @@
 pkgname=python-zipstream
 version=1.1.4
 revision=4
-archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module
 pycompile_module="zipstream"
@@ -16,7 +15,6 @@ distfiles="https://github.com/allanlei/python-zipstream/archive/v${version}.tar.
 checksum=32a7a4bdb786914445589595273beffbbf9b6a0a3a3dc2cf19ea96114bd2abd7
 
 python3-zipstream_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="zipstream"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python3-3to2/template b/srcpkgs/python3-3to2/template
index 38558f1fcff..99e585a0a63 100644
--- a/srcpkgs/python3-3to2/template
+++ b/srcpkgs/python3-3to2/template
@@ -2,7 +2,6 @@
 pkgname=python3-3to2
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module
 pycompile_module="lib3to2"
diff --git a/srcpkgs/python3-CherryPy/template b/srcpkgs/python3-CherryPy/template
index 2b5fa77a786..b57d61c44db 100644
--- a/srcpkgs/python3-CherryPy/template
+++ b/srcpkgs/python3-CherryPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-CherryPy
 version=18.6.0
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ConfigArgParse/template b/srcpkgs/python3-ConfigArgParse/template
index ae8d5820cc8..793005a680f 100644
--- a/srcpkgs/python3-ConfigArgParse/template
+++ b/srcpkgs/python3-ConfigArgParse/template
@@ -2,7 +2,6 @@
 pkgname=python3-ConfigArgParse
 version=1.1
 revision=1
-archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python3-module
 pycompile_module="configargparse.py"
diff --git a/srcpkgs/python3-Django/template b/srcpkgs/python3-Django/template
index 9f1a08f968d..5d9a26ba6c3 100644
--- a/srcpkgs/python3-Django/template
+++ b/srcpkgs/python3-Django/template
@@ -2,7 +2,6 @@
 pkgname=python3-Django
 version=3.0.7
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-EasyProcess/template b/srcpkgs/python3-EasyProcess/template
index 725467884d4..bc740b46c59 100644
--- a/srcpkgs/python3-EasyProcess/template
+++ b/srcpkgs/python3-EasyProcess/template
@@ -2,7 +2,6 @@
 pkgname=python3-EasyProcess
 version=0.3
 revision=1
-archs=noarch
 wrksrc=EasyProcess-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-Mail/template b/srcpkgs/python3-Flask-Mail/template
index f1e31e984d0..01e568eacdf 100644
--- a/srcpkgs/python3-Flask-Mail/template
+++ b/srcpkgs/python3-Flask-Mail/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-Mail
 version=0.9.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-RESTful/template b/srcpkgs/python3-Flask-RESTful/template
index 74f5be02359..5900fc17409 100644
--- a/srcpkgs/python3-Flask-RESTful/template
+++ b/srcpkgs/python3-Flask-RESTful/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-RESTful
 version=0.3.8
 revision=1
-archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-SQLAlchemy/template b/srcpkgs/python3-Flask-SQLAlchemy/template
index 392425b0610..65d9a9da023 100644
--- a/srcpkgs/python3-Flask-SQLAlchemy/template
+++ b/srcpkgs/python3-Flask-SQLAlchemy/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-SQLAlchemy
 version=2.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-User/template b/srcpkgs/python3-Flask-User/template
index 1de87f20bf4..cae7df2f916 100644
--- a/srcpkgs/python3-Flask-User/template
+++ b/srcpkgs/python3-Flask-User/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-User
 version=1.0.2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Inflector/template b/srcpkgs/python3-Inflector/template
index e890c1ad256..2e777e3d1e2 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -2,7 +2,6 @@
 pkgname=python3-Inflector
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Markdown/template b/srcpkgs/python3-Markdown/template
index 3c2e12cbe8d..6373522906b 100644
--- a/srcpkgs/python3-Markdown/template
+++ b/srcpkgs/python3-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python3-Markdown
 version=3.2.2
 revision=1
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-MechanicalSoup/template b/srcpkgs/python3-MechanicalSoup/template
index 5a3b0b3eb03..379cfad07b1 100644
--- a/srcpkgs/python3-MechanicalSoup/template
+++ b/srcpkgs/python3-MechanicalSoup/template
@@ -2,7 +2,6 @@
 pkgname=python3-MechanicalSoup
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module
 pycompile_module="mechanicalsoup"
diff --git a/srcpkgs/python3-Pebble/template b/srcpkgs/python3-Pebble/template
index 0d91d52c6d1..b000c3120ae 100644
--- a/srcpkgs/python3-Pebble/template
+++ b/srcpkgs/python3-Pebble/template
@@ -2,7 +2,6 @@
 pkgname=python3-Pebble
 version=4.5.3
 revision=1
-archs=noarch
 wrksrc=Pebble-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyBrowserID/template b/srcpkgs/python3-PyBrowserID/template
index eefd0175f1b..a67482469c2 100644
--- a/srcpkgs/python3-PyBrowserID/template
+++ b/srcpkgs/python3-PyBrowserID/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyBrowserID
 version=0.14.0
 revision=3
-archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module
 pycompile_module="browserid"
diff --git a/srcpkgs/python3-PyFxA/template b/srcpkgs/python3-PyFxA/template
index 6fc6791efdd..47f332200e4 100644
--- a/srcpkgs/python3-PyFxA/template
+++ b/srcpkgs/python3-PyFxA/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyFxA
 version=0.7.3
 revision=2
-archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module
 pycompile_module="fxa"
diff --git a/srcpkgs/python3-PyPDF2/template b/srcpkgs/python3-PyPDF2/template
index 75289b4f3ca..bb9b668ba1b 100644
--- a/srcpkgs/python3-PyPDF2/template
+++ b/srcpkgs/python3-PyPDF2/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyPDF2
 version=1.26.0
 revision=1
-archs=noarch
 wrksrc="PyPDF2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyVirtualDisplay/template b/srcpkgs/python3-PyVirtualDisplay/template
index e7c42f99c4e..589e669a917 100644
--- a/srcpkgs/python3-PyVirtualDisplay/template
+++ b/srcpkgs/python3-PyVirtualDisplay/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyVirtualDisplay
 version=1.3.2
 revision=1
-archs=noarch
 wrksrc=PyVirtualDisplay-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-QtPy/template b/srcpkgs/python3-QtPy/template
index 2ddc8b313ee..6a32de69c52 100644
--- a/srcpkgs/python3-QtPy/template
+++ b/srcpkgs/python3-QtPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-QtPy
 version=1.9.0
 revision=1
-archs=noarch
 wrksrc=QtPy-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ReParser/template b/srcpkgs/python3-ReParser/template
index 5959de9d0e3..8de97219a45 100644
--- a/srcpkgs/python3-ReParser/template
+++ b/srcpkgs/python3-ReParser/template
@@ -2,7 +2,6 @@
 pkgname=python3-ReParser
 version=1.4.3
 revision=2
-archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module
 pycompile_module="reparser.py"
diff --git a/srcpkgs/python3-Ropper/template b/srcpkgs/python3-Ropper/template
index 6cf233bd99a..ea8c89c4de8 100644
--- a/srcpkgs/python3-Ropper/template
+++ b/srcpkgs/python3-Ropper/template
@@ -2,7 +2,6 @@
 pkgname=python3-Ropper
 version=1.13.5
 revision=1
-archs="noarch"
 wrksrc="Ropper-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-SecretStorage/template b/srcpkgs/python3-SecretStorage/template
index 864d1385411..1944bf60a4f 100644
--- a/srcpkgs/python3-SecretStorage/template
+++ b/srcpkgs/python3-SecretStorage/template
@@ -2,7 +2,6 @@
 pkgname=python3-SecretStorage
 version=3.1.2
 revision=1
-archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module
 pycompile_module="secretstorage"
diff --git a/srcpkgs/python3-SoCo/template b/srcpkgs/python3-SoCo/template
index 9a27dcdb264..b25879f7b83 100644
--- a/srcpkgs/python3-SoCo/template
+++ b/srcpkgs/python3-SoCo/template
@@ -2,7 +2,6 @@
 pkgname=python3-SoCo
 version=0.18.1
 revision=2
-archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module
 pycompile_module="soco"
diff --git a/srcpkgs/python3-Sphinx/template b/srcpkgs/python3-Sphinx/template
index df1eba9e438..b0b889a79ac 100644
--- a/srcpkgs/python3-Sphinx/template
+++ b/srcpkgs/python3-Sphinx/template
@@ -2,7 +2,6 @@
 pkgname=python3-Sphinx
 version=3.2.1
 revision=1
-archs=noarch
 wrksrc=Sphinx-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Telethon/template b/srcpkgs/python3-Telethon/template
index 25ccd5200e5..008835cd554 100644
--- a/srcpkgs/python3-Telethon/template
+++ b/srcpkgs/python3-Telethon/template
@@ -2,7 +2,6 @@
 pkgname=python3-Telethon
 version=1.13.0
 revision=2
-archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-TxSNI/template b/srcpkgs/python3-TxSNI/template
index 22b38d1d3cf..a24785ee8f5 100644
--- a/srcpkgs/python3-TxSNI/template
+++ b/srcpkgs/python3-TxSNI/template
@@ -2,7 +2,6 @@
 pkgname=python3-TxSNI
 version=0.1.9
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="TxSNI-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-WebOb/template b/srcpkgs/python3-WebOb/template
index 53e63879f2c..51d94de11ce 100644
--- a/srcpkgs/python3-WebOb/template
+++ b/srcpkgs/python3-WebOb/template
@@ -2,7 +2,6 @@
 pkgname=python3-WebOb
 version=1.8.5
 revision=2
-archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module
 pycompile_module="webob"
diff --git a/srcpkgs/python3-XlsxWriter/template b/srcpkgs/python3-XlsxWriter/template
index b991457e01e..d8ed07a40e2 100644
--- a/srcpkgs/python3-XlsxWriter/template
+++ b/srcpkgs/python3-XlsxWriter/template
@@ -2,7 +2,6 @@
 pkgname=python3-XlsxWriter
 version=1.1.8
 revision=2
-archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module
 pycompile_module="XlsxWriter"
diff --git a/srcpkgs/python3-acme/template b/srcpkgs/python3-acme/template
index b8a0c7888c2..601c681e15a 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -2,7 +2,6 @@
 pkgname=python3-acme
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioamqp/template b/srcpkgs/python3-aioamqp/template
index 861cec8f543..cbe7c34a0f4 100644
--- a/srcpkgs/python3-aioamqp/template
+++ b/srcpkgs/python3-aioamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioamqp
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="aioamqp-aioamqp-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiodns/template b/srcpkgs/python3-aiodns/template
index bca5802ef69..147fc1a5591 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiodns
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiofiles/template b/srcpkgs/python3-aiofiles/template
index 61d4d081821..b588a2b1583 100644
--- a/srcpkgs/python3-aiofiles/template
+++ b/srcpkgs/python3-aiofiles/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiofiles
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp-cors/template b/srcpkgs/python3-aiohttp-cors/template
index b621716e3cd..ee29a0ee68e 100644
--- a/srcpkgs/python3-aiohttp-cors/template
+++ b/srcpkgs/python3-aiohttp-cors/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index f13b0598456..326c17ce4e5 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors2
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-sse-client/template b/srcpkgs/python3-aiohttp-sse-client/template
index 6599b036e97..b5e1aa5e3ca 100644
--- a/srcpkgs/python3-aiohttp-sse-client/template
+++ b/srcpkgs/python3-aiohttp-sse-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-sse-client
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp_socks/template b/srcpkgs/python3-aiohttp_socks/template
index 10ab967ef76..572903c6752 100644
--- a/srcpkgs/python3-aiohttp_socks/template
+++ b/srcpkgs/python3-aiohttp_socks/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp_socks
 version=0.2.2
 revision=2
-archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_socks"
diff --git a/srcpkgs/python3-aioinflux/template b/srcpkgs/python3-aioinflux/template
index d63da0c2ccc..08a7bfe251b 100644
--- a/srcpkgs/python3-aioinflux/template
+++ b/srcpkgs/python3-aioinflux/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioinflux
 version=0.9.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aionotify/template b/srcpkgs/python3-aionotify/template
index 93d857f71b6..15e147e5f99 100644
--- a/srcpkgs/python3-aionotify/template
+++ b/srcpkgs/python3-aionotify/template
@@ -2,7 +2,6 @@
 pkgname=python3-aionotify
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="aionotify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioredis/template b/srcpkgs/python3-aioredis/template
index c93ad443386..d6d1143b616 100644
--- a/srcpkgs/python3-aioredis/template
+++ b/srcpkgs/python3-aioredis/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioredis
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiorpcx/template b/srcpkgs/python3-aiorpcx/template
index 3e25da6752f..e78840575e7 100644
--- a/srcpkgs/python3-aiorpcx/template
+++ b/srcpkgs/python3-aiorpcx/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiorpcx
 version=0.18.4
 revision=1
-archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module
 pycompile_module="aiorpcx"
diff --git a/srcpkgs/python3-altgraph/template b/srcpkgs/python3-altgraph/template
index 2bf433edb6e..76f7663a6e6 100644
--- a/srcpkgs/python3-altgraph/template
+++ b/srcpkgs/python3-altgraph/template
@@ -2,7 +2,6 @@
 pkgname=python3-altgraph
 version=0.16.1
 revision=2
-archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module
 pycompile_module="altgraph"
diff --git a/srcpkgs/python3-aniso8601/template b/srcpkgs/python3-aniso8601/template
index 0253b89b5a3..667b0b101b7 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -2,7 +2,6 @@
 pkgname=python3-aniso8601
 version=8.0.0
 revision=2
-archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"
 build_style=python3-module
diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index cb3832799a1..723e1bacaa5 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -2,7 +2,6 @@
 pkgname=python3-ansible-lint
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="ansible-lint-${version}"
 build_style=python3-module
 pycompile_module="ansiblelint"
diff --git a/srcpkgs/python3-anytree/template b/srcpkgs/python3-anytree/template
index 5bd9b407017..1406d04febc 100644
--- a/srcpkgs/python3-anytree/template
+++ b/srcpkgs/python3-anytree/template
@@ -2,7 +2,6 @@
 pkgname=python3-anytree
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-applib/template b/srcpkgs/python3-applib/template
index 3a5a4ed5d40..717849c614f 100644
--- a/srcpkgs/python3-applib/template
+++ b/srcpkgs/python3-applib/template
@@ -2,7 +2,6 @@
 pkgname=python3-applib
 version=1.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="applib-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-argcomplete/template b/srcpkgs/python3-argcomplete/template
index 8b7a61dc11a..c637a4aedbc 100644
--- a/srcpkgs/python3-argcomplete/template
+++ b/srcpkgs/python3-argcomplete/template
@@ -3,7 +3,6 @@ pkgname=python3-argcomplete
 version=1.12.0
 revision=1
 wrksrc="argcomplete-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="argcomplete"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-astral/template b/srcpkgs/python3-astral/template
index d290eee7806..9553913111e 100644
--- a/srcpkgs/python3-astral/template
+++ b/srcpkgs/python3-astral/template
@@ -2,7 +2,6 @@
 pkgname=python3-astral
 version=2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-astroid/template b/srcpkgs/python3-astroid/template
index 261dfacd70c..302fe6f914a 100644
--- a/srcpkgs/python3-astroid/template
+++ b/srcpkgs/python3-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python3-astroid
 version=2.3.3
 revision=3
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-async-timeout/template b/srcpkgs/python3-async-timeout/template
index 854584fb5b2..729fe1b46c7 100644
--- a/srcpkgs/python3-async-timeout/template
+++ b/srcpkgs/python3-async-timeout/template
@@ -2,7 +2,6 @@
 pkgname=python3-async-timeout
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module
 pycompile_module="async_timeout"
diff --git a/srcpkgs/python3-async_generator/template b/srcpkgs/python3-async_generator/template
index 20d9f7ea0d1..16d43ef99cf 100644
--- a/srcpkgs/python3-async_generator/template
+++ b/srcpkgs/python3-async_generator/template
@@ -2,7 +2,6 @@
 pkgname=python3-async_generator
 version=1.10
 revision=2
-archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module
 pycompile_module="async_generator"
diff --git a/srcpkgs/python3-atspi/template b/srcpkgs/python3-atspi/template
index a33a374fe18..f3024c4ceb5 100644
--- a/srcpkgs/python3-atspi/template
+++ b/srcpkgs/python3-atspi/template
@@ -2,7 +2,6 @@
 pkgname=python3-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
diff --git a/srcpkgs/python3-authres/template b/srcpkgs/python3-authres/template
index 27f543c33ba..666a0fb7c06 100644
--- a/srcpkgs/python3-authres/template
+++ b/srcpkgs/python3-authres/template
@@ -2,7 +2,6 @@
 pkgname=python3-authres
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="authres-${version}"
 build_style=python3-module
 pycompile_module=authres
diff --git a/srcpkgs/python3-autobahn/template b/srcpkgs/python3-autobahn/template
index fb3c80d8bb7..69d75e9178a 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -2,7 +2,6 @@
 pkgname=python3-autobahn
 version=20.7.1
 revision=1
-archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-blessed/template b/srcpkgs/python3-blessed/template
index a4a2274bd89..abdd6bb18a5 100644
--- a/srcpkgs/python3-blessed/template
+++ b/srcpkgs/python3-blessed/template
@@ -2,7 +2,6 @@
 pkgname=python3-blessed
 version=1.17.9
 revision=1
-archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-bokeh/template b/srcpkgs/python3-bokeh/template
index 18d8258acb3..fc07fd29ea2 100644
--- a/srcpkgs/python3-bokeh/template
+++ b/srcpkgs/python3-bokeh/template
@@ -2,7 +2,6 @@
 pkgname=python3-bokeh
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 make_build_args="--build-js"
diff --git a/srcpkgs/python3-boltons/template b/srcpkgs/python3-boltons/template
index 78f0f03a762..4921021252a 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -2,7 +2,6 @@
 pkgname=python3-boltons
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module
 pycompile_module="boltons"
diff --git a/srcpkgs/python3-boto3/template b/srcpkgs/python3-boto3/template
index 92126db33d7..44665c3e1e6 100644
--- a/srcpkgs/python3-boto3/template
+++ b/srcpkgs/python3-boto3/template
@@ -2,7 +2,6 @@
 pkgname=python3-boto3
 version=1.14.47
 revision=1
-archs=noarch
 wrksrc="boto3-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-breathe/template b/srcpkgs/python3-breathe/template
index 8e27f9397f4..49a45b25ad8 100644
--- a/srcpkgs/python3-breathe/template
+++ b/srcpkgs/python3-breathe/template
@@ -2,7 +2,6 @@
 pkgname=python3-breathe
 version=4.20.0
 revision=1
-archs=noarch
 wrksrc="breathe-${version}"
 build_style=python3-module
 _pyreqs="python3-Sphinx python3-docutils python3-six"
diff --git a/srcpkgs/python3-cachetools/template b/srcpkgs/python3-cachetools/template
index 6b14d89eff2..7220d8cdb09 100644
--- a/srcpkgs/python3-cachetools/template
+++ b/srcpkgs/python3-cachetools/template
@@ -2,7 +2,6 @@
 pkgname=python3-cachetools
 version=4.1.0
 revision=1
-archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-canonicaljson/template b/srcpkgs/python3-canonicaljson/template
index 87b7c8cc8e3..663ab617acc 100644
--- a/srcpkgs/python3-canonicaljson/template
+++ b/srcpkgs/python3-canonicaljson/template
@@ -2,7 +2,6 @@
 pkgname=python3-canonicaljson
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-casttube/template b/srcpkgs/python3-casttube/template
index 9e5544b0101..9d6798ee872 100644
--- a/srcpkgs/python3-casttube/template
+++ b/srcpkgs/python3-casttube/template
@@ -2,7 +2,6 @@
 pkgname=python3-casttube
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module
 pycompile_module="casttube"
diff --git a/srcpkgs/python3-certifi/template b/srcpkgs/python3-certifi/template
index 35807ad3642..185bf0b31ab 100644
--- a/srcpkgs/python3-certifi/template
+++ b/srcpkgs/python3-certifi/template
@@ -2,7 +2,6 @@
 pkgname=python3-certifi
 version=2020.06.20
 revision=1
-archs=noarch
 wrksrc="python-certifi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-changelogs/template b/srcpkgs/python3-changelogs/template
index d9a7784cf3b..8f4cb4a66b1 100644
--- a/srcpkgs/python3-changelogs/template
+++ b/srcpkgs/python3-changelogs/template
@@ -2,7 +2,6 @@
 pkgname=python3-changelogs
 version=0.14.0
 revision=2
-archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module
 pycompile_module="changelogs"
diff --git a/srcpkgs/python3-chess/template b/srcpkgs/python3-chess/template
index 3bf7847302e..82abdbe0fc6 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -2,7 +2,6 @@
 pkgname=python3-chess
 version=0.30.1
 revision=1
-archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-chromecast/template b/srcpkgs/python3-chromecast/template
index e83286d30ce..1f581a88eb8 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -2,7 +2,6 @@
 pkgname=python3-chromecast
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module
 pycompile_module="pychromecast"
diff --git a/srcpkgs/python3-cjkwrap/template b/srcpkgs/python3-cjkwrap/template
index fa951f26223..04fbf1440af 100644
--- a/srcpkgs/python3-cjkwrap/template
+++ b/srcpkgs/python3-cjkwrap/template
@@ -2,7 +2,6 @@
 pkgname=python3-cjkwrap
 version=2.2
 revision=2
-archs=noarch
 wrksrc="cjkwrap-v${version}"
 build_style=python3-module
 pycompile_module="cjkwrap.py"
diff --git a/srcpkgs/python3-cli-ui/template b/srcpkgs/python3-cli-ui/template
index b8e8c97d96f..47ed99e080f 100644
--- a/srcpkgs/python3-cli-ui/template
+++ b/srcpkgs/python3-cli-ui/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli-ui
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module
 pycompile_module="cli_ui"
diff --git a/srcpkgs/python3-cli_helpers/template b/srcpkgs/python3-cli_helpers/template
index 87b284e3cb5..d576e3f3e11 100644
--- a/srcpkgs/python3-cli_helpers/template
+++ b/srcpkgs/python3-cli_helpers/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli_helpers
 version=1.2.1
 revision=2
-archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module
 pycompile_module="cli_helpers"
diff --git a/srcpkgs/python3-click-plugins/template b/srcpkgs/python3-click-plugins/template
index 0ef6ce6b248..54b2de90f7d 100644
--- a/srcpkgs/python3-click-plugins/template
+++ b/srcpkgs/python3-click-plugins/template
@@ -2,7 +2,6 @@
 pkgname=python3-click-plugins
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module
 pycompile_module="click-plugins"
diff --git a/srcpkgs/python3-cloudscraper/template b/srcpkgs/python3-cloudscraper/template
index 01cac007c83..57575537070 100644
--- a/srcpkgs/python3-cloudscraper/template
+++ b/srcpkgs/python3-cloudscraper/template
@@ -2,7 +2,6 @@
 pkgname=python3-cloudscraper
 version=1.2.40
 revision=1
-archs=noarch
 wrksrc=cloudscraper-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-cmdln/template b/srcpkgs/python3-cmdln/template
index 2b7e21f3980..d0f84304fca 100644
--- a/srcpkgs/python3-cmdln/template
+++ b/srcpkgs/python3-cmdln/template
@@ -2,7 +2,6 @@
 pkgname=python3-cmdln
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module
 pycompile_module="cmdln.py"
diff --git a/srcpkgs/python3-colorclass/template b/srcpkgs/python3-colorclass/template
index ed8d2d2ea02..3874e6504d5 100644
--- a/srcpkgs/python3-colorclass/template
+++ b/srcpkgs/python3-colorclass/template
@@ -2,7 +2,6 @@
 pkgname=python3-colorclass
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module
 pycompile_module="colorclass"
diff --git a/srcpkgs/python3-crccheck/template b/srcpkgs/python3-crccheck/template
index a0a86e0ae2c..31d05495d2d 100644
--- a/srcpkgs/python3-crccheck/template
+++ b/srcpkgs/python3-crccheck/template
@@ -2,7 +2,6 @@
 pkgname=python3-crccheck
 version=0.6
 revision=2
-archs=noarch
 wrksrc="crccheck-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dateparser/template b/srcpkgs/python3-dateparser/template
index e36395eea8a..16257fd04ed 100644
--- a/srcpkgs/python3-dateparser/template
+++ b/srcpkgs/python3-dateparser/template
@@ -2,7 +2,6 @@
 pkgname=python3-dateparser
 version=0.7.6
 revision=1
-archs=noarch
 wrksrc=dateparser-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dbusmock/template b/srcpkgs/python3-dbusmock/template
index d8330a210c0..aa46bf5ad74 100644
--- a/srcpkgs/python3-dbusmock/template
+++ b/srcpkgs/python3-dbusmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-dbusmock
 version=0.19
 revision=1
-archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-deprecation/template b/srcpkgs/python3-deprecation/template
index 5983a0aadbf..0c87034caf2 100644
--- a/srcpkgs/python3-deprecation/template
+++ b/srcpkgs/python3-deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-deprecation
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-discid/template b/srcpkgs/python3-discid/template
index de3f5e571db..981445e5136 100644
--- a/srcpkgs/python3-discid/template
+++ b/srcpkgs/python3-discid/template
@@ -2,7 +2,6 @@
 pkgname=python3-discid
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module
 pycompile_module=discid
diff --git a/srcpkgs/python3-distlib/template b/srcpkgs/python3-distlib/template
index ff983ca9b6d..36186ff0700 100644
--- a/srcpkgs/python3-distlib/template
+++ b/srcpkgs/python3-distlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-distlib
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="distlib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dkimpy/template b/srcpkgs/python3-dkimpy/template
index 836f46d7aec..c334ec70bf6 100644
--- a/srcpkgs/python3-dkimpy/template
+++ b/srcpkgs/python3-dkimpy/template
@@ -2,7 +2,6 @@
 pkgname=python3-dkimpy
 version=1.0.0
 revision=2
-archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python3-module
 pycompile_module="dkim"
@@ -30,7 +29,6 @@ post_install() {
 
 python-dkimpy_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-dkimpy"
 	short_desc+=" - transitional dummy package"
 }
diff --git a/srcpkgs/python3-doi/template b/srcpkgs/python3-doi/template
index 29b9036922c..04c80853ecc 100644
--- a/srcpkgs/python3-doi/template
+++ b/srcpkgs/python3-doi/template
@@ -2,7 +2,6 @@
 pkgname=python3-doi
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="python-doi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dpkt/template b/srcpkgs/python3-dpkt/template
index 5ca1a6b1dbb..8045291e788 100644
--- a/srcpkgs/python3-dpkt/template
+++ b/srcpkgs/python3-dpkt/template
@@ -2,7 +2,6 @@
 pkgname=python3-dpkt
 version=1.9.2
 revision=1
-archs=noarch
 wrksrc="dpkt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-easygui/template b/srcpkgs/python3-easygui/template
index a9a2f66d865..82e665df9b6 100644
--- a/srcpkgs/python3-easygui/template
+++ b/srcpkgs/python3-easygui/template
@@ -2,7 +2,6 @@
 pkgname=python3-easygui
 version=0.98.1
 revision=2
-archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module
 pycompile_module="easygui"
diff --git a/srcpkgs/python3-elementpath/template b/srcpkgs/python3-elementpath/template
index 9f1a1fe1a8e..ad5f0f92564 100644
--- a/srcpkgs/python3-elementpath/template
+++ b/srcpkgs/python3-elementpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-elementpath
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=elementpath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-eliot/template b/srcpkgs/python3-eliot/template
index eca2c769d45..e139012e680 100644
--- a/srcpkgs/python3-eliot/template
+++ b/srcpkgs/python3-eliot/template
@@ -2,7 +2,6 @@
 pkgname=python3-eliot
 version=1.12.0
 revision=1
-archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-enchant/template b/srcpkgs/python3-enchant/template
index 1540cc34bc8..6c7f5a8837d 100644
--- a/srcpkgs/python3-enchant/template
+++ b/srcpkgs/python3-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python3-enchant
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools enchant-devel"
diff --git a/srcpkgs/python3-etesync/template b/srcpkgs/python3-etesync/template
index c0822245056..6c2218c4732 100644
--- a/srcpkgs/python3-etesync/template
+++ b/srcpkgs/python3-etesync/template
@@ -2,7 +2,6 @@
 pkgname=python3-etesync
 version=0.11.1
 revision=1
-archs=noarch
 wrksrc="etesync-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ffmpeg-python/template b/srcpkgs/python3-ffmpeg-python/template
index 137a864711f..ba0c070ffe5 100644
--- a/srcpkgs/python3-ffmpeg-python/template
+++ b/srcpkgs/python3-ffmpeg-python/template
@@ -2,7 +2,6 @@
 pkgname=python3-ffmpeg-python
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="ffmpeg-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fido2/template b/srcpkgs/python3-fido2/template
index fcf8a219ca2..bf76019c3a6 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -3,7 +3,6 @@ pkgname=python3-fido2
 _pkgname=fido2
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-filebytes/template b/srcpkgs/python3-filebytes/template
index 8a7236c705a..1953ab8b4b5 100644
--- a/srcpkgs/python3-filebytes/template
+++ b/srcpkgs/python3-filebytes/template
@@ -2,7 +2,6 @@
 pkgname=python3-filebytes
 version=0.10.2
 revision=1
-archs="noarch"
 wrksrc="filebytes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fishnet/template b/srcpkgs/python3-fishnet/template
index 6280ae8e966..f49689f6843 100644
--- a/srcpkgs/python3-fishnet/template
+++ b/srcpkgs/python3-fishnet/template
@@ -2,7 +2,6 @@
 pkgname=python3-fishnet
 version=1.15.18
 revision=2
-archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module
 pycompile_module="fishnet.py"
diff --git a/srcpkgs/python3-flexmock/template b/srcpkgs/python3-flexmock/template
index 8a7c9a2894d..39e01adee6c 100644
--- a/srcpkgs/python3-flexmock/template
+++ b/srcpkgs/python3-flexmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-flexmock
 version=0.10.4
 revision=2
-archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module
 pycompile_module="flexmock.py"
diff --git a/srcpkgs/python3-freezegun/template b/srcpkgs/python3-freezegun/template
index d8c96e1f1c6..465965a5489 100644
--- a/srcpkgs/python3-freezegun/template
+++ b/srcpkgs/python3-freezegun/template
@@ -2,7 +2,6 @@
 pkgname=python3-freezegun
 version=0.3.15
 revision=1
-archs=noarch
 wrksrc="freezegun-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index 739000a887c..73280ccab1a 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -2,7 +2,6 @@
 pkgname=python3-frozendict
 version=1.2
 revision=2
-archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module
 pycompile_module="frozendict"
diff --git a/srcpkgs/python3-furl/template b/srcpkgs/python3-furl/template
index 5fc53ba21de..71ae4e650d8 100644
--- a/srcpkgs/python3-furl/template
+++ b/srcpkgs/python3-furl/template
@@ -2,7 +2,6 @@
 pkgname=python3-furl
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="furl-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-geojson/template b/srcpkgs/python3-geojson/template
index 90e7d5a0e60..01bd91ec9ab 100644
--- a/srcpkgs/python3-geojson/template
+++ b/srcpkgs/python3-geojson/template
@@ -2,7 +2,6 @@
 pkgname=python3-geojson
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module
 pycompile_module="geojson"
diff --git a/srcpkgs/python3-gitchangelog/template b/srcpkgs/python3-gitchangelog/template
index cc1945f2623..d8ea98a34a5 100644
--- a/srcpkgs/python3-gitchangelog/template
+++ b/srcpkgs/python3-gitchangelog/template
@@ -2,7 +2,6 @@
 pkgname=python3-gitchangelog
 version=3.0.4
 revision=2
-archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module
 pycompile_module="gitchangelog"
diff --git a/srcpkgs/python3-google-api-core/template b/srcpkgs/python3-google-api-core/template
index e2f78f172cb..bcfa3fa83b4 100644
--- a/srcpkgs/python3-google-api-core/template
+++ b/srcpkgs/python3-google-api-core/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-core
 version=1.17.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-api-python-client/template b/srcpkgs/python3-google-api-python-client/template
index 12859dd49ec..34000c8412f 100644
--- a/srcpkgs/python3-google-api-python-client/template
+++ b/srcpkgs/python3-google-api-python-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-python-client
 version=1.8.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-auth-httplib2/template b/srcpkgs/python3-google-auth-httplib2/template
index 230494ba905..7cade87f4ca 100644
--- a/srcpkgs/python3-google-auth-httplib2/template
+++ b/srcpkgs/python3-google-auth-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth-httplib2
 version=0.0.3
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-google-auth/template b/srcpkgs/python3-google-auth/template
index 8e18145cda9..7067d8daeb5 100644
--- a/srcpkgs/python3-google-auth/template
+++ b/srcpkgs/python3-google-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth
 version=1.16.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-googleapis-common-protos/template b/srcpkgs/python3-googleapis-common-protos/template
index 1b0747910e0..326f783ddab 100644
--- a/srcpkgs/python3-googleapis-common-protos/template
+++ b/srcpkgs/python3-googleapis-common-protos/template
@@ -2,7 +2,6 @@
 pkgname=python3-googleapis-common-protos
 version=1.51.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-graphviz/template b/srcpkgs/python3-graphviz/template
index 2e7ec3bd76a..f1282e5d36c 100644
--- a/srcpkgs/python3-graphviz/template
+++ b/srcpkgs/python3-graphviz/template
@@ -2,7 +2,6 @@
 pkgname=python3-graphviz
 version=0.13.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="graphviz"
diff --git a/srcpkgs/python3-hawkauthlib/template b/srcpkgs/python3-hawkauthlib/template
index 1456fa7d814..4fc1166f99c 100644
--- a/srcpkgs/python3-hawkauthlib/template
+++ b/srcpkgs/python3-hawkauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-hawkauthlib
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module
 pycompile_module="hawkauthlib"
diff --git a/srcpkgs/python3-hjson/template b/srcpkgs/python3-hjson/template
index 9cd01b86f08..c4d60a580a8 100644
--- a/srcpkgs/python3-hjson/template
+++ b/srcpkgs/python3-hjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-hjson
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="hjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hkdf/template b/srcpkgs/python3-hkdf/template
index 0faaf05b5fe..fef3e6d4dc7 100644
--- a/srcpkgs/python3-hkdf/template
+++ b/srcpkgs/python3-hkdf/template
@@ -2,7 +2,6 @@
 pkgname=python3-hkdf
 version=0.0.3
 revision=2
-archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module
 pycompile_module="hkdf.py"
diff --git a/srcpkgs/python3-html2text/template b/srcpkgs/python3-html2text/template
index 54e9dab354b..e06075d34be 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -2,7 +2,6 @@
 pkgname=python3-html2text
 version=2020.1.16
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python3-humanize/template b/srcpkgs/python3-humanize/template
index cbf4398d976..7062c5589b8 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -2,7 +2,6 @@
 pkgname=python3-humanize
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hypercorn/template b/srcpkgs/python3-hypercorn/template
index a2280eba7fd..c2eabe98d17 100644
--- a/srcpkgs/python3-hypercorn/template
+++ b/srcpkgs/python3-hypercorn/template
@@ -2,7 +2,6 @@
 pkgname=python3-hypercorn
 version=0.10.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-i3ipc/template b/srcpkgs/python3-i3ipc/template
index df0c16a161b..72518ad93a3 100644
--- a/srcpkgs/python3-i3ipc/template
+++ b/srcpkgs/python3-i3ipc/template
@@ -2,7 +2,6 @@
 pkgname=python3-i3ipc
 version=2.2.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index 0608fb7278c..75126a355ca 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -2,7 +2,6 @@
 pkgname=python3-idna-ssl
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module
 pycompile_module="idna_ssl.py"
diff --git a/srcpkgs/python3-ifaddr/template b/srcpkgs/python3-ifaddr/template
index 803404735be..e1e78db4e0a 100644
--- a/srcpkgs/python3-ifaddr/template
+++ b/srcpkgs/python3-ifaddr/template
@@ -2,7 +2,6 @@
 pkgname=python3-ifaddr
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-influxdb/template b/srcpkgs/python3-influxdb/template
index 366eea281af..62b135c20b7 100644
--- a/srcpkgs/python3-influxdb/template
+++ b/srcpkgs/python3-influxdb/template
@@ -2,7 +2,6 @@
 pkgname=python3-influxdb
 version=5.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python-setuptools"
diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index f40bfc437bb..6343085ce87 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython
 version=7.17.0
 revision=1
-archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_genutils/template b/srcpkgs/python3-ipython_genutils/template
index b2754424178..190fa6f9b5f 100644
--- a/srcpkgs/python3-ipython_genutils/template
+++ b/srcpkgs/python3-ipython_genutils/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_genutils
 version=0.2.0
 revision=4
-archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_ipykernel/template b/srcpkgs/python3-ipython_ipykernel/template
index c3c0232c14a..19864960761 100644
--- a/srcpkgs/python3-ipython_ipykernel/template
+++ b/srcpkgs/python3-ipython_ipykernel/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_ipykernel
 version=5.2.0
 revision=1
-archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-ipython
diff --git a/srcpkgs/python3-irc/template b/srcpkgs/python3-irc/template
index 714c11dc943..5e4f518e5c3 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -2,7 +2,6 @@
 pkgname=python3-irc
 version=17.1
 revision=2
-archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module
 pycompile_module="irc"
diff --git a/srcpkgs/python3-itunespy/template b/srcpkgs/python3-itunespy/template
index 7a04a945dbd..6ef6b151473 100644
--- a/srcpkgs/python3-itunespy/template
+++ b/srcpkgs/python3-itunespy/template
@@ -2,7 +2,6 @@
 pkgname=python3-itunespy
 version=1.6
 revision=1
-archs=noarch
 wrksrc="itunespy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-janus/template b/srcpkgs/python3-janus/template
index b7388d96975..e7ca53a5773 100644
--- a/srcpkgs/python3-janus/template
+++ b/srcpkgs/python3-janus/template
@@ -2,7 +2,6 @@
 pkgname=python3-janus
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="janus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.classes/template b/srcpkgs/python3-jaraco.classes/template
index 6dbe89cb7f9..15e4996dedc 100644
--- a/srcpkgs/python3-jaraco.classes/template
+++ b/srcpkgs/python3-jaraco.classes/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.classes
 version=3.1.0
 revision=1
-archs=noarch
 wrksrc="jaraco.classes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.collections/template b/srcpkgs/python3-jaraco.collections/template
index 64f78eb4300..0a29387cf13 100644
--- a/srcpkgs/python3-jaraco.collections/template
+++ b/srcpkgs/python3-jaraco.collections/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.collections
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="jaraco.collections-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.functools/template b/srcpkgs/python3-jaraco.functools/template
index ca1ebb066d5..31a7711c5a7 100644
--- a/srcpkgs/python3-jaraco.functools/template
+++ b/srcpkgs/python3-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.functools
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.text/template b/srcpkgs/python3-jaraco.text/template
index a64ba0db7cb..f971a0326a7 100644
--- a/srcpkgs/python3-jaraco.text/template
+++ b/srcpkgs/python3-jaraco.text/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.text
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="jaraco.text-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco/template b/srcpkgs/python3-jaraco/template
index d6ab6b23228..a718dfc9736 100644
--- a/srcpkgs/python3-jaraco/template
+++ b/srcpkgs/python3-jaraco/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco
 version=1.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Namespace package declaration for jaraco (Python3)"
 maintainer="bra1nwave <bra1nwave@protonmail.com>"
diff --git a/srcpkgs/python3-jeepney/template b/srcpkgs/python3-jeepney/template
index 6654f4a7c97..691180ca473 100644
--- a/srcpkgs/python3-jeepney/template
+++ b/srcpkgs/python3-jeepney/template
@@ -2,7 +2,6 @@
 pkgname=python3-jeepney
 version=0.4.3
 revision=1
-archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-josepy/template b/srcpkgs/python3-josepy/template
index 903bd7028ed..cff1341c508 100644
--- a/srcpkgs/python3-josepy/template
+++ b/srcpkgs/python3-josepy/template
@@ -2,7 +2,6 @@
 pkgname=python3-josepy
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module
 pycompile_module="josepy"
diff --git a/srcpkgs/python3-jsondiff/template b/srcpkgs/python3-jsondiff/template
index 9e22f1dc42b..f196830147b 100644
--- a/srcpkgs/python3-jsondiff/template
+++ b/srcpkgs/python3-jsondiff/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsondiff
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="jsondiff-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jsonrpc-server/template b/srcpkgs/python3-jsonrpc-server/template
index b51e185efe9..a259f1f9a37 100644
--- a/srcpkgs/python3-jsonrpc-server/template
+++ b/srcpkgs/python3-jsonrpc-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsonrpc-server
 version=0.3.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_client/template b/srcpkgs/python3-jupyter_client/template
index 6cba34ab0b8..8291700d9ae 100644
--- a/srcpkgs/python3-jupyter_client/template
+++ b/srcpkgs/python3-jupyter_client/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_client
 version=6.1.0
 revision=1
-archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 4b404987cd8..9d03069b213 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_console
 version=6.1.0
 revision=4
-archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template
index ea75fa510a7..5ab8150f31a 100644
--- a/srcpkgs/python3-jupyter_core/template
+++ b/srcpkgs/python3-jupyter_core/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_core
 version=4.6.3
 revision=1
-archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 
 python3-jupyter_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-jupyter_notebook python3-jupyter_console
 	 python3-jupyter_ipywidgets"
 	short_desc="Jupyter metapackage for Void Linux"
diff --git a/srcpkgs/python3-jupyter_ipywidgets/template b/srcpkgs/python3-jupyter_ipywidgets/template
index 7e64279aeec..17b0445e2c8 100644
--- a/srcpkgs/python3-jupyter_ipywidgets/template
+++ b/srcpkgs/python3-jupyter_ipywidgets/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_ipywidgets
 version=7.5.1
 revision=1
-archs=noarch
 _widgetsnbextver=3.5.0
 wrksrc="ipywidgets-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-jupyter_nbconvert/template b/srcpkgs/python3-jupyter_nbconvert/template
index dba1d5a980e..b2c31bbf512 100644
--- a/srcpkgs/python3-jupyter_nbconvert/template
+++ b/srcpkgs/python3-jupyter_nbconvert/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbconvert
 version=5.6.1
 revision=1
-archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_nbformat/template b/srcpkgs/python3-jupyter_nbformat/template
index a46c5697212..8c0e41c0e77 100644
--- a/srcpkgs/python3-jupyter_nbformat/template
+++ b/srcpkgs/python3-jupyter_nbformat/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbformat
 version=5.0.4
 revision=1
-archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_notebook/template b/srcpkgs/python3-jupyter_notebook/template
index cc1727d2ee0..37a127cea7a 100644
--- a/srcpkgs/python3-jupyter_notebook/template
+++ b/srcpkgs/python3-jupyter_notebook/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_notebook
 version=6.0.3
 revision=1
-archs=noarch
 wrksrc="notebook-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_qtconsole/template b/srcpkgs/python3-jupyter_qtconsole/template
index 0c062662763..65a3a05c1ec 100644
--- a/srcpkgs/python3-jupyter_qtconsole/template
+++ b/srcpkgs/python3-jupyter_qtconsole/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_qtconsole
 version=4.7.1
 revision=1
-archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_widgetsnbextension/template b/srcpkgs/python3-jupyter_widgetsnbextension/template
index e1fe046894c..f64149d86f6 100644
--- a/srcpkgs/python3-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python3-jupyter_widgetsnbextension/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_widgetsnbextension
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyring/template b/srcpkgs/python3-keyring/template
index 97e10618eee..0585163b07e 100644
--- a/srcpkgs/python3-keyring/template
+++ b/srcpkgs/python3-keyring/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyring
 version=21.2.1
 revision=1
-archs=noarch
 wrksrc="keyring-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyrings-alt/template b/srcpkgs/python3-keyrings-alt/template
index 3052d257d1c..1ac1a6331ee 100644
--- a/srcpkgs/python3-keyrings-alt/template
+++ b/srcpkgs/python3-keyrings-alt/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyrings-alt
 version=3.4.0
 revision=2
-archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-language-server/template b/srcpkgs/python3-language-server/template
index 8ac0842f3b9..333431b4280 100644
--- a/srcpkgs/python3-language-server/template
+++ b/srcpkgs/python3-language-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-language-server
 version=0.34.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macaroons/template b/srcpkgs/python3-macaroons/template
index 7dfb4f3f588..542ba921643 100644
--- a/srcpkgs/python3-macaroons/template
+++ b/srcpkgs/python3-macaroons/template
@@ -2,7 +2,6 @@
 pkgname=python3-macaroons
 version=0.13.0
 revision=3
-archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index 5e65f7993dd..7d966f69d09 100644
--- a/srcpkgs/python3-macholib/template
+++ b/srcpkgs/python3-macholib/template
@@ -2,7 +2,6 @@
 pkgname=python3-macholib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-markdown-math/template b/srcpkgs/python3-markdown-math/template
index b49d58dd79c..b54cf2cd2fc 100644
--- a/srcpkgs/python3-markdown-math/template
+++ b/srcpkgs/python3-markdown-math/template
@@ -2,7 +2,6 @@
 pkgname=python3-markdown-math
 version=0.7
 revision=1
-archs=noarch
 wrksrc=python-markdown-math-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-marshmallow/template b/srcpkgs/python3-marshmallow/template
index 2a3b2329389..7eaba150dd1 100644
--- a/srcpkgs/python3-marshmallow/template
+++ b/srcpkgs/python3-marshmallow/template
@@ -2,7 +2,6 @@
 pkgname=python3-marshmallow
 version=3.7.0
 revision=1
-archs=noarch
 wrksrc="marshmallow-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 25e008c920a..f828d3e11b3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 python3-matplotlib-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove "${py3_sitelib}/matplotlib/mpl-data"
diff --git a/srcpkgs/python3-matrix-nio/template b/srcpkgs/python3-matrix-nio/template
index fe28e1596f8..a8d00ffa34e 100644
--- a/srcpkgs/python3-matrix-nio/template
+++ b/srcpkgs/python3-matrix-nio/template
@@ -2,7 +2,6 @@
 pkgname=python3-matrix-nio
 version=0.14.1
 revision=1
-archs=noarch
 wrksrc="matrix-nio-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-minidb/template b/srcpkgs/python3-minidb/template
index 140964b7a8a..540527fe2c6 100644
--- a/srcpkgs/python3-minidb/template
+++ b/srcpkgs/python3-minidb/template
@@ -2,7 +2,6 @@
 pkgname=python3-minidb
 version=2.0.2
 revision=3
-archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module
 pycompile_module="minidb.py"
diff --git a/srcpkgs/python3-mock/template b/srcpkgs/python3-mock/template
index 5506d4a70c2..134b61f8bad 100644
--- a/srcpkgs/python3-mock/template
+++ b/srcpkgs/python3-mock/template
@@ -2,7 +2,6 @@
 pkgname=python3-mock
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="mock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index 113e728c9d8..32d046f3c80 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -2,7 +2,6 @@
 pkgname=python3-more-itertools
 version=8.0.2
 revision=1
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python3-mpv/template b/srcpkgs/python3-mpv/template
index 984b7baa224..88d23b1690e 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -2,7 +2,6 @@
 pkgname=python3-mpv
 version=0.4.5
 revision=1
-archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-msoffcrypto-tool/template b/srcpkgs/python3-msoffcrypto-tool/template
index 6ae64cb2b1d..943bee51b52 100644
--- a/srcpkgs/python3-msoffcrypto-tool/template
+++ b/srcpkgs/python3-msoffcrypto-tool/template
@@ -2,7 +2,6 @@
 pkgname=python3-msoffcrypto-tool
 version=4.10.2
 revision=2
-archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-munkres/template b/srcpkgs/python3-munkres/template
index d0d0a013e80..3a0291a6d93 100644
--- a/srcpkgs/python3-munkres/template
+++ b/srcpkgs/python3-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python3-munkres
 version=1.1.2
 revision=2
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python3-musicpd/template b/srcpkgs/python3-musicpd/template
index 8c6ba2fb451..6808849a0e6 100644
--- a/srcpkgs/python3-musicpd/template
+++ b/srcpkgs/python3-musicpd/template
@@ -2,7 +2,6 @@
 pkgname=python3-musicpd
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module
 pycompile_module="musicpd.py"
diff --git a/srcpkgs/python3-mypy/template b/srcpkgs/python3-mypy/template
index 5d7f93d5772..32a13b25d45 100644
--- a/srcpkgs/python3-mypy/template
+++ b/srcpkgs/python3-mypy/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy
 version=0.761
 revision=1
-archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module
 pycompile_module="mypy"
diff --git a/srcpkgs/python3-mypy_extensions/template b/srcpkgs/python3-mypy_extensions/template
index e2d12256de5..4112db6fb62 100644
--- a/srcpkgs/python3-mypy_extensions/template
+++ b/srcpkgs/python3-mypy_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy_extensions
 version=0.4.3
 revision=2
-archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module
 pycompile_module="mypy_extensions.py"
diff --git a/srcpkgs/python3-nbxmpp/template b/srcpkgs/python3-nbxmpp/template
index b73a21dfe39..f739c098e51 100644
--- a/srcpkgs/python3-nbxmpp/template
+++ b/srcpkgs/python3-nbxmpp/template
@@ -2,7 +2,6 @@
 pkgname=python3-nbxmpp
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -17,7 +16,6 @@ checksum=ca60c9bd1527fbeac305df90c670f11f2fe79f1304dad1efa0315f7484a34d43
 
 python-nbxmpp_package() {
 	build_style=meta
-	archs=noarch
 	# Someone bumped this package to 1.0.0, which doesn't support Python 2
 	short_desc+=" - Python 2 - removed package"
 }
diff --git a/srcpkgs/python3-neovim/template b/srcpkgs/python3-neovim/template
index b5c705bbafd..cb61c800dac 100644
--- a/srcpkgs/python3-neovim/template
+++ b/srcpkgs/python3-neovim/template
@@ -2,7 +2,6 @@
 pkgname=python3-neovim
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-networkx/template b/srcpkgs/python3-networkx/template
index b993e4427c3..8fdaa74adb4 100644
--- a/srcpkgs/python3-networkx/template
+++ b/srcpkgs/python3-networkx/template
@@ -2,7 +2,6 @@
 pkgname=python3-networkx
 version=2.4
 revision=1
-archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools unzip"
diff --git a/srcpkgs/python3-nose-random/template b/srcpkgs/python3-nose-random/template
index 868d57cd494..e0b97430a9e 100644
--- a/srcpkgs/python3-nose-random/template
+++ b/srcpkgs/python3-nose-random/template
@@ -2,7 +2,6 @@
 pkgname=python3-nose-random
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="nose-random-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-notify2/template b/srcpkgs/python3-notify2/template
index 8416e98cc32..80cc7a2b5a2 100644
--- a/srcpkgs/python3-notify2/template
+++ b/srcpkgs/python3-notify2/template
@@ -2,7 +2,6 @@
 pkgname=python3-notify2
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="notify2-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/python3-ntlm-auth/template b/srcpkgs/python3-ntlm-auth/template
index fc9746b14aa..0b02fa3b67a 100644
--- a/srcpkgs/python3-ntlm-auth/template
+++ b/srcpkgs/python3-ntlm-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-ntlm-auth
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="ntlm-auth-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-oletools/template b/srcpkgs/python3-oletools/template
index 68a14274ad2..327895d5394 100644
--- a/srcpkgs/python3-oletools/template
+++ b/srcpkgs/python3-oletools/template
@@ -2,7 +2,6 @@
 pkgname=python3-oletools
 version=0.55
 revision=2
-archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module
 pycompile_module="oletools"
diff --git a/srcpkgs/python3-opcua/template b/srcpkgs/python3-opcua/template
index 16583e68089..872986836b8 100644
--- a/srcpkgs/python3-opcua/template
+++ b/srcpkgs/python3-opcua/template
@@ -2,7 +2,6 @@
 pkgname=python3-opcua
 version=0.98.11
 revision=1
-archs=noarch
 wrksrc="opcua-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-orderedmultidict/template b/srcpkgs/python3-orderedmultidict/template
index e6df82104cd..74d1a68bf9d 100644
--- a/srcpkgs/python3-orderedmultidict/template
+++ b/srcpkgs/python3-orderedmultidict/template
@@ -2,7 +2,6 @@
 pkgname=python3-orderedmultidict
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="orderedmultidict-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pafy/template b/srcpkgs/python3-pafy/template
index 8d3fafaf789..d6086f4a59a 100644
--- a/srcpkgs/python3-pafy/template
+++ b/srcpkgs/python3-pafy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pafy
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools youtube-dl"
diff --git a/srcpkgs/python3-pamqp/template b/srcpkgs/python3-pamqp/template
index 8c66eb482de..a3e7ab9c06b 100644
--- a/srcpkgs/python3-pamqp/template
+++ b/srcpkgs/python3-pamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pamqp
 version=2.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parsedatetime/template b/srcpkgs/python3-parsedatetime/template
index 71855b7c3ff..a77e82725e6 100644
--- a/srcpkgs/python3-parsedatetime/template
+++ b/srcpkgs/python3-parsedatetime/template
@@ -2,7 +2,6 @@
 pkgname=python3-parsedatetime
 version=2.6
 revision=1
-archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parso/template b/srcpkgs/python3-parso/template
index 5fed4bfb7ee..6c5b0e5f653 100644
--- a/srcpkgs/python3-parso/template
+++ b/srcpkgs/python3-parso/template
@@ -2,7 +2,6 @@
 pkgname=python3-parso
 version=0.8.0
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-path-and-address/template b/srcpkgs/python3-path-and-address/template
index 5c6825009ec..64d7a075e84 100644
--- a/srcpkgs/python3-path-and-address/template
+++ b/srcpkgs/python3-path-and-address/template
@@ -2,7 +2,6 @@
 pkgname=python3-path-and-address
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="path-and-address-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pcodedmp/template b/srcpkgs/python3-pcodedmp/template
index eb52c809fae..27f4310bf93 100644
--- a/srcpkgs/python3-pcodedmp/template
+++ b/srcpkgs/python3-pcodedmp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pcodedmp
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module
 pycompile_module="pcodedmp"
diff --git a/srcpkgs/python3-pefile/template b/srcpkgs/python3-pefile/template
index 8791f06640b..ed3c2befb4e 100644
--- a/srcpkgs/python3-pefile/template
+++ b/srcpkgs/python3-pefile/template
@@ -2,7 +2,6 @@
 pkgname=python3-pefile
 version=2019.4.18
 revision=2
-archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module
 pycompile_module="pefile.py peutils.py ordlookup"
diff --git a/srcpkgs/python3-pem/template b/srcpkgs/python3-pem/template
index ad51601c006..ce1123185ad 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -2,7 +2,6 @@
 pkgname=python3-pem
 version=19.3.0
 revision=1
-archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module
 pycompile_module="pem"
diff --git a/srcpkgs/python3-perf/template b/srcpkgs/python3-perf/template
index dff80be01bc..8b82eaf55cc 100644
--- a/srcpkgs/python3-perf/template
+++ b/srcpkgs/python3-perf/template
@@ -2,7 +2,6 @@
 pkgname=python3-perf
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module
 pycompile_module="pyperf"
diff --git a/srcpkgs/python3-pgspecial/template b/srcpkgs/python3-pgspecial/template
index 34b660dfc07..4bfc6073872 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgspecial
 version=1.11.9
 revision=2
-archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module
 pycompile_module="pgspecial"
diff --git a/srcpkgs/python3-pgzero/template b/srcpkgs/python3-pgzero/template
index 8b8f477112d..d8ab268d5e7 100644
--- a/srcpkgs/python3-pgzero/template
+++ b/srcpkgs/python3-pgzero/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgzero
 version=1.2
 revision=2
-archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module
 pycompile_module="pgzero pgzrun.py"
diff --git a/srcpkgs/python3-phonenumbers/template b/srcpkgs/python3-phonenumbers/template
index dd96963adfe..83671f70f6c 100644
--- a/srcpkgs/python3-phonenumbers/template
+++ b/srcpkgs/python3-phonenumbers/template
@@ -2,7 +2,6 @@
 pkgname=python3-phonenumbers
 version=8.11.5
 revision=1
-archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pipx/template b/srcpkgs/python3-pipx/template
index 8899230c814..7b6adf3f245 100644
--- a/srcpkgs/python3-pipx/template
+++ b/srcpkgs/python3-pipx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pipx
 version=0.15.4.0
 revision=1
-archs=noarch
 wrksrc="pipx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pkginfo/template b/srcpkgs/python3-pkginfo/template
index b7cb5ec9165..1cdddd5d541 100644
--- a/srcpkgs/python3-pkginfo/template
+++ b/srcpkgs/python3-pkginfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-pkginfo
 version=1.5.0.1
 revision=2
-archs=noarch
 wrksrc=pkginfo-${version}
 build_style=python3-module
 depends="python3"
diff --git a/srcpkgs/python3-plotly/template b/srcpkgs/python3-plotly/template
index 9cefb0a2702..02bbccfb709 100644
--- a/srcpkgs/python3-plotly/template
+++ b/srcpkgs/python3-plotly/template
@@ -2,7 +2,6 @@
 pkgname=python3-plotly
 version=4.9.0
 revision=1
-archs=noarch
 wrksrc="plotly-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pluggy/template b/srcpkgs/python3-pluggy/template
index d5baa4e7406..b65f092ed16 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pluggy
 version=0.13.1
 revision=3
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pmw/template b/srcpkgs/python3-pmw/template
index 289b5ef1d0d..bcc1167153f 100644
--- a/srcpkgs/python3-pmw/template
+++ b/srcpkgs/python3-pmw/template
@@ -2,7 +2,6 @@
 pkgname=python3-pmw
 version=2.0.1
 revision=2
-archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"
 license="MIT"
diff --git a/srcpkgs/python3-precis-i18n/template b/srcpkgs/python3-precis-i18n/template
index be7bb0b0b56..1faac093297 100644
--- a/srcpkgs/python3-precis-i18n/template
+++ b/srcpkgs/python3-precis-i18n/template
@@ -2,7 +2,6 @@
 pkgname=python3-precis-i18n
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module
 pycompile_module="precis_i18n"
diff --git a/srcpkgs/python3-priority/template b/srcpkgs/python3-priority/template
index 177129a7a42..3be207c7132 100644
--- a/srcpkgs/python3-priority/template
+++ b/srcpkgs/python3-priority/template
@@ -2,7 +2,6 @@
 pkgname=python3-priority
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-prompt_toolkit/template b/srcpkgs/python3-prompt_toolkit/template
index fc95924342e..9c4ad5e64ca 100644
--- a/srcpkgs/python3-prompt_toolkit/template
+++ b/srcpkgs/python3-prompt_toolkit/template
@@ -2,7 +2,6 @@
 pkgname=python3-prompt_toolkit
 version=3.0.6
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pulsectl/template b/srcpkgs/python3-pulsectl/template
index 5dd314d56ab..69b7ccc34f1 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -2,7 +2,6 @@
 pkgname=python3-pulsectl
 version=19.10.4
 revision=1
-archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module
 pycompile_module="pulsectl"
diff --git a/srcpkgs/python3-pure-protobuf/template b/srcpkgs/python3-pure-protobuf/template
index 2c23b4204f7..47058bbe288 100644
--- a/srcpkgs/python3-pure-protobuf/template
+++ b/srcpkgs/python3-pure-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python3-pure-protobuf
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc=protobuf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-py-cpuinfo/template b/srcpkgs/python3-py-cpuinfo/template
index c9b1a5211c1..e240b6a329a 100644
--- a/srcpkgs/python3-py-cpuinfo/template
+++ b/srcpkgs/python3-py-cpuinfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-py-cpuinfo
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc="py-cpuinfo-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template
index adbe4c10dbd..27d9c341d35 100644
--- a/srcpkgs/python3-pybind11/template
+++ b/srcpkgs/python3-pybind11/template
@@ -2,7 +2,6 @@
 pkgname=python3-pybind11
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="pybind11-${version}"
 build_style=python3-module
 make_install_args="--install-headers=/usr/include/pybind11"
diff --git a/srcpkgs/python3-pydbus/template b/srcpkgs/python3-pydbus/template
index 5ecd28aca88..e36bcde8126 100644
--- a/srcpkgs/python3-pydbus/template
+++ b/srcpkgs/python3-pydbus/template
@@ -2,7 +2,6 @@
 pkgname=python3-pydbus
 version=0.6.0
 revision=1
-archs=noarch
 wrksrc="pydbus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyfiglet/template b/srcpkgs/python3-pyfiglet/template
index a4a67b12d42..a8d61f0516e 100644
--- a/srcpkgs/python3-pyfiglet/template
+++ b/srcpkgs/python3-pyfiglet/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyfiglet
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"
 pycompile_module="pyfiglet"
diff --git a/srcpkgs/python3-pyinfra/template b/srcpkgs/python3-pyinfra/template
index dd18497b965..e80407a2bce 100644
--- a/srcpkgs/python3-pyinfra/template
+++ b/srcpkgs/python3-pyinfra/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyinfra
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="pyinfra-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykeepass/template b/srcpkgs/python3-pykeepass/template
index 96a53ac1ffa..095827914f3 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykeepass
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykwalify/template b/srcpkgs/python3-pykwalify/template
index 76398effff3..5eedaefcd74 100644
--- a/srcpkgs/python3-pykwalify/template
+++ b/srcpkgs/python3-pykwalify/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykwalify
 version=1.7.0
 revision=3
-archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylast/template b/srcpkgs/python3-pylast/template
index 7884038e532..d2067019ef1 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylast
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module
 pycompile_module="pylast"
diff --git a/srcpkgs/python3-pylibgen/template b/srcpkgs/python3-pylibgen/template
index 30fb465a637..37f2f92e0b1 100644
--- a/srcpkgs/python3-pylibgen/template
+++ b/srcpkgs/python3-pylibgen/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylibgen
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylru/template b/srcpkgs/python3-pylru/template
index 0329ab72c30..4fefac7f5cb 100644
--- a/srcpkgs/python3-pylru/template
+++ b/srcpkgs/python3-pylru/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylru
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pysdl2/template b/srcpkgs/python3-pysdl2/template
index 3efdca5b667..cc444a25125 100644
--- a/srcpkgs/python3-pysdl2/template
+++ b/srcpkgs/python3-pysdl2/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysdl2
 version=0.9.6
 revision=2
-archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module
 pycompile_module="sdl2"
diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index ee77908b933..6f619aefd13 100644
--- a/srcpkgs/python3-pyside2/template
+++ b/srcpkgs/python3-pyside2/template
@@ -77,23 +77,19 @@ libpyside2-python3_package() {
 libpyside-python3_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside-phonon_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyenet_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/python3-pysigset/template b/srcpkgs/python3-pysigset/template
index 50d9162ea70..91ba4976691 100644
--- a/srcpkgs/python3-pysigset/template
+++ b/srcpkgs/python3-pysigset/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysigset
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module
 pycompile_module="pysigset.py"
diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index 0c90d33a9e5..3830286e059 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-asyncio
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module
 pycompile_module="pytest_asyncio"
diff --git a/srcpkgs/python3-pytest-cov/template b/srcpkgs/python3-pytest-cov/template
index e94daceb8f4..f685f3bc43a 100644
--- a/srcpkgs/python3-pytest-cov/template
+++ b/srcpkgs/python3-pytest-cov/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-cov
 version=2.10.1
 revision=1
-archs=noarch
 wrksrc="pytest-cov-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-qt/template b/srcpkgs/python3-pytest-qt/template
index a15bc15a4f3..2c82b27b522 100644
--- a/srcpkgs/python3-pytest-qt/template
+++ b/srcpkgs/python3-pytest-qt/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-qt
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc=pytest-qt-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-xvfb/template b/srcpkgs/python3-pytest-xvfb/template
index 9e3aa7822d4..05372f207c1 100644
--- a/srcpkgs/python3-pytest-xvfb/template
+++ b/srcpkgs/python3-pytest-xvfb/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-xvfb
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=pytest-xvfb-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template
index 3df0405f1e2..69f9b1b53f9 100644
--- a/srcpkgs/python3-pytest/template
+++ b/srcpkgs/python3-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest
 version=5.3.5
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pythondialog/template b/srcpkgs/python3-pythondialog/template
index b55866f51e6..11ac0d5a105 100644
--- a/srcpkgs/python3-pythondialog/template
+++ b/srcpkgs/python3-pythondialog/template
@@ -2,7 +2,6 @@
 pkgname=python3-pythondialog
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="pythondialog-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytools/template b/srcpkgs/python3-pytools/template
index 446df179c07..38e39a68179 100644
--- a/srcpkgs/python3-pytools/template
+++ b/srcpkgs/python3-pytools/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytools
 version=2020.4
 revision=1
-archs=noarch
 wrksrc=${pkgname#*-}-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pywinrm/template b/srcpkgs/python3-pywinrm/template
index 7a57b8efcb3..961a9ebacc4 100644
--- a/srcpkgs/python3-pywinrm/template
+++ b/srcpkgs/python3-pywinrm/template
@@ -2,7 +2,6 @@
 pkgname=python3-pywinrm
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pywinrm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyx/template b/srcpkgs/python3-pyx/template
index f8de127e420..24bd6b68960 100644
--- a/srcpkgs/python3-pyx/template
+++ b/srcpkgs/python3-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyx
 version=0.15
 revision=1
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-quart/template b/srcpkgs/python3-quart/template
index 8e0e7d59be7..a465bbf4abf 100644
--- a/srcpkgs/python3-quart/template
+++ b/srcpkgs/python3-quart/template
@@ -2,7 +2,6 @@
 pkgname=python3-quart
 version=0.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-readlike/template b/srcpkgs/python3-readlike/template
index 43159962442..a3c5353492f 100644
--- a/srcpkgs/python3-readlike/template
+++ b/srcpkgs/python3-readlike/template
@@ -2,7 +2,6 @@
 pkgname=python3-readlike
 version=0.1.3
 revision=2
-archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module
 pycompile_module="readlike.py"
diff --git a/srcpkgs/python3-repoze.sphinx.autointerface/template b/srcpkgs/python3-repoze.sphinx.autointerface/template
index 684c7f90d05..7fbafc4e955 100644
--- a/srcpkgs/python3-repoze.sphinx.autointerface/template
+++ b/srcpkgs/python3-repoze.sphinx.autointerface/template
@@ -2,7 +2,6 @@
 pkgname=python3-repoze.sphinx.autointerface
 version=0.8
 revision=3
-archs=noarch
 wrksrc="repoze.sphinx.autointerface-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-file/template b/srcpkgs/python3-requests-file/template
index 1f459fa55ab..e8197152c4a 100644
--- a/srcpkgs/python3-requests-file/template
+++ b/srcpkgs/python3-requests-file/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-file
 version=1.4.3
 revision=1
-archs=noarch
 wrksrc="requests-file-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-ntlm/template b/srcpkgs/python3-requests-ntlm/template
index 7ca189d6abf..8bdf509f291 100644
--- a/srcpkgs/python3-requests-ntlm/template
+++ b/srcpkgs/python3-requests-ntlm/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-ntlm
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="requests-ntlm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-unixsocket/template b/srcpkgs/python3-requests-unixsocket/template
index fd389ec2d13..5731168d162 100644
--- a/srcpkgs/python3-requests-unixsocket/template
+++ b/srcpkgs/python3-requests-unixsocket/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-unixsocket
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module
 pycompile_module="requests_unixsocket"
diff --git a/srcpkgs/python3-rss2email/template b/srcpkgs/python3-rss2email/template
index 69e67d93deb..37634807bee 100644
--- a/srcpkgs/python3-rss2email/template
+++ b/srcpkgs/python3-rss2email/template
@@ -2,7 +2,6 @@
 pkgname=python3-rss2email
 version=3.11
 revision=2
-archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module
 pycompile_module="rss2email"
diff --git a/srcpkgs/python3-s-tui/template b/srcpkgs/python3-s-tui/template
index 5864e90c91a..a70b25ef150 100644
--- a/srcpkgs/python3-s-tui/template
+++ b/srcpkgs/python3-s-tui/template
@@ -2,7 +2,6 @@
 pkgname=python3-s-tui
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-saml2/template b/srcpkgs/python3-saml2/template
index a8d2798b61c..740d5301c49 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -2,7 +2,6 @@
 pkgname=python3-saml2
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-scruffy/template b/srcpkgs/python3-scruffy/template
index 62a21a74eca..b10f0b25cad 100644
--- a/srcpkgs/python3-scruffy/template
+++ b/srcpkgs/python3-scruffy/template
@@ -2,7 +2,6 @@
 pkgname=python3-scruffy
 version=0.3.8.1
 revision=2
-archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module
 pycompile_module="scruffy"
diff --git a/srcpkgs/python3-semanticversion/template b/srcpkgs/python3-semanticversion/template
index 766eeb160f8..2a0ad41ef16 100644
--- a/srcpkgs/python3-semanticversion/template
+++ b/srcpkgs/python3-semanticversion/template
@@ -2,7 +2,6 @@
 pkgname=python3-semanticversion
 version=2.8.5
 revision=1
-archs=noarch
 wrksrc="semantic_version-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sentry/template b/srcpkgs/python3-sentry/template
index c340cbb7820..5f0bdb07a64 100644
--- a/srcpkgs/python3-sentry/template
+++ b/srcpkgs/python3-sentry/template
@@ -2,7 +2,6 @@
 pkgname=python3-sentry
 version=0.15.1
 revision=1
-archs=noarch
 wrksrc="sentry-python-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-serpent/template b/srcpkgs/python3-serpent/template
index 538bfcd1786..8776d167bfc 100644
--- a/srcpkgs/python3-serpent/template
+++ b/srcpkgs/python3-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python3-serpent
 version=1.30.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-setuptools/template b/srcpkgs/python3-setuptools/template
index 9bf5b316e66..15654c0c639 100644
--- a/srcpkgs/python3-setuptools/template
+++ b/srcpkgs/python3-setuptools/template
@@ -2,7 +2,6 @@
 pkgname=python3-setuptools
 version=49.2.1
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python3-module
 hostmakedepends="python3-devel"
diff --git a/srcpkgs/python3-shodan/template b/srcpkgs/python3-shodan/template
index 390f9d79322..b5324dac9ac 100644
--- a/srcpkgs/python3-shodan/template
+++ b/srcpkgs/python3-shodan/template
@@ -2,7 +2,6 @@
 pkgname=python3-shodan
 version=1.23.0
 revision=1
-archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-signedjson/template b/srcpkgs/python3-signedjson/template
index 5002ade8f79..744a1f36a5b 100644
--- a/srcpkgs/python3-signedjson/template
+++ b/srcpkgs/python3-signedjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-signedjson
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-slugify/template b/srcpkgs/python3-slugify/template
index 012bb98f063..7a6a44e664d 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -4,7 +4,6 @@ pkgname=python3-slugify
 # doesn't work with newer versions
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module
 pycompile_module="slugify"
diff --git a/srcpkgs/python3-sortedcontainers/template b/srcpkgs/python3-sortedcontainers/template
index 41d87d4ebd0..df9e9d97a2c 100644
--- a/srcpkgs/python3-sortedcontainers/template
+++ b/srcpkgs/python3-sortedcontainers/template
@@ -2,7 +2,6 @@
 pkgname=python3-sortedcontainers
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module
 pycompile_module="sortedcontainers"
diff --git a/srcpkgs/python3-spake2/template b/srcpkgs/python3-spake2/template
index dc0cdced747..7f34a47eb26 100644
--- a/srcpkgs/python3-spake2/template
+++ b/srcpkgs/python3-spake2/template
@@ -2,7 +2,6 @@
 pkgname=python3-spake2
 version=0.8
 revision=2
-archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module
 pycompile_module="spake2"
diff --git a/srcpkgs/python3-sphinx_rtd_theme/template b/srcpkgs/python3-sphinx_rtd_theme/template
index 8447a451a74..93e6cb4a4dd 100644
--- a/srcpkgs/python3-sphinx_rtd_theme/template
+++ b/srcpkgs/python3-sphinx_rtd_theme/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinx_rtd_theme
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-applehelp/template b/srcpkgs/python3-sphinxcontrib-applehelp/template
index 90bfc78adf8..30948b589f8 100644
--- a/srcpkgs/python3-sphinxcontrib-applehelp/template
+++ b/srcpkgs/python3-sphinxcontrib-applehelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-applehelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-applehelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-devhelp/template b/srcpkgs/python3-sphinxcontrib-devhelp/template
index 0244d826d17..f670cfdf187 100644
--- a/srcpkgs/python3-sphinxcontrib-devhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-devhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-devhelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-devhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-htmlhelp/template b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
index 33dac6dbfad..582aefdf76e 100644
--- a/srcpkgs/python3-sphinxcontrib-htmlhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-htmlhelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-htmlhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-jsmath/template b/srcpkgs/python3-sphinxcontrib-jsmath/template
index 266ff00b88b..ce87ffcd71b 100644
--- a/srcpkgs/python3-sphinxcontrib-jsmath/template
+++ b/srcpkgs/python3-sphinxcontrib-jsmath/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-jsmath
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-jsmath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-qthelp/template b/srcpkgs/python3-sphinxcontrib-qthelp/template
index 2335cb13cb8..b324a4bce8b 100644
--- a/srcpkgs/python3-sphinxcontrib-qthelp/template
+++ b/srcpkgs/python3-sphinxcontrib-qthelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-qthelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-qthelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-serializinghtml/template b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
index 82ddabe65ed..6b2d69ee7ca 100644
--- a/srcpkgs/python3-sphinxcontrib-serializinghtml/template
+++ b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-serializinghtml
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-serializinghtml-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib/template b/srcpkgs/python3-sphinxcontrib/template
index d52fd02ab76..ef3686233a6 100644
--- a/srcpkgs/python3-sphinxcontrib/template
+++ b/srcpkgs/python3-sphinxcontrib/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib
 version=1.0
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/python3-subunit/template b/srcpkgs/python3-subunit/template
index a617b3db63a..7609e9fea85 100644
--- a/srcpkgs/python3-subunit/template
+++ b/srcpkgs/python3-subunit/template
@@ -2,7 +2,6 @@
 pkgname=python3-subunit
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=subunit-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sympy/template b/srcpkgs/python3-sympy/template
index 77f7747a999..3546c85c48c 100644
--- a/srcpkgs/python3-sympy/template
+++ b/srcpkgs/python3-sympy/template
@@ -2,7 +2,6 @@
 pkgname=python3-sympy
 version=1.6.1
 revision=1
-archs=noarch
 wrksrc="sympy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tabulate/template b/srcpkgs/python3-tabulate/template
index 16956529913..1fba151f70d 100644
--- a/srcpkgs/python3-tabulate/template
+++ b/srcpkgs/python3-tabulate/template
@@ -2,7 +2,6 @@
 pkgname=python3-tabulate
 version=0.8.6
 revision=1
-archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module
 pycompile_module="tabulate.py"
diff --git a/srcpkgs/python3-terminaltables/template b/srcpkgs/python3-terminaltables/template
index 4f781eab76d..151d95641b1 100644
--- a/srcpkgs/python3-terminaltables/template
+++ b/srcpkgs/python3-terminaltables/template
@@ -2,7 +2,6 @@
 pkgname=python3-terminaltables
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module
 pycompile_module="terminaltables"
diff --git a/srcpkgs/python3-text-unidecode/template b/srcpkgs/python3-text-unidecode/template
index b3b5aa95575..6219e336eb5 100644
--- a/srcpkgs/python3-text-unidecode/template
+++ b/srcpkgs/python3-text-unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python3-text-unidecode
 version=1.2
 revision=2
-archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module
 pycompile_module="text_unidecode"
diff --git a/srcpkgs/python3-tinycss/template b/srcpkgs/python3-tinycss/template
index 3b4717c234e..7ca826988cd 100644
--- a/srcpkgs/python3-tinycss/template
+++ b/srcpkgs/python3-tinycss/template
@@ -2,7 +2,6 @@
 pkgname=python3-tinycss
 version=0.4
 revision=2
-archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module
 pycompile_module="tinycss"
diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index f77446c5e61..ff6bb2699e5 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -77,7 +77,6 @@ do_install() {
 }
 
 idle-python3_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python3 using Tkinter"
 	pycompile_dirs="usr/lib/python${version%.*}/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python3-tldextract/template b/srcpkgs/python3-tldextract/template
index 2a9392a5dcc..57ea2de0c41 100644
--- a/srcpkgs/python3-tldextract/template
+++ b/srcpkgs/python3-tldextract/template
@@ -2,7 +2,6 @@
 pkgname=python3-tldextract
 version=2.2.2
 revision=1
-archs=noarch
 wrksrc="tldextract-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template
index 92a11a42629..c352f646664 100644
--- a/srcpkgs/python3-traitlets/template
+++ b/srcpkgs/python3-traitlets/template
@@ -2,7 +2,6 @@
 pkgname=python3-traitlets
 version=4.3.3
 revision=3
-archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 5ea767b5a7d..a307014e474 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-transifex-client
 version=0.13.6
 revision=2
-archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module
 pycompile_module="txclib"
diff --git a/srcpkgs/python3-treq/template b/srcpkgs/python3-treq/template
index 075f90e49ef..c87126db99f 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -2,7 +2,6 @@
 pkgname=python3-treq
 version=20.3.0
 revision=1
-archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-trimesh/template b/srcpkgs/python3-trimesh/template
index 15f6715ce1d..fd7b93ac971 100644
--- a/srcpkgs/python3-trimesh/template
+++ b/srcpkgs/python3-trimesh/template
@@ -2,7 +2,6 @@
 pkgname=python3-trimesh
 version=3.7.4
 revision=1
-archs=noarch
 wrksrc="trimesh-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index bd1c82d0611..917fdb2e038 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -2,7 +2,6 @@
 pkgname=python3-txacme
 version=0.9.3
 revision=1
-archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txaio/template b/srcpkgs/python3-txaio/template
index d9ee273d235..f686ef8848c 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -2,7 +2,6 @@
 pkgname=python3-txaio
 version=20.4.1
 revision=1
-archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-txtorcon/template b/srcpkgs/python3-txtorcon/template
index d2ad88b06d1..8ad2b861ca9 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -2,7 +2,6 @@
 pkgname=python3-txtorcon
 version=20.0.0
 revision=1
-archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-typing_extensions/template b/srcpkgs/python3-typing_extensions/template
index 57405689d4e..d9beffc7950 100644
--- a/srcpkgs/python3-typing_extensions/template
+++ b/srcpkgs/python3-typing_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-typing_extensions
 version=3.7.4.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tzlocal/template b/srcpkgs/python3-tzlocal/template
index 7ea15464075..c78db3d0b47 100644
--- a/srcpkgs/python3-tzlocal/template
+++ b/srcpkgs/python3-tzlocal/template
@@ -2,7 +2,6 @@
 pkgname=python3-tzlocal
 version=2.1
 revision=2
-archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-unpaddedbase64/template b/srcpkgs/python3-unpaddedbase64/template
index 06a47db3b64..2cb5d9b8c2b 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -2,7 +2,6 @@
 pkgname=python3-unpaddedbase64
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module
 pycompile_module="unpaddedbase64.py"
diff --git a/srcpkgs/python3-urlgrabber/template b/srcpkgs/python3-urlgrabber/template
index eef67c8e13c..6d19cd95f28 100644
--- a/srcpkgs/python3-urlgrabber/template
+++ b/srcpkgs/python3-urlgrabber/template
@@ -2,7 +2,6 @@
 pkgname=python3-urlgrabber
 version=4.0.0
 revision=2
-archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module
 pycompile_module="urlgrabber"
diff --git a/srcpkgs/python3-usb/template b/srcpkgs/python3-usb/template
index 1e27b46961b..fe8676e84bf 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,6 @@
 pkgname=python3-usb
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="pyusb-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-userpath/template b/srcpkgs/python3-userpath/template
index 4d53e7b5dea..5d5b22e7774 100644
--- a/srcpkgs/python3-userpath/template
+++ b/srcpkgs/python3-userpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-userpath
 version=1.4.1
 revision=1
-archs=noarch
 wrksrc="userpath-${version}"
 build_style=python3-module
 pycompile_module="userpath"
diff --git a/srcpkgs/python3-validators/template b/srcpkgs/python3-validators/template
index 2d790254c96..cfaf8b9e8e9 100644
--- a/srcpkgs/python3-validators/template
+++ b/srcpkgs/python3-validators/template
@@ -2,7 +2,6 @@
 pkgname=python3-validators
 version=0.14.2
 revision=1
-archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virtualenv-clone/template b/srcpkgs/python3-virtualenv-clone/template
index 508e855b9cd..92e27a1cd3a 100644
--- a/srcpkgs/python3-virtualenv-clone/template
+++ b/srcpkgs/python3-virtualenv-clone/template
@@ -2,7 +2,6 @@
 pkgname=python3-virtualenv-clone
 version=0.5.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virtualenv/template b/srcpkgs/python3-virtualenv/template
index 7f9f71fccc5..d0b81cc453a 100644
--- a/srcpkgs/python3-virtualenv/template
+++ b/srcpkgs/python3-virtualenv/template
@@ -2,7 +2,6 @@
 pkgname=python3-virtualenv
 version=20.0.20
 revision=2
-archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virustotal-api/template b/srcpkgs/python3-virustotal-api/template
index fc362c03b39..016265c95e4 100644
--- a/srcpkgs/python3-virustotal-api/template
+++ b/srcpkgs/python3-virustotal-api/template
@@ -2,7 +2,6 @@
 pkgname=python3-virustotal-api
 version=1.1.11
 revision=2
-archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module
 pycompile_module="virus_total_apis"
diff --git a/srcpkgs/python3-xapp/template b/srcpkgs/python3-xapp/template
index 6e746704ad8..4a914d36443 100644
--- a/srcpkgs/python3-xapp/template
+++ b/srcpkgs/python3-xapp/template
@@ -2,7 +2,6 @@
 pkgname=python3-xapp
 version=2.0.1
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="xapp"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xdg-variables/template b/srcpkgs/python3-xdg-variables/template
index 589302d33bc..836f8b61878 100644
--- a/srcpkgs/python3-xdg-variables/template
+++ b/srcpkgs/python3-xdg-variables/template
@@ -2,7 +2,6 @@
 pkgname=python3-xdg-variables
 version=4.0.1
 revision=1
-archs=noarch
 wrksrc="xdg-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xlrd/template b/srcpkgs/python3-xlrd/template
index 9f7b29580e4..4a8b4fb520e 100644
--- a/srcpkgs/python3-xlrd/template
+++ b/srcpkgs/python3-xlrd/template
@@ -2,7 +2,6 @@
 pkgname=python3-xlrd
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xmlschema/template b/srcpkgs/python3-xmlschema/template
index 939c7ef6fca..d4311a18d9d 100644
--- a/srcpkgs/python3-xmlschema/template
+++ b/srcpkgs/python3-xmlschema/template
@@ -2,7 +2,6 @@
 pkgname=python3-xmlschema
 version=1.2.3
 revision=1
-archs=noarch
 wrksrc=xmlschema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-elementpath"
diff --git a/srcpkgs/python3-yapf/template b/srcpkgs/python3-yapf/template
index 33111cd732d..482acbbe0f5 100644
--- a/srcpkgs/python3-yapf/template
+++ b/srcpkgs/python3-yapf/template
@@ -2,7 +2,6 @@
 pkgname=python3-yapf
 version=0.29.0
 revision=1
-archs=noarch
 wrksrc="yapf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-youtube-search/template b/srcpkgs/python3-youtube-search/template
index 0c6ec393a37..96a1ca19dce 100644
--- a/srcpkgs/python3-youtube-search/template
+++ b/srcpkgs/python3-youtube-search/template
@@ -3,7 +3,6 @@ pkgname=python3-youtube-search
 version=1.1.0
 revision=1
 _gitver=86af3e73bd340f37be56f2be6a5ff706b16e454e
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="youtube-search-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-zeroconf/template b/srcpkgs/python3-zeroconf/template
index b480d60b684..6c1f33e1444 100644
--- a/srcpkgs/python3-zeroconf/template
+++ b/srcpkgs/python3-zeroconf/template
@@ -2,7 +2,6 @@
 pkgname=python3-zeroconf
 version=0.28.1
 revision=1
-archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.cachedescriptors/template b/srcpkgs/python3-zope.cachedescriptors/template
index 1f1fae5b27b..c0a56526d58 100644
--- a/srcpkgs/python3-zope.cachedescriptors/template
+++ b/srcpkgs/python3-zope.cachedescriptors/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.cachedescriptors
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module
 pycompile_module="zope/cachedescriptors"
diff --git a/srcpkgs/python3-zope.component/template b/srcpkgs/python3-zope.component/template
index 5dddba61bb3..eee2bb67f5c 100644
--- a/srcpkgs/python3-zope.component/template
+++ b/srcpkgs/python3-zope.component/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.component
 version=4.6.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.configuration/template b/srcpkgs/python3-zope.configuration/template
index a18339a5d7a..859ea5a13e3 100644
--- a/srcpkgs/python3-zope.configuration/template
+++ b/srcpkgs/python3-zope.configuration/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.configuration
 version=4.4.0
 revision=1
-archs=noarch
 wrksrc="zope.configuration-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/python3-zope.copy/template b/srcpkgs/python3-zope.copy/template
index 7007acb96b4..2872fc4446a 100644
--- a/srcpkgs/python3-zope.copy/template
+++ b/srcpkgs/python3-zope.copy/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.copy
 version=4.2
 revision=2
-archs=noarch
 wrksrc="zope.copy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deferredimport/template b/srcpkgs/python3-zope.deferredimport/template
index 7e8ff8fca5c..d2baacf3065 100644
--- a/srcpkgs/python3-zope.deferredimport/template
+++ b/srcpkgs/python3-zope.deferredimport/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deferredimport
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.deferredimport-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deprecation/template b/srcpkgs/python3-zope.deprecation/template
index 854c67dfa8a..5939729f835 100644
--- a/srcpkgs/python3-zope.deprecation/template
+++ b/srcpkgs/python3-zope.deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deprecation
 version=4.4.0
 revision=3
-archs=noarch
 wrksrc="zope.deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.event/template b/srcpkgs/python3-zope.event/template
index 0ca1af6cfc4..222189cc613 100644
--- a/srcpkgs/python3-zope.event/template
+++ b/srcpkgs/python3-zope.event/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.event
 version=4.4
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="zope/event"
diff --git a/srcpkgs/python3-zope.exceptions/template b/srcpkgs/python3-zope.exceptions/template
index e918cea8c7e..8719bd54a11 100644
--- a/srcpkgs/python3-zope.exceptions/template
+++ b/srcpkgs/python3-zope.exceptions/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.exceptions
 version=4.3
 revision=2
-archs=noarch
 wrksrc="zope.exceptions-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.hookable/template b/srcpkgs/python3-zope.hookable/template
index 774cf286c8e..e721baf6117 100644
--- a/srcpkgs/python3-zope.hookable/template
+++ b/srcpkgs/python3-zope.hookable/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.hookable
 version=5.0.1
 revision=1
-archs=noarch
 wrksrc="zope.hookable-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.location/template b/srcpkgs/python3-zope.location/template
index c2d6435dcf4..425cc0c04a1 100644
--- a/srcpkgs/python3-zope.location/template
+++ b/srcpkgs/python3-zope.location/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.location
 version=4.2
 revision=3
-archs=noarch
 wrksrc="zope.location-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.schema/template b/srcpkgs/python3-zope.schema/template
index 7c45510564d..82d51060bc5 100644
--- a/srcpkgs/python3-zope.schema/template
+++ b/srcpkgs/python3-zope.schema/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.schema
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc=zope.schema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testing/template b/srcpkgs/python3-zope.testing/template
index 9fd4dd19dcd..7c547615b68 100644
--- a/srcpkgs/python3-zope.testing/template
+++ b/srcpkgs/python3-zope.testing/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testing
 version=4.7
 revision=2
-archs=noarch
 wrksrc="zope.testing-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testrunner/template b/srcpkgs/python3-zope.testrunner/template
index 85413372686..80cf55a1715 100644
--- a/srcpkgs/python3-zope.testrunner/template
+++ b/srcpkgs/python3-zope.testrunner/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testrunner
 version=5.1
 revision=2
-archs=noarch
 wrksrc="zope.testrunner-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinxcontrib"
diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 98c4e1581e4..613217153a3 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -2,7 +2,6 @@
 pkgname=pywal
 version=3.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pywal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/qalculate/template b/srcpkgs/qalculate/template
index c5d041892f4..dbd193635bb 100644
--- a/srcpkgs/qalculate/template
+++ b/srcpkgs/qalculate/template
@@ -16,7 +16,6 @@ distfiles="https://github.com/Qalculate/libqalculate/releases/download/v${versio
 checksum=28c46dc8dd975f253627d80c55a6feab7c44d965dce3ceffefc3cafc9a97c457
 
 libqalculate-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/qalculate
diff --git a/srcpkgs/qdirstat/template b/srcpkgs/qdirstat/template
index 40be76ac8ef..4490a4e1272 100644
--- a/srcpkgs/qdirstat/template
+++ b/srcpkgs/qdirstat/template
@@ -23,7 +23,6 @@ post_install() {
 qdirstat-cache-writer_package() {
 	short_desc+=" - headless scanner"
 	depends="perl"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/qdirstat-cache-writer
 		vman man/qdirstat-cache-writer.1
diff --git a/srcpkgs/qmc2-flyers/template b/srcpkgs/qmc2-flyers/template
index 91f26dd0a18..bd62c4093a5 100644
--- a/srcpkgs/qmc2-flyers/template
+++ b/srcpkgs/qmc2-flyers/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="599660060753ce7118d9abc4b77f4644985d1341e1f3ca7c1f34d1a7a2e8030d"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2-snapshots/template b/srcpkgs/qmc2-snapshots/template
index fee8f052012..df2fcbc12c8 100644
--- a/srcpkgs/qmc2-snapshots/template
+++ b/srcpkgs/qmc2-snapshots/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="97684b11d4811ca1c3c24d31c359b7ac6ac90436e3fbce9e4966670697516d4f"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2/template b/srcpkgs/qmc2/template
index f362582dff5..1f72e9dd200 100644
--- a/srcpkgs/qmc2/template
+++ b/srcpkgs/qmc2/template
@@ -81,7 +81,6 @@ do_install() {
 		> ${DESTDIR}/usr/share/applications/qchdman.desktop
 }
 qmc2-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		local _ddir
diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template
index bd991d71e04..f999b249f94 100644
--- a/srcpkgs/qmk/template
+++ b/srcpkgs/qmk/template
@@ -2,7 +2,6 @@
 pkgname=qmk
 version=0.0.35
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-appdirs
diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 8063350ba06..4a3c282d40f 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -2,7 +2,6 @@
 pkgname=qomui
 version=0.8.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="qomui"
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/qrintf/template b/srcpkgs/qrintf/template
index 8b4ae6e9f0c..cd4cd8bee34 100644
--- a/srcpkgs/qrintf/template
+++ b/srcpkgs/qrintf/template
@@ -2,7 +2,6 @@
 pkgname=qrintf
 version=0.9.2
 revision=2
-archs=noarch
 depends="perl"
 short_desc="A sprintf accelerator for GCC and Clang"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/qtcreator/template b/srcpkgs/qtcreator/template
index e8cc8990fe0..23e69c35eed 100644
--- a/srcpkgs/qtcreator/template
+++ b/srcpkgs/qtcreator/template
@@ -71,7 +71,6 @@ qtcreator-full_package() {
 
 qtcreator-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/quixand/template b/srcpkgs/quixand/template
index 0574f90aa7e..2c6bd03be74 100644
--- a/srcpkgs/quixand/template
+++ b/srcpkgs/quixand/template
@@ -2,7 +2,6 @@
 pkgname=quixand
 version=2020
 revision=1
-archs=noarch
 depends="bash encfs"
 short_desc="Tool for creating single-use unrecoverable encrypted sandboxes"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index ba19de245ad..177ad99b74c 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -2,7 +2,6 @@
 pkgname=quodlibet
 version=4.3.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"
 hostmakedepends="intltool python3-devel"
diff --git a/srcpkgs/qutebrowser/template b/srcpkgs/qutebrowser/template
index 7b5f7f59b5d..ead0fd1deea 100644
--- a/srcpkgs/qutebrowser/template
+++ b/srcpkgs/qutebrowser/template
@@ -1,5 +1,4 @@
 # Template file for 'qutebrowser'
-# not noarch as the package might be built with different backend for each arch
 pkgname=qutebrowser
 version=1.13.1
 revision=2
diff --git a/srcpkgs/qytdl/template b/srcpkgs/qytdl/template
index b620c498a25..2733e6726e8 100644
--- a/srcpkgs/qytdl/template
+++ b/srcpkgs/qytdl/template
@@ -2,7 +2,6 @@
 pkgname=qytdl
 version=1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/qytdl/src"
 depends="desktop-file-utils python3-PyQt5 python3-youtube-dl"
diff --git a/srcpkgs/racket/template b/srcpkgs/racket/template
index dab6e5ec43c..41c9537b0e8 100644
--- a/srcpkgs/racket/template
+++ b/srcpkgs/racket/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 racket-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="racket>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/radicale/template b/srcpkgs/radicale/template
index 5cf0cc8da0d..30c1b9bfb8a 100644
--- a/srcpkgs/radicale/template
+++ b/srcpkgs/radicale/template
@@ -2,7 +2,6 @@
 pkgname=radicale
 version=1.1.6
 revision=4
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 pycompile_module="radicale"
diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 6fd785c5484..a762f1e41dd 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -2,7 +2,6 @@
 pkgname=radicale2
 version=2.1.12
 revision=1
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index d88da9b1ee1..33ecef3a239 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -2,7 +2,6 @@
 pkgname=ranger
 version=1.9.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="ranger"
 hostmakedepends="python3"
diff --git a/srcpkgs/rapidjson/template b/srcpkgs/rapidjson/template
index c1f3f32ba6d..0f8553674cb 100644
--- a/srcpkgs/rapidjson/template
+++ b/srcpkgs/rapidjson/template
@@ -3,7 +3,6 @@ pkgname=rapidjson
 version=1.1.0
 revision=2
 build_style=cmake
-archs=noarch
 short_desc="A fast JSON parser/generator for C++ with both SAX/DOM style API"
 maintainer="Alexander Egorenkov <egorenar-dev@posteo.net>"
 license="BSD, MIT"
diff --git a/srcpkgs/rapidxml/template b/srcpkgs/rapidxml/template
index 35418273bb4..6a19d381165 100644
--- a/srcpkgs/rapidxml/template
+++ b/srcpkgs/rapidxml/template
@@ -2,7 +2,6 @@
 pkgname=rapidxml
 version=1.13
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 short_desc="XML parser written in C++"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/rapydscript-ng/template b/srcpkgs/rapydscript-ng/template
index 681fe9781cc..92101d56f44 100644
--- a/srcpkgs/rapydscript-ng/template
+++ b/srcpkgs/rapydscript-ng/template
@@ -2,7 +2,6 @@
 pkgname=rapydscript-ng
 version=0.7.20
 revision=2
-archs=noarch
 hostmakedepends="nodejs"
 depends="nodejs"
 short_desc="Transpiler for a Python like language to JavaScript"
diff --git a/srcpkgs/rcm/template b/srcpkgs/rcm/template
index 2f84ba88ad3..9f7e44a091c 100644
--- a/srcpkgs/rcm/template
+++ b/srcpkgs/rcm/template
@@ -2,7 +2,6 @@
 pkgname=rcm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 checkdepends="python3-cram"
 depends="perl"
diff --git a/srcpkgs/rdumpfs/template b/srcpkgs/rdumpfs/template
index 12d80550d06..20709eb0c20 100644
--- a/srcpkgs/rdumpfs/template
+++ b/srcpkgs/rdumpfs/template
@@ -2,7 +2,6 @@
 pkgname=rdumpfs
 version=0.1
 revision=3
-archs=noarch
 depends="rsync bash"
 short_desc="A rsync-based dump file system backup tool"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/rebar3/template b/srcpkgs/rebar3/template
index 5243045ee94..f3cd96fead5 100644
--- a/srcpkgs/rebar3/template
+++ b/srcpkgs/rebar3/template
@@ -2,7 +2,6 @@
 pkgname=rebar3
 version=3.13.2
 revision=1
-archs=noarch
 hostmakedepends=erlang
 depends="erlang>=22"
 short_desc="Erlang build tool to compile, test, and release applications"
diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index fa2cb9cf445..14ddd26a73e 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -2,7 +2,6 @@
 pkgname=rednotebook
 version=2.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="desktop-file-utils gtksourceview hicolor-icon-theme python3-enchant
diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template
index 0f4e4047520..c9d037f10cb 100644
--- a/srcpkgs/remhind/template
+++ b/srcpkgs/remhind/template
@@ -2,7 +2,6 @@
 pkgname=remhind
 version=0.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel"
 depends="python3-icalendar python3-dateutil python3-gobject python3-toml
diff --git a/srcpkgs/rex/template b/srcpkgs/rex/template
index 0f294444ade..908ce0c2060 100644
--- a/srcpkgs/rex/template
+++ b/srcpkgs/rex/template
@@ -2,7 +2,6 @@
 pkgname=rex
 version=1.12.1
 revision=1
-archs=noarch
 wrksrc="Rex-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-AWS-Signature4 perl-Clone-Choose
diff --git a/srcpkgs/rinse/template b/srcpkgs/rinse/template
index 289fb177632..f626b75ad7a 100644
--- a/srcpkgs/rinse/template
+++ b/srcpkgs/rinse/template
@@ -2,7 +2,6 @@
 pkgname=rinse
 version=3.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_check_target=test
 hostmakedepends="dpkg"
diff --git a/srcpkgs/ripe-atlas-tools/template b/srcpkgs/ripe-atlas-tools/template
index c5e21c4b8dc..07bf1dceef1 100644
--- a/srcpkgs/ripe-atlas-tools/template
+++ b/srcpkgs/ripe-atlas-tools/template
@@ -2,7 +2,6 @@
 pkgname=ripe-atlas-tools
 version=2.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/rkhunter/template b/srcpkgs/rkhunter/template
index 743af812a78..968cad3cc7b 100644
--- a/srcpkgs/rkhunter/template
+++ b/srcpkgs/rkhunter/template
@@ -2,7 +2,6 @@
 pkgname=rkhunter
 version=1.4.6
 revision=1
-archs=noarch
 conf_files="/etc/rkhunter.conf"
 make_dirs="/var/lib/rkhunter/tmp 0750 root root"
 makedepends="curl"
diff --git a/srcpkgs/rocksndiamonds/template b/srcpkgs/rocksndiamonds/template
index bdfbca30b26..a3693182c43 100644
--- a/srcpkgs/rocksndiamonds/template
+++ b/srcpkgs/rocksndiamonds/template
@@ -36,7 +36,6 @@ do_install() {
 
 rocksndiamonds-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/rocksndiamonds
 	}
diff --git a/srcpkgs/rpi-firmware/template b/srcpkgs/rpi-firmware/template
index faa8fa28222..45b6d58bc23 100644
--- a/srcpkgs/rpi-firmware/template
+++ b/srcpkgs/rpi-firmware/template
@@ -5,7 +5,6 @@ _gitshort="${_githash:0:7}"
 pkgname=rpi-firmware
 version=20200326
 revision=1
-archs=noarch
 wrksrc="firmware-${_githash}"
 short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
 maintainer="Peter Bui <pbui@github.bx612.space>"
diff --git a/srcpkgs/rpmextract/template b/srcpkgs/rpmextract/template
index e1e325f7a6c..5b568f72ba8 100644
--- a/srcpkgs/rpmextract/template
+++ b/srcpkgs/rpmextract/template
@@ -2,7 +2,6 @@
 pkgname=rpmextract
 version=1.1
 revision=3
-archs=noarch
 depends="bsdtar coreutils"
 short_desc="Script to convert or extract RPM archives (contains rpm2cpio)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/rsnapshot/template b/srcpkgs/rsnapshot/template
index 8dafcc87bcd..cb86ba6e78b 100644
--- a/srcpkgs/rsnapshot/template
+++ b/srcpkgs/rsnapshot/template
@@ -2,7 +2,6 @@
 pkgname=rsnapshot
 version=1.4.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl rsync openssh"
 makedepends="perl-Lchown"
diff --git a/srcpkgs/rtl8812au-dkms/template b/srcpkgs/rtl8812au-dkms/template
index 49548f69a76..7fb637158b4 100644
--- a/srcpkgs/rtl8812au-dkms/template
+++ b/srcpkgs/rtl8812au-dkms/template
@@ -4,7 +4,6 @@ version=20200702
 revision=1
 _modver=5.6.4.2
 _gitrev=3110ad65d0f03532bd97b1017cae67ca86dd34f6
-archs=noarch
 wrksrc="rtl8812au-${_modver}-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8812AU/8821AU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rtl8822bu-dkms/template b/srcpkgs/rtl8822bu-dkms/template
index 9f87620427d..1db7fe4eef0 100644
--- a/srcpkgs/rtl8822bu-dkms/template
+++ b/srcpkgs/rtl8822bu-dkms/template
@@ -3,7 +3,6 @@ pkgname=rtl8822bu-dkms
 version=20200407
 revision=1
 _gitrev=9438d453ec5b4878b7d4a2b4bcf87b37df09c3fb
-archs=noarch
 wrksrc="rtl8822bu-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8822BU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index de6652231aa..dec05bd21d0 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -2,7 +2,6 @@
 pkgname=rubber
 version=1.5.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 virtual?tex"
diff --git a/srcpkgs/ruby-addressable/template b/srcpkgs/ruby-addressable/template
index 0495e0176ec..0cc0fcd7a3d 100644
--- a/srcpkgs/ruby-addressable/template
+++ b/srcpkgs/ruby-addressable/template
@@ -2,7 +2,6 @@
 pkgname=ruby-addressable
 version=2.7.0
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-public_suffix>=2.0.2 ruby-public_suffix<5.0"
 short_desc="Replacement for Ruby's standard library URI implementation"
diff --git a/srcpkgs/ruby-asciidoctor/template b/srcpkgs/ruby-asciidoctor/template
index f70d94c165d..dba6815ad74 100644
--- a/srcpkgs/ruby-asciidoctor/template
+++ b/srcpkgs/ruby-asciidoctor/template
@@ -2,7 +2,6 @@
 pkgname=ruby-asciidoctor
 version=2.0.10
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Ruby implementation of AsciiDoc"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-concurrent-ruby/template b/srcpkgs/ruby-concurrent-ruby/template
index f702b3a2c09..c19d4a72091 100644
--- a/srcpkgs/ruby-concurrent-ruby/template
+++ b/srcpkgs/ruby-concurrent-ruby/template
@@ -2,7 +2,6 @@
 pkgname=ruby-concurrent-ruby
 version=1.1.5
 revision=3
-archs="noarch"
 build_style=gem
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-connection_pool/template b/srcpkgs/ruby-connection_pool/template
index 0ef9ffee343..4bde99058f1 100644
--- a/srcpkgs/ruby-connection_pool/template
+++ b/srcpkgs/ruby-connection_pool/template
@@ -2,7 +2,6 @@
 pkgname=ruby-connection_pool
 version=2.2.2
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Generic connection pool for Ruby"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-deep_merge/template b/srcpkgs/ruby-deep_merge/template
index 851a1fd4901..fe8fa774354 100644
--- a/srcpkgs/ruby-deep_merge/template
+++ b/srcpkgs/ruby-deep_merge/template
@@ -2,7 +2,6 @@
 pkgname=ruby-deep_merge
 version=1.2.1
 revision=2
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-ethon/template b/srcpkgs/ruby-ethon/template
index 6e19f1641e3..47c14e97059 100644
--- a/srcpkgs/ruby-ethon/template
+++ b/srcpkgs/ruby-ethon/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ethon
 version=0.12.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-ffi>=1.3.0"
 short_desc="Lightweight wrapper around libcurl"
diff --git a/srcpkgs/ruby-faraday/template b/srcpkgs/ruby-faraday/template
index 517f7afa39e..cb902fa55de 100644
--- a/srcpkgs/ruby-faraday/template
+++ b/srcpkgs/ruby-faraday/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday
 version=1.0.1
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-multipart-post>=1.2 ruby-multipart-post<3"
 short_desc="HTTP/REST API client library"
diff --git a/srcpkgs/ruby-faraday_middleware/template b/srcpkgs/ruby-faraday_middleware/template
index c300a0b5f86..869d7ca04ac 100644
--- a/srcpkgs/ruby-faraday_middleware/template
+++ b/srcpkgs/ruby-faraday_middleware/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday_middleware
 version=1.0.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-faraday>=1.0"
 short_desc="Various middleware for Faraday"
diff --git a/srcpkgs/ruby-filesize/template b/srcpkgs/ruby-filesize/template
index dad1a39f098..32284c510a6 100644
--- a/srcpkgs/ruby-filesize/template
+++ b/srcpkgs/ruby-filesize/template
@@ -2,7 +2,6 @@
 pkgname=ruby-filesize
 version=0.2.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Small class for handling filesizes"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-gh/template b/srcpkgs/ruby-gh/template
index 0a9899994f1..2972f27ff15 100644
--- a/srcpkgs/ruby-gh/template
+++ b/srcpkgs/ruby-gh/template
@@ -2,7 +2,6 @@
 pkgname=ruby-gh
 version=0.15.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.4.0 ruby-backports ruby-faraday>=0.8
  ruby-multi_json>=1.0 ruby-net-http-persistent>=2.9 ruby-net-http-pipeline"
diff --git a/srcpkgs/ruby-highline/template b/srcpkgs/ruby-highline/template
index 5064e4167c3..c21e6f4b1c6 100644
--- a/srcpkgs/ruby-highline/template
+++ b/srcpkgs/ruby-highline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-highline
 version=2.0.3
 revision=2
-archs=noarch
 build_style=gem
 short_desc="High-level IO library for comamndline interfaces"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-httparty/template b/srcpkgs/ruby-httparty/template
index 7a26fe321e7..fb88f3ae633 100644
--- a/srcpkgs/ruby-httparty/template
+++ b/srcpkgs/ruby-httparty/template
@@ -2,7 +2,6 @@
 pkgname=ruby-httparty
 version=0.17.1
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types>=3.0 ruby-multi_xml>=0.5.2"
 short_desc="Makes http fun! Also, makes consuming restful web services dead easy"
diff --git a/srcpkgs/ruby-launchy/template b/srcpkgs/ruby-launchy/template
index 1586ac19625..fd42c758b4e 100644
--- a/srcpkgs/ruby-launchy/template
+++ b/srcpkgs/ruby-launchy/template
@@ -2,7 +2,6 @@
 pkgname=ruby-launchy
 version=2.4.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.3 ruby-addressable<3.0"
 short_desc="Helper class for launching cross-platform applications"
diff --git a/srcpkgs/ruby-manpages/template b/srcpkgs/ruby-manpages/template
index 2521b71af56..491ed093d46 100644
--- a/srcpkgs/ruby-manpages/template
+++ b/srcpkgs/ruby-manpages/template
@@ -2,7 +2,6 @@
 pkgname=ruby-manpages
 version=0.6.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Gem to add man pages support to ruby gems"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-mime-types-data/template b/srcpkgs/ruby-mime-types-data/template
index d8b3958fc44..3da961f2eaa 100644
--- a/srcpkgs/ruby-mime-types-data/template
+++ b/srcpkgs/ruby-mime-types-data/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types-data
 version=3.2019.1009
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Registry for MIME media type definitions"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mime-types/template b/srcpkgs/ruby-mime-types/template
index 1512f5f9a6c..aef14485633 100644
--- a/srcpkgs/ruby-mime-types/template
+++ b/srcpkgs/ruby-mime-types/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types
 version=3.3
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types-data>=3.2015"
 short_desc="Library for registry and information about MIME types"
diff --git a/srcpkgs/ruby-multi_json/template b/srcpkgs/ruby-multi_json/template
index 71c3623f0fb..cff882e742c 100644
--- a/srcpkgs/ruby-multi_json/template
+++ b/srcpkgs/ruby-multi_json/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_json
 version=1.14.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Common interface for multiple JSON parsing libraries"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multi_xml/template b/srcpkgs/ruby-multi_xml/template
index 3a4628c9e29..a8d30d74535 100644
--- a/srcpkgs/ruby-multi_xml/template
+++ b/srcpkgs/ruby-multi_xml/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_xml
 version=0.6.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multipart-post/template b/srcpkgs/ruby-multipart-post/template
index a2b21ce7627..44c2119aa04 100644
--- a/srcpkgs/ruby-multipart-post/template
+++ b/srcpkgs/ruby-multipart-post/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multipart-post
 version=2.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Use with Net::HTTP to do multipart form posts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mustache/template b/srcpkgs/ruby-mustache/template
index 96ebfb59b27..b7d9bf4f416 100644
--- a/srcpkgs/ruby-mustache/template
+++ b/srcpkgs/ruby-mustache/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mustache
 version=1.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Framework-agnostic way to render logic-free views"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-net-http-persistent/template b/srcpkgs/ruby-net-http-persistent/template
index afae4ea0308..bd3dc9240a3 100644
--- a/srcpkgs/ruby-net-http-persistent/template
+++ b/srcpkgs/ruby-net-http-persistent/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-persistent
 version=3.1.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-connection_pool>=2.2 ruby-connection_pool<3.0"
 short_desc="Manages persistent connections using Net::HTTP"
diff --git a/srcpkgs/ruby-net-http-pipeline/template b/srcpkgs/ruby-net-http-pipeline/template
index 0cb6aa687ff..8b7762613ea 100644
--- a/srcpkgs/ruby-net-http-pipeline/template
+++ b/srcpkgs/ruby-net-http-pipeline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-pipeline
 version=1.0.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="HTTP/1.1 pipelining implementation atop Net::HTTP"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-public_suffix/template b/srcpkgs/ruby-public_suffix/template
index ec94bd34ca3..d588f22de24 100644
--- a/srcpkgs/ruby-public_suffix/template
+++ b/srcpkgs/ruby-public_suffix/template
@@ -2,7 +2,6 @@
 pkgname=ruby-public_suffix
 version=4.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Parse domain names into top level domain, domain and subdomains"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-pusher-client/template b/srcpkgs/ruby-pusher-client/template
index 9b41bbf12ef..fac92ca2968 100644
--- a/srcpkgs/ruby-pusher-client/template
+++ b/srcpkgs/ruby-pusher-client/template
@@ -2,7 +2,6 @@
 pkgname=ruby-pusher-client
 version=0.6.2
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-websocket>=1.0 ruby-websocket<2.0"
 short_desc="Client for consuming WebSockets from http://pusher.com"
diff --git a/srcpkgs/ruby-rainbow/template b/srcpkgs/ruby-rainbow/template
index dc2c03331d4..96fc7360c7c 100644
--- a/srcpkgs/ruby-rainbow/template
+++ b/srcpkgs/ruby-rainbow/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rainbow
 version=3.0.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Colorize printed text on ANSI terminals"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-rb-readline/template b/srcpkgs/ruby-rb-readline/template
index 5457b9cd5d1..2d78ead9d50 100644
--- a/srcpkgs/ruby-rb-readline/template
+++ b/srcpkgs/ruby-rb-readline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rb-readline
 version=0.5.5
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby"
 short_desc="Pure Ruby implementation of GNU readline library"
diff --git a/srcpkgs/ruby-ronn/template b/srcpkgs/ruby-ronn/template
index cada3abd52d..01515c05e6a 100644
--- a/srcpkgs/ruby-ronn/template
+++ b/srcpkgs/ruby-ronn/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ronn
 version=0.7.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-hpricot ruby-mustache ruby-rdiscount groff"
 short_desc="Strick markdown-like format for manpages"
diff --git a/srcpkgs/ruby-rubysl-singleton/template b/srcpkgs/ruby-rubysl-singleton/template
index a2b64a23ca4..184f71f3375 100644
--- a/srcpkgs/ruby-rubysl-singleton/template
+++ b/srcpkgs/ruby-rubysl-singleton/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rubysl-singleton
 version=2.0.0
 revision=2
-archs="noarch"
 build_style=gemspec
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-semantic_puppet/template b/srcpkgs/ruby-semantic_puppet/template
index e7af95f9e7a..758c6cef565 100644
--- a/srcpkgs/ruby-semantic_puppet/template
+++ b/srcpkgs/ruby-semantic_puppet/template
@@ -2,7 +2,6 @@
 pkgname=ruby-semantic_puppet
 version=1.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Tools for working with Semantic Versions"
 maintainer="eater <=@eater.me>"
diff --git a/srcpkgs/ruby-sync/template b/srcpkgs/ruby-sync/template
index 20771ee9b5e..5155a3e1359 100644
--- a/srcpkgs/ruby-sync/template
+++ b/srcpkgs/ruby-sync/template
@@ -2,7 +2,6 @@
 pkgname=ruby-sync
 version=0.5.0
 revision=1
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-travis/template b/srcpkgs/ruby-travis/template
index 2eaa35cad8e..3e236aa25b4 100644
--- a/srcpkgs/ruby-travis/template
+++ b/srcpkgs/ruby-travis/template
@@ -2,7 +2,6 @@
 pkgname=ruby-travis
 version=1.9.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-backports ruby-faraday>=1.0 ruby-faraday_middleware>=1.0
  ruby-gh>=0.13 ruby-highline>=2.0 ruby-launchy>=2.1 ruby-pusher-client>=0.4
diff --git a/srcpkgs/ruby-typhoeus/template b/srcpkgs/ruby-typhoeus/template
index 33447f4b2bf..f6945c9fd7e 100644
--- a/srcpkgs/ruby-typhoeus/template
+++ b/srcpkgs/ruby-typhoeus/template
@@ -2,7 +2,6 @@
 pkgname=ruby-typhoeus
 version=1.3.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-ethon>=0.9.0"
 short_desc="Parallel HTTP requests runner"
diff --git a/srcpkgs/ruby-websocket/template b/srcpkgs/ruby-websocket/template
index 83c913113f1..56ee82430b9 100644
--- a/srcpkgs/ruby-websocket/template
+++ b/srcpkgs/ruby-websocket/template
@@ -2,7 +2,6 @@
 pkgname=ruby-websocket
 version=1.2.8
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Universal Ruby library to handle WebSocket protocol"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby/template b/srcpkgs/ruby/template
index 5159f3c3b88..1cd48b464d7 100644
--- a/srcpkgs/ruby/template
+++ b/srcpkgs/ruby/template
@@ -105,7 +105,6 @@ post_install() {
 
 ruby-devel-doc_package() {
 	short_desc+=" - HTML C API documentation files"
-	archs=noarch
 	pkg_install() {
 		if [ -d "${DESTDIR}/usr/share/doc" ]; then
 			vmove usr/share/doc
@@ -133,7 +132,6 @@ ruby-devel_package() {
 ruby-ri_package() {
 	depends="ruby-${version}_${revision}"
 	short_desc="Ruby Interactive reference"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/ri
 		if [ -d "${DESTDIR}/usr/share/ri" ]; then
diff --git a/srcpkgs/run-mailcap/template b/srcpkgs/run-mailcap/template
index a09c1f8ef01..4947cf0d13c 100644
--- a/srcpkgs/run-mailcap/template
+++ b/srcpkgs/run-mailcap/template
@@ -2,7 +2,6 @@
 pkgname=run-mailcap
 version=3.64
 revision=1
-archs=noarch
 wrksrc="mime-support-${version}ubuntu1"
 depends="perl"
 short_desc="Execute programs via entries in the mailcap file"
diff --git a/srcpkgs/runelite-launcher/template b/srcpkgs/runelite-launcher/template
index f4717951c59..f2bd9af220c 100644
--- a/srcpkgs/runelite-launcher/template
+++ b/srcpkgs/runelite-launcher/template
@@ -2,7 +2,6 @@
 pkgname=runelite-launcher
 version=2.1.3
 revision=1
-archs=noarch
 wrksrc="launcher-${version}"
 hostmakedepends="apache-maven-bin"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/runit-iptables/template b/srcpkgs/runit-iptables/template
index c35cdc4738f..4761418d8a3 100644
--- a/srcpkgs/runit-iptables/template
+++ b/srcpkgs/runit-iptables/template
@@ -2,7 +2,6 @@
 pkgname=runit-iptables
 version=20180616
 revision=1
-archs=noarch
 depends="runit-void iptables"
 short_desc="Restore iptables rules on boot"
 maintainer="Nicolas Porcel <nicolasporcel06@gmail.com>"
diff --git a/srcpkgs/runit-kdump/template b/srcpkgs/runit-kdump/template
index 0c7f8ea464d..c220d4215ee 100644
--- a/srcpkgs/runit-kdump/template
+++ b/srcpkgs/runit-kdump/template
@@ -2,7 +2,6 @@
 pkgname=runit-kdump
 version=20150226
 revision=4
-archs=noarch
 make_dirs="/var/crash 0755 root root"
 depends="runit-void makedumpfile kexec-tools"
 short_desc="Crashkernel/kdump support for runit to save vmcore to disk"
diff --git a/srcpkgs/runit-nftables/template b/srcpkgs/runit-nftables/template
index d07cb42cae5..4ca82522948 100644
--- a/srcpkgs/runit-nftables/template
+++ b/srcpkgs/runit-nftables/template
@@ -2,7 +2,6 @@
 pkgname=runit-nftables
 version=20200123
 revision=1
-archs=noarch
 depends="runit-void nftables"
 short_desc="Restore nftables rules on boot"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/runit-swap/template b/srcpkgs/runit-swap/template
index 20147c8555d..f0a8416d38f 100644
--- a/srcpkgs/runit-swap/template
+++ b/srcpkgs/runit-swap/template
@@ -10,7 +10,6 @@ maintainer="Andrea Brancaleoni <abc@pompel.me>"
 license="GPL-3"
 homepage="https://github.com/thypon/runit-swap"
 conf_files="/etc/runit/swap.conf"
-archs=noarch
 distfiles="$homepage/archive/v$version.tar.gz"
 checksum=a66730777fb084564e7fae67f2017d775b757b6b6c0c319802f71bed2184e958
 
diff --git a/srcpkgs/rust/template b/srcpkgs/rust/template
index cba2feba4d2..942457e523c 100644
--- a/srcpkgs/rust/template
+++ b/srcpkgs/rust/template
@@ -298,7 +298,6 @@ do_install() {
 
 rust-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/rxvt-unicode/template b/srcpkgs/rxvt-unicode/template
index d07e838a818..5360b4486be 100644
--- a/srcpkgs/rxvt-unicode/template
+++ b/srcpkgs/rxvt-unicode/template
@@ -77,7 +77,6 @@ post_install() {
 
 rxvt-unicode-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/s3cmd/template b/srcpkgs/s3cmd/template
index 8043233efb5..5b3527c19a4 100644
--- a/srcpkgs/s3cmd/template
+++ b/srcpkgs/s3cmd/template
@@ -2,7 +2,6 @@
 pkgname=s3cmd
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-dateutil"
diff --git a/srcpkgs/s6-dns/template b/srcpkgs/s6-dns/template
index 9a0227f2806..fa8a6f34c9c 100644
--- a/srcpkgs/s6-dns/template
+++ b/srcpkgs/s6-dns/template
@@ -21,7 +21,6 @@ post_install() {
 }
 
 s6-dns-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-linux-utils/template b/srcpkgs/s6-linux-utils/template
index 224125b1117..e84aa08fc56 100644
--- a/srcpkgs/s6-linux-utils/template
+++ b/srcpkgs/s6-linux-utils/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-linux-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-networking/template b/srcpkgs/s6-networking/template
index 832b56ba251..2d08e3a7964 100644
--- a/srcpkgs/s6-networking/template
+++ b/srcpkgs/s6-networking/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-networking-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-portable-utils/template b/srcpkgs/s6-portable-utils/template
index c163ea31eae..a9fa76d8e25 100644
--- a/srcpkgs/s6-portable-utils/template
+++ b/srcpkgs/s6-portable-utils/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 s6-portable-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-rc/template b/srcpkgs/s6-rc/template
index 4296af454a2..108f89faa9f 100644
--- a/srcpkgs/s6-rc/template
+++ b/srcpkgs/s6-rc/template
@@ -34,7 +34,6 @@ s6-rc-devel_package() {
 }
 
 s6-rc-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6/template b/srcpkgs/s6/template
index baecf1ee007..f54f828e685 100644
--- a/srcpkgs/s6/template
+++ b/srcpkgs/s6/template
@@ -27,7 +27,6 @@ post_install() {
 }
 
 s6-doc_package() {
-	archs=noarch
 	short_desc="Documentation for s6"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/sabnzbd/template b/srcpkgs/sabnzbd/template
index a45b6535c33..e0364e3e746 100644
--- a/srcpkgs/sabnzbd/template
+++ b/srcpkgs/sabnzbd/template
@@ -2,7 +2,6 @@
 pkgname=sabnzbd
 version=2.3.9
 revision=1
-archs=noarch
 wrksrc="SABnzbd-${version}"
 pycompile_dirs="/usr/share/sabnzbd"
 depends="par2cmdline python-cheetah python-configobj python-feedparser
diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index c237bc503d8..6b7c5f51007 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -2,7 +2,6 @@
 pkgname=safeeyes
 version=2.0.9
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/salt/template b/srcpkgs/salt/template
index 80525f92686..7472d3975a8 100644
--- a/srcpkgs/salt/template
+++ b/srcpkgs/salt/template
@@ -2,7 +2,6 @@
 pkgname=salt
 version=3001.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-yaml python3-Jinja2 python3-requests python3-pyzmq
diff --git a/srcpkgs/sandfox/template b/srcpkgs/sandfox/template
index 36bd2571bd6..24e20f3c806 100644
--- a/srcpkgs/sandfox/template
+++ b/srcpkgs/sandfox/template
@@ -2,7 +2,6 @@
 pkgname=sandfox
 version=1.1.4
 revision=2
-archs=noarch
 depends="bash inotify-tools lsof"
 short_desc="Runs Firefox and other apps in a filesystem sandbox"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/sauerbraten/template b/srcpkgs/sauerbraten/template
index bb0c9b8acb9..636a3b446ba 100644
--- a/srcpkgs/sauerbraten/template
+++ b/srcpkgs/sauerbraten/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 sauerbraten-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmkdir usr/share/$sourcepkg
diff --git a/srcpkgs/sbcl/template b/srcpkgs/sbcl/template
index 2f58d4153f8..6eee1a27abe 100644
--- a/srcpkgs/sbcl/template
+++ b/srcpkgs/sbcl/template
@@ -56,7 +56,6 @@ do_install() {
 }
 
 sbcl-source_package() {
-	archs="noarch"
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" -- source files"
 	pkg_install() {
diff --git a/srcpkgs/sbt/template b/srcpkgs/sbt/template
index df79423b267..c2e90eb2d97 100644
--- a/srcpkgs/sbt/template
+++ b/srcpkgs/sbt/template
@@ -2,7 +2,6 @@
 pkgname=sbt
 version=1.3.10
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="virtual?java-environment"
 short_desc="Interactive build tool for Scala and Java"
diff --git a/srcpkgs/scanmem/template b/srcpkgs/scanmem/template
index b9bbb2f89fc..0cdd4271f7b 100644
--- a/srcpkgs/scanmem/template
+++ b/srcpkgs/scanmem/template
@@ -41,7 +41,6 @@ libscanmem-devel_package() {
 gameconqueror_package() {
 	short_desc="GameConqueror is a GUI front-end for scanmem, providing more features"
 	depends="polkit gtk+3 python3-gobject lib${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		cd $DESTDIR
diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 36972bfd461..45bec58f751 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -2,7 +2,6 @@
 pkgname=scapy
 version=2.4.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="scapy"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/schedule/template b/srcpkgs/schedule/template
index 0a5b7c03d6b..4348334a32b 100644
--- a/srcpkgs/schedule/template
+++ b/srcpkgs/schedule/template
@@ -2,7 +2,6 @@
 pkgname=schedule
 version=8.0.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Framework to schedule jobs in a multiuser multitasking environment"
diff --git a/srcpkgs/screenFetch/template b/srcpkgs/screenFetch/template
index 4a3d5a9dcaa..6b98d688755 100644
--- a/srcpkgs/screenFetch/template
+++ b/srcpkgs/screenFetch/template
@@ -2,7 +2,6 @@
 pkgname=screenFetch
 version=3.9.1
 revision=1
-archs=noarch
 depends="bash bc xdpyinfo"
 short_desc="Bash screenshot information tool"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/screenkey/template b/srcpkgs/screenkey/template
index b4feb736b89..8205bff7a23 100644
--- a/srcpkgs/screenkey/template
+++ b/srcpkgs/screenkey/template
@@ -2,7 +2,6 @@
 pkgname=screenkey
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-setuptools python3-distutils-extra"
 depends="python3-gobject"
diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index e3ce1bc7ff2..10f41dd685b 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -2,7 +2,6 @@
 pkgname=screenplain
 version=0.9.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-reportlab"
diff --git a/srcpkgs/seafile-libclient/template b/srcpkgs/seafile-libclient/template
index 4db42506d81..1b25ea59255 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -39,7 +39,6 @@ seafile-libclient-devel_package() {
 seafile-libclient-python3_package() {
 	short_desc="Cloud storage system - Python3 bindings"
 	depends="libsearpc-python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
@@ -49,7 +48,6 @@ seafile-cli_package() {
 	short_desc="Cloud storage system - client CLI"
 	depends="seafile-libclient-python3 ${sourcepkg}>=${version}_${revision}"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/seaf-cli
 		vmove usr/share/man/man1/seaf-cli.1
diff --git a/srcpkgs/sendEmail/template b/srcpkgs/sendEmail/template
index a60e0941572..508aca8aeeb 100644
--- a/srcpkgs/sendEmail/template
+++ b/srcpkgs/sendEmail/template
@@ -2,7 +2,6 @@
 pkgname=sendEmail
 version=1.56
 revision=1
-archs=noarch
 wrksrc="${pkgname}-v${version}"
 depends="perl-Net-SSLeay"
 short_desc="Lightweight, command line SMTP email client"
diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index 8191947a20b..d7b357a5940 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -2,7 +2,6 @@
 pkgname=setconf
 version=0.7.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="setconf.py"
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-setconf_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" - transitional dummy package"
 	depends="setconf"
diff --git a/srcpkgs/shared-color-targets/template b/srcpkgs/shared-color-targets/template
index 45b350d0b63..4b7f7dfab0a 100644
--- a/srcpkgs/shared-color-targets/template
+++ b/srcpkgs/shared-color-targets/template
@@ -2,7 +2,6 @@
 pkgname=shared-color-targets
 version=0.1.7
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Shared color targets for creating color profiles"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shared-desktop-ontologies/template b/srcpkgs/shared-desktop-ontologies/template
index d8ac5283177..6260f372e5e 100644
--- a/srcpkgs/shared-desktop-ontologies/template
+++ b/srcpkgs/shared-desktop-ontologies/template
@@ -2,7 +2,6 @@
 pkgname=shared-desktop-ontologies
 version=0.11.0
 revision=3
-archs=noarch
 build_style=cmake
 short_desc="Provide RDF vocabularies for the Semantic Desktop"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 4cd7da661b0..5b204fff7e9 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -55,12 +55,10 @@ python3-shiboken_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
 
 libshiboken-python3_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/shorewall/template b/srcpkgs/shorewall/template
index 30efdba8869..e0d82656e85 100644
--- a/srcpkgs/shorewall/template
+++ b/srcpkgs/shorewall/template
@@ -2,7 +2,6 @@
 pkgname=shorewall
 version=5.2.7
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="shorewall-core perl"
 short_desc="Iptables-based firewall for Linux systems"
@@ -37,7 +36,6 @@ do_install() {
 }
 
 shorewall-core_package() {
-	archs=noarch
 	depends="iptables iproute2"
 	short_desc+=" - Core Shorewall files"
 	pkg_install() {
@@ -47,7 +45,6 @@ shorewall-core_package() {
 }
 
 shorewall6_package() {
-	archs=noarch
 	depends="shorewall"
 	conf_files="/etc/$pkgname/*"
 	short_desc+=" - IPv6 support"
diff --git a/srcpkgs/shunit2/template b/srcpkgs/shunit2/template
index f909503b0f6..77babcece07 100644
--- a/srcpkgs/shunit2/template
+++ b/srcpkgs/shunit2/template
@@ -2,7 +2,6 @@
 pkgname=shunit2
 version=2.1.8
 revision=1
-archs=noarch
 depends="bash"
 checkdepends="zsh ksh"
 short_desc="Unit testing framework for Unix shell scripts based on xUnit"
diff --git a/srcpkgs/sickbeard/template b/srcpkgs/sickbeard/template
index a056d33f0b9..8499ed6ea0a 100644
--- a/srcpkgs/sickbeard/template
+++ b/srcpkgs/sickbeard/template
@@ -2,7 +2,6 @@
 pkgname=sickbeard
 version=507
 revision=3
-archs=noarch
 wrksrc="Sick-Beard-build-${version}"
 pycompile_dirs="/usr/share/${pkgname}"
 depends="python-cheetah"
diff --git a/srcpkgs/signond/template b/srcpkgs/signond/template
index fc1bdebe712..c72b3932ea6 100644
--- a/srcpkgs/signond/template
+++ b/srcpkgs/signond/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 signond-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/sigrok-firmware-fx2lafw/template b/srcpkgs/sigrok-firmware-fx2lafw/template
index 5c92bc1c0ac..7f9a574fa2d 100644
--- a/srcpkgs/sigrok-firmware-fx2lafw/template
+++ b/srcpkgs/sigrok-firmware-fx2lafw/template
@@ -2,7 +2,6 @@
 pkgname=sigrok-firmware-fx2lafw
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname}-bin-${version}"
 short_desc="Sigrok fx2lafw Firmware files"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/skalibs/template b/srcpkgs/skalibs/template
index 7b838abda1b..05dbcc04fa1 100644
--- a/srcpkgs/skalibs/template
+++ b/srcpkgs/skalibs/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 skalibs-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/slim-void-theme/template b/srcpkgs/slim-void-theme/template
index 373d6b644e4..8598b5cc0bc 100644
--- a/srcpkgs/slim-void-theme/template
+++ b/srcpkgs/slim-void-theme/template
@@ -2,7 +2,6 @@
 pkgname=slim-void-theme
 version=1.0.0
 revision=1
-archs=noarch
 depends="slim"
 short_desc="Fancy SLiM theme for Void Linux"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
diff --git a/srcpkgs/snazzer/template b/srcpkgs/snazzer/template
index 40828a47362..a42c9a541bd 100644
--- a/srcpkgs/snazzer/template
+++ b/srcpkgs/snazzer/template
@@ -2,7 +2,6 @@
 pkgname=snazzer
 version=0.0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl pod2mdoc"
 depends="sudo btrfs-progs"
diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3a88e08a988..8ae8caf4337 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -2,7 +2,6 @@
 pkgname=sonata
 version=1.7b1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-mpd2 python3-gobject gtk+3 ${hostmakedepends}"
diff --git a/srcpkgs/sound-icons/template b/srcpkgs/sound-icons/template
index ee30809549f..84a4de4011d 100644
--- a/srcpkgs/sound-icons/template
+++ b/srcpkgs/sound-icons/template
@@ -2,7 +2,6 @@
 pkgname=sound-icons
 version=0.1
 revision=1
-archs=noarch
 short_desc="Sounds for speech enabled applications"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/sound-theme-freedesktop/template b/srcpkgs/sound-theme-freedesktop/template
index 5edc5cb8440..b2147d82046 100644
--- a/srcpkgs/sound-theme-freedesktop/template
+++ b/srcpkgs/sound-theme-freedesktop/template
@@ -2,7 +2,6 @@
 pkgname=sound-theme-freedesktop
 version=0.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="Freedesktop sound theme"
diff --git a/srcpkgs/soundconverter/template b/srcpkgs/soundconverter/template
index 1bda4743513..2dfe30d25e3 100644
--- a/srcpkgs/soundconverter/template
+++ b/srcpkgs/soundconverter/template
@@ -2,7 +2,6 @@
 pkgname=soundconverter
 version=3.0.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/${pkgname}/python/${pkgname}"
 hostmakedepends="glib intltool pkg-config python3-gobject"
diff --git a/srcpkgs/soundfont-fluid/template b/srcpkgs/soundfont-fluid/template
index dfbe2f089a7..96318df36e2 100644
--- a/srcpkgs/soundfont-fluid/template
+++ b/srcpkgs/soundfont-fluid/template
@@ -2,7 +2,6 @@
 pkgname=soundfont-fluid
 version=3.1
 revision=3
-archs=noarch
 wrksrc="fluid-soundfont-${version}"
 short_desc="FluidR3 Soundfont"
 maintainer="Nick Hahn <nick.hahn@hotmail.de>"
diff --git a/srcpkgs/source-sans-pro/template b/srcpkgs/source-sans-pro/template
index 510f5a74e91..059f669b8bb 100644
--- a/srcpkgs/source-sans-pro/template
+++ b/srcpkgs/source-sans-pro/template
@@ -3,7 +3,6 @@ pkgname=source-sans-pro
 version=3.006
 revision=1
 _relver="3.006R"
-archs=noarch
 wrksrc="source-sans-pro-${_relver/\//-}"
 depends="font-util"
 short_desc="Sans serif font family for user interface environments"
diff --git a/srcpkgs/spampd/template b/srcpkgs/spampd/template
index 69d884a75df..1058d4bb5a7 100644
--- a/srcpkgs/spampd/template
+++ b/srcpkgs/spampd/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="http://www.worlddesign.com/index.cfm/page/software/open-source/spampd.htm"
 distfiles="https://github.com/downloads/mpaperno/$pkgname/$pkgname-$version.tar.gz"
 checksum=c980e55f46c7757fd45294e5268766253123490d0158d2ee36ad5700ddf823bb
-archs=noarch
 system_accounts="_spampd"
 _spampd_homedir="/var/lib/spampd"
 
diff --git a/srcpkgs/sparsehash/template b/srcpkgs/sparsehash/template
index b6e1725d3a3..919e516f4d8 100644
--- a/srcpkgs/sparsehash/template
+++ b/srcpkgs/sparsehash/template
@@ -2,7 +2,6 @@
 pkgname=sparsehash
 version=2.0.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Library that contains several hash-map implementations"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/spdx-licenses-list/template b/srcpkgs/spdx-licenses-list/template
index 98b05b520d8..c12a3616660 100644
--- a/srcpkgs/spdx-licenses-list/template
+++ b/srcpkgs/spdx-licenses-list/template
@@ -4,7 +4,6 @@
 pkgname=spdx-licenses-list
 version=3.10
 revision=1
-archs=noarch
 wrksrc="license-list-data-${version}"
 short_desc="SPDX License List"
 maintainer="mobinmob <mobinmob@disroot.org>"
@@ -22,7 +21,6 @@ do_install() {
 }
 
 spdx-licenses-text_package() {
-	archs=noarch
 	short_desc="SPDX licenses in plain text"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -31,7 +29,6 @@ spdx-licenses-text_package() {
 }
 
 spdx-licenses-json_package() {
-	archs=noarch
 	short_desc="SPDX licenses in JSON"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -40,7 +37,6 @@ spdx-licenses-json_package() {
 }
 
 spdx-licenses-html_package() {
-	archs=noarch
 	short_desc="SPDX licenses in HTML"
 	pkg_install() {
 		vmkdir usr/share/spdx
diff --git a/srcpkgs/spectre-meltdown-checker/template b/srcpkgs/spectre-meltdown-checker/template
index ba940726dc1..4873a59248e 100644
--- a/srcpkgs/spectre-meltdown-checker/template
+++ b/srcpkgs/spectre-meltdown-checker/template
@@ -2,7 +2,6 @@
 pkgname=spectre-meltdown-checker
 version=0.43
 revision=1
-archs=noarch
 short_desc="Spectre & Meltdown vulnerability/mitigation checker for Linux"
 depends="binutils"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/speed-dreams/template b/srcpkgs/speed-dreams/template
index 6a32ccc1b49..f269e718af2 100644
--- a/srcpkgs/speed-dreams/template
+++ b/srcpkgs/speed-dreams/template
@@ -34,7 +34,6 @@ esac
 
 speed-dreams-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/speed-dreams-2
 	}
diff --git a/srcpkgs/speedometer/template b/srcpkgs/speedometer/template
index 3c287fcdca7..12c6f43a0e2 100644
--- a/srcpkgs/speedometer/template
+++ b/srcpkgs/speedometer/template
@@ -2,7 +2,6 @@
 pkgname=speedometer
 version=2.8
 revision=3
-archs=noarch
 wrksrc="speedometer-release-${version}"
 depends="python-urwid"
 short_desc="Monitor network traffic or speed/progress of a file transfer"
diff --git a/srcpkgs/speedtest-cli/template b/srcpkgs/speedtest-cli/template
index c65d9fd631d..04b63b8f57a 100644
--- a/srcpkgs/speedtest-cli/template
+++ b/srcpkgs/speedtest-cli/template
@@ -2,7 +2,6 @@
 pkgname=speedtest-cli
 version=2.1.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/spice-protocol/template b/srcpkgs/spice-protocol/template
index 819c2977712..f4b952ce5df 100644
--- a/srcpkgs/spice-protocol/template
+++ b/srcpkgs/spice-protocol/template
@@ -2,7 +2,6 @@
 pkgname=spice-protocol
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="spice-protocol-v${version}"
 build_style=meson
 short_desc="SPICE protocol headers"
diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template
index e7a76a818bf..31842d87272 100644
--- a/srcpkgs/sqlmap/template
+++ b/srcpkgs/sqlmap/template
@@ -2,7 +2,6 @@
 pkgname=sqlmap
 version=1.4.8
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/sqlmap"
 depends="python3"
 short_desc="Automatic SQL injection and database takeover tool"
diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index b9d1f6f8054..3c549b131da 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -2,7 +2,6 @@
 pkgname=ssh-audit
 version=2.2.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="SSH server auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index 518bbd264c3..32031d0fd57 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -2,7 +2,6 @@
 pkgname=sshuttle
 version=1.0.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools iptables"
diff --git a/srcpkgs/ssoma/template b/srcpkgs/ssoma/template
index e2ea3eb961c..d618cba28ac 100644
--- a/srcpkgs/ssoma/template
+++ b/srcpkgs/ssoma/template
@@ -2,7 +2,6 @@
 pkgname=ssoma
 version=0.2.0
 revision=2
-archs=noarch
 make_install_target="install install-man prefix=/usr"
 build_style=perl-module
 depends="perl perl-Email-LocalDelivery perl-Email-MIME perl-File-Path-Expand
diff --git a/srcpkgs/st/template b/srcpkgs/st/template
index c1ff40e2496..4c3281adff6 100644
--- a/srcpkgs/st/template
+++ b/srcpkgs/st/template
@@ -29,7 +29,6 @@ post_install() {
 
 st-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/starfighter/template b/srcpkgs/starfighter/template
index 1b357256b2f..d465bacc52a 100644
--- a/srcpkgs/starfighter/template
+++ b/srcpkgs/starfighter/template
@@ -21,7 +21,6 @@ pre_configure() {
 
 starfighter-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/starfighter
 	}
diff --git a/srcpkgs/startup/template b/srcpkgs/startup/template
index 4a163d65afc..9180c0b7962 100644
--- a/srcpkgs/startup/template
+++ b/srcpkgs/startup/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 startup-tools_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} python3-dbus python3-gobject"
 	short_desc+=" - monitoring and analysis tools"
 	pkg_install() {
diff --git a/srcpkgs/statnot/template b/srcpkgs/statnot/template
index e1817d8f43a..e5bfff9f5e3 100644
--- a/srcpkgs/statnot/template
+++ b/srcpkgs/statnot/template
@@ -2,7 +2,6 @@
 pkgname=statnot
 version=0.0.4
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="pygtk python3-dbus xsetroot"
 short_desc="Notification system for lightweight window managers"
diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index d75e88837cc..b3d4de94217 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -2,7 +2,6 @@
 pkgname=stcgal
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/steam-fonts/template b/srcpkgs/steam-fonts/template
index b0f2aa192b5..fe6f3074b6f 100644
--- a/srcpkgs/steam-fonts/template
+++ b/srcpkgs/steam-fonts/template
@@ -2,7 +2,6 @@
 pkgname=steam-fonts
 version=1.0.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="font-util"
 short_desc="Fonts to fix scrambled or missing text in steam menus"
diff --git a/srcpkgs/stellarium/template b/srcpkgs/stellarium/template
index f3d91387947..38d1518ad50 100644
--- a/srcpkgs/stellarium/template
+++ b/srcpkgs/stellarium/template
@@ -16,7 +16,6 @@ checksum=400ef964c2a1612157a4b219464ea919b4e330322a0db894835b6e11c4af5e9b
 
 stellarium-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stellarium
 	}
diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index abe5f3b563c..4c507387804 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -2,7 +2,6 @@
 pkgname=stig
 version=0.10.1a
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel"
diff --git a/srcpkgs/stk/template b/srcpkgs/stk/template
index 8df159eb8a9..30029aa02bd 100644
--- a/srcpkgs/stk/template
+++ b/srcpkgs/stk/template
@@ -66,7 +66,6 @@ post_install() {
 
 stk-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stk
 	}
diff --git a/srcpkgs/stlarch-font/template b/srcpkgs/stlarch-font/template
index 1c123b7cf0e..ab9e37e4ed1 100644
--- a/srcpkgs/stlarch-font/template
+++ b/srcpkgs/stlarch-font/template
@@ -2,7 +2,6 @@
 pkgname=stlarch-font
 version=1.5
 revision=2
-archs=noarch
 wrksrc="stlarch_font-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/stow/template b/srcpkgs/stow/template
index 4fc87c43888..e3c02065e3c 100644
--- a/srcpkgs/stow/template
+++ b/srcpkgs/stow/template
@@ -2,7 +2,6 @@
 pkgname=stow
 version=2.3.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_target="test"
 hostmakedepends="perl"
diff --git a/srcpkgs/straw-viewer/template b/srcpkgs/straw-viewer/template
index fc327f581ab..22c8507b358 100644
--- a/srcpkgs/straw-viewer/template
+++ b/srcpkgs/straw-viewer/template
@@ -2,7 +2,6 @@
 pkgname=straw-viewer
 version=0.0.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index 44de1bc6fbb..d40a2a23262 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -2,7 +2,6 @@
 pkgname=streamlink
 version=1.5.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycryptodome python3-pycountry
diff --git a/srcpkgs/strip-nondeterminism/template b/srcpkgs/strip-nondeterminism/template
index 5065be2d273..a3129bf6856 100644
--- a/srcpkgs/strip-nondeterminism/template
+++ b/srcpkgs/strip-nondeterminism/template
@@ -2,7 +2,6 @@
 pkgname=strip-nondeterminism
 version=1.6.3
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-Archive-Zip"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/supertux2/template b/srcpkgs/supertux2/template
index 4b7053c6b95..0678b74eeb4 100644
--- a/srcpkgs/supertux2/template
+++ b/srcpkgs/supertux2/template
@@ -22,7 +22,6 @@ checksum=26a9e56ea2d284148849f3239177d777dda5b675a10ab2d76ee65854c91ff598
 
 supertux2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/supertux2
 	}
diff --git a/srcpkgs/supertuxkart/template b/srcpkgs/supertuxkart/template
index 664c79b2529..89985781f68 100644
--- a/srcpkgs/supertuxkart/template
+++ b/srcpkgs/supertuxkart/template
@@ -20,7 +20,6 @@ checksum=e9b02b0b11ab68aacaec38306903feffe59a501224805cd3645cebf10e880ae8
 
 supertuxkart-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		# these script only serve a prupose for developing, not to the package
 		rm "${DESTDIR}/usr/share/supertuxkart/data/po/extract_strings_from_XML.py"
diff --git a/srcpkgs/surfraw/template b/srcpkgs/surfraw/template
index eb49d652edf..3229c598c11 100644
--- a/srcpkgs/surfraw/template
+++ b/srcpkgs/surfraw/template
@@ -8,7 +8,6 @@ build_style=gnu-configure
 short_desc="Command line interface to variety of search engines"
 maintainer="Evan Deaubl <evan@deaubl.name>"
 license="Public Domain"
-archs=noarch
 hostmakedepends="automake perl"
 depends="perl"
 homepage="https://gitlab.com/surfraw/Surfraw"
diff --git a/srcpkgs/sv-helper/template b/srcpkgs/sv-helper/template
index 183ceb72944..74d90c83601 100644
--- a/srcpkgs/sv-helper/template
+++ b/srcpkgs/sv-helper/template
@@ -2,7 +2,6 @@
 pkgname=sv-helper
 version=2.0.2
 revision=1
-archs=noarch
 depends="runit"
 short_desc="Utilities to help administer a runit-as-pid1 system"
 maintainer="bougyman <tj@rubyists.com>"
diff --git a/srcpkgs/swaks/template b/srcpkgs/swaks/template
index e9394bf0b20..3cc608976cf 100644
--- a/srcpkgs/swaks/template
+++ b/srcpkgs/swaks/template
@@ -2,7 +2,6 @@
 pkgname=swaks
 version=20190914.0
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl perl-IO-Socket-INET6 perl-Net-DNS"
 short_desc="Swiss Army Knife for SMTP"
diff --git a/srcpkgs/sway/template b/srcpkgs/sway/template
index fa8e1850c50..2cf0434b1fc 100644
--- a/srcpkgs/sway/template
+++ b/srcpkgs/sway/template
@@ -34,7 +34,6 @@ post_install() {
 grimshot_package() {
 	short_desc="Helper for screenshots within sway"
 	depends="grim slurp sway wl-clipboard jq libnotify"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/bin/grimshot
 		vmove usr/share/man/man1/grimshot.1
diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index 2f42b235c06..fea97464d88 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -2,7 +2,6 @@
 pkgname=synapse
 version=1.19.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jsonschema python3-frozendict python3-canonicaljson>=1.2.0
diff --git a/srcpkgs/syncplay/template b/srcpkgs/syncplay/template
index 83accc1983a..7c3239a484d 100644
--- a/srcpkgs/syncplay/template
+++ b/srcpkgs/syncplay/template
@@ -2,7 +2,6 @@
 pkgname=syncplay
 version=1.6.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/lib/syncplay/syncplay"
 depends="desktop-file-utils python3-pyside2 python3-Twisted
diff --git a/srcpkgs/syncthing-gtk/template b/srcpkgs/syncthing-gtk/template
index aaaa57a1c9e..f50ef18abb8 100644
--- a/srcpkgs/syncthing-gtk/template
+++ b/srcpkgs/syncthing-gtk/template
@@ -3,7 +3,6 @@ pkgname=syncthing-gtk
 reverts="0.14.36_1"
 version=0.9.4.4
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="syncthing python-dateutil libnotify librsvg python-bcrypt
diff --git a/srcpkgs/system-config-printer/template b/srcpkgs/system-config-printer/template
index c9fd88c7344..400e213b05e 100644
--- a/srcpkgs/system-config-printer/template
+++ b/srcpkgs/system-config-printer/template
@@ -20,7 +20,6 @@ distfiles="${homepage}/releases/download/${version}/system-config-printer-${vers
 checksum=ab4a4553f536487bf2be1143529749ed9926edd84bd97c2b42666a7111d60b7f
 
 python3-cupshelpers_package() {
-	archs=noarch
 	depends="python3-cups python3-dbus python3-requests"
 	short_desc="Python utility modules around the CUPS printing system"
 	pycompile_module="cupshelpers"
diff --git a/srcpkgs/t-prot/template b/srcpkgs/t-prot/template
index 96c7b10b41f..56123e4c6ba 100644
--- a/srcpkgs/t-prot/template
+++ b/srcpkgs/t-prot/template
@@ -5,7 +5,6 @@ revision=2
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD"
 depends="perl perl-Locale-gettext"
-archs=noarch
 homepage="http://www.escape.de/~tolot/mutt/"
 short_desc="TOFU protection - display filter for RFC822 messages"
 distfiles="http://www.escape.de/~tolot/mutt/t-prot/downloads/${pkgname}-${version}.tar.gz"
diff --git a/srcpkgs/t2ec/template b/srcpkgs/t2ec/template
index f90c7b2898c..5ad009c76ed 100644
--- a/srcpkgs/t2ec/template
+++ b/srcpkgs/t2ec/template
@@ -2,7 +2,6 @@
 pkgname=t2ec
 version=1.3
 revision=1
-archs=noarch
 depends="python3 acpi xbacklight alsa-utils wireless_tools wget jgmenu"
 short_desc="Scripts to display info icons and controls in Tint2 or other panels"
 maintainer="nwg-piotr <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/taisei/template b/srcpkgs/taisei/template
index e99bbc6f538..543044d052e 100644
--- a/srcpkgs/taisei/template
+++ b/srcpkgs/taisei/template
@@ -20,7 +20,6 @@ post_install() {
 
 taisei-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/taisei
 	}
diff --git a/srcpkgs/tango-icon-theme/template b/srcpkgs/tango-icon-theme/template
index 666bb9a533f..b0cc8257bc6 100644
--- a/srcpkgs/tango-icon-theme/template
+++ b/srcpkgs/tango-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=tango-icon-theme
 version=0.8.90
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="ImageMagick icon-naming-utils intltool pkg-config"
 makedepends="icon-naming-utils libmagick-devel"
diff --git a/srcpkgs/tcllib/template b/srcpkgs/tcllib/template
index a06f1295075..089c9fb4715 100644
--- a/srcpkgs/tcllib/template
+++ b/srcpkgs/tcllib/template
@@ -2,7 +2,6 @@
 pkgname=tcllib
 version=1.20
 revision=1
-archs=noarch
 wrksrc="tcllib-tcllib-${version/./-}"
 build_style=gnu-configure
 hostmakedepends="pkg-config tcl"
diff --git a/srcpkgs/tdrop/template b/srcpkgs/tdrop/template
index 9d454df944a..eccfdbef043 100644
--- a/srcpkgs/tdrop/template
+++ b/srcpkgs/tdrop/template
@@ -2,7 +2,6 @@
 pkgname=tdrop
 version=0.3.0
 revision=1
-archs=noarch
 depends="bash xdotool xprop xwininfo"
 short_desc="Turn terminal emulator or any program into dropdown window"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/tegaki-zinnia-japanese/template b/srcpkgs/tegaki-zinnia-japanese/template
index c6e9c64cef8..83766bce8d7 100644
--- a/srcpkgs/tegaki-zinnia-japanese/template
+++ b/srcpkgs/tegaki-zinnia-japanese/template
@@ -9,7 +9,6 @@ license="GPL-2"
 hostmakedepends="unzip"
 distfiles="https://github.com/tegaki/tegaki/releases/download/v0.3/${pkgname}-${version}.zip"
 checksum=07861bbb5440d74e705864721f12a5ce1c7f21a869f9c95ff21433d8994aafda
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/tegaki/models/zinnia
diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index bd60dcc57a6..1d3f6602f83 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -2,7 +2,6 @@
 pkgname=tekaim
 version=1.6.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="curl maim python3 xclip"
diff --git a/srcpkgs/telepathy-python/template b/srcpkgs/telepathy-python/template
index 41a0e0d03cb..f5e41c305e8 100644
--- a/srcpkgs/telepathy-python/template
+++ b/srcpkgs/telepathy-python/template
@@ -2,7 +2,6 @@
 pkgname=telepathy-python
 version=0.15.19
 revision=7
-archs=noarch
 build_style=gnu-configure
 pycompile_module="telepathy"
 hostmakedepends="automake python libxslt"
diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 83b1bca4edd..a7508ab0d78 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -2,7 +2,6 @@
 pkgname=telepresence
 version=0.105
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-pip python3-setuptools git"
 depends="kubectl fuse-sshfs torsocks openssh conntrack-tools iptables"
diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index d9efe27f2db..1431154fd64 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -2,7 +2,6 @@
 pkgname=termdown
 version=1.17.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-dateutil python3-click python3-pyfiglet"
diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index ba3fcfdc8d6..7867869fda7 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -2,7 +2,6 @@
 pkgname=terminal_markdown_viewer
 version=1.6.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mdv"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/terminator/template b/srcpkgs/terminator/template
index bc95ee7924b..1e0b9517f25 100644
--- a/srcpkgs/terminator/template
+++ b/srcpkgs/terminator/template
@@ -2,7 +2,6 @@
 pkgname=terminator
 version=1.91
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="terminatorlib"
 hostmakedepends="intltool python"
diff --git a/srcpkgs/terminus-font/template b/srcpkgs/terminus-font/template
index 4a296a8f0ce..8efc808c4b2 100644
--- a/srcpkgs/terminus-font/template
+++ b/srcpkgs/terminus-font/template
@@ -2,7 +2,6 @@
 pkgname=terminus-font
 version=4.48
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--x11dir=/usr/share/fonts/X11/misc
  --psfdir=/usr/share/kbd/consolefonts"
diff --git a/srcpkgs/termsyn-font/template b/srcpkgs/termsyn-font/template
index 2d6f574bda5..f59be231eb7 100644
--- a/srcpkgs/termsyn-font/template
+++ b/srcpkgs/termsyn-font/template
@@ -2,7 +2,6 @@
 pkgname=termsyn-font
 version=1.8.7
 revision=2
-archs=noarch
 wrksrc="termsyn-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/termtosvg/template b/srcpkgs/termtosvg/template
index 431d0945140..6c60000ecbe 100644
--- a/srcpkgs/termtosvg/template
+++ b/srcpkgs/termtosvg/template
@@ -2,7 +2,6 @@
 pkgname=termtosvg
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyte python3-lxml python3-wcwidth"
diff --git a/srcpkgs/tesseract-ocr/template b/srcpkgs/tesseract-ocr/template
index f0313da0ce6..8aa75de7ac9 100644
--- a/srcpkgs/tesseract-ocr/template
+++ b/srcpkgs/tesseract-ocr/template
@@ -108,7 +108,6 @@ tesseract-ocr-devel_package() {
 }
 tesseract-ocr-basic_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-all>=0"
@@ -120,7 +119,6 @@ tesseract-ocr-basic_package() {
 }
 tesseract-ocr-all_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-basic>=0"
@@ -143,7 +141,6 @@ tesseract-ocr-all_package() {
 	done
 }
 tesseract-ocr-afr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Afrikaans language data"
 	pkg_install() {
@@ -151,7 +148,6 @@ tesseract-ocr-afr_package() {
 	}
 }
 tesseract-ocr-amh_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Amharic language data"
 	pkg_install() {
@@ -159,7 +155,6 @@ tesseract-ocr-amh_package() {
 	}
 }
 tesseract-ocr-ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic language data"
 	pkg_install() {
@@ -167,7 +162,6 @@ tesseract-ocr-ara_package() {
 	}
 }
 tesseract-ocr-asm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Assamese language data"
 	pkg_install() {
@@ -175,7 +169,6 @@ tesseract-ocr-asm_package() {
 	}
 }
 tesseract-ocr-aze_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani language data"
 	pkg_install() {
@@ -183,7 +176,6 @@ tesseract-ocr-aze_package() {
 	}
 }
 tesseract-ocr-aze_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani (cyrillic) language data"
 	pkg_install() {
@@ -191,7 +183,6 @@ tesseract-ocr-aze_cyrl_package() {
 	}
 }
 tesseract-ocr-bel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Belarusian language data"
 	pkg_install() {
@@ -199,7 +190,6 @@ tesseract-ocr-bel_package() {
 	}
 }
 tesseract-ocr-ben_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali language data"
 	pkg_install() {
@@ -207,7 +197,6 @@ tesseract-ocr-ben_package() {
 	}
 }
 tesseract-ocr-bod_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan language data"
 	pkg_install() {
@@ -215,7 +204,6 @@ tesseract-ocr-bod_package() {
 	}
 }
 tesseract-ocr-bos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bosnian language data"
 	pkg_install() {
@@ -223,7 +211,6 @@ tesseract-ocr-bos_package() {
 	}
 }
 tesseract-ocr-bre_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Breton language data"
 	pkg_install() {
@@ -231,7 +218,6 @@ tesseract-ocr-bre_package() {
 	}
 }
 tesseract-ocr-bul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bulgarian language data"
 	pkg_install() {
@@ -239,7 +225,6 @@ tesseract-ocr-bul_package() {
 	}
 }
 tesseract-ocr-cat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Catalan language data"
 	pkg_install() {
@@ -247,7 +232,6 @@ tesseract-ocr-cat_package() {
 	}
 }
 tesseract-ocr-ceb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cebuano language data"
 	pkg_install() {
@@ -255,7 +239,6 @@ tesseract-ocr-ceb_package() {
 	}
 }
 tesseract-ocr-ces_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Czech language data"
 	pkg_install() {
@@ -263,7 +246,6 @@ tesseract-ocr-ces_package() {
 	}
 }
 tesseract-ocr-chi_sim_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Simplified) language data"
 	pkg_install() {
@@ -271,7 +253,6 @@ tesseract-ocr-chi_sim_package() {
 	}
 }
 tesseract-ocr-chi_tra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Traditional) language data"
 	pkg_install() {
@@ -279,7 +260,6 @@ tesseract-ocr-chi_tra_package() {
 	}
 }
 tesseract-ocr-chr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee language data"
 	pkg_install() {
@@ -287,7 +267,6 @@ tesseract-ocr-chr_package() {
 	}
 }
 tesseract-ocr-cos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Corsican language data"
 	pkg_install() {
@@ -295,7 +274,6 @@ tesseract-ocr-cos_package() {
 	}
 }
 tesseract-ocr-cym_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Welsh language data"
 	pkg_install() {
@@ -303,7 +281,6 @@ tesseract-ocr-cym_package() {
 	}
 }
 tesseract-ocr-dan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Danish language data"
 	pkg_install() {
@@ -311,7 +288,6 @@ tesseract-ocr-dan_package() {
 	}
 }
 tesseract-ocr-deu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - German language data"
 	pkg_install() {
@@ -319,7 +295,6 @@ tesseract-ocr-deu_package() {
 	}
 }
 tesseract-ocr-div_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dhivehi language data"
 	pkg_install() {
@@ -327,7 +302,6 @@ tesseract-ocr-div_package() {
 	}
 }
 tesseract-ocr-dzo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dzongkha language data"
 	pkg_install() {
@@ -335,7 +309,6 @@ tesseract-ocr-dzo_package() {
 	}
 }
 tesseract-ocr-ell_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek language data"
 	pkg_install() {
@@ -343,7 +316,6 @@ tesseract-ocr-ell_package() {
 	}
 }
 tesseract-ocr-eng_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - English language data"
 	pkg_install() {
@@ -351,7 +323,6 @@ tesseract-ocr-eng_package() {
 	}
 }
 tesseract-ocr-enm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle English (1100-1500) language data"
 	pkg_install() {
@@ -359,7 +330,6 @@ tesseract-ocr-enm_package() {
 	}
 }
 tesseract-ocr-epo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Esperanto language data"
 	pkg_install() {
@@ -367,7 +337,6 @@ tesseract-ocr-epo_package() {
 	}
 }
 tesseract-ocr-est_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Estonian language data"
 	pkg_install() {
@@ -375,7 +344,6 @@ tesseract-ocr-est_package() {
 	}
 }
 tesseract-ocr-eus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Basque language data"
 	pkg_install() {
@@ -383,7 +351,6 @@ tesseract-ocr-eus_package() {
 	}
 }
 tesseract-ocr-fao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Faroese language data"
 	pkg_install() {
@@ -391,7 +358,6 @@ tesseract-ocr-fao_package() {
 	}
 }
 tesseract-ocr-fas_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Persian language data"
 	pkg_install() {
@@ -399,7 +365,6 @@ tesseract-ocr-fas_package() {
 	}
 }
 tesseract-ocr-fil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Filipino language data"
 	pkg_install() {
@@ -407,7 +372,6 @@ tesseract-ocr-fil_package() {
 	}
 }
 tesseract-ocr-fin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Finnish language data"
 	pkg_install() {
@@ -415,7 +379,6 @@ tesseract-ocr-fin_package() {
 	}
 }
 tesseract-ocr-fra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - French language data"
 	pkg_install() {
@@ -423,7 +386,6 @@ tesseract-ocr-fra_package() {
 	}
 }
 tesseract-ocr-frk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frankish language data"
 	pkg_install() {
@@ -431,7 +393,6 @@ tesseract-ocr-frk_package() {
 	}
 }
 tesseract-ocr-frm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle French (ca. 1400-1600) language data"
 	pkg_install() {
@@ -439,7 +400,6 @@ tesseract-ocr-frm_package() {
 	}
 }
 tesseract-ocr-fry_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frisian language data"
 	pkg_install() {
@@ -447,7 +407,6 @@ tesseract-ocr-fry_package() {
 	}
 }
 tesseract-ocr-gla_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Scottish Gaelic language data"
 	pkg_install() {
@@ -455,7 +414,6 @@ tesseract-ocr-gla_package() {
 	}
 }
 tesseract-ocr-gle_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Irish language data"
 	pkg_install() {
@@ -463,7 +421,6 @@ tesseract-ocr-gle_package() {
 	}
 }
 tesseract-ocr-glg_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Galician language data"
 	pkg_install() {
@@ -471,7 +428,6 @@ tesseract-ocr-glg_package() {
 	}
 }
 tesseract-ocr-grc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ancient Greek Language data"
 	pkg_install() {
@@ -479,7 +435,6 @@ tesseract-ocr-grc_package() {
 	}
 }
 tesseract-ocr-guj_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati Language data"
 	pkg_install() {
@@ -487,7 +442,6 @@ tesseract-ocr-guj_package() {
 	}
 }
 tesseract-ocr-hat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Haitian language data"
 	pkg_install() {
@@ -495,7 +449,6 @@ tesseract-ocr-hat_package() {
 	}
 }
 tesseract-ocr-heb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew language data"
 	pkg_install() {
@@ -503,7 +456,6 @@ tesseract-ocr-heb_package() {
 	}
 }
 tesseract-ocr-hin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hindi language data"
 	pkg_install() {
@@ -511,7 +463,6 @@ tesseract-ocr-hin_package() {
 	}
 }
 tesseract-ocr-hrv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Croatian language data"
 	pkg_install() {
@@ -519,7 +470,6 @@ tesseract-ocr-hrv_package() {
 	}
 }
 tesseract-ocr-hun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hungarian language data"
 	pkg_install() {
@@ -527,7 +477,6 @@ tesseract-ocr-hun_package() {
 	}
 }
 tesseract-ocr-hye_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian language data"
 	pkg_install() {
@@ -535,7 +484,6 @@ tesseract-ocr-hye_package() {
 	}
 }
 tesseract-ocr-iku_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Inuktitut language data"
 	pkg_install() {
@@ -543,7 +491,6 @@ tesseract-ocr-iku_package() {
 	}
 }
 tesseract-ocr-ind_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Indonesian language data"
 	pkg_install() {
@@ -551,7 +498,6 @@ tesseract-ocr-ind_package() {
 	}
 }
 tesseract-ocr-isl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Icelandic language data"
 	pkg_install() {
@@ -559,7 +505,6 @@ tesseract-ocr-isl_package() {
 	}
 }
 tesseract-ocr-ita_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian language data"
 	pkg_install() {
@@ -567,7 +512,6 @@ tesseract-ocr-ita_package() {
 	}
 }
 tesseract-ocr-ita_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian (Old) language data"
 	pkg_install() {
@@ -575,7 +519,6 @@ tesseract-ocr-ita_old_package() {
 	}
 }
 tesseract-ocr-jav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Javanese language data"
 	pkg_install() {
@@ -583,7 +526,6 @@ tesseract-ocr-jav_package() {
 	}
 }
 tesseract-ocr-jpn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese language data"
 	pkg_install() {
@@ -591,7 +533,6 @@ tesseract-ocr-jpn_package() {
 	}
 }
 tesseract-ocr-kan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada language data"
 	pkg_install() {
@@ -599,7 +540,6 @@ tesseract-ocr-kan_package() {
 	}
 }
 tesseract-ocr-kat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian language data"
 	pkg_install() {
@@ -607,7 +547,6 @@ tesseract-ocr-kat_package() {
 	}
 }
 tesseract-ocr-kat_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian (old) language data"
 	pkg_install() {
@@ -615,7 +554,6 @@ tesseract-ocr-kat_old_package() {
 	}
 }
 tesseract-ocr-kaz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kazakh language data"
 	pkg_install() {
@@ -623,7 +561,6 @@ tesseract-ocr-kaz_package() {
 	}
 }
 tesseract-ocr-khm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Central Khmer language data"
 	pkg_install() {
@@ -631,7 +568,6 @@ tesseract-ocr-khm_package() {
 	}
 }
 tesseract-ocr-kir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kirghiz language data"
 	pkg_install() {
@@ -639,7 +575,6 @@ tesseract-ocr-kir_package() {
 	}
 }
 tesseract-ocr-kor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Korean language data"
 	pkg_install() {
@@ -647,7 +582,6 @@ tesseract-ocr-kor_package() {
 	}
 }
 tesseract-ocr-kur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish language data"
 	pkg_install() {
@@ -655,7 +589,6 @@ tesseract-ocr-kur_package() {
 	}
 }
 tesseract-ocr-kur_ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish (Arabic) language data"
 	pkg_install() {
@@ -663,7 +596,6 @@ tesseract-ocr-kur_ara_package() {
 	}
 }
 tesseract-ocr-lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao language data"
 	pkg_install() {
@@ -671,7 +603,6 @@ tesseract-ocr-lao_package() {
 	}
 }
 tesseract-ocr-lat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin language data"
 	pkg_install() {
@@ -679,7 +610,6 @@ tesseract-ocr-lat_package() {
 	}
 }
 tesseract-ocr-lav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latvian language data"
 	pkg_install() {
@@ -687,7 +617,6 @@ tesseract-ocr-lav_package() {
 	}
 }
 tesseract-ocr-lit_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lithuanian language data"
 	pkg_install() {
@@ -695,7 +624,6 @@ tesseract-ocr-lit_package() {
 	}
 }
 tesseract-ocr-ltz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Luxembourgish language data"
 	pkg_install() {
@@ -703,7 +631,6 @@ tesseract-ocr-ltz_package() {
 	}
 }
 tesseract-ocr-mal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam language data"
 	pkg_install() {
@@ -711,7 +638,6 @@ tesseract-ocr-mal_package() {
 	}
 }
 tesseract-ocr-mar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Marathi language data"
 	pkg_install() {
@@ -719,7 +645,6 @@ tesseract-ocr-mar_package() {
 	}
 }
 tesseract-ocr-mkd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Macedonian language data"
 	pkg_install() {
@@ -727,7 +652,6 @@ tesseract-ocr-mkd_package() {
 	}
 }
 tesseract-ocr-mlt_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maltese language data"
 	pkg_install() {
@@ -735,7 +659,6 @@ tesseract-ocr-mlt_package() {
 	}
 }
 tesseract-ocr-mon_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Mongolian language data"
 	pkg_install() {
@@ -743,7 +666,6 @@ tesseract-ocr-mon_package() {
 	}
 }
 tesseract-ocr-mri_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maori language data"
 	pkg_install() {
@@ -751,7 +673,6 @@ tesseract-ocr-mri_package() {
 	}
 }
 tesseract-ocr-msa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malay language data"
 	pkg_install() {
@@ -759,7 +680,6 @@ tesseract-ocr-msa_package() {
 	}
 }
 tesseract-ocr-mya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Burmese language data"
 	pkg_install() {
@@ -767,7 +687,6 @@ tesseract-ocr-mya_package() {
 	}
 }
 tesseract-ocr-nep_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Nepalese language data"
 	pkg_install() {
@@ -775,7 +694,6 @@ tesseract-ocr-nep_package() {
 	}
 }
 tesseract-ocr-nld_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dutch language data"
 	pkg_install() {
@@ -783,7 +701,6 @@ tesseract-ocr-nld_package() {
 	}
 }
 tesseract-ocr-nor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Norwegian language data"
 	pkg_install() {
@@ -791,7 +708,6 @@ tesseract-ocr-nor_package() {
 	}
 }
 tesseract-ocr-oci_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Occitan (post 1500) language data"
 	pkg_install() {
@@ -799,7 +715,6 @@ tesseract-ocr-oci_package() {
 	}
 }
 tesseract-ocr-ori_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya language data"
 	pkg_install() {
@@ -807,7 +722,6 @@ tesseract-ocr-ori_package() {
 	}
 }
 tesseract-ocr-pan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Panjabi language data"
 	pkg_install() {
@@ -815,7 +729,6 @@ tesseract-ocr-pan_package() {
 	}
 }
 tesseract-ocr-pol_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Polish language data"
 	pkg_install() {
@@ -823,7 +736,6 @@ tesseract-ocr-pol_package() {
 	}
 }
 tesseract-ocr-por_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Portuguese language data"
 	pkg_install() {
@@ -831,7 +743,6 @@ tesseract-ocr-por_package() {
 	}
 }
 tesseract-ocr-pus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Pushto language data"
 	pkg_install() {
@@ -839,7 +750,6 @@ tesseract-ocr-pus_package() {
 	}
 }
 tesseract-ocr-que_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Quechua language data"
 	pkg_install() {
@@ -847,7 +757,6 @@ tesseract-ocr-que_package() {
 	}
 }
 tesseract-ocr-ron_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Romanian language data"
 	pkg_install() {
@@ -855,7 +764,6 @@ tesseract-ocr-ron_package() {
 	}
 }
 tesseract-ocr-rus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Russian language data"
 	pkg_install() {
@@ -863,7 +771,6 @@ tesseract-ocr-rus_package() {
 	}
 }
 tesseract-ocr-san_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sanskrit language data"
 	pkg_install() {
@@ -871,7 +778,6 @@ tesseract-ocr-san_package() {
 	}
 }
 tesseract-ocr-sin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala language data"
 	pkg_install() {
@@ -879,7 +785,6 @@ tesseract-ocr-sin_package() {
 	}
 }
 tesseract-ocr-slk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovakian language data"
 	pkg_install() {
@@ -887,7 +792,6 @@ tesseract-ocr-slk_package() {
 	}
 }
 tesseract-ocr-slv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovenian language data"
 	pkg_install() {
@@ -895,7 +799,6 @@ tesseract-ocr-slv_package() {
 	}
 }
 tesseract-ocr-snd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sindhi language data"
 	pkg_install() {
@@ -903,7 +806,6 @@ tesseract-ocr-snd_package() {
 	}
 }
 tesseract-ocr-spa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish language data"
 	pkg_install() {
@@ -911,7 +813,6 @@ tesseract-ocr-spa_package() {
 	}
 }
 tesseract-ocr-spa_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish (Old) language data"
 	pkg_install() {
@@ -919,7 +820,6 @@ tesseract-ocr-spa_old_package() {
 	}
 }
 tesseract-ocr-sqi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Albanian language data"
 	pkg_install() {
@@ -927,7 +827,6 @@ tesseract-ocr-sqi_package() {
 	}
 }
 tesseract-ocr-srp_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian language data"
 	pkg_install() {
@@ -935,7 +834,6 @@ tesseract-ocr-srp_package() {
 	}
 }
 tesseract-ocr-srp_latn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian (Latin) language data"
 	pkg_install() {
@@ -943,7 +841,6 @@ tesseract-ocr-srp_latn_package() {
 	}
 }
 tesseract-ocr-sun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sundanese language data"
 	pkg_install() {
@@ -951,7 +848,6 @@ tesseract-ocr-sun_package() {
 	}
 }
 tesseract-ocr-swa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swahili language data"
 	pkg_install() {
@@ -959,7 +855,6 @@ tesseract-ocr-swa_package() {
 	}
 }
 tesseract-ocr-swe_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swedish language data"
 	pkg_install() {
@@ -967,7 +862,6 @@ tesseract-ocr-swe_package() {
 	}
 }
 tesseract-ocr-syr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac language data"
 	pkg_install() {
@@ -975,7 +869,6 @@ tesseract-ocr-syr_package() {
 	}
 }
 tesseract-ocr-tam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil language data"
 	pkg_install() {
@@ -983,7 +876,6 @@ tesseract-ocr-tam_package() {
 	}
 }
 tesseract-ocr-tat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tatar language data"
 	pkg_install() {
@@ -991,7 +883,6 @@ tesseract-ocr-tat_package() {
 	}
 }
 tesseract-ocr-tel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu language data"
 	pkg_install() {
@@ -999,7 +890,6 @@ tesseract-ocr-tel_package() {
 	}
 }
 tesseract-ocr-tgk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tajik language data"
 	pkg_install() {
@@ -1007,7 +897,6 @@ tesseract-ocr-tgk_package() {
 	}
 }
 tesseract-ocr-tgl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tagalog language data"
 	pkg_install() {
@@ -1015,7 +904,6 @@ tesseract-ocr-tgl_package() {
 	}
 }
 tesseract-ocr-tha_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai language data"
 	pkg_install() {
@@ -1023,7 +911,6 @@ tesseract-ocr-tha_package() {
 	}
 }
 tesseract-ocr-tir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tigrinya language data"
 	pkg_install() {
@@ -1031,7 +918,6 @@ tesseract-ocr-tir_package() {
 	}
 }
 tesseract-ocr-ton_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tonga language data"
 	pkg_install() {
@@ -1039,7 +925,6 @@ tesseract-ocr-ton_package() {
 	}
 }
 tesseract-ocr-tur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Turkish language data"
 	pkg_install() {
@@ -1047,7 +932,6 @@ tesseract-ocr-tur_package() {
 	}
 }
 tesseract-ocr-uig_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uighur language data"
 	pkg_install() {
@@ -1055,7 +939,6 @@ tesseract-ocr-uig_package() {
 	}
 }
 tesseract-ocr-ukr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ukrainian language data"
 	pkg_install() {
@@ -1063,7 +946,6 @@ tesseract-ocr-ukr_package() {
 	}
 }
 tesseract-ocr-urd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Urdu language data"
 	pkg_install() {
@@ -1071,7 +953,6 @@ tesseract-ocr-urd_package() {
 	}
 }
 tesseract-ocr-uzb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek language data"
 	pkg_install() {
@@ -1079,7 +960,6 @@ tesseract-ocr-uzb_package() {
 	}
 }
 tesseract-ocr-uzb_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek (Cyrillic) language data"
 	pkg_install() {
@@ -1087,7 +967,6 @@ tesseract-ocr-uzb_cyrl_package() {
 	}
 }
 tesseract-ocr-vie_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese language data"
 	pkg_install() {
@@ -1095,7 +974,6 @@ tesseract-ocr-vie_package() {
 	}
 }
 tesseract-ocr-yid_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yiddish language data"
 	pkg_install() {
@@ -1103,7 +981,6 @@ tesseract-ocr-yid_package() {
 	}
 }
 tesseract-ocr-yor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yoruba language data"
 	pkg_install() {
@@ -1111,7 +988,6 @@ tesseract-ocr-yor_package() {
 	}
 }
 tesseract-ocr-script-Arabic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic script data"
 	pkg_install() {
@@ -1119,7 +995,6 @@ tesseract-ocr-script-Arabic_package() {
 	}
 }
 tesseract-ocr-script-Armenian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian script data"
 	pkg_install() {
@@ -1127,7 +1002,6 @@ tesseract-ocr-script-Armenian_package() {
 	}
 }
 tesseract-ocr-script-Bengali_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali script data"
 	pkg_install() {
@@ -1135,7 +1009,6 @@ tesseract-ocr-script-Bengali_package() {
 	}
 }
 tesseract-ocr-script-Canadian_Aboriginal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Canadian Aboriginal script data"
 	pkg_install() {
@@ -1143,7 +1016,6 @@ tesseract-ocr-script-Canadian_Aboriginal_package() {
 	}
 }
 tesseract-ocr-script-Cherokee_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee script data"
 	pkg_install() {
@@ -1151,7 +1023,6 @@ tesseract-ocr-script-Cherokee_package() {
 	}
 }
 tesseract-ocr-script-Cyrillic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cyrillic script data"
 	pkg_install() {
@@ -1159,7 +1030,6 @@ tesseract-ocr-script-Cyrillic_package() {
 	}
 }
 tesseract-ocr-script-Devanagari_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Devanagari script data"
 	pkg_install() {
@@ -1167,7 +1037,6 @@ tesseract-ocr-script-Devanagari_package() {
 	}
 }
 tesseract-ocr-script-Ethiopic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ethiopic script data"
 	pkg_install() {
@@ -1175,7 +1044,6 @@ tesseract-ocr-script-Ethiopic_package() {
 	}
 }
 tesseract-ocr-script-Fraktur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Fraktur script data"
 	pkg_install() {
@@ -1183,7 +1051,6 @@ tesseract-ocr-script-Fraktur_package() {
 	}
 }
 tesseract-ocr-script-Georgian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian script data"
 	pkg_install() {
@@ -1191,7 +1058,6 @@ tesseract-ocr-script-Georgian_package() {
 	}
 }
 tesseract-ocr-script-Greek_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek script data"
 	pkg_install() {
@@ -1199,7 +1065,6 @@ tesseract-ocr-script-Greek_package() {
 	}
 }
 tesseract-ocr-script-Gujarati_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati script data"
 	pkg_install() {
@@ -1207,7 +1072,6 @@ tesseract-ocr-script-Gujarati_package() {
 	}
 }
 tesseract-ocr-script-Gurmukhi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gurmukhi script data"
 	pkg_install() {
@@ -1215,7 +1079,6 @@ tesseract-ocr-script-Gurmukhi_package() {
 	}
 }
 tesseract-ocr-script-HanS_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanS script data"
 	pkg_install() {
@@ -1223,7 +1086,6 @@ tesseract-ocr-script-HanS_package() {
 	}
 }
 tesseract-ocr-script-HanT_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanT script data"
 	pkg_install() {
@@ -1231,7 +1093,6 @@ tesseract-ocr-script-HanT_package() {
 	}
 }
 tesseract-ocr-script-Hangul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hangul script data"
 	pkg_install() {
@@ -1239,7 +1100,6 @@ tesseract-ocr-script-Hangul_package() {
 	}
 }
 tesseract-ocr-script-Hebrew_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew script data"
 	pkg_install() {
@@ -1247,7 +1107,6 @@ tesseract-ocr-script-Hebrew_package() {
 	}
 }
 tesseract-ocr-script-Japanese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese script data"
 	pkg_install() {
@@ -1255,7 +1114,6 @@ tesseract-ocr-script-Japanese_package() {
 	}
 }
 tesseract-ocr-script-Kannada_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada script data"
 	pkg_install() {
@@ -1263,7 +1121,6 @@ tesseract-ocr-script-Kannada_package() {
 	}
 }
 tesseract-ocr-script-Khmer_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Khmer script data"
 	pkg_install() {
@@ -1271,7 +1128,6 @@ tesseract-ocr-script-Khmer_package() {
 	}
 }
 tesseract-ocr-script-Lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao script data"
 	pkg_install() {
@@ -1279,7 +1135,6 @@ tesseract-ocr-script-Lao_package() {
 	}
 }
 tesseract-ocr-script-Latin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin script data"
 	pkg_install() {
@@ -1287,7 +1142,6 @@ tesseract-ocr-script-Latin_package() {
 	}
 }
 tesseract-ocr-script-Malayalam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam script data"
 	pkg_install() {
@@ -1295,7 +1149,6 @@ tesseract-ocr-script-Malayalam_package() {
 	}
 }
 tesseract-ocr-script-Myanmar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Myanmar script data"
 	pkg_install() {
@@ -1303,7 +1156,6 @@ tesseract-ocr-script-Myanmar_package() {
 	}
 }
 tesseract-ocr-script-Oriya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya script data"
 	pkg_install() {
@@ -1311,7 +1163,6 @@ tesseract-ocr-script-Oriya_package() {
 	}
 }
 tesseract-ocr-script-Sinhala_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala script data"
 	pkg_install() {
@@ -1319,7 +1170,6 @@ tesseract-ocr-script-Sinhala_package() {
 	}
 }
 tesseract-ocr-script-Syriac_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac script data"
 	pkg_install() {
@@ -1327,7 +1177,6 @@ tesseract-ocr-script-Syriac_package() {
 	}
 }
 tesseract-ocr-script-Tamil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil script data"
 	pkg_install() {
@@ -1335,7 +1184,6 @@ tesseract-ocr-script-Tamil_package() {
 	}
 }
 tesseract-ocr-script-Telugu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu script data"
 	pkg_install() {
@@ -1343,7 +1191,6 @@ tesseract-ocr-script-Telugu_package() {
 	}
 }
 tesseract-ocr-script-Thaana_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thaana script data"
 	pkg_install() {
@@ -1351,7 +1198,6 @@ tesseract-ocr-script-Thaana_package() {
 	}
 }
 tesseract-ocr-script-Thai_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai script data"
 	pkg_install() {
@@ -1359,7 +1205,6 @@ tesseract-ocr-script-Thai_package() {
 	}
 }
 tesseract-ocr-script-Tibetan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan script data"
 	pkg_install() {
@@ -1367,7 +1212,6 @@ tesseract-ocr-script-Tibetan_package() {
 	}
 }
 tesseract-ocr-script-Vietnamese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese script data"
 	pkg_install() {
diff --git a/srcpkgs/testssl.sh/template b/srcpkgs/testssl.sh/template
index 2480aa2bce2..493fac73a21 100644
--- a/srcpkgs/testssl.sh/template
+++ b/srcpkgs/testssl.sh/template
@@ -2,7 +2,6 @@
 pkgname=testssl.sh
 version=3.0.2
 revision=1
-archs=noarch
 depends="libressl bind-utils"
 short_desc="Command line tool which checks a server for the support of TLS/SSL"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/tewi-font/template b/srcpkgs/tewi-font/template
index 49e301745d3..4ce6b7c79a1 100644
--- a/srcpkgs/tewi-font/template
+++ b/srcpkgs/tewi-font/template
@@ -2,7 +2,6 @@
 pkgname=tewi-font
 version=2.0.2
 revision=2
-archs=noarch
 hostmakedepends="bdftopcf python3"
 depends="font-util xbps-triggers"
 short_desc="Programming monospace bitmap font"
diff --git a/srcpkgs/texi2html/template b/srcpkgs/texi2html/template
index 9726abd7e4d..7fb2c48e317 100644
--- a/srcpkgs/texi2html/template
+++ b/srcpkgs/texi2html/template
@@ -2,7 +2,6 @@
 pkgname=texi2html
 version=5.0
 revision=1
-archs=noarch
 build_style="gnu-configure"
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/texlive-basic/template b/srcpkgs/texlive-basic/template
index 52fbfee52a3..e04c946eb94 100644
--- a/srcpkgs/texlive-basic/template
+++ b/srcpkgs/texlive-basic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-basic
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-bibtexextra/template b/srcpkgs/texlive-bibtexextra/template
index e5954e1c364..1f159c9846c 100644
--- a/srcpkgs/texlive-bibtexextra/template
+++ b/srcpkgs/texlive-bibtexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-bibtexextra
 version=2020.55376
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional BibTeX styles and bibliography databases"
diff --git a/srcpkgs/texlive-core/template b/srcpkgs/texlive-core/template
index 694c8bcb3d0..d5d5c0fa530 100644
--- a/srcpkgs/texlive-core/template
+++ b/srcpkgs/texlive-core/template
@@ -2,7 +2,6 @@
 pkgname=texlive-core
 version=2020.55416
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - core texmf distribution"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-fontsextra/template b/srcpkgs/texlive-fontsextra/template
index a80ea7cd234..f7df53cab6f 100644
--- a/srcpkgs/texlive-fontsextra/template
+++ b/srcpkgs/texlive-fontsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-fontsextra
 version=2020.55407
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - All sorts of extra fonts"
diff --git a/srcpkgs/texlive-formatsextra/template b/srcpkgs/texlive-formatsextra/template
index 85704c43687..d38d08aa8c4 100644
--- a/srcpkgs/texlive-formatsextra/template
+++ b/srcpkgs/texlive-formatsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-formatsextra
 version=2020.54498
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Collection of extra TeX 'formats'"
diff --git a/srcpkgs/texlive-full/template b/srcpkgs/texlive-full/template
index d6e1c127e0c..249f34ffc48 100644
--- a/srcpkgs/texlive-full/template
+++ b/srcpkgs/texlive-full/template
@@ -2,7 +2,6 @@
 pkgname=texlive-full
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-most>=2020
  texlive-lang>=2020"
diff --git a/srcpkgs/texlive-games/template b/srcpkgs/texlive-games/template
index d5a8209c893..463ef3f8267 100644
--- a/srcpkgs/texlive-games/template
+++ b/srcpkgs/texlive-games/template
@@ -2,7 +2,6 @@
 pkgname=texlive-games
 version=2020.55271
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting board games"
diff --git a/srcpkgs/texlive-humanities/template b/srcpkgs/texlive-humanities/template
index e1b06eacfd4..9c08fa051d8 100644
--- a/srcpkgs/texlive-humanities/template
+++ b/srcpkgs/texlive-humanities/template
@@ -2,7 +2,6 @@
 pkgname=texlive-humanities
 version=2020.55389
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra texlive-pictures"
 short_desc="TeX Live - Packages for humanities, law, linguistics, etc"
diff --git a/srcpkgs/texlive-lang/template b/srcpkgs/texlive-lang/template
index 11469a71bf2..5a33e9cb289 100644
--- a/srcpkgs/texlive-lang/template
+++ b/srcpkgs/texlive-lang/template
@@ -2,7 +2,6 @@
 pkgname=texlive-lang
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-core>=2020.55416
  texlive-langchinese>=2020.55162
diff --git a/srcpkgs/texlive-langchinese/template b/srcpkgs/texlive-langchinese/template
index 4fa5ee940eb..81301b1aa92 100644
--- a/srcpkgs/texlive-langchinese/template
+++ b/srcpkgs/texlive-langchinese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langchinese
 version=2020.55162
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Chinese"
diff --git a/srcpkgs/texlive-langcyrillic/template b/srcpkgs/texlive-langcyrillic/template
index 80b953954c5..6e351e93600 100644
--- a/srcpkgs/texlive-langcyrillic/template
+++ b/srcpkgs/texlive-langcyrillic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langcyrillic
 version=2020.54594
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Cyrillic text"
diff --git a/srcpkgs/texlive-langextra/template b/srcpkgs/texlive-langextra/template
index ac20ff46333..2cfe79bdcb5 100644
--- a/srcpkgs/texlive-langextra/template
+++ b/srcpkgs/texlive-langextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langextra
 version=2020.55417
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra"
 short_desc="TeX Live - Packages for a bunch of extra languages"
diff --git a/srcpkgs/texlive-langgreek/template b/srcpkgs/texlive-langgreek/template
index fe279f6ea13..9c45215780f 100644
--- a/srcpkgs/texlive-langgreek/template
+++ b/srcpkgs/texlive-langgreek/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langgreek
 version=2020.54512
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Greek"
diff --git a/srcpkgs/texlive-langjapanese/template b/srcpkgs/texlive-langjapanese/template
index cd10461aea0..3beac842576 100644
--- a/srcpkgs/texlive-langjapanese/template
+++ b/srcpkgs/texlive-langjapanese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langjapanese
 version=2020.55320
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Japanese"
diff --git a/srcpkgs/texlive-langkorean/template b/srcpkgs/texlive-langkorean/template
index 281ac6c1864..cec6361c8f7 100644
--- a/srcpkgs/texlive-langkorean/template
+++ b/srcpkgs/texlive-langkorean/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langkorean
 version=2020.54519
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Korean"
diff --git a/srcpkgs/texlive-latexextra/template b/srcpkgs/texlive-latexextra/template
index 6e393f78f8d..d7b9bc0dd5c 100644
--- a/srcpkgs/texlive-latexextra/template
+++ b/srcpkgs/texlive-latexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-latexextra
 version=2020.55418
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="perl-File-Which python3-Pygments texlive-core texlive-pictures"
 short_desc="TeX Live - Collection of LaTeX addon packages"
diff --git a/srcpkgs/texlive-minimal/template b/srcpkgs/texlive-minimal/template
index c71ac097c6a..62dca76c0de 100644
--- a/srcpkgs/texlive-minimal/template
+++ b/srcpkgs/texlive-minimal/template
@@ -2,7 +2,6 @@
 pkgname=texlive-minimal
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-core>=2020.55416"
diff --git a/srcpkgs/texlive-most/template b/srcpkgs/texlive-most/template
index 408fe2f9de5..bc62b2a5667 100644
--- a/srcpkgs/texlive-most/template
+++ b/srcpkgs/texlive-most/template
@@ -2,7 +2,6 @@
 pkgname=texlive-most
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-music/template b/srcpkgs/texlive-music/template
index b8a2488a15d..b0f8c9f7546 100644
--- a/srcpkgs/texlive-music/template
+++ b/srcpkgs/texlive-music/template
@@ -2,7 +2,6 @@
 pkgname=texlive-music
 version=2020.54758
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="fontforge python3 texlive-core"
 short_desc="TeX Live - Music typesetting packages"
diff --git a/srcpkgs/texlive-pictures/template b/srcpkgs/texlive-pictures/template
index dee8054f190..24da6c2ea0a 100644
--- a/srcpkgs/texlive-pictures/template
+++ b/srcpkgs/texlive-pictures/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pictures
 version=2020.55342
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Packages for drawing graphics"
diff --git a/srcpkgs/texlive-pstricks/template b/srcpkgs/texlive-pstricks/template
index c76855241de..71103d1b1ee 100644
--- a/srcpkgs/texlive-pstricks/template
+++ b/srcpkgs/texlive-pstricks/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pstricks
 version=2020.55289
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional PSTricks packages"
diff --git a/srcpkgs/texlive-publishers/template b/srcpkgs/texlive-publishers/template
index 1e5f646ccf7..cd2e983a9ca 100644
--- a/srcpkgs/texlive-publishers/template
+++ b/srcpkgs/texlive-publishers/template
@@ -2,7 +2,6 @@
 pkgname=texlive-publishers
 version=2020.55415
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - Classes and packages for certain publishers"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-science/template b/srcpkgs/texlive-science/template
index 68f358537f7..093e2564709 100644
--- a/srcpkgs/texlive-science/template
+++ b/srcpkgs/texlive-science/template
@@ -2,7 +2,6 @@
 pkgname=texlive-science
 version=2020.55390
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting for mathematatics and science disciplines"
diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 708971811d3..5dc0263184b 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -2,7 +2,6 @@
 pkgname=thefuck
 version=3.29
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/thinkpad-scripts/template b/srcpkgs/thinkpad-scripts/template
index 855d42492fb..9d283afe28a 100644
--- a/srcpkgs/thinkpad-scripts/template
+++ b/srcpkgs/thinkpad-scripts/template
@@ -2,7 +2,6 @@
 pkgname=thinkpad-scripts
 version=4.12.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="tps"
 hostmakedepends="gettext python3-setuptools"
diff --git a/srcpkgs/tlp/template b/srcpkgs/tlp/template
index 5b2496afefe..b9ccfcb4614 100644
--- a/srcpkgs/tlp/template
+++ b/srcpkgs/tlp/template
@@ -2,7 +2,6 @@
 pkgname=tlp
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="TLP-${version}"
 depends="hdparm bash iw util-linux ethtool perl"
 short_desc="Advanced power management tool for Linux"
@@ -39,7 +38,6 @@ do_install() {
 
 tlp-rdw_package() {
 	short_desc="Control the radio device wizard"
-	archs=noarch
 	depends="tlp NetworkManager"
 	pkg_install() {
 		vmove usr/bin/tlp-rdw
diff --git a/srcpkgs/tmux-xpanes/template b/srcpkgs/tmux-xpanes/template
index b01bffc32c6..1499c4eca3a 100644
--- a/srcpkgs/tmux-xpanes/template
+++ b/srcpkgs/tmux-xpanes/template
@@ -2,7 +2,6 @@
 pkgname=tmux-xpanes
 version=4.1.2
 revision=1
-archs=noarch
 short_desc="Awesome way to create multiple tmux panes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="MIT"
diff --git a/srcpkgs/tmuxc/template b/srcpkgs/tmuxc/template
index 7eeffc8c64c..b18a9446d7f 100644
--- a/srcpkgs/tmuxc/template
+++ b/srcpkgs/tmuxc/template
@@ -2,7 +2,6 @@
 pkgname=tmuxc
 version=1.7.1
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Local and remote tmux window manager"
 maintainer="Zach Dykstra <dykstra.zachary@gmail.com>"
diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 676412b8d0b..8903b8ad3d6 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -2,7 +2,6 @@
 pkgname=todoman
 version=3.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="todoman"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index e3754e566d1..b614799e0ab 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -2,7 +2,6 @@
 pkgname=toot
 version=0.27.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-requests python3-setuptools python3-wcwidth
diff --git a/srcpkgs/tpm/template b/srcpkgs/tpm/template
index f3c68898e70..7e2ad566087 100644
--- a/srcpkgs/tpm/template
+++ b/srcpkgs/tpm/template
@@ -2,7 +2,6 @@
 pkgname=tpm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="gnupg2"
diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 32f4977ac46..967f7ffc3a6 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -2,7 +2,6 @@
 pkgname=trackma
 version=0.8.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-urwid python3-gobject"
diff --git a/srcpkgs/treeline/template b/srcpkgs/treeline/template
index f8830179127..d7ec815d9c9 100644
--- a/srcpkgs/treeline/template
+++ b/srcpkgs/treeline/template
@@ -2,7 +2,6 @@
 pkgname=treeline
 version=3.1.3
 revision=1
-archs=noarch
 wrksrc="TreeLine-${version}"
 pycompile_dirs="usr/share/treeline"
 hostmakedepends="python3"
diff --git a/srcpkgs/tremc/template b/srcpkgs/tremc/template
index 8bba9b83fd1..a47e023c000 100644
--- a/srcpkgs/tremc/template
+++ b/srcpkgs/tremc/template
@@ -2,7 +2,6 @@
 pkgname=tremc
 version=0.9.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3"
 short_desc="Console client for the BitTorrent client Transmission"
diff --git a/srcpkgs/trident-icons/template b/srcpkgs/trident-icons/template
index a446b5418f1..236c488866f 100644
--- a/srcpkgs/trident-icons/template
+++ b/srcpkgs/trident-icons/template
@@ -2,7 +2,6 @@
 pkgname=trident-icons
 version=2020.03.27
 revision=1
-archs=noarch
 short_desc="Icon themes from Project Trident"
 maintainer="Ken Moore <ken@project-trident.org>"
 license="MIT,GPL-3.0-only"
diff --git a/srcpkgs/triehash/template b/srcpkgs/triehash/template
index 0c7ea1ae50e..6de5e09ced8 100644
--- a/srcpkgs/triehash/template
+++ b/srcpkgs/triehash/template
@@ -2,7 +2,6 @@
 pkgname=triehash
 version=0.3
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Generator for order-preserving minimal perfect hash functions"
 maintainer="mobinmob <mobinmob@disroot.org>"
diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index cd18ec521b8..605e8ab747c 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -2,7 +2,6 @@
 pkgname=tryton
 version=5.4.2
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="tryton"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/ttf-bitstream-vera/template b/srcpkgs/ttf-bitstream-vera/template
index 5e97f056bd0..bcd09ea572b 100644
--- a/srcpkgs/ttf-bitstream-vera/template
+++ b/srcpkgs/ttf-bitstream-vera/template
@@ -2,7 +2,6 @@
 pkgname=ttf-bitstream-vera
 version=1.10
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="Bitstream Vera fonts"
 maintainer="human <human@neet.fi>"
diff --git a/srcpkgs/ttf-material-icons/template b/srcpkgs/ttf-material-icons/template
index 51a2409a66d..aa9610410ce 100644
--- a/srcpkgs/ttf-material-icons/template
+++ b/srcpkgs/ttf-material-icons/template
@@ -3,7 +3,6 @@ pkgname=ttf-material-icons
 version=3.0.1
 revision=2
 wrksrc=material-design-icons-${version}
-archs=noarch
 short_desc="Material Design icons by Google"
 maintainer="Michael Carlberg <c@rlberg.se>"
 license=CC
diff --git a/srcpkgs/ttf-ubuntu-font-family/template b/srcpkgs/ttf-ubuntu-font-family/template
index 75d5ac88c83..e5af168fe51 100644
--- a/srcpkgs/ttf-ubuntu-font-family/template
+++ b/srcpkgs/ttf-ubuntu-font-family/template
@@ -2,7 +2,6 @@
 pkgname=ttf-ubuntu-font-family
 version=0.83
 revision=2
-archs=noarch
 wrksrc="ubuntu-font-family-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 132d5a5cd3c..2340955960e 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -2,7 +2,6 @@
 pkgname=tuimoji
 version=1.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index 5d45f9f647c..edc2a9ca22b 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -2,7 +2,6 @@
 pkgname=tuir
 version=1.29.0
 revision=2
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 rtv_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc="Simple terminal viewer for Reddit (transitional dummy package)"
diff --git a/srcpkgs/turses/template b/srcpkgs/turses/template
index e5d2e11c97a..4fb893c86a7 100644
--- a/srcpkgs/turses/template
+++ b/srcpkgs/turses/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="https://pypi.org/project/turses/"
 distfiles="${PYPI_SITE}/t/turses/turses-${version}.tar.gz"
 checksum=46a61541d1acd1338561a198b3011081b91f118415c08b111444cdb24685b396
-archs=noarch
 
 pre_build() {
 	# The package isn't updated for a time and the dependencies have been updated
diff --git a/srcpkgs/tuxpaint-stamps/template b/srcpkgs/tuxpaint-stamps/template
index 2602dfbc666..ae5188f0d6c 100644
--- a/srcpkgs/tuxpaint-stamps/template
+++ b/srcpkgs/tuxpaint-stamps/template
@@ -2,7 +2,6 @@
 pkgname=tuxpaint-stamps
 version=2020.05.29
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_target="install-all"
 short_desc="Stamps set for tuxpaint"
diff --git a/srcpkgs/tuxpaint/template b/srcpkgs/tuxpaint/template
index 6613a1191f3..3ef250ee0e0 100644
--- a/srcpkgs/tuxpaint/template
+++ b/srcpkgs/tuxpaint/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 tuxpaint-data_package() {
-	archs=noarch
 	short_desc="${short_desc} - data and docs"
 	python_version=2
 	pkg_install() {
diff --git a/srcpkgs/tvbrowser/template b/srcpkgs/tvbrowser/template
index ebe21cc5a34..6f88a7f919b 100644
--- a/srcpkgs/tvbrowser/template
+++ b/srcpkgs/tvbrowser/template
@@ -2,7 +2,6 @@
 pkgname=tvbrowser
 version=4.2.1
 revision=1
-archs=noarch
 depends="java-runtime>=11 hicolor-icon-theme bash"
 short_desc="Ad free open source TV guide for more than 1000 channels"
 maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
diff --git a/srcpkgs/twaindsm/template b/srcpkgs/twaindsm/template
index 15292267fec..f9d5e082692 100644
--- a/srcpkgs/twaindsm/template
+++ b/srcpkgs/twaindsm/template
@@ -39,7 +39,6 @@ twaindsm-devel_package() {
 
 twaindsm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${pkgname}
 		mv ${wrksrc}/TWAIN_DSM/doc/html ${PKGDESTDIR}/usr/share/doc/${pkgname}
diff --git a/srcpkgs/twemoji/template b/srcpkgs/twemoji/template
index e0201e88a96..c6b9e888ff9 100644
--- a/srcpkgs/twemoji/template
+++ b/srcpkgs/twemoji/template
@@ -2,7 +2,6 @@
 pkgname=twemoji
 version=12.0.1
 revision=1
-archs=noarch
 wrksrc="TwitterColorEmoji-SVGinOT-Linux-${version}"
 depends="font-util"
 short_desc="Twitter emoji font set in color and b&w"
diff --git a/srcpkgs/txt2man/template b/srcpkgs/txt2man/template
index edb10e56599..c385f2411ea 100644
--- a/srcpkgs/txt2man/template
+++ b/srcpkgs/txt2man/template
@@ -2,7 +2,6 @@
 pkgname=txt2man
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc=${pkgname}-${pkgname}-${version}
 short_desc="Converts text to man page"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/tzdata/template b/srcpkgs/tzdata/template
index 74d2f335c61..2f68c5040b0 100644
--- a/srcpkgs/tzdata/template
+++ b/srcpkgs/tzdata/template
@@ -2,7 +2,6 @@
 pkgname=tzdata
 version=2020a
 revision=1
-archs=noarch
 wrksrc=tzdata
 create_wrksrc=yes
 hostmakedepends="tzutils"
diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 382a653d9d4..b5a025a8a4c 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -2,7 +2,6 @@
 pkgname=tzupdate
 version=2.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests"
diff --git a/srcpkgs/u-boot-menu/template b/srcpkgs/u-boot-menu/template
index f080279af82..d6524f0d859 100644
--- a/srcpkgs/u-boot-menu/template
+++ b/srcpkgs/u-boot-menu/template
@@ -2,7 +2,6 @@
 pkgname=u-boot-menu
 version=0.1
 revision=1
-archs=noarch
 conf_files="/etc/default/extlinux"
 short_desc="Create an u-boot menu with currently available kernels"
 maintainer="Remi Pommarel <repk@triplefau.lt>"
diff --git a/srcpkgs/uberwriter/template b/srcpkgs/uberwriter/template
index aa00c32f261..dd1d70f7564 100644
--- a/srcpkgs/uberwriter/template
+++ b/srcpkgs/uberwriter/template
@@ -6,7 +6,6 @@ _subversion=public1-beta
 wrksrc=uberwriter_bugfixes
 build_style=python2-module
 pycompile_module=$pkgname
-archs=noarch
 patch_args='-p1'
 hostmakedepends="python-distutils-extra intltool"
 depends="python-enchant python-gobject pandoc ttf-ubuntu-font-family"
diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 36515e7f3f7..98a5d43d727 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -2,7 +2,6 @@
 pkgname=udiskie
 version=2.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-gobject"
 depends="gtk+3 libnotify python3-docopt python3-gobject python3-keyutils
diff --git a/srcpkgs/ufetch/template b/srcpkgs/ufetch/template
index 1303de65884..c62d05690ba 100644
--- a/srcpkgs/ufetch/template
+++ b/srcpkgs/ufetch/template
@@ -2,7 +2,6 @@
 pkgname=ufetch
 version=0.2
 revision=1
-archs=noarch
 wrksrc="ufetch-v${version}"
 depends="xbps coreutils ncurses"
 short_desc="Tiny system info for Void"
diff --git a/srcpkgs/ufoai/template b/srcpkgs/ufoai/template
index 6463d2c47c6..e98c615766f 100644
--- a/srcpkgs/ufoai/template
+++ b/srcpkgs/ufoai/template
@@ -69,7 +69,6 @@ post_install() {
 
 ufoai-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/ufoai/base/*.pk3
 		vmove usr/share/ufoai/base/i18n
diff --git a/srcpkgs/ufw-extras/template b/srcpkgs/ufw-extras/template
index 0054a0ac19e..eba36a4314d 100644
--- a/srcpkgs/ufw-extras/template
+++ b/srcpkgs/ufw-extras/template
@@ -2,7 +2,6 @@
 pkgname=ufw-extras
 version=0.5
 revision=1
-archs=noarch
 depends="ufw"
 short_desc="Extra configuration files for Uncomplicated Firewall (ufw)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index 0bf2a3a0b76..b8d8bb58c80 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -2,7 +2,6 @@
 pkgname=ufw
 version=0.36
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="ufw"
 conf_files="
diff --git a/srcpkgs/uhd/template b/srcpkgs/uhd/template
index b0484732ea9..e6d1ea9cbb1 100644
--- a/srcpkgs/uhd/template
+++ b/srcpkgs/uhd/template
@@ -39,7 +39,6 @@ uhd-devel_package() {
 
 uhd-doc_package() {
 	short_desc+=" - doc files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/unicode-emoji/template b/srcpkgs/unicode-emoji/template
index bc674e3aa54..17d2be29376 100644
--- a/srcpkgs/unicode-emoji/template
+++ b/srcpkgs/unicode-emoji/template
@@ -2,7 +2,6 @@
 pkgname=unicode-emoji
 version=12.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Unicode Emoji Data Files"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index 6e81970800d..0a320f621e8 100644
--- a/srcpkgs/unknown-horizons/template
+++ b/srcpkgs/unknown-horizons/template
@@ -2,7 +2,6 @@
 pkgname=unknown-horizons
 version=2019.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"
 depends="python3 fifengine python3-yaml"
diff --git a/srcpkgs/unoconv/template b/srcpkgs/unoconv/template
index 1a6c2c913e9..2015cb36e57 100644
--- a/srcpkgs/unoconv/template
+++ b/srcpkgs/unoconv/template
@@ -2,7 +2,6 @@
 pkgname=unoconv
 version=0.9.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="asciidoc git"
 depends="python"
diff --git a/srcpkgs/unp/template b/srcpkgs/unp/template
index ba43e043502..eb2f0624d42 100644
--- a/srcpkgs/unp/template
+++ b/srcpkgs/unp/template
@@ -2,7 +2,6 @@
 pkgname=unp
 version="2.0~pre7+nmu1"
 revision=2
-archs=noarch
 hostmakedepends="gettext"
 makedepends="perl"
 depends="perl"
diff --git a/srcpkgs/urbanterror-data/template b/srcpkgs/urbanterror-data/template
index 987dca0e366..e0e08224843 100644
--- a/srcpkgs/urbanterror-data/template
+++ b/srcpkgs/urbanterror-data/template
@@ -2,7 +2,6 @@
 pkgname=urbanterror-data
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="UrbanTerror43"
 hostmakedepends="unzip"
 short_desc="Urbanterror data files"
diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index 2bb1688dad7..c13e6dafaba 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -2,7 +2,6 @@
 pkgname=urlscan
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index ee56c05689f..dc4a775cf9b 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -2,7 +2,6 @@
 pkgname=urlwatch
 version=2.17
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urxvt-perls/template b/srcpkgs/urxvt-perls/template
index 8a62a338283..7ee582152ed 100644
--- a/srcpkgs/urxvt-perls/template
+++ b/srcpkgs/urxvt-perls/template
@@ -2,7 +2,6 @@
 pkgname=urxvt-perls
 version=2.3
 revision=1
-archs=noarch
 depends="rxvt-unicode perl"
 short_desc="Perl extensions for the rxvt-unicode terminal emulator"
 maintainer="nem <nem@posteo.net>"
diff --git a/srcpkgs/usb-modeswitch-data/template b/srcpkgs/usb-modeswitch-data/template
index b23431f54f1..51b3c653b76 100644
--- a/srcpkgs/usb-modeswitch-data/template
+++ b/srcpkgs/usb-modeswitch-data/template
@@ -2,7 +2,6 @@
 pkgname=usb-modeswitch-data
 version=20191128
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="RULESDIR=/usr/lib/udev/rules.d"
 short_desc="Mode switching tool for controlling 'multi-mode' USB devices (data files)"
diff --git a/srcpkgs/vala-panel-appmenu/template b/srcpkgs/vala-panel-appmenu/template
index 0913a270047..83f9d0ed72e 100644
--- a/srcpkgs/vala-panel-appmenu/template
+++ b/srcpkgs/vala-panel-appmenu/template
@@ -86,7 +86,6 @@ mate-panel-appmenu_package() {
 
 vala-panel-appmenu-data_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/locale
 		vmove usr/share/glib-2.0/schemas/org.valapanel.appmenu.gschema.xml
diff --git a/srcpkgs/vala/template b/srcpkgs/vala/template
index e958825f196..25da83cf23d 100644
--- a/srcpkgs/vala/template
+++ b/srcpkgs/vala/template
@@ -46,7 +46,6 @@ vala-devel_package() {
 }
 
 vala-doc_package() {
-	archs=noarch
 	depends="vala-${version}_${revision}"
 	short_desc+=" - devhelp documentation"
 	pkg_install() {
diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index 651d1c87641..20a00f3549d 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -2,7 +2,6 @@
 pkgname=variety
 version=0.8.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"
 pycompile_dirs="usr/share/variety/plugins"
diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 708204afda2..dfc929efe9c 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -2,7 +2,6 @@
 pkgname=vdirsyncer
 version=0.16.7
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="vdirsyncer"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/vdrift/template b/srcpkgs/vdrift/template
index 290288696f6..900d01481d9 100644
--- a/srcpkgs/vdrift/template
+++ b/srcpkgs/vdrift/template
@@ -35,7 +35,6 @@ post_install() {
 
 vdrift-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/vdrift
 	}
diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 6ca85d4e766..54065817a84 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -2,7 +2,6 @@
 pkgname=vidcutter
 version=6.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/vigra/template b/srcpkgs/vigra/template
index 09ffcff4f2a..ac7a79db23e 100644
--- a/srcpkgs/vigra/template
+++ b/srcpkgs/vigra/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 vigra-doc_package() {
-	archs=noarch
 	depends="vigra>=${version}_${revision}"
 	short_desc+=" - documentation"
 	pkg_install() {
diff --git a/srcpkgs/vim-colorschemes/template b/srcpkgs/vim-colorschemes/template
index a018fc4d501..01683376b04 100644
--- a/srcpkgs/vim-colorschemes/template
+++ b/srcpkgs/vim-colorschemes/template
@@ -3,7 +3,6 @@ pkgname=vim-colorschemes
 version=20170822
 revision=1
 _commit=eab315701f4627967fd62582eefc4e37a3745786
-archs=noarch
 short_desc="Vim colorschemes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="GPL-3"
diff --git a/srcpkgs/vim-gnupg/template b/srcpkgs/vim-gnupg/template
index 9cb1d79f000..903af68738d 100644
--- a/srcpkgs/vim-gnupg/template
+++ b/srcpkgs/vim-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=vim-gnupg
 version=2.6.1
 revision=1
-archs=noarch
 depends="vim-common gnupg"
 short_desc="Plugin for transparent editing of gpg encrypted files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 4585d99624f..e0becffaea6 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -112,7 +112,6 @@ do_install() {
 vim-common_package() {
 	short_desc+=" - common files"
 	depends="xxd"
-	archs=noarch
 	alternatives="
 	 vi:ex:/usr/bin/vim
 	 vi:ex.1:/usr/share/man/man1/vim.1
diff --git a/srcpkgs/vips/template b/srcpkgs/vips/template
index 5639fbcb01f..cc50b2ac39f 100644
--- a/srcpkgs/vips/template
+++ b/srcpkgs/vips/template
@@ -69,7 +69,6 @@ libvips-devel_package() {
 }
 
 libvips-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/gtk-doc
diff --git a/srcpkgs/virt-manager/template b/srcpkgs/virt-manager/template
index db7734b6812..1920a937ab3 100644
--- a/srcpkgs/virt-manager/template
+++ b/srcpkgs/virt-manager/template
@@ -2,7 +2,6 @@
 pkgname=virt-manager
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-devel glib-devel gtk-update-icon-cache
  python3-gobject libosinfo libvirt-python3 libxml2-python3 python3-requests"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 virt-manager-tools_package() {
-	archs=noarch
 	short_desc="Programs to create and clone virtual machines"
 	depends="libosinfo python3-gobject libvirt-python3 python3-urllib3 libxml2-python3 python3-requests"
 	pycompile_dirs="/usr/share/${sourcepkg}"
diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index ebf37c59c6c..8a658600f70 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -2,7 +2,6 @@
 pkgname=virtme
 version=0.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="virtme"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/virtualbox-ose/template b/srcpkgs/virtualbox-ose/template
index f1184e6a6fc..ef5aed6c95e 100644
--- a/srcpkgs/virtualbox-ose/template
+++ b/srcpkgs/virtualbox-ose/template
@@ -121,7 +121,6 @@ virtualbox-ose-dkms_package() {
 	short_desc+=" - kernel module sources for dkms"
 	dkms_modules="virtualbox-ose ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
@@ -169,7 +168,6 @@ virtualbox-ose-guest-dkms_package() {
 	short_desc+=" - guest addition module source for dkms"
 	dkms_modules="virtualbox-ose-guest ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 55846f10531..af8e7bb15a9 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -2,7 +2,6 @@
 pkgname=virtualenvwrapper
 version=4.8.4
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"
 hostmakedepends="python3-setuptools python3-pbr"
diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index c5c3ae7c82e..9a57496edc3 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -2,7 +2,6 @@
 pkgname=visidata
 version=1.5.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="visidata"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/void-artwork/template b/srcpkgs/void-artwork/template
index ecfc2b9b5e6..dc9f08cc3cc 100644
--- a/srcpkgs/void-artwork/template
+++ b/srcpkgs/void-artwork/template
@@ -2,7 +2,6 @@
 pkgname=void-artwork
 version=20170517
 revision=2
-archs=noarch
 short_desc="Void Linux artwork"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-docs/template b/srcpkgs/void-docs/template
index 1e9845a8621..00601b87a54 100644
--- a/srcpkgs/void-docs/template
+++ b/srcpkgs/void-docs/template
@@ -2,7 +2,6 @@
 pkgname=void-docs
 version=2020.08.18
 revision=2
-archs=noarch
 hostmakedepends="mdBook fd pandoc texlive perl perl-JSON"
 short_desc="Documentation for Void Linux"
 maintainer="Érico Nogueira <ericonr@disroot.org>"
diff --git a/srcpkgs/void-release-keys/template b/srcpkgs/void-release-keys/template
index f9451a73b7b..f0c7a46f354 100644
--- a/srcpkgs/void-release-keys/template
+++ b/srcpkgs/void-release-keys/template
@@ -2,7 +2,6 @@
 pkgname=void-release-keys
 version=1
 revision=1
-archs=noarch
 short_desc="Void Linux Release Keys"
 maintainer="Void Release Engineering <releases@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-repo-nonfree/template b/srcpkgs/void-repo-nonfree/template
index 02410a5b72a..98706c49041 100644
--- a/srcpkgs/void-repo-nonfree/template
+++ b/srcpkgs/void-repo-nonfree/template
@@ -2,7 +2,6 @@
 pkgname=void-repo-nonfree
 version=9
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Void Linux drop-in file for the nonfree repository"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -34,7 +33,6 @@ do_install() {
 }
 
 void-repo-debug_package() {
-	archs=noarch
 	short_desc="${short_desc/nonfree/debug}"
 	pkg_install() {
 		vmove usr/share/xbps.d/20-repository-debug.conf
diff --git a/srcpkgs/void-updates/template b/srcpkgs/void-updates/template
index 97236f068c8..d90cbfb3ca5 100644
--- a/srcpkgs/void-updates/template
+++ b/srcpkgs/void-updates/template
@@ -2,7 +2,6 @@
 pkgname=void-updates
 version=20190330
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="git curl"
 short_desc="Void Linux package updates"
diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 3280a8ed5d0..420db91ddcb 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -2,7 +2,6 @@
 pkgname=volctl
 version=0.7.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject pulseaudio desktop-file-utils"
diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index 23731b3e01d..501df81b4fc 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -2,7 +2,6 @@
 pkgname=voltron
 version=0.1.7
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-blessed python3-Flask python3-Pygments python3-pysigset
diff --git a/srcpkgs/vpm/template b/srcpkgs/vpm/template
index a1b826c402f..daf0db65ffc 100644
--- a/srcpkgs/vpm/template
+++ b/srcpkgs/vpm/template
@@ -2,7 +2,6 @@
 pkgname=vpm
 version=1.3
 revision=1
-archs=noarch
 short_desc="XBPS package management helper for VoidLinux"
 maintainer="Armin Jenewein <github@m2m.pm>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/vpnc-scripts/template b/srcpkgs/vpnc-scripts/template
index 811bd9a3d95..dd58c857083 100644
--- a/srcpkgs/vpnc-scripts/template
+++ b/srcpkgs/vpnc-scripts/template
@@ -2,7 +2,6 @@
 pkgname=vpnc-scripts
 version=20190611
 revision=1
-archs=noarch
 short_desc="Network configuration scripts for VPNC and OpenConnect"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
diff --git a/srcpkgs/vpnd/template b/srcpkgs/vpnd/template
index fa4222ae372..9f062291564 100644
--- a/srcpkgs/vpnd/template
+++ b/srcpkgs/vpnd/template
@@ -2,7 +2,6 @@
 pkgname=vpnd
 version=0.1.3
 revision=1
-archs=noarch
 depends="bash"
 conf_files="/etc/vpnd.conf"
 short_desc="Package update notifier daemon for Void Linux"
diff --git a/srcpkgs/vsv/template b/srcpkgs/vsv/template
index 0144340eb46..230f5b52ff5 100644
--- a/srcpkgs/vsv/template
+++ b/srcpkgs/vsv/template
@@ -2,7 +2,6 @@
 pkgname=vsv
 version=1.3.4
 revision=1
-archs=noarch
 depends="bash coreutils psmisc"
 short_desc="Manage and view runit services"
 maintainer="Dave Eddy <dave@daveeddy.com>"
diff --git a/srcpkgs/warsow-data/template b/srcpkgs/warsow-data/template
index c9c80e71f84..01e9a2e71ef 100644
--- a/srcpkgs/warsow-data/template
+++ b/srcpkgs/warsow-data/template
@@ -2,7 +2,6 @@
 pkgname=warsow-data
 version=2.1
 revision=1
-archs=noarch
 wrksrc="warsow_${version/./}"
 short_desc="Free online multiplayer competitive FPS (data files)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/warzone2100/template b/srcpkgs/warzone2100/template
index cc425c6072a..7f0319dfcd8 100644
--- a/srcpkgs/warzone2100/template
+++ b/srcpkgs/warzone2100/template
@@ -19,7 +19,6 @@ checksum=ea2cd7f016118a89244ebef8ce9424f71c060bcd5895b791d3e1cec02b555b69
 nocross="fails to detect SDL2 when cross-compiling"
 
 warzone2100-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/wayland-protocols/template b/srcpkgs/wayland-protocols/template
index 353d3f3d7f7..160dae706f9 100644
--- a/srcpkgs/wayland-protocols/template
+++ b/srcpkgs/wayland-protocols/template
@@ -2,7 +2,6 @@
 pkgname=wayland-protocols
 version=1.20
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config wayland-devel automake"
 depends="libffi-devel"
diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index 5676d81988e..978b31053fb 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -2,7 +2,6 @@
 pkgname=weather
 version=2.4
 revision=1
-archs=noarch
 depends="python3"
 conf_files="/etc/weatherrc"
 short_desc="CLI utility for current (METAR) weather conditions and forecasts"
diff --git a/srcpkgs/wee-slack/template b/srcpkgs/wee-slack/template
index 95487cde249..9d083c4dc73 100644
--- a/srcpkgs/wee-slack/template
+++ b/srcpkgs/wee-slack/template
@@ -2,7 +2,6 @@
 pkgname=wee-slack
 version=2.6.0
 revision=1
-archs=noarch
 depends="weechat weechat-python python3-websocket-client"
 short_desc="WeeChat plugin for Slack.com"
 maintainer="Renato Aguiar <renato@renatoaguiar.net>"
diff --git a/srcpkgs/wesnoth/template b/srcpkgs/wesnoth/template
index 92921f571fe..39b4751be6f 100644
--- a/srcpkgs/wesnoth/template
+++ b/srcpkgs/wesnoth/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 wesnoth-data_package() {
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/wesnoth
 	}
diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index 3d086157137..33bd15c4dd9 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -2,7 +2,6 @@
 pkgname=wfuzz
 version=2.4.7
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-chardet python3-curl python3-future python3-lxml python3-parse
diff --git a/srcpkgs/wgetpaste/template b/srcpkgs/wgetpaste/template
index 94cb687eedc..56eed95485a 100644
--- a/srcpkgs/wgetpaste/template
+++ b/srcpkgs/wgetpaste/template
@@ -2,7 +2,6 @@
 pkgname=wgetpaste
 version=2.29
 revision=1
-archs=noarch
 depends="bash wget"
 short_desc="Script that automates pasting to a number of pastebin services"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/when/template b/srcpkgs/when/template
index eb7f52f0996..5da95abdee0 100644
--- a/srcpkgs/when/template
+++ b/srcpkgs/when/template
@@ -2,7 +2,6 @@
 pkgname=when
 version=1.1.39
 revision=1
-archs=noarch
 wrksrc=when_dist
 depends="perl"
 short_desc="Minimalistic personal calendar program"
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index fe0fe79d3c8..c32f08c91aa 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -2,7 +2,6 @@
 pkgname=wicd
 version=1.7.4
 revision=4
-archs=noarch
 pycompile_module="wicd"
 pycompile_dirs="usr/lib/wicd usr/share/wicd"
 hostmakedepends="python python-setuptools python-Babel"
@@ -43,7 +42,6 @@ do_install() {
 }
 
 wicd-gtk_package() {
-	archs=noarch
 	depends="wicd>=${version} pygtk python-notify shared-mime-info desktop-file-utils hicolor-icon-theme"
 	short_desc+=" - GTK UI"
 	pycompile_dirs="usr/share/wicd/gtk"
diff --git a/srcpkgs/widelands-maps/template b/srcpkgs/widelands-maps/template
index 5f856fd6089..f375a49f63d 100644
--- a/srcpkgs/widelands-maps/template
+++ b/srcpkgs/widelands-maps/template
@@ -8,7 +8,6 @@ license="GPL-2"
 homepage="http://wl.widelands.org/maps/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum=2029d8e72efedaa2f81f3b99d2d14f732964ac71bf5d563ae18321ace5ddf531
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/widelands
diff --git a/srcpkgs/widelands/template b/srcpkgs/widelands/template
index 061040d9ae4..d2c65c04fda 100644
--- a/srcpkgs/widelands/template
+++ b/srcpkgs/widelands/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 widelands-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/widelands
diff --git a/srcpkgs/wifi-firmware/template b/srcpkgs/wifi-firmware/template
index d48d21b3aec..c044014a7f0 100644
--- a/srcpkgs/wifi-firmware/template
+++ b/srcpkgs/wifi-firmware/template
@@ -2,7 +2,6 @@
 pkgname=wifi-firmware
 version=1.3
 revision=3
-archs=noarch
 build_style=meta
 depends="ipw2100-firmware ipw2200-firmware zd1211-firmware"
 short_desc="WiFi firmware meta-package"
diff --git a/srcpkgs/wifish/template b/srcpkgs/wifish/template
index 64252790947..b8c4067ddee 100644
--- a/srcpkgs/wifish/template
+++ b/srcpkgs/wifish/template
@@ -5,7 +5,6 @@ revision=1
 depends="wpa_supplicant gawk"
 short_desc="Simple wifi tool"
 maintainer="bougyman <bougyman@rubyists.com>"
-archs=noarch
 license="wtfpl"
 homepage="http://github.com/bougyman/wifish"
 distfiles="https://github.com/bougyman/wifish/archive/${version}.tar.gz"
diff --git a/srcpkgs/wine-gecko/template b/srcpkgs/wine-gecko/template
index 6216c6c8dff..fd0988a88c8 100644
--- a/srcpkgs/wine-gecko/template
+++ b/srcpkgs/wine-gecko/template
@@ -2,7 +2,6 @@
 pkgname=wine-gecko
 version=2.47.1
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mozilla Gecko Layout Engine for WINE (32bit)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine-mono/template b/srcpkgs/wine-mono/template
index 02072ab807b..e74c5ed0166 100644
--- a/srcpkgs/wine-mono/template
+++ b/srcpkgs/wine-mono/template
@@ -2,7 +2,6 @@
 pkgname=wine-mono
 version=5.1.0
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mono built for running .NET applications with WINE"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine/template b/srcpkgs/wine/template
index 7dbe6bcf9ef..3038037adcb 100644
--- a/srcpkgs/wine/template
+++ b/srcpkgs/wine/template
@@ -89,7 +89,6 @@ wine-devel_package() {
 }
 
 wine-common_package() {
-	archs="noarch"
 	short_desc+=" - common files"
 	binfmts="/usr/bin/wine --magic MZ"
 	pkg_install() {
diff --git a/srcpkgs/winetricks/template b/srcpkgs/winetricks/template
index 57358041ee6..a352cfb6092 100644
--- a/srcpkgs/winetricks/template
+++ b/srcpkgs/winetricks/template
@@ -2,7 +2,6 @@
 pkgname=winetricks
 version=20200412
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="cabextract unzip xmessage" # actually it depends on wine
 short_desc="Script to install various redistributable runtime libraries in Wine"
diff --git a/srcpkgs/wok/template b/srcpkgs/wok/template
index bd1b6278e8c..42beab7a00b 100644
--- a/srcpkgs/wok/template
+++ b/srcpkgs/wok/template
@@ -2,7 +2,6 @@
 pkgname=wok
 version=1.1.1
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="wok"
 hostmakedepends="python-devel python-setuptools"
diff --git a/srcpkgs/words-mnemonic/template b/srcpkgs/words-mnemonic/template
index 65fd6f5b177..41ac40b25e5 100644
--- a/srcpkgs/words-mnemonic/template
+++ b/srcpkgs/words-mnemonic/template
@@ -3,7 +3,6 @@ pkgname=words-mnemonic
 version=20150217
 revision=3
 build_style=fetch
-archs=noarch
 short_desc="Word list from the Mnemonic encoder project"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 # see https://github.com/singpolyma/mnemonicode/blob/master/mn_wordlist.c
diff --git a/srcpkgs/words-web2/template b/srcpkgs/words-web2/template
index 262f92db486..8865f605e81 100644
--- a/srcpkgs/words-web2/template
+++ b/srcpkgs/words-web2/template
@@ -13,7 +13,6 @@ distfiles="https://svnweb.freebsd.org/base/head/share/dict/README?revision=25790
 checksum="0bebe63be8ea1263c04c9ef40fbb1a88c242b0b53db32bd6c8d27ad5afffb183
  a80b7cac20dff2fd92e59bb58d2d581efa9b965756a8c8f03f754d3d98e92723
  9313e251fee3e56204db2b284346d61c3a80ce613d7a077c5674f15f9cb33ab3"
-archs=noarch
 
 do_install() {
 	vinstall web2 0644 /usr/share/dict
diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 4692074cd04..d63a74663f6 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -2,7 +2,6 @@
 pkgname=wpgtk
 version=6.1.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject python3-Pillow pywal libxslt"
diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 621e1c85428..8e5e71f1505 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -2,7 +2,6 @@
 pkgname=wpull
 version=2.0.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="wpull"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/wqy-microhei/template b/srcpkgs/wqy-microhei/template
index 77071b31ae5..9e517eb721a 100644
--- a/srcpkgs/wqy-microhei/template
+++ b/srcpkgs/wqy-microhei/template
@@ -2,7 +2,6 @@
 pkgname=wqy-microhei
 version=0.2.0.beta
 revision=2
-archs=noarch
 wrksrc=wqy-microhei
 depends="font-util"
 short_desc="A Sans-Serif style high quality CJK outline font"
diff --git a/srcpkgs/xapian-core/template b/srcpkgs/xapian-core/template
index 1b9cf9e8837..429bead39c0 100644
--- a/srcpkgs/xapian-core/template
+++ b/srcpkgs/xapian-core/template
@@ -31,7 +31,6 @@ xapian-core-devel_package() {
 }
 xapian-core-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/xbitmaps/template b/srcpkgs/xbitmaps/template
index 7cb547e43a1..9a0dcef9d50 100644
--- a/srcpkgs/xbitmaps/template
+++ b/srcpkgs/xbitmaps/template
@@ -2,7 +2,6 @@
 pkgname=xbitmaps
 version=1.1.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Common X11 bitmaps"
 license="MIT"
diff --git a/srcpkgs/xbps-triggers/template b/srcpkgs/xbps-triggers/template
index b28d198b1ce..a40698e1f8e 100644
--- a/srcpkgs/xbps-triggers/template
+++ b/srcpkgs/xbps-triggers/template
@@ -2,7 +2,6 @@
 pkgname=xbps-triggers
 version=0.116
 revision=1
-archs=noarch
 bootstrap=yes
 short_desc="XBPS triggers for Void Linux"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/xcb-proto/template b/srcpkgs/xcb-proto/template
index afc0d260a23..a3d18c56f59 100644
--- a/srcpkgs/xcb-proto/template
+++ b/srcpkgs/xcb-proto/template
@@ -2,7 +2,6 @@
 pkgname=xcb-proto
 version=1.14
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="libxml2"
diff --git a/srcpkgs/xcursor-themes/template b/srcpkgs/xcursor-themes/template
index 4c70ce9ef0e..2ff2cc9a9aa 100644
--- a/srcpkgs/xcursor-themes/template
+++ b/srcpkgs/xcursor-themes/template
@@ -2,7 +2,6 @@
 pkgname=xcursor-themes
 version=1.0.6
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config xcursorgen xorg-util-macros"
 makedepends="libXcursor-devel libXrender-devel"
diff --git a/srcpkgs/xcursor-vanilla-dmz/template b/srcpkgs/xcursor-vanilla-dmz/template
index 30f2bf17cd6..8c6ebd634a7 100644
--- a/srcpkgs/xcursor-vanilla-dmz/template
+++ b/srcpkgs/xcursor-vanilla-dmz/template
@@ -3,7 +3,6 @@ pkgname=xcursor-vanilla-dmz
 version=0.4.5
 revision=1
 wrksrc="dmz-cursor-theme-${version}"
-archs=noarch
 hostmakedepends="xcursorgen"
 short_desc="Vanilla DMZ cursor theme (White)"
 maintainer="Jerry Tegno <jerrytegno@gmail.com>"
diff --git a/srcpkgs/xdg-utils/template b/srcpkgs/xdg-utils/template
index 9a235ca2f69..164dbf476d4 100644
--- a/srcpkgs/xdg-utils/template
+++ b/srcpkgs/xdg-utils/template
@@ -2,7 +2,6 @@
 pkgname=xdg-utils
 version=1.1.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="xmlto lynx"
 short_desc="Tools to assist applications with various desktop integration tasks"
diff --git a/srcpkgs/xdgmenumaker/template b/srcpkgs/xdgmenumaker/template
index c9ee447c743..7a28d5f39eb 100644
--- a/srcpkgs/xdgmenumaker/template
+++ b/srcpkgs/xdgmenumaker/template
@@ -2,7 +2,6 @@
 pkgname=xdgmenumaker
 version=1.5
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-xdg python3-gobject gobject-introspection python3-Pillow"
 short_desc="Automatic menu generator for WMs, such as, fluxbox, icewm, jwm, pekwm"
diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 85b33af2222..b5c76c4af46 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -2,7 +2,6 @@
 pkgname=xdot
 version=1.1
 revision=3
-archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module
 pycompile_module="xdot"
diff --git a/srcpkgs/xed/template b/srcpkgs/xed/template
index 9754a340873..8c42a2d9d21 100644
--- a/srcpkgs/xed/template
+++ b/srcpkgs/xed/template
@@ -2,7 +2,6 @@
 pkgname=xed
 version=0.9.1
 revision=1
-archs=noarch
 depends="tk"
 short_desc="The standard text editor, for X11"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/xerces-c/template b/srcpkgs/xerces-c/template
index 100094350f7..c0353e3ee22 100644
--- a/srcpkgs/xerces-c/template
+++ b/srcpkgs/xerces-c/template
@@ -43,7 +43,6 @@ libxerces-c-devel_package() {
 
 xerces-c-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vdoc "CREDITS"
 		vcopy "${wrksrc}/doc"           "/usr/share/doc/${pkgname}"
diff --git a/srcpkgs/xfwm4-themes/template b/srcpkgs/xfwm4-themes/template
index bdfeb031906..3308a5ee525 100644
--- a/srcpkgs/xfwm4-themes/template
+++ b/srcpkgs/xfwm4-themes/template
@@ -2,7 +2,6 @@
 pkgname=xfwm4-themes
 version=4.10.0
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="Themes for the XFCE window manager"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/xkb-qwerty-fr/template b/srcpkgs/xkb-qwerty-fr/template
index 8cd62b9ecdf..5be0f9487ec 100644
--- a/srcpkgs/xkb-qwerty-fr/template
+++ b/srcpkgs/xkb-qwerty-fr/template
@@ -2,7 +2,6 @@
 pkgname=xkb-qwerty-fr
 version=0.5
 revision=1
-archs=noarch
 short_desc="French qwerty X11 keymap"
 maintainer="Franklin Delehelle <franklin.delehelle@odena.eu>"
 license="GPL-2"
diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 37fb6872079..5e6e998f14e 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -2,7 +2,6 @@
 pkgname=xkcdpass
 version=1.17.3
 revision=2
-archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module
 pycompile_module="xkcdpass"
diff --git a/srcpkgs/xkeyboard-config/template b/srcpkgs/xkeyboard-config/template
index afee6371174..0329d0d17c8 100644
--- a/srcpkgs/xkeyboard-config/template
+++ b/srcpkgs/xkeyboard-config/template
@@ -2,7 +2,6 @@
 pkgname=xkeyboard-config
 version=2.30
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-xkb-rules-symlink=xfree86,xorg --enable-compat-rules"
 hostmakedepends="pkg-config libxslt intltool python3"
diff --git a/srcpkgs/xmltoman/template b/srcpkgs/xmltoman/template
index 2f74978bea7..a1d3a628a61 100644
--- a/srcpkgs/xmltoman/template
+++ b/srcpkgs/xmltoman/template
@@ -11,4 +11,3 @@ license="GPL-3"
 homepage="https://sourceforge.net/projects/xmltoman"
 distfiles="https://github.com/Distrotech/xmltoman/archive/${version}.tar.gz"
 checksum=2ab86b74fe364a866d84c14b20cbd42a09fa85c629deeff52376bbf890854feb
-archs=noarch
diff --git a/srcpkgs/xmoto/template b/srcpkgs/xmoto/template
index ae400bdce0a..3c3bde96533 100644
--- a/srcpkgs/xmoto/template
+++ b/srcpkgs/xmoto/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 xmoto-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/xmoto
diff --git a/srcpkgs/xonotic-data-low/template b/srcpkgs/xonotic-data-low/template
index ffca0a897af..253b8c407dd 100644
--- a/srcpkgs/xonotic-data-low/template
+++ b/srcpkgs/xonotic-data-low/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data-low
 version=0.8.2
 revision=1
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="A free, fast-paced crossplatform FPS (Lower Quality data files)"
diff --git a/srcpkgs/xonotic-data/template b/srcpkgs/xonotic-data/template
index f274258d867..c604fcd5af0 100644
--- a/srcpkgs/xonotic-data/template
+++ b/srcpkgs/xonotic-data/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="Free, fast-paced crossplatform first-person shooter (data files)"
diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 28576175bb7..b1b7bf8ea8c 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -2,7 +2,6 @@
 pkgname=xonsh
 version=0.9.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 short_desc="Python-powered, cross-platform, Unix-gazing shell"
diff --git a/srcpkgs/xorg-cf-files/template b/srcpkgs/xorg-cf-files/template
index bdc733ade0a..e1b05da5fcd 100644
--- a/srcpkgs/xorg-cf-files/template
+++ b/srcpkgs/xorg-cf-files/template
@@ -2,7 +2,6 @@
 pkgname=xorg-cf-files
 version=1.0.6
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config automake xorg-util-macros font-util"
 short_desc="X.Org imake program and related utilities"
diff --git a/srcpkgs/xorg-util-macros/template b/srcpkgs/xorg-util-macros/template
index aa98fafc833..987949ce97d 100644
--- a/srcpkgs/xorg-util-macros/template
+++ b/srcpkgs/xorg-util-macros/template
@@ -3,7 +3,6 @@ pkgname=xorg-util-macros
 version=1.19.2
 revision=1
 wrksrc="${pkgname/xorg-/}-${version}"
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="X.org autotool macros"
diff --git a/srcpkgs/xtools/template b/srcpkgs/xtools/template
index d1b5e0fe4f2..82a4e91cacc 100644
--- a/srcpkgs/xtools/template
+++ b/srcpkgs/xtools/template
@@ -2,7 +2,6 @@
 pkgname=xtools
 version=0.61
 revision=1
-archs="noarch"
 build_style=gnu-makefile
 depends="bash curl findutils git make spdx-licenses-list xbps"
 short_desc="Opinionated helpers for working with XBPS"
diff --git a/srcpkgs/xtrans/template b/srcpkgs/xtrans/template
index 77dbb83a9f6..c21c51b6bbc 100644
--- a/srcpkgs/xtrans/template
+++ b/srcpkgs/xtrans/template
@@ -2,7 +2,6 @@
 pkgname=xtrans
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="Network API translation layer to insulate X"
diff --git a/srcpkgs/xye/template b/srcpkgs/xye/template
index 11094ab555b..d58f407d888 100644
--- a/srcpkgs/xye/template
+++ b/srcpkgs/xye/template
@@ -23,7 +23,6 @@ post_install() {
 
 xye-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/xye
 	}
diff --git a/srcpkgs/yadm/template b/srcpkgs/yadm/template
index 7b5ebbbc028..4db6f2e0035 100644
--- a/srcpkgs/yadm/template
+++ b/srcpkgs/yadm/template
@@ -2,7 +2,6 @@
 pkgname=yadm
 version=2.5.0
 revision=1
-archs=noarch
 depends="bash git gnupg"
 short_desc="Yet Another Dotfiles Manager"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/yaru-plus/template b/srcpkgs/yaru-plus/template
index 72c63ec663b..cf3ca7997c2 100644
--- a/srcpkgs/yaru-plus/template
+++ b/srcpkgs/yaru-plus/template
@@ -2,7 +2,6 @@
 pkgname=yaru-plus
 version=3.0
 revision=1
-archs=noarch
 short_desc="Elegant Canonical's Yaru-based third-party icons theme"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/yaru/template b/srcpkgs/yaru/template
index 6d00563b8a6..b084a1e6af5 100644
--- a/srcpkgs/yaru/template
+++ b/srcpkgs/yaru/template
@@ -2,7 +2,6 @@
 pkgname=yaru
 version=20.10.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="glib-devel sassc pkg-config"
 makedepends="gtk+3-devel libglib-devel"
diff --git a/srcpkgs/yelp-tools/template b/srcpkgs/yelp-tools/template
index 9e8a670e6b0..1403206a26a 100644
--- a/srcpkgs/yelp-tools/template
+++ b/srcpkgs/yelp-tools/template
@@ -2,7 +2,6 @@
 pkgname=yelp-tools
 version=3.32.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config itstool libxslt"
 makedepends="yelp-xsl"
diff --git a/srcpkgs/yelp-xsl/template b/srcpkgs/yelp-xsl/template
index f74a7fba67c..152f3f364ae 100644
--- a/srcpkgs/yelp-xsl/template
+++ b/srcpkgs/yelp-xsl/template
@@ -2,7 +2,6 @@
 pkgname=yelp-xsl
 version=3.36.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/you-get/template b/srcpkgs/you-get/template
index b0bf348d351..ac69df8355b 100644
--- a/srcpkgs/you-get/template
+++ b/srcpkgs/you-get/template
@@ -2,7 +2,6 @@
 pkgname=you-get
 version=0.4.1456
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pysocks python3-setuptools"
diff --git a/srcpkgs/youtube-dl/template b/srcpkgs/youtube-dl/template
index 8e35e276ee9..a274d72d5bc 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -2,7 +2,6 @@
 pkgname=youtube-dl
 version=2020.07.28
 revision=1
-archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/youtube-viewer/template b/srcpkgs/youtube-viewer/template
index c05d02ffa15..66eb9b9b46e 100644
--- a/srcpkgs/youtube-viewer/template
+++ b/srcpkgs/youtube-viewer/template
@@ -2,7 +2,6 @@
 pkgname=youtube-viewer
 version=3.7.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index c6bcf76d96f..07a4dc4dc98 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -2,7 +2,6 @@
 pkgname=yq
 version=2.10.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-yaml"
diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index bef3366f910..846f47d53f4 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -2,7 +2,6 @@
 pkgname=ytcc
 version=1.8.2
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-SQLAlchemy python3-feedparser python3-lxml python3-youtube-dl
diff --git a/srcpkgs/ytmdl/template b/srcpkgs/ytmdl/template
index 7952b5662cd..132d5d63c9a 100644
--- a/srcpkgs/ytmdl/template
+++ b/srcpkgs/ytmdl/template
@@ -2,7 +2,6 @@
 pkgname=ytmdl
 version=2020.07.26
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="ffmpeg youtube-dl python3-mutagen python3-requests python3-colorama
diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index bc9e6e418c2..3354bb9b407 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -2,7 +2,6 @@
 pkgname=yturl
 version=2.0.2
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools texinfo"
 depends="python3-setuptools python3-requests python3-six"
diff --git a/srcpkgs/yubikey-manager/template b/srcpkgs/yubikey-manager/template
index 75886e00e81..04184e8a4c6 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -2,7 +2,6 @@
 pkgname=yubikey-manager
 version=3.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="libu2f-host python3-fido2 python3-openssl python3-usb python3-pyscard
diff --git a/srcpkgs/zabbix/template b/srcpkgs/zabbix/template
index ec9f7e7b298..b923a819714 100644
--- a/srcpkgs/zabbix/template
+++ b/srcpkgs/zabbix/template
@@ -95,7 +95,6 @@ zabbix-proxy_package() {
 }
 
 zabbix-frontend-php_package() {
-	archs=noarch
 	depends="zabbix php-gd php-mysql"
 	short_desc="Zabbix Networking Monitoring PHP Frontend"
 	pkg_install() {
diff --git a/srcpkgs/zd1211-firmware/template b/srcpkgs/zd1211-firmware/template
index d53a71b7fde..4cd21ae7995 100644
--- a/srcpkgs/zd1211-firmware/template
+++ b/srcpkgs/zd1211-firmware/template
@@ -2,7 +2,6 @@
 pkgname=zd1211-firmware
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Firmware for the Zydas 1211 wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zeek/template b/srcpkgs/zeek/template
index 825e56e0fe4..644c3412f0c 100644
--- a/srcpkgs/zeek/template
+++ b/srcpkgs/zeek/template
@@ -65,7 +65,6 @@ zeek-devel_package() {
 }
 
 bro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
@@ -74,13 +73,11 @@ bro_package() {
 binpac_package() {
 	short_desc+=" - protocol parser compiler (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 }
 
 binpac-devel_package() {
 	short_desc+=" - protocol parser compiler library (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}-devel>=${version}_${revision}"
 }
diff --git a/srcpkgs/zeroinstall/template b/srcpkgs/zeroinstall/template
index 3022800b9e2..f46dfcb0362 100644
--- a/srcpkgs/zeroinstall/template
+++ b/srcpkgs/zeroinstall/template
@@ -30,7 +30,6 @@ pre_build() {
 
 zeroinstall-injector_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="zeroinstall-${version}_${revision}"
 }
diff --git a/srcpkgs/zfs-auto-snapshot/template b/srcpkgs/zfs-auto-snapshot/template
index 113dfd3c30b..0a9d0ea7aeb 100644
--- a/srcpkgs/zfs-auto-snapshot/template
+++ b/srcpkgs/zfs-auto-snapshot/template
@@ -2,7 +2,6 @@
 pkgname=zfs-auto-snapshot
 version=1.2.4
 revision=2
-archs=noarch
 wrksrc="${pkgname}-upstream-${version}"
 build_style=gnu-makefile
 short_desc="ZFS automatic snapshot service"
diff --git a/srcpkgs/zfs-prune-snapshots/template b/srcpkgs/zfs-prune-snapshots/template
index 431c2b71db7..5eaba5c26b3 100644
--- a/srcpkgs/zfs-prune-snapshots/template
+++ b/srcpkgs/zfs-prune-snapshots/template
@@ -2,7 +2,6 @@
 pkgname=zfs-prune-snapshots
 version=1.1.0
 revision=2
-archs="noarch"
 build_style=gnu-makefile
 hostmakedepends="make"
 depends="bash zfs"
diff --git a/srcpkgs/zfsbootmenu/template b/srcpkgs/zfsbootmenu/template
index 88c2543394b..68387f60c3b 100644
--- a/srcpkgs/zfsbootmenu/template
+++ b/srcpkgs/zfsbootmenu/template
@@ -2,7 +2,6 @@
 pkgname=zfsbootmenu
 version=1.4.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/zfsbootmenu/config.yaml"
 depends="dracut zfs fzf kexec-tools bash pigz mbuffer
diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 993198a9f63..def5a357e83 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -2,7 +2,6 @@
 pkgname=zim
 version=0.73.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-gobject python3-xdg gtk+3"
 depends="python3-gobject python3-xdg gtk+3 desktop-file-utils"
diff --git a/srcpkgs/zola/template b/srcpkgs/zola/template
index 23ba73020a2..0e6d2337a88 100644
--- a/srcpkgs/zola/template
+++ b/srcpkgs/zola/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 gutenberg_package() {
-	archs=noarch
 	depends="zola-${version}_${revision}"
 	short_desc="Transition package for Zola"
 	pkg_install() {
diff --git a/srcpkgs/zookeeper/template b/srcpkgs/zookeeper/template
index fc972d0ab4a..e5ab729f23e 100644
--- a/srcpkgs/zookeeper/template
+++ b/srcpkgs/zookeeper/template
@@ -2,7 +2,6 @@
 pkgname=zookeeper
 version=3.4.13
 revision=1
-archs=noarch
 depends="virtual?java-runtime"
 short_desc="Distributed hierarchical key-value store"
 maintainer="Mickael Fortunato <morsi.morsicus@gmail.com>"
diff --git a/srcpkgs/zramen/template b/srcpkgs/zramen/template
index 8245a3b7c25..1e446d7dfdb 100644
--- a/srcpkgs/zramen/template
+++ b/srcpkgs/zramen/template
@@ -2,7 +2,6 @@
 pkgname=zramen
 version=0.2.1
 revision=1
-archs=noarch
 depends="virtual?awk bash bc coreutils grep kmod util-linux"
 short_desc="Manage zram swap space"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/zsh-autosuggestions/template b/srcpkgs/zsh-autosuggestions/template
index 5e5b225037c..bccaa490981 100644
--- a/srcpkgs/zsh-autosuggestions/template
+++ b/srcpkgs/zsh-autosuggestions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-autosuggestions
 version=0.6.4
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like autosuggestions for zsh"
 maintainer="vinnyA3 <vincent.aceto@gmail.com>"
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index 2256bf9a127..8bc854c48f9 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-completions
 version=0.32.0
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Additional completions for Zsh"
 maintainer="Alexander Gehrke <void@qwertyuiop.de>"
diff --git a/srcpkgs/zsh-history-substring-search/template b/srcpkgs/zsh-history-substring-search/template
index 151f412cee2..dc84a8e5192 100644
--- a/srcpkgs/zsh-history-substring-search/template
+++ b/srcpkgs/zsh-history-substring-search/template
@@ -2,7 +2,6 @@
 pkgname=zsh-history-substring-search
 version=1.0.2
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like history search feature for zsh"
 maintainer="Young-Jin Park <youngjinpark20@gmail.com>"
diff --git a/srcpkgs/zsh-syntax-highlighting/template b/srcpkgs/zsh-syntax-highlighting/template
index 66b89fedfc8..0e8aabcdf37 100644
--- a/srcpkgs/zsh-syntax-highlighting/template
+++ b/srcpkgs/zsh-syntax-highlighting/template
@@ -2,7 +2,6 @@
 pkgname=zsh-syntax-highlighting
 version=0.7.1
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish shell like syntax highlighting for Zsh"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zynaddsubfx/template b/srcpkgs/zynaddsubfx/template
index 2361d8bd548..26b769db868 100644
--- a/srcpkgs/zynaddsubfx/template
+++ b/srcpkgs/zynaddsubfx/template
@@ -57,7 +57,6 @@ post_install() {
 }
 zynaddsubfx-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/${sourcepkg}
 	}
diff --git a/srcpkgs/zzz-user-hooks/template b/srcpkgs/zzz-user-hooks/template
index 7301509092f..8d9404e48ec 100644
--- a/srcpkgs/zzz-user-hooks/template
+++ b/srcpkgs/zzz-user-hooks/template
@@ -2,7 +2,6 @@
 pkgname=zzz-user-hooks
 version=1.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 checkdepends="shellcheck"

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (35 preceding siblings ...)
  2020-08-21 22:29 ` fosslinux
@ 2020-08-24 23:49 ` fosslinux
  2020-08-24 23:50 ` fosslinux
                   ` (50 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-24 23:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 330 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-679422146

Comment:
@void-linux/pkg-commiters can you guys take a look at this again.

I'm not going to bother continously rebasing the massive srcpkgs commit, I'll just do it once again just before merge.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (36 preceding siblings ...)
  2020-08-24 23:49 ` fosslinux
@ 2020-08-24 23:50 ` fosslinux
  2020-08-24 23:50 ` fosslinux
                   ` (49 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-24 23:50 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 201 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-679422427

Comment:
Uh, @void-linux/pkg-committers

(editing doesn't reping)

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (37 preceding siblings ...)
  2020-08-24 23:50 ` fosslinux
@ 2020-08-24 23:50 ` fosslinux
  2020-08-25 19:47 ` [PR REVIEW] " Chocimier
                   ` (48 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-24 23:50 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 201 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-679422427

Comment:
Uh, @void-linux/pkg-committers

(editing doesn't reping)

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR REVIEW] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (38 preceding siblings ...)
  2020-08-24 23:50 ` fosslinux
@ 2020-08-25 19:47 ` Chocimier
  2020-08-25 19:49 ` Chocimier
                   ` (47 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: Chocimier @ 2020-08-25 19:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 265 bytes --]

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#discussion_r476696502

Comment:
Equivalent to old condition would be `[ -n "$noshlibprovides" ]`, but I do not get intent of its left side of `-o`. 

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (39 preceding siblings ...)
  2020-08-25 19:47 ` [PR REVIEW] " Chocimier
@ 2020-08-25 19:49 ` Chocimier
  2020-08-25 20:02 ` ericonr
                   ` (46 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: Chocimier @ 2020-08-25 19:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 259 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-680234873

Comment:
Don't forget to revbump packages when dropping noarch in template. If rebuilding at once is too much, do in batches.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (40 preceding siblings ...)
  2020-08-25 19:49 ` Chocimier
@ 2020-08-25 20:02 ` ericonr
  2020-08-25 20:19 ` [PR REVIEW] " Chocimier
                   ` (45 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ericonr @ 2020-08-25 20:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 417 bytes --]

New comment by ericonr on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-680241073

Comment:
@Chocimier revbumping in this PR isn't feasible, because undoubtedly a lot of packages will require fixing / updating. We can make an issue about noarch packages that are still in the repo once this is done, IMO. Removing `noarch` from templates is still necessary, of course.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR REVIEW] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (41 preceding siblings ...)
  2020-08-25 20:02 ` ericonr
@ 2020-08-25 20:19 ` Chocimier
  2020-08-25 22:55 ` fosslinux
                   ` (44 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: Chocimier @ 2020-08-25 20:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 301 bytes --]

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#discussion_r476713216

Comment:
So old left side is "Noarchs packges don't have shared libs, but if $shlib_provides is set, run the hook". Please change to `[ -n "$noshlibprovides" ]`.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR REVIEW] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (42 preceding siblings ...)
  2020-08-25 20:19 ` [PR REVIEW] " Chocimier
@ 2020-08-25 22:55 ` fosslinux
  2020-08-25 22:58 ` fosslinux
                   ` (43 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-25 22:55 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 174 bytes --]

New review comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#discussion_r476820541

Comment:
Oh, yeah, so it is, oops.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (43 preceding siblings ...)
  2020-08-25 22:55 ` fosslinux
@ 2020-08-25 22:58 ` fosslinux
  2020-08-27  7:22 ` [PR PATCH] [Updated] " fosslinux
                   ` (42 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-25 22:58 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 675 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-680309483

Comment:
> Don't forget to revbump packages when dropping noarch in template. If rebuilding at once is too much, do in batches.

I plan to do this in a separate PR directly after this PR is merged.

The reason for the drop of `archs=noarch` in all templates is because after the first commit of this PR `archs=noarch` is syntactically incorrect.

I think we can make a distinction between removing noarch from `void-packages`(i.e. what this PR currently does) and removing noarch packages themselves from the mirrors (i.e. revbumping).

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR PATCH] [Updated] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (44 preceding siblings ...)
  2020-08-25 22:58 ` fosslinux
@ 2020-08-27  7:22 ` fosslinux
  2020-08-27  7:22 ` fosslinux
                   ` (41 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-27  7:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

There is an updated pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages noarch
https://github.com/void-linux/void-packages/pull/24357

[wip] common: disable creation of noarch packages.
This change disables the creation of noarch packages.

I believe that most package maintainers are of the same opinion that noarch causes far more problems than it solves. For some time on IRC there has been continued discussion about disabling it. This is what this PR attempts to achieve.

This still supports `archs=noarch` but IMO this is misleading if it dosen't actually create a package with the noarch arch. This is why I have made `archs=noarch` just mean `noarch=yes`. This is how I think all future packages should declare noarch: `noarch=yes`. I also considered `data_only=yes` or `arch_independent=yes` but I don't really like either of those.

The reason noarch even still exists is because it is a useful shorthand for `nodebug=yes`, `nostrip=yes`, etc etc.

The removed 32-bit block about noarch is useless because noarch already forces `noshlibprovides`.

NB: Right now, this is a MVP and still needs some more work.

Pinging @q66 @the-maldridge 

A patch file from https://github.com/void-linux/void-packages/pull/24357.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-noarch-24357.patch --]
[-- Type: text/x-diff, Size: 1077100 bytes --]

From 44a3b458c354af787eab3d11cf829e32f4d53fa4 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Wed, 19 Aug 2020 16:44:41 +1000
Subject: [PATCH 1/3] common: disable creation of noarch packages.

---
 common/hooks/do-pkg/00-gen-pkg.sh                    |  6 ++----
 common/hooks/post-install/06-strip-and-debug-pkgs.sh |  2 +-
 common/hooks/post-pkg/00-register-pkg.sh             |  6 ++----
 common/hooks/pre-pkg/04-generate-runtime-deps.sh     |  2 +-
 common/hooks/pre-pkg/05-prepare-32bit.sh             | 11 -----------
 common/hooks/pre-pkg/06-shlib-provides.sh            |  2 +-
 common/xbps-src/shutils/common.sh                    |  8 +-------
 common/xbps-src/shutils/pkgtarget.sh                 |  2 +-
 8 files changed, 9 insertions(+), 30 deletions(-)

diff --git a/common/hooks/do-pkg/00-gen-pkg.sh b/common/hooks/do-pkg/00-gen-pkg.sh
index b809a6dc5eb..f0b70c8eebb 100644
--- a/common/hooks/do-pkg/00-gen-pkg.sh
+++ b/common/hooks/do-pkg/00-gen-pkg.sh
@@ -104,14 +104,12 @@ hook() {
 	local arch= binpkg= repo= _pkgver= _desc= _pkgn= _pkgv= _provides= \
 		_replaces= _reverts= f= found_dbg_subpkg=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 
diff --git a/common/hooks/post-install/06-strip-and-debug-pkgs.sh b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
index 44d8a51fe93..b59dde5ab3c 100644
--- a/common/hooks/post-install/06-strip-and-debug-pkgs.sh
+++ b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
@@ -59,7 +59,7 @@ create_debug_pkg() {
 hook() {
 	local fname= x= f= _soname= STRIPCMD=
 
-	if [ -n "$nostrip" -o "${archs// /}" = "noarch" ]; then
+	if [ -n "$nostrip" ]; then
 		return 0
 	fi
 
diff --git a/common/hooks/post-pkg/00-register-pkg.sh b/common/hooks/post-pkg/00-register-pkg.sh
index 5dc28c999c9..ce641cfc850 100644
--- a/common/hooks/post-pkg/00-register-pkg.sh
+++ b/common/hooks/post-pkg/00-register-pkg.sh
@@ -13,14 +13,12 @@ registerpkg() {
 hook() {
 	local arch= binpkg= pkgdir=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 	if [ -n "$repository" ]; then
diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
index 6e45b7dd3c3..8ffd3a71d8e 100644
--- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh
+++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
@@ -56,7 +56,7 @@ hook() {
 
     mapshlibs=$XBPS_COMMONDIR/shlibs
 
-    if [ "${archs// /}" = "noarch" -o -n "$noverifyrdeps" ]; then
+    if [ -n "$noverifyrdeps" ]; then
         store_pkgdestdir_rundeps
         return 0
     fi
diff --git a/common/hooks/pre-pkg/05-prepare-32bit.sh b/common/hooks/pre-pkg/05-prepare-32bit.sh
index fd6fdf88217..f3612959cb5 100644
--- a/common/hooks/pre-pkg/05-prepare-32bit.sh
+++ b/common/hooks/pre-pkg/05-prepare-32bit.sh
@@ -20,10 +20,6 @@ hook() {
 	if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
 		return
 	fi 
-	# Ignore noarch pkgs.
-	if [ "${archs// /}" = "noarch" ]; then
-		return
-	fi
 	if [ -z "$lib32mode" ]; then
 		# Library mode, copy only relevant files to new destdir.
 		#
@@ -106,13 +102,6 @@ hook() {
 				printf "${pkgn}-32bit${pkgv} " >> ${destdir32}/rdeps
 				continue
 			fi
-			# If dependency is noarch do not change it to 32bit.
-			_arch=$($XBPS_QUERY_CMD -R --property=architecture "$f")
-			if [ "${_arch}" = "noarch" ]; then
-				echo "   RDEP: $f -> ${pkgn}${pkgv} (noarch)"
-				printf "${pkgn}${pkgv} " >> ${destdir32}/rdeps
-				continue
-			fi
 			# If dependency does not have "shlib-provides" do not
 			# change it to 32bit.
 			for x in ${subpackages}; do
diff --git a/common/hooks/pre-pkg/06-shlib-provides.sh b/common/hooks/pre-pkg/06-shlib-provides.sh
index cdc94de3bc9..fc39f6bfbe4 100644
--- a/common/hooks/pre-pkg/06-shlib-provides.sh
+++ b/common/hooks/pre-pkg/06-shlib-provides.sh
@@ -45,7 +45,7 @@ collect_sonames() {
 hook() {
 	local _destdir32=${XBPS_DESTDIR}/${pkgname}-32bit-${version}
 
-	if [ -z "$shlib_provides" -a "${archs// /}" = "noarch" -o -n "$noshlibprovides" ]; then
+	if [ -n "$noshlibprovides" ]; then
 		return 0
 	fi
 
diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh
index e8bcf577c6b..1564a174bf2 100644
--- a/common/xbps-src/shutils/common.sh
+++ b/common/xbps-src/shutils/common.sh
@@ -395,7 +395,6 @@ setup_pkg() {
         source_file ${XBPS_SRCPKGDIR}/${basepkg}/template
     fi
 
-
     # Check if required vars weren't set.
     _vars="pkgname version short_desc revision homepage license"
     for f in ${_vars}; do
@@ -457,12 +456,7 @@ setup_pkg() {
     fi
     makejobs="-j$XBPS_MAKEJOBS"
 
-    # strip whitespaces to make "  noarch  " valid too.
-    if [ "${archs// /}" = "noarch" ]; then
-        arch="noarch"
-    else
-        arch="$XBPS_TARGET_MACHINE"
-    fi
+    arch="$XBPS_TARGET_MACHINE"
     if [ -n "$XBPS_BINPKG_EXISTS" ]; then
         local _binpkgver="$($XBPS_QUERY_XCMD -R -ppkgver $pkgver 2>/dev/null)"
         if [ "$_binpkgver" = "$pkgver" ]; then
diff --git a/common/xbps-src/shutils/pkgtarget.sh b/common/xbps-src/shutils/pkgtarget.sh
index 090ec5c1a3e..fa70816fe24 100644
--- a/common/xbps-src/shutils/pkgtarget.sh
+++ b/common/xbps-src/shutils/pkgtarget.sh
@@ -3,7 +3,7 @@
 check_pkg_arch() {
     local cross="$1" _arch f match nonegation
 
-    if [ -n "$archs" -a "${archs// /}" != "noarch" ]; then
+    if [ -n "$archs" ]; then
         if [ -n "$cross" ]; then
             _arch="$XBPS_TARGET_MACHINE"
         elif [ -n "$XBPS_ARCH" ]; then

From 7101668773f6d5202863af4522a77ca8fdb78881 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Thu, 27 Aug 2020 17:17:50 +1000
Subject: [PATCH 2/3] Manual.md: remove mentions of noarch.

---
 Manual.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/Manual.md b/Manual.md
index 5502c6e26f8..af5f4019bc3 100644
--- a/Manual.md
+++ b/Manual.md
@@ -711,8 +711,7 @@ used.
 - `fetch_cmd` Executable to be used to fetch URLs in `distfiles` during the `do_fetch` phase.
 
 - `archs` Whitespace separated list of architectures that a package can be
-built for, available architectures can be found under `common/cross-profiles`
-alongside the `noarch` value for packages that do not contain any machine code.
+built for, available architectures can be found under `common/cross-profiles`.
 In general, `archs` should only be set if the upstream software explicitly targets
 certain architectures or there is a compelling reason why the software should not be
 available on some supported architectures.
@@ -725,8 +724,6 @@ Examples:
 	archs="x86_64-musl ~*-musl"
 	# Default value (all arches)
 	archs="*"
-	# Packages that do not depend on architecture-specific objects
-	archs=noarch
 	```
 
 <a id="explain_depends"></a>
@@ -914,8 +911,8 @@ can be used to pass arguments during compilation. If your package does not make
 extensions consider using the `gem` build style instead.
 
 - `gem` For packages that are installed using gems from [RubyGems](https://rubygems.org/).
-The gem command can be overridden by `gem_cmd`. `archs` is set to `noarch` unconditionally
-and `distfiles` is set by the build style if the template does not do so. If your gem
+The gem command can be overridden by `gem_cmd`. 
+`distfiles` is set by the build style if the template does not do so. If your gem
 provides extensions which must be compiled consider using the `gemspec` build style instead.
 
 - `ruby-module` For packages that are ruby modules and are installable via `ruby install.rb`.
@@ -1413,6 +1410,10 @@ destdir (`$DESTDIR`) to the `subpackage` destdir (`$PKGDESTDIR`).
 Subpackages are processed always in alphabetical order; To force a custom order,
 the `subpackages` variable can be declared with the wanted order.
 
+Please note that XBPS makes no distinction between normal packages, and data
+packages. Data packages, documentation packages and binary packages are all
+treated the same way.
+
 <a id="pkgs_development"></a>
 ### Development packages
 
@@ -1451,7 +1452,7 @@ type used to split architecture independent, big(ger) or huge amounts
 of data from a package's main and architecture dependent part. It is up
 to you to decide, if a `-data` subpackage makes sense for your package.
 This type is common for games (graphics, sound and music), part libraries (CAD)
-or card material (maps). Data subpackages are almost always `archs=noarch`.
+or card material (maps).
 The main package must then have `depends="${pkgname}-data-${version}_${revision}"`,
 possibly in addition to other, non-automatic depends.
 
@@ -1589,7 +1590,6 @@ The following variables influence how Haskell packages are built:
 Font packages are very straightforward to write, they are always set with the
 following variables:
 
-- `archs=noarch`: Font packages don't install arch specific files.
 - `depends="font-util"`: because they are required for regenerating the font
 cache during the install/removal of the package
 - `font_dirs`: which should be set to the directory where the package

From ebafca0f843b118e319956c6ad2947ac28df2e1f Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Thu, 27 Aug 2020 17:21:36 +1000
Subject: [PATCH 3/3] srcpkgs: remove archs=noarch.

---
 srcpkgs/0ad-data/template                     |   1 -
 srcpkgs/66/template                           |   1 -
 srcpkgs/7kaa/template                         |   1 -
 srcpkgs/Adapta/template                       |   1 -
 srcpkgs/Autodia/template                      |   1 -
 srcpkgs/CImg/template                         |   1 -
 srcpkgs/Cataclysm-DDA/template                |   2 -
 srcpkgs/Cendric/template                      |   1 -
 srcpkgs/ClusterSSH/template                   |   1 -
 srcpkgs/ETL/template                          |   1 -
 srcpkgs/Electron-Cash/template                |   1 -
 srcpkgs/Fonts-TLWG/template                   |   2 -
 srcpkgs/GCP-Guest-Environment/template        |   1 -
 srcpkgs/Grammalecte/template                  |   1 -
 srcpkgs/ISOEnts/template                      |   1 -
 srcpkgs/Komikku/template                      |   1 -
 srcpkgs/LanguageTool/template                 |   1 -
 srcpkgs/MoinMoin/template                     |   1 -
 srcpkgs/OpenCPN-gshhs-crude/template          |   5 -
 srcpkgs/OpenLP/template                       |   1 -
 srcpkgs/OpenRCT2/template                     |   1 -
 srcpkgs/PhotoCollage/template                 |   1 -
 srcpkgs/ProofGeneral/template                 |   1 -
 srcpkgs/PyInstaller/template                  |   1 -
 srcpkgs/Pyrex/template                        |   1 -
 srcpkgs/ReText/template                       |   1 -
 srcpkgs/SMC/template                          |   1 -
 srcpkgs/SPIRV-Headers/template                |   1 -
 srcpkgs/Solaar/template                       |   1 -
 srcpkgs/TSC/template                          |   1 -
 srcpkgs/TwitchNotifier/template               |   1 -
 srcpkgs/Uranium/template                      |   1 -
 srcpkgs/Vulkan-Headers/template               |   1 -
 srcpkgs/WiringPi/template                     |   1 -
 srcpkgs/WoeUSB/template                       |   1 -
 srcpkgs/XyGrib-maps/template                  |   1 -
 srcpkgs/abcde/template                        |   1 -
 srcpkgs/abi-compliance-checker/template       |   1 -
 srcpkgs/ack/template                          |   1 -
 srcpkgs/acpilight/template                    |   1 -
 srcpkgs/acr/template                          |   1 -
 srcpkgs/adapta-kde/template                   |   1 -
 srcpkgs/adwaita-icon-theme/template           |   1 -
 srcpkgs/adwaita-plus/template                 |   1 -
 srcpkgs/afew/template                         |   1 -
 srcpkgs/aisleriot/template                    |   1 -
 srcpkgs/alacritty/template                    |   1 -
 srcpkgs/albatross-themes/template             |   1 -
 srcpkgs/alienfx/template                      |   1 -
 srcpkgs/alot/template                         |   1 -
 srcpkgs/alsa-firmware/template                |   1 -
 srcpkgs/amiri-font/template                   |   1 -
 srcpkgs/ampache/template                      |   1 -
 srcpkgs/angrysearch/template                  |   1 -
 srcpkgs/anki/template                         |   1 -
 srcpkgs/ansi/template                         |   1 -
 srcpkgs/ansible/template                      |   1 -
 srcpkgs/antlr3-bin/template                   |   1 -
 srcpkgs/apache-ant/template                   |   2 -
 srcpkgs/apache-jmeter/template                |   1 -
 srcpkgs/apache-maven/template                 |   1 -
 srcpkgs/apache-storm/template                 |   1 -
 srcpkgs/apache-tomcat/template                |   3 -
 srcpkgs/apparmor/template                     |   1 -
 srcpkgs/apt/template                          |   1 -
 srcpkgs/arandr/template                       |   1 -
 srcpkgs/arc-theme/template                    |   1 -
 srcpkgs/archlabs-themes/template              |   1 -
 srcpkgs/argtable/template                     |   1 -
 srcpkgs/artwiz-fonts/template                 |   1 -
 srcpkgs/asciidoc/template                     |   1 -
 srcpkgs/asciinema/template                    |   1 -
 srcpkgs/asciiquarium/template                 |   1 -
 srcpkgs/aspell-ru/template                    |   1 -
 srcpkgs/astromenace/template                  |   1 -
 srcpkgs/asus-kbd-backlight/template           |   1 -
 srcpkgs/atool/template                        |   1 -
 srcpkgs/audit/template                        |   1 -
 srcpkgs/auto-auto-complete/template           |   1 -
 srcpkgs/autoconf-archive/template             |   1 -
 srcpkgs/autoconf/template                     |   1 -
 srcpkgs/autoconf213/template                  |   1 -
 srcpkgs/autojump/template                     |   1 -
 srcpkgs/automake/template                     |   1 -
 srcpkgs/autorandr/template                    |   1 -
 srcpkgs/avahi-discover/template               |   4 -
 srcpkgs/avideo/template                       |   1 -
 srcpkgs/awoken-icons/template                 |   3 -
 srcpkgs/aws-cli/template                      |   1 -
 srcpkgs/awsume/template                       |   1 -
 srcpkgs/azote/template                        |   1 -
 srcpkgs/b43-firmware-classic/template         |   1 -
 srcpkgs/b43-firmware/template                 |   1 -
 srcpkgs/bCNC/template                         |   1 -
 srcpkgs/backblaze-b2/template                 |   2 -
 srcpkgs/backintime-qt/template                |   1 -
 srcpkgs/backintime/template                   |   1 -
 srcpkgs/bandit/template                       |   1 -
 srcpkgs/bash-completion/template              |   1 -
 srcpkgs/bash-preexec/template                 |   1 -
 srcpkgs/bashmount/template                    |   1 -
 srcpkgs/bats/template                         |   1 -
 srcpkgs/bdf2psf/template                      |   1 -
 srcpkgs/beard/template                        |   1 -
 srcpkgs/beets/template                        |   1 -
 srcpkgs/betterlockscreen/template             |   1 -
 srcpkgs/biber/template                        |   1 -
 srcpkgs/binutils/template                     |   1 -
 srcpkgs/binwalk/template                      |   1 -
 srcpkgs/biosdisk/template                     |   1 -
 srcpkgs/bitfighter/template                   |   1 -
 srcpkgs/black/template                        |   1 -
 srcpkgs/blackbird-themes/template             |   1 -
 srcpkgs/blackbox/template                     |   1 -
 srcpkgs/blazeblogger/template                 |   1 -
 srcpkgs/bleachbit/template                    |   1 -
 srcpkgs/bluebird-themes/template              |   1 -
 srcpkgs/boost/template                        |   1 -
 srcpkgs/bootiso/template                      |   1 -
 srcpkgs/borgmatic/template                    |   1 -
 srcpkgs/boswars/template                      |   1 -
 srcpkgs/botan/template                        |   1 -
 srcpkgs/breeze-cursors/template               |   8 -
 srcpkgs/breeze/template                       |   1 -
 srcpkgs/brise/template                        |   1 -
 srcpkgs/broadcom-bt-firmware/template         |   1 -
 srcpkgs/bsdbuild/template                     |   1 -
 srcpkgs/btrfs-backup/template                 |   1 -
 srcpkgs/bucklespring/template                 |   1 -
 srcpkgs/buildbot-slave/template               |   1 -
 srcpkgs/buildbot/template                     |   1 -
 srcpkgs/buku/template                         |   1 -
 srcpkgs/buku_run/template                     |   1 -
 srcpkgs/bum/template                          |   1 -
 srcpkgs/bumblebee-status/template             |   1 -
 srcpkgs/burp2-server/template                 |   1 -
 srcpkgs/bwidget/template                      |   1 -
 srcpkgs/byobu/template                        |   1 -
 srcpkgs/bzrtools/template                     |   1 -
 srcpkgs/c/template                            |   1 -
 srcpkgs/ca-certificates/template              |   1 -
 srcpkgs/caffeine-ng/template                  |   1 -
 srcpkgs/calligra/template                     |   1 -
 srcpkgs/cantarell-fonts/template              |   1 -
 srcpkgs/canto-next/template                   |   1 -
 srcpkgs/carton/template                       |   1 -
 srcpkgs/castero/template                      |   1 -
 srcpkgs/catch2/template                       |   1 -
 srcpkgs/catfish/template                      |   1 -
 srcpkgs/ccsm/template                         |   1 -
 srcpkgs/cdemu-client/template                 |   1 -
 srcpkgs/cdm/template                          |   1 -
 srcpkgs/cdogs-sdl/template                    |   1 -
 srcpkgs/cegui/template                        |   2 -
 srcpkgs/cegui07/template                      |   2 -
 srcpkgs/cereal/template                       |   1 -
 srcpkgs/certbot/template                      |   1 -
 srcpkgs/chatty/template                       |   1 -
 srcpkgs/checkbashisms/template                |   1 -
 srcpkgs/checksec/template                     |   1 -
 srcpkgs/cherry-font/template                  |   1 -
 srcpkgs/cherrytree/template                   |   1 -
 srcpkgs/cinnamon-translations/template        |   1 -
 srcpkgs/ckbcomp/template                      |   1 -
 srcpkgs/cldr-emoji-annotation/template        |   1 -
 .../template                                  |   1 -
 srcpkgs/clerk/template                        |   1 -
 srcpkgs/clipmenu/template                     |   1 -
 srcpkgs/cloc/template                         |   1 -
 srcpkgs/clyrics/template                      |   1 -
 srcpkgs/cmake-vala/template                   |   1 -
 srcpkgs/cmc/template                          |   1 -
 srcpkgs/coccigrep/template                    |   1 -
 srcpkgs/coin3/template                        |   1 -
 srcpkgs/collectl/template                     |   1 -
 srcpkgs/colordiff/template                    |   1 -
 srcpkgs/compiz-bcop/template                  |   1 -
 srcpkgs/composer/template                     |   1 -
 srcpkgs/coreboot-utils/template               |   1 -
 srcpkgs/couchpotato/template                  |   1 -
 srcpkgs/coursera-dl/template                  |   1 -
 srcpkgs/cowsay-temoc/template                 |   1 -
 srcpkgs/cowsay/template                       |   1 -
 srcpkgs/cozy/template                         |   1 -
 srcpkgs/cpanminus/template                    |   1 -
 srcpkgs/cpuset/template                       |   1 -
 srcpkgs/create_ap/template                    |   1 -
 srcpkgs/criu/template                         |   1 -
 srcpkgs/ctop/template                         |   1 -
 srcpkgs/culmus/template                       |   1 -
 srcpkgs/cura-fdm-materials/template           |   1 -
 srcpkgs/cura/template                         |   1 -
 srcpkgs/curseradio/template                   |   1 -
 srcpkgs/cvs2svn/template                      |   1 -
 srcpkgs/cycle/template                        |   1 -
 srcpkgs/d-feet/template                       |   1 -
 srcpkgs/db/template                           |   1 -
 srcpkgs/ddclient/template                     |   1 -
 srcpkgs/ddgr/template                         |   1 -
 srcpkgs/deepin-gtk-theme/template             |   1 -
 srcpkgs/deepin-icon-theme/template            |   1 -
 srcpkgs/deerportal/template                   |   1 -
 srcpkgs/deheader/template                     |   1 -
 srcpkgs/dehydrated/template                   |   1 -
 srcpkgs/dejavu-fonts-ttf/template             |   1 -
 srcpkgs/deluge/template                       |   3 -
 srcpkgs/devedeng/template                     |   1 -
 srcpkgs/dex/template                          |   1 -
 srcpkgs/dhcpcd-gtk/template                   |   1 -
 srcpkgs/diffoscope/template                   |   1 -
 srcpkgs/dina-font/template                    |   1 -
 srcpkgs/ditaa/template                        |   1 -
 srcpkgs/dkimproxy/template                    |   2 -
 srcpkgs/dnssec-anchors/template               |   1 -
 srcpkgs/docbook-dsssl/template                |   1 -
 srcpkgs/docbook-xml/template                  |   1 -
 srcpkgs/docbook-xsl-ns/template               |   1 -
 srcpkgs/docbook-xsl/template                  |   1 -
 srcpkgs/docbook/template                      |   1 -
 srcpkgs/docker-compose/template               |   1 -
 srcpkgs/docx2txt/template                     |   1 -
 srcpkgs/dot-xsession/template                 |   1 -
 srcpkgs/downloader-cli/template               |   1 -
 srcpkgs/dpdk/template                         |   1 -
 srcpkgs/dracut/template                       |   1 -
 srcpkgs/dreampie/template                     |   1 -
 srcpkgs/drist/template                        |   1 -
 srcpkgs/dstat/template                        |   1 -
 srcpkgs/dtrx/template                         |   1 -
 srcpkgs/duiadns/template                      |   1 -
 srcpkgs/durden/template                       |   1 -
 srcpkgs/easyrsa/template                      |   1 -
 srcpkgs/econnman/template                     |   1 -
 srcpkgs/edx-dl/template                       |   1 -
 srcpkgs/eigen/template                        |   1 -
 srcpkgs/eigen2/template                       |   1 -
 srcpkgs/eigen3.2/template                     |   1 -
 srcpkgs/ekushey-fonts-ttf/template            |   1 -
 srcpkgs/electrum-ltc/template                 |   1 -
 srcpkgs/electrum/template                     |   1 -
 srcpkgs/emacs-ess/template                    |   1 -
 srcpkgs/emacs/template                        |   1 -
 srcpkgs/emerald-themes/template               |   1 -
 srcpkgs/encodings/template                    |   1 -
 srcpkgs/endless-sky-gl21/template             |   1 -
 srcpkgs/endless-sky/template                  |   1 -
 srcpkgs/enigma/template                       |   2 -
 srcpkgs/envypn-font/template                  |   1 -
 srcpkgs/erlang/template                       |   1 -
 srcpkgs/escrotum/template                     |   1 -
 srcpkgs/eselect/template                      |   1 -
 srcpkgs/etcetera/template                     |   1 -
 srcpkgs/etckeeper/template                    |   1 -
 srcpkgs/etesync-dav/template                  |   1 -
 srcpkgs/etr/template                          |   1 -
 srcpkgs/execline/template                     |   1 -
 srcpkgs/exiftool/template                     |   1 -
 srcpkgs/extra-cmake-modules/template          |   1 -
 srcpkgs/eyeD3/template                        |   1 -
 srcpkgs/faba-icon-theme/template              |   1 -
 srcpkgs/faenza-icon-theme/template            |   1 -
 srcpkgs/faience-icon-theme/template           |   1 -
 srcpkgs/fail2ban/template                     |   1 -
 srcpkgs/fake-hwclock/template                 |   1 -
 srcpkgs/fava/template                         |   1 -
 srcpkgs/fbmenugen/template                    |   1 -
 srcpkgs/ferm/template                         |   1 -
 srcpkgs/fff/template                          |   1 -
 srcpkgs/ffscreencast/template                 |   1 -
 srcpkgs/fgit/template                         |   1 -
 srcpkgs/fierce/template                       |   1 -
 srcpkgs/figlet-fonts/template                 |   1 -
 srcpkgs/fillets-ng/template                   |   1 -
 srcpkgs/flake8/template                       |   2 -
 srcpkgs/flare-engine/template                 |   1 -
 srcpkgs/flare-game/template                   |   1 -
 srcpkgs/flickcurl/template                    |   1 -
 srcpkgs/flightgear/template                   |   1 -
 srcpkgs/flinks/template                       |   1 -
 srcpkgs/flowblade/template                    |   1 -
 srcpkgs/foliate/template                      |   1 -
 srcpkgs/font-3270/template                    |   1 -
 srcpkgs/font-FixedMisc/template               |   1 -
 srcpkgs/font-Hasklig/template                 |   1 -
 srcpkgs/font-Siji/template                    |   1 -
 srcpkgs/font-adobe-100dpi/template            |   1 -
 srcpkgs/font-adobe-75dpi/template             |   1 -
 srcpkgs/font-adobe-source-code-pro/template   |   2 -
 srcpkgs/font-adobe-utopia-100dpi/template     |   1 -
 srcpkgs/font-adobe-utopia-75dpi/template      |   1 -
 srcpkgs/font-adobe-utopia-type1/template      |   1 -
 srcpkgs/font-alias/template                   |   1 -
 srcpkgs/font-awesome/template                 |   1 -
 srcpkgs/font-awesome5/template                |   1 -
 srcpkgs/font-b612/template                    |   1 -
 srcpkgs/font-bh-100dpi/template               |   1 -
 srcpkgs/font-bh-75dpi/template                |   1 -
 .../font-bh-lucidatypewriter-100dpi/template  |   1 -
 .../font-bh-lucidatypewriter-75dpi/template   |   1 -
 srcpkgs/font-bh-ttf/template                  |   1 -
 srcpkgs/font-bh-type1/template                |   1 -
 srcpkgs/font-bitstream-100dpi/template        |   1 -
 srcpkgs/font-bitstream-75dpi/template         |   1 -
 srcpkgs/font-bitstream-speedo/template        |   1 -
 srcpkgs/font-bitstream-type1/template         |   1 -
 srcpkgs/font-cozette/template                 |   1 -
 srcpkgs/font-cursor-misc/template             |   1 -
 srcpkgs/font-daewoo-misc/template             |   1 -
 srcpkgs/font-dec-misc/template                |   1 -
 srcpkgs/font-fantasque-sans-ttf/template      |   1 -
 srcpkgs/font-fira-otf/template                |   2 -
 srcpkgs/font-firacode/template                |   1 -
 srcpkgs/font-fontin/template                  |   1 -
 srcpkgs/font-hack-ttf/template                |   1 -
 srcpkgs/font-hanazono/template                |   1 -
 srcpkgs/font-hermit-otf/template              |   1 -
 srcpkgs/font-ibm-plex-ttf/template            |   1 -
 srcpkgs/font-ibm-type1/template               |   1 -
 srcpkgs/font-inconsolata-otf/template         |   1 -
 srcpkgs/font-ionicons-ttf/template            |   1 -
 srcpkgs/font-iosevka/template                 |   1 -
 srcpkgs/font-isas-misc/template               |   1 -
 srcpkgs/font-jis-misc/template                |   1 -
 srcpkgs/font-kakwafont/template               |   1 -
 srcpkgs/font-libertine-ttf/template           |   2 -
 srcpkgs/font-manjari/template                 |   1 -
 .../font-material-design-icons-ttf/template   |   1 -
 srcpkgs/font-micro-misc/template              |   1 -
 srcpkgs/font-misc-misc/template               |   1 -
 srcpkgs/font-mplus-ttf/template               |   1 -
 srcpkgs/font-mutt-misc/template               |   1 -
 srcpkgs/font-open-dyslexic-ttf/template       |   1 -
 srcpkgs/font-sarasa-gothic/template           |   1 -
 srcpkgs/font-schumacher-misc/template         |   1 -
 srcpkgs/font-sil-abyssinica/template          |   1 -
 srcpkgs/font-sil-alkalami/template            |   1 -
 srcpkgs/font-sil-andika/template              |   1 -
 srcpkgs/font-sil-annapurna/template           |   1 -
 srcpkgs/font-sil-awami-nastaliq/template      |   1 -
 srcpkgs/font-sil-charis/template              |   1 -
 srcpkgs/font-sil-doulos/template              |   1 -
 srcpkgs/font-sil-ezra/template                |   1 -
 srcpkgs/font-sil-galatia/template             |   1 -
 srcpkgs/font-sil-gentium/template             |   1 -
 srcpkgs/font-sil-harmattan/template           |   1 -
 srcpkgs/font-sil-lateef/template              |   1 -
 srcpkgs/font-sil-mingzat/template             |   1 -
 srcpkgs/font-sil-mondulkiri/template          |   1 -
 srcpkgs/font-sil-namdhinggo/template          |   1 -
 srcpkgs/font-sil-nuosu/template               |   1 -
 srcpkgs/font-sil-padauk/template              |   1 -
 srcpkgs/font-sil-scheherazade/template        |   1 -
 srcpkgs/font-sil-sophia-nubian/template       |   1 -
 srcpkgs/font-sil-tai-heritage-pro/template    |   1 -
 srcpkgs/font-sony-misc/template               |   1 -
 srcpkgs/font-spleen/template                  |   1 -
 srcpkgs/font-sun-misc/template                |   1 -
 srcpkgs/font-symbola/template                 |   1 -
 srcpkgs/font-tamsyn/template                  |   1 -
 srcpkgs/font-tamzen/template                  |   1 -
 srcpkgs/font-unifont-bdf/template             |   1 -
 srcpkgs/font-vazir/template                   |   1 -
 srcpkgs/font-vollkorn-ttf/template            |   1 -
 srcpkgs/font-weather-icons/template           |   1 -
 srcpkgs/fontconfig/template                   |   1 -
 srcpkgs/fonts-croscore-ttf/template           |   1 -
 srcpkgs/fonts-droid-ttf/template              |   1 -
 srcpkgs/fonts-nanum-ttf/template              |   1 -
 srcpkgs/fonts-roboto-ttf/template             |   1 -
 srcpkgs/fonttools/template                    |   1 -
 srcpkgs/foomatic-db-nonfree/template          |   1 -
 srcpkgs/foomatic-db/template                  |   1 -
 srcpkgs/foot/template                         |   1 -
 srcpkgs/fortune-mod-anarchism/template        |   1 -
 srcpkgs/fortune-mod-de/template               |   1 -
 srcpkgs/fortune-mod-void/template             |   1 -
 srcpkgs/freedroidRPG/template                 |   1 -
 srcpkgs/freefont-ttf/template                 |   1 -
 srcpkgs/freeorion/template                    |   1 -
 srcpkgs/freepats/template                     |   1 -
 srcpkgs/freeplane/template                    |   1 -
 srcpkgs/freerouting/template                  |   1 -
 srcpkgs/freetds/template                      |   1 -
 srcpkgs/fsharp/template                       |   1 -
 srcpkgs/gajim/template                        |   1 -
 srcpkgs/gallery-dl/template                   |   1 -
 srcpkgs/gandi-cli/template                    |   1 -
 srcpkgs/gccmakedep/template                   |   1 -
 srcpkgs/gcdemu/template                       |   1 -
 srcpkgs/gconfmm/template                      |   1 -
 srcpkgs/gcovr/template                        |   1 -
 srcpkgs/gdash/template                        |   1 -
 srcpkgs/gdown/template                        |   1 -
 srcpkgs/geda/template                         |   2 -
 srcpkgs/gef/template                          |   1 -
 srcpkgs/geoip-data/template                   |   1 -
 srcpkgs/gespeaker/template                    |   1 -
 srcpkgs/geteltorito/template                  |   1 -
 srcpkgs/getmail/template                      |   1 -
 srcpkgs/gettext/template                      |   1 -
 srcpkgs/ghc/template                          |   1 -
 srcpkgs/ghi/template                          |   1 -
 srcpkgs/giac/template                         |   1 -
 srcpkgs/gimme/template                        |   1 -
 srcpkgs/gist/template                         |   1 -
 srcpkgs/git-cal/template                      |   1 -
 srcpkgs/git-cola/template                     |   1 -
 srcpkgs/git-extras/template                   |   1 -
 srcpkgs/git-filter-repo/template              |   1 -
 srcpkgs/git-review/template                   |   1 -
 srcpkgs/git-revise/template                   |   1 -
 srcpkgs/git-secret/template                   |   1 -
 srcpkgs/git-toolbelt/template                 |   1 -
 srcpkgs/git/template                          |   5 -
 srcpkgs/gitflow/template                      |   1 -
 srcpkgs/gitolite/template                     |   1 -
 srcpkgs/glances/template                      |   1 -
 srcpkgs/glibc/template                        |   1 -
 srcpkgs/glibmm/template                       |   1 -
 srcpkgs/glm/template                          |   1 -
 srcpkgs/glog/template                         |   1 -
 srcpkgs/gmsh/template                         |   1 -
 srcpkgs/gmsl/template                         |   1 -
 srcpkgs/gmusicbrowser/template                |   1 -
 srcpkgs/gnome-backgrounds/template            |   1 -
 srcpkgs/gnome-colors-icon-theme/template      |   1 -
 srcpkgs/gnome-common/template                 |   1 -
 srcpkgs/gnome-doc-utils/template              |   1 -
 srcpkgs/gnome-getting-started-docs/template   |   1 -
 srcpkgs/gnome-icon-theme-extras/template      |   1 -
 srcpkgs/gnome-icon-theme-symbolic/template    |   1 -
 srcpkgs/gnome-icon-theme-xfce/template        |   1 -
 srcpkgs/gnome-icon-theme/template             |   1 -
 srcpkgs/gnome-js-common/template              |   1 -
 srcpkgs/gnome-mime-data/template              |   1 -
 srcpkgs/gnome-passwordsafe/template           |   1 -
 srcpkgs/gnome-shell-extensions/template       |   1 -
 srcpkgs/gnome-themes-extra/template           |   1 -
 srcpkgs/gnome-tweaks/template                 |   2 -
 srcpkgs/gnome-user-docs/template              |   1 -
 srcpkgs/gnome-video-effects/template          |   1 -
 srcpkgs/gns3-gui/template                     |   1 -
 srcpkgs/gns3-net-converter/template           |   1 -
 srcpkgs/gnupod/template                       |   1 -
 srcpkgs/gnuradio/template                     |   1 -
 srcpkgs/gnustep-gui/template                  |   1 -
 srcpkgs/gohufont/template                     |   1 -
 srcpkgs/google-cloud-sdk/template             |   1 -
 srcpkgs/google-fonts-ttf/template             |   1 -
 srcpkgs/gpodder/template                      |   1 -
 srcpkgs/gradle/template                       |   1 -
 srcpkgs/gramps/template                       |   1 -
 srcpkgs/grc/template                          |   1 -
 srcpkgs/greg/template                         |   1 -
 srcpkgs/greybird-themes/template              |   1 -
 srcpkgs/grip/template                         |   1 -
 srcpkgs/grml-zsh-config/template              |   1 -
 srcpkgs/groff/template                        |   1 -
 srcpkgs/grub-terminus/template                |   1 -
 srcpkgs/grub/template                         |   5 -
 srcpkgs/gscan2pdf/template                    |   1 -
 srcpkgs/gscreenshot/template                  |   1 -
 srcpkgs/gsfonts/template                      |   1 -
 srcpkgs/gtk-doc/template                      |   1 -
 srcpkgs/gtk-theme-united-gnome/template       |   1 -
 srcpkgs/guake/template                        |   1 -
 srcpkgs/gufw/template                         |   1 -
 srcpkgs/guilt/template                        |   1 -
 srcpkgs/gyazo/template                        |   1 -
 srcpkgs/hamster-applet/template               |   1 -
 srcpkgs/hashboot/template                     |   1 -
 srcpkgs/hedgewars/template                    |   1 -
 srcpkgs/hg-git/template                       |   1 -
 srcpkgs/hicolor-icon-theme/template           |   1 -
 srcpkgs/hiera/template                        |   1 -
 srcpkgs/hostfw/template                       |   1 -
 srcpkgs/hostmux/template                      |   1 -
 srcpkgs/hosts-update/template                 |   1 -
 srcpkgs/httpie/template                       |   2 -
 srcpkgs/hunspell-da_DK/template               |   1 -
 srcpkgs/hunspell-de_CH/template               |   1 -
 srcpkgs/hunspell-de_DE/template               |   1 -
 srcpkgs/hunspell-el_GR/template               |   1 -
 srcpkgs/hunspell-en_AU/template               |   1 -
 srcpkgs/hunspell-en_GB-ize/template           |   1 -
 srcpkgs/hunspell-en_US/template               |   1 -
 srcpkgs/hunspell-es_ES/template               |   1 -
 srcpkgs/hunspell-fr_FR/template               |   4 -
 srcpkgs/hunspell-hr_HR/template               |   1 -
 srcpkgs/hunspell-it_IT/template               |   1 -
 srcpkgs/hunspell-pl_PL/template               |   1 -
 srcpkgs/hunspell-pt_BR/template               |   1 -
 srcpkgs/hunspell-ru_RU-ieyo/template          |   1 -
 srcpkgs/hunspell-ru_RU/template               |   1 -
 srcpkgs/hunspell-sv_SE/template               |   1 -
 srcpkgs/hwids/template                        |   1 -
 srcpkgs/i3blocks-blocklets/template           |   1 -
 srcpkgs/i3lock-fancy/template                 |   1 -
 srcpkgs/iana-etc/template                     |   1 -
 srcpkgs/ibus-avro/template                    |   1 -
 srcpkgs/icdiff/template                       |   2 -
 srcpkgs/ice-ssb/template                      |   1 -
 srcpkgs/icecat/template                       |  93 -----------
 srcpkgs/icedtea-sound/template                |   1 -
 srcpkgs/icon-naming-utils/template            |   1 -
 srcpkgs/imgp/template                         |   1 -
 srcpkgs/indic-otf/template                    |   1 -
 srcpkgs/indicator-doom-cpu/template           |   1 -
 srcpkgs/iniparser/template                    |   2 -
 srcpkgs/intltool/template                     |   1 -
 srcpkgs/inxi/template                         |   1 -
 srcpkgs/io.elementary.stylesheet/template     |   1 -
 srcpkgs/ioprof/template                       |   1 -
 srcpkgs/iotop/template                        |   1 -
 srcpkgs/ipafont-fonts-otf/template            |   1 -
 srcpkgs/ipcalc/template                       |   1 -
 srcpkgs/ipw2100-firmware/template             |   1 -
 srcpkgs/ipw2200-firmware/template             |   1 -
 srcpkgs/iscan-data/template                   |   1 -
 srcpkgs/iso-codes/template                    |   1 -
 srcpkgs/itstool/template                      |   1 -
 srcpkgs/jadx/template                         |   1 -
 srcpkgs/java-commons-io/template              |   1 -
 srcpkgs/javahelp2/template                    |   1 -
 srcpkgs/jrnl/template                         |   1 -
 srcpkgs/kadu/template                         |   1 -
 srcpkgs/kaitai-struct-compiler/template       |   1 -
 srcpkgs/kapidox/template                      |   1 -
 srcpkgs/kbd/template                          |   1 -
 srcpkgs/key-mon/template                      |   1 -
 srcpkgs/keychain/template                     |   1 -
 srcpkgs/khal/template                         |   1 -
 srcpkgs/khard/template                        |   1 -
 srcpkgs/khmer-fonts-ttf/template              |   1 -
 srcpkgs/kicad-footprints/template             |   1 -
 srcpkgs/kicad-i18n/template                   |   1 -
 srcpkgs/kicad-packages3D/template             |   1 -
 srcpkgs/kicad-symbols/template                |   1 -
 srcpkgs/kicad-templates/template              |   1 -
 srcpkgs/kickassembler/template                |   1 -
 srcpkgs/kitty/template                        |   1 -
 srcpkgs/kobodeluxe/template                   |   1 -
 srcpkgs/kodi-binary-addons/template           |   1 -
 srcpkgs/kpcli/template                        |   1 -
 srcpkgs/kshdb/template                        |   1 -
 srcpkgs/kupfer/template                       |   1 -
 srcpkgs/laditools/template                    |   1 -
 srcpkgs/ladspa-sdk/template                   |   2 -
 srcpkgs/laptop-mode/template                  |   1 -
 srcpkgs/leiningen/template                    |   1 -
 srcpkgs/leocad/template                       |   1 -
 srcpkgs/lesspipe/template                     |   1 -
 srcpkgs/lfe/template                          |   1 -
 srcpkgs/lfm/template                          |   1 -
 srcpkgs/lftpfs/template                       |   1 -
 srcpkgs/libbytesize/template                  |   1 -
 srcpkgs/libcap-ng/template                    |   1 -
 srcpkgs/libchewing/template                   |   1 -
 srcpkgs/libclc-git/template                   |   1 -
 srcpkgs/libcppunit/template                   |   1 -
 srcpkgs/libdwarf/template                     |   1 -
 srcpkgs/libe-book/template                    |   1 -
 srcpkgs/liberation-fonts-ttf/template         |   1 -
 srcpkgs/libfreehand/template                  |   1 -
 srcpkgs/libgphoto2/template                   |   1 -
 srcpkgs/libinput-gestures/template            |   1 -
 srcpkgs/libmwaw/template                      |   1 -
 srcpkgs/libosmgpsmap/template                 |   1 -
 srcpkgs/libquvi-scripts/template              |   1 -
 srcpkgs/libreoffice/template                  |   2 -
 srcpkgs/libsearpc/template                    |   2 -
 srcpkgs/libsoxr/template                      |   1 -
 srcpkgs/libvpx5/template                      |   1 -
 srcpkgs/libwaylandpp/template                 |   1 -
 srcpkgs/lightdm-webkit2-greeter/template      |   1 -
 srcpkgs/lilypond-doc/template                 |   1 -
 srcpkgs/linux-firmware-dvb/template           |   1 -
 srcpkgs/linux-firmware/template               |   5 -
 srcpkgs/lltag/template                        |   1 -
 srcpkgs/llvm10/template                       |   1 -
 srcpkgs/llvm6.0/template                      |   1 -
 srcpkgs/llvm7/template                        |   1 -
 srcpkgs/llvm8/template                        |   1 -
 srcpkgs/llvm9/template                        |   1 -
 srcpkgs/lollypop/template                     |   1 -
 srcpkgs/lua54-MessagePack/template            |   1 -
 srcpkgs/lua54-stdlib-debug/template           |   1 -
 srcpkgs/lua54-stdlib-normalize/template       |   1 -
 srcpkgs/lua54-vicious/template                |   1 -
 srcpkgs/luarocks-lua53/template               |   4 -
 srcpkgs/lugaru/template                       |   1 -
 srcpkgs/lutris/template                       |   1 -
 srcpkgs/lxde-common/template                  |   1 -
 srcpkgs/lxde-icon-theme/template              |   1 -
 srcpkgs/lxdm-theme-vdojo/template             |   1 -
 srcpkgs/lxmenu-data/template                  |   1 -
 srcpkgs/lxqt-build-tools/template             |   1 -
 srcpkgs/magic-wormhole/template               |   1 -
 srcpkgs/mailpile/template                     |   1 -
 srcpkgs/make-ca/template                      |   1 -
 srcpkgs/makepasswd/template                   |   1 -
 srcpkgs/makeself/template                     |   1 -
 srcpkgs/man-pages-posix/template              |   1 -
 srcpkgs/man-pages/template                    |   2 -
 srcpkgs/mantablockscreen/template             |   1 -
 srcpkgs/manuskript/template                   |   1 -
 srcpkgs/mariadb/template                      |   1 -
 srcpkgs/marvin/template                       |   1 -
 srcpkgs/mate-applets/template                 |   1 -
 srcpkgs/mate-backgrounds/template             |   1 -
 srcpkgs/mate-common/template                  |   1 -
 srcpkgs/mate-icon-theme-faenza/template       |   1 -
 srcpkgs/mate-icon-theme/template              |   1 -
 srcpkgs/mate-menu/template                    |   1 -
 srcpkgs/mate-themes/template                  |   1 -
 srcpkgs/mate-tweak/template                   |   1 -
 srcpkgs/mate-user-guide/template              |   1 -
 srcpkgs/mathjax/template                      |   1 -
 srcpkgs/maxima/template                       |   3 -
 srcpkgs/mb2md/template                        |   1 -
 srcpkgs/mcomix/template                       |   1 -
 srcpkgs/mdds/template                         |   1 -
 srcpkgs/mdevd/template                        |   1 -
 srcpkgs/med/template                          |   1 -
 srcpkgs/media-player-info/template            |   1 -
 srcpkgs/meld/template                         |   1 -
 srcpkgs/menulibre/template                    |   1 -
 srcpkgs/menumaker/template                    |   1 -
 srcpkgs/menutray/template                     |   1 -
 srcpkgs/meson-cmake-wrapper/template          |   1 -
 srcpkgs/meson/template                        |   1 -
 srcpkgs/mime-types/template                   |   1 -
 srcpkgs/mimeo/template                        |   1 -
 srcpkgs/mimms/template                        |   1 -
 srcpkgs/minigalaxy/template                   |   1 -
 srcpkgs/miro-video-converter/template         |   1 -
 srcpkgs/mkchromecast/template                 |   1 -
 srcpkgs/mkfontscale/template                  |   1 -
 srcpkgs/mkinitcpio-encryptssh/template        |   1 -
 srcpkgs/mkinitcpio/template                   |   6 -
 srcpkgs/mlt/template                          |   3 -
 srcpkgs/mm-common/template                    |   1 -
 .../mobile-broadband-provider-info/template   |   1 -
 srcpkgs/mog/template                          |   1 -
 srcpkgs/mongoose/template                     |   1 -
 srcpkgs/mons/template                         |   1 -
 srcpkgs/mopidy-local/template                 |   1 -
 srcpkgs/mopidy-mpd/template                   |   1 -
 srcpkgs/mopidy/template                       |   1 -
 srcpkgs/mozo/template                         |   1 -
 srcpkgs/mpd-sima/template                     |   1 -
 srcpkgs/mps-youtube/template                  |   1 -
 srcpkgs/msbuild-bin/template                  |   1 -
 srcpkgs/msttcorefonts/template                |   1 -
 srcpkgs/mtm/template                          |   1 -
 srcpkgs/mu/template                           |   1 -
 srcpkgs/mugshot/template                      |   1 -
 srcpkgs/multibootusb/template                 |   1 -
 srcpkgs/mutagen/template                      |   2 -
 srcpkgs/mymcplus/template                     |   1 -
 srcpkgs/mypaint-brushes/template              |   1 -
 srcpkgs/mypaint-brushes1/template             |   1 -
 srcpkgs/myrepos/template                      |   1 -
 srcpkgs/nagstamon/template                    |   1 -
 srcpkgs/nautilus-python/template              |   1 -
 srcpkgs/ncurses/template                      |   2 -
 srcpkgs/neofetch/template                     |   1 -
 srcpkgs/neovim-remote/template                |   1 -
 srcpkgs/nerd-fonts/template                   |   3 -
 srcpkgs/netbsd-wtf/template                   |   1 -
 srcpkgs/netdata/template                      |   2 -
 srcpkgs/netsurf-buildsystem/template          |   1 -
 srcpkgs/nicotine+/template                    |   1 -
 srcpkgs/nmap/template                         |   1 -
 srcpkgs/notmuch/template                      |   3 -
 srcpkgs/noto-fonts-cjk/template               |   1 -
 srcpkgs/noto-fonts-emoji/template             |   1 -
 srcpkgs/noto-fonts-ttf/template               |   1 -
 srcpkgs/novaboot/template                     |   1 -
 srcpkgs/nsss/template                         |   1 -
 srcpkgs/ntp/template                          |   1 -
 srcpkgs/num-utils/template                    |   1 -
 srcpkgs/numix-themes/template                 |   1 -
 srcpkgs/nyx/template                          |   1 -
 srcpkgs/oblogout/template                     |   1 -
 srcpkgs/obmenu-generator/template             |   1 -
 srcpkgs/obmenu/template                       |   1 -
 srcpkgs/offlineimap/template                  |   1 -
 srcpkgs/ohsnap-font/template                  |   1 -
 srcpkgs/ok.sh/template                        |   1 -
 srcpkgs/oniguruma/template                    |   1 -
 srcpkgs/onionshare/template                   |   1 -
 srcpkgs/opencl-clhpp/template                 |   1 -
 srcpkgs/opencl2-headers/template              |   1 -
 srcpkgs/openjdk8/template                     |   4 -
 srcpkgs/openlierox/template                   |   1 -
 srcpkgs/openra/template                       |   1 -
 srcpkgs/openresolv/template                   |   1 -
 srcpkgs/opensonic/template                    |   1 -
 srcpkgs/opensurge/template                    |   1 -
 srcpkgs/opentmpfiles/template                 |   1 -
 srcpkgs/openttd/template                      |   1 -
 srcpkgs/opentyrian/template                   |   1 -
 srcpkgs/orca/template                         |   1 -
 srcpkgs/orjail/template                       |   1 -
 srcpkgs/osinfo-db/template                    |   1 -
 srcpkgs/othman/template                       |   1 -
 srcpkgs/overpass-otf/template                 |   1 -
 srcpkgs/oxygen-icons5/template                |   1 -
 srcpkgs/pam-base/template                     |   1 -
 srcpkgs/pantalaimon/template                  |   1 -
 srcpkgs/paper-gtk-theme/template              |   1 -
 srcpkgs/paper-icon-theme/template             |   1 -
 srcpkgs/papirus-folders/template              |   1 -
 srcpkgs/papirus-icon-theme/template           |   1 -
 srcpkgs/parallel/template                     |   1 -
 srcpkgs/pass-git-helper/template              |   1 -
 srcpkgs/pass-import/template                  |   1 -
 srcpkgs/pass-otp/template                     |   1 -
 srcpkgs/pass-update/template                  |   1 -
 srcpkgs/pass/template                         |   1 -
 srcpkgs/pastebinit/template                   |   1 -
 srcpkgs/pcb/template                          |   1 -
 srcpkgs/pdd/template                          |   1 -
 srcpkgs/pdf.js/template                       |   1 -
 srcpkgs/peframe/template                      |   1 -
 srcpkgs/pelican/template                      |   1 -
 srcpkgs/percona-toolkit/template              |   1 -
 srcpkgs/perl-ACL-Lite/template                |   1 -
 srcpkgs/perl-AWS-Signature4/template          |   1 -
 srcpkgs/perl-Algorithm-Diff/template          |   1 -
 srcpkgs/perl-Alien-Build/template             |   1 -
 srcpkgs/perl-Alien-wxWidgets/template         |   1 -
 srcpkgs/perl-Alien/template                   |   1 -
 srcpkgs/perl-AnyEvent-I3/template             |   1 -
 srcpkgs/perl-AnyEvent/template                |   1 -
 .../perl-Apache-LogFormat-Compiler/template   |   1 -
 srcpkgs/perl-AppConfig/template               |   1 -
 srcpkgs/perl-Archive-Extract/template         |   1 -
 srcpkgs/perl-Archive-Zip/template             |   1 -
 srcpkgs/perl-Authen-SASL/template             |   1 -
 srcpkgs/perl-B-Hooks-EndOfScope/template      |   1 -
 srcpkgs/perl-Business-ISBN-Data/template      |   1 -
 srcpkgs/perl-Business-ISBN/template           |   1 -
 srcpkgs/perl-Business-ISMN/template           |   1 -
 srcpkgs/perl-Business-ISSN/template           |   1 -
 srcpkgs/perl-CGI/template                     |   1 -
 srcpkgs/perl-CPAN-Changes/template            |   1 -
 srcpkgs/perl-CPAN-Common-Index/template       |   1 -
 srcpkgs/perl-CPAN-DistnameInfo/template       |   1 -
 srcpkgs/perl-CPAN-Meta-Check/template         |   1 -
 srcpkgs/perl-Canary-Stability/template        |   1 -
 srcpkgs/perl-Capture-Tiny/template            |   1 -
 srcpkgs/perl-Carp-Clan/template               |   1 -
 srcpkgs/perl-Class-Accessor/template          |   1 -
 srcpkgs/perl-Class-Data-Inheritable/template  |   1 -
 srcpkgs/perl-Class-Factory-Util/template      |   1 -
 srcpkgs/perl-Class-Inspector/template         |   1 -
 srcpkgs/perl-Class-Load/template              |   1 -
 srcpkgs/perl-Class-Method-Modifiers/template  |   1 -
 srcpkgs/perl-Class-Singleton/template         |   1 -
 srcpkgs/perl-Class-Tiny/template              |   1 -
 srcpkgs/perl-Clipboard/template               |   1 -
 srcpkgs/perl-Clone-Choose/template            |   1 -
 srcpkgs/perl-Clone-PP/template                |   1 -
 srcpkgs/perl-Config-AutoConf/template         |   1 -
 srcpkgs/perl-Config-General/template          |   1 -
 .../perl-Config-INI-Reader-Ordered/template   |   1 -
 srcpkgs/perl-Config-INI/template              |   1 -
 srcpkgs/perl-Config-IniFiles/template         |   1 -
 srcpkgs/perl-Config-Simple/template           |   1 -
 srcpkgs/perl-Config-Tiny/template             |   1 -
 srcpkgs/perl-Convert-BinHex/template          |   1 -
 srcpkgs/perl-Cookie-Baker/template            |   1 -
 srcpkgs/perl-Crypt-Blowfish_PP/template       |   1 -
 srcpkgs/perl-Crypt-CBC/template               |   1 -
 srcpkgs/perl-Crypt-DES_EDE3/template          |   1 -
 srcpkgs/perl-Crypt-DH/template                |   1 -
 srcpkgs/perl-Crypt-OpenSSL-Guess/template     |   1 -
 srcpkgs/perl-Crypt-PasswdMD5/template         |   1 -
 srcpkgs/perl-Crypt-RC4/template               |   1 -
 srcpkgs/perl-Danga-Socket/template            |   1 -
 srcpkgs/perl-Data-Compare/template            |   1 -
 srcpkgs/perl-Data-Dump/template               |   1 -
 srcpkgs/perl-Data-Dx/template                 |   1 -
 srcpkgs/perl-Data-OptList/template            |   1 -
 srcpkgs/perl-Data-Section-Simple/template     |   1 -
 srcpkgs/perl-Data-Uniqid/template             |   1 -
 srcpkgs/perl-Data-Validate-IP/template        |   1 -
 srcpkgs/perl-Date-Calc/template               |   1 -
 srcpkgs/perl-Date-Manip/template              |   1 -
 .../perl-DateTime-Calendar-Julian/template    |   1 -
 srcpkgs/perl-DateTime-Format-Builder/template |   1 -
 .../perl-DateTime-Format-Strptime/template    |   1 -
 srcpkgs/perl-DateTime-Locale/template         |   1 -
 srcpkgs/perl-DateTime-TimeZone/template       |   1 -
 srcpkgs/perl-Devel-CheckLib/template          |   1 -
 srcpkgs/perl-Devel-GlobalDestruction/template |   1 -
 srcpkgs/perl-Devel-StackTrace-AsHTML/template |   1 -
 srcpkgs/perl-Devel-StackTrace/template        |   1 -
 srcpkgs/perl-Devel-Symdump/template           |   1 -
 srcpkgs/perl-Digest-HMAC/template             |   1 -
 srcpkgs/perl-Digest-Perl-MD5/template         |   1 -
 srcpkgs/perl-Dist-CheckConflicts/template     |   1 -
 srcpkgs/perl-Email-Date-Format/template       |   1 -
 srcpkgs/perl-Email-FolderType/template        |   1 -
 srcpkgs/perl-Email-LocalDelivery/template     |   1 -
 srcpkgs/perl-Email-MIME-ContentType/template  |   1 -
 srcpkgs/perl-Email-MIME-Encodings/template    |   1 -
 srcpkgs/perl-Email-MIME/template              |   1 -
 srcpkgs/perl-Email-MessageID/template         |   1 -
 srcpkgs/perl-Email-Simple/template            |   1 -
 srcpkgs/perl-Encode-Locale/template           |   1 -
 srcpkgs/perl-Eval-Closure/template            |   1 -
 srcpkgs/perl-Exception-Class/template         |   1 -
 srcpkgs/perl-Expect/template                  |   1 -
 srcpkgs/perl-Exporter-Tiny/template           |   1 -
 srcpkgs/perl-ExtUtils-Config/template         |   1 -
 srcpkgs/perl-ExtUtils-CppGuess/template       |   1 -
 srcpkgs/perl-ExtUtils-Depends/template        |   1 -
 srcpkgs/perl-ExtUtils-Helpers/template        |   1 -
 srcpkgs/perl-ExtUtils-InstallPaths/template   |   1 -
 srcpkgs/perl-ExtUtils-LibBuilder/template     |   1 -
 .../perl-ExtUtils-MakeMaker-CPANfile/template |   1 -
 srcpkgs/perl-ExtUtils-PkgConfig/template      |   1 -
 srcpkgs/perl-ExtUtils-XSpp/template           |   1 -
 srcpkgs/perl-FFI-CheckLib/template            |   1 -
 srcpkgs/perl-File-BaseDir/template            |   1 -
 srcpkgs/perl-File-Copy-Recursive/template     |   1 -
 srcpkgs/perl-File-DesktopEntry/template       |   1 -
 srcpkgs/perl-File-Find-Rule/template          |   1 -
 srcpkgs/perl-File-Flock-Retry/template        |   1 -
 srcpkgs/perl-File-HomeDir/template            |   1 -
 srcpkgs/perl-File-KeePass/template            |   1 -
 srcpkgs/perl-File-Listing/template            |   1 -
 srcpkgs/perl-File-MimeInfo/template           |   1 -
 srcpkgs/perl-File-Next/template               |   1 -
 srcpkgs/perl-File-Path-Expand/template        |   1 -
 srcpkgs/perl-File-Remove/template             |   1 -
 srcpkgs/perl-File-Rename/template             |   1 -
 srcpkgs/perl-File-ShareDir-Install/template   |   1 -
 srcpkgs/perl-File-ShareDir/template           |   1 -
 srcpkgs/perl-File-Slurp-Tiny/template         |   1 -
 srcpkgs/perl-File-Slurp/template              |   1 -
 srcpkgs/perl-File-Slurper/template            |   1 -
 srcpkgs/perl-File-Which/template              |   1 -
 srcpkgs/perl-File-Write-Rotate/template       |   1 -
 srcpkgs/perl-File-chdir/template              |   1 -
 srcpkgs/perl-File-pushd/template              |   1 -
 srcpkgs/perl-Filesys-Notify-Simple/template   |   1 -
 srcpkgs/perl-Font-TTF/template                |   1 -
 srcpkgs/perl-Getopt-Compact/template          |   1 -
 srcpkgs/perl-GooCanvas2/template              |   1 -
 srcpkgs/perl-Graphics-ColorUtils/template     |   1 -
 srcpkgs/perl-Gtk2-Ex-Simple-List/template     |   1 -
 srcpkgs/perl-Gtk3-SimpleList/template         |   1 -
 srcpkgs/perl-Gtk3/template                    |   1 -
 srcpkgs/perl-HTML-Form/template               |   1 -
 srcpkgs/perl-HTML-Tagset/template             |   1 -
 srcpkgs/perl-HTML-Tree/template               |   1 -
 srcpkgs/perl-HTTP-Cookies/template            |   1 -
 srcpkgs/perl-HTTP-Daemon/template             |   1 -
 srcpkgs/perl-HTTP-Date/template               |   1 -
 srcpkgs/perl-HTTP-Entity-Parser/template      |   1 -
 srcpkgs/perl-HTTP-Headers-Fast/template       |   1 -
 srcpkgs/perl-HTTP-Message/template            |   1 -
 srcpkgs/perl-HTTP-MultiPartParser/template    |   1 -
 srcpkgs/perl-HTTP-Negotiate/template          |   1 -
 srcpkgs/perl-HTTP-Response-Encoding/template  |   1 -
 srcpkgs/perl-HTTP-Server-Simple/template      |   1 -
 srcpkgs/perl-HTTP-Tinyish/template            |   1 -
 srcpkgs/perl-Hash-Merge/template              |   1 -
 srcpkgs/perl-Hash-MultiValue/template         |   1 -
 srcpkgs/perl-IO-CaptureOutput/template        |   1 -
 srcpkgs/perl-IO-HTML/template                 |   1 -
 srcpkgs/perl-IO-SessionData/template          |   1 -
 srcpkgs/perl-IO-Socket-INET6/template         |   1 -
 srcpkgs/perl-IO-Socket-SSL/template           |   1 -
 srcpkgs/perl-IO-Socket-Socks/template         |   1 -
 srcpkgs/perl-IO-String/template               |   1 -
 srcpkgs/perl-IO-Stty/template                 |   1 -
 srcpkgs/perl-IO-stringy/template              |   1 -
 srcpkgs/perl-IPC-Run/template                 |   1 -
 srcpkgs/perl-IPC-Run3/template                |   1 -
 srcpkgs/perl-IPC-System-Simple/template       |   1 -
 srcpkgs/perl-Importer/template                |   1 -
 srcpkgs/perl-Inline-C/template                |   1 -
 srcpkgs/perl-Inline/template                  |   1 -
 srcpkgs/perl-JSON-MaybeXS/template            |   1 -
 srcpkgs/perl-JSON/template                    |   1 -
 srcpkgs/perl-Keyword-Declare/template         |   1 -
 srcpkgs/perl-Keyword-Simple/template          |   1 -
 srcpkgs/perl-LWP-MediaTypes/template          |   1 -
 srcpkgs/perl-LWP-Protocol-https/template      |   1 -
 srcpkgs/perl-LWP-Protocol-socks/template      |   1 -
 srcpkgs/perl-LWP/template                     |   1 -
 srcpkgs/perl-Lingua-Translit/template         |   1 -
 srcpkgs/perl-Linux-DesktopFiles/template      |   1 -
 srcpkgs/perl-Linux-Distribution/template      |   1 -
 srcpkgs/perl-List-AllUtils/template           |   1 -
 srcpkgs/perl-List-MoreUtils/template          |   1 -
 srcpkgs/perl-List-SomeUtils/template          |   1 -
 srcpkgs/perl-List-UtilsBy/template            |   1 -
 srcpkgs/perl-Locale-PO/template               |   1 -
 srcpkgs/perl-Log-Log4perl/template            |   1 -
 srcpkgs/perl-MIME-Charset/template            |   1 -
 srcpkgs/perl-MIME-Types/template              |   1 -
 srcpkgs/perl-MIME-tools/template              |   1 -
 srcpkgs/perl-MP3-Info/template                |   1 -
 srcpkgs/perl-MP3-Tag/template                 |   1 -
 srcpkgs/perl-MRO-Compat/template              |   1 -
 srcpkgs/perl-Mail-Box/template                |   1 -
 srcpkgs/perl-Mail-DKIM/template               |   1 -
 srcpkgs/perl-Mail-Message/template            |   1 -
 srcpkgs/perl-Mail-POP3Client/template         |   1 -
 srcpkgs/perl-Mail-Sendmail/template           |   1 -
 srcpkgs/perl-Mail-Transport/template          |   1 -
 srcpkgs/perl-MailTools/template               |   1 -
 srcpkgs/perl-Menlo-Legacy/template            |   1 -
 srcpkgs/perl-Menlo/template                   |   1 -
 srcpkgs/perl-Mixin-Linewise/template          |   1 -
 srcpkgs/perl-Module-Build-Tiny/template       |   1 -
 srcpkgs/perl-Module-Build/template            |   1 -
 srcpkgs/perl-Module-CPANfile/template         |   1 -
 srcpkgs/perl-Module-Find/template             |   1 -
 srcpkgs/perl-Module-Implementation/template   |   1 -
 srcpkgs/perl-Module-Manifest/template         |   1 -
 srcpkgs/perl-Module-Pluggable/template        |   1 -
 srcpkgs/perl-Module-Runtime/template          |   1 -
 srcpkgs/perl-Mojolicious/template             |   1 -
 srcpkgs/perl-Monkey-Patch-Action/template     |   1 -
 srcpkgs/perl-Moo/template                     |   1 -
 srcpkgs/perl-Mozilla-CA/template              |   1 -
 srcpkgs/perl-Net-DNS-Resolver-Mock/template   |   1 -
 srcpkgs/perl-Net-DNS/template                 |   1 -
 srcpkgs/perl-Net-HTTP/template                |   1 -
 srcpkgs/perl-Net-IMAP-Client/template         |   1 -
 srcpkgs/perl-Net-IMAP-Simple/template         |   1 -
 srcpkgs/perl-Net-MPD/template                 |   1 -
 srcpkgs/perl-Net-OpenSSH/template             |   1 -
 srcpkgs/perl-Net-SFTP-Foreign/template        |   1 -
 srcpkgs/perl-Net-SMTP-SSL/template            |   1 -
 srcpkgs/perl-Net-Server/template              |   1 -
 srcpkgs/perl-Number-Compare/template          |   1 -
 srcpkgs/perl-Number-Format/template           |   1 -
 srcpkgs/perl-OLE-Storage_Lite/template        |   1 -
 srcpkgs/perl-Object-MultiType/template        |   1 -
 srcpkgs/perl-Object-Realize-Later/template    |   1 -
 srcpkgs/perl-PDF-API2/template                |   1 -
 srcpkgs/perl-POSIX-strftime-Compiler/template |   1 -
 srcpkgs/perl-PPR/template                     |   1 -
 .../perl-Package-DeprecationManager/template  |   1 -
 srcpkgs/perl-Package-Stash/template           |   1 -
 srcpkgs/perl-Parallel-ForkManager/template    |   1 -
 .../perl-Params-ValidationCompiler/template   |   1 -
 srcpkgs/perl-Parse-CPAN-Meta/template         |   1 -
 srcpkgs/perl-Parse-PMFile/template            |   1 -
 srcpkgs/perl-Parse-RecDescent/template        |   1 -
 srcpkgs/perl-Parse-Yapp/template              |   1 -
 srcpkgs/perl-PatchReader/template             |   1 -
 srcpkgs/perl-Path-Tiny/template               |   1 -
 srcpkgs/perl-Pegex/template                   |   1 -
 .../perl-Plack-Middleware-Deflater/template   |   1 -
 .../template                                  |   1 -
 srcpkgs/perl-Plack/template                   |   1 -
 srcpkgs/perl-Pod-Coverage/template            |   1 -
 srcpkgs/perl-Pod-Simple-Text-Termcap/template |   1 -
 srcpkgs/perl-Probe-Perl/template              |   1 -
 srcpkgs/perl-Proc-Daemontools/template        |   1 -
 srcpkgs/perl-Proc-Govern/template             |   1 -
 srcpkgs/perl-Proc-PID-File/template           |   1 -
 srcpkgs/perl-Readonly/template                |   1 -
 srcpkgs/perl-Ref-Util/template                |   1 -
 srcpkgs/perl-Regexp-Common/template           |   1 -
 srcpkgs/perl-Regexp-Grammars/template         |   1 -
 srcpkgs/perl-Reply/template                   |   1 -
 srcpkgs/perl-Role-Tiny/template               |   1 -
 srcpkgs/perl-SGMLSpm/template                 |   1 -
 srcpkgs/perl-SOAP-Lite/template               |   1 -
 srcpkgs/perl-SUPER/template                   |   1 -
 srcpkgs/perl-Scope-Guard/template             |   1 -
 srcpkgs/perl-Set-IntSpan/template             |   1 -
 srcpkgs/perl-Sort-Naturally/template          |   1 -
 srcpkgs/perl-Sort-Versions/template           |   1 -
 srcpkgs/perl-Specio/template                  |   1 -
 srcpkgs/perl-Spiffy/template                  |   1 -
 srcpkgs/perl-Spreadsheet-ParseExcel/template  |   1 -
 srcpkgs/perl-Spreadsheet-ParseXLSX/template   |   1 -
 srcpkgs/perl-Stow/template                    |   1 -
 srcpkgs/perl-Stream-Buffered/template         |   1 -
 srcpkgs/perl-String-Escape/template           |   1 -
 srcpkgs/perl-String-ShellQuote/template       |   1 -
 srcpkgs/perl-Sub-Delete/template              |   1 -
 .../perl-Sub-Exporter-Progressive/template    |   1 -
 srcpkgs/perl-Sub-Exporter/template            |   1 -
 srcpkgs/perl-Sub-Info/template                |   1 -
 srcpkgs/perl-Sub-Install/template             |   1 -
 srcpkgs/perl-Sub-Quote/template               |   1 -
 srcpkgs/perl-Sub-Uplevel/template             |   1 -
 srcpkgs/perl-Svsh/template                    |   1 -
 srcpkgs/perl-Sys-Syscall/template             |   1 -
 srcpkgs/perl-Term-Animation/template          |   1 -
 srcpkgs/perl-Term-ExtendedColor/template      |   1 -
 srcpkgs/perl-Term-ShellUI/template            |   1 -
 srcpkgs/perl-Term-Table/template              |   1 -
 srcpkgs/perl-Test-Base/template               |   1 -
 srcpkgs/perl-Test-CPAN-Meta/template          |   1 -
 srcpkgs/perl-Test-Class/template              |   1 -
 srcpkgs/perl-Test-Cmd/template                |   1 -
 srcpkgs/perl-Test-Command/template            |   1 -
 srcpkgs/perl-Test-Deep/template               |   1 -
 srcpkgs/perl-Test-Differences/template        |   1 -
 srcpkgs/perl-Test-DistManifest/template       |   1 -
 srcpkgs/perl-Test-Exception/template          |   1 -
 srcpkgs/perl-Test-FailWarnings/template       |   1 -
 srcpkgs/perl-Test-Fatal/template              |   1 -
 srcpkgs/perl-Test-File-ShareDir/template      |   1 -
 srcpkgs/perl-Test-File/template               |   1 -
 srcpkgs/perl-Test-HTTP-Server-Simple/template |   1 -
 srcpkgs/perl-Test-Inter/template              |   1 -
 srcpkgs/perl-Test-MockModule/template         |   1 -
 srcpkgs/perl-Test-Most/template               |   1 -
 srcpkgs/perl-Test-Needs/template              |   1 -
 srcpkgs/perl-Test-NoWarnings/template         |   1 -
 srcpkgs/perl-Test-Output/template             |   1 -
 srcpkgs/perl-Test-Pod-Coverage/template       |   1 -
 srcpkgs/perl-Test-Pod/template                |   1 -
 srcpkgs/perl-Test-Requires/template           |   1 -
 srcpkgs/perl-Test-RequiresInternet/template   |   1 -
 srcpkgs/perl-Test-Script/template             |   1 -
 srcpkgs/perl-Test-SharedFork/template         |   1 -
 srcpkgs/perl-Test-Simple/template             |   1 -
 srcpkgs/perl-Test-Subroutines/template        |   1 -
 srcpkgs/perl-Test-TCP/template                |   1 -
 srcpkgs/perl-Test-Time/template               |   1 -
 srcpkgs/perl-Test-Trap/template               |   1 -
 srcpkgs/perl-Test-UseAllModules/template      |   1 -
 srcpkgs/perl-Test-Warn/template               |   1 -
 srcpkgs/perl-Test-Warnings/template           |   1 -
 srcpkgs/perl-Test-Weaken/template             |   1 -
 srcpkgs/perl-Test-Without-Module/template     |   1 -
 srcpkgs/perl-Test-YAML/template               |   1 -
 srcpkgs/perl-Test-utf8/template               |   1 -
 srcpkgs/perl-Test2-Plugin-NoWarnings/template |   1 -
 srcpkgs/perl-Test2-Suite/template             |   1 -
 srcpkgs/perl-Text-ASCIITable/template         |   1 -
 srcpkgs/perl-Text-Aligner/template            |   1 -
 srcpkgs/perl-Text-Autoformat/template         |   1 -
 srcpkgs/perl-Text-CSV/template                |   1 -
 srcpkgs/perl-Text-Diff/template               |   1 -
 srcpkgs/perl-Text-Glob/template               |   1 -
 srcpkgs/perl-Text-Markdown/template           |   1 -
 srcpkgs/perl-Text-Reform/template             |   1 -
 srcpkgs/perl-Text-Roman/template              |   1 -
 srcpkgs/perl-Text-Table/template              |   1 -
 srcpkgs/perl-Text-Unidecode/template          |   1 -
 srcpkgs/perl-Text-WrapI18N/template           |   1 -
 srcpkgs/perl-Text-XLogfile/template           |   1 -
 srcpkgs/perl-Tie-Cycle/template               |   1 -
 srcpkgs/perl-Tie-Handle-Offset/template       |   1 -
 srcpkgs/perl-Tie-IxHash/template              |   1 -
 srcpkgs/perl-Time-Duration/template           |   1 -
 srcpkgs/perl-Time-modules/template            |   1 -
 srcpkgs/perl-TimeDate/template                |   1 -
 srcpkgs/perl-Tree-DAG_Node/template           |   1 -
 srcpkgs/perl-Try-Tiny/template                |   1 -
 srcpkgs/perl-Types-Serialiser/template        |   1 -
 srcpkgs/perl-URI/template                     |   1 -
 srcpkgs/perl-Unicode-Tussle/template          |   1 -
 srcpkgs/perl-Unix-Uptime/template             |   1 -
 srcpkgs/perl-User-Identity/template           |   1 -
 srcpkgs/perl-WL/template                      |   1 -
 srcpkgs/perl-WWW-Form-UrlEncoded/template     |   1 -
 srcpkgs/perl-WWW-Mechanize/template           |   1 -
 srcpkgs/perl-WWW-RobotRules/template          |   1 -
 srcpkgs/perl-WebService-MusicBrainz/template  |   1 -
 srcpkgs/perl-X11-Protocol-Other/template      |   1 -
 srcpkgs/perl-X11-Protocol/template            |   1 -
 srcpkgs/perl-XML-LibXML-PrettyPrint/template  |   1 -
 srcpkgs/perl-XML-LibXML-Simple/template       |   1 -
 srcpkgs/perl-XML-NamespaceSupport/template    |   1 -
 srcpkgs/perl-XML-Parser-Lite/template         |   1 -
 srcpkgs/perl-XML-SAX-Base/template            |   1 -
 srcpkgs/perl-XML-SAX/template                 |   1 -
 srcpkgs/perl-XML-Simple/template              |   1 -
 srcpkgs/perl-XML-Smart/template               |   1 -
 srcpkgs/perl-XML-Twig/template                |   1 -
 srcpkgs/perl-XML-Writer/template              |   1 -
 srcpkgs/perl-XML-XPath/template               |   1 -
 srcpkgs/perl-YAML-Tiny/template               |   1 -
 srcpkgs/perl-YAML/template                    |   1 -
 srcpkgs/perl-common-sense/template            |   1 -
 srcpkgs/perl-local-lib/template               |   1 -
 srcpkgs/perl-namespace-autoclean/template     |   1 -
 srcpkgs/perl-namespace-clean/template         |   1 -
 srcpkgs/perl-rename/template                  |   1 -
 srcpkgs/perl-strictures/template              |   1 -
 srcpkgs/perl-tainting/template                |   1 -
 srcpkgs/perltidy/template                     |   1 -
 srcpkgs/persepolis/template                   |   1 -
 srcpkgs/peru/template                         |   1 -
 srcpkgs/pex/template                          |   1 -
 srcpkgs/pfetch/template                       |   1 -
 srcpkgs/pgcli/template                        |   1 -
 srcpkgs/phoronix-test-suite/template          |   1 -
 srcpkgs/phpMyAdmin/template                   |   1 -
 srcpkgs/picard/template                       |   1 -
 srcpkgs/pingus/template                       |   1 -
 srcpkgs/pioneer/template                      |   1 -
 srcpkgs/piper/template                        |   1 -
 srcpkgs/pipewire/template                     |   1 -
 srcpkgs/plantuml/template                     |   1 -
 srcpkgs/plasma-workspace-wallpapers/template  |   1 -
 srcpkgs/plata-theme/template                  |   1 -
 srcpkgs/platformio/template                   |   1 -
 srcpkgs/playitslowly/template                 |   1 -
 srcpkgs/plymouth/template                     |   1 -
 srcpkgs/pmbootstrap/template                  |   1 -
 srcpkgs/po4a/template                         |   1 -
 srcpkgs/pockyt/template                       |   1 -
 srcpkgs/podman-compose/template               |   1 -
 srcpkgs/polysh/template                       |   1 -
 srcpkgs/pony-stable/template                  |   1 -
 srcpkgs/ponyc/template                        |   1 -
 srcpkgs/ponysay/template                      |   1 -
 srcpkgs/poppler-data/template                 |   1 -
 srcpkgs/postgresql/template                   |   1 -
 srcpkgs/postgresql12/template                 |   1 -
 srcpkgs/printrun/template                     |   1 -
 srcpkgs/pritunl-client/template               |   1 -
 srcpkgs/profile-cleaner/template              |   1 -
 srcpkgs/protonvpn-cli/template                |   1 -
 srcpkgs/pslist/template                       |   1 -
 srcpkgs/psuinfo/template                      |   1 -
 srcpkgs/public-inbox/template                 |   1 -
 srcpkgs/pulsemixer/template                   |   1 -
 srcpkgs/puppet/template                       |   1 -
 srcpkgs/py3status/template                    |   1 -
 srcpkgs/pychess/template                      |   1 -
 srcpkgs/pycp/template                         |   1 -
 srcpkgs/pylint/template                       |   1 -
 srcpkgs/pyradio/template                      |   1 -
 srcpkgs/pysolfc-cardsets/template             |   1 -
 srcpkgs/pysolfc/template                      |   1 -
 srcpkgs/pystopwatch/template                  |   1 -
 srcpkgs/python-Arrow/template                 |   2 -
 srcpkgs/python-Babel/template                 |   2 -
 srcpkgs/python-BeautifulSoup4/template        |   2 -
 srcpkgs/python-Cheroot/template               |   2 -
 srcpkgs/python-CherryPy/template              |   1 -
 srcpkgs/python-Django/template                |   1 -
 srcpkgs/python-Flask-Assets/template          |   2 -
 srcpkgs/python-Flask-Babel/template           |   2 -
 srcpkgs/python-Flask-Login/template           |   2 -
 srcpkgs/python-Flask-OAuthlib/template        |   2 -
 srcpkgs/python-Flask-Script/template          |   2 -
 srcpkgs/python-Flask-WTF/template             |   2 -
 srcpkgs/python-Flask/template                 |   2 -
 srcpkgs/python-GitPython/template             |   2 -
 srcpkgs/python-IPy/template                   |   2 -
 srcpkgs/python-Jinja2/template                |   2 -
 srcpkgs/python-Mako/template                  |   2 -
 srcpkgs/python-Markdown/template              |   1 -
 srcpkgs/python-Markups/template               |   2 -
 srcpkgs/python-MiniMock/template              |   2 -
 srcpkgs/python-PyHamcrest/template            |   2 -
 srcpkgs/python-PyOpenGL/template              |   2 -
 srcpkgs/python-Pygments/template              |   2 -
 srcpkgs/python-Pyro4/template                 |   2 -
 srcpkgs/python-SPARQLWrapper/template         |   2 -
 srcpkgs/python-Unidecode/template             |   2 -
 srcpkgs/python-WTForms/template               |   2 -
 srcpkgs/python-Werkzeug/template              |   2 -
 srcpkgs/python-Whoosh/template                |   2 -
 srcpkgs/python-Yapsy/template                 |   2 -
 srcpkgs/python-aalib/template                 |   2 -
 srcpkgs/python-alabaster/template             |   2 -
 srcpkgs/python-alembic/template               |   2 -
 srcpkgs/python-ansicolor/template             |   2 -
 srcpkgs/python-appdirs/template               |   2 -
 srcpkgs/python-argh/template                  |   2 -
 srcpkgs/python-arxiv2bib/template             |   2 -
 srcpkgs/python-asn1crypto/template            |   2 -
 srcpkgs/python-astroid/template               |   1 -
 srcpkgs/python-atomicwrites/template          |   2 -
 srcpkgs/python-atspi/template                 |   1 -
 srcpkgs/python-attrs/template                 |   2 -
 srcpkgs/python-audioread/template             |   2 -
 srcpkgs/python-automat/template               |   2 -
 srcpkgs/python-axolotl/template               |   2 -
 srcpkgs/python-b2sdk/template                 |   1 -
 srcpkgs/python-babelfish/template             |   2 -
 srcpkgs/python-backcall/template              |   2 -
 .../python-backports.configparser/template    |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 srcpkgs/python-backports/template             |   1 -
 srcpkgs/python-backports_abc/template         |   1 -
 srcpkgs/python-bibtexparser/template          |   2 -
 srcpkgs/python-bitbucket-api/template         |   2 -
 srcpkgs/python-bleach/template                |   2 -
 srcpkgs/python-blessings/template             |   2 -
 srcpkgs/python-blinker/template               |   2 -
 srcpkgs/python-boto/template                  |   2 -
 srcpkgs/python-botocore/template              |   2 -
 srcpkgs/python-bottle/template                |   2 -
 srcpkgs/python-cached-property/template       |   2 -
 srcpkgs/python-cairocffi/template             |   2 -
 srcpkgs/python-chardet/template               |   2 -
 srcpkgs/python-chroot/template                |   2 -
 srcpkgs/python-cliapp/template                |   1 -
 srcpkgs/python-click-log/template             |   2 -
 srcpkgs/python-click-threading/template       |   2 -
 srcpkgs/python-click/template                 |   2 -
 srcpkgs/python-codespell/template             |   2 -
 srcpkgs/python-colorama/template              |   2 -
 srcpkgs/python-configobj/template             |   2 -
 srcpkgs/python-constantly/template            |   2 -
 srcpkgs/python-construct/template             |   2 -
 srcpkgs/python-contextlib2/template           |   1 -
 srcpkgs/python-cram/template                  |   2 -
 srcpkgs/python-cryptography_vectors/template  |   1 -
 srcpkgs/python-css-parser/template            |   2 -
 srcpkgs/python-cssselect/template             |   2 -
 srcpkgs/python-cssutils/template              |   2 -
 srcpkgs/python-curtsies/template              |   2 -
 srcpkgs/python-cycler/template                |   2 -
 srcpkgs/python-daemonize/template             |   2 -
 srcpkgs/python-dateutil/template              |   2 -
 srcpkgs/python-decorator/template             |   2 -
 srcpkgs/python-defusedxml/template            |   2 -
 srcpkgs/python-discogs_client/template        |   2 -
 srcpkgs/python-distutils-extra/template       |   2 -
 srcpkgs/python-dnspython/template             |   2 -
 srcpkgs/python-docker-pycreds/template        |   2 -
 srcpkgs/python-docker/template                |   2 -
 srcpkgs/python-dockerpty/template             |   2 -
 srcpkgs/python-docopt/template                |   2 -
 srcpkgs/python-docutils/template              |   2 -
 srcpkgs/python-dogpile.cache/template         |   2 -
 srcpkgs/python-dominate/template              |   2 -
 srcpkgs/python-ecdsa/template                 |   2 -
 srcpkgs/python-editor/template                |   2 -
 srcpkgs/python-empy/template                  |   2 -
 srcpkgs/python-enchant/template               |   1 -
 srcpkgs/python-entrypoints/template           |   2 -
 srcpkgs/python-enum34/template                |   1 -
 srcpkgs/python-envdir/template                |   2 -
 srcpkgs/python-enzyme/template                |   2 -
 srcpkgs/python-ewmh/template                  |   2 -
 srcpkgs/python-exifread/template              |   2 -
 srcpkgs/python-fasteners/template             |   2 -
 srcpkgs/python-feedgenerator/template         |   2 -
 srcpkgs/python-feedparser/template            |   2 -
 srcpkgs/python-filetype/template              |   2 -
 srcpkgs/python-flaky/template                 |   2 -
 srcpkgs/python-funcsigs/template              |   1 -
 srcpkgs/python-functools32/template           |   1 -
 srcpkgs/python-future/template                |   2 -
 srcpkgs/python-futures/template               |   1 -
 srcpkgs/python-gitdb/template                 |   2 -
 srcpkgs/python-github3/template               |   2 -
 srcpkgs/python-gitlab/template                |   2 -
 srcpkgs/python-gntp/template                  |   2 -
 srcpkgs/python-gnupg/template                 |   2 -
 srcpkgs/python-gogs-client/template           |   2 -
 srcpkgs/python-guessit/template               |   2 -
 srcpkgs/python-h11/template                   |   2 -
 srcpkgs/python-habanero/template              |   2 -
 srcpkgs/python-hpack/template                 |   2 -
 srcpkgs/python-html2text/template             |   1 -
 srcpkgs/python-html5lib/template              |   2 -
 srcpkgs/python-httmock/template               |   2 -
 srcpkgs/python-httplib2/template              |   2 -
 srcpkgs/python-hyper-h2/template              |   2 -
 srcpkgs/python-hyperframe/template            |   2 -
 srcpkgs/python-hyperlink/template             |   2 -
 srcpkgs/python-hypothesis/template            |   2 -
 srcpkgs/python-icalendar/template             |   2 -
 srcpkgs/python-idna/template                  |   2 -
 srcpkgs/python-imagesize/template             |   2 -
 srcpkgs/python-importlib_metadata/template    |   1 -
 srcpkgs/python-incremental/template           |   2 -
 srcpkgs/python-inotify/template               |   2 -
 srcpkgs/python-ipaddr/template                |   1 -
 srcpkgs/python-ipaddress/template             |   1 -
 srcpkgs/python-iptools/template               |   2 -
 srcpkgs/python-isbnlib/template               |   2 -
 srcpkgs/python-iso-8601/template              |   1 -
 srcpkgs/python-isodate/template               |   2 -
 srcpkgs/python-isort/template                 |   2 -
 srcpkgs/python-itsdangerous/template          |   2 -
 srcpkgs/python-jaraco.functools/template      |   1 -
 srcpkgs/python-jedi/template                  |   2 -
 srcpkgs/python-jmespath/template              |   2 -
 srcpkgs/python-jsonpointer/template           |   2 -
 srcpkgs/python-jsonrpclib/template            |   2 -
 srcpkgs/python-jsonschema/template            |   2 -
 srcpkgs/python-kaptan/template                |   2 -
 srcpkgs/python-keepalive/template             |   2 -
 srcpkgs/python-kitchen/template               |   2 -
 srcpkgs/python-larch/template                 |   1 -
 srcpkgs/python-ldap3/template                 |   2 -
 srcpkgs/python-libtmux/template               |   2 -
 srcpkgs/python-lockfile/template              |   2 -
 srcpkgs/python-logfury/template               |   2 -
 srcpkgs/python-magic/template                 |   2 -
 srcpkgs/python-markdown2/template             |   2 -
 srcpkgs/python-matplotlib/template            |   1 -
 srcpkgs/python-mccabe/template                |   2 -
 srcpkgs/python-mechanize/template             |   2 -
 srcpkgs/python-mistune/template               |   2 -
 srcpkgs/python-mock/template                  |   1 -
 srcpkgs/python-monotonic/template             |   1 -
 srcpkgs/python-more-itertools/template        |   1 -
 srcpkgs/python-mpd2/template                  |   2 -
 srcpkgs/python-mpmath/template                |   2 -
 srcpkgs/python-msp430-tools/template          |   1 -
 srcpkgs/python-mtranslate/template            |   2 -
 srcpkgs/python-munkres/template               |   1 -
 srcpkgs/python-musicbrainzngs/template        |   2 -
 srcpkgs/python-mygpoclient/template           |   2 -
 srcpkgs/python-namedlist/template             |   2 -
 srcpkgs/python-natsort/template               |   2 -
 srcpkgs/python-ndg_httpsclient/template       |   2 -
 srcpkgs/python-netaddr/template               |   2 -
 srcpkgs/python-nose/template                  |   2 -
 srcpkgs/python-nose2/template                 |   2 -
 srcpkgs/python-npyscreen/template             |   2 -
 srcpkgs/python-ntplib/template                |   2 -
 srcpkgs/python-oauth2client/template          |   2 -
 srcpkgs/python-oauthlib/template              |   2 -
 srcpkgs/python-olefile/template               |   2 -
 srcpkgs/python-openssl/template               |   2 -
 srcpkgs/python-packaging/template             |   2 -
 srcpkgs/python-pam/template                   |   2 -
 srcpkgs/python-pandocfilters/template         |   2 -
 srcpkgs/python-paramiko/template              |   2 -
 srcpkgs/python-parse/template                 |   2 -
 srcpkgs/python-parsing/template               |   2 -
 srcpkgs/python-parso/template                 |   1 -
 srcpkgs/python-passlib/template               |   2 -
 srcpkgs/python-pathlib/template               |   1 -
 srcpkgs/python-pathlib2/template              |   2 -
 srcpkgs/python-pathspec/template              |   2 -
 srcpkgs/python-pathtools/template             |   2 -
 srcpkgs/python-pbkdf2/template                |   2 -
 srcpkgs/python-pbr/template                   |   2 -
 srcpkgs/python-pdfrw/template                 |   2 -
 srcpkgs/python-pexpect/template               |   2 -
 srcpkgs/python-pgmigrate/template             |   2 -
 srcpkgs/python-pgpdump/template               |   2 -
 srcpkgs/python-picamera/template              |   2 -
 srcpkgs/python-pickleshare/template           |   2 -
 srcpkgs/python-pip/template                   |   2 -
 srcpkgs/python-pipenv/template                |   2 -
 srcpkgs/python-pkgconfig/template             |   2 -
 srcpkgs/python-pluggy/template                |   1 -
 srcpkgs/python-ply/template                   |   2 -
 srcpkgs/python-podcastparser/template         |   2 -
 srcpkgs/python-polib/template                 |   2 -
 srcpkgs/python-portend/template               |   2 -
 srcpkgs/python-pretend/template               |   1 -
 srcpkgs/python-progress/template              |   2 -
 srcpkgs/python-prometheus_client/template     |   2 -
 srcpkgs/python-prompt_toolkit1/template       |   1 -
 srcpkgs/python-prompt_toolkit2/template       |   1 -
 srcpkgs/python-proselint/template             |   2 -
 srcpkgs/python-protobuf/template              |   2 -
 srcpkgs/python-ptyprocess/template            |   2 -
 srcpkgs/python-py/template                    |   2 -
 srcpkgs/python-pyPEG2/template                |   2 -
 srcpkgs/python-pyacoustid/template            |   2 -
 srcpkgs/python-pyaes/template                 |   2 -
 srcpkgs/python-pyasn1-modules/template        |   2 -
 srcpkgs/python-pyasn1/template                |   2 -
 srcpkgs/python-pycodestyle/template           |   2 -
 srcpkgs/python-pycountry/template             |   2 -
 srcpkgs/python-pycparser/template             |   2 -
 srcpkgs/python-pydns/template                 |   1 -
 srcpkgs/python-pyelftools/template            |   2 -
 srcpkgs/python-pyflakes/template              |   2 -
 srcpkgs/python-pyglet/template                |   2 -
 srcpkgs/python-pykka/template                 |   2 -
 srcpkgs/python-pyotp/template                 |   2 -
 srcpkgs/python-pypcapfile/template            |   1 -
 srcpkgs/python-pyperclip/template             |   2 -
 srcpkgs/python-pyqtgraph/template             |   2 -
 srcpkgs/python-pyrfc3339/template             |   2 -
 srcpkgs/python-pyserial/template              |   2 -
 srcpkgs/python-pysocks/template               |   2 -
 srcpkgs/python-pysrt/template                 |   2 -
 srcpkgs/python-pystache/template              |   2 -
 srcpkgs/python-pyte/template                  |   2 -
 srcpkgs/python-pytest-fixture-config/template |   2 -
 srcpkgs/python-pytest-mock/template           |   2 -
 srcpkgs/python-pytest/template                |   1 -
 srcpkgs/python-pytz/template                  |   2 -
 srcpkgs/python-pyudev/template                |   2 -
 srcpkgs/python-pyx/template                   |   1 -
 srcpkgs/python-pyzbar/template                |   2 -
 srcpkgs/python-qrcode/template                |   2 -
 srcpkgs/python-random2/template               |   2 -
 srcpkgs/python-rarfile/template               |   2 -
 srcpkgs/python-raven/template                 |   2 -
 srcpkgs/python-rdflib/template                |   2 -
 srcpkgs/python-readability-lxml/template      |   2 -
 srcpkgs/python-rebulk/template                |   2 -
 srcpkgs/python-redis/template                 |   2 -
 srcpkgs/python-requests-mock/template         |   2 -
 srcpkgs/python-requests-oauthlib/template     |   2 -
 srcpkgs/python-requests-toolbelt/template     |   2 -
 srcpkgs/python-requests/template              |   2 -
 srcpkgs/python-rfc6555/template               |   2 -
 srcpkgs/python-ripe-atlas-cousteau/template   |   2 -
 srcpkgs/python-ripe-atlas-sagan/template      |   2 -
 srcpkgs/python-rsa/template                   |   2 -
 srcpkgs/python-s3transfer/template            |   2 -
 srcpkgs/python-scour/template                 |   2 -
 srcpkgs/python-selectors2/template            |   1 -
 srcpkgs/python-send2trash/template            |   2 -
 srcpkgs/python-serpent/template               |   1 -
 srcpkgs/python-service_identity/template      |   2 -
 srcpkgs/python-setuptools/template            |   1 -
 srcpkgs/python-sh/template                    |   2 -
 srcpkgs/python-simplebayes/template           |   2 -
 srcpkgs/python-simplegeneric/template         |   2 -
 srcpkgs/python-singledispatch/template        |   1 -
 srcpkgs/python-six/template                   |   2 -
 srcpkgs/python-smmap/template                 |   2 -
 srcpkgs/python-snowballstemmer/template       |   2 -
 srcpkgs/python-socketIO-client/template       |   2 -
 srcpkgs/python-soupsieve/template             |   2 -
 srcpkgs/python-spambayes/template             |   1 -
 srcpkgs/python-sqlalchemy-migrate/template    |   2 -
 srcpkgs/python-sqlparse/template              |   2 -
 srcpkgs/python-stem/template                  |   2 -
 srcpkgs/python-stevedore/template             |   2 -
 srcpkgs/python-stormssh/template              |   2 -
 srcpkgs/python-subliminal/template            |   2 -
 srcpkgs/python-tempita/template               |   2 -
 srcpkgs/python-tempora/template               |   2 -
 srcpkgs/python-termcolor/template             |   2 -
 srcpkgs/python-terminado/template             |   2 -
 srcpkgs/python-testpath/template              |   2 -
 srcpkgs/python-texttable/template             |   2 -
 srcpkgs/python-tkinter/template               |   1 -
 srcpkgs/python-tmuxp/template                 |   2 -
 srcpkgs/python-toml/template                  |   2 -
 srcpkgs/python-tqdm/template                  |   2 -
 srcpkgs/python-tracing/template               |   1 -
 srcpkgs/python-ttystatus/template             |   2 -
 srcpkgs/python-tweepy/template                |   2 -
 srcpkgs/python-twitter/template               |   2 -
 srcpkgs/python-txgithub/template              |   1 -
 srcpkgs/python-typing/template                |   1 -
 srcpkgs/python-unittest-mixins/template       |   2 -
 srcpkgs/python-urbandict/template             |   2 -
 srcpkgs/python-uritemplate/template           |   2 -
 srcpkgs/python-urllib3/template               |   2 -
 srcpkgs/python-urlnorm/template               |   1 -
 srcpkgs/python-urwidtrees/template            |   2 -
 srcpkgs/python-utils/template                 |   2 -
 srcpkgs/python-vint/template                  |   2 -
 srcpkgs/python-vispy/template                 |   1 -
 srcpkgs/python-vobject/template               |   2 -
 srcpkgs/python-voluptuous/template            |   1 -
 srcpkgs/python-watchdog/template              |   2 -
 srcpkgs/python-wcwidth/template               |   2 -
 srcpkgs/python-webassets/template             |   2 -
 srcpkgs/python-webencodings/template          |   2 -
 srcpkgs/python-websocket-client/template      |   2 -
 srcpkgs/python-wheel/template                 |   2 -
 srcpkgs/python-wikipedia/template             |   2 -
 srcpkgs/python-wsproto/template               |   2 -
 srcpkgs/python-xdg/template                   |   2 -
 srcpkgs/python-xlib/template                  |   2 -
 srcpkgs/python-xmldiff/template               |   3 -
 srcpkgs/python-xmltodict/template             |   2 -
 srcpkgs/python-yamllint/template              |   2 -
 srcpkgs/python-zc.lockfile/template           |   2 -
 srcpkgs/python-zipp/template                  |   1 -
 srcpkgs/python-zipstream/template             |   2 -
 srcpkgs/python3-3to2/template                 |   1 -
 srcpkgs/python3-CherryPy/template             |   1 -
 srcpkgs/python3-ConfigArgParse/template       |   1 -
 srcpkgs/python3-Django/template               |   1 -
 srcpkgs/python3-EasyProcess/template          |   1 -
 srcpkgs/python3-Flask-Mail/template           |   1 -
 srcpkgs/python3-Flask-RESTful/template        |   1 -
 srcpkgs/python3-Flask-SQLAlchemy/template     |   1 -
 srcpkgs/python3-Flask-User/template           |   1 -
 srcpkgs/python3-Inflector/template            |   1 -
 srcpkgs/python3-Markdown/template             |   1 -
 srcpkgs/python3-MechanicalSoup/template       |   1 -
 srcpkgs/python3-Pebble/template               |   1 -
 srcpkgs/python3-PyBrowserID/template          |   1 -
 srcpkgs/python3-PyFxA/template                |   1 -
 srcpkgs/python3-PyPDF2/template               |   1 -
 srcpkgs/python3-PyVirtualDisplay/template     |   1 -
 srcpkgs/python3-QtPy/template                 |   1 -
 srcpkgs/python3-ReParser/template             |   1 -
 srcpkgs/python3-Ropper/template               |   1 -
 srcpkgs/python3-SecretStorage/template        |   1 -
 srcpkgs/python3-SoCo/template                 |   1 -
 srcpkgs/python3-Sphinx/template               |   1 -
 srcpkgs/python3-Telethon/template             |   1 -
 srcpkgs/python3-TxSNI/template                |   1 -
 srcpkgs/python3-WebOb/template                |   1 -
 srcpkgs/python3-XlsxWriter/template           |   1 -
 srcpkgs/python3-acme/template                 |   1 -
 srcpkgs/python3-aioamqp/template              |   1 -
 srcpkgs/python3-aiodns/template               |   1 -
 srcpkgs/python3-aiofiles/template             |   1 -
 srcpkgs/python3-aiohttp-cors/template         |   1 -
 srcpkgs/python3-aiohttp-cors2/template        |   1 -
 srcpkgs/python3-aiohttp-sse-client/template   |   1 -
 srcpkgs/python3-aiohttp_socks/template        |   1 -
 srcpkgs/python3-aioinflux/template            |   1 -
 srcpkgs/python3-aionotify/template            |   1 -
 srcpkgs/python3-aioredis/template             |   1 -
 srcpkgs/python3-aiorpcx/template              |   1 -
 srcpkgs/python3-altgraph/template             |   1 -
 srcpkgs/python3-aniso8601/template            |   1 -
 srcpkgs/python3-ansible-lint/template         |   1 -
 srcpkgs/python3-anytree/template              |   1 -
 srcpkgs/python3-applib/template               |   1 -
 srcpkgs/python3-argcomplete/template          |   1 -
 srcpkgs/python3-astral/template               |   1 -
 srcpkgs/python3-astroid/template              |   1 -
 srcpkgs/python3-async-timeout/template        |   1 -
 srcpkgs/python3-async_generator/template      |   1 -
 srcpkgs/python3-atspi/template                |   1 -
 srcpkgs/python3-authres/template              |   1 -
 srcpkgs/python3-autobahn/template             |   1 -
 srcpkgs/python3-blessed/template              |   1 -
 srcpkgs/python3-boltons/template              |   1 -
 srcpkgs/python3-boto3/template                |   1 -
 srcpkgs/python3-breathe/template              |   1 -
 srcpkgs/python3-cachetools/template           |   1 -
 srcpkgs/python3-canonicaljson/template        |   1 -
 srcpkgs/python3-casttube/template             |   1 -
 srcpkgs/python3-certifi/template              |   1 -
 srcpkgs/python3-changelogs/template           |   1 -
 srcpkgs/python3-chess/template                |   1 -
 srcpkgs/python3-chromecast/template           |   1 -
 srcpkgs/python3-cjkwrap/template              |   1 -
 srcpkgs/python3-cli-ui/template               |   1 -
 srcpkgs/python3-cli_helpers/template          |   1 -
 srcpkgs/python3-click-plugins/template        |   1 -
 srcpkgs/python3-cloudscraper/template         |   1 -
 srcpkgs/python3-cmdln/template                |   1 -
 srcpkgs/python3-colorclass/template           |   1 -
 srcpkgs/python3-crccheck/template             |   1 -
 srcpkgs/python3-dateparser/template           |   1 -
 srcpkgs/python3-dbusmock/template             |   1 -
 srcpkgs/python3-deprecation/template          |   1 -
 srcpkgs/python3-discid/template               |   1 -
 srcpkgs/python3-distlib/template              |   1 -
 srcpkgs/python3-dkimpy/template               |   2 -
 srcpkgs/python3-doi/template                  |   1 -
 srcpkgs/python3-dpkt/template                 |   1 -
 srcpkgs/python3-easygui/template              |   1 -
 srcpkgs/python3-elementpath/template          |   1 -
 srcpkgs/python3-eliot/template                |   1 -
 srcpkgs/python3-enchant/template              |   1 -
 srcpkgs/python3-etesync/template              |   1 -
 srcpkgs/python3-ffmpeg-python/template        |   1 -
 srcpkgs/python3-fido2/template                |   1 -
 srcpkgs/python3-filebytes/template            |   1 -
 srcpkgs/python3-fishnet/template              |   1 -
 srcpkgs/python3-flexmock/template             |   1 -
 srcpkgs/python3-freezegun/template            |   1 -
 srcpkgs/python3-frozendict/template           |   1 -
 srcpkgs/python3-furl/template                 |   1 -
 srcpkgs/python3-geojson/template              |   1 -
 srcpkgs/python3-gitchangelog/template         |   1 -
 srcpkgs/python3-google-api-core/template      |   1 -
 .../python3-google-api-python-client/template |   1 -
 srcpkgs/python3-google-auth-httplib2/template |   1 -
 srcpkgs/python3-google-auth/template          |   1 -
 .../python3-googleapis-common-protos/template |   1 -
 srcpkgs/python3-graphviz/template             |   1 -
 srcpkgs/python3-hawkauthlib/template          |   1 -
 srcpkgs/python3-hjson/template                |   1 -
 srcpkgs/python3-hkdf/template                 |   1 -
 srcpkgs/python3-html2text/template            |   1 -
 srcpkgs/python3-humanize/template             |   1 -
 srcpkgs/python3-hypercorn/template            |   1 -
 srcpkgs/python3-i3ipc/template                |   1 -
 srcpkgs/python3-idna-ssl/template             |   1 -
 srcpkgs/python3-ifaddr/template               |   1 -
 srcpkgs/python3-influxdb/template             |   1 -
 srcpkgs/python3-ipython/template              |   1 -
 srcpkgs/python3-ipython_genutils/template     |   1 -
 srcpkgs/python3-ipython_ipykernel/template    |   1 -
 srcpkgs/python3-irc/template                  |   1 -
 srcpkgs/python3-itunespy/template             |   1 -
 srcpkgs/python3-janus/template                |   1 -
 srcpkgs/python3-jaraco.classes/template       |   1 -
 srcpkgs/python3-jaraco.collections/template   |   1 -
 srcpkgs/python3-jaraco.functools/template     |   1 -
 srcpkgs/python3-jaraco.text/template          |   1 -
 srcpkgs/python3-jaraco/template               |   1 -
 srcpkgs/python3-jeepney/template              |   1 -
 srcpkgs/python3-josepy/template               |   1 -
 srcpkgs/python3-jsondiff/template             |   1 -
 srcpkgs/python3-jsonrpc-server/template       |   1 -
 srcpkgs/python3-jupyter_client/template       |   1 -
 srcpkgs/python3-jupyter_console/template      |   1 -
 srcpkgs/python3-jupyter_core/template         |   2 -
 srcpkgs/python3-jupyter_ipywidgets/template   |   1 -
 srcpkgs/python3-jupyter_nbconvert/template    |   1 -
 srcpkgs/python3-jupyter_nbformat/template     |   1 -
 srcpkgs/python3-jupyter_notebook/template     |   1 -
 srcpkgs/python3-jupyter_qtconsole/template    |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-keyring/template              |   1 -
 srcpkgs/python3-keyrings-alt/template         |   1 -
 srcpkgs/python3-language-server/template      |   1 -
 srcpkgs/python3-macaroons/template            |   1 -
 srcpkgs/python3-macholib/template             |   1 -
 srcpkgs/python3-markdown-math/template        |   1 -
 srcpkgs/python3-marshmallow/template          |   1 -
 srcpkgs/python3-matplotlib/template           |   1 -
 srcpkgs/python3-matrix-nio/template           |   1 -
 srcpkgs/python3-minidb/template               |   1 -
 srcpkgs/python3-mock/template                 |   1 -
 srcpkgs/python3-more-itertools/template       |   1 -
 srcpkgs/python3-mpv/template                  |   1 -
 srcpkgs/python3-msoffcrypto-tool/template     |   1 -
 srcpkgs/python3-munkres/template              |   1 -
 srcpkgs/python3-musicpd/template              |   1 -
 srcpkgs/python3-mypy/template                 |   1 -
 srcpkgs/python3-mypy_extensions/template      |   1 -
 srcpkgs/python3-nbxmpp/template               |   2 -
 srcpkgs/python3-neovim/template               |   1 -
 srcpkgs/python3-networkx/template             |   1 -
 srcpkgs/python3-nose-random/template          |   1 -
 srcpkgs/python3-notify2/template              |   1 -
 srcpkgs/python3-ntlm-auth/template            |   1 -
 srcpkgs/python3-oletools/template             |   1 -
 srcpkgs/python3-opcua/template                |   1 -
 srcpkgs/python3-orderedmultidict/template     |   1 -
 srcpkgs/python3-pafy/template                 |   1 -
 srcpkgs/python3-pamqp/template                |   1 -
 srcpkgs/python3-parsedatetime/template        |   1 -
 srcpkgs/python3-parso/template                |   1 -
 srcpkgs/python3-path-and-address/template     |   1 -
 srcpkgs/python3-pcodedmp/template             |   1 -
 srcpkgs/python3-pefile/template               |   1 -
 srcpkgs/python3-pem/template                  |   1 -
 srcpkgs/python3-perf/template                 |   1 -
 srcpkgs/python3-pgspecial/template            |   1 -
 srcpkgs/python3-pgzero/template               |   1 -
 srcpkgs/python3-phonenumbers/template         |   1 -
 srcpkgs/python3-pipx/template                 |   1 -
 srcpkgs/python3-pkginfo/template              |   1 -
 srcpkgs/python3-plotly/template               |   1 -
 srcpkgs/python3-pluggy/template               |   1 -
 srcpkgs/python3-pmw/template                  |   1 -
 srcpkgs/python3-precis-i18n/template          |   1 -
 srcpkgs/python3-priority/template             |   1 -
 srcpkgs/python3-prompt_toolkit/template       |   1 -
 srcpkgs/python3-pulsectl/template             |   1 -
 srcpkgs/python3-pure-protobuf/template        |   1 -
 srcpkgs/python3-py-cpuinfo/template           |   1 -
 srcpkgs/python3-pybind11/template             |   1 -
 srcpkgs/python3-pycollada/template            |   1 -
 srcpkgs/python3-pydbus/template               |   1 -
 srcpkgs/python3-pyfavicon/template            |   1 -
 srcpkgs/python3-pyfiglet/template             |   1 -
 srcpkgs/python3-pyinfra/template              |   1 -
 srcpkgs/python3-pykeepass/template            |   1 -
 srcpkgs/python3-pykwalify/template            |   1 -
 srcpkgs/python3-pylast/template               |   1 -
 srcpkgs/python3-pylibgen/template             |   1 -
 srcpkgs/python3-pylru/template                |   1 -
 srcpkgs/python3-pypandoc/template             |   1 -
 srcpkgs/python3-pysdl2/template               |   1 -
 srcpkgs/python3-pyside2/template              |   4 -
 srcpkgs/python3-pysigset/template             |   1 -
 srcpkgs/python3-pytest-asyncio/template       |   1 -
 srcpkgs/python3-pytest-cov/template           |   1 -
 srcpkgs/python3-pytest-qt/template            |   1 -
 srcpkgs/python3-pytest-xvfb/template          |   1 -
 srcpkgs/python3-pytest/template               |   1 -
 srcpkgs/python3-pythondialog/template         |   1 -
 srcpkgs/python3-pytools/template              |   1 -
 srcpkgs/python3-pywinrm/template              |   1 -
 srcpkgs/python3-pyx/template                  |   1 -
 srcpkgs/python3-quart/template                |   1 -
 srcpkgs/python3-readlike/template             |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-requests-file/template        |   1 -
 srcpkgs/python3-requests-ntlm/template        |   1 -
 srcpkgs/python3-requests-unixsocket/template  |   1 -
 srcpkgs/python3-rss2email/template            |   1 -
 srcpkgs/python3-rtree/template                |   1 -
 srcpkgs/python3-s-tui/template                |   1 -
 srcpkgs/python3-saml2/template                |   1 -
 srcpkgs/python3-scruffy/template              |   1 -
 srcpkgs/python3-semanticversion/template      |   1 -
 srcpkgs/python3-sentry/template               |   1 -
 srcpkgs/python3-serpent/template              |   1 -
 srcpkgs/python3-setuptools/template           |   1 -
 srcpkgs/python3-shodan/template               |   1 -
 srcpkgs/python3-signedjson/template           |   1 -
 srcpkgs/python3-slugify/template              |   1 -
 srcpkgs/python3-sortedcontainers/template     |   1 -
 srcpkgs/python3-spake2/template               |   1 -
 srcpkgs/python3-sphinx_rtd_theme/template     |   1 -
 .../python3-sphinxcontrib-applehelp/template  |   1 -
 .../python3-sphinxcontrib-devhelp/template    |   1 -
 .../python3-sphinxcontrib-htmlhelp/template   |   1 -
 srcpkgs/python3-sphinxcontrib-jsmath/template |   1 -
 srcpkgs/python3-sphinxcontrib-qthelp/template |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-sphinxcontrib/template        |   1 -
 srcpkgs/python3-subunit/template              |   1 -
 srcpkgs/python3-svg.path/template             |   1 -
 srcpkgs/python3-sympy/template                |   1 -
 srcpkgs/python3-tabulate/template             |   1 -
 srcpkgs/python3-terminaltables/template       |   1 -
 srcpkgs/python3-text-unidecode/template       |   1 -
 srcpkgs/python3-tinycss/template              |   1 -
 srcpkgs/python3-tkinter/template              |   1 -
 srcpkgs/python3-tldextract/template           |   1 -
 srcpkgs/python3-traitlets/template            |   1 -
 srcpkgs/python3-transifex-client/template     |   1 -
 srcpkgs/python3-treq/template                 |   1 -
 srcpkgs/python3-trimesh/template              |   1 -
 srcpkgs/python3-txacme/template               |   1 -
 srcpkgs/python3-txaio/template                |   1 -
 srcpkgs/python3-txtorcon/template             |   1 -
 srcpkgs/python3-typing_extensions/template    |   1 -
 srcpkgs/python3-tzlocal/template              |   1 -
 srcpkgs/python3-unpaddedbase64/template       |   1 -
 srcpkgs/python3-urlgrabber/template           |   1 -
 srcpkgs/python3-usb/template                  |   1 -
 srcpkgs/python3-userpath/template             |   1 -
 srcpkgs/python3-validators/template           |   1 -
 srcpkgs/python3-virtualenv-clone/template     |   1 -
 srcpkgs/python3-virtualenv/template           |   1 -
 srcpkgs/python3-virustotal-api/template       |   1 -
 srcpkgs/python3-xapp/template                 |   1 -
 srcpkgs/python3-xdg-variables/template        |   1 -
 srcpkgs/python3-xlrd/template                 |   1 -
 srcpkgs/python3-xmlschema/template            |   1 -
 srcpkgs/python3-yapf/template                 |   1 -
 srcpkgs/python3-youtube-search/template       |   1 -
 srcpkgs/python3-yoyo-migrations/template      |   1 -
 srcpkgs/python3-zeroconf/template             |   1 -
 .../python3-zope.cachedescriptors/template    |   1 -
 srcpkgs/python3-zope.component/template       |   1 -
 srcpkgs/python3-zope.configuration/template   |   1 -
 srcpkgs/python3-zope.copy/template            |   1 -
 srcpkgs/python3-zope.deferredimport/template  |   1 -
 srcpkgs/python3-zope.deprecation/template     |   1 -
 srcpkgs/python3-zope.event/template           |   1 -
 srcpkgs/python3-zope.exceptions/template      |   1 -
 srcpkgs/python3-zope.hookable/template        |   1 -
 srcpkgs/python3-zope.location/template        |   1 -
 srcpkgs/python3-zope.schema/template          |   1 -
 srcpkgs/python3-zope.testing/template         |   1 -
 srcpkgs/python3-zope.testrunner/template      |   1 -
 srcpkgs/pywal/template                        |   1 -
 srcpkgs/qalculate/template                    |   1 -
 srcpkgs/qdirstat/template                     |   1 -
 srcpkgs/qmc2-flyers/template                  |   1 -
 srcpkgs/qmc2-snapshots/template               |   1 -
 srcpkgs/qmc2/template                         |   1 -
 srcpkgs/qmk/template                          |   1 -
 srcpkgs/qomui/template                        |   1 -
 srcpkgs/qrintf/template                       |   1 -
 srcpkgs/qtcreator/template                    |   1 -
 srcpkgs/quixand/template                      |   1 -
 srcpkgs/quodlibet/template                    |   1 -
 srcpkgs/qytdl/template                        |   1 -
 srcpkgs/racket/template                       |   1 -
 srcpkgs/radicale/template                     |   1 -
 srcpkgs/radicale2/template                    |   1 -
 srcpkgs/ranger/template                       |   1 -
 srcpkgs/rapidjson/template                    |   1 -
 srcpkgs/rapidxml/template                     |   1 -
 srcpkgs/rapydscript-ng/template               |   1 -
 srcpkgs/rcm/template                          |   1 -
 srcpkgs/rdumpfs/template                      |   1 -
 srcpkgs/rebar3/template                       |   1 -
 srcpkgs/rednotebook/template                  |   1 -
 srcpkgs/remhind/template                      |   1 -
 srcpkgs/rex/template                          |   1 -
 srcpkgs/rinse/template                        |   1 -
 srcpkgs/ripe-atlas-tools/template             |   1 -
 srcpkgs/rkhunter/template                     |   1 -
 srcpkgs/rocksndiamonds/template               |   1 -
 srcpkgs/rpi-firmware/template                 |   1 -
 srcpkgs/rpmextract/template                   |   1 -
 srcpkgs/rsnapshot/template                    |   1 -
 srcpkgs/rtl8812au-dkms/template               |   1 -
 srcpkgs/rtl8822bu-dkms/template               |   1 -
 srcpkgs/rubber/template                       |   1 -
 srcpkgs/ruby-addressable/template             |   1 -
 srcpkgs/ruby-asciidoctor/template             |   1 -
 srcpkgs/ruby-concurrent-ruby/template         |   1 -
 srcpkgs/ruby-connection_pool/template         |   1 -
 srcpkgs/ruby-deep_merge/template              |   1 -
 srcpkgs/ruby-ethon/template                   |   1 -
 srcpkgs/ruby-faraday/template                 |   1 -
 srcpkgs/ruby-faraday_middleware/template      |   1 -
 srcpkgs/ruby-filesize/template                |   1 -
 srcpkgs/ruby-gh/template                      |   1 -
 srcpkgs/ruby-highline/template                |   1 -
 srcpkgs/ruby-httparty/template                |   1 -
 srcpkgs/ruby-launchy/template                 |   1 -
 srcpkgs/ruby-manpages/template                |   1 -
 srcpkgs/ruby-mime-types-data/template         |   1 -
 srcpkgs/ruby-mime-types/template              |   1 -
 srcpkgs/ruby-multi_json/template              |   1 -
 srcpkgs/ruby-multi_xml/template               |   1 -
 srcpkgs/ruby-multipart-post/template          |   1 -
 srcpkgs/ruby-mustache/template                |   1 -
 srcpkgs/ruby-net-http-persistent/template     |   1 -
 srcpkgs/ruby-net-http-pipeline/template       |   1 -
 srcpkgs/ruby-public_suffix/template           |   1 -
 srcpkgs/ruby-pusher-client/template           |   1 -
 srcpkgs/ruby-rainbow/template                 |   1 -
 srcpkgs/ruby-rb-readline/template             |   1 -
 srcpkgs/ruby-ronn/template                    |   1 -
 srcpkgs/ruby-rubysl-singleton/template        |   1 -
 srcpkgs/ruby-semantic_puppet/template         |   1 -
 srcpkgs/ruby-sync/template                    |   1 -
 srcpkgs/ruby-travis/template                  |   1 -
 srcpkgs/ruby-typhoeus/template                |   1 -
 srcpkgs/ruby-websocket/template               |   1 -
 srcpkgs/ruby/template                         |   2 -
 srcpkgs/run-mailcap/template                  |   1 -
 srcpkgs/runelite-launcher/template            |   1 -
 srcpkgs/runit-iptables/template               |   1 -
 srcpkgs/runit-kdump/template                  |   1 -
 srcpkgs/runit-nftables/template               |   1 -
 srcpkgs/runit-swap/template                   |   1 -
 srcpkgs/rust/template                         |   1 -
 srcpkgs/rxvt-unicode/template                 |   1 -
 srcpkgs/s3cmd/template                        |   1 -
 srcpkgs/s6-dns/template                       |   1 -
 srcpkgs/s6-linux-utils/template               |   1 -
 srcpkgs/s6-networking/template                |   1 -
 srcpkgs/s6-portable-utils/template            |   1 -
 srcpkgs/s6-rc/template                        |   1 -
 srcpkgs/s6/template                           |   1 -
 srcpkgs/sabnzbd/template                      |   1 -
 srcpkgs/safeeyes/template                     |   1 -
 srcpkgs/salt/template                         |   1 -
 srcpkgs/sandfox/template                      |   1 -
 srcpkgs/sauerbraten/template                  |   1 -
 srcpkgs/sbcl/template                         |   1 -
 srcpkgs/sbt/template                          |   1 -
 srcpkgs/scanmem/template                      |   1 -
 srcpkgs/scapy/template                        |   1 -
 srcpkgs/schedule/template                     |   1 -
 srcpkgs/screenFetch/template                  |   1 -
 srcpkgs/screenkey/template                    |   1 -
 srcpkgs/screenplain/template                  |   1 -
 srcpkgs/seafile-libclient/template            |   2 -
 srcpkgs/sendEmail/template                    |   1 -
 srcpkgs/setconf/template                      |   2 -
 srcpkgs/shared-color-targets/template         |   1 -
 srcpkgs/shared-desktop-ontologies/template    |   1 -
 srcpkgs/shiboken2/template                    |   2 -
 srcpkgs/shorewall/template                    |   3 -
 srcpkgs/shunit2/template                      |   1 -
 srcpkgs/sickbeard/template                    |   1 -
 srcpkgs/signond/template                      |   1 -
 srcpkgs/sigrok-firmware-fx2lafw/template      |   1 -
 srcpkgs/skalibs/template                      |   1 -
 srcpkgs/slim-void-theme/template              |   1 -
 srcpkgs/snazzer/template                      |   1 -
 srcpkgs/sonata/template                       |   1 -
 srcpkgs/sound-icons/template                  |   1 -
 srcpkgs/sound-theme-freedesktop/template      |   1 -
 srcpkgs/soundconverter/template               |   1 -
 srcpkgs/soundfont-fluid/template              |   1 -
 srcpkgs/source-sans-pro/template              |   1 -
 srcpkgs/spampd/template                       |   1 -
 srcpkgs/sparsehash/template                   |   1 -
 srcpkgs/spdx-licenses-list/template           |   4 -
 srcpkgs/spectre-meltdown-checker/template     |   1 -
 srcpkgs/speed-dreams/template                 |   1 -
 srcpkgs/speedometer/template                  |   1 -
 srcpkgs/speedtest-cli/template                |   1 -
 srcpkgs/spice-protocol/template               |   1 -
 srcpkgs/sqlmap/template                       |   1 -
 srcpkgs/ssh-audit/template                    |   1 -
 srcpkgs/sshuttle/template                     |   1 -
 srcpkgs/ssoma/template                        |   1 -
 srcpkgs/st/template                           |   1 -
 srcpkgs/starfighter/template                  |   1 -
 srcpkgs/startup/template                      |   1 -
 srcpkgs/statnot/template                      |   1 -
 srcpkgs/stcgal/template                       |   1 -
 srcpkgs/steam-fonts/template                  |   1 -
 srcpkgs/stellarium/template                   |   1 -
 srcpkgs/stig/template                         |   1 -
 srcpkgs/stk/template                          |   1 -
 srcpkgs/stlarch-font/template                 |   1 -
 srcpkgs/stow/template                         |   1 -
 srcpkgs/straw-viewer/template                 |   1 -
 srcpkgs/streamlink/template                   |   1 -
 srcpkgs/strip-nondeterminism/template         |   1 -
 srcpkgs/supertux2/template                    |   1 -
 srcpkgs/supertuxkart/template                 |   1 -
 srcpkgs/surfraw/template                      |   1 -
 srcpkgs/sv-helper/template                    |   1 -
 srcpkgs/swaks/template                        |   1 -
 srcpkgs/sway/template                         |   1 -
 srcpkgs/synapse/template                      |   1 -
 srcpkgs/syncplay/template                     |   1 -
 srcpkgs/syncthing-gtk/template                |   1 -
 srcpkgs/system-config-printer/template        |   1 -
 srcpkgs/t-prot/template                       |   1 -
 srcpkgs/t2ec/template                         |   1 -
 srcpkgs/taisei/template                       |   1 -
 srcpkgs/tango-icon-theme/template             |   1 -
 srcpkgs/tcllib/template                       |   1 -
 srcpkgs/tdrop/template                        |   1 -
 srcpkgs/tegaki-zinnia-japanese/template       |   1 -
 srcpkgs/tekaim/template                       |   1 -
 srcpkgs/telepathy-python/template             |   1 -
 srcpkgs/telepresence/template                 |   1 -
 srcpkgs/termdown/template                     |   1 -
 srcpkgs/terminal_markdown_viewer/template     |   1 -
 srcpkgs/terminator/template                   |   1 -
 srcpkgs/terminus-font/template                |   1 -
 srcpkgs/termsyn-font/template                 |   1 -
 srcpkgs/termtosvg/template                    |   1 -
 srcpkgs/tesseract-ocr/template                | 156 ------------------
 srcpkgs/testssl.sh/template                   |   1 -
 srcpkgs/tewi-font/template                    |   1 -
 srcpkgs/texi2html/template                    |   1 -
 srcpkgs/texlive-basic/template                |   1 -
 srcpkgs/texlive-bibtexextra/template          |   1 -
 srcpkgs/texlive-core/template                 |   1 -
 srcpkgs/texlive-fontsextra/template           |   1 -
 srcpkgs/texlive-formatsextra/template         |   1 -
 srcpkgs/texlive-full/template                 |   1 -
 srcpkgs/texlive-games/template                |   1 -
 srcpkgs/texlive-humanities/template           |   1 -
 srcpkgs/texlive-lang/template                 |   1 -
 srcpkgs/texlive-langchinese/template          |   1 -
 srcpkgs/texlive-langcyrillic/template         |   1 -
 srcpkgs/texlive-langextra/template            |   1 -
 srcpkgs/texlive-langgreek/template            |   1 -
 srcpkgs/texlive-langjapanese/template         |   1 -
 srcpkgs/texlive-langkorean/template           |   1 -
 srcpkgs/texlive-latexextra/template           |   1 -
 srcpkgs/texlive-minimal/template              |   1 -
 srcpkgs/texlive-most/template                 |   1 -
 srcpkgs/texlive-music/template                |   1 -
 srcpkgs/texlive-pictures/template             |   1 -
 srcpkgs/texlive-pstricks/template             |   1 -
 srcpkgs/texlive-publishers/template           |   1 -
 srcpkgs/texlive-science/template              |   1 -
 srcpkgs/thefuck/template                      |   1 -
 srcpkgs/thinkpad-scripts/template             |   1 -
 srcpkgs/tlp/template                          |   2 -
 srcpkgs/tmux-xpanes/template                  |   1 -
 srcpkgs/tmuxc/template                        |   1 -
 srcpkgs/todoman/template                      |   1 -
 srcpkgs/toot/template                         |   1 -
 srcpkgs/tpm/template                          |   1 -
 srcpkgs/trackma/template                      |   1 -
 srcpkgs/treeline/template                     |   1 -
 srcpkgs/tremc/template                        |   1 -
 srcpkgs/trident-icons/template                |   1 -
 srcpkgs/triehash/template                     |   1 -
 srcpkgs/tryton/template                       |   1 -
 srcpkgs/ttf-bitstream-vera/template           |   1 -
 srcpkgs/ttf-material-icons/template           |   1 -
 srcpkgs/ttf-ubuntu-font-family/template       |   1 -
 srcpkgs/tuimoji/template                      |   1 -
 srcpkgs/tuir/template                         |   2 -
 srcpkgs/turses/template                       |   1 -
 srcpkgs/tuxpaint-stamps/template              |   1 -
 srcpkgs/tuxpaint/template                     |   1 -
 srcpkgs/tvbrowser/template                    |   1 -
 srcpkgs/twaindsm/template                     |   1 -
 srcpkgs/twemoji/template                      |   1 -
 srcpkgs/txt2man/template                      |   1 -
 srcpkgs/tzdata/template                       |   1 -
 srcpkgs/tzupdate/template                     |   1 -
 srcpkgs/u-boot-menu/template                  |   1 -
 srcpkgs/uberwriter/template                   |   1 -
 srcpkgs/udiskie/template                      |   1 -
 srcpkgs/ufetch/template                       |   1 -
 srcpkgs/ufoai/template                        |   1 -
 srcpkgs/ufw-extras/template                   |   1 -
 srcpkgs/ufw/template                          |   1 -
 srcpkgs/uhd/template                          |   1 -
 srcpkgs/unicode-emoji/template                |   1 -
 srcpkgs/unknown-horizons/template             |   1 -
 srcpkgs/unoconv/template                      |   1 -
 srcpkgs/unp/template                          |   1 -
 srcpkgs/urbanterror-data/template             |   1 -
 srcpkgs/urlscan/template                      |   1 -
 srcpkgs/urlwatch/template                     |   1 -
 srcpkgs/urxvt-perls/template                  |   1 -
 srcpkgs/usb-modeswitch-data/template          |   1 -
 srcpkgs/vala-panel-appmenu/template           |   1 -
 srcpkgs/vala/template                         |   1 -
 srcpkgs/variety/template                      |   1 -
 srcpkgs/vdirsyncer/template                   |   1 -
 srcpkgs/vdrift/template                       |   1 -
 srcpkgs/vidcutter/template                    |   1 -
 srcpkgs/vigra/template                        |   1 -
 srcpkgs/vim-colorschemes/template             |   1 -
 srcpkgs/vim-gnupg/template                    |   1 -
 srcpkgs/vim/template                          |   1 -
 srcpkgs/vips/template                         |   1 -
 srcpkgs/virt-manager/template                 |   2 -
 srcpkgs/virtme/template                       |   1 -
 srcpkgs/virtualbox-ose/template               |   2 -
 srcpkgs/virtualenvwrapper/template            |   1 -
 srcpkgs/visidata/template                     |   1 -
 srcpkgs/void-artwork/template                 |   1 -
 srcpkgs/void-docs/template                    |   1 -
 srcpkgs/void-release-keys/template            |   1 -
 srcpkgs/void-repo-nonfree/template            |   2 -
 srcpkgs/void-updates/template                 |   1 -
 srcpkgs/volctl/template                       |   1 -
 srcpkgs/voltron/template                      |   1 -
 srcpkgs/vpm/template                          |   1 -
 srcpkgs/vpnc-scripts/template                 |   1 -
 srcpkgs/vpnd/template                         |   1 -
 srcpkgs/vsv/template                          |   1 -
 srcpkgs/warsow-data/template                  |   1 -
 srcpkgs/warzone2100/template                  |   1 -
 srcpkgs/wayland-protocols/template            |   1 -
 srcpkgs/weather/template                      |   1 -
 srcpkgs/wee-slack/template                    |   1 -
 srcpkgs/wesnoth/template                      |   1 -
 srcpkgs/wfuzz/template                        |   1 -
 srcpkgs/wgetpaste/template                    |   1 -
 srcpkgs/when/template                         |   1 -
 srcpkgs/wicd/template                         |   2 -
 srcpkgs/widelands-maps/template               |   1 -
 srcpkgs/widelands/template                    |   1 -
 srcpkgs/wifi-firmware/template                |   1 -
 srcpkgs/wifish/template                       |   1 -
 srcpkgs/wine-gecko/template                   |   1 -
 srcpkgs/wine-mono/template                    |   1 -
 srcpkgs/wine/template                         |   1 -
 srcpkgs/winetricks/template                   |   1 -
 srcpkgs/wok/template                          |   1 -
 srcpkgs/words-mnemonic/template               |   1 -
 srcpkgs/words-web2/template                   |   1 -
 srcpkgs/wpgtk/template                        |   1 -
 srcpkgs/wpull/template                        |   1 -
 srcpkgs/wqy-microhei/template                 |   1 -
 srcpkgs/xapian-core/template                  |   1 -
 srcpkgs/xbitmaps/template                     |   1 -
 srcpkgs/xbps-triggers/template                |   1 -
 srcpkgs/xcb-proto/template                    |   1 -
 srcpkgs/xcursor-themes/template               |   1 -
 srcpkgs/xcursor-vanilla-dmz/template          |   1 -
 srcpkgs/xdg-utils/template                    |   1 -
 srcpkgs/xdgmenumaker/template                 |   1 -
 srcpkgs/xdot/template                         |   1 -
 srcpkgs/xed/template                          |   1 -
 srcpkgs/xerces-c/template                     |   1 -
 srcpkgs/xfwm4-themes/template                 |   1 -
 srcpkgs/xkb-qwerty-fr/template                |   1 -
 srcpkgs/xkcdpass/template                     |   1 -
 srcpkgs/xkeyboard-config/template             |   1 -
 srcpkgs/xmltoman/template                     |   1 -
 srcpkgs/xmoto/template                        |   1 -
 srcpkgs/xonotic-data-low/template             |   1 -
 srcpkgs/xonotic-data/template                 |   1 -
 srcpkgs/xonsh/template                        |   1 -
 srcpkgs/xorg-cf-files/template                |   1 -
 srcpkgs/xorg-util-macros/template             |   1 -
 srcpkgs/xtools/template                       |   1 -
 srcpkgs/xtrans/template                       |   1 -
 srcpkgs/xye/template                          |   1 -
 srcpkgs/yadm/template                         |   1 -
 srcpkgs/yaru-plus/template                    |   1 -
 srcpkgs/yaru/template                         |   1 -
 srcpkgs/yelp-tools/template                   |   1 -
 srcpkgs/yelp-xsl/template                     |   1 -
 srcpkgs/you-get/template                      |   1 -
 srcpkgs/youtube-dl/template                   |   1 -
 srcpkgs/youtube-viewer/template               |   1 -
 srcpkgs/yq/template                           |   1 -
 srcpkgs/ytcc/template                         |   1 -
 srcpkgs/ytmdl/template                        |   1 -
 srcpkgs/yturl/template                        |   1 -
 srcpkgs/yubikey-manager/template              |   1 -
 srcpkgs/zabbix/template                       |   1 -
 srcpkgs/zd1211-firmware/template              |   1 -
 srcpkgs/zeek/template                         |   3 -
 srcpkgs/zeroinstall/template                  |   1 -
 srcpkgs/zfs-auto-snapshot/template            |   1 -
 srcpkgs/zfs-prune-snapshots/template          |   1 -
 srcpkgs/zfsbootmenu/template                  |   1 -
 srcpkgs/zim/template                          |   1 -
 srcpkgs/zola/template                         |   1 -
 srcpkgs/zookeeper/template                    |   1 -
 srcpkgs/zramen/template                       |   1 -
 srcpkgs/zsh-autosuggestions/template          |   1 -
 srcpkgs/zsh-completions/template              |   1 -
 srcpkgs/zsh-history-substring-search/template |   1 -
 srcpkgs/zsh-syntax-highlighting/template      |   1 -
 srcpkgs/zynaddsubfx/template                  |   1 -
 srcpkgs/zzz-user-hooks/template               |   1 -
 2115 files changed, 2747 deletions(-)

diff --git a/srcpkgs/0ad-data/template b/srcpkgs/0ad-data/template
index 325dfbf5cc6..f9e93d4c324 100644
--- a/srcpkgs/0ad-data/template
+++ b/srcpkgs/0ad-data/template
@@ -2,7 +2,6 @@
 pkgname=0ad-data
 version=0.0.23b
 revision=1
-archs=noarch
 wrksrc="0ad-${version}-alpha"
 short_desc="Historically-based real-time strategy game (data files)"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/66/template b/srcpkgs/66/template
index ccd676575f9..cd81c7d184d 100644
--- a/srcpkgs/66/template
+++ b/srcpkgs/66/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 66-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}-${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/7kaa/template b/srcpkgs/7kaa/template
index 0c0cb4dd4f6..693881b2ecf 100644
--- a/srcpkgs/7kaa/template
+++ b/srcpkgs/7kaa/template
@@ -21,7 +21,6 @@ pre_configure() {
 }
 
 7kaa-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	license="MIT"
 	pkg_install() {
diff --git a/srcpkgs/Adapta/template b/srcpkgs/Adapta/template
index 03a736b1cc8..7c1029ba44a 100644
--- a/srcpkgs/Adapta/template
+++ b/srcpkgs/Adapta/template
@@ -2,7 +2,6 @@
 pkgname=Adapta
 version=3.95.0.11
 revision=2
-archs=noarch
 wrksrc="adapta-gtk-theme-$version"
 build_style=gnu-configure
 hostmakedepends="automake glib-devel inkscape parallel pkg-config
diff --git a/srcpkgs/Autodia/template b/srcpkgs/Autodia/template
index 83cb4e1fcca..8e91247e940 100644
--- a/srcpkgs/Autodia/template
+++ b/srcpkgs/Autodia/template
@@ -2,7 +2,6 @@
 pkgname=Autodia
 version=2.14
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/CImg/template b/srcpkgs/CImg/template
index a1df4972bfc..2db3a8d4108 100644
--- a/srcpkgs/CImg/template
+++ b/srcpkgs/CImg/template
@@ -2,7 +2,6 @@
 pkgname=CImg
 version=2.9.1
 revision=1
-archs=noarch
 wrksrc="CImg-v.${version}"
 depends="libgraphicsmagick-devel fftw-devel"
 short_desc="Open-source C++ toolkit for image processing"
diff --git a/srcpkgs/Cataclysm-DDA/template b/srcpkgs/Cataclysm-DDA/template
index 6b7ef57eed1..b04b27b7d32 100644
--- a/srcpkgs/Cataclysm-DDA/template
+++ b/srcpkgs/Cataclysm-DDA/template
@@ -57,7 +57,6 @@ Cataclysm-DDA-tiles_package() {
 
 Cataclysm-DDA-tiles-data_package() {
 	short_desc+=" - tiles data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cataclysm-dda/gfx
 		vmove usr/share/cataclysm-dda/sound
@@ -66,7 +65,6 @@ Cataclysm-DDA-tiles-data_package() {
 
 Cataclysm-DDA-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/Cendric/template b/srcpkgs/Cendric/template
index 6f5c16f479b..6dcc1f33e70 100644
--- a/srcpkgs/Cendric/template
+++ b/srcpkgs/Cendric/template
@@ -24,7 +24,6 @@ post_install() {
 Cendric-data_package() {
 	short_desc+=" - data files"
 	repository=nonfree
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/ClusterSSH/template b/srcpkgs/ClusterSSH/template
index ade9b7fefa0..a614f1643c3 100644
--- a/srcpkgs/ClusterSSH/template
+++ b/srcpkgs/ClusterSSH/template
@@ -2,7 +2,6 @@
 pkgname=ClusterSSH
 version=4.14
 revision=1
-archs=noarch
 wrksrc="clusterssh-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="xterm openssh
diff --git a/srcpkgs/ETL/template b/srcpkgs/ETL/template
index 7b8b01956c3..111f96217d0 100644
--- a/srcpkgs/ETL/template
+++ b/srcpkgs/ETL/template
@@ -3,7 +3,6 @@ pkgname=ETL
 reverts="1.3.11_1"
 version=1.2.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Extended Template Library"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/Electron-Cash/template b/srcpkgs/Electron-Cash/template
index 6cf5a5db45c..131db532944 100644
--- a/srcpkgs/Electron-Cash/template
+++ b/srcpkgs/Electron-Cash/template
@@ -2,7 +2,6 @@
 pkgname=Electron-Cash
 version=4.0.12
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-PyQt5 python3-PyQt5-svg python3-qrcode python3-dateutil
diff --git a/srcpkgs/Fonts-TLWG/template b/srcpkgs/Fonts-TLWG/template
index 0baf7333541..42b5d2a74ee 100644
--- a/srcpkgs/Fonts-TLWG/template
+++ b/srcpkgs/Fonts-TLWG/template
@@ -2,7 +2,6 @@
 pkgname=Fonts-TLWG
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="fonts-tlwg-${version}"
 build_style=gnu-configure
 configure_args="--with-ttfdir=/usr/share/fonts/TTF --with-otfdir=/usr/share/fonts/OTF
@@ -22,7 +21,6 @@ post_install() {
 }
 
 Fonts-TLWG-otf_package() {
-	archs=noarch
 	short_desc="Thai fonts OTF"
 	font_dirs="/usr/share/fonts/OTF"
 	pkg_install() {
diff --git a/srcpkgs/GCP-Guest-Environment/template b/srcpkgs/GCP-Guest-Environment/template
index 77e5e396d4f..2c3db4f6f20 100644
--- a/srcpkgs/GCP-Guest-Environment/template
+++ b/srcpkgs/GCP-Guest-Environment/template
@@ -2,7 +2,6 @@
 pkgname=GCP-Guest-Environment
 version=20191210
 revision=1
-archs=noarch
 wrksrc="compute-image-packages-${version}"
 build_wrksrc="packages/python-google-compute-engine"
 build_style=python2-module
diff --git a/srcpkgs/Grammalecte/template b/srcpkgs/Grammalecte/template
index 00e2bbb34a8..f62e8343202 100644
--- a/srcpkgs/Grammalecte/template
+++ b/srcpkgs/Grammalecte/template
@@ -2,7 +2,6 @@
 pkgname=Grammalecte
 version=1.6.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=python3-module
 hostmakedepends="python3-setuptools bsdtar"
diff --git a/srcpkgs/ISOEnts/template b/srcpkgs/ISOEnts/template
index 3f44042e507..0727d8647d6 100644
--- a/srcpkgs/ISOEnts/template
+++ b/srcpkgs/ISOEnts/template
@@ -2,7 +2,6 @@
 pkgname=ISOEnts
 version=1986
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip bsdtar"
 depends="xmlcatmgr"
diff --git a/srcpkgs/Komikku/template b/srcpkgs/Komikku/template
index 59504a4c087..06b252bdaa7 100644
--- a/srcpkgs/Komikku/template
+++ b/srcpkgs/Komikku/template
@@ -2,7 +2,6 @@
 pkgname=Komikku
 version=0.19.0
 revision=1
-archs=noarch
 wrksrc=Komikku-v${version}
 build_style=meson
 hostmakedepends="appstream-glib desktop-file-utils glib-devel gettext
diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
index a73cc80c9e5..ea588136f8a 100644
--- a/srcpkgs/LanguageTool/template
+++ b/srcpkgs/LanguageTool/template
@@ -2,7 +2,6 @@
 pkgname=LanguageTool
 version=4.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Checks your writing in more than 20 languages"
diff --git a/srcpkgs/MoinMoin/template b/srcpkgs/MoinMoin/template
index 2c13dc6a06f..998546ac5b9 100644
--- a/srcpkgs/MoinMoin/template
+++ b/srcpkgs/MoinMoin/template
@@ -2,7 +2,6 @@
 pkgname=MoinMoin
 version=1.9.10
 revision=1
-archs=noarch
 wrksrc=moin-${version}
 build_style=python2-module
 pycompile_module="MoinMoin jabberbot"
diff --git a/srcpkgs/OpenCPN-gshhs-crude/template b/srcpkgs/OpenCPN-gshhs-crude/template
index b2c64e94093..027b3c7a66b 100644
--- a/srcpkgs/OpenCPN-gshhs-crude/template
+++ b/srcpkgs/OpenCPN-gshhs-crude/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://opencpn.org/"
 distfiles="https://launchpad.net/~opencpn/+archive/ubuntu/opencpn/+files/opencpn-gshhs_${version}.orig.tar.xz"
 checksum=bb45b68af09d5a995594748f507cd533505264f0483c8cb8425693331cccf203
-archs=noarch
 
 do_install() {
 	for file in gshhs/*; do
@@ -19,7 +18,6 @@ do_install() {
 
 OpenCPN-gshhs-low_package() {
 	short_desc="${short_desc/Crude/Low}"
-	archs=noarch
 	depends="OpenCPN-gshhs-crude"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-c-1.dat
@@ -30,7 +28,6 @@ OpenCPN-gshhs-low_package() {
 
 OpenCPN-gshhs-intermediate_package() {
 	short_desc="${short_desc/Crude/Intermediate}"
-	archs=noarch
 	depends="OpenCPN-gshhs-low"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-i-1.dat
@@ -41,7 +38,6 @@ OpenCPN-gshhs-intermediate_package() {
 
 OpenCPN-gshhs-high_package() {
 	short_desc="${short_desc/Crude/High}"
-	archs=noarch
 	depends="OpenCPN-gshhs-intermediate"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-h-1.dat
@@ -52,7 +48,6 @@ OpenCPN-gshhs-high_package() {
 
 OpenCPN-gshhs-full_package() {
 	short_desc="${short_desc/Crude/Full}"
-	archs=noarch
 	depends="OpenCPN-gshhs-high"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-f-1.dat
diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index ccae6d0282e..f8ea2a4b35b 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -2,7 +2,6 @@
 pkgname=OpenLP
 version=2.4.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="openlp"
 hostmakedepends="python3-setuptools qt5-host-tools"
diff --git a/srcpkgs/OpenRCT2/template b/srcpkgs/OpenRCT2/template
index 5b0c68a5f80..14e114c58fc 100644
--- a/srcpkgs/OpenRCT2/template
+++ b/srcpkgs/OpenRCT2/template
@@ -53,7 +53,6 @@ post_extract() {
 
 OpenRCT2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openrct2
 	}
diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index e649885fda0..7f06aff8d51 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -2,7 +2,6 @@
 pkgname=PhotoCollage
 version=1.4.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3"
 depends="python3-Pillow python3-gobject"
diff --git a/srcpkgs/ProofGeneral/template b/srcpkgs/ProofGeneral/template
index 208e58f8d68..1b0aaf72921 100644
--- a/srcpkgs/ProofGeneral/template
+++ b/srcpkgs/ProofGeneral/template
@@ -3,7 +3,6 @@ pkgname=ProofGeneral
 version=4.4
 revision=2
 wrksrc="PG-${version}"
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="emacs which"
 depends="emacs perl"
diff --git a/srcpkgs/PyInstaller/template b/srcpkgs/PyInstaller/template
index ad2dadf10f3..4b3d02468de 100644
--- a/srcpkgs/PyInstaller/template
+++ b/srcpkgs/PyInstaller/template
@@ -2,7 +2,6 @@
 pkgname=PyInstaller
 version=3.6
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3 python3-altgraph"
diff --git a/srcpkgs/Pyrex/template b/srcpkgs/Pyrex/template
index 5ab3598b1c0..c1d90574aaf 100644
--- a/srcpkgs/Pyrex/template
+++ b/srcpkgs/Pyrex/template
@@ -2,7 +2,6 @@
 pkgname=Pyrex
 version=0.9.9
 revision=4
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python-devel"
diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index a6551fbdf7c..5d657ed46ca 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -2,7 +2,6 @@
 pkgname=ReText
 version=7.0.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ReText"
 wrksrc="${pkgname,,}-${version}"
diff --git a/srcpkgs/SMC/template b/srcpkgs/SMC/template
index 00f9763bfdd..623bde41157 100644
--- a/srcpkgs/SMC/template
+++ b/srcpkgs/SMC/template
@@ -37,7 +37,6 @@ post_install() {
 
 SMC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/smc
 	}
diff --git a/srcpkgs/SPIRV-Headers/template b/srcpkgs/SPIRV-Headers/template
index 6cc87dc386c..a5e9c17a3ce 100644
--- a/srcpkgs/SPIRV-Headers/template
+++ b/srcpkgs/SPIRV-Headers/template
@@ -2,7 +2,6 @@
 pkgname=SPIRV-Headers
 version=1.5.3
 revision=1
-archs=noarch
 build_style=cmake
 short_desc="Machine-readable files for the SPIR-V Registry"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index da77237f898..3d03d7b4966 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -2,7 +2,6 @@
 pkgname=Solaar
 version=1.0.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyudev"
diff --git a/srcpkgs/TSC/template b/srcpkgs/TSC/template
index 10150e7481c..f28c36a1aa1 100644
--- a/srcpkgs/TSC/template
+++ b/srcpkgs/TSC/template
@@ -25,7 +25,6 @@ post_install() {
 
 TSC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tsc
 	}
diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 3bbba11db49..549e5635542 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -6,7 +6,6 @@ build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"
 depends="python3-gobject python3-requests libnotify"
-archs=noarch
 short_desc="Daemon that notifies you about your followed channels on Twitch.TV"
 maintainer="Giedrius Statkevičius <giedriuswork@gmail.com>"
 license="GPL-3"
diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index ce0c7920cf9..f09179bd9a6 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -2,7 +2,6 @@
 pkgname=Uranium
 version=4.7.0
 revision=1
-archs=noarch
 build_style=cmake
 pycompile_dirs="usr/lib/uranium/plugins"
 hostmakedepends="python3"
diff --git a/srcpkgs/Vulkan-Headers/template b/srcpkgs/Vulkan-Headers/template
index 2fae2dda25b..3c089e9f79f 100644
--- a/srcpkgs/Vulkan-Headers/template
+++ b/srcpkgs/Vulkan-Headers/template
@@ -2,7 +2,6 @@
 pkgname=Vulkan-Headers
 version=1.2.141
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=cmake
 short_desc="Vulkan header files"
diff --git a/srcpkgs/WiringPi/template b/srcpkgs/WiringPi/template
index 562506c41b5..b9e5c5cbff7 100644
--- a/srcpkgs/WiringPi/template
+++ b/srcpkgs/WiringPi/template
@@ -104,7 +104,6 @@ WiringPi-gpio_package() {
 
 WiringPi-examples_package() {
 	short_desc+=" - examples"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/share/examples
 	}
diff --git a/srcpkgs/WoeUSB/template b/srcpkgs/WoeUSB/template
index 1bb0efa56ff..1ac9d5134a1 100644
--- a/srcpkgs/WoeUSB/template
+++ b/srcpkgs/WoeUSB/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 WoeUSB-cli_package() {
-	archs=noarch
 	depends="bash grub ntfs-3g parted wget"
 	short_desc+=" - command line only"
 	pkg_install() {
diff --git a/srcpkgs/XyGrib-maps/template b/srcpkgs/XyGrib-maps/template
index 797bb62d81a..6c5f0672785 100644
--- a/srcpkgs/XyGrib-maps/template
+++ b/srcpkgs/XyGrib-maps/template
@@ -11,7 +11,6 @@ license="GPL-3.0-or-later"
 homepage="https://opengribs.org"
 distfiles="https://github.com/opengribs/XyGrib/releases/download/v${_xygribver}/XyGrib___High_Resolution_Maps.tar.gz"
 checksum=164d0bca0ab118f242d6d10dfb6e6b2f3eacdcf2781b532336e02a2d223a0d0d
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/XyGrib
diff --git a/srcpkgs/abcde/template b/srcpkgs/abcde/template
index 49fe4f97768..b2a8e0117b2 100644
--- a/srcpkgs/abcde/template
+++ b/srcpkgs/abcde/template
@@ -2,7 +2,6 @@
 pkgname=abcde
 version=2.9.3
 revision=1
-archs=noarch
 conf_files="/etc/${pkgname}.conf"
 depends="cd-discid perl-MusicBrainz-DiscID perl-WebService-MusicBrainz vorbis-tools"
 short_desc="CLI audio CD encoder and tagger"
diff --git a/srcpkgs/abi-compliance-checker/template b/srcpkgs/abi-compliance-checker/template
index 644acae70e6..14e8a5e27e3 100644
--- a/srcpkgs/abi-compliance-checker/template
+++ b/srcpkgs/abi-compliance-checker/template
@@ -2,7 +2,6 @@
 pkgname=abi-compliance-checker
 version=2.3
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="binutils ctags perl"
 checkdepends="binutils ctags"
diff --git a/srcpkgs/ack/template b/srcpkgs/ack/template
index 47d3e6c3550..b3ec895eee3 100644
--- a/srcpkgs/ack/template
+++ b/srcpkgs/ack/template
@@ -2,7 +2,6 @@
 pkgname=ack
 version=3.3.1
 revision=1
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=perl-module
 hostmakedepends="perl perl-File-Next"
diff --git a/srcpkgs/acpilight/template b/srcpkgs/acpilight/template
index 89236bd4c3f..40288bad23b 100644
--- a/srcpkgs/acpilight/template
+++ b/srcpkgs/acpilight/template
@@ -2,7 +2,6 @@
 pkgname=acpilight
 version=1.2
 revision=1
-archs=noarch
 wrksrc="acpilight-v${version}"
 depends="python3"
 short_desc="Backward-compatibile xbacklight replacement"
diff --git a/srcpkgs/acr/template b/srcpkgs/acr/template
index 773799454b6..6ec88da7519 100644
--- a/srcpkgs/acr/template
+++ b/srcpkgs/acr/template
@@ -2,7 +2,6 @@
 pkgname=acr
 version=1.9.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="AutoConf Replacement"
 maintainer="Felipe Nogueira <contato.fnog@gmail.com>"
diff --git a/srcpkgs/adapta-kde/template b/srcpkgs/adapta-kde/template
index 1fc16324be1..25278735438 100644
--- a/srcpkgs/adapta-kde/template
+++ b/srcpkgs/adapta-kde/template
@@ -2,7 +2,6 @@
 pkgname=adapta-kde
 version=20180828
 revision=1
-archs=noarch
 short_desc="Port of the popular GTK theme Adapta for Plasma 5 desktop"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/adwaita-icon-theme/template b/srcpkgs/adwaita-icon-theme/template
index febd2915be6..b3ba7687d1b 100644
--- a/srcpkgs/adwaita-icon-theme/template
+++ b/srcpkgs/adwaita-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-icon-theme
 version=3.36.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 depends="librsvg"
diff --git a/srcpkgs/adwaita-plus/template b/srcpkgs/adwaita-plus/template
index c5faf56aeb2..b0f0962ec9c 100644
--- a/srcpkgs/adwaita-plus/template
+++ b/srcpkgs/adwaita-plus/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-plus
 version=5.0
 revision=1
-archs=noarch
 short_desc="Modern third-party icons theme based on GNOME's Adwaita"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index 2b2614a4eba..1084b32e97a 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -2,7 +2,6 @@
 pkgname=afew
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx pkg-config"
 depends="notmuch-python3 python3-dkimpy python3-chardet notmuch"
diff --git a/srcpkgs/aisleriot/template b/srcpkgs/aisleriot/template
index 1b5b594ddd9..29a66674f63 100644
--- a/srcpkgs/aisleriot/template
+++ b/srcpkgs/aisleriot/template
@@ -20,7 +20,6 @@ checksum=eed8edb267a9fa61651b1d3a22a83f51415a4e55d76d5ae737e18a9e9477016b
 
 aisleriot-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/alacritty/template b/srcpkgs/alacritty/template
index 74ddfcd6d65..479c02990c4 100644
--- a/srcpkgs/alacritty/template
+++ b/srcpkgs/alacritty/template
@@ -28,7 +28,6 @@ post_install() {
 
 alacritty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/albatross-themes/template b/srcpkgs/albatross-themes/template
index ca8ff1b363c..1473a296df5 100644
--- a/srcpkgs/albatross-themes/template
+++ b/srcpkgs/albatross-themes/template
@@ -2,7 +2,6 @@
 pkgname=albatross-themes
 version=1.7.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant black GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/alienfx/template b/srcpkgs/alienfx/template
index 62ee564ad4b..f48ad0461aa 100644
--- a/srcpkgs/alienfx/template
+++ b/srcpkgs/alienfx/template
@@ -2,7 +2,6 @@
 pkgname=alienfx
 version=2.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="alienfx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index c3b1fb07414..8ea0a60ed04 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -2,7 +2,6 @@
 pkgname=alot
 version=0.9.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools python3-Twisted notmuch-python3 python3-configobj
diff --git a/srcpkgs/alsa-firmware/template b/srcpkgs/alsa-firmware/template
index 63d37de92b1..45d6a2be1f1 100644
--- a/srcpkgs/alsa-firmware/template
+++ b/srcpkgs/alsa-firmware/template
@@ -2,7 +2,6 @@
 pkgname=alsa-firmware
 version=1.2.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-hotplug-dir=/usr/lib/firmware"
 short_desc="Advanced Linux Sound Architecture (ALSA) firmware"
diff --git a/srcpkgs/amiri-font/template b/srcpkgs/amiri-font/template
index 039962190ae..f1de46736dd 100644
--- a/srcpkgs/amiri-font/template
+++ b/srcpkgs/amiri-font/template
@@ -2,7 +2,6 @@
 pkgname=amiri-font
 version=0.113
 revision=1
-archs=noarch
 wrksrc="Amiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/ampache/template b/srcpkgs/ampache/template
index 3639557449a..99b249cda74 100644
--- a/srcpkgs/ampache/template
+++ b/srcpkgs/ampache/template
@@ -2,7 +2,6 @@
 pkgname=ampache
 version=3.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="php mysql"
diff --git a/srcpkgs/angrysearch/template b/srcpkgs/angrysearch/template
index 88a6954ac85..3bd8eee7f3c 100644
--- a/srcpkgs/angrysearch/template
+++ b/srcpkgs/angrysearch/template
@@ -5,7 +5,6 @@ revision=2
 wrksrc="ANGRYsearch-${version}"
 hostmakedepends="python3"
 depends="python3-PyQt5 xdg-utils"
-archs=noarch
 short_desc="Instant file search"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/anki/template b/srcpkgs/anki/template
index a25bc0d4e7e..92e66d28c52 100644
--- a/srcpkgs/anki/template
+++ b/srcpkgs/anki/template
@@ -2,7 +2,6 @@
 pkgname=anki
 version=2.1.15
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="python3-PyQt5-webengine python3-requests python3-SQLAlchemy
  python3-PyAudio python3-mpv python3-Markdown python3-send2trash
diff --git a/srcpkgs/ansi/template b/srcpkgs/ansi/template
index be114d5203b..705b26bad4e 100644
--- a/srcpkgs/ansi/template
+++ b/srcpkgs/ansi/template
@@ -2,7 +2,6 @@
 pkgname=ansi
 version=2.0.4
 revision=1
-archs=noarch
 depends="bash"
 short_desc="ANSI escape codes in pure Bash"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 94c470574ae..581ce88bc5e 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -2,7 +2,6 @@
 pkgname=ansible
 version=2.9.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-cryptography python3-Jinja2 python3-paramiko
diff --git a/srcpkgs/antlr3-bin/template b/srcpkgs/antlr3-bin/template
index 305df8ae69e..2ed87245670 100644
--- a/srcpkgs/antlr3-bin/template
+++ b/srcpkgs/antlr3-bin/template
@@ -2,7 +2,6 @@
 pkgname=antlr3-bin
 version=3.4
 revision=1
-archs=noarch
 build_style=fetch
 depends="virtual?java-runtime"
 short_desc="Parser generator for C++, C#, Java, and Python"
diff --git a/srcpkgs/apache-ant/template b/srcpkgs/apache-ant/template
index 80a738985a0..4db3a4aa0be 100644
--- a/srcpkgs/apache-ant/template
+++ b/srcpkgs/apache-ant/template
@@ -2,7 +2,6 @@
 pkgname=apache-ant
 version=1.10.8
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-runtime"
 short_desc="Java library and command-line tool that help building software"
@@ -42,7 +41,6 @@ do_install() {
 apache-ant-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove $_prefix/manual
 	}
diff --git a/srcpkgs/apache-jmeter/template b/srcpkgs/apache-jmeter/template
index 73f8f06fd96..eaa6eda1d05 100644
--- a/srcpkgs/apache-jmeter/template
+++ b/srcpkgs/apache-jmeter/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 apache-jmeter-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apache-maven/template b/srcpkgs/apache-maven/template
index a6c9fd3e5a2..956b472f373 100644
--- a/srcpkgs/apache-maven/template
+++ b/srcpkgs/apache-maven/template
@@ -2,7 +2,6 @@
 pkgname=apache-maven
 version=3.6.3
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-environment"
 short_desc="Software project management and comprehension tool"
diff --git a/srcpkgs/apache-storm/template b/srcpkgs/apache-storm/template
index 6ae346a0557..3efd37f6052 100644
--- a/srcpkgs/apache-storm/template
+++ b/srcpkgs/apache-storm/template
@@ -2,7 +2,6 @@
 pkgname=apache-storm
 version=2.2.0
 revision=2
-archs=noarch
 depends="virtual?java-runtime python3 bash"
 short_desc="Distributed realtime computation system"
 maintainer="bougyman <bougyman@voidlinux.org>"
diff --git a/srcpkgs/apache-tomcat/template b/srcpkgs/apache-tomcat/template
index 7cab7d1d9af..d8abc369365 100644
--- a/srcpkgs/apache-tomcat/template
+++ b/srcpkgs/apache-tomcat/template
@@ -40,7 +40,6 @@ post_install() {
 }
 
 apache-tomcat-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -58,7 +57,6 @@ apache-tomcat-examples_package() {
 }
 
 apache-tomcat-manager_package() {
-	archs=noarch
 	short_desc+=" - Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -67,7 +65,6 @@ apache-tomcat-manager_package() {
 }
 
 apache-tomcat-host-manager_package() {
-	archs=noarch
 	short_desc+=" - Host Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index cd7073fdcfb..3fc8aaea479 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -63,7 +63,6 @@ post_install() {
 }
 
 apparmor-vim_package() {
-	archs=noarch
 	short_desc+=" - Vim syntax"
 	depends="vim"
 	pkg_install() {
diff --git a/srcpkgs/apt/template b/srcpkgs/apt/template
index 8578ed028e2..1fb3ee57e46 100644
--- a/srcpkgs/apt/template
+++ b/srcpkgs/apt/template
@@ -29,7 +29,6 @@ apt-devel_package() {
 }
 
 apt-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation files"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 5e5bd84dd13..b361ccbf48d 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -2,7 +2,6 @@
 pkgname=arandr
 version=0.1.10
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-docutils"
 depends="python3-gobject xrandr python3"
diff --git a/srcpkgs/arc-theme/template b/srcpkgs/arc-theme/template
index ccc5f35ea5f..3afd69b34f1 100644
--- a/srcpkgs/arc-theme/template
+++ b/srcpkgs/arc-theme/template
@@ -2,7 +2,6 @@
 pkgname=arc-theme
 version=20200513
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_script="./autogen.sh"
 hostmakedepends="automake glib-devel pkg-config
diff --git a/srcpkgs/archlabs-themes/template b/srcpkgs/archlabs-themes/template
index aa648d35457..a565615ea6f 100644
--- a/srcpkgs/archlabs-themes/template
+++ b/srcpkgs/archlabs-themes/template
@@ -4,7 +4,6 @@ version=20180503
 revision=2
 _commit=73d0900117daefedf6c76dd0e71538bb954f1b10
 wrksrc="ArchLabs-Themes-${_commit}"
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Themes used in ArchLabs"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/argtable/template b/srcpkgs/argtable/template
index 7083e703a50..6719ab7f4fc 100644
--- a/srcpkgs/argtable/template
+++ b/srcpkgs/argtable/template
@@ -26,7 +26,6 @@ argtable-devel_package() {
 argtable-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/artwiz-fonts/template b/srcpkgs/artwiz-fonts/template
index ceea828ee9c..b19ad6d26af 100644
--- a/srcpkgs/artwiz-fonts/template
+++ b/srcpkgs/artwiz-fonts/template
@@ -2,7 +2,6 @@
 pkgname=artwiz-fonts
 version=1.3
 revision=4
-archs=noarch
 create_wrksrc=yes
 depends="font-util mkfontdir"
 short_desc="Small futuristic ASCII fonts for X"
diff --git a/srcpkgs/asciidoc/template b/srcpkgs/asciidoc/template
index 5665577bacb..377800871a9 100644
--- a/srcpkgs/asciidoc/template
+++ b/srcpkgs/asciidoc/template
@@ -2,7 +2,6 @@
 pkgname=asciidoc
 version=9.0.2
 revision=1
-archs=noarch
 wrksrc=${pkgname}-py3-${version}
 build_style=gnu-configure
 hostmakedepends="automake docbook-xsl libxslt python3"
diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 38b8871753c..551a15be881 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -2,7 +2,6 @@
 pkgname=asciinema
 version=2.0.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/asciiquarium/template b/srcpkgs/asciiquarium/template
index 128674e7a6e..6f9217a19e1 100644
--- a/srcpkgs/asciiquarium/template
+++ b/srcpkgs/asciiquarium/template
@@ -2,7 +2,6 @@
 pkgname=asciiquarium
 version=1.1
 revision=2
-archs=noarch
 wrksrc="${pkgname}_${version}"
 depends="perl perl-Term-Animation perl-Curses"
 short_desc="Enjoy the mysteries of the sea from the safety of your own terminal"
diff --git a/srcpkgs/aspell-ru/template b/srcpkgs/aspell-ru/template
index f0a6d0fa52d..6c61de58593 100644
--- a/srcpkgs/aspell-ru/template
+++ b/srcpkgs/aspell-ru/template
@@ -14,7 +14,6 @@ checksum=5c29b6ccce57bc3f7c4fb0510d330446b9c769e59c92bdfede27333808b6e646
 
 words-ru_package() {
 	short_desc="Russian dictionary word list"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/dict
 		precat *.cwl |
diff --git a/srcpkgs/astromenace/template b/srcpkgs/astromenace/template
index ae6bbc38330..55613a3d8f6 100644
--- a/srcpkgs/astromenace/template
+++ b/srcpkgs/astromenace/template
@@ -34,7 +34,6 @@ do_install() {
 
 astromenace-data_package() {
 	short_desc+=" - data file"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/astromenace
 		vcopy ${wrksrc}/gamedata usr/share/astromenace
diff --git a/srcpkgs/asus-kbd-backlight/template b/srcpkgs/asus-kbd-backlight/template
index e58e8341650..cc612d3a809 100644
--- a/srcpkgs/asus-kbd-backlight/template
+++ b/srcpkgs/asus-kbd-backlight/template
@@ -3,7 +3,6 @@ pkgname=asus-kbd-backlight
 version=1.2
 revision=1
 create_wrksrc=yes
-archs=noarch
 depends="bash"
 short_desc="Helper for adjusting keyboard backlight brightness in Asus Zenbook"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/atool/template b/srcpkgs/atool/template
index 56264dd3e16..84019be7c53 100644
--- a/srcpkgs/atool/template
+++ b/srcpkgs/atool/template
@@ -2,7 +2,6 @@
 pkgname=atool
 version=0.39.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index 4d8d2fbe12a..521e12ec4f1 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 libaudit-common_package() {
-	archs=noarch
 	short_desc+=" - Library common files"
 	pkg_install() {
 		vmove etc/libaudit.conf
diff --git a/srcpkgs/auto-auto-complete/template b/srcpkgs/auto-auto-complete/template
index 2fa45c4fc47..d4eefd9d547 100644
--- a/srcpkgs/auto-auto-complete/template
+++ b/srcpkgs/auto-auto-complete/template
@@ -2,7 +2,6 @@
 pkgname=auto-auto-complete
 version=7.2
 revision=4
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3 texinfo"
 depends="python3"
diff --git a/srcpkgs/autoconf-archive/template b/srcpkgs/autoconf-archive/template
index b04bb9a7905..ea9665901cb 100644
--- a/srcpkgs/autoconf-archive/template
+++ b/srcpkgs/autoconf-archive/template
@@ -2,7 +2,6 @@
 pkgname=autoconf-archive
 version=2019.01.06
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="texinfo"
 depends="autoconf"
diff --git a/srcpkgs/autoconf/template b/srcpkgs/autoconf/template
index a7aecf1359e..954bfea8d2c 100644
--- a/srcpkgs/autoconf/template
+++ b/srcpkgs/autoconf/template
@@ -2,7 +2,6 @@
 pkgname=autoconf
 version=2.69
 revision=8
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl m4 help2man"
 depends="virtual?awk m4 perl"
diff --git a/srcpkgs/autoconf213/template b/srcpkgs/autoconf213/template
index a1ecfe21fa9..7d471a040cf 100644
--- a/srcpkgs/autoconf213/template
+++ b/srcpkgs/autoconf213/template
@@ -2,7 +2,6 @@
 pkgname=autoconf213
 version=2.13
 revision=3
-archs=noarch
 wrksrc="autoconf-${version}"
 build_style=gnu-configure
 configure_args="--program-suffix='-2.13'"
diff --git a/srcpkgs/autojump/template b/srcpkgs/autojump/template
index 2448a2dd894..de499da67e1 100644
--- a/srcpkgs/autojump/template
+++ b/srcpkgs/autojump/template
@@ -2,7 +2,6 @@
 pkgname=autojump
 version=22.5.3
 revision=2
-archs=noarch
 wrksrc="${pkgname}-release-v${version}"
 hostmakedepends="python3"
 depends="python3"
diff --git a/srcpkgs/automake/template b/srcpkgs/automake/template
index f9752f9efb1..ae473c521f5 100644
--- a/srcpkgs/automake/template
+++ b/srcpkgs/automake/template
@@ -3,7 +3,6 @@
 pkgname=automake
 version=1.16.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_args="${makejobs}"
 hostmakedepends="perl autoconf"
diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index b86b81a50ce..86d7d32723d 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -2,7 +2,6 @@
 pkgname=autorandr
 version=1.10.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools pkg-config"
 depends="python3-setuptools xrandr"
diff --git a/srcpkgs/avahi-discover/template b/srcpkgs/avahi-discover/template
index 1c4249f1036..de7039cffa5 100644
--- a/srcpkgs/avahi-discover/template
+++ b/srcpkgs/avahi-discover/template
@@ -103,7 +103,6 @@ do_install() {
 avahi-python3-utils_package() {
 	depends="avahi-python3>=${version}_${revision}"
 	short_desc="Avahi python utilities"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		vmove usr/bin/avahi-bookmarks
@@ -114,14 +113,12 @@ avahi-python3-utils_package() {
 avahi-python-utils_package() {
 	short_desc="Avahi python utilities - transitional dummy pkg"
 	depends="avahi-python3-utils>=${version}_${revision}"
-	archs=noarch
 	build_style=meta
 }
 
 avahi-python_package() {
 	depends="python-dbus"
 	short_desc="Python utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py2_sitelib}/avahi
 	}
@@ -130,7 +127,6 @@ avahi-python_package() {
 avahi-python3_package() {
 	depends="python3-dbus"
 	short_desc="Python3 utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py3_sitelib}/avahi
 	}
diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index af1491295da..19c6845f242 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -2,7 +2,6 @@
 pkgname=avideo
 version=2017.9.27
 revision=5
-archs=noarch
 wrksrc="avideo"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/awoken-icons/template b/srcpkgs/awoken-icons/template
index f52c4f48187..ede6ea0c9d0 100644
--- a/srcpkgs/awoken-icons/template
+++ b/srcpkgs/awoken-icons/template
@@ -2,7 +2,6 @@
 pkgname=awoken-icons
 version=2.5.2
 revision=4
-archs=noarch
 wrksrc=AwOken-2.5
 hostmakedepends="unzip"
 short_desc="Simple and quite complete icon set, Token-style"
@@ -39,7 +38,6 @@ do_install() {
 awoken-icons-dark_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - Dark icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenDark
 	}
@@ -48,7 +46,6 @@ awoken-icons-dark_package() {
 awoken-icons-white_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - White icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenWhite
 	}
diff --git a/srcpkgs/aws-cli/template b/srcpkgs/aws-cli/template
index c8fadf32d2e..8bc1de2fa00 100644
--- a/srcpkgs/aws-cli/template
+++ b/srcpkgs/aws-cli/template
@@ -2,7 +2,6 @@
 pkgname=aws-cli
 version=1.18.105
 revision=1
-archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/awsume/template b/srcpkgs/awsume/template
index 0f6c21d60d1..3c01a09de16 100644
--- a/srcpkgs/awsume/template
+++ b/srcpkgs/awsume/template
@@ -2,7 +2,6 @@
 pkgname=awsume
 version=4.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 makedepends="python3-argcomplete python3-boto3 python3-colorama python3-coverage
  python3-pluggy python3-psutil python3-xmltodict python3-yaml"
diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 9b5756804ea..bdb24fa3c1a 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -2,7 +2,6 @@
 pkgname=azote
 version=1.7.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3>=3.4 python3-setuptools python3-gobject python3-Pillow gtk+3 feh python3-send2trash xrandr grim slurp ImageMagick python3-yaml"
diff --git a/srcpkgs/b43-firmware-classic/template b/srcpkgs/b43-firmware-classic/template
index b38e6ac7ee6..0bc8d62447e 100644
--- a/srcpkgs/b43-firmware-classic/template
+++ b/srcpkgs/b43-firmware-classic/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware-classic
 version=5.100.138
 revision=1
-archs=noarch
 wrksrc="broadcom-wl-${version}"
 hostmakedepends="b43-fwcutter"
 short_desc="Firmware for Broadcom B43 wireless (trusted release)"
diff --git a/srcpkgs/b43-firmware/template b/srcpkgs/b43-firmware/template
index e5f894b81e7..45cbdd4cc08 100644
--- a/srcpkgs/b43-firmware/template
+++ b/srcpkgs/b43-firmware/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware
 version=6.30.163.46
 revision=1
-archs=noarch
 wrksrc="${pkgname}"
 create_wrksrc=yes
 hostmakedepends="b43-fwcutter"
diff --git a/srcpkgs/bCNC/template b/srcpkgs/bCNC/template
index 2e715c512a9..ede158da583 100644
--- a/srcpkgs/bCNC/template
+++ b/srcpkgs/bCNC/template
@@ -2,7 +2,6 @@
 pkgname=bCNC
 version=0.9.14.306
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyserial python3-Pillow python3-tkinter python3-numpy python3-scipy"
diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template
index ef7fbca68b6..cac24c685cc 100644
--- a/srcpkgs/backblaze-b2/template
+++ b/srcpkgs/backblaze-b2/template
@@ -2,7 +2,6 @@
 pkgname=backblaze-b2
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="b2-${version}"
 build_style=python3-module
 pycompile_module="b2"
@@ -43,6 +42,5 @@ do_check() {
 python-b2_package() {
 	depends="backblaze-b2>=${version}_${revision}"
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional package"
 }
diff --git a/srcpkgs/backintime-qt/template b/srcpkgs/backintime-qt/template
index 8453da9bafb..422529bf923 100644
--- a/srcpkgs/backintime-qt/template
+++ b/srcpkgs/backintime-qt/template
@@ -2,7 +2,6 @@
 pkgname=backintime-qt
 version=1.2.1
 revision=1
-archs=noarch
 wrksrc=backintime-${version}
 build_wrksrc="qt"
 build_style=configure
diff --git a/srcpkgs/backintime/template b/srcpkgs/backintime/template
index 2dfc98051f7..6c95fcd722a 100644
--- a/srcpkgs/backintime/template
+++ b/srcpkgs/backintime/template
@@ -2,7 +2,6 @@
 pkgname=backintime
 version=1.2.1
 revision=1
-archs=noarch
 build_wrksrc="common"
 build_style=configure
 configure_args="--python3"
diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index d29873ecf61..0709b663aa7 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -2,7 +2,6 @@
 pkgname=bandit
 version=1.6.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="bandit"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bash-completion/template b/srcpkgs/bash-completion/template
index 704b0784688..080e387f5e6 100644
--- a/srcpkgs/bash-completion/template
+++ b/srcpkgs/bash-completion/template
@@ -2,7 +2,6 @@
 pkgname=bash-completion
 version=2.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_args="profiledir=/etc/bash/bashrc.d"
 depends="bash"
diff --git a/srcpkgs/bash-preexec/template b/srcpkgs/bash-preexec/template
index 771ff0426ff..6d71655eecf 100644
--- a/srcpkgs/bash-preexec/template
+++ b/srcpkgs/bash-preexec/template
@@ -2,7 +2,6 @@
 pkgname=bash-preexec
 version=0.3.7
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Preexec and Precmd functions for Bash just like Zsh"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/bashmount/template b/srcpkgs/bashmount/template
index 1c797678452..68d2880e75a 100644
--- a/srcpkgs/bashmount/template
+++ b/srcpkgs/bashmount/template
@@ -2,7 +2,6 @@
 pkgname=bashmount
 version=4.3.0
 revision=1
-archs=noarch
 conf_files="/etc/$pkgname.conf"
 depends="bash util-linux"
 short_desc="Tool to mount and unmount removable media"
diff --git a/srcpkgs/bats/template b/srcpkgs/bats/template
index 890b0d14e54..ded7e5ee315 100644
--- a/srcpkgs/bats/template
+++ b/srcpkgs/bats/template
@@ -2,7 +2,6 @@
 pkgname=bats
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="bats-core-${version}"
 depends="bash"
 short_desc="Bash Automated Testing System"
diff --git a/srcpkgs/bdf2psf/template b/srcpkgs/bdf2psf/template
index d431bc560c9..3258f1871e5 100644
--- a/srcpkgs/bdf2psf/template
+++ b/srcpkgs/bdf2psf/template
@@ -2,7 +2,6 @@
 pkgname=bdf2psf
 version=1.196
 revision=1
-archs=noarch
 wrksrc="console-setup-${version}"
 depends="perl"
 short_desc="Generate console fonts from BDF source fonts"
diff --git a/srcpkgs/beard/template b/srcpkgs/beard/template
index 93d69607399..5e1180c49bf 100644
--- a/srcpkgs/beard/template
+++ b/srcpkgs/beard/template
@@ -2,7 +2,6 @@
 pkgname=beard
 version=0.3
 revision=1
-archs=noarch
 short_desc="Simple hibernation daemon"
 maintainer="Samantha Baldwin <fuhsaz+void@cryptic.li>"
 license="Unlicense"
diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index bf0240f1f54..8ebdcc4a42c 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -2,7 +2,6 @@
 pkgname=beets
 version=1.4.9
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-munkres python3-musicbrainzngs
diff --git a/srcpkgs/betterlockscreen/template b/srcpkgs/betterlockscreen/template
index c38dd536e77..a438c298aca 100644
--- a/srcpkgs/betterlockscreen/template
+++ b/srcpkgs/betterlockscreen/template
@@ -2,7 +2,6 @@
 pkgname=betterlockscreen
 version=3.0.1
 revision=2
-archs=noarch
 depends="ImageMagick bash bc feh i3lock-color xdpyinfo xrandr xrdb"
 short_desc="Sweet looking lockscreen for linux system"
 maintainer="Aleksander Zien <Aleks@nderZien.com>"
diff --git a/srcpkgs/biber/template b/srcpkgs/biber/template
index 23b94472d1e..af2ddfb4abe 100644
--- a/srcpkgs/biber/template
+++ b/srcpkgs/biber/template
@@ -2,7 +2,6 @@
 pkgname=biber
 version=2.14
 revision=2
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 06a279cff2c..8592e590c0c 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -120,7 +120,6 @@ binutils-devel_package() {
 }
 
 binutils-doc_package() {
-	archs=noarch
 	short_desc+=" - info files"
 	pkg_install() {
 		vmove usr/share/info
diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index fccd523d584..c646a08f2e7 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -2,7 +2,6 @@
 pkgname=binwalk
 version=2.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"
 hostmakedepends="python3"
diff --git a/srcpkgs/biosdisk/template b/srcpkgs/biosdisk/template
index 324d249d36c..d13ebdac57e 100644
--- a/srcpkgs/biosdisk/template
+++ b/srcpkgs/biosdisk/template
@@ -3,7 +3,6 @@ pkgname=biosdisk
 version=1.01
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="syslinux wget cdrtools"
 short_desc="Utility for creating Dell BIOS flash disks"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/bitfighter/template b/srcpkgs/bitfighter/template
index a91443cbc3c..ae01e4bca51 100644
--- a/srcpkgs/bitfighter/template
+++ b/srcpkgs/bitfighter/template
@@ -28,7 +28,6 @@ post_install() {
 
 bitfighter-data_package() {
 	short_desc+=" - classic level pack"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/bitfighter
 	}
diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index ab7bf23c85e..1798d9ed60d 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -2,7 +2,6 @@
 pkgname=black
 version=19.10b0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3 _black_version.py"
 hostmakedepends="git python3-setuptools"
diff --git a/srcpkgs/blackbird-themes/template b/srcpkgs/blackbird-themes/template
index 0e4de2ad703..3fc7e9c99bf 100644
--- a/srcpkgs/blackbird-themes/template
+++ b/srcpkgs/blackbird-themes/template
@@ -2,7 +2,6 @@
 pkgname=blackbird-themes
 version=0.4
 revision=3
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant dark GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/blackbox/template b/srcpkgs/blackbox/template
index cc7fbdc68b0..01f6dc23602 100644
--- a/srcpkgs/blackbox/template
+++ b/srcpkgs/blackbox/template
@@ -2,7 +2,6 @@
 pkgname=blackbox
 version=1.20181219
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Safely store secrets in Git/Mercurial/Subversion"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
diff --git a/srcpkgs/blazeblogger/template b/srcpkgs/blazeblogger/template
index 0eb8d776fc8..78acb7129b3 100644
--- a/srcpkgs/blazeblogger/template
+++ b/srcpkgs/blazeblogger/template
@@ -2,7 +2,6 @@
 pkgname=blazeblogger
 version=1.2.0
 revision=2
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="CLI blogging CMS"
diff --git a/srcpkgs/bleachbit/template b/srcpkgs/bleachbit/template
index 524794f0cb2..b1f81bdb656 100644
--- a/srcpkgs/bleachbit/template
+++ b/srcpkgs/bleachbit/template
@@ -2,7 +2,6 @@
 pkgname=bleachbit
 version=4.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/bleachbit"
 make_install_args="prefix=/usr"
diff --git a/srcpkgs/bluebird-themes/template b/srcpkgs/bluebird-themes/template
index 47034af481c..2e61b2a8592 100644
--- a/srcpkgs/bluebird-themes/template
+++ b/srcpkgs/bluebird-themes/template
@@ -2,7 +2,6 @@
 pkgname=bluebird-themes
 version=1.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant blue GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 5412f16a2b2..af8127f262a 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -136,7 +136,6 @@ boost-python3-1.72_package() {
 	}
 }
 boost-build_package() {
-	archs=noarch
 	conf_files="/etc/site-config.jam"
 	short_desc+=" - Boost.Build framework"
 	pkg_install() {
diff --git a/srcpkgs/bootiso/template b/srcpkgs/bootiso/template
index 78a6205c546..e3450b9e665 100644
--- a/srcpkgs/bootiso/template
+++ b/srcpkgs/bootiso/template
@@ -2,7 +2,6 @@
 pkgname=bootiso
 version=4.1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="prefix=/usr"
 depends="bash binutils coreutils curl dosfstools e2fsprogs eudev exfat-utils
diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 9ca5df9724f..03471b6d123 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -2,7 +2,6 @@
 pkgname=borgmatic
 version=1.5.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="borg python3-setuptools python3-ruamel.yaml python3-pykwalify
diff --git a/srcpkgs/boswars/template b/srcpkgs/boswars/template
index 4587f93cfd0..2ac87925dec 100644
--- a/srcpkgs/boswars/template
+++ b/srcpkgs/boswars/template
@@ -56,7 +56,6 @@ do_install() {
 
 boswars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/boswars/campaigns
 		vmove usr/share/boswars/doc
diff --git a/srcpkgs/botan/template b/srcpkgs/botan/template
index 49d382d1bcc..5c997e49231 100644
--- a/srcpkgs/botan/template
+++ b/srcpkgs/botan/template
@@ -88,7 +88,6 @@ post_install() {
 
 botan-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/breeze-cursors/template b/srcpkgs/breeze-cursors/template
index 579ad8ffaa8..80256b0ccbd 100644
--- a/srcpkgs/breeze-cursors/template
+++ b/srcpkgs/breeze-cursors/template
@@ -2,7 +2,6 @@
 pkgname=breeze-cursors
 version=1.0
 revision=2
-archs=noarch
 create_wrksrc=yes
 build_style=meta
 depends="breeze-amber-cursor-theme
@@ -56,49 +55,42 @@ do_install() {
 }
 
 breeze-amber-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Amber cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Amber
 	}
 }
 breeze-blue-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Blue cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Blue
 	}
 }
 breeze-contrast-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Contrast cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Contrast
 	}
 }
 breeze-hacked-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Hacked cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Hacked
 	}
 }
 breeze-obsidian-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Obsidian cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Obsidian
 	}
 }
 breeze-purple-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Purple cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Purple
 	}
 }
 breeze-red-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Red cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Red
diff --git a/srcpkgs/breeze/template b/srcpkgs/breeze/template
index 03dbbb2240b..3958629f68c 100644
--- a/srcpkgs/breeze/template
+++ b/srcpkgs/breeze/template
@@ -23,7 +23,6 @@ fi
 
 breeze-snow-cursor-theme_package() {
 	short_desc="Breeze Snow cursor theme"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Snow
 	}
diff --git a/srcpkgs/brise/template b/srcpkgs/brise/template
index 442ffddc383..7c50e282036 100644
--- a/srcpkgs/brise/template
+++ b/srcpkgs/brise/template
@@ -2,7 +2,6 @@
 pkgname=brise
 version=0.38.20180515
 revision=2
-archs=noarch
 wrksrc=brise
 build_style=gnu-makefile
 hostmakedepends="pkg-config librime-devel"
diff --git a/srcpkgs/broadcom-bt-firmware/template b/srcpkgs/broadcom-bt-firmware/template
index 8aeef706d15..20e8a30acb4 100644
--- a/srcpkgs/broadcom-bt-firmware/template
+++ b/srcpkgs/broadcom-bt-firmware/template
@@ -3,7 +3,6 @@ pkgname=broadcom-bt-firmware
 version=12.0.1.1105
 revision=1
 _patch=_p1
-archs=noarch
 wrksrc="${pkgname}-${version}${_patch}"
 hostmakedepends="perl"
 short_desc="Broadcom Bluetooth firmware for Linux kernel"
diff --git a/srcpkgs/bsdbuild/template b/srcpkgs/bsdbuild/template
index 11115999c94..95e00c88829 100644
--- a/srcpkgs/bsdbuild/template
+++ b/srcpkgs/bsdbuild/template
@@ -2,7 +2,6 @@
 pkgname=bsdbuild
 version=3.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-manpages --with-manlinks"
 hostmakedepends="groff perl"
diff --git a/srcpkgs/btrfs-backup/template b/srcpkgs/btrfs-backup/template
index 55a3800a857..32cda1dc0c2 100644
--- a/srcpkgs/btrfs-backup/template
+++ b/srcpkgs/btrfs-backup/template
@@ -3,7 +3,6 @@ pkgname=btrfs-backup
 version=0.3.1
 revision=2
 wrksrc="${pkgname/-/_}-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="${pkgname/-/_}"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bucklespring/template b/srcpkgs/bucklespring/template
index ac9bfd3b499..1edf3c6af4c 100644
--- a/srcpkgs/bucklespring/template
+++ b/srcpkgs/bucklespring/template
@@ -27,7 +27,6 @@ do_install() {
 
 bucklespring-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/buildbot-slave/template b/srcpkgs/buildbot-slave/template
index 976fd7e689f..8437af6f6da 100644
--- a/srcpkgs/buildbot-slave/template
+++ b/srcpkgs/buildbot-slave/template
@@ -2,7 +2,6 @@
 pkgname=buildbot-slave
 version=0.8.14
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="buildslave"
 hostmakedepends="python"
diff --git a/srcpkgs/buildbot/template b/srcpkgs/buildbot/template
index 9bee50ec737..d687c8ad989 100644
--- a/srcpkgs/buildbot/template
+++ b/srcpkgs/buildbot/template
@@ -3,7 +3,6 @@ pkgname=buildbot
 reverts="2.4.1_1"
 version=0.8.14
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="buildbot"
 pycompile_dirs="usr/share/buildbot/contrib"
diff --git a/srcpkgs/buku/template b/srcpkgs/buku/template
index 5a5be1e8d2c..276f227bcf1 100644
--- a/srcpkgs/buku/template
+++ b/srcpkgs/buku/template
@@ -2,7 +2,6 @@
 pkgname=buku
 version=4.3
 revision=1
-archs=noarch
 depends="python3-urllib3 python3-BeautifulSoup4 python3-cryptography python3-html5lib"
 short_desc="Cmdline bookmark management utility"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/buku_run/template b/srcpkgs/buku_run/template
index a353c85bcd3..4f73ddec5f6 100644
--- a/srcpkgs/buku_run/template
+++ b/srcpkgs/buku_run/template
@@ -2,7 +2,6 @@
 pkgname=buku_run
 version=0.1.1
 revision=1
-archs=noarch
 conf_files="/etc/buku_run.config"
 depends="rofi gawk sed buku bash"
 short_desc="Rofi frontend for buku bookmarks manager"
diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 20f200e74d6..fecc2f4a967 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -2,7 +2,6 @@
 pkgname=bum
 version=0.1.3
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="bum"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bumblebee-status/template b/srcpkgs/bumblebee-status/template
index 48cc3d02b04..51c9ded64da 100644
--- a/srcpkgs/bumblebee-status/template
+++ b/srcpkgs/bumblebee-status/template
@@ -2,7 +2,6 @@
 pkgname=bumblebee-status
 version=1.9.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}/bumblebee"
 depends="python-netifaces python-psutil python-requests"
 short_desc="Modular, theme-able status line generator for the i3 window manager"
diff --git a/srcpkgs/burp2-server/template b/srcpkgs/burp2-server/template
index 9845f6afe9e..1c48742389a 100644
--- a/srcpkgs/burp2-server/template
+++ b/srcpkgs/burp2-server/template
@@ -79,7 +79,6 @@ burp2-client_package() {
 
 burp2-doc_package() {
 	short_desc="${_desc} - Doc and examples"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/burp
 		vmove usr/share/examples
diff --git a/srcpkgs/bwidget/template b/srcpkgs/bwidget/template
index b6c57fccb25..8ddb29704a1 100644
--- a/srcpkgs/bwidget/template
+++ b/srcpkgs/bwidget/template
@@ -2,7 +2,6 @@
 pkgname=bwidget
 version=1.9.14
 revision=1
-archs=noarch
 makedepends="tk"
 depends="tk"
 short_desc="Set of extension widgets for Tcl/Tk"
diff --git a/srcpkgs/byobu/template b/srcpkgs/byobu/template
index 29c355cb943..869573ebd2d 100644
--- a/srcpkgs/byobu/template
+++ b/srcpkgs/byobu/template
@@ -2,7 +2,6 @@
 pkgname=byobu
 version=5.133
 revision=1
-archs=noarch
 build_style=gnu-configure
 depends="tmux"
 short_desc="Open source text-based window manager and terminal multiplexer"
diff --git a/srcpkgs/bzrtools/template b/srcpkgs/bzrtools/template
index 0c31b0fa84e..410a040f186 100644
--- a/srcpkgs/bzrtools/template
+++ b/srcpkgs/bzrtools/template
@@ -2,7 +2,6 @@
 pkgname=bzrtools
 version=2.6.0
 revision=3
-archs=noarch
 wrksrc=bzrtools
 build_style=python2-module
 pycompile_module="bzrlib/plugins/bzrtools"
diff --git a/srcpkgs/c/template b/srcpkgs/c/template
index 47c95d3060e..b6109733e43 100644
--- a/srcpkgs/c/template
+++ b/srcpkgs/c/template
@@ -2,7 +2,6 @@
 pkgname=c
 version=0.14
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Compile and execute C scripts in one go!"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ca-certificates/template b/srcpkgs/ca-certificates/template
index 9d20f346e84..dcacb5c773e 100644
--- a/srcpkgs/ca-certificates/template
+++ b/srcpkgs/ca-certificates/template
@@ -3,7 +3,6 @@ pkgname=ca-certificates
 version=20200601
 revision=1
 bootstrap=yes
-archs=noarch
 conf_files="/etc/ca-certificates.conf"
 wrksrc="work"
 hostmakedepends="libressl"
diff --git a/srcpkgs/caffeine-ng/template b/srcpkgs/caffeine-ng/template
index 455b2f225c4..6e3786c57c5 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -2,7 +2,6 @@
 pkgname=caffeine-ng
 version=3.4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/calligra/template b/srcpkgs/calligra/template
index d5255ff73ba..d4cb9b6a83f 100644
--- a/srcpkgs/calligra/template
+++ b/srcpkgs/calligra/template
@@ -140,7 +140,6 @@ calligra-words_package() {
 }
 calligra-handbook_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - Documentation (removed temporarily)"
 	#pkg_install() {
 	#	cd ${wrksrc}/build/doc/calligra
diff --git a/srcpkgs/cantarell-fonts/template b/srcpkgs/cantarell-fonts/template
index 8715c4773b3..2c0c2d779a1 100644
--- a/srcpkgs/cantarell-fonts/template
+++ b/srcpkgs/cantarell-fonts/template
@@ -2,7 +2,6 @@
 pkgname=cantarell-fonts
 version=0.201
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dfontsdir=/usr/share/fonts/cantarell -Duseprebuilt=true -Dbuildappstream=true"
 hostmakedepends="gettext pkg-config meson appstream-glib"
diff --git a/srcpkgs/canto-next/template b/srcpkgs/canto-next/template
index fa28bde891b..97506b3ec8f 100644
--- a/srcpkgs/canto-next/template
+++ b/srcpkgs/canto-next/template
@@ -2,7 +2,6 @@
 pkgname=canto-next
 version=0.9.7
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-feedparser"
diff --git a/srcpkgs/carton/template b/srcpkgs/carton/template
index e86b18fdf73..03d59e07782 100644
--- a/srcpkgs/carton/template
+++ b/srcpkgs/carton/template
@@ -3,7 +3,6 @@ pkgname=carton
 version=1.0.34
 revision=1
 wrksrc="Carton-v${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl perl-Class-Tiny perl-JSON perl-Menlo-Legacy
  perl-Module-CPANfile perl-Path-Tiny perl-Try-Tiny"
diff --git a/srcpkgs/castero/template b/srcpkgs/castero/template
index 2d6c421eee3..d387ef06fc7 100644
--- a/srcpkgs/castero/template
+++ b/srcpkgs/castero/template
@@ -2,7 +2,6 @@
 pkgname=castero
 version=0.8.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-cjkwrap
diff --git a/srcpkgs/catch2/template b/srcpkgs/catch2/template
index f8795cb6c77..5db5be90243 100644
--- a/srcpkgs/catch2/template
+++ b/srcpkgs/catch2/template
@@ -2,7 +2,6 @@
 pkgname=catch2
 version=2.11.1
 revision=1
-archs=noarch
 wrksrc="Catch2-${version}"
 build_style=cmake
 configure_args="-DCATCH_USE_VALGRIND=OFF -DCATCH_BUILD_TESTING=ON
diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 38df0a0adef..be2df4a62a7 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -2,7 +2,6 @@
 pkgname=catfish
 version=1.4.13
 revision=2
-archs=noarch
 wrksrc="catfish-catfish-${version}"
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-gobject"
diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index bda81960c5a..45673882a8b 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -2,7 +2,6 @@
 pkgname=ccsm
 version=0.8.18
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"
 makedepends="compiz-core-devel compizconfig-python python3-cairo-devel pygtk-devel"
diff --git a/srcpkgs/cdemu-client/template b/srcpkgs/cdemu-client/template
index 36d40de4bb5..4b338aa5977 100644
--- a/srcpkgs/cdemu-client/template
+++ b/srcpkgs/cdemu-client/template
@@ -2,7 +2,6 @@
 pkgname=cdemu-client
 version=3.2.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DCMAKE_INSTALL_COMPLETIONSDIR=/usr/share/bash-completion/completions"
 hostmakedepends="python3 intltool pkg-config"
diff --git a/srcpkgs/cdm/template b/srcpkgs/cdm/template
index ae30eaaef91..5cca3eeae03 100644
--- a/srcpkgs/cdm/template
+++ b/srcpkgs/cdm/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://github.com/evertiro/cdm"
 distfiles="https://github.com/evertiro/cdm/archive/${version}.tar.gz"
 checksum=530042165ce65cdff3ec62ba9f077d0e8c6744c13f5d449d84fe2506a79d2e56
-archs=noarch
 
 do_install() {
 	sed -i 's| /| $PKGDESTDIR/|g' install.sh
diff --git a/srcpkgs/cdogs-sdl/template b/srcpkgs/cdogs-sdl/template
index 89932232310..3cbdea2430c 100644
--- a/srcpkgs/cdogs-sdl/template
+++ b/srcpkgs/cdogs-sdl/template
@@ -18,7 +18,6 @@ CFLAGS="-Wno-restrict -Wno-format-truncation -Wno-stringop-overflow -Wno-stringo
 
 cdogs-sdl-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cdogs
 	}
diff --git a/srcpkgs/cegui/template b/srcpkgs/cegui/template
index 78f0c103ba7..582040e301e 100644
--- a/srcpkgs/cegui/template
+++ b/srcpkgs/cegui/template
@@ -55,14 +55,12 @@ post_install() {
 }
 cegui-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cegui-${version%%.*}
 	}
 }
 cegui-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/build/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cegui07/template b/srcpkgs/cegui07/template
index b5d0f735ffb..e9f1849e1fb 100644
--- a/srcpkgs/cegui07/template
+++ b/srcpkgs/cegui07/template
@@ -68,14 +68,12 @@ post_install() {
 
 cegui07-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/CEGUI
 	}
 }
 cegui07-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cereal/template b/srcpkgs/cereal/template
index c454ed85833..284bffeaeb6 100644
--- a/srcpkgs/cereal/template
+++ b/srcpkgs/cereal/template
@@ -2,7 +2,6 @@
 pkgname=cereal
 version=1.3.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DSKIP_PORTABILITY_TEST=1 -DTHREAD_SAFE=ON -DWITH_WERROR=OFF"
 short_desc="Header-only C++ serialization library"
diff --git a/srcpkgs/certbot/template b/srcpkgs/certbot/template
index 157e67923f6..0d5bb56d508 100644
--- a/srcpkgs/certbot/template
+++ b/srcpkgs/certbot/template
@@ -2,7 +2,6 @@
 pkgname=certbot
 version=1.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-acme python3-ConfigArgParse python3-configobj
diff --git a/srcpkgs/chatty/template b/srcpkgs/chatty/template
index 16bbc44096d..12d262ccabf 100644
--- a/srcpkgs/chatty/template
+++ b/srcpkgs/chatty/template
@@ -2,7 +2,6 @@
 pkgname=chatty
 version=0.12
 revision=1
-archs=noarch
 hostmakedepends="gradle"
 depends="virtual?java-runtime"
 short_desc="Twitch Chat Client for Desktop"
diff --git a/srcpkgs/checkbashisms/template b/srcpkgs/checkbashisms/template
index 88b2877e8a8..d23f71a29f1 100644
--- a/srcpkgs/checkbashisms/template
+++ b/srcpkgs/checkbashisms/template
@@ -2,7 +2,6 @@
 pkgname=checkbashisms
 version=2.20.4
 revision=1
-archs=noarch
 wrksrc="devscripts-${version}"
 depends="perl"
 checkdepends="shunit2 perl"
diff --git a/srcpkgs/checksec/template b/srcpkgs/checksec/template
index 354e288dc80..89a74ccbe62 100644
--- a/srcpkgs/checksec/template
+++ b/srcpkgs/checksec/template
@@ -2,7 +2,6 @@
 pkgname=checksec
 version=2.2.3
 revision=1
-archs=noarch
 wrksrc="checksec.sh-${version}"
 depends="binutils"
 short_desc="Check for protections like RELRO, NoExec, Stack protection, ASLR, PIE"
diff --git a/srcpkgs/cherry-font/template b/srcpkgs/cherry-font/template
index 496d45988d1..fa1aba8854c 100644
--- a/srcpkgs/cherry-font/template
+++ b/srcpkgs/cherry-font/template
@@ -2,7 +2,6 @@
 pkgname=cherry-font
 version=1.4
 revision=1
-archs=noarch
 wrksrc="cherry-${version}"
 hostmakedepends="bdftopcf"
 depends="font-util"
diff --git a/srcpkgs/cherrytree/template b/srcpkgs/cherrytree/template
index dc9530ce871..6e2d3a36ce3 100644
--- a/srcpkgs/cherrytree/template
+++ b/srcpkgs/cherrytree/template
@@ -2,7 +2,6 @@
 pkgname=cherrytree
 version=0.38.9
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_dirs="usr/share/cherrytree/modules"
 hostmakedepends="gettext python-devel desktop-file-utils"
diff --git a/srcpkgs/cinnamon-translations/template b/srcpkgs/cinnamon-translations/template
index e71998a63fb..aa0dab242cb 100644
--- a/srcpkgs/cinnamon-translations/template
+++ b/srcpkgs/cinnamon-translations/template
@@ -2,7 +2,6 @@
 pkgname=cinnamon-translations
 version=4.6.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="gettext"
 short_desc="Translations for Cinnamon and Nemo"
diff --git a/srcpkgs/ckbcomp/template b/srcpkgs/ckbcomp/template
index 225cb9d35dd..ce832e74d67 100644
--- a/srcpkgs/ckbcomp/template
+++ b/srcpkgs/ckbcomp/template
@@ -2,7 +2,6 @@
 pkgname=ckbcomp
 version=1.195
 revision=1
-archs=noarch
 wrksrc="console-setup"
 depends="perl"
 short_desc="Compile a XKB keyboard description to a keymap suitable for loadkeys"
diff --git a/srcpkgs/cldr-emoji-annotation/template b/srcpkgs/cldr-emoji-annotation/template
index 7910b83971b..ec997cbd749 100644
--- a/srcpkgs/cldr-emoji-annotation/template
+++ b/srcpkgs/cldr-emoji-annotation/template
@@ -3,7 +3,6 @@ pkgname=cldr-emoji-annotation
 version=36.12.120191002.0
 revision=1
 _tag=${version%.*}_${version##*.}
-archs=noarch
 wrksrc="${pkgname}-${_tag}"
 build_style=gnu-configure
 short_desc="Emoji annotation files in CLDR"
diff --git a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
index a2d541c8896..aa598cb15b8 100644
--- a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
+++ b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
@@ -4,7 +4,6 @@ version=7.0.2
 revision=1
 _devuan_rel="1+devuan2.0"
 build_style=fetch
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Dark-purpified GTK3 port of Clearlooks theme"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/clerk/template b/srcpkgs/clerk/template
index a04c6f2cef6..d365c54ed65 100644
--- a/srcpkgs/clerk/template
+++ b/srcpkgs/clerk/template
@@ -2,7 +2,6 @@
 pkgname=clerk
 version=4.0.5
 revision=1
-archs=noarch
 depends="rofi fzf tmux mpc perl-Net-MPD perl-Data-MessagePack perl-File-Slurper
 perl-Config-Simple perl-Try-Tiny perl-IPC-Run perl-HTTP-Date perl-Data-Section-Simple"
 short_desc="MPD client written in Perl using rofi or fzf"
diff --git a/srcpkgs/clipmenu/template b/srcpkgs/clipmenu/template
index 4176172d179..012affa76b6 100644
--- a/srcpkgs/clipmenu/template
+++ b/srcpkgs/clipmenu/template
@@ -2,7 +2,6 @@
 pkgname=clipmenu
 version=6.1.0
 revision=1
-archs=noarch
 depends="bash dmenu"
 short_desc="Clipboard management using dmenu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cloc/template b/srcpkgs/cloc/template
index 72213537232..efe880ccef1 100644
--- a/srcpkgs/cloc/template
+++ b/srcpkgs/cloc/template
@@ -2,7 +2,6 @@
 pkgname=cloc
 version=1.86
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Count Lines of Code"
diff --git a/srcpkgs/clyrics/template b/srcpkgs/clyrics/template
index 5a0144c5b30..6d9b04e6067 100644
--- a/srcpkgs/clyrics/template
+++ b/srcpkgs/clyrics/template
@@ -2,7 +2,6 @@
 pkgname=clyrics
 version=0.12
 revision=1
-archs=noarch
 depends="perl-LWP-Protocol-https perl-WWW-Mechanize"
 short_desc="Extensible lyrics fetcher, with daemon support for cmus and mocp"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cmake-vala/template b/srcpkgs/cmake-vala/template
index 94222b5da1a..c263c7a5ad5 100644
--- a/srcpkgs/cmake-vala/template
+++ b/srcpkgs/cmake-vala/template
@@ -2,7 +2,6 @@
 pkgname=cmake-vala
 version=1
 revision=1
-archs=noarch
 wrksrc="cmake-vala-r${version}"
 build_style=cmake
 depends="cmake"
diff --git a/srcpkgs/cmc/template b/srcpkgs/cmc/template
index 34a50561d1d..d834639933b 100644
--- a/srcpkgs/cmc/template
+++ b/srcpkgs/cmc/template
@@ -2,7 +2,6 @@
 pkgname=cmc
 version=1.1.4
 revision=1
-archs=noarch
 short_desc="SSH ControlMaster Controller"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
 license="MIT"
diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 8c45bc12fa4..abef9a7f6a8 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -2,7 +2,6 @@
 pkgname=coccigrep
 version=1.20
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="coccinelle python3-Pygments"
diff --git a/srcpkgs/coin3/template b/srcpkgs/coin3/template
index 4150c863e9f..acb1e4a0b88 100644
--- a/srcpkgs/coin3/template
+++ b/srcpkgs/coin3/template
@@ -67,7 +67,6 @@ coin3-devel_package() {
 
 coin3-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/collectl/template b/srcpkgs/collectl/template
index aec4b83ff46..a3d0ba59310 100644
--- a/srcpkgs/collectl/template
+++ b/srcpkgs/collectl/template
@@ -2,7 +2,6 @@
 pkgname=collectl
 version=4.3.1
 revision=1
-archs=noarch
 conf_files="/etc/collectl.conf"
 depends="perl perl-Term-ReadKey"
 short_desc="Collects data that describes the current system status"
diff --git a/srcpkgs/colordiff/template b/srcpkgs/colordiff/template
index bf7fea1873c..f01e98f5616 100644
--- a/srcpkgs/colordiff/template
+++ b/srcpkgs/colordiff/template
@@ -2,7 +2,6 @@
 pkgname=colordiff
 version=1.0.19
 revision=1
-archs=noarch
 depends="perl"
 conf_files="/etc/colordiffrc /etc/colordiffrc-lightbg /etc/colordiffrc-gitdiff"
 short_desc="Colorizes output of diff"
diff --git a/srcpkgs/compiz-bcop/template b/srcpkgs/compiz-bcop/template
index c1a82cb881b..667863577fb 100644
--- a/srcpkgs/compiz-bcop/template
+++ b/srcpkgs/compiz-bcop/template
@@ -2,7 +2,6 @@
 pkgname=compiz-bcop
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/composer/template b/srcpkgs/composer/template
index 353603a5118..03e0b111389 100644
--- a/srcpkgs/composer/template
+++ b/srcpkgs/composer/template
@@ -2,7 +2,6 @@
 pkgname=composer
 version=1.10.10
 revision=1
-archs=noarch
 build_style=fetch
 depends="php"
 short_desc="Dependency manager for PHP"
diff --git a/srcpkgs/coreboot-utils/template b/srcpkgs/coreboot-utils/template
index e6c57472ea1..47ffc16a9db 100644
--- a/srcpkgs/coreboot-utils/template
+++ b/srcpkgs/coreboot-utils/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 coreboot-utils-me_cleaner_package() {
-	archs=noarch
 	python_version=3
 	depends="python3"
 	short_desc="Tool for partial deblobbing Intel ME/TXE firmware images"
diff --git a/srcpkgs/couchpotato/template b/srcpkgs/couchpotato/template
index 3d7e27004d1..1e4572fcdac 100644
--- a/srcpkgs/couchpotato/template
+++ b/srcpkgs/couchpotato/template
@@ -2,7 +2,6 @@
 pkgname=couchpotato
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="CouchPotatoServer-build-${version}"
 pycompile_dirs="/usr/share/couchpotato"
 make_dirs="
diff --git a/srcpkgs/coursera-dl/template b/srcpkgs/coursera-dl/template
index 4609573f7f4..fff37f018d4 100644
--- a/srcpkgs/coursera-dl/template
+++ b/srcpkgs/coursera-dl/template
@@ -2,7 +2,6 @@
 pkgname=coursera-dl
 version=0.11.5
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="coursera"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/cowsay-temoc/template b/srcpkgs/cowsay-temoc/template
index f03a4d1775e..efaba0d3fed 100644
--- a/srcpkgs/cowsay-temoc/template
+++ b/srcpkgs/cowsay-temoc/template
@@ -9,7 +9,6 @@ license="GPL-3"
 homepage="https://github.com/kulinacs/cowsay-temoc"
 distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=6667a37a0de41fb46750bce4847fee97da251e9bea4dc5a33b5c0e432b795c8d
-archs=noarch
 
 do_install() {
 	vinstall temoc.cow 644 /usr/share/cows/
diff --git a/srcpkgs/cowsay/template b/srcpkgs/cowsay/template
index efa372b3aa5..97d67b9fd40 100644
--- a/srcpkgs/cowsay/template
+++ b/srcpkgs/cowsay/template
@@ -2,7 +2,6 @@
 pkgname=cowsay
 version=3.04
 revision=2
-archs=noarch
 wrksrc="rank-amateur-cowsay-${pkgname}-${version}"
 depends="perl"
 short_desc="Configurable speaking/thinking cow (and a bit more)"
diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index fc9bc66212b..f9d769162d5 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -2,7 +2,6 @@
 pkgname=cozy
 version=0.6.18
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config glib-devel python3 python3-distro python3-peewee
  python3-mutagen python3-gobject-devel"
diff --git a/srcpkgs/cpanminus/template b/srcpkgs/cpanminus/template
index 490ecd111b2..7e385544b1d 100644
--- a/srcpkgs/cpanminus/template
+++ b/srcpkgs/cpanminus/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/App-cpanminus"
 distfiles="${CPAN_SITE}/App/App-${pkgname}-${version}.tar.gz"
 checksum=9b60767fe40752ef7a9d3f13f19060a63389a5c23acc3e9827e19b75500f81f3
-archs=noarch
diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index 12b54631617..dd9b32549b5 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -2,7 +2,6 @@
 pkgname=cpuset
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/create_ap/template b/srcpkgs/create_ap/template
index 481ba622def..2bb58047096 100644
--- a/srcpkgs/create_ap/template
+++ b/srcpkgs/create_ap/template
@@ -2,7 +2,6 @@
 pkgname=create_ap
 version=0.4.6
 revision=2
-archs=noarch
 conf_files="/etc/create_ap.conf"
 build_style=gnu-makefile
 depends="bash dnsmasq hostapd iproute2 iptables iw procps-ng util-linux"
diff --git a/srcpkgs/criu/template b/srcpkgs/criu/template
index 0f7b55853f3..9d52f8ce024 100644
--- a/srcpkgs/criu/template
+++ b/srcpkgs/criu/template
@@ -37,7 +37,6 @@ criu-devel_package() {
 }
 
 criu-python_package() {
-	archs=noarch
 	depends="python-protobuf python-ipaddr criu-${version}_${revision}"
 	short_desc="Python2 bindings for criu and crit cli util"
 	pkg_install() {
diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index 5231b4a4cb3..b57e7aa642c 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -2,7 +2,6 @@
 pkgname=ctop
 version=1.0.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/culmus/template b/srcpkgs/culmus/template
index dc6599990ef..d5cc36e1ef4 100644
--- a/srcpkgs/culmus/template
+++ b/srcpkgs/culmus/template
@@ -2,7 +2,6 @@
 pkgname=culmus
 version=0.133
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="A collection of Type1 and TrueType free Hebrew fonts"
 maintainer="DirectorX <void.directorx@protonmail.com>"
diff --git a/srcpkgs/cura-fdm-materials/template b/srcpkgs/cura-fdm-materials/template
index 111b731f525..14d347d81fd 100644
--- a/srcpkgs/cura-fdm-materials/template
+++ b/srcpkgs/cura-fdm-materials/template
@@ -3,7 +3,6 @@ pkgname=cura-fdm-materials
 reverts="2019.08.21_1"
 version=4.7.0
 revision=1
-archs=noarch
 wrksrc="fdm_materials-${version}"
 build_style=cmake
 short_desc="FDM Material database"
diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index f66e02f2d61..ea8e2b52098 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -2,7 +2,6 @@
 pkgname=cura
 version=4.7.0
 revision=1
-archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake
 configure_args="-DCURA_VERSION=${version}
diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index f5afe3bba34..518da660991 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -2,7 +2,6 @@
 pkgname=curseradio
 version=0.0.20171017
 revision=4
-archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"
 build_style=python3-module
diff --git a/srcpkgs/cvs2svn/template b/srcpkgs/cvs2svn/template
index 55e679f2abe..f8b13d2ac0b 100644
--- a/srcpkgs/cvs2svn/template
+++ b/srcpkgs/cvs2svn/template
@@ -2,7 +2,6 @@
 pkgname=cvs2svn
 version=2.5.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_build_args="man"
 hostmakedepends="python"
diff --git a/srcpkgs/cycle/template b/srcpkgs/cycle/template
index 58649da6482..8affc847c16 100644
--- a/srcpkgs/cycle/template
+++ b/srcpkgs/cycle/template
@@ -2,7 +2,6 @@
 pkgname=cycle
 version=0.3.2
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/cycle"
 hostmakedepends="python"
 depends="wxPython"
diff --git a/srcpkgs/d-feet/template b/srcpkgs/d-feet/template
index beac13b35c3..e984f2af90f 100644
--- a/srcpkgs/d-feet/template
+++ b/srcpkgs/d-feet/template
@@ -2,7 +2,6 @@
 pkgname=d-feet
 version=0.3.15
 revision=3
-archs=noarch
 build_style=meson
 pycompile_module="dfeet"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"
diff --git a/srcpkgs/db/template b/srcpkgs/db/template
index b7519609b9e..bdd42a64e9e 100644
--- a/srcpkgs/db/template
+++ b/srcpkgs/db/template
@@ -32,7 +32,6 @@ db-devel_package() {
 }
 db-doc_package() {
 	short_desc+=" - documentation files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/ddclient/template b/srcpkgs/ddclient/template
index 37d85a49f4c..8d3fd068633 100644
--- a/srcpkgs/ddclient/template
+++ b/srcpkgs/ddclient/template
@@ -2,7 +2,6 @@
 pkgname=ddclient
 version=3.9.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="perl-Data-Validate-IP perl-IO-Socket-SSL"
 short_desc="Perl client used to update dynamic DNS"
diff --git a/srcpkgs/ddgr/template b/srcpkgs/ddgr/template
index d4142bb59b9..25ef4695ac8 100644
--- a/srcpkgs/ddgr/template
+++ b/srcpkgs/ddgr/template
@@ -2,7 +2,6 @@
 pkgname=ddgr
 version=1.9
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-requests"
 short_desc="DuckDuckGo from the terminal"
diff --git a/srcpkgs/deepin-gtk-theme/template b/srcpkgs/deepin-gtk-theme/template
index becf7701621..26865e28adb 100644
--- a/srcpkgs/deepin-gtk-theme/template
+++ b/srcpkgs/deepin-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-gtk-theme
 version=17.10.11
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Deepin GTK Theme"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/deepin-icon-theme/template b/srcpkgs/deepin-icon-theme/template
index 60902c27771..ff19188a5a7 100644
--- a/srcpkgs/deepin-icon-theme/template
+++ b/srcpkgs/deepin-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-icon-theme
 version=2020.04.13
 revision=1
-archs=noarch
 hostmakedepends="xcursorgen"
 depends="papirus-icon-theme"
 short_desc="Deepin Icon Theme"
diff --git a/srcpkgs/deerportal/template b/srcpkgs/deerportal/template
index c027c258e68..ac55e4ee30e 100644
--- a/srcpkgs/deerportal/template
+++ b/srcpkgs/deerportal/template
@@ -14,7 +14,6 @@ checksum=a79a6286c9be1c6073f5d8fe79e45b309425f597d0532d2a042cd8369f57725d
 
 deerportal-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/deheader/template b/srcpkgs/deheader/template
index f3809a35a44..4fa6ef39046 100644
--- a/srcpkgs/deheader/template
+++ b/srcpkgs/deheader/template
@@ -3,7 +3,6 @@ pkgname=deheader
 version=1.6
 revision=3
 create_wrksrc=yes
-archs=noarch
 hostmakedepends="tar"
 depends="python"
 short_desc="C and C++ header analyzer"
diff --git a/srcpkgs/dehydrated/template b/srcpkgs/dehydrated/template
index c7b3ce7abb9..74875e6a3c7 100644
--- a/srcpkgs/dehydrated/template
+++ b/srcpkgs/dehydrated/template
@@ -2,7 +2,6 @@
 pkgname=dehydrated
 version=0.6.5
 revision=1
-archs=noarch
 depends="curl"
 short_desc="Acme client implemented as a shell-script – just add water"
 maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
diff --git a/srcpkgs/dejavu-fonts-ttf/template b/srcpkgs/dejavu-fonts-ttf/template
index 88bc1960c99..ba0a43f8c64 100644
--- a/srcpkgs/dejavu-fonts-ttf/template
+++ b/srcpkgs/dejavu-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=dejavu-fonts-ttf
 version=2.37
 revision=1
-archs=noarch
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
 short_desc="DejaVu family of TrueType fonts"
diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index bb48e58ef6f..00afd733aec 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -2,7 +2,6 @@
 pkgname=deluge
 version=2.0.3
 revision=6
-archs=noarch
 build_style=python3-module
 # TODO package python3-slimit to minify javascript
 hostmakedepends="intltool python3-setuptools python3-wheel"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 deluge-gtk_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - GTK+ frontend"
 	depends="${sourcepkg}-${version}_${revision} python3-gobject"
@@ -42,7 +40,6 @@ deluge-gtk_package() {
 	}
 }
 deluge-web_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - Web frontend"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index e3bb19e3fc8..a32f186450f 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -2,7 +2,6 @@
 pkgname=devedeng
 version=4.16.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"
 hostmakedepends="gettext python3"
diff --git a/srcpkgs/dex/template b/srcpkgs/dex/template
index 88b5552b070..06af8b30b5d 100644
--- a/srcpkgs/dex/template
+++ b/srcpkgs/dex/template
@@ -2,7 +2,6 @@
 pkgname=dex
 version=0.8.0
 revision=2
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANPREFIX=/usr/share/man"
 hostmakedepends="python3-Sphinx"
diff --git a/srcpkgs/dhcpcd-gtk/template b/srcpkgs/dhcpcd-gtk/template
index af5bddc45c5..62ddaa13e59 100644
--- a/srcpkgs/dhcpcd-gtk/template
+++ b/srcpkgs/dhcpcd-gtk/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 dhcpcd-icons_package() {
-	archs=noarch
 	short_desc+=" - icon set"
 	depends="hicolor-icon-theme"
 	replaces="dhcpcd-gtk<0.7.4"
diff --git a/srcpkgs/diffoscope/template b/srcpkgs/diffoscope/template
index a45bc5d7959..d3f8896c50a 100644
--- a/srcpkgs/diffoscope/template
+++ b/srcpkgs/diffoscope/template
@@ -2,7 +2,6 @@
 pkgname=diffoscope
 version=147
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-magic python3-libarchive-c python3-setuptools
diff --git a/srcpkgs/dina-font/template b/srcpkgs/dina-font/template
index 2d4a740eacc..dcc1660f28e 100644
--- a/srcpkgs/dina-font/template
+++ b/srcpkgs/dina-font/template
@@ -2,7 +2,6 @@
 pkgname=dina-font
 version=2.93
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="bdftopcf font-util unzip"
 depends="font-util"
diff --git a/srcpkgs/ditaa/template b/srcpkgs/ditaa/template
index c7978f18bd4..3734b1316a3 100644
--- a/srcpkgs/ditaa/template
+++ b/srcpkgs/ditaa/template
@@ -2,7 +2,6 @@
 pkgname=ditaa
 version=0.11.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=fetch
 depends="virtual?java-environment"
diff --git a/srcpkgs/dkimproxy/template b/srcpkgs/dkimproxy/template
index de0eec306ba..a31f3a895aa 100644
--- a/srcpkgs/dkimproxy/template
+++ b/srcpkgs/dkimproxy/template
@@ -3,8 +3,6 @@ pkgname=dkimproxy
 version=1.4.1
 revision=1
 build_style=gnu-configure
-# dkimproxy is written in perl, so noarch
-archs=noarch
 hostmakedepends="perl perl-Net-Server perl-Mail-DKIM"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/dnssec-anchors/template b/srcpkgs/dnssec-anchors/template
index 18b24b4f80d..33e43584acd 100644
--- a/srcpkgs/dnssec-anchors/template
+++ b/srcpkgs/dnssec-anchors/template
@@ -8,7 +8,6 @@ short_desc="DNSSEC trust anchors for the root zone"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
 homepage="http://data.iana.org/root-anchors/"
-archs=noarch
 
 do_install() {
 	# Generate using unbound-anchor(1).
diff --git a/srcpkgs/docbook-dsssl/template b/srcpkgs/docbook-dsssl/template
index 2530523b127..e8cbf4a1161 100644
--- a/srcpkgs/docbook-dsssl/template
+++ b/srcpkgs/docbook-dsssl/template
@@ -2,7 +2,6 @@
 pkgname=docbook-dsssl
 version=1.79
 revision=3
-archs=noarch
 makedepends="xmlcatmgr docbook-xml"
 depends="${makedepends}"
 short_desc="DSSSL stylesheets for the DocBook DTD"
diff --git a/srcpkgs/docbook-xml/template b/srcpkgs/docbook-xml/template
index ef5634c0603..9ee76e8cd83 100644
--- a/srcpkgs/docbook-xml/template
+++ b/srcpkgs/docbook-xml/template
@@ -2,7 +2,6 @@
 pkgname=docbook-xml
 version=4.5
 revision=4
-archs=noarch
 wrksrc="docbook"
 hostmakedepends="bsdtar"
 makedepends="xmlcatmgr"
diff --git a/srcpkgs/docbook-xsl-ns/template b/srcpkgs/docbook-xsl-ns/template
index 6c34d9b171b..5e3baf038f8 100644
--- a/srcpkgs/docbook-xsl-ns/template
+++ b/srcpkgs/docbook-xsl-ns/template
@@ -3,7 +3,6 @@ pkgname=docbook-xsl-ns
 # keep in sync with docbook-xsl
 version=1.79.1
 revision=1
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Cameron Nemo <cnemo@tutanota.com>"
diff --git a/srcpkgs/docbook-xsl/template b/srcpkgs/docbook-xsl/template
index 0d63b09dfbe..da08cd74cdb 100644
--- a/srcpkgs/docbook-xsl/template
+++ b/srcpkgs/docbook-xsl/template
@@ -4,7 +4,6 @@ reverts="1.79.2_1"
 # keep in sync with docbook-xsl-ns
 version=1.79.1
 revision=7
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/docbook/template b/srcpkgs/docbook/template
index a36660f122b..710a65e699c 100644
--- a/srcpkgs/docbook/template
+++ b/srcpkgs/docbook/template
@@ -2,7 +2,6 @@
 pkgname=docbook
 version=4.5
 revision=4
-archs=noarch
 hostmakedepends="bsdtar"
 depends="xmlcatmgr ISOEnts"
 short_desc="SGML DTD designed for computer documentation"
diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index d381a1091d0..c61787c2473 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -2,7 +2,6 @@
 pkgname=docker-compose
 version=1.25.5
 revision=1
-archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/docx2txt/template b/srcpkgs/docx2txt/template
index 709713d475f..aaea19e0205 100644
--- a/srcpkgs/docx2txt/template
+++ b/srcpkgs/docx2txt/template
@@ -2,7 +2,6 @@
 pkgname=docx2txt
 version=1.4
 revision=2
-archs=noarch
 conf_files="/etc/docx2txt.config"
 depends="perl unzip"
 short_desc="Docx (MS Word) to Text convertor"
diff --git a/srcpkgs/dot-xsession/template b/srcpkgs/dot-xsession/template
index e5fe04677e9..fd21ba7c217 100644
--- a/srcpkgs/dot-xsession/template
+++ b/srcpkgs/dot-xsession/template
@@ -2,7 +2,6 @@
 pkgname=dot-xsession
 version=0.1
 revision=2
-archs=noarch
 depends="xmessage"
 short_desc="XSession file to run the users ~/.xsession"
 maintainer="Florian Wagner <florian@wagner-flo.net>"
diff --git a/srcpkgs/downloader-cli/template b/srcpkgs/downloader-cli/template
index 2e5b1ed2d59..92781e2363b 100644
--- a/srcpkgs/downloader-cli/template
+++ b/srcpkgs/downloader-cli/template
@@ -2,7 +2,6 @@
 pkgname=downloader-cli
 version=0.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-urllib3 python3-downloader-cli"
diff --git a/srcpkgs/dpdk/template b/srcpkgs/dpdk/template
index 0f3b5630b7b..bc6b9148a62 100644
--- a/srcpkgs/dpdk/template
+++ b/srcpkgs/dpdk/template
@@ -33,7 +33,6 @@ post_install() {
 
 dpdk-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/dracut/template b/srcpkgs/dracut/template
index f4f52be097a..68ef7f8e37b 100644
--- a/srcpkgs/dracut/template
+++ b/srcpkgs/dracut/template
@@ -57,7 +57,6 @@ post_install() {
 dracut-network_package() {
 	depends="dhclient ${sourcepkg}-${version}_${revision}"
 	short_desc+=" - network modules"
-	archs=noarch
 	pkg_install() {
 		for f in 40network 90livenet 95fcoe 95iscsi \
 			95nbd 95nfs 95zfcp 95znet; do
diff --git a/srcpkgs/dreampie/template b/srcpkgs/dreampie/template
index edd0f48298b..bf8d07ea53f 100644
--- a/srcpkgs/dreampie/template
+++ b/srcpkgs/dreampie/template
@@ -2,7 +2,6 @@
 pkgname=dreampie
 version=1.2.1
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="dreampielib"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/drist/template b/srcpkgs/drist/template
index 89f39b7eec8..99700b7f90f 100644
--- a/srcpkgs/drist/template
+++ b/srcpkgs/drist/template
@@ -2,7 +2,6 @@
 pkgname=drist
 version=1.04
 revision=1
-archs=noarch
 wrksrc=$pkgname-v$version
 build_style=gnu-makefile
 depends="openssh rsync"
diff --git a/srcpkgs/dstat/template b/srcpkgs/dstat/template
index 3ec983e85db..084d1426889 100644
--- a/srcpkgs/dstat/template
+++ b/srcpkgs/dstat/template
@@ -2,7 +2,6 @@
 pkgname=dstat
 version=0.7.4
 revision=2
-archs=noarch
 makedepends="python3"
 depends="python3-six"
 short_desc="Versatile tool for generating system resource statistics"
diff --git a/srcpkgs/dtrx/template b/srcpkgs/dtrx/template
index 6ccec18f5b2..e7d8af1c2eb 100644
--- a/srcpkgs/dtrx/template
+++ b/srcpkgs/dtrx/template
@@ -2,7 +2,6 @@
 pkgname=dtrx
 version=7.1
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python"
diff --git a/srcpkgs/duiadns/template b/srcpkgs/duiadns/template
index ae34b00cb95..30c1a9ec4e0 100644
--- a/srcpkgs/duiadns/template
+++ b/srcpkgs/duiadns/template
@@ -2,7 +2,6 @@
 pkgname=duiadns
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-netifaces python3-netaddr python3-requests"
diff --git a/srcpkgs/durden/template b/srcpkgs/durden/template
index 54a4bc1759b..c4de0863636 100644
--- a/srcpkgs/durden/template
+++ b/srcpkgs/durden/template
@@ -9,7 +9,6 @@ license="BSD-3-Clause"
 homepage="http://durden.arcan-fe.com/"
 distfiles="https://github.com/letoram/${pkgname}/archive/${version}.tar.gz"
 checksum=f0cb0cdc6d16b4807efab5b6152b9f26813dccd2d66af5f1d80494769f840915
-archs=noarch
 
 do_install() {
 	vbin distr/durden
diff --git a/srcpkgs/easyrsa/template b/srcpkgs/easyrsa/template
index 517dd6ff50b..fb5adbec8db 100644
--- a/srcpkgs/easyrsa/template
+++ b/srcpkgs/easyrsa/template
@@ -2,7 +2,6 @@
 pkgname=easyrsa
 version=3.0.7
 revision=1
-archs="noarch"
 wrksrc="EasyRSA-${version}"
 depends="libressl"
 short_desc="Simple shell based CA utility"
diff --git a/srcpkgs/econnman/template b/srcpkgs/econnman/template
index 9568c2e2adf..f8750ebb914 100644
--- a/srcpkgs/econnman/template
+++ b/srcpkgs/econnman/template
@@ -2,7 +2,6 @@
 pkgname=econnman
 version=1.1.0
 revision=5
-archs=noarch
 _gitrev=18e7be6bf80df6b86965ba93391b205339fc7267
 wrksrc=${pkgname}-${_gitrev}
 build_style=gnu-configure
diff --git a/srcpkgs/edx-dl/template b/srcpkgs/edx-dl/template
index 1ea89343e7a..1f0b0d53010 100644
--- a/srcpkgs/edx-dl/template
+++ b/srcpkgs/edx-dl/template
@@ -2,7 +2,6 @@
 pkgname=edx-dl
 version=0.1.13
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-html5lib python3-setuptools
diff --git a/srcpkgs/eigen/template b/srcpkgs/eigen/template
index 8344fbf98ec..7d283094bf7 100644
--- a/srcpkgs/eigen/template
+++ b/srcpkgs/eigen/template
@@ -2,7 +2,6 @@
 pkgname=eigen
 version=3.3.7
 revision=2
-archs=noarch
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/eigen2/template b/srcpkgs/eigen2/template
index 08087b4900b..dffc3ffe0fa 100644
--- a/srcpkgs/eigen2/template
+++ b/srcpkgs/eigen2/template
@@ -3,7 +3,6 @@ pkgname=eigen2
 reverts="3.2.2_1"
 version=2.0.17
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b23437e61a07"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 2.x)"
diff --git a/srcpkgs/eigen3.2/template b/srcpkgs/eigen3.2/template
index eaedcc6fe2a..5ac0fc384ac 100644
--- a/srcpkgs/eigen3.2/template
+++ b/srcpkgs/eigen3.2/template
@@ -2,7 +2,6 @@
 pkgname=eigen3.2
 version=3.2.10
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b9cd8366d4e8"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
diff --git a/srcpkgs/ekushey-fonts-ttf/template b/srcpkgs/ekushey-fonts-ttf/template
index 406a5f88969..3eb10b23313 100644
--- a/srcpkgs/ekushey-fonts-ttf/template
+++ b/srcpkgs/ekushey-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=ekushey-fonts-ttf
 version=20191020
 revision=1
-archs=noarch
 build_style=fetch
 depends="font-util"
 short_desc="Bengali fonts from Ekushey project"
diff --git a/srcpkgs/electrum-ltc/template b/srcpkgs/electrum-ltc/template
index 550fda484e6..0f9ed450bbf 100644
--- a/srcpkgs/electrum-ltc/template
+++ b/srcpkgs/electrum-ltc/template
@@ -2,7 +2,6 @@
 pkgname=electrum-ltc
 version=3.3.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx
diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 835fbf25533..839b59a6ba2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -2,7 +2,6 @@
 pkgname=electrum
 version=3.3.8
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"
 hostmakedepends="python3-PyQt5-devel-tools python3-setuptools"
diff --git a/srcpkgs/emacs-ess/template b/srcpkgs/emacs-ess/template
index 40338f2f137..a03e71623f5 100644
--- a/srcpkgs/emacs-ess/template
+++ b/srcpkgs/emacs-ess/template
@@ -3,7 +3,6 @@ pkgname=emacs-ess
 reverts="18.10r1_1"
 version=18.10.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="ess-${version}"
 makedepends="emacs perl"
diff --git a/srcpkgs/emacs/template b/srcpkgs/emacs/template
index 420ef0fa14f..4e2f9c7fdea 100755
--- a/srcpkgs/emacs/template
+++ b/srcpkgs/emacs/template
@@ -81,7 +81,6 @@ do_install() {
 
 emacs-common_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/emacs
 		vmove usr/share/man
diff --git a/srcpkgs/emerald-themes/template b/srcpkgs/emerald-themes/template
index 7e17b4bfad9..a9e11467bae 100644
--- a/srcpkgs/emerald-themes/template
+++ b/srcpkgs/emerald-themes/template
@@ -2,7 +2,6 @@
 pkgname=emerald-themes
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config"
 makedepends="emerald-devel"
diff --git a/srcpkgs/encodings/template b/srcpkgs/encodings/template
index eb2ef08e8e6..f4be9fec9d6 100644
--- a/srcpkgs/encodings/template
+++ b/srcpkgs/encodings/template
@@ -2,7 +2,6 @@
 pkgname=encodings
 version=1.0.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config font-util"
 depends="font-util"
diff --git a/srcpkgs/endless-sky-gl21/template b/srcpkgs/endless-sky-gl21/template
index ead1c34e626..f69b748b665 100644
--- a/srcpkgs/endless-sky-gl21/template
+++ b/srcpkgs/endless-sky-gl21/template
@@ -18,7 +18,6 @@ checksum=46918d0cc35aaeb1219194099223e3338245aa04aa3f29fd76e3376bf5779376
 
 endless-sky-gl21-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 829bdf28df7..4aa6fcffc44 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -15,7 +15,6 @@ checksum=31f76ac11666415478678d924174d43a620a7fd1093e95131776aed12b912eb4
 
 endless-sky-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/enigma/template b/srcpkgs/enigma/template
index 89f359f80c7..3d11662e5da 100644
--- a/srcpkgs/enigma/template
+++ b/srcpkgs/enigma/template
@@ -31,7 +31,6 @@ post_install() {
 
 enigma-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/enigma
 	}
@@ -39,7 +38,6 @@ enigma-data_package() {
 
 enigma-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/envypn-font/template b/srcpkgs/envypn-font/template
index 9f3d7de3075..146c2b130ce 100644
--- a/srcpkgs/envypn-font/template
+++ b/srcpkgs/envypn-font/template
@@ -2,7 +2,6 @@
 pkgname=envypn-font
 version=1.7.1
 revision=3
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="Readable bitmap font inspired by Envy Code R"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template
index 371e9404e69..35c9bed4ee9 100644
--- a/srcpkgs/erlang/template
+++ b/srcpkgs/erlang/template
@@ -59,7 +59,6 @@ post_install() {
 erlang-doc_package() {
 	short_desc="Erlang programming language documentation and examples"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/erlang/doc
 		for i in $(cd ${DESTDIR}; find usr/lib/erlang -type d \( -path '*/examples' -o -path '*/doc/html' \))
diff --git a/srcpkgs/escrotum/template b/srcpkgs/escrotum/template
index 44cec111737..5438e8a4c14 100644
--- a/srcpkgs/escrotum/template
+++ b/srcpkgs/escrotum/template
@@ -2,7 +2,6 @@
 pkgname=escrotum
 version=0.2.1
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="escrotum"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/eselect/template b/srcpkgs/eselect/template
index 04111ebc945..fd987f2c034 100644
--- a/srcpkgs/eselect/template
+++ b/srcpkgs/eselect/template
@@ -2,7 +2,6 @@
 pkgname=eselect
 version=1.4.16
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libtool"
 depends="bash"
diff --git a/srcpkgs/etcetera/template b/srcpkgs/etcetera/template
index d6723467c4b..0af51a75c49 100644
--- a/srcpkgs/etcetera/template
+++ b/srcpkgs/etcetera/template
@@ -2,7 +2,6 @@
 pkgname=etcetera
 version=1.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Config file management with a touch of wisdom"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/etckeeper/template b/srcpkgs/etckeeper/template
index 26cffae3768..210c55a62dd 100644
--- a/srcpkgs/etckeeper/template
+++ b/srcpkgs/etckeeper/template
@@ -2,7 +2,6 @@
 pkgname=etckeeper
 version=1.18.14
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/etckeeper/etckeeper.conf"
 hostmakedepends="perl"
diff --git a/srcpkgs/etesync-dav/template b/srcpkgs/etesync-dav/template
index 03763f96644..3c8b547f230 100644
--- a/srcpkgs/etesync-dav/template
+++ b/srcpkgs/etesync-dav/template
@@ -2,7 +2,6 @@
 pkgname=etesync-dav
 version=0.17.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-etesync radicale2 python3-Flask python3-Flask-WTF"
diff --git a/srcpkgs/etr/template b/srcpkgs/etr/template
index f3af59d2220..6414c6a8c9c 100644
--- a/srcpkgs/etr/template
+++ b/srcpkgs/etr/template
@@ -15,7 +15,6 @@ checksum=4b2899314eda8d0826504ab274acb13ab0dab58b6d0641587749dfa77757da17
 
 etr-data_package() {
  	short_desc+=" - data files"
- 	archs=noarch
  	pkg_install() {
  		vmove usr/share/etr
  	}
diff --git a/srcpkgs/execline/template b/srcpkgs/execline/template
index ad3b509a2f1..4deda1faa19 100644
--- a/srcpkgs/execline/template
+++ b/srcpkgs/execline/template
@@ -35,7 +35,6 @@ post_install() {
 }
 
 execline-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/exiftool/template b/srcpkgs/exiftool/template
index 1b6d0f51e72..f4f4fb89485 100644
--- a/srcpkgs/exiftool/template
+++ b/srcpkgs/exiftool/template
@@ -2,7 +2,6 @@
 pkgname=exiftool
 version=12.05
 revision=1
-archs=noarch
 wrksrc="Image-ExifTool-${version}"
 build_style=perl-module
 hostmakedepends="perl tar"
diff --git a/srcpkgs/extra-cmake-modules/template b/srcpkgs/extra-cmake-modules/template
index 99601e6ce62..5a958049219 100644
--- a/srcpkgs/extra-cmake-modules/template
+++ b/srcpkgs/extra-cmake-modules/template
@@ -2,7 +2,6 @@
 pkgname=extra-cmake-modules
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_HTML_DOCS=OFF -DBUILD_TESTING=OFF"
 hostmakedepends="python3-Sphinx qt5-tools"
diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index ee7f68f9e36..bbdbde91e85 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -2,7 +2,6 @@
 pkgname=eyeD3
 version=0.9.5
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-grako python3-pylast python3-setuptools python3-deprecation
diff --git a/srcpkgs/faba-icon-theme/template b/srcpkgs/faba-icon-theme/template
index 7624d10a4db..6fc98c76314 100644
--- a/srcpkgs/faba-icon-theme/template
+++ b/srcpkgs/faba-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faba-icon-theme
 version=4.3
 revision=1
-archs=noarch
 build_style=meson
 short_desc="Sexy, modern FreeDesktop icon set with Tango and elementary influences"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/faenza-icon-theme/template b/srcpkgs/faenza-icon-theme/template
index f05167001e4..447ffeef02e 100644
--- a/srcpkgs/faenza-icon-theme/template
+++ b/srcpkgs/faenza-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faenza-icon-theme
 version=1.3.1
 revision=2
-archs=noarch
 wrksrc="faenza-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme"
 short_desc="Faenza icon theme"
diff --git a/srcpkgs/faience-icon-theme/template b/srcpkgs/faience-icon-theme/template
index 27a4fb5be9a..426205bbf78 100644
--- a/srcpkgs/faience-icon-theme/template
+++ b/srcpkgs/faience-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faience-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="faience-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme faenza-icon-theme"
 short_desc="An icon theme based on Faenza"
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index cde2f25630f..3b823a5bc16 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -2,7 +2,6 @@
 pkgname=fail2ban
 version=0.11.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
diff --git a/srcpkgs/fake-hwclock/template b/srcpkgs/fake-hwclock/template
index 16731b49dfe..c1f33f221ac 100644
--- a/srcpkgs/fake-hwclock/template
+++ b/srcpkgs/fake-hwclock/template
@@ -2,7 +2,6 @@
 pkgname=fake-hwclock
 version=0.11
 revision=1
-archs=noarch
 wrksrc=git
 short_desc="Save/restore system clock on machines without working RTC hardware"
 maintainer="Ivan Gonzalez Polanco <ivan14polanco@gmail.com>"
diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 44628c261d2..80685a4e52a 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -2,7 +2,6 @@
 pkgname=fava
 version=1.15
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-Babel python3-Cheroot python3-Flask-Babel python3-Flask
diff --git a/srcpkgs/fbmenugen/template b/srcpkgs/fbmenugen/template
index 7b7659eb98d..ad03431b85f 100644
--- a/srcpkgs/fbmenugen/template
+++ b/srcpkgs/fbmenugen/template
@@ -2,7 +2,6 @@
 pkgname=fbmenugen
 version=0.84
 revision=1
-archs=noarch
 depends="fluxbox perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Fluxbox menu generator (with support for icons)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ferm/template b/srcpkgs/ferm/template
index 42241669552..1b0c4538c56 100644
--- a/srcpkgs/ferm/template
+++ b/srcpkgs/ferm/template
@@ -2,7 +2,6 @@
 pkgname=ferm
 version=2.5.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl iptables"
 short_desc="Frontend for iptables"
diff --git a/srcpkgs/fff/template b/srcpkgs/fff/template
index 310793c894f..dfe012ccbd1 100644
--- a/srcpkgs/fff/template
+++ b/srcpkgs/fff/template
@@ -2,7 +2,6 @@
 pkgname=fff
 version=2.1
 revision=1
-archs=noarch
 depends="bash coreutils xdg-utils"
 short_desc="Simple file manager written in bash"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/ffscreencast/template b/srcpkgs/ffscreencast/template
index 10653116d67..76bc9df0078 100644
--- a/srcpkgs/ffscreencast/template
+++ b/srcpkgs/ffscreencast/template
@@ -2,7 +2,6 @@
 pkgname=ffscreencast
 version=0.6.4
 revision=1
-archs=noarch
 depends="alsa-utils bash ffmpeg v4l-utils xdpyinfo"
 maintainer="Orphaned <orphan@voidlinux.org>"
 short_desc="Desktop-recording with video overlay and multi monitor support"
diff --git a/srcpkgs/fgit/template b/srcpkgs/fgit/template
index e298b9f4a71..1b031ec91c3 100644
--- a/srcpkgs/fgit/template
+++ b/srcpkgs/fgit/template
@@ -2,7 +2,6 @@
 pkgname=fgit
 version=1.0.2
 revision=1
-archs=noarch
 checkdepends="git"
 depends="bash git ncurses"
 short_desc="Run a Git command in several repositories"
diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 1d395274898..09062d70808 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -2,7 +2,6 @@
 pkgname=fierce
 version=1.4.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="fierce"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/figlet-fonts/template b/srcpkgs/figlet-fonts/template
index 36746d35612..be340f68c7a 100644
--- a/srcpkgs/figlet-fonts/template
+++ b/srcpkgs/figlet-fonts/template
@@ -2,7 +2,6 @@
 pkgname=figlet-fonts
 version=20150508
 revision=3
-archs=noarch
 create_wrksrc=yes
 depends="figlet perl"
 short_desc="Additional fonts for figlet"
diff --git a/srcpkgs/fillets-ng/template b/srcpkgs/fillets-ng/template
index 65f3ac43898..6b4be8c84e4 100644
--- a/srcpkgs/fillets-ng/template
+++ b/srcpkgs/fillets-ng/template
@@ -19,7 +19,6 @@ build_wrksrc="fillets-ng-${version}"
 
 fillets-ng-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/games
 		mv ${wrksrc}/fillets-ng-data-${version} ${PKGDESTDIR}/usr/share/games/fillets-ng
diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index 3601b101b66..b0002c69c81 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -2,7 +2,6 @@
 pkgname=flake8
 version=3.8.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycodestyle>=2.6.0<2.7.0
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-flake8_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="flake8>=${version}_${revision}"
diff --git a/srcpkgs/flare-engine/template b/srcpkgs/flare-engine/template
index 707157f38d9..59244d516f3 100644
--- a/srcpkgs/flare-engine/template
+++ b/srcpkgs/flare-engine/template
@@ -16,7 +16,6 @@ checksum=035ffd936d9e120dc2eb792779a0b7ff64574d4a29a1124946deaf7946d1059d
 
 flare-engine-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/flare
 	}
diff --git a/srcpkgs/flare-game/template b/srcpkgs/flare-game/template
index 9da28107b18..b769140e001 100644
--- a/srcpkgs/flare-game/template
+++ b/srcpkgs/flare-game/template
@@ -2,7 +2,6 @@
 pkgname=flare-game
 version=1.11
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DDATADIR=share/flare"
 depends="flare-engine>=${version}"
diff --git a/srcpkgs/flickcurl/template b/srcpkgs/flickcurl/template
index e1e33187b4c..c0800a39453 100644
--- a/srcpkgs/flickcurl/template
+++ b/srcpkgs/flickcurl/template
@@ -12,7 +12,6 @@ distfiles="http://download.dajobe.org/flickcurl/flickcurl-${version}.tar.gz"
 checksum=ff42a36c7c1c7d368246f6bc9b7d792ed298348e5f0f5d432e49f6803562f5a3
 
 flickcurl-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation (HTML Version)"
 	pkg_install() {
diff --git a/srcpkgs/flightgear/template b/srcpkgs/flightgear/template
index 324a4e3d156..8e4aa89eb5e 100644
--- a/srcpkgs/flightgear/template
+++ b/srcpkgs/flightgear/template
@@ -54,7 +54,6 @@ post_install() {
 
 flightgear-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/flightgear
 		mv ${wrksrc}/fgdata ${PKGDESTDIR}/usr/share/flightgear
diff --git a/srcpkgs/flinks/template b/srcpkgs/flinks/template
index 780aead102c..4fbd59497a1 100644
--- a/srcpkgs/flinks/template
+++ b/srcpkgs/flinks/template
@@ -2,7 +2,6 @@
 pkgname=flinks
 version=0.4.3
 revision=5
-archs=noarch
 build_style=python3-module
 pycompile_module="flinkspkg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/flowblade/template b/srcpkgs/flowblade/template
index c011d7dc115..b22f56309ba 100644
--- a/srcpkgs/flowblade/template
+++ b/srcpkgs/flowblade/template
@@ -2,7 +2,6 @@
 pkgname=flowblade
 version=2.4
 revision=2
-archs=noarch
 build_wrksrc=flowblade-trunk
 build_style=python3-module
 make_install_args="--install-lib=${DESTDIR}/usr/share/pyshared"
diff --git a/srcpkgs/foliate/template b/srcpkgs/foliate/template
index a3fc5ed2fe2..498172d4904 100644
--- a/srcpkgs/foliate/template
+++ b/srcpkgs/foliate/template
@@ -2,7 +2,6 @@
 pkgname=foliate
 version=2.4.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config gettext gjs glib-devel"
 depends="webkit2gtk gjs"
diff --git a/srcpkgs/font-3270/template b/srcpkgs/font-3270/template
index efeaa5497ea..7715170e61c 100644
--- a/srcpkgs/font-3270/template
+++ b/srcpkgs/font-3270/template
@@ -2,7 +2,6 @@
 pkgname=font-3270
 version=2.0.4
 revision=1
-archs=noarch
 wrksrc="3270font-${version}"
 build_style=gnu-makefile
 make_build_target="font"
diff --git a/srcpkgs/font-FixedMisc/template b/srcpkgs/font-FixedMisc/template
index 7f937497043..e4605c4079a 100644
--- a/srcpkgs/font-FixedMisc/template
+++ b/srcpkgs/font-FixedMisc/template
@@ -2,7 +2,6 @@
 pkgname=font-FixedMisc
 version=20200214
 revision=1
-archs=noarch
 wrksrc=FixedMisc
 hostmakedepends="bdftopcf"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Hasklig/template b/srcpkgs/font-Hasklig/template
index 656492ec093..bdd229dc9ec 100644
--- a/srcpkgs/font-Hasklig/template
+++ b/srcpkgs/font-Hasklig/template
@@ -2,7 +2,6 @@
 pkgname=font-Hasklig
 version=1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Siji/template b/srcpkgs/font-Siji/template
index cfd7e82ad6e..2dd7a1d88de 100644
--- a/srcpkgs/font-Siji/template
+++ b/srcpkgs/font-Siji/template
@@ -2,7 +2,6 @@
 pkgname=font-Siji
 version=0.0.0.20171022
 revision=1
-archs=noarch
 _githash=9d88311bb127b21672b2d4b43eed1ab0e494f143
 wrksrc="siji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/font-adobe-100dpi/template b/srcpkgs/font-adobe-100dpi/template
index 43c280a256a..da546a985b2 100644
--- a/srcpkgs/font-adobe-100dpi/template
+++ b/srcpkgs/font-adobe-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-75dpi/template b/srcpkgs/font-adobe-75dpi/template
index deb1d71ba1d..38965635fea 100644
--- a/srcpkgs/font-adobe-75dpi/template
+++ b/srcpkgs/font-adobe-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-source-code-pro/template b/srcpkgs/font-adobe-source-code-pro/template
index 093d75e286a..527d1f93c7d 100644
--- a/srcpkgs/font-adobe-source-code-pro/template
+++ b/srcpkgs/font-adobe-source-code-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-source-code-pro
 version=2.030R
 revision=2
-archs=noarch
 wrksrc="source-code-pro-${version}-ro-1.050R-it"
 depends="font-util"
 short_desc="Monospaced font family for user interface and coding environments"
@@ -20,7 +19,6 @@ do_install() {
 }
 
 font-sourcecodepro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/font-adobe-utopia-100dpi/template b/srcpkgs/font-adobe-utopia-100dpi/template
index 058691db022..182bd2973fa 100644
--- a/srcpkgs/font-adobe-utopia-100dpi/template
+++ b/srcpkgs/font-adobe-utopia-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-100dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-75dpi/template b/srcpkgs/font-adobe-utopia-75dpi/template
index bce9f9887f6..e5b0fc347e9 100644
--- a/srcpkgs/font-adobe-utopia-75dpi/template
+++ b/srcpkgs/font-adobe-utopia-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-75dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-type1/template b/srcpkgs/font-adobe-utopia-type1/template
index 0e7d539142e..5a3b04053e0 100644
--- a/srcpkgs/font-adobe-utopia-type1/template
+++ b/srcpkgs/font-adobe-utopia-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-type1
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-alias/template b/srcpkgs/font-alias/template
index 00b414cd72a..6efbc9d553d 100644
--- a/srcpkgs/font-alias/template
+++ b/srcpkgs/font-alias/template
@@ -2,7 +2,6 @@
 pkgname=font-alias
 version=1.0.4
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard aliases for X11 PCF fonts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/font-awesome/template b/srcpkgs/font-awesome/template
index a675bd4ad11..aacc7a44ad3 100644
--- a/srcpkgs/font-awesome/template
+++ b/srcpkgs/font-awesome/template
@@ -3,7 +3,6 @@ pkgname=font-awesome
 reverts="5.0.8_1 5.0.9_1 5.0.10_1"
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc=Font-Awesome-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-awesome5/template b/srcpkgs/font-awesome5/template
index 78cfb9f1146..0fc0a94f97d 100644
--- a/srcpkgs/font-awesome5/template
+++ b/srcpkgs/font-awesome5/template
@@ -2,7 +2,6 @@
 pkgname=font-awesome5
 version=5.14.0
 revision=1
-archs=noarch
 wrksrc="Font-Awesome-${version}"
 depends="font-util"
 short_desc="Iconic font (version 5)"
diff --git a/srcpkgs/font-b612/template b/srcpkgs/font-b612/template
index 0d6d974aa0a..45e731de6a5 100644
--- a/srcpkgs/font-b612/template
+++ b/srcpkgs/font-b612/template
@@ -2,7 +2,6 @@
 pkgname=font-b612
 version=1.008
 revision=1
-archs=noarch
 wrksrc="b612-${version}"
 depends="font-util xbps-triggers"
 short_desc="Highly legible font family designed for aircraft cockpit screens"
diff --git a/srcpkgs/font-bh-100dpi/template b/srcpkgs/font-bh-100dpi/template
index 0eee5166e2f..aa70e1e4597 100644
--- a/srcpkgs/font-bh-100dpi/template
+++ b/srcpkgs/font-bh-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-75dpi/template b/srcpkgs/font-bh-75dpi/template
index 99b51be90b5..291b0eca237 100644
--- a/srcpkgs/font-bh-75dpi/template
+++ b/srcpkgs/font-bh-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-100dpi/template b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
index 3840bad1134..c513a84160d 100644
--- a/srcpkgs/font-bh-lucidatypewriter-100dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-75dpi/template b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
index 6110fa4f547..2bc610d24c0 100644
--- a/srcpkgs/font-bh-lucidatypewriter-75dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-ttf/template b/srcpkgs/font-bh-ttf/template
index 955b9e6f14d..26acfa6544d 100644
--- a/srcpkgs/font-bh-ttf/template
+++ b/srcpkgs/font-bh-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-ttf
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-type1/template b/srcpkgs/font-bh-type1/template
index f7135cd6d50..ddd695e5312 100644
--- a/srcpkgs/font-bh-type1/template
+++ b/srcpkgs/font-bh-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-100dpi/template b/srcpkgs/font-bitstream-100dpi/template
index 08dbeee24a0..a7b0b8dde8f 100644
--- a/srcpkgs/font-bitstream-100dpi/template
+++ b/srcpkgs/font-bitstream-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-75dpi/template b/srcpkgs/font-bitstream-75dpi/template
index c6853fa8cd8..c1f60fb03da 100644
--- a/srcpkgs/font-bitstream-75dpi/template
+++ b/srcpkgs/font-bitstream-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-speedo/template b/srcpkgs/font-bitstream-speedo/template
index 96bdb122283..0e0f4880d57 100644
--- a/srcpkgs/font-bitstream-speedo/template
+++ b/srcpkgs/font-bitstream-speedo/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-speedo
 version=1.0.2
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf mkfontscale"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-bitstream-type1/template b/srcpkgs/font-bitstream-type1/template
index d6e4e2f8700..f8ed3355afe 100644
--- a/srcpkgs/font-bitstream-type1/template
+++ b/srcpkgs/font-bitstream-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-cozette/template b/srcpkgs/font-cozette/template
index fc1118ac3a4..4e3f8553fa0 100644
--- a/srcpkgs/font-cozette/template
+++ b/srcpkgs/font-cozette/template
@@ -2,7 +2,6 @@
 pkgname=font-cozette
 version=1.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="font-util"
 depends="font-util"
diff --git a/srcpkgs/font-cursor-misc/template b/srcpkgs/font-cursor-misc/template
index e01946f7dde..0d2d54e4a8e 100644
--- a/srcpkgs/font-cursor-misc/template
+++ b/srcpkgs/font-cursor-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-cursor-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-daewoo-misc/template b/srcpkgs/font-daewoo-misc/template
index da7e8c4ba1e..8dbd3cf7268 100644
--- a/srcpkgs/font-daewoo-misc/template
+++ b/srcpkgs/font-daewoo-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-daewoo-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-dec-misc/template b/srcpkgs/font-dec-misc/template
index a4bfec05b01..afa30bf8715 100644
--- a/srcpkgs/font-dec-misc/template
+++ b/srcpkgs/font-dec-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-dec-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-fantasque-sans-ttf/template b/srcpkgs/font-fantasque-sans-ttf/template
index 3f28af2faa8..3b79bdff398 100644
--- a/srcpkgs/font-fantasque-sans-ttf/template
+++ b/srcpkgs/font-fantasque-sans-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-fantasque-sans-ttf
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Handwriting-like programming typeface"
diff --git a/srcpkgs/font-fira-otf/template b/srcpkgs/font-fira-otf/template
index 921fcb8d30d..afaf098e6b7 100644
--- a/srcpkgs/font-fira-otf/template
+++ b/srcpkgs/font-fira-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-fira-otf
 version=4.202
 revision=3
-archs=noarch
 wrksrc="Fira-${version}"
 depends="font-util xbps-triggers"
 short_desc="Mozilla's new typeface OTF, used in Firefox OS"
@@ -23,7 +22,6 @@ do_install() {
 }
 
 font-fira-ttf_package() {
-	archs=noarch
 	font_dirs="/usr/share/fonts/TTF"
 	depends="font-util xbps-triggers"
 	pkg_install() {
diff --git a/srcpkgs/font-firacode/template b/srcpkgs/font-firacode/template
index 36df04b7ab1..1699c5211ad 100644
--- a/srcpkgs/font-firacode/template
+++ b/srcpkgs/font-firacode/template
@@ -2,7 +2,6 @@
 pkgname=font-firacode
 version=5.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="FiraCode: monospaced font with programming ligatures"
diff --git a/srcpkgs/font-fontin/template b/srcpkgs/font-fontin/template
index e91405490f5..c0ab17f0e66 100644
--- a/srcpkgs/font-fontin/template
+++ b/srcpkgs/font-fontin/template
@@ -2,7 +2,6 @@
 pkgname=font-fontin
 version=0.0.20151027
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hack-ttf/template b/srcpkgs/font-hack-ttf/template
index 2cec70ff0f0..5929977d6e3 100644
--- a/srcpkgs/font-hack-ttf/template
+++ b/srcpkgs/font-hack-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-hack-ttf
 version=3.003
 revision=1
 wrksrc="Hack-${version}"
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="A typeface designed for source code"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/font-hanazono/template b/srcpkgs/font-hanazono/template
index 0a529e23b0a..cbec1c249ac 100644
--- a/srcpkgs/font-hanazono/template
+++ b/srcpkgs/font-hanazono/template
@@ -3,7 +3,6 @@ pkgname=font-hanazono
 version=20170904
 _revision=68253
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hermit-otf/template b/srcpkgs/font-hermit-otf/template
index 20b784a8149..f20f2fd0e07 100644
--- a/srcpkgs/font-hermit-otf/template
+++ b/srcpkgs/font-hermit-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-hermit-otf
 version=2.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-ibm-plex-ttf/template b/srcpkgs/font-ibm-plex-ttf/template
index 98c9e838f9f..5cdd47ebd0a 100644
--- a/srcpkgs/font-ibm-plex-ttf/template
+++ b/srcpkgs/font-ibm-plex-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-plex-ttf
 version=5.1.0
 revision=1
-archs=noarch
 wrksrc="plex-${version}"
 depends="font-util"
 short_desc="IBM’s typeface, IBM Plex (TTF variant)"
diff --git a/srcpkgs/font-ibm-type1/template b/srcpkgs/font-ibm-type1/template
index aaa4caaab00..549768b91c5 100644
--- a/srcpkgs/font-ibm-type1/template
+++ b/srcpkgs/font-ibm-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-inconsolata-otf/template b/srcpkgs/font-inconsolata-otf/template
index 566e9b29479..65eff0728b6 100644
--- a/srcpkgs/font-inconsolata-otf/template
+++ b/srcpkgs/font-inconsolata-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-inconsolata-otf
 version=001.010
 revision=3
-archs=noarch
 build_style=fetch
 depends="font-util xbps-triggers"
 short_desc="Sans-serif monotype font designed for code listings"
diff --git a/srcpkgs/font-ionicons-ttf/template b/srcpkgs/font-ionicons-ttf/template
index b4fa51931b7..6ac73c9ebc4 100644
--- a/srcpkgs/font-ionicons-ttf/template
+++ b/srcpkgs/font-ionicons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ionicons-ttf
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="ionicons-$version"
 depends="font-util"
 short_desc="Icon font from the Ionic Framework"
diff --git a/srcpkgs/font-iosevka/template b/srcpkgs/font-iosevka/template
index 9657e2f30a9..6ae05ed2b45 100644
--- a/srcpkgs/font-iosevka/template
+++ b/srcpkgs/font-iosevka/template
@@ -2,7 +2,6 @@
 pkgname=font-iosevka
 version=3.4.4
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Slender monospace sans-serif and slab-serif typeface"
diff --git a/srcpkgs/font-isas-misc/template b/srcpkgs/font-isas-misc/template
index 033459448c4..81f16f13ba2 100644
--- a/srcpkgs/font-isas-misc/template
+++ b/srcpkgs/font-isas-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-isas-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-jis-misc/template b/srcpkgs/font-jis-misc/template
index 45638227181..ff60c4b7f17 100644
--- a/srcpkgs/font-jis-misc/template
+++ b/srcpkgs/font-jis-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-jis-misc
 version=1.0.3
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-kakwafont/template b/srcpkgs/font-kakwafont/template
index 89859db95b3..525f489efeb 100644
--- a/srcpkgs/font-kakwafont/template
+++ b/srcpkgs/font-kakwafont/template
@@ -2,7 +2,6 @@
 pkgname=font-kakwafont
 version=0.1.1
 revision=3
-archs=noarch
 wrksrc="kakwafont-${version}"
 build_style=gnu-makefile
 make_install_args="INDEX=false"
diff --git a/srcpkgs/font-libertine-ttf/template b/srcpkgs/font-libertine-ttf/template
index b0521e80e57..7197d3e7c9c 100644
--- a/srcpkgs/font-libertine-ttf/template
+++ b/srcpkgs/font-libertine-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-libertine-ttf
 version=5.3.0
 revision=1
 _date=2012_07_02
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Libertine TTF Fonts - Libre multilingual font family"
@@ -26,7 +25,6 @@ do_install() {
 }
 
 font-libertine-otf_package() {
-	archs=noarch
 	depends="font-util xbps-triggers"
 	short_desc="Libertine OTF Fonts - Libre multilingual font family"
 	font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-manjari/template b/srcpkgs/font-manjari/template
index 459d5de5210..87745816524 100644
--- a/srcpkgs/font-manjari/template
+++ b/srcpkgs/font-manjari/template
@@ -2,7 +2,6 @@
 pkgname=font-manjari
 version=1.810
 revision=3
-archs="noarch"
 create_wrksrc=yes
 depends="font-util"
 short_desc="Malayalam font with smooth curves"
diff --git a/srcpkgs/font-material-design-icons-ttf/template b/srcpkgs/font-material-design-icons-ttf/template
index 70565c4255b..9e9fb6c2991 100644
--- a/srcpkgs/font-material-design-icons-ttf/template
+++ b/srcpkgs/font-material-design-icons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-material-design-icons-ttf
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="material-design-icons-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-micro-misc/template b/srcpkgs/font-micro-misc/template
index 9d07f30c819..6c91e2f0558 100644
--- a/srcpkgs/font-micro-misc/template
+++ b/srcpkgs/font-micro-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-micro-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-misc-misc/template b/srcpkgs/font-misc-misc/template
index bb14ad13e66..454fbcb197f 100644
--- a/srcpkgs/font-misc-misc/template
+++ b/srcpkgs/font-misc-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-misc-misc
 version=1.1.2
 revision=6
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-mplus-ttf/template b/srcpkgs/font-mplus-ttf/template
index 102d839baac..880a2a7d01b 100644
--- a/srcpkgs/font-mplus-ttf/template
+++ b/srcpkgs/font-mplus-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-mplus-ttf
 version=063a
 revision=1
-archs=noarch
 wrksrc="mplus-TESTFLIGHT-${version}"
 depends="fontconfig font-util"
 short_desc="M+ Japanese outline fonts"
diff --git a/srcpkgs/font-mutt-misc/template b/srcpkgs/font-mutt-misc/template
index ec6d140c270..abb8702ad6b 100644
--- a/srcpkgs/font-mutt-misc/template
+++ b/srcpkgs/font-mutt-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-mutt-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-open-dyslexic-ttf/template b/srcpkgs/font-open-dyslexic-ttf/template
index 4b2d57d022a..ae5c3307e9c 100644
--- a/srcpkgs/font-open-dyslexic-ttf/template
+++ b/srcpkgs/font-open-dyslexic-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-open-dyslexic-ttf
 version=20160623
 revision=2
-archs=noarch
 wrksrc="open-dyslexic-${version}-Stable"
 depends="font-util xbps-triggers"
 short_desc="Font created to increase readability for readers with dyslexia"
diff --git a/srcpkgs/font-sarasa-gothic/template b/srcpkgs/font-sarasa-gothic/template
index f2571a381b0..2ea3f935bf6 100644
--- a/srcpkgs/font-sarasa-gothic/template
+++ b/srcpkgs/font-sarasa-gothic/template
@@ -2,7 +2,6 @@
 pkgname=font-sarasa-gothic
 version=0.13.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="CJK programming font based on Iosevka and Source Han Sans"
diff --git a/srcpkgs/font-schumacher-misc/template b/srcpkgs/font-schumacher-misc/template
index e4515207d37..20b0dd7f7dc 100644
--- a/srcpkgs/font-schumacher-misc/template
+++ b/srcpkgs/font-schumacher-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-schumacher-misc
 version=1.1.2
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-sil-abyssinica/template b/srcpkgs/font-sil-abyssinica/template
index 1c48dbfedd6..87bca44c4e4 100644
--- a/srcpkgs/font-sil-abyssinica/template
+++ b/srcpkgs/font-sil-abyssinica/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-abyssinica
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AbyssinicaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-alkalami/template b/srcpkgs/font-sil-alkalami/template
index 684c7b7d0d3..b6638f07c83 100644
--- a/srcpkgs/font-sil-alkalami/template
+++ b/srcpkgs/font-sil-alkalami/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-alkalami
 version=1.100
 revision=1
-archs=noarch
 wrksrc="Alkalami-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-andika/template b/srcpkgs/font-sil-andika/template
index 4b869085776..9cd574eac8e 100644
--- a/srcpkgs/font-sil-andika/template
+++ b/srcpkgs/font-sil-andika/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-andika
 version=5.000
 revision=1
-archs=noarch
 wrksrc="Andika-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-annapurna/template b/srcpkgs/font-sil-annapurna/template
index 388779d980f..0dd4a688a54 100644
--- a/srcpkgs/font-sil-annapurna/template
+++ b/srcpkgs/font-sil-annapurna/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-annapurna
 version=1.204
 revision=1
-archs=noarch
 wrksrc="AnnapurnaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-awami-nastaliq/template b/srcpkgs/font-sil-awami-nastaliq/template
index f09cd252e08..436b8c16390 100644
--- a/srcpkgs/font-sil-awami-nastaliq/template
+++ b/srcpkgs/font-sil-awami-nastaliq/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-awami-nastaliq
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AwamiNastaliq-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-charis/template b/srcpkgs/font-sil-charis/template
index cdff5cb6265..dc864c2e18b 100644
--- a/srcpkgs/font-sil-charis/template
+++ b/srcpkgs/font-sil-charis/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-charis
 version=5.000
 revision=1
-archs=noarch
 wrksrc="CharisSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-doulos/template b/srcpkgs/font-sil-doulos/template
index 67fd84dd976..557fa77a560 100644
--- a/srcpkgs/font-sil-doulos/template
+++ b/srcpkgs/font-sil-doulos/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-doulos
 version=5.000
 revision=1
-archs=noarch
 wrksrc="DoulosSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-ezra/template b/srcpkgs/font-sil-ezra/template
index 1573ff7d06e..b0879ce22b6 100644
--- a/srcpkgs/font-sil-ezra/template
+++ b/srcpkgs/font-sil-ezra/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-ezra
 version=2.51
 revision=1
-archs=noarch
 wrksrc="EzraSIL${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-galatia/template b/srcpkgs/font-sil-galatia/template
index 06742db160b..217d92847c6 100644
--- a/srcpkgs/font-sil-galatia/template
+++ b/srcpkgs/font-sil-galatia/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-galatia
 version=2.1
 revision=1
-archs=noarch
 wrksrc="GalSIL${version/./}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-gentium/template b/srcpkgs/font-sil-gentium/template
index a06cf2d5a9c..9926b9fd944 100644
--- a/srcpkgs/font-sil-gentium/template
+++ b/srcpkgs/font-sil-gentium/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-gentium
 version=5.000
 revision=1
-archs=noarch
 wrksrc="GentiumPlus-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-harmattan/template b/srcpkgs/font-sil-harmattan/template
index 465b63a7244..fbcc81cadd3 100644
--- a/srcpkgs/font-sil-harmattan/template
+++ b/srcpkgs/font-sil-harmattan/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-harmattan
 version=1.001
 revision=1
-archs=noarch
 wrksrc="Harmattan-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-lateef/template b/srcpkgs/font-sil-lateef/template
index d8ab4d2a7b2..8a91a92737a 100644
--- a/srcpkgs/font-sil-lateef/template
+++ b/srcpkgs/font-sil-lateef/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-lateef
 version=1.200
 revision=1
-archs=noarch
 wrksrc="LateefGR-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mingzat/template b/srcpkgs/font-sil-mingzat/template
index 1e227ee5603..079ca445bec 100644
--- a/srcpkgs/font-sil-mingzat/template
+++ b/srcpkgs/font-sil-mingzat/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mingzat
 version=1.000
 revision=1
-archs=noarch
 wrksrc="Mingzat-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mondulkiri/template b/srcpkgs/font-sil-mondulkiri/template
index 483056df803..3b8b09c0548 100644
--- a/srcpkgs/font-sil-mondulkiri/template
+++ b/srcpkgs/font-sil-mondulkiri/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mondulkiri
 version=7.100
 revision=1
-archs=noarch
 wrksrc="Mondulkiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-namdhinggo/template b/srcpkgs/font-sil-namdhinggo/template
index 9de1acbc5a7..d353210bf1e 100644
--- a/srcpkgs/font-sil-namdhinggo/template
+++ b/srcpkgs/font-sil-namdhinggo/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-namdhinggo
 version=1.004
 revision=1
-archs=noarch
 wrksrc="NamdhinggoSIL"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-nuosu/template b/srcpkgs/font-sil-nuosu/template
index 0ae86abefaa..1286c1acb86 100644
--- a/srcpkgs/font-sil-nuosu/template
+++ b/srcpkgs/font-sil-nuosu/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-nuosu
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=NuosuSIL
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-padauk/template b/srcpkgs/font-sil-padauk/template
index 8bbb222dff3..21b37341367 100644
--- a/srcpkgs/font-sil-padauk/template
+++ b/srcpkgs/font-sil-padauk/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-padauk
 version=4.000
 revision=1
-archs=noarch
 wrksrc="Padauk-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-scheherazade/template b/srcpkgs/font-sil-scheherazade/template
index 78a2ce6ee96..77e7c97c8da 100644
--- a/srcpkgs/font-sil-scheherazade/template
+++ b/srcpkgs/font-sil-scheherazade/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-scheherazade
 version=2.100
 revision=1
-archs=noarch
 wrksrc="Scheherazade-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-sophia-nubian/template b/srcpkgs/font-sil-sophia-nubian/template
index 2a97740dff3..597002945d8 100644
--- a/srcpkgs/font-sil-sophia-nubian/template
+++ b/srcpkgs/font-sil-sophia-nubian/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-sophia-nubian
 version=1.0
 revision=1
-archs=noarch
 wrksrc="SophiaNubian"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-tai-heritage-pro/template b/srcpkgs/font-sil-tai-heritage-pro/template
index 0d7283cd4ea..b94f9fc966a 100644
--- a/srcpkgs/font-sil-tai-heritage-pro/template
+++ b/srcpkgs/font-sil-tai-heritage-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-tai-heritage-pro
 version=2.600
 revision=1
-archs=noarch
 wrksrc="TaiHeritagePro-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sony-misc/template b/srcpkgs/font-sony-misc/template
index d7ffef11ed0..765bf6e3555 100644
--- a/srcpkgs/font-sony-misc/template
+++ b/srcpkgs/font-sony-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sony-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-spleen/template b/srcpkgs/font-spleen/template
index 8bf3f35a84d..10cd5f4dfd3 100644
--- a/srcpkgs/font-spleen/template
+++ b/srcpkgs/font-spleen/template
@@ -2,7 +2,6 @@
 pkgname=font-spleen
 version=1.8.2
 revision=1
-archs=noarch
 wrksrc="spleen-${version}"
 build_style=gnu-makefile
 make_cmd=bmake
diff --git a/srcpkgs/font-sun-misc/template b/srcpkgs/font-sun-misc/template
index d556d006daa..423c85625a7 100644
--- a/srcpkgs/font-sun-misc/template
+++ b/srcpkgs/font-sun-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sun-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-symbola/template b/srcpkgs/font-symbola/template
index 23fa865c2ee..d14241ab6ba 100644
--- a/srcpkgs/font-symbola/template
+++ b/srcpkgs/font-symbola/template
@@ -2,7 +2,6 @@
 pkgname=font-symbola
 version=13.00
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-tamsyn/template b/srcpkgs/font-tamsyn/template
index b76186c2128..3c532eba7bb 100644
--- a/srcpkgs/font-tamsyn/template
+++ b/srcpkgs/font-tamsyn/template
@@ -2,7 +2,6 @@
 pkgname=font-tamsyn
 version=1.11
 revision=1
-archs=noarch
 wrksrc=tamsyn-font-${version}
 depends="font-util xbps-triggers"
 short_desc="A monospaced programming font for the console and X11"
diff --git a/srcpkgs/font-tamzen/template b/srcpkgs/font-tamzen/template
index a5621ff3a29..b20f7c77964 100644
--- a/srcpkgs/font-tamzen/template
+++ b/srcpkgs/font-tamzen/template
@@ -2,7 +2,6 @@
 pkgname=font-tamzen
 version=1.11.4
 revision=1
-archs=noarch
 wrksrc="tamzen-font-Tamzen-${version}"
 makedepends="font-util"
 depends="$makedepends"
diff --git a/srcpkgs/font-unifont-bdf/template b/srcpkgs/font-unifont-bdf/template
index 10e92362460..5d2ab7be0d0 100644
--- a/srcpkgs/font-unifont-bdf/template
+++ b/srcpkgs/font-unifont-bdf/template
@@ -2,7 +2,6 @@
 pkgname=font-unifont-bdf
 version=13.0.03
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="GNU Unifont Glyphs"
diff --git a/srcpkgs/font-vazir/template b/srcpkgs/font-vazir/template
index 2c1eb8a10c8..d83ca102c7f 100755
--- a/srcpkgs/font-vazir/template
+++ b/srcpkgs/font-vazir/template
@@ -2,7 +2,6 @@
 pkgname=font-vazir
 version=26.0.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Persian (Farsi) Font - قلم (فونت) فارسی وزیر"
diff --git a/srcpkgs/font-vollkorn-ttf/template b/srcpkgs/font-vollkorn-ttf/template
index 43889413a0e..37291fafcd1 100644
--- a/srcpkgs/font-vollkorn-ttf/template
+++ b/srcpkgs/font-vollkorn-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-vollkorn-ttf
 version=4.105
 revision=1
 create_wrksrc=yes
-archs=noarch
 font_dirs="/usr/share/fonts/TTF"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-weather-icons/template b/srcpkgs/font-weather-icons/template
index 02b461ad41d..56f10f6b81d 100644
--- a/srcpkgs/font-weather-icons/template
+++ b/srcpkgs/font-weather-icons/template
@@ -2,7 +2,6 @@
 pkgname=font-weather-icons
 version=2.0.10
 revision=1
-archs=noarch
 wrksrc="weather-icons-${version}"
 depends="font-util"
 short_desc="215 Weather Themed Icons"
diff --git a/srcpkgs/fontconfig/template b/srcpkgs/fontconfig/template
index 18504e4503f..a2afdf88d0e 100644
--- a/srcpkgs/fontconfig/template
+++ b/srcpkgs/fontconfig/template
@@ -42,7 +42,6 @@ fontconfig-devel_package() {
 
 fontconfig-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fonts-croscore-ttf/template b/srcpkgs/fonts-croscore-ttf/template
index 2014d2fda6e..0f1bd7ef6ab 100644
--- a/srcpkgs/fonts-croscore-ttf/template
+++ b/srcpkgs/fonts-croscore-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-croscore-ttf
 version=1.31.0
 revision=2
-archs=noarch
 wrksrc="croscorefonts-${version}"
 depends="font-util xbps-triggers"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonts-droid-ttf/template b/srcpkgs/fonts-droid-ttf/template
index cae1c2979c2..90808815e94 100644
--- a/srcpkgs/fonts-droid-ttf/template
+++ b/srcpkgs/fonts-droid-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-droid-ttf
 version=20150613
 revision=1
-archs=noarch
 _githash=f5de525ee3547b8a69a21aec1e1a3175bc06f442
 create_wrksrc=yes
 depends="font-util"
diff --git a/srcpkgs/fonts-nanum-ttf/template b/srcpkgs/fonts-nanum-ttf/template
index 6a2e826673d..0c96fb5aa2b 100644
--- a/srcpkgs/fonts-nanum-ttf/template
+++ b/srcpkgs/fonts-nanum-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-nanum-ttf
 version=20180306
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 depends="font-util"
 short_desc="Nanum Korean fonts"
diff --git a/srcpkgs/fonts-roboto-ttf/template b/srcpkgs/fonts-roboto-ttf/template
index 2a268ab3c74..839ca2eabf7 100644
--- a/srcpkgs/fonts-roboto-ttf/template
+++ b/srcpkgs/fonts-roboto-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-roboto-ttf
 version=2.138
 revision=1
-archs=noarch
 wrksrc=roboto-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonttools/template b/srcpkgs/fonttools/template
index f94f794b2a2..fc25b5b0476 100644
--- a/srcpkgs/fonttools/template
+++ b/srcpkgs/fonttools/template
@@ -2,7 +2,6 @@
 pkgname=fonttools
 version=4.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/foomatic-db-nonfree/template b/srcpkgs/foomatic-db-nonfree/template
index bfdbd503f51..d909dcfdb41 100644
--- a/srcpkgs/foomatic-db-nonfree/template
+++ b/srcpkgs/foomatic-db-nonfree/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db-nonfree
 version=20200527
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=gnu-configure
 hostmakedepends="tar"
diff --git a/srcpkgs/foomatic-db/template b/srcpkgs/foomatic-db/template
index 07b9adddb78..7035fcc7b0a 100644
--- a/srcpkgs/foomatic-db/template
+++ b/srcpkgs/foomatic-db/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db
 version=20180118
 revision=1
-archs=noarch
 build_style=gnu-configure
 ceeate_wrksrc=yes
 hostmakedepends="tar"
diff --git a/srcpkgs/foot/template b/srcpkgs/foot/template
index 50991a6d351..f27b2bfaff0 100644
--- a/srcpkgs/foot/template
+++ b/srcpkgs/foot/template
@@ -21,7 +21,6 @@ post_install() {
 
 foot-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/fortune-mod-anarchism/template b/srcpkgs/fortune-mod-anarchism/template
index 6c27b0e9dcb..dba867fd63a 100644
--- a/srcpkgs/fortune-mod-anarchism/template
+++ b/srcpkgs/fortune-mod-anarchism/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-anarchism
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=blag-fortune
 build_style=gnu-makefile
 hostmakedepends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-de/template b/srcpkgs/fortune-mod-de/template
index 5f3d1dec7c7..84ff7076b3b 100644
--- a/srcpkgs/fortune-mod-de/template
+++ b/srcpkgs/fortune-mod-de/template
@@ -3,7 +3,6 @@ pkgname=fortune-mod-de
 reverts="1.0_2"
 version=0.34
 revision=1
-archs=noarch
 wrksrc="fortunes-de-upstream-${version}"
 hostmakedepends="fortune-mod"
 depends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-void/template b/srcpkgs/fortune-mod-void/template
index 55b5faab036..508db37b084 100644
--- a/srcpkgs/fortune-mod-void/template
+++ b/srcpkgs/fortune-mod-void/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-void
 version=20200307
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="fortune-mod"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/freedroidRPG/template b/srcpkgs/freedroidRPG/template
index b1cb939802a..a1ecfc60bc3 100644
--- a/srcpkgs/freedroidRPG/template
+++ b/srcpkgs/freedroidRPG/template
@@ -42,7 +42,6 @@ post_install() {
 
 freedroidRPG-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freedroidrpg
 	}
diff --git a/srcpkgs/freefont-ttf/template b/srcpkgs/freefont-ttf/template
index ec248d2f8c7..cae4908ae39 100644
--- a/srcpkgs/freefont-ttf/template
+++ b/srcpkgs/freefont-ttf/template
@@ -2,7 +2,6 @@
 pkgname=freefont-ttf
 version=20120503
 revision=7
-archs=noarch
 wrksrc="freefont-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers>=0.58"
diff --git a/srcpkgs/freeorion/template b/srcpkgs/freeorion/template
index 3078bee0d7b..9960b817536 100644
--- a/srcpkgs/freeorion/template
+++ b/srcpkgs/freeorion/template
@@ -25,7 +25,6 @@ post_extract() {
 freeorion-data_package() {
 	short_desc+=" - data files"
 	license="GPL-2.0-or-later, CC-BY-SA-3.0"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freeorion
 	}
diff --git a/srcpkgs/freepats/template b/srcpkgs/freepats/template
index a8d1bae328a..c96cdb5f5ee 100644
--- a/srcpkgs/freepats/template
+++ b/srcpkgs/freepats/template
@@ -2,7 +2,6 @@
 pkgname="freepats"
 version=20060219
 revision=5
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Free patch set for MIDI audio synthesis"
 maintainer="David <kalichakra@zoho.com>"
diff --git a/srcpkgs/freeplane/template b/srcpkgs/freeplane/template
index bb5875f7e7e..02f94d50ad1 100644
--- a/srcpkgs/freeplane/template
+++ b/srcpkgs/freeplane/template
@@ -2,7 +2,6 @@
 pkgname=freeplane
 version=1.8.6
 revision=1
-archs=noarch
 hostmakedepends="apache-ant openjdk8 unzip gradle"
 depends="virtual?java-runtime"
 short_desc="Application for Mind Mapping, Knowledge Management, Project Management"
diff --git a/srcpkgs/freerouting/template b/srcpkgs/freerouting/template
index 49af416078a..ae53f2e7e2d 100644
--- a/srcpkgs/freerouting/template
+++ b/srcpkgs/freerouting/template
@@ -2,7 +2,6 @@
 pkgname=freerouting
 version=1.4.4
 revision=1
-archs=noarch
 hostmakedepends="gradle openjdk11"
 depends="openjdk11"
 short_desc="Advanced PCB autorouter"
diff --git a/srcpkgs/freetds/template b/srcpkgs/freetds/template
index 43620742759..3aee702fe80 100644
--- a/srcpkgs/freetds/template
+++ b/srcpkgs/freetds/template
@@ -30,7 +30,6 @@ freetds-devel_package() {
 
 freetds-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fsharp/template b/srcpkgs/fsharp/template
index ef9f9b4ccbd..89cc3df9291 100644
--- a/srcpkgs/fsharp/template
+++ b/srcpkgs/fsharp/template
@@ -2,7 +2,6 @@
 pkgname=fsharp
 version=10.2.1
 revision=1
-archs=noarch
 lib32disabled=yes
 build_style=gnu-makefile
 hostmakedepends="msbuild-bin"
diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 51d5ea67a6c..1d6d1a72386 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -2,7 +2,6 @@
 pkgname=gajim
 version=1.2.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-gobject python3-nbxmpp python3-pyasn1 python3-setuptools
diff --git a/srcpkgs/gallery-dl/template b/srcpkgs/gallery-dl/template
index 2a361f53274..1d9283c9bf3 100644
--- a/srcpkgs/gallery-dl/template
+++ b/srcpkgs/gallery-dl/template
@@ -2,7 +2,6 @@
 pkgname=gallery-dl
 version=1.14.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-setuptools"
diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index fc6d3ba3320..4102d7fd7a0 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -2,7 +2,6 @@
 pkgname=gandi-cli
 version=1.5
 revision=2
-archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module
 pycompile_module="gandi/cli"
diff --git a/srcpkgs/gccmakedep/template b/srcpkgs/gccmakedep/template
index 29d6fdaafe0..267d448d92d 100644
--- a/srcpkgs/gccmakedep/template
+++ b/srcpkgs/gccmakedep/template
@@ -2,7 +2,6 @@
 pkgname=gccmakedep
 version=1.0.3
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="The gccmakedep program calls 'gcc -M' to output makefile rules"
 maintainer="Markus Berger <pulux@pf4sh.de>"
diff --git a/srcpkgs/gcdemu/template b/srcpkgs/gcdemu/template
index e12b1c932d2..b05436b54e9 100644
--- a/srcpkgs/gcdemu/template
+++ b/srcpkgs/gcdemu/template
@@ -2,7 +2,6 @@
 pkgname=gcdemu
 version=3.2.4
 revision=1
-archs=noarch
 wrksrc="gcdemu-${version}"
 build_style=cmake
 hostmakedepends="python3 intltool"
diff --git a/srcpkgs/gconfmm/template b/srcpkgs/gconfmm/template
index 5122dc300a3..2f96108e38b 100644
--- a/srcpkgs/gconfmm/template
+++ b/srcpkgs/gconfmm/template
@@ -28,7 +28,6 @@ gconfmm-devel_package() {
 if [ -z "$CROSS_BUILD" ]; then
 gconfmm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index a6b8de8f0cc..28c9f87dcaa 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -2,7 +2,6 @@
 pkgname=gcovr
 version=4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gdash/template b/srcpkgs/gdash/template
index 34e8e9afabb..7a566534167 100644
--- a/srcpkgs/gdash/template
+++ b/srcpkgs/gdash/template
@@ -35,7 +35,6 @@ post_install() {
 
 gdash-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/gdash
 	}
diff --git a/srcpkgs/gdown/template b/srcpkgs/gdown/template
index 8365ff593dd..b54b6173ac4 100644
--- a/srcpkgs/gdown/template
+++ b/srcpkgs/gdown/template
@@ -2,7 +2,6 @@
 pkgname=gdown
 version=3.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-filelock python3-requests python3-six python3-tqdm
diff --git a/srcpkgs/geda/template b/srcpkgs/geda/template
index fbce8bbf734..ec733d4f572 100644
--- a/srcpkgs/geda/template
+++ b/srcpkgs/geda/template
@@ -43,7 +43,6 @@ geda-devel_package() {
 	}
 }
 geda-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - documentation and exmaple files"
 	pkg_install() {
@@ -51,7 +50,6 @@ geda-doc_package() {
 	}
 }
 geda-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/gEDA
diff --git a/srcpkgs/gef/template b/srcpkgs/gef/template
index 16af44ee93e..b854e0b45f6 100644
--- a/srcpkgs/gef/template
+++ b/srcpkgs/gef/template
@@ -2,7 +2,6 @@
 pkgname=gef
 version=2020.06
 revision=1
-archs="noarch"
 pycompile_dirs="usr/share/gef"
 depends="keystone-python3 capstone-python3 unicorn-python3 python3-Ropper"
 short_desc="GDB Enhanced Features for exploit devs & reversers"
diff --git a/srcpkgs/geoip-data/template b/srcpkgs/geoip-data/template
index 2a1991ebf9b..dec0162c948 100644
--- a/srcpkgs/geoip-data/template
+++ b/srcpkgs/geoip-data/template
@@ -7,7 +7,6 @@ short_desc="Non-DNS IP-to-country resolver C library and utilities (data files)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="CC-BY-SA-4.0"
 homepage="https://dev.maxmind.com/geoip/legacy/geolite/"
-archs=noarch
 broken="broken URLs, downloads unversioned files that change daily!"
 
 do_fetch() {
diff --git a/srcpkgs/gespeaker/template b/srcpkgs/gespeaker/template
index bf29ef22410..23052bdb887 100644
--- a/srcpkgs/gespeaker/template
+++ b/srcpkgs/gespeaker/template
@@ -2,7 +2,6 @@
 pkgname=gespeaker
 version=0.8.6
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_dirs="/usr/share/gespeaker"
 hostmakedepends="gettext python"
diff --git a/srcpkgs/geteltorito/template b/srcpkgs/geteltorito/template
index c0be0b6e7a1..75ba25e607a 100644
--- a/srcpkgs/geteltorito/template
+++ b/srcpkgs/geteltorito/template
@@ -4,7 +4,6 @@ version=0.6
 revision=1
 wrksrc=${pkgname}
 depends="perl"
-archs=noarch
 short_desc="El Torito boot image extractor"
 maintainer="bra1nwave <brainwave@openmailbox.org>"
 license="GPL-2"
diff --git a/srcpkgs/getmail/template b/srcpkgs/getmail/template
index 51a5c4a109f..9f030553bda 100644
--- a/srcpkgs/getmail/template
+++ b/srcpkgs/getmail/template
@@ -2,7 +2,6 @@
 pkgname=getmail
 version=5.14
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="getmailcore"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/gettext/template b/srcpkgs/gettext/template
index 4495f83401f..7ecc61efe19 100644
--- a/srcpkgs/gettext/template
+++ b/srcpkgs/gettext/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gettext-devel-examples_package() {
-	archs=noarch
 	short_desc+=" - examples for development"
 	pkg_install() {
 		vmove usr/share/doc/gettext
diff --git a/srcpkgs/ghc/template b/srcpkgs/ghc/template
index e81da479cf0..925ad8693ca 100644
--- a/srcpkgs/ghc/template
+++ b/srcpkgs/ghc/template
@@ -86,7 +86,6 @@ post_install() {
 }
 
 ghc-doc_package() {
-	archs=noarch
 	short_desc+=" -- documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/ghi/template b/srcpkgs/ghi/template
index 907f7588841..9c2ab5da38c 100644
--- a/srcpkgs/ghi/template
+++ b/srcpkgs/ghi/template
@@ -2,7 +2,6 @@
 pkgname=ghi
 version=1.2.0
 revision=1
-archs=noarch
 depends="ruby"
 short_desc="GitHub command line interface"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/giac/template b/srcpkgs/giac/template
index 3d4a32c02e6..7247d9a4f27 100644
--- a/srcpkgs/giac/template
+++ b/srcpkgs/giac/template
@@ -38,7 +38,6 @@ giac-devel_package() {
 
 giac-doc_package() {
 	short_desc+=" - Documentation and Examples"
-	archs=noarch
 	pkg_install() {
 		vmove "usr/share/giac/doc"
 		vmove "usr/share/giac/examples"
diff --git a/srcpkgs/gimme/template b/srcpkgs/gimme/template
index 1893b659fae..4feac731cae 100644
--- a/srcpkgs/gimme/template
+++ b/srcpkgs/gimme/template
@@ -2,7 +2,6 @@
 pkgname=gimme
 version=1.5.4
 revision=1
-archs=noarch
 depends="bash curl git"
 short_desc="Shell script that knows how to install Go"
 maintainer="Alif Rachmawadi <arch@subosito.com>"
diff --git a/srcpkgs/gist/template b/srcpkgs/gist/template
index 39759f57e23..84c876b440e 100644
--- a/srcpkgs/gist/template
+++ b/srcpkgs/gist/template
@@ -2,7 +2,6 @@
 pkgname=gist
 version=5.1.0
 revision=1
-archs=noarch
 hostmakedepends="ruby"
 depends="ruby"
 short_desc="Uploads content to gist.github.com"
diff --git a/srcpkgs/git-cal/template b/srcpkgs/git-cal/template
index e05b6da5964..d4bba56af28 100644
--- a/srcpkgs/git-cal/template
+++ b/srcpkgs/git-cal/template
@@ -2,7 +2,6 @@
 pkgname=git-cal
 version=0.9.1
 revision=3
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/git-cola/template b/srcpkgs/git-cola/template
index bddc3f3fabd..9771e35eaab 100644
--- a/srcpkgs/git-cola/template
+++ b/srcpkgs/git-cola/template
@@ -2,7 +2,6 @@
 pkgname=git-cola
 version=3.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"
 hostmakedepends="python3"
diff --git a/srcpkgs/git-extras/template b/srcpkgs/git-extras/template
index 749b7c1291b..8a19b08ffb7 100644
--- a/srcpkgs/git-extras/template
+++ b/srcpkgs/git-extras/template
@@ -2,7 +2,6 @@
 pkgname=git-extras
 version=6.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="util-linux"
 depends="bash git"
diff --git a/srcpkgs/git-filter-repo/template b/srcpkgs/git-filter-repo/template
index 321464c7159..8d8a7b58010 100644
--- a/srcpkgs/git-filter-repo/template
+++ b/srcpkgs/git-filter-repo/template
@@ -2,7 +2,6 @@
 pkgname=git-filter-repo
 version=2.27.0
 revision=1
-archs=noarch
 depends="git python3"
 checkdepends="git python3 perl rsync dos2unix"
 short_desc="Versatile tool for rewriting git history"
diff --git a/srcpkgs/git-review/template b/srcpkgs/git-review/template
index 0ade5e3c4f2..5a8338df4c0 100644
--- a/srcpkgs/git-review/template
+++ b/srcpkgs/git-review/template
@@ -2,7 +2,6 @@
 pkgname=git-review
 version=1.28.0
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-requests"
diff --git a/srcpkgs/git-revise/template b/srcpkgs/git-revise/template
index 6d3071429b9..aa7b45340cf 100644
--- a/srcpkgs/git-revise/template
+++ b/srcpkgs/git-revise/template
@@ -2,7 +2,6 @@
 pkgname=git-revise
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="git python3-setuptools"
diff --git a/srcpkgs/git-secret/template b/srcpkgs/git-secret/template
index 01541c9b061..888033ef4ab 100644
--- a/srcpkgs/git-secret/template
+++ b/srcpkgs/git-secret/template
@@ -2,7 +2,6 @@
 pkgname=git-secret
 version=0.3.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="PREFIX=/usr"
 depends="bash gawk gnupg coreutils"
diff --git a/srcpkgs/git-toolbelt/template b/srcpkgs/git-toolbelt/template
index e79805ad5b0..223c14d450b 100644
--- a/srcpkgs/git-toolbelt/template
+++ b/srcpkgs/git-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=git-toolbelt
 version=1.5.0
 revision=1
-archs=noarch
 depends="git moreutils fzf"
 short_desc="Helper tools to make everyday life with Git much easier"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/git/template b/srcpkgs/git/template
index a5455fb9864..62f96a5f73c 100644
--- a/srcpkgs/git/template
+++ b/srcpkgs/git/template
@@ -63,7 +63,6 @@ post_install() {
 }
 
 git-cvs_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} cvs cvsps2 perl-DBD-SQLite"
 	short_desc+=" - CVS support"
 	pkg_install() {
@@ -89,7 +88,6 @@ git-svn_package() {
 }
 
 gitk_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc="Git repository browser"
 	license="GPL-2.0-or-later"
@@ -101,7 +99,6 @@ gitk_package() {
 }
 
 git-gui_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc+=" - GUI tool"
 	license="GPL-2.0-or-later"
@@ -116,7 +113,6 @@ git-gui_package() {
 
 git-all_package() {
 	build_style=meta
-	archs=noarch
 	depends="${subpackages/git-all/}"
 	short_desc+=" - meta-package for complete Git installation"
 }
@@ -132,7 +128,6 @@ git-libsecret_package() {
 
 git-netrc_package() {
 	depends="git-${version}_${revision}"
-	archs=noarch
 	short_desc+=" - netrc credential helper"
 	pkg_install() {
 		vmove usr/libexec/git-core/git-credential-netrc
diff --git a/srcpkgs/gitflow/template b/srcpkgs/gitflow/template
index 79c4e1adf5c..481ee2eee2e 100644
--- a/srcpkgs/gitflow/template
+++ b/srcpkgs/gitflow/template
@@ -5,7 +5,6 @@ version=20120925
 revision=2
 _commit=15aab26490facf285acef56cb5d61025eacb3a69
 _shflags_commit=2fb06af13de884e9680f14a00c82e52a67c867f1
-archs=noarch
 hostmakedepends="perl"
 depends="git"
 short_desc="Git extensions to provide high-level repository operations"
diff --git a/srcpkgs/gitolite/template b/srcpkgs/gitolite/template
index 0374c3a991c..ad7d25cd8fe 100644
--- a/srcpkgs/gitolite/template
+++ b/srcpkgs/gitolite/template
@@ -2,7 +2,6 @@
 pkgname=gitolite
 version=3.6.11
 revision=2
-archs=noarch
 depends="git perl"
 short_desc="Access control layer on top of git"
 maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index daeec2ddd7d..f669611d1a9 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -2,7 +2,6 @@
 pkgname=glances
 version=3.1.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-future python3-psutil"
diff --git a/srcpkgs/glibc/template b/srcpkgs/glibc/template
index 4ea327aa1fa..f8e03d38093 100644
--- a/srcpkgs/glibc/template
+++ b/srcpkgs/glibc/template
@@ -201,7 +201,6 @@ glibc-devel_package() {
 	}
 }
 glibc-locales_package() {
-	archs="noarch"
 	conf_files="/etc/default/libc-locales"
 	short_desc+=" - locale data files"
 	pkg_install() {
diff --git a/srcpkgs/glibmm/template b/srcpkgs/glibmm/template
index bc373d3a90b..d3ffc563daf 100644
--- a/srcpkgs/glibmm/template
+++ b/srcpkgs/glibmm/template
@@ -18,7 +18,6 @@ post_patch() {
 }
 
 glibmm-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/glm/template b/srcpkgs/glm/template
index ae1a892e664..b978a0b992c 100644
--- a/srcpkgs/glm/template
+++ b/srcpkgs/glm/template
@@ -2,7 +2,6 @@
 pkgname=glm
 version=0.9.9.7
 revision=1
-archs=noarch
 wrksrc=glm
 hostmakedepends="dos2unix unzip"
 short_desc="C++ mathematics library for graphics programming"
diff --git a/srcpkgs/glog/template b/srcpkgs/glog/template
index 080a737fb35..dc33e06913a 100644
--- a/srcpkgs/glog/template
+++ b/srcpkgs/glog/template
@@ -27,7 +27,6 @@ glog-devel_package() {
 
 glog-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gmsh/template b/srcpkgs/gmsh/template
index 5d36aaf6eb6..dfac5740dd1 100644
--- a/srcpkgs/gmsh/template
+++ b/srcpkgs/gmsh/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gmsh-doc_package() {
-	archs=noarch
 	short_desc+=" - document and demo files"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/gmsl/template b/srcpkgs/gmsl/template
index 37ec5bcd993..050d9e3af4b 100644
--- a/srcpkgs/gmsl/template
+++ b/srcpkgs/gmsl/template
@@ -2,7 +2,6 @@
 pkgname=gmsl
 version=1.1.8
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="make"
 short_desc="GNU Make Standard Library"
diff --git a/srcpkgs/gmusicbrowser/template b/srcpkgs/gmusicbrowser/template
index a84cce8f01a..55c006dd40d 100644
--- a/srcpkgs/gmusicbrowser/template
+++ b/srcpkgs/gmusicbrowser/template
@@ -2,7 +2,6 @@
 pkgname=gmusicbrowser
 version=1.1.15
 revision=7
-archs=noarch
 hostmakedepends="perl gettext"
 depends="perl-Gtk2 perl-Glib-Object-Introspection gst-plugins-good1
  gst-plugins-bad1 gst-plugins-ugly1"
diff --git a/srcpkgs/gnome-backgrounds/template b/srcpkgs/gnome-backgrounds/template
index 0b1ee427353..67984a56c47 100644
--- a/srcpkgs/gnome-backgrounds/template
+++ b/srcpkgs/gnome-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=gnome-backgrounds
 version=3.36.0
 revision=2
-archs=noarch
 build_style=meson
 hostmakedepends=gettext
 short_desc="Set of background images for the GNOME Desktop"
diff --git a/srcpkgs/gnome-colors-icon-theme/template b/srcpkgs/gnome-colors-icon-theme/template
index 79f36d85e89..02e88ced0a8 100644
--- a/srcpkgs/gnome-colors-icon-theme/template
+++ b/srcpkgs/gnome-colors-icon-theme/template
@@ -1,7 +1,6 @@
 pkgname=gnome-colors-icon-theme
 version=5.5.1
 revision=1
-archs=noarch
 depends="gtk-update-icon-cache hicolor-icon-theme gnome-icon-theme"
 short_desc="GNOME-Colors icon theme"
 maintainer="Peter Bui <pnutzh4x0r@gmail.com>"
diff --git a/srcpkgs/gnome-common/template b/srcpkgs/gnome-common/template
index f8eb31e1333..bf33a8497dd 100644
--- a/srcpkgs/gnome-common/template
+++ b/srcpkgs/gnome-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-common
 version=3.18.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-autoconf-archive"
 hostmakedepends="automake"
diff --git a/srcpkgs/gnome-doc-utils/template b/srcpkgs/gnome-doc-utils/template
index d2fa2e9e4cd..75458a7081b 100644
--- a/srcpkgs/gnome-doc-utils/template
+++ b/srcpkgs/gnome-doc-utils/template
@@ -2,7 +2,6 @@
 pkgname=gnome-doc-utils
 version=0.20.10
 revision=5
-archs=noarch
 build_style=gnu-configure
 configure_args="--disable-scrollkeeper"
 hostmakedepends="pkg-config intltool python3 libxml2-python3 libxslt-python
diff --git a/srcpkgs/gnome-getting-started-docs/template b/srcpkgs/gnome-getting-started-docs/template
index 5bec93490ba..ca718090c24 100644
--- a/srcpkgs/gnome-getting-started-docs/template
+++ b/srcpkgs/gnome-getting-started-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-getting-started-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gnome-doc-utils intltool itstool pkg-config"
 short_desc="Getting Started documentation for GNOME"
diff --git a/srcpkgs/gnome-icon-theme-extras/template b/srcpkgs/gnome-icon-theme-extras/template
index ca52449b6f0..e907872b567 100644
--- a/srcpkgs/gnome-icon-theme-extras/template
+++ b/srcpkgs/gnome-icon-theme-extras/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-extras
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool icon-naming-utils gtk-update-icon-cache"
 makedepends="icon-naming-utils gnome-icon-theme"
diff --git a/srcpkgs/gnome-icon-theme-symbolic/template b/srcpkgs/gnome-icon-theme-symbolic/template
index a76da8de756..ec9d64ae185 100644
--- a/srcpkgs/gnome-icon-theme-symbolic/template
+++ b/srcpkgs/gnome-icon-theme-symbolic/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-symbolic
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="GTK_UPDATE_ICON_CACHE=/bin/true"
 hostmakedepends="pkg-config intltool icon-naming-utils"
diff --git a/srcpkgs/gnome-icon-theme-xfce/template b/srcpkgs/gnome-icon-theme-xfce/template
index 7ef56da2cbd..b08bca158a7 100644
--- a/srcpkgs/gnome-icon-theme-xfce/template
+++ b/srcpkgs/gnome-icon-theme-xfce/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-xfce
 version=0.6
 revision=2
-archs=noarch
 wrksrc="gnome-icon-theme-xfce"
 short_desc="Theme adding missing icons for Xfce"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/gnome-icon-theme/template b/srcpkgs/gnome-icon-theme/template
index e8a46ea8457..1f31970af43 100644
--- a/srcpkgs/gnome-icon-theme/template
+++ b/srcpkgs/gnome-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-icon-mapping"
 hostmakedepends="pkg-config intltool librsvg icon-naming-utils gtk-update-icon-cache"
diff --git a/srcpkgs/gnome-js-common/template b/srcpkgs/gnome-js-common/template
index 263813cf2c8..50582aa152a 100644
--- a/srcpkgs/gnome-js-common/template
+++ b/srcpkgs/gnome-js-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-js-common
 version=0.1.2
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="GNOME JavaScript common modules"
diff --git a/srcpkgs/gnome-mime-data/template b/srcpkgs/gnome-mime-data/template
index e79860e1820..3ca5cd0ab8f 100644
--- a/srcpkgs/gnome-mime-data/template
+++ b/srcpkgs/gnome-mime-data/template
@@ -2,7 +2,6 @@
 pkgname=gnome-mime-data
 version=2.18.0
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool shared-mime-info"
 makedepends="shared-mime-info"
diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index c4609214612..5c2775ffd5d 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -2,7 +2,6 @@
 pkgname=gnome-passwordsafe
 version=3.99.2
 revision=1
-archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson
 hostmakedepends="gettext glib-devel pkg-config gobject-introspection python3-pykeepass"
diff --git a/srcpkgs/gnome-shell-extensions/template b/srcpkgs/gnome-shell-extensions/template
index 97168b40f66..e6d61b34979 100644
--- a/srcpkgs/gnome-shell-extensions/template
+++ b/srcpkgs/gnome-shell-extensions/template
@@ -2,7 +2,6 @@
 pkgname=gnome-shell-extensions
 version=3.34.1
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dextension_set=all"
 hostmakedepends="pkg-config"
diff --git a/srcpkgs/gnome-themes-extra/template b/srcpkgs/gnome-themes-extra/template
index 02ea840e0bc..21981054da4 100644
--- a/srcpkgs/gnome-themes-extra/template
+++ b/srcpkgs/gnome-themes-extra/template
@@ -19,7 +19,6 @@ if [ "$CROSS_BUILD" ]; then
 fi
 
 gnome-themes-standard_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="gnome-themes-extra-${version}_${revision}"
diff --git a/srcpkgs/gnome-tweaks/template b/srcpkgs/gnome-tweaks/template
index 557005fad57..c00e5838422 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -2,7 +2,6 @@
 pkgname=gnome-tweaks
 version=3.34.0
 revision=3
-archs=noarch
 build_style=meson
 hostmakedepends="gettext"
 depends="gtk+3 dconf gnome-settings-daemon mutter libnotify python3-gobject libhandy"
@@ -15,7 +14,6 @@ checksum=003326fab46e6faad9485924bca503f0c583e3b4553d6f673406eda396205250
 replaces="gnome-tweak-tool>=0"
 
 gnome-tweak-tool_package() {
-	archs=noarch
 	build_style=meta
 	depends="gnome-tweaks>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/gnome-user-docs/template b/srcpkgs/gnome-user-docs/template
index 4cb55396e37..90b4044d402 100644
--- a/srcpkgs/gnome-user-docs/template
+++ b/srcpkgs/gnome-user-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-user-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext pkg-config itstool gnome-doc-utils"
 makedepends="yelp"
diff --git a/srcpkgs/gnome-video-effects/template b/srcpkgs/gnome-video-effects/template
index 08320ba36db..fa6bd46b9a7 100644
--- a/srcpkgs/gnome-video-effects/template
+++ b/srcpkgs/gnome-video-effects/template
@@ -2,7 +2,6 @@
 pkgname=gnome-video-effects
 version=0.5.0
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool gettext"
 makedepends="gstreamer1-devel"
diff --git a/srcpkgs/gns3-gui/template b/srcpkgs/gns3-gui/template
index 9ea3c9b78ad..f3c04137a40 100644
--- a/srcpkgs/gns3-gui/template
+++ b/srcpkgs/gns3-gui/template
@@ -2,7 +2,6 @@
 pkgname=gns3-gui
 version=2.2.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-psutil python3-jsonschema python3-sentry
diff --git a/srcpkgs/gns3-net-converter/template b/srcpkgs/gns3-net-converter/template
index 70b6c90e8c8..48afd26125b 100644
--- a/srcpkgs/gns3-net-converter/template
+++ b/srcpkgs/gns3-net-converter/template
@@ -2,7 +2,6 @@
 pkgname=gns3-net-converter
 version=1.3.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gnupod/template b/srcpkgs/gnupod/template
index d4e80ce6c9c..06caedf5738 100644
--- a/srcpkgs/gnupod/template
+++ b/srcpkgs/gnupod/template
@@ -2,7 +2,6 @@
 pkgname=gnupod
 version=0.99.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-Digest-SHA1 perl-XML-Parser perl-Unicode-String perl-MP3-Info perl-TimeDate"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/gnuradio/template b/srcpkgs/gnuradio/template
index 8c7c6e80eee..56969321295 100644
--- a/srcpkgs/gnuradio/template
+++ b/srcpkgs/gnuradio/template
@@ -31,7 +31,6 @@ post_install() {
 
 gnuradio-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gnustep-gui/template b/srcpkgs/gnustep-gui/template
index c6253ca745d..3c1cdbadfe0 100644
--- a/srcpkgs/gnustep-gui/template
+++ b/srcpkgs/gnustep-gui/template
@@ -18,7 +18,6 @@ nocross="objc doesn't get cross build at present within gcc"
 
 gnustep-gui-data_package() {
 	short_desc+=" - assets"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/GNUstep/Sounds
 		vmove usr/lib/GNUstep/Images
diff --git a/srcpkgs/gohufont/template b/srcpkgs/gohufont/template
index c6e43d9c0d1..3218d1befc3 100644
--- a/srcpkgs/gohufont/template
+++ b/srcpkgs/gohufont/template
@@ -2,7 +2,6 @@
 pkgname=gohufont
 version=2.1
 revision=2
-archs=noarch
 makedepends="font-util xbps-triggers"
 depends="$makedepends"
 short_desc="Programming monospace bitmap"
diff --git a/srcpkgs/google-cloud-sdk/template b/srcpkgs/google-cloud-sdk/template
index 326e81b0def..a38ba727c0f 100644
--- a/srcpkgs/google-cloud-sdk/template
+++ b/srcpkgs/google-cloud-sdk/template
@@ -2,7 +2,6 @@
 pkgname=google-cloud-sdk
 version=307.0.0
 revision=1
-archs=noarch
 wrksrc=$pkgname
 depends="python3"
 short_desc="Command-line interface for Google Cloud Platform products and services"
diff --git a/srcpkgs/google-fonts-ttf/template b/srcpkgs/google-fonts-ttf/template
index 25ac61c5dbe..b5fdf32bd7b 100644
--- a/srcpkgs/google-fonts-ttf/template
+++ b/srcpkgs/google-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=google-fonts-ttf
 version=20190605
 revision=1
-archs=noarch
 _githash=87776223497b72be361b5c08ba16e9c659209f37
 wrksrc="fonts-${_githash}"
 depends="font-util cantarell-fonts noto-fonts-ttf"
diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 8ce466aaa83..580a64d140d 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -2,7 +2,6 @@
 pkgname=gpodder
 version=3.10.16
 revision=1
-archs=noarch
 wrksrc="gpodder-${version}"
 hostmakedepends="python3 intltool"
 depends="eyeD3 gtk+3 hicolor-icon-theme python3-dbus python3-gobject
diff --git a/srcpkgs/gradle/template b/srcpkgs/gradle/template
index bf4775cd7a7..5d4a15e50a8 100644
--- a/srcpkgs/gradle/template
+++ b/srcpkgs/gradle/template
@@ -2,7 +2,6 @@
 pkgname=gradle
 version=6.4.1
 revision=1
-archs=noarch
 depends="virtual?java-environment"
 short_desc="Build system for Java/C/C++ software"
 maintainer="Adrian Siekierka <kontakt@asie.pl>"
diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 35e3245ef62..a24b860e37f 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -2,7 +2,6 @@
 pkgname=gramps
 version=5.1.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config intltool python3"
 depends="gtk+3 python3-gobject python3-bsddb3"
diff --git a/srcpkgs/grc/template b/srcpkgs/grc/template
index 9efca90352e..a59c5e97f14 100644
--- a/srcpkgs/grc/template
+++ b/srcpkgs/grc/template
@@ -2,7 +2,6 @@
 pkgname=grc
 version=1.11.3
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Colouriser for logfiles and output of commands"
 maintainer="Georg Schabel <gescha@posteo.de>"
diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 237e2ac9ae9..ca6c9f42667 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -2,7 +2,6 @@
 pkgname=greg
 version=0.4.7
 revision=6
-archs=noarch
 build_style=python3-module
 pycompile_module="greg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/greybird-themes/template b/srcpkgs/greybird-themes/template
index 1ce9e214cb1..447ad0da879 100644
--- a/srcpkgs/greybird-themes/template
+++ b/srcpkgs/greybird-themes/template
@@ -2,7 +2,6 @@
 pkgname=greybird-themes
 version=3.22.12
 revision=1
-archs=noarch
 wrksrc="Greybird-${version}"
 build_style=meson
 hostmakedepends="sassc ninja glib-devel gdk-pixbuf-devel librsvg-devel"
diff --git a/srcpkgs/grip/template b/srcpkgs/grip/template
index 6acfe00b299..6459d6bb386 100755
--- a/srcpkgs/grip/template
+++ b/srcpkgs/grip/template
@@ -2,7 +2,6 @@
 pkgname=grip
 version=4.5.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-docopt python3-Flask python3-Markdown python3-path-and-address python3-Pygments python3-requests"
diff --git a/srcpkgs/grml-zsh-config/template b/srcpkgs/grml-zsh-config/template
index 1931c4d1f01..8b674961375 100644
--- a/srcpkgs/grml-zsh-config/template
+++ b/srcpkgs/grml-zsh-config/template
@@ -2,7 +2,6 @@
 pkgname=grml-zsh-config
 version=0.17.4
 revision=1
-archs=noarch
 wrksrc="grml-etc-core-${version}"
 short_desc="Grml's zsh setup"
 maintainer="Christian Poulwey <christian.poulwey@t-online.de>"
diff --git a/srcpkgs/groff/template b/srcpkgs/groff/template
index 690b26c94ff..a6c8419d0df 100644
--- a/srcpkgs/groff/template
+++ b/srcpkgs/groff/template
@@ -50,7 +50,6 @@ libgroff_package() {
 
 groff-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/grub-terminus/template b/srcpkgs/grub-terminus/template
index 5f53c77384d..9b5e867d4df 100644
--- a/srcpkgs/grub-terminus/template
+++ b/srcpkgs/grub-terminus/template
@@ -2,7 +2,6 @@
 pkgname=grub-terminus
 version=0.2
 revision=1
-archs=noarch
 hostmakedepends="grub-utils terminus-font"
 short_desc="Terminus bold fonts for GRUB"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/grub/template b/srcpkgs/grub/template
index 77c6cfbff2f..0c4642323d7 100644
--- a/srcpkgs/grub/template
+++ b/srcpkgs/grub/template
@@ -162,7 +162,6 @@ grub-utils_package() {
 	}
 }
 grub-x86_64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - x86_64 EFI support"
 	pkg_install() {
@@ -170,7 +169,6 @@ grub-x86_64-efi_package() {
 	}
 }
 grub-i386-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - i386 EFI support"
 	pkg_install() {
@@ -178,7 +176,6 @@ grub-i386-efi_package() {
 	}
 }
 grub-i386-coreboot_package() {
-	archs=noarch
 	depends="grub>=$version"
 	short_desc+=" - i386 coreboot support"
 	pkg_install() {
@@ -200,7 +197,6 @@ grub-xen_package() {
 	}
 }
 grub-arm64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - arm64 EFI support"
 	pkg_install() {
@@ -208,7 +204,6 @@ grub-arm64-efi_package() {
 	}
 }
 grub-powerpc-ieee1275_package() {
-	archs=noarch
 	depends="grub>=$version powerpc-utils"
 	short_desc+=" - powerpc Open Firmware support"
 	pkg_install() {
diff --git a/srcpkgs/gscan2pdf/template b/srcpkgs/gscan2pdf/template
index 6e01328a391..201cccf6224 100644
--- a/srcpkgs/gscan2pdf/template
+++ b/srcpkgs/gscan2pdf/template
@@ -2,7 +2,6 @@
 pkgname=gscan2pdf
 version=2.8.2
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl gettext"
 makedepends="ImageMagick djvulibre libmagick-perl perl-Config-General
diff --git a/srcpkgs/gscreenshot/template b/srcpkgs/gscreenshot/template
index 5537910592e..13964d4fbab 100644
--- a/srcpkgs/gscreenshot/template
+++ b/srcpkgs/gscreenshot/template
@@ -2,7 +2,6 @@
 pkgname=gscreenshot
 version=2.12.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="gtk+3 python3-setuptools python3-Pillow python3-gobject scrot"
diff --git a/srcpkgs/gsfonts/template b/srcpkgs/gsfonts/template
index 5d76979e0ed..511a929ceb7 100644
--- a/srcpkgs/gsfonts/template
+++ b/srcpkgs/gsfonts/template
@@ -2,7 +2,6 @@
 pkgname=gsfonts
 version=8.11
 revision=5
-archs=noarch
 wrksrc=fonts
 makedepends="font-util font-misc-misc"
 depends="${makedepends}"
diff --git a/srcpkgs/gtk-doc/template b/srcpkgs/gtk-doc/template
index 439da0d796e..d56054d12f6 100644
--- a/srcpkgs/gtk-doc/template
+++ b/srcpkgs/gtk-doc/template
@@ -2,7 +2,6 @@
 pkgname=gtk-doc
 version=1.32
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="usr/share/gtk-doc/python/gtkdoc"
 hostmakedepends="gettext docbook-xml docbook-xsl itstool libxslt pkg-config python3"
diff --git a/srcpkgs/gtk-theme-united-gnome/template b/srcpkgs/gtk-theme-united-gnome/template
index 3523498a780..355bf483d67 100644
--- a/srcpkgs/gtk-theme-united-gnome/template
+++ b/srcpkgs/gtk-theme-united-gnome/template
@@ -2,7 +2,6 @@
 pkgname=gtk-theme-united-gnome
 version=2.2
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="gnome-themes-standard gtk+3 gtk-engine-murrine"
 short_desc="GTK2/3 + GNOME Shell theme based on a Ubuntu 18.04 design concept"
diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 885fed99f0b..564d719856b 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -2,7 +2,6 @@
 pkgname=guake
 version=3.6.3
 revision=3
-archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"
 pycompile_module="guake"
diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index 1b87f809fe9..348c7ca7da8 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -2,7 +2,6 @@
 pkgname=gufw
 version=20.04.1
 revision=1
-archs=noarch
 wrksrc="gufw-${version}"
 build_style=python3-module
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/guilt/template b/srcpkgs/guilt/template
index 3c17d8cc879..76449857b96 100644
--- a/srcpkgs/guilt/template
+++ b/srcpkgs/guilt/template
@@ -4,7 +4,6 @@ version=0.36
 revision=2
 _githash=22d785dd24329170f66e7696da38b3e90e033d61
 _gitshort="${_githash:0:7}"
-archs=noarch
 wrksrc="guilt-${_gitshort}"
 build_style=gnu-makefile
 make_build_args="-C Documentation"
diff --git a/srcpkgs/gyazo/template b/srcpkgs/gyazo/template
index 3661570514a..261d2f6e175 100644
--- a/srcpkgs/gyazo/template
+++ b/srcpkgs/gyazo/template
@@ -4,7 +4,6 @@ version=1.2.1
 revision=1
 wrksrc="Gyazo-for-Linux-${version}"
 depends="ruby xclip ImageMagick"
-archs=noarch
 short_desc="Seriously Instant Screen-Grabbing"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
 license="GPL-2"
diff --git a/srcpkgs/hamster-applet/template b/srcpkgs/hamster-applet/template
index ce244c38f10..aa6e23f26b3 100644
--- a/srcpkgs/hamster-applet/template
+++ b/srcpkgs/hamster-applet/template
@@ -2,7 +2,6 @@
 pkgname=hamster-applet
 version=2.91.2
 revision=10
-archs=noarch
 build_style=waf
 pycompile_module="hamster"
 hostmakedepends="pkg-config intltool gnome-doc-utils docbook2x"
diff --git a/srcpkgs/hashboot/template b/srcpkgs/hashboot/template
index 67c071e4f9e..49dbe3478f4 100644
--- a/srcpkgs/hashboot/template
+++ b/srcpkgs/hashboot/template
@@ -2,7 +2,6 @@
 pkgname=hashboot
 version=0.9.14
 revision=1
-archs=noarch
 hostmakedepends="asciidoc"
 short_desc="Check integrity of files in /boot, mbr & (mostly) coreboot bios"
 maintainer="teldra <teldra@rotce.de>"
diff --git a/srcpkgs/hedgewars/template b/srcpkgs/hedgewars/template
index 40cdb1086b4..c7418ec778b 100644
--- a/srcpkgs/hedgewars/template
+++ b/srcpkgs/hedgewars/template
@@ -56,7 +56,6 @@ post_install() {
 
 hedgewars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/hedgewars/Data
 	}
diff --git a/srcpkgs/hg-git/template b/srcpkgs/hg-git/template
index 15f981d8563..4a47998a4a3 100644
--- a/srcpkgs/hg-git/template
+++ b/srcpkgs/hg-git/template
@@ -3,7 +3,6 @@ pkgname=hg-git
 version=0.8.12
 revision=1
 wrksrc="durin42-hg-git-c651bb6fcf33"
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python python-dulwich"
diff --git a/srcpkgs/hicolor-icon-theme/template b/srcpkgs/hicolor-icon-theme/template
index 35798239a5e..51d207c4a3c 100644
--- a/srcpkgs/hicolor-icon-theme/template
+++ b/srcpkgs/hicolor-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=hicolor-icon-theme
 version=0.17
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard icon theme called hicolor"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/hiera/template b/srcpkgs/hiera/template
index b8cd47376ba..69f4928eff1 100644
--- a/srcpkgs/hiera/template
+++ b/srcpkgs/hiera/template
@@ -2,7 +2,6 @@
 pkgname=hiera
 version=3.6.0
 revision=2
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/hostfw/template b/srcpkgs/hostfw/template
index 445c9bee74e..00484a3f5b9 100644
--- a/srcpkgs/hostfw/template
+++ b/srcpkgs/hostfw/template
@@ -2,7 +2,6 @@
 pkgname=hostfw
 version=0.6.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="iptables"
 short_desc="Simple host-based permit-by-exception iptables generation script"
diff --git a/srcpkgs/hostmux/template b/srcpkgs/hostmux/template
index c261e9487ec..4a7bd2f0dfa 100644
--- a/srcpkgs/hostmux/template
+++ b/srcpkgs/hostmux/template
@@ -2,7 +2,6 @@
 pkgname=hostmux
 version=1.4.0
 revision=1
-archs=noarch
 depends="tmux"
 short_desc="A small wrapper for tmux to easily connect to a series of hosts via ssh"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/hosts-update/template b/srcpkgs/hosts-update/template
index 4dc11da9b3a..12b123f5182 100644
--- a/srcpkgs/hosts-update/template
+++ b/srcpkgs/hosts-update/template
@@ -2,7 +2,6 @@
 pkgname=hosts-update
 version=1.37
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="bash curl"
 short_desc="Updates /etc/hosts with the mvps blocklist"
diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 2cb04c88273..6de3cef38ba 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -2,7 +2,6 @@
 pkgname=httpie
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests python3-Pygments"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-httpie_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="httpie>=${version}_${revision}"
diff --git a/srcpkgs/hunspell-da_DK/template b/srcpkgs/hunspell-da_DK/template
index 8fffc8f3f32..ebbf69fde46 100644
--- a/srcpkgs/hunspell-da_DK/template
+++ b/srcpkgs/hunspell-da_DK/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-da_DK
 version=2.4
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Danish da_DK dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_CH/template b/srcpkgs/hunspell-de_CH/template
index c23fb3ad0a0..6af64522019 100644
--- a/srcpkgs/hunspell-de_CH/template
+++ b/srcpkgs/hunspell-de_CH/template
@@ -3,7 +3,6 @@ pkgname=hunspell-de_CH
 version=20170112
 revision=1
 _version="${version:0:4}-${version:4:2}.${version:6:2}"
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="German (Switzerland) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_DE/template b/srcpkgs/hunspell-de_DE/template
index f7da2d64d4c..94733999f27 100644
--- a/srcpkgs/hunspell-de_DE/template
+++ b/srcpkgs/hunspell-de_DE/template
@@ -11,7 +11,6 @@ short_desc="German (Germany) dictionary for hunspell"
 distfiles="https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries/${_version}/@@download/file/dict-de_DE-frami_${_version}.oxt>dict-de.zip"
 checksum=af515015e306c634373b5382808a39691200de3439811d2f1502e9b91c23b46a
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall ${wrksrc}/de_DE_frami/de_DE_frami.aff 644 usr/share/hunspell de_DE.aff
diff --git a/srcpkgs/hunspell-el_GR/template b/srcpkgs/hunspell-el_GR/template
index 698057e616e..aaedf9fe65d 100644
--- a/srcpkgs/hunspell-el_GR/template
+++ b/srcpkgs/hunspell-el_GR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-el_GR
 version=0.4.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Greek el_GR dictionary for hunspell"
 maintainer="Nicholas Christopoulos <nereus@freemail.gr>"
diff --git a/srcpkgs/hunspell-en_AU/template b/srcpkgs/hunspell-en_AU/template
index f8f3b94e6ab..7b11e8840e5 100644
--- a/srcpkgs/hunspell-en_AU/template
+++ b/srcpkgs/hunspell-en_AU/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_AU
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Australian English en_AU dictionary for hunspell"
diff --git a/srcpkgs/hunspell-en_GB-ize/template b/srcpkgs/hunspell-en_GB-ize/template
index 41001a413a8..82b38cb25f3 100644
--- a/srcpkgs/hunspell-en_GB-ize/template
+++ b/srcpkgs/hunspell-en_GB-ize/template
@@ -4,7 +4,6 @@ _variant="ize"
 pkgname=${_vpkgname}-${_variant}
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="English dictionary for hunspell ${_variant} variant"
diff --git a/srcpkgs/hunspell-en_US/template b/srcpkgs/hunspell-en_US/template
index 0d100851774..807577870f1 100644
--- a/srcpkgs/hunspell-en_US/template
+++ b/srcpkgs/hunspell-en_US/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_US
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="American English en_US dictionary for hunspell"
diff --git a/srcpkgs/hunspell-es_ES/template b/srcpkgs/hunspell-es_ES/template
index f24f904620f..b08aaabb2a6 100644
--- a/srcpkgs/hunspell-es_ES/template
+++ b/srcpkgs/hunspell-es_ES/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-es_ES
 version=2.5
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Spanish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-fr_FR/template b/srcpkgs/hunspell-fr_FR/template
index 9ad9c70a087..7cd93fe29c6 100644
--- a/srcpkgs/hunspell-fr_FR/template
+++ b/srcpkgs/hunspell-fr_FR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-fr_FR
 version=6.4.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="French dictionary for hunspell"
@@ -24,7 +23,6 @@ hunspell-fr_FR-moderne_package() {
 	short_desc+=" - Moderne Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -37,7 +35,6 @@ hunspell-fr_FR-reforme1990_package() {
 	short_desc+=" - Reforme 1990 Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -50,7 +47,6 @@ hunspell-fr_FR-toutesvariantes_package() {
 	short_desc+=" - All variant in one file"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
diff --git a/srcpkgs/hunspell-hr_HR/template b/srcpkgs/hunspell-hr_HR/template
index a72930fe333..b0ab1484e90 100644
--- a/srcpkgs/hunspell-hr_HR/template
+++ b/srcpkgs/hunspell-hr_HR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-hr_HR
 version=20030928
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Croatian (Croatia) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-it_IT/template b/srcpkgs/hunspell-it_IT/template
index 44d83a79ae6..9d0e0c3186c 100644
--- a/srcpkgs/hunspell-it_IT/template
+++ b/srcpkgs/hunspell-it_IT/template
@@ -3,7 +3,6 @@ pkgname=hunspell-it_IT
 version=4.2
 revision=1
 build_style=fetch
-archs=noarch
 hostmakedepends="unzip"
 short_desc="Italian dictionary for hunspell"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
diff --git a/srcpkgs/hunspell-pl_PL/template b/srcpkgs/hunspell-pl_PL/template
index 31158cc9bec..4cb3ceb10fe 100644
--- a/srcpkgs/hunspell-pl_PL/template
+++ b/srcpkgs/hunspell-pl_PL/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pl_PL
 version=20191005
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Polish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-pt_BR/template b/srcpkgs/hunspell-pt_BR/template
index 4920979d7d3..91b14b275af 100644
--- a/srcpkgs/hunspell-pt_BR/template
+++ b/srcpkgs/hunspell-pt_BR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pt_BR
 version=3.2
 revision=2
-archs=noarch
 build_style=fetch
 hostmakedepends="unzip"
 short_desc="Brazillian Portuguese dictionary for hunspell"
diff --git a/srcpkgs/hunspell-ru_RU-ieyo/template b/srcpkgs/hunspell-ru_RU-ieyo/template
index dcc45866c09..82f485a910a 100644
--- a/srcpkgs/hunspell-ru_RU-ieyo/template
+++ b/srcpkgs/hunspell-ru_RU-ieyo/template
@@ -10,7 +10,6 @@ homepage="http://extensions.openoffice.org/en/projectrelease/russkiy-orfografich
 distfiles="${SOURCEFORGE_SITE}/project/aoo-extensions/5149/3/dict_ru_ru-aot-${version}-ieyo.oxt>dict-ru_RU-ieyo.zip"
 checksum=3b374cf18f00fd0a9b6514eb8413438ce5d425a2e04435ffd81d8acc7ee1e578
 create_wrksrc=yes
-archs=noarch
 provides="hunspell-ru_RU-${version}_${revision}"
 conflicts="hunspell-ru_RU"
 
diff --git a/srcpkgs/hunspell-ru_RU/template b/srcpkgs/hunspell-ru_RU/template
index 862bed568c1..ffd028dbcda 100644
--- a/srcpkgs/hunspell-ru_RU/template
+++ b/srcpkgs/hunspell-ru_RU/template
@@ -10,7 +10,6 @@ homepage="https://extensions.libreoffice.org/extensions/russian-spellcheck-dicti
 distfiles="https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group/${version/./-}/@@download/file/dict_ru_ru-aot-${version}.oxt>dict-ru.zip"
 checksum=ee9b0575e9f8caf1d0a948fb644aed864de47aaf3bc24d2b77f288fec7f8d4c4
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall russian-aot.aff 644 usr/share/hunspell ru_RU.aff
diff --git a/srcpkgs/hunspell-sv_SE/template b/srcpkgs/hunspell-sv_SE/template
index d36dd1359fa..991a74da507 100644
--- a/srcpkgs/hunspell-sv_SE/template
+++ b/srcpkgs/hunspell-sv_SE/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-sv_SE
 version=2.41
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Swedish sv_SE dictionary for hunspell"
diff --git a/srcpkgs/hwids/template b/srcpkgs/hwids/template
index 05feaae9dc1..0d99a8f959b 100644
--- a/srcpkgs/hwids/template
+++ b/srcpkgs/hwids/template
@@ -2,7 +2,6 @@
 pkgname=hwids
 version=20200306
 revision=1
-archs=noarch
 wrksrc="hwids-hwids-${version}"
 short_desc="Hardware Identification Databases"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/i3blocks-blocklets/template b/srcpkgs/i3blocks-blocklets/template
index 82d7380e856..b70dabb34c5 100644
--- a/srcpkgs/i3blocks-blocklets/template
+++ b/srcpkgs/i3blocks-blocklets/template
@@ -2,7 +2,6 @@
 pkgname=i3blocks-blocklets
 version=1.4.0
 revision=2
-archs=noarch
 wrksrc="i3blocks-contrib-${version}"
 depends="i3blocks>=1.5"
 short_desc="Flexible scheduler for i3bar"
diff --git a/srcpkgs/i3lock-fancy/template b/srcpkgs/i3lock-fancy/template
index 5bb3502b4ed..4b3e2ed4663 100644
--- a/srcpkgs/i3lock-fancy/template
+++ b/srcpkgs/i3lock-fancy/template
@@ -2,7 +2,6 @@
 pkgname=i3lock-fancy
 version=0.2
 revision=1
-archs=noarch
 depends="util-linux bash ImageMagick i3lock wmctrl gawk"
 short_desc="Fancy lockscreen using i3lock"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iana-etc/template b/srcpkgs/iana-etc/template
index cf2c419b23c..8717a999a08 100644
--- a/srcpkgs/iana-etc/template
+++ b/srcpkgs/iana-etc/template
@@ -3,7 +3,6 @@ pkgname=iana-etc
 version=20190504
 revision=1
 bootstrap=yes
-archs=noarch
 short_desc="Unix /etc/services and /etc/protocols files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
diff --git a/srcpkgs/ibus-avro/template b/srcpkgs/ibus-avro/template
index 78350f5f4df..5ae42e15aa6 100644
--- a/srcpkgs/ibus-avro/template
+++ b/srcpkgs/ibus-avro/template
@@ -2,7 +2,6 @@
 pkgname=ibus-avro
 version=1.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_target="installdeb"
 hostmakedepends="automake pkg-config"
diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 396448b86f4..6dfcb6e3de2 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -3,7 +3,6 @@ pkgname=icdiff
 version=1.9.5
 revision=2
 wrksrc="${pkgname}-release-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="icdiff.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-icdiff_package() {
-	archs=noarch
 	depends="python3 python3-setuptools"
 	pycompile_module="icdiff.py"
 	alternatives="
diff --git a/srcpkgs/ice-ssb/template b/srcpkgs/ice-ssb/template
index c06941257c1..c4c7625a15a 100644
--- a/srcpkgs/ice-ssb/template
+++ b/srcpkgs/ice-ssb/template
@@ -2,7 +2,6 @@
 pkgname=ice-ssb
 version=6.0.8
 revision=1
-archs=noarch
 wrksrc="ice-$version"
 depends="gtk+3 python3-BeautifulSoup4 python3-gobject python3-requests"
 short_desc="Site Specific Browsers (SSBs) manager"
diff --git a/srcpkgs/icecat/template b/srcpkgs/icecat/template
index 2cdfa5dc264..e3271443af8 100644
--- a/srcpkgs/icecat/template
+++ b/srcpkgs/icecat/template
@@ -208,7 +208,6 @@ do_install() {
 icecat-i18n-ach_package() {
 	short_desc+=" - Acholi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -217,7 +216,6 @@ icecat-i18n-ach_package() {
 icecat-i18n-af_package() {
 	short_desc+=" - Afrikaans language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -226,7 +224,6 @@ icecat-i18n-af_package() {
 icecat-i18n-an_package() {
 	short_desc+=" - Aragonese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -235,7 +232,6 @@ icecat-i18n-an_package() {
 icecat-i18n-ar_package() {
 	short_desc+=" - Arabic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -244,7 +240,6 @@ icecat-i18n-ar_package() {
 icecat-i18n-ast_package() {
 	short_desc+=" - Asturian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -253,7 +248,6 @@ icecat-i18n-ast_package() {
 icecat-i18n-az_package() {
 	short_desc+=" - Azerbaijani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -262,7 +256,6 @@ icecat-i18n-az_package() {
 icecat-i18n-be_package() {
 	short_desc+=" - Belarusian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -271,7 +264,6 @@ icecat-i18n-be_package() {
 icecat-i18n-bg_package() {
 	short_desc+=" - Bulgarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -280,7 +272,6 @@ icecat-i18n-bg_package() {
 icecat-i18n-bn_package() {
 	short_desc+=" - Bengali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -289,7 +280,6 @@ icecat-i18n-bn_package() {
 icecat-i18n-br_package() {
 	short_desc+=" - Breton language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -298,7 +288,6 @@ icecat-i18n-br_package() {
 icecat-i18n-bs_package() {
 	short_desc+=" - Bosnian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -307,7 +296,6 @@ icecat-i18n-bs_package() {
 icecat-i18n-ca_package() {
 	short_desc+=" - Catalan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -316,7 +304,6 @@ icecat-i18n-ca_package() {
 icecat-i18n-cak_package() {
 	short_desc+=" - Kaqchikel language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -325,7 +312,6 @@ icecat-i18n-cak_package() {
 icecat-i18n-cs_package() {
 	short_desc+=" - Czech language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -334,7 +320,6 @@ icecat-i18n-cs_package() {
 icecat-i18n-cy_package() {
 	short_desc+=" - Welsh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -343,7 +328,6 @@ icecat-i18n-cy_package() {
 icecat-i18n-da_package() {
 	short_desc+=" - Danish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -352,7 +336,6 @@ icecat-i18n-da_package() {
 icecat-i18n-de_package() {
 	short_desc+=" - German language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -361,7 +344,6 @@ icecat-i18n-de_package() {
 icecat-i18n-dsb_package() {
 	short_desc+=" - Lower Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -370,7 +352,6 @@ icecat-i18n-dsb_package() {
 icecat-i18n-el_package() {
 	short_desc+=" - Greek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -379,7 +360,6 @@ icecat-i18n-el_package() {
 icecat-i18n-en-CA_package() {
 	short_desc+=" - English (Canada) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -388,7 +368,6 @@ icecat-i18n-en-CA_package() {
 icecat-i18n-en-GB_package() {
 	short_desc+=" - English (British) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -397,7 +376,6 @@ icecat-i18n-en-GB_package() {
 icecat-i18n-en-US_package() {
 	short_desc+=" - English (US) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -406,7 +384,6 @@ icecat-i18n-en-US_package() {
 icecat-i18n-eo_package() {
 	short_desc+=" - Esperanto language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -415,7 +392,6 @@ icecat-i18n-eo_package() {
 icecat-i18n-es-AR_package() {
 	short_desc+=" - Spanish (Argentina) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -424,7 +400,6 @@ icecat-i18n-es-AR_package() {
 icecat-i18n-es-CL_package() {
 	short_desc+=" - Spanish (Chile) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -433,7 +408,6 @@ icecat-i18n-es-CL_package() {
 icecat-i18n-es-ES_package() {
 	short_desc+=" - Spanish (Spain) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -442,7 +416,6 @@ icecat-i18n-es-ES_package() {
 icecat-i18n-es-MX_package() {
 	short_desc+=" - Spanish (Mexico) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -451,7 +424,6 @@ icecat-i18n-es-MX_package() {
 icecat-i18n-et_package() {
 	short_desc+=" - Estonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -460,7 +432,6 @@ icecat-i18n-et_package() {
 icecat-i18n-eu_package() {
 	short_desc+=" - Basque language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -469,7 +440,6 @@ icecat-i18n-eu_package() {
 icecat-i18n-fa_package() {
 	short_desc+=" - Persian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -478,7 +448,6 @@ icecat-i18n-fa_package() {
 icecat-i18n-ff_package() {
 	short_desc+=" - Fulah language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -487,7 +456,6 @@ icecat-i18n-ff_package() {
 icecat-i18n-fi_package() {
 	short_desc+=" - Finnish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -496,7 +464,6 @@ icecat-i18n-fi_package() {
 icecat-i18n-fr_package() {
 	short_desc+=" - French language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -505,7 +472,6 @@ icecat-i18n-fr_package() {
 icecat-i18n-fy-NL_package() {
 	short_desc+=" - Frisian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -514,7 +480,6 @@ icecat-i18n-fy-NL_package() {
 icecat-i18n-ga-IE_package() {
 	short_desc+=" - Irish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -523,7 +488,6 @@ icecat-i18n-ga-IE_package() {
 icecat-i18n-gd_package() {
 	short_desc+=" - Gaelic (Scotland) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -532,7 +496,6 @@ icecat-i18n-gd_package() {
 icecat-i18n-gl_package() {
 	short_desc+=" - Galician language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -541,7 +504,6 @@ icecat-i18n-gl_package() {
 icecat-i18n-gn_package() {
 	short_desc+=" - Guarani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -550,7 +512,6 @@ icecat-i18n-gn_package() {
 icecat-i18n-gu-IN_package() {
 	short_desc+=" - Gujarati (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -559,7 +520,6 @@ icecat-i18n-gu-IN_package() {
 icecat-i18n-he_package() {
 	short_desc+=" - Hebrew language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -568,7 +528,6 @@ icecat-i18n-he_package() {
 icecat-i18n-hi-IN_package() {
 	short_desc+=" - Hindi (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -577,7 +536,6 @@ icecat-i18n-hi-IN_package() {
 icecat-i18n-hr_package() {
 	short_desc+=" - Croatian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -586,7 +544,6 @@ icecat-i18n-hr_package() {
 icecat-i18n-hsb_package() {
 	short_desc+=" - Upper Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -595,7 +552,6 @@ icecat-i18n-hsb_package() {
 icecat-i18n-hu_package() {
 	short_desc+=" - Hungarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -604,7 +560,6 @@ icecat-i18n-hu_package() {
 icecat-i18n-hy-AM_package() {
 	short_desc+=" - Armenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -613,7 +568,6 @@ icecat-i18n-hy-AM_package() {
 icecat-i18n-ia_package() {
 	short_desc+=" - Interlingua language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -622,7 +576,6 @@ icecat-i18n-ia_package() {
 icecat-i18n-id_package() {
 	short_desc+=" - Indonesian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -631,7 +584,6 @@ icecat-i18n-id_package() {
 icecat-i18n-is_package() {
 	short_desc+=" - Icelandic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -640,7 +592,6 @@ icecat-i18n-is_package() {
 icecat-i18n-it_package() {
 	short_desc+=" - Italian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -649,7 +600,6 @@ icecat-i18n-it_package() {
 icecat-i18n-ja_package() {
 	short_desc+=" - Japanese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -658,7 +608,6 @@ icecat-i18n-ja_package() {
 icecat-i18n-ka_package() {
 	short_desc+=" - Georgian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -667,7 +616,6 @@ icecat-i18n-ka_package() {
 icecat-i18n-kab_package() {
 	short_desc+=" - Kabyle language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -676,7 +624,6 @@ icecat-i18n-kab_package() {
 icecat-i18n-kk_package() {
 	short_desc+=" - Kazakh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -685,7 +632,6 @@ icecat-i18n-kk_package() {
 icecat-i18n-km_package() {
 	short_desc+=" - Khmer language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -694,7 +640,6 @@ icecat-i18n-km_package() {
 icecat-i18n-kn_package() {
 	short_desc+=" - Kannada language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -703,7 +648,6 @@ icecat-i18n-kn_package() {
 icecat-i18n-ko_package() {
 	short_desc+=" - Korean language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -712,7 +656,6 @@ icecat-i18n-ko_package() {
 icecat-i18n-lij_package() {
 	short_desc+=" - Ligurian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -721,7 +664,6 @@ icecat-i18n-lij_package() {
 icecat-i18n-lt_package() {
 	short_desc+=" - Lithuanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -730,7 +672,6 @@ icecat-i18n-lt_package() {
 icecat-i18n-lv_package() {
 	short_desc+=" - Latvian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -739,7 +680,6 @@ icecat-i18n-lv_package() {
 icecat-i18n-mk_package() {
 	short_desc+=" - Macedonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -748,7 +688,6 @@ icecat-i18n-mk_package() {
 icecat-i18n-mr_package() {
 	short_desc+=" - Marathi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -757,7 +696,6 @@ icecat-i18n-mr_package() {
 icecat-i18n-ms_package() {
 	short_desc+=" - Malay language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -766,7 +704,6 @@ icecat-i18n-ms_package() {
 icecat-i18n-my_package() {
 	short_desc+=" - Burmese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -775,7 +712,6 @@ icecat-i18n-my_package() {
 icecat-i18n-nb-NO_package() {
 	short_desc+=" - Norwegian (Bokmål) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -784,7 +720,6 @@ icecat-i18n-nb-NO_package() {
 icecat-i18n-ne-NP_package() {
 	short_desc+=" - Nepali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -793,7 +728,6 @@ icecat-i18n-ne-NP_package() {
 icecat-i18n-nl_package() {
 	short_desc+=" - Dutch language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -802,7 +736,6 @@ icecat-i18n-nl_package() {
 icecat-i18n-nn-NO_package() {
 	short_desc+=" - Norwegian (Nynorsk) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -811,7 +744,6 @@ icecat-i18n-nn-NO_package() {
 icecat-i18n-oc_package() {
 	short_desc+=" - Occitan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -820,7 +752,6 @@ icecat-i18n-oc_package() {
 icecat-i18n-pa-IN_package() {
 	short_desc+=" - Punjabi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -829,7 +760,6 @@ icecat-i18n-pa-IN_package() {
 icecat-i18n-pl_package() {
 	short_desc+=" - Polish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -838,7 +768,6 @@ icecat-i18n-pl_package() {
 icecat-i18n-pt-BR_package() {
 	short_desc+=" - Portuguese (Brazilian) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -847,7 +776,6 @@ icecat-i18n-pt-BR_package() {
 icecat-i18n-pt-PT_package() {
 	short_desc+=" - Portuguese (Portugal) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -856,7 +784,6 @@ icecat-i18n-pt-PT_package() {
 icecat-i18n-rm_package() {
 	short_desc+=" - Romansh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -865,7 +792,6 @@ icecat-i18n-rm_package() {
 icecat-i18n-ro_package() {
 	short_desc+=" - Romanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -874,7 +800,6 @@ icecat-i18n-ro_package() {
 icecat-i18n-ru_package() {
 	short_desc+=" - Russian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -883,7 +808,6 @@ icecat-i18n-ru_package() {
 icecat-i18n-si_package() {
 	short_desc+=" - Sinhala language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -892,7 +816,6 @@ icecat-i18n-si_package() {
 icecat-i18n-sk_package() {
 	short_desc+=" - Slovak language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -901,7 +824,6 @@ icecat-i18n-sk_package() {
 icecat-i18n-sl_package() {
 	short_desc+=" - Slovenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -910,7 +832,6 @@ icecat-i18n-sl_package() {
 icecat-i18n-son_package() {
 	short_desc+=" - Songhai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -919,7 +840,6 @@ icecat-i18n-son_package() {
 icecat-i18n-sq_package() {
 	short_desc+=" - Albanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -928,7 +848,6 @@ icecat-i18n-sq_package() {
 icecat-i18n-sr_package() {
 	short_desc+=" - Serbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -937,7 +856,6 @@ icecat-i18n-sr_package() {
 icecat-i18n-sv-SE_package() {
 	short_desc+=" - Swedish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -946,7 +864,6 @@ icecat-i18n-sv-SE_package() {
 icecat-i18n-ta_package() {
 	short_desc+=" - Tamil language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -955,7 +872,6 @@ icecat-i18n-ta_package() {
 icecat-i18n-te_package() {
 	short_desc+=" - Telugu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -964,7 +880,6 @@ icecat-i18n-te_package() {
 icecat-i18n-th_package() {
 	short_desc+=" - Thai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -973,7 +888,6 @@ icecat-i18n-th_package() {
 icecat-i18n-tr_package() {
 	short_desc+=" - Turkish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -982,7 +896,6 @@ icecat-i18n-tr_package() {
 icecat-i18n-uk_package() {
 	short_desc+=" - Ukrainian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -991,7 +904,6 @@ icecat-i18n-uk_package() {
 icecat-i18n-ur_package() {
 	short_desc+=" - Urdu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1000,7 +912,6 @@ icecat-i18n-ur_package() {
 icecat-i18n-uz_package() {
 	short_desc+=" - Uzbek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1009,7 +920,6 @@ icecat-i18n-uz_package() {
 icecat-i18n-vi_package() {
 	short_desc+=" - Vietnamese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1018,7 +928,6 @@ icecat-i18n-vi_package() {
 icecat-i18n-xh_package() {
 	short_desc+=" - Xhosa language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1027,7 +936,6 @@ icecat-i18n-xh_package() {
 icecat-i18n-zh-CN_package() {
 	short_desc+=" - Chinese (simplified) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1036,7 +944,6 @@ icecat-i18n-zh-CN_package() {
 icecat-i18n-zh-TW_package() {
 	short_desc+=" - Chinese (traditional) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
diff --git a/srcpkgs/icedtea-sound/template b/srcpkgs/icedtea-sound/template
index 4ad965c6806..ef2c242eedf 100644
--- a/srcpkgs/icedtea-sound/template
+++ b/srcpkgs/icedtea-sound/template
@@ -15,7 +15,6 @@ checksum=6ff852b82ae7db7a95981271037eb3a3d52c59581e3b27a638a7c6bc8eecb4a3
 
 icedtea-sound-doc_package() {
 	short_desc+=" - docs"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/icon-naming-utils/template b/srcpkgs/icon-naming-utils/template
index f069d604e37..e530a4c40c3 100644
--- a/srcpkgs/icon-naming-utils/template
+++ b/srcpkgs/icon-naming-utils/template
@@ -2,7 +2,6 @@
 pkgname=icon-naming-utils
 version=0.8.90
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Simple"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/imgp/template b/srcpkgs/imgp/template
index 872b3db406c..f7df8788ae5 100644
--- a/srcpkgs/imgp/template
+++ b/srcpkgs/imgp/template
@@ -2,7 +2,6 @@
 pkgname=imgp
 version=2.7
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-Pillow"
 short_desc="Multi-core batch image resizer and rotator"
diff --git a/srcpkgs/indic-otf/template b/srcpkgs/indic-otf/template
index 4f37e66f3ce..a4717a0a1ca 100644
--- a/srcpkgs/indic-otf/template
+++ b/srcpkgs/indic-otf/template
@@ -2,7 +2,6 @@
 pkgname=indic-otf
 version=0.2
 revision=3
-archs=noarch
 wrksrc=indic
 build_wrksrc=OpenType
 makedepends="font-util xbps-triggers"
diff --git a/srcpkgs/indicator-doom-cpu/template b/srcpkgs/indicator-doom-cpu/template
index 33158f90a16..7ebac683ada 100644
--- a/srcpkgs/indicator-doom-cpu/template
+++ b/srcpkgs/indicator-doom-cpu/template
@@ -2,7 +2,6 @@
 pkgname=indicator-doom-cpu
 version=1.0.1
 revision=1
-archs=noarch
 depends="python-gobject"
 short_desc="CPU load indicator showing the dying face from the video game DOOM"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/iniparser/template b/srcpkgs/iniparser/template
index 63eb336c7ea..5cef8a0a774 100644
--- a/srcpkgs/iniparser/template
+++ b/srcpkgs/iniparser/template
@@ -58,14 +58,12 @@ iniparser-devel_package() {
 }
 iniparser-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/iniparser
 	}
 }
 iniparser-example_package() {
 	short_desc+=" - example code"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/iniparser/example
 	}
diff --git a/srcpkgs/intltool/template b/srcpkgs/intltool/template
index 852e1e00ca2..00f0595c822 100644
--- a/srcpkgs/intltool/template
+++ b/srcpkgs/intltool/template
@@ -2,7 +2,6 @@
 pkgname=intltool
 version=0.51.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Parser"
 makedepends="perl-XML-Parser gettext"
diff --git a/srcpkgs/inxi/template b/srcpkgs/inxi/template
index 4126ef12968..df16132b791 100644
--- a/srcpkgs/inxi/template
+++ b/srcpkgs/inxi/template
@@ -2,7 +2,6 @@
 pkgname=inxi
 version=3.1.04
 revision=1
-archs=noarch
 wrksrc="inxi-${version}-1"
 depends="dmidecode file glxinfo pciutils perl usbutils xdpyinfo xprop xrandr
  procps-ng"
diff --git a/srcpkgs/io.elementary.stylesheet/template b/srcpkgs/io.elementary.stylesheet/template
index 6b40406712d..bf13584ffc7 100644
--- a/srcpkgs/io.elementary.stylesheet/template
+++ b/srcpkgs/io.elementary.stylesheet/template
@@ -2,7 +2,6 @@
 pkgname=io.elementary.stylesheet
 version=5.4.2
 revision=1
-archs=noarch
 wrksrc="stylesheet-${version}"
 build_style=meson
 short_desc="GTK Stylesheet for elementary OS"
diff --git a/srcpkgs/ioprof/template b/srcpkgs/ioprof/template
index 32b327b4677..26c0306eeb1 100644
--- a/srcpkgs/ioprof/template
+++ b/srcpkgs/ioprof/template
@@ -2,7 +2,6 @@
 pkgname=ioprof
 version=2.0.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="perl blktrace"
 short_desc="Linux I/O profiler"
diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 522bf32a7c2..1cde442db97 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -2,7 +2,6 @@
 pkgname=iotop
 version=0.6
 revision=6
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/ipafont-fonts-otf/template b/srcpkgs/ipafont-fonts-otf/template
index cd7a474d169..37223a3949d 100644
--- a/srcpkgs/ipafont-fonts-otf/template
+++ b/srcpkgs/ipafont-fonts-otf/template
@@ -3,7 +3,6 @@ pkgname=ipafont-fonts-otf
 version=003.03
 revision=3
 _pkgver=${version/./}
-archs=noarch
 wrksrc="IPAfont${_pkgver}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/ipcalc/template b/srcpkgs/ipcalc/template
index 6a35f924f0d..b9d7374e56a 100644
--- a/srcpkgs/ipcalc/template
+++ b/srcpkgs/ipcalc/template
@@ -2,7 +2,6 @@
 pkgname=ipcalc
 version=0.41
 revision=2
-archs=noarch
 depends="perl"
 short_desc="Calculator for IPv4 addresses"
 maintainer="allan <mail@may.mooo.com>"
diff --git a/srcpkgs/ipw2100-firmware/template b/srcpkgs/ipw2100-firmware/template
index 91d72d07724..ea086f6f90f 100644
--- a/srcpkgs/ipw2100-firmware/template
+++ b/srcpkgs/ipw2100-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2100-firmware
 _distname=ipw2100-fw
 version=1.3
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 create_wrksrc=yes
 short_desc="Firmware for the Intel PRO/Wireless 2100 wifi cards"
diff --git a/srcpkgs/ipw2200-firmware/template b/srcpkgs/ipw2200-firmware/template
index f6accfe3dbb..418eb943478 100644
--- a/srcpkgs/ipw2200-firmware/template
+++ b/srcpkgs/ipw2200-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2200-firmware
 _distname=ipw2200-fw
 version=3.1
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 short_desc="Firmware for the Intel PRO/Wireless 2200BG wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iscan-data/template b/srcpkgs/iscan-data/template
index 2953cb34344..bd5452da2e5 100644
--- a/srcpkgs/iscan-data/template
+++ b/srcpkgs/iscan-data/template
@@ -3,7 +3,6 @@ pkgname=iscan-data
 version=1.39.0
 revision=2
 _srcrev=1
-archs=noarch
 build_style=gnu-configure
 maintainer="Orphaned <orphan@voidlinux.org>"
 hostmakedepends="libxslt"
diff --git a/srcpkgs/iso-codes/template b/srcpkgs/iso-codes/template
index fc7a09d4007..af6c55a68ff 100644
--- a/srcpkgs/iso-codes/template
+++ b/srcpkgs/iso-codes/template
@@ -2,7 +2,6 @@
 pkgname=iso-codes
 version=4.5.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext python3"
 short_desc="List of country, language and currency names"
diff --git a/srcpkgs/itstool/template b/srcpkgs/itstool/template
index a3f124f23d7..9ac9bb0a603 100644
--- a/srcpkgs/itstool/template
+++ b/srcpkgs/itstool/template
@@ -2,7 +2,6 @@
 pkgname=itstool
 version=2.0.6
 revision=3
-archs=noarch
 build_style=gnu-configure
 configure_args="PYTHON=/usr/bin/python3"
 hostmakedepends="python3 libxml2-python3"
diff --git a/srcpkgs/jadx/template b/srcpkgs/jadx/template
index cde9ed2a8d4..fd52cd29d15 100644
--- a/srcpkgs/jadx/template
+++ b/srcpkgs/jadx/template
@@ -2,7 +2,6 @@
 pkgname=jadx
 version=1.1.0
 revision=1
-archs=noarch
 hostmakedepends="openjdk8 gradle"
 short_desc="Decompiler for Dalvik bytecode"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/java-commons-io/template b/srcpkgs/java-commons-io/template
index ffabff135f4..7a7601e085e 100644
--- a/srcpkgs/java-commons-io/template
+++ b/srcpkgs/java-commons-io/template
@@ -3,7 +3,6 @@ _origname=commons-io
 pkgname=java-commons-io
 version=2.6
 revision=1
-archs=noarch
 wrksrc="${_origname}-${version}-src"
 hostmakedepends="openjdk8 apache-maven which"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/javahelp2/template b/srcpkgs/javahelp2/template
index d3f7c69614d..afc69de8a88 100644
--- a/srcpkgs/javahelp2/template
+++ b/srcpkgs/javahelp2/template
@@ -4,7 +4,6 @@ version=2.0.05.20170719
 revision=1
 _gitver=3ca862d8626096770598a3a256886d205246f4a4
 wrksrc=javahelp-${_gitver}
-archs=noarch
 short_desc="Java based help system"
 hostmakedepends="openjdk8 apache-ant unzip which"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index b184ef09508..eb91cd9e2d9 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -2,7 +2,6 @@
 pkgname=jrnl
 version=1.9.8
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/kadu/template b/srcpkgs/kadu/template
index da8c8c086ff..1e4dc39ce37 100644
--- a/srcpkgs/kadu/template
+++ b/srcpkgs/kadu/template
@@ -55,7 +55,6 @@ pre_configure() {
 
 kadu-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons
 		vmove "usr/share/kadu/configuration/*.ui"
diff --git a/srcpkgs/kaitai-struct-compiler/template b/srcpkgs/kaitai-struct-compiler/template
index 011a403ca88..2901be0f58c 100644
--- a/srcpkgs/kaitai-struct-compiler/template
+++ b/srcpkgs/kaitai-struct-compiler/template
@@ -2,7 +2,6 @@
 pkgname=kaitai-struct-compiler
 version=0.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Compiler for the Kaitai declarative binary format parsing language"
diff --git a/srcpkgs/kapidox/template b/srcpkgs/kapidox/template
index 90b1e006254..6c74bf04220 100644
--- a/srcpkgs/kapidox/template
+++ b/srcpkgs/kapidox/template
@@ -2,7 +2,6 @@
 pkgname=kapidox
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 pycompile_module="kapidox"
 hostmakedepends="kcoreaddons extra-cmake-modules python"
diff --git a/srcpkgs/kbd/template b/srcpkgs/kbd/template
index 2680406aae9..72bc3eab653 100644
--- a/srcpkgs/kbd/template
+++ b/srcpkgs/kbd/template
@@ -53,7 +53,6 @@ post_install() {
 kbd-data_package() {
 	short_desc+=" - keymaps, console fonts and unicode maps"
 	replaces="kbd<2.0.1_1"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kbd/consolefonts
 		vmove usr/share/kbd/consoletrans
diff --git a/srcpkgs/key-mon/template b/srcpkgs/key-mon/template
index b483fd36c03..e42745bcbfb 100644
--- a/srcpkgs/key-mon/template
+++ b/srcpkgs/key-mon/template
@@ -2,7 +2,6 @@
 pkgname=key-mon
 version=1.17
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="keymon"
 hostmakedepends="python"
diff --git a/srcpkgs/keychain/template b/srcpkgs/keychain/template
index 617d205a587..20eaaf9f319 100644
--- a/srcpkgs/keychain/template
+++ b/srcpkgs/keychain/template
@@ -2,7 +2,6 @@
 pkgname=keychain
 version=2.8.5
 revision=1
-archs=noarch
 short_desc="Keychain manager for ssh-agent and gpg-agent"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="http://www.funtoo.org/wiki/Keychain"
diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index c5d3a165d1b..55bbcb77001 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -2,7 +2,6 @@
 pkgname=khal
 version=0.10.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-click python3-click-log python3-configobj
diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 70f246cfb40..b99a87ae42a 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -2,7 +2,6 @@
 pkgname=khard
 version=0.17.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-atomicwrites python3-configobj
diff --git a/srcpkgs/khmer-fonts-ttf/template b/srcpkgs/khmer-fonts-ttf/template
index e1791f740fe..749da440514 100644
--- a/srcpkgs/khmer-fonts-ttf/template
+++ b/srcpkgs/khmer-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=khmer-fonts-ttf
 version=5.0
 revision=1
-archs=noarch
 wrksrc="All_KhmerOS_${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/kicad-footprints/template b/srcpkgs/kicad-footprints/template
index 5beb079dea1..c3ba4a8375c 100644
--- a/srcpkgs/kicad-footprints/template
+++ b/srcpkgs/kicad-footprints/template
@@ -2,7 +2,6 @@
 pkgname=kicad-footprints
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad footprint libraries"
diff --git a/srcpkgs/kicad-i18n/template b/srcpkgs/kicad-i18n/template
index 8e9da8555cd..19b43b59a43 100644
--- a/srcpkgs/kicad-i18n/template
+++ b/srcpkgs/kicad-i18n/template
@@ -3,7 +3,6 @@ pkgname=kicad-i18n
 version=5.1.6
 revision=1
 _commit=5ad171ce5c8d90f4740517c2adecb310d8be51bd
-archs=noarch
 wrksrc="${pkgname}-${version}-${_commit}"
 build_style=cmake
 hostmakedepends="gettext"
diff --git a/srcpkgs/kicad-packages3D/template b/srcpkgs/kicad-packages3D/template
index cf606628cd2..d7e3636491c 100644
--- a/srcpkgs/kicad-packages3D/template
+++ b/srcpkgs/kicad-packages3D/template
@@ -2,7 +2,6 @@
 pkgname=kicad-packages3D
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad 3D model libraries"
diff --git a/srcpkgs/kicad-symbols/template b/srcpkgs/kicad-symbols/template
index 61e9021634b..b37b74386a4 100644
--- a/srcpkgs/kicad-symbols/template
+++ b/srcpkgs/kicad-symbols/template
@@ -2,7 +2,6 @@
 pkgname=kicad-symbols
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad symbol libraries"
diff --git a/srcpkgs/kicad-templates/template b/srcpkgs/kicad-templates/template
index 68412310182..5d4adb6a74f 100644
--- a/srcpkgs/kicad-templates/template
+++ b/srcpkgs/kicad-templates/template
@@ -2,7 +2,6 @@
 pkgname=kicad-templates
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad templates"
diff --git a/srcpkgs/kickassembler/template b/srcpkgs/kickassembler/template
index 938ec12394b..5b4bafa5fc9 100644
--- a/srcpkgs/kickassembler/template
+++ b/srcpkgs/kickassembler/template
@@ -2,7 +2,6 @@
 pkgname=kickassembler
 version=4.19
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="virtual?java-environment"
 hostmakedepends="unzip"
diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index 8c672f481b4..51608cf3e53 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -41,7 +41,6 @@ do_install() {
 
 kitty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/kobodeluxe/template b/srcpkgs/kobodeluxe/template
index 60539b09390..5a1ee26d3e4 100644
--- a/srcpkgs/kobodeluxe/template
+++ b/srcpkgs/kobodeluxe/template
@@ -29,7 +29,6 @@ post_install() {
 
 kobodeluxe-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kobo-deluxe
 	}
diff --git a/srcpkgs/kodi-binary-addons/template b/srcpkgs/kodi-binary-addons/template
index 50784a8adcb..f1eefbe8e23 100644
--- a/srcpkgs/kodi-binary-addons/template
+++ b/srcpkgs/kodi-binary-addons/template
@@ -2,7 +2,6 @@
 pkgname=kodi-binary-addons
 version=18.6
 revision=1
-archs=noarch
 build_style=meta
 depends="kodi-addon-pvr-zattoo kodi-addon-game-libretro
  kodi-addon-peripheral-joystick kodi-addon-inputstream-rtmp
diff --git a/srcpkgs/kpcli/template b/srcpkgs/kpcli/template
index 3201920ce88..073b3925444 100644
--- a/srcpkgs/kpcli/template
+++ b/srcpkgs/kpcli/template
@@ -2,7 +2,6 @@
 pkgname=kpcli
 version=3.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="perl perl-Crypt-Rijndael perl-Sort-Naturally perl-Term-ReadKey perl-Term-ShellUI perl-File-KeePass perl-Clone perl-Term-ReadLine-Gnu perl-XML-Parser"
 short_desc="KeePass Command Line Interface"
diff --git a/srcpkgs/kshdb/template b/srcpkgs/kshdb/template
index ee22e70d994..6653ee3de18 100644
--- a/srcpkgs/kshdb/template
+++ b/srcpkgs/kshdb/template
@@ -2,7 +2,6 @@
 pkgname=kshdb
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="automake ksh"
 depends="ksh python3"
diff --git a/srcpkgs/kupfer/template b/srcpkgs/kupfer/template
index 03e80e9fdc9..d351345376d 100644
--- a/srcpkgs/kupfer/template
+++ b/srcpkgs/kupfer/template
@@ -2,7 +2,6 @@
 pkgname=kupfer
 version=319
 revision=2
-archs=noarch
 build_style=waf3
 wrksrc="${pkgname}-v${version}"
 python_version=3
diff --git a/srcpkgs/laditools/template b/srcpkgs/laditools/template
index 88e45ee722c..50199e8646d 100644
--- a/srcpkgs/laditools/template
+++ b/srcpkgs/laditools/template
@@ -2,7 +2,6 @@
 pkgname=laditools
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="laditools"
 hostmakedepends="python-distutils-extra intltool librsvg-utils"
diff --git a/srcpkgs/ladspa-sdk/template b/srcpkgs/ladspa-sdk/template
index 792663a5c1f..9db8572efa5 100644
--- a/srcpkgs/ladspa-sdk/template
+++ b/srcpkgs/ladspa-sdk/template
@@ -2,7 +2,6 @@
 pkgname=ladspa-sdk
 version=1.15
 revision=2
-archs=noarch
 wrksrc="ladspa_sdk_${version}"
 makedepends="libsndfile-progs"
 short_desc="Linux Audio Developer's Simple Plugin API (LADSPA)"
@@ -24,7 +23,6 @@ do_install() {
 ladspa-sdk-doc_package() {
 	depends="ladspa-sdk"
 	short_desc+="- Documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc
 		cd ${wrksrc}/doc
diff --git a/srcpkgs/laptop-mode/template b/srcpkgs/laptop-mode/template
index 5f788f01135..09b790e9351 100644
--- a/srcpkgs/laptop-mode/template
+++ b/srcpkgs/laptop-mode/template
@@ -2,7 +2,6 @@
 pkgname=laptop-mode
 version=1.73.1
 revision=1
-archs=noarch
 wrksrc="${pkgname}-tools_${version}"
 short_desc="Laptop power saving package for Linux systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leiningen/template b/srcpkgs/leiningen/template
index d6ed85040cc..a9451ac81e7 100644
--- a/srcpkgs/leiningen/template
+++ b/srcpkgs/leiningen/template
@@ -2,7 +2,6 @@
 pkgname=leiningen
 version=2.9.3
 revision=1
-archs=noarch
 depends="bash virtual?java-runtime"
 short_desc="Automate Clojure projects without setting your hair on fire"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leocad/template b/srcpkgs/leocad/template
index 8cc39f9f535..6bcbaf9818d 100644
--- a/srcpkgs/leocad/template
+++ b/srcpkgs/leocad/template
@@ -19,7 +19,6 @@ checksum="b74557e00366f1d3ddc211f9e55c28dba39987d66e5e3106490ab5fb75d25bc0
 leocad-data_package() {
 	short_desc+=" - data files"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vinstall ../library.bin 644 usr/share/leocad/
 	}
diff --git a/srcpkgs/lesspipe/template b/srcpkgs/lesspipe/template
index 40ee9a36cf1..d922e937f7a 100644
--- a/srcpkgs/lesspipe/template
+++ b/srcpkgs/lesspipe/template
@@ -2,7 +2,6 @@
 pkgname=lesspipe
 version=1.84
 revision=1
-archs=noarch
 depends="less"
 short_desc="Input filter for the pager less"
 maintainer="Olga Ustuzhanina <me@laserbat.pw>"
diff --git a/srcpkgs/lfe/template b/srcpkgs/lfe/template
index 9dcca402dc5..9ca2fd95a2f 100644
--- a/srcpkgs/lfe/template
+++ b/srcpkgs/lfe/template
@@ -2,7 +2,6 @@
 pkgname=lfe
 version=1.3
 revision=1
-archs=noarch
 hostmakedepends="erlang"
 depends="erlang"
 short_desc="Lisp flavoured erlang"
diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 1e0e7cf29fa..2d6750b9451 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -2,7 +2,6 @@
 pkgname=lfm
 version=3.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/lftpfs/template b/srcpkgs/lftpfs/template
index f8b75902812..4a3b263c2ba 100644
--- a/srcpkgs/lftpfs/template
+++ b/srcpkgs/lftpfs/template
@@ -2,7 +2,6 @@
 pkgname=lftpfs
 version=0.4.3
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl-Fuse perl-IPC-Run lftp"
diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index fb01bd7fb78..db314976891 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -32,7 +32,6 @@ libbytesize-devel_package() {
 }
 
 libbytesize-python3_package() {
-	archs=noarch
 	depends="python3-six ${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Python3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/libcap-ng/template b/srcpkgs/libcap-ng/template
index d2bbea8cb94..4ec9317edd5 100644
--- a/srcpkgs/libcap-ng/template
+++ b/srcpkgs/libcap-ng/template
@@ -49,7 +49,6 @@ libcap-ng-python3_package() {
 }
 libcap-ng-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="libcap-ng-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/libchewing/template b/srcpkgs/libchewing/template
index 6518254b11e..7901a9e0f1a 100644
--- a/srcpkgs/libchewing/template
+++ b/srcpkgs/libchewing/template
@@ -27,7 +27,6 @@ libchewing-devel_package() {
 }
 
 libchewing-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/libchewing
diff --git a/srcpkgs/libclc-git/template b/srcpkgs/libclc-git/template
index 748ffe98fc8..e2263c4b0b4 100644
--- a/srcpkgs/libclc-git/template
+++ b/srcpkgs/libclc-git/template
@@ -15,7 +15,6 @@ license="BSD/MIT"
 homepage="http://libclc.llvm.org"
 provides="libclc-${version}_${revision}"
 replaces="libclc>=0"
-archs=noarch
 distfiles="https://github.com/llvm-mirror/libclc/archive/${_git_hash}.tar.gz>${pkgname}-${version}.tar.gz"
 checksum=d9cf73a5d1ab05995086e7a3a0fd6c06172ee59cdd2512c395caae99b9fce453
 
diff --git a/srcpkgs/libcppunit/template b/srcpkgs/libcppunit/template
index 238c6f57017..ca5760cc1ea 100644
--- a/srcpkgs/libcppunit/template
+++ b/srcpkgs/libcppunit/template
@@ -32,7 +32,6 @@ libcppunit-devel_package() {
 }
 
 libcppunit-examples_package() {
-	archs=noarch
 	replaces="cppunit-doc>=0"
 	depends="libcppunit-devel>=${version}_${revision}"
 	short_desc+=" - examples"
diff --git a/srcpkgs/libdwarf/template b/srcpkgs/libdwarf/template
index 5d5539c3ae3..dac373623f8 100644
--- a/srcpkgs/libdwarf/template
+++ b/srcpkgs/libdwarf/template
@@ -33,7 +33,6 @@ libdwarf-devel_package() {
 }
 
 libdwarf-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		for i in README NEWS libdwarf/*.pdf ; do
diff --git a/srcpkgs/libe-book/template b/srcpkgs/libe-book/template
index 89bf62399e3..b112e492171 100644
--- a/srcpkgs/libe-book/template
+++ b/srcpkgs/libe-book/template
@@ -30,7 +30,6 @@ libe-book-devel_package() {
 libe-book-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/liberation-fonts-ttf/template b/srcpkgs/liberation-fonts-ttf/template
index 47663b2b29d..ae6ab901471 100644
--- a/srcpkgs/liberation-fonts-ttf/template
+++ b/srcpkgs/liberation-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=liberation-fonts-ttf
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 build_style=gnu-makefile
 hostmakedepends="fontforge fonttools"
diff --git a/srcpkgs/libfreehand/template b/srcpkgs/libfreehand/template
index 08aae86bb0f..45c0bdcc5a5 100644
--- a/srcpkgs/libfreehand/template
+++ b/srcpkgs/libfreehand/template
@@ -31,7 +31,6 @@ libfreehand-devel_package() {
 libfreehand-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libgphoto2/template b/srcpkgs/libgphoto2/template
index 60573643e50..c0ea9d8c4b0 100644
--- a/srcpkgs/libgphoto2/template
+++ b/srcpkgs/libgphoto2/template
@@ -52,7 +52,6 @@ post_install() {
 
 libgphoto2-udev-rules_package() {
 	short_desc+=" - udev rules"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/udev/hwdb.d
 		vmove usr/lib/udev/rules.d
diff --git a/srcpkgs/libinput-gestures/template b/srcpkgs/libinput-gestures/template
index 872e8ad8588..2ee1d82e3e4 100644
--- a/srcpkgs/libinput-gestures/template
+++ b/srcpkgs/libinput-gestures/template
@@ -2,7 +2,6 @@
 pkgname=libinput-gestures
 version=2.50
 revision=1
-archs=noarch
 depends="python3 libinput xdotool wmctrl hicolor-icon-theme"
 short_desc="Action gestures on your touchpad using libinput"
 maintainer="Chinmay Pai <chinmaydpai@gmail.com>"
diff --git a/srcpkgs/libmwaw/template b/srcpkgs/libmwaw/template
index c81f91175d3..7ea5ce0051d 100644
--- a/srcpkgs/libmwaw/template
+++ b/srcpkgs/libmwaw/template
@@ -24,7 +24,6 @@ libmwaw-devel_package() {
 }
 
 libmwaw-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/libosmgpsmap/template b/srcpkgs/libosmgpsmap/template
index 4ab56904f2d..0690f592c42 100644
--- a/srcpkgs/libosmgpsmap/template
+++ b/srcpkgs/libosmgpsmap/template
@@ -19,7 +19,6 @@ build_options="gir"
 build_options_default="gir"
 
 libosmgpsmap-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation"
 	pkg_install() {
diff --git a/srcpkgs/libquvi-scripts/template b/srcpkgs/libquvi-scripts/template
index c2d247e52dd..551953eb763 100644
--- a/srcpkgs/libquvi-scripts/template
+++ b/srcpkgs/libquvi-scripts/template
@@ -2,7 +2,6 @@
 pkgname=libquvi-scripts
 version=0.4.21
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config lua53"
 makedepends="lua53"
diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 0eb5941e2ad..d46f4056f05 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -297,7 +297,6 @@ _add_lang() {
 	_languages="$_languages ${pkglang//_/-}"
 	eval "libreoffice-i18n-${1}_package() {
 		short_desc+=\"- ${2} language pack\"
-		archs=noarch
 		pkg_install() {
 			_split lang_${pkglang}
 		}
@@ -584,7 +583,6 @@ libreoffice-draw_package() {
 
 libreoffice-fonts_package() {
 	short_desc+=" - Fonts"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/lib/libreoffice/share
 		mv ${DESTDIR}/all/usr/lib/libreoffice/share/fonts \
diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 1aed9159ab9..052d243e477 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -39,7 +39,6 @@ libsearpc-codegen_package() {
 	short_desc+=" - code generator"
 	depends="python3"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vdoc AUTHORS
 		vdoc README.markdown
@@ -51,7 +50,6 @@ libsearpc-python3_package() {
 	short_desc+=" - Python3 bindings"
 	pycompile_module="pysearpc"
 	depends="python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
diff --git a/srcpkgs/libsoxr/template b/srcpkgs/libsoxr/template
index ae7c8c7e3f5..0ad80dfb5da 100644
--- a/srcpkgs/libsoxr/template
+++ b/srcpkgs/libsoxr/template
@@ -36,7 +36,6 @@ libsoxr-devel_package() {
 libsoxr-doc_package() {
 	short_desc+=" - documentation and examples"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libvpx5/template b/srcpkgs/libvpx5/template
index d6ce843134a..93d9a8866c6 100644
--- a/srcpkgs/libvpx5/template
+++ b/srcpkgs/libvpx5/template
@@ -58,7 +58,6 @@ libvpx5-devel_package() {
 }
 
 libvpx_package() {
-	archs=noarch
 	build_style=meta
 	depends="libvpx5-${version}_${revision}"
 	short_desc+=" (transitional package)"
diff --git a/srcpkgs/libwaylandpp/template b/srcpkgs/libwaylandpp/template
index 44f129f3f89..58a4c2568c9 100644
--- a/srcpkgs/libwaylandpp/template
+++ b/srcpkgs/libwaylandpp/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 libwaylandpp-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/lightdm-webkit2-greeter/template b/srcpkgs/lightdm-webkit2-greeter/template
index 1dd57b859cc..126238441e6 100644
--- a/srcpkgs/lightdm-webkit2-greeter/template
+++ b/srcpkgs/lightdm-webkit2-greeter/template
@@ -22,7 +22,6 @@ post_extract() {
 
 lightdm-webkit-greeter_package() {
 	short_desc+=" - (transitional dummy package)"
-	archs=noarch
 	depends="lightdm-webkit2-greeter>=${version}_${revision}"
 	pkg_install() {
 		vmkdir usr/bin
diff --git a/srcpkgs/lilypond-doc/template b/srcpkgs/lilypond-doc/template
index 1480cfe1d52..a8fe890cf45 100644
--- a/srcpkgs/lilypond-doc/template
+++ b/srcpkgs/lilypond-doc/template
@@ -2,7 +2,6 @@
 pkgname=lilypond-doc
 version=2.21.1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Documentation for the lilypond music engraving program"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/linux-firmware-dvb/template b/srcpkgs/linux-firmware-dvb/template
index 3109780e132..cf7df793297 100644
--- a/srcpkgs/linux-firmware-dvb/template
+++ b/srcpkgs/linux-firmware-dvb/template
@@ -7,7 +7,6 @@ short_desc="Linux TV firmware package"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
 license="GPL-2 Custom"
 homepage="https://linuxtv.org/"
-archs=noarch
 distfiles="
  https://github.com/OpenELEC/dvb-firmware/archive/${_gitrev}.tar.gz>${pkgname}-${version}.tar.gz
  https://linuxtv.org/downloads/firmware/dvb-firmwares.tar.bz2"
diff --git a/srcpkgs/linux-firmware/template b/srcpkgs/linux-firmware/template
index 9ee05164394..e6d48a6e08f 100644
--- a/srcpkgs/linux-firmware/template
+++ b/srcpkgs/linux-firmware/template
@@ -2,7 +2,6 @@
 pkgname=linux-firmware
 version=20200519
 revision=1
-archs=noarch
 depends="${pkgname}-amd-${version}_${revision} ${pkgname}-network-${version}_${revision}"
 short_desc="Binary firmware blobs for the Linux kernel"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -23,7 +22,6 @@ do_install() {
 
 linux-firmware-amd_package() {
 	short_desc+=" - AMD CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/amd*
 		vmove usr/lib/firmware/radeon
@@ -35,7 +33,6 @@ linux-firmware-amd_package() {
 
 linux-firmware-intel_package() {
 	short_desc+=" - Intel CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/i915
 		vmove usr/share/licenses/linux-firmware/LICENSE.i915
@@ -44,7 +41,6 @@ linux-firmware-intel_package() {
 
 linux-firmware-nvidia_package() {
 	short_desc+=" NVIDIA GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/nvidia
 		vmove usr/share/licenses/linux-firmware/LICENCE.nvidia*
@@ -53,7 +49,6 @@ linux-firmware-nvidia_package() {
 
 linux-firmware-network_package() {
 	short_desc+=" - network"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/3com
 		vmove usr/lib/firmware/RTL8192E
diff --git a/srcpkgs/lltag/template b/srcpkgs/lltag/template
index 58fadec2276..8a2e6ac8805 100644
--- a/srcpkgs/lltag/template
+++ b/srcpkgs/lltag/template
@@ -2,7 +2,6 @@
 pkgname=lltag
 version=0.14.6
 revision=2
-archs=noarch
 wrksrc="lltag-lltag-${version}"
 build_style=gnu-makefile
 hostmakedepends="perl"
diff --git a/srcpkgs/llvm10/template b/srcpkgs/llvm10/template
index 9298c68022d..e1ed800e206 100644
--- a/srcpkgs/llvm10/template
+++ b/srcpkgs/llvm10/template
@@ -189,7 +189,6 @@ do_install() {
 }
 
 clang-analyzer_package() {
-	archs=noarch
 	pycompile_dirs="usr/share/scan-view"
 	depends="clang-${version}_${revision} python3"
 	short_desc+=" - A source code analysis framework"
diff --git a/srcpkgs/llvm6.0/template b/srcpkgs/llvm6.0/template
index d620db6415a..b0e518c4028 100644
--- a/srcpkgs/llvm6.0/template
+++ b/srcpkgs/llvm6.0/template
@@ -2,7 +2,6 @@
 pkgname=llvm6.0
 version=6.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (6.0.x series) (removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/llvm7/template b/srcpkgs/llvm7/template
index b06f887c3b7..011d7419a4e 100644
--- a/srcpkgs/llvm7/template
+++ b/srcpkgs/llvm7/template
@@ -2,7 +2,6 @@
 pkgname=llvm7
 version=7.0.1
 revision=9
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm8/template b/srcpkgs/llvm8/template
index 7af4f95fb4e..4eb8e0e4806 100644
--- a/srcpkgs/llvm8/template
+++ b/srcpkgs/llvm8/template
@@ -2,7 +2,6 @@
 pkgname=llvm8
 version=8.0.1
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 951a64e1a87..025c8845257 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -2,7 +2,6 @@
 pkgname=llvm9
 version=9.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="q66 <daniel@octaforge.org>"
diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index ecc645fa92b..14ca3099be1 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -2,7 +2,6 @@
 pkgname=lollypop
 version=1.3.5
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="cmake git glib-devel gobject-introspection intltool itstool pkg-config"
 makedepends="gtk+3-devel libsoup-devel python3-gobject-devel python3-devel"
diff --git a/srcpkgs/lua54-MessagePack/template b/srcpkgs/lua54-MessagePack/template
index 6383677d8ca..d88a720a579 100644
--- a/srcpkgs/lua54-MessagePack/template
+++ b/srcpkgs/lua54-MessagePack/template
@@ -2,7 +2,6 @@
 pkgname=lua54-MessagePack
 version=0.5.2
 revision=2
-archs=noarch
 wrksrc="lua-MessagePack-${version}"
 depends="lua54"
 _desc="Pure Lua implementation of msgpack.org"
diff --git a/srcpkgs/lua54-stdlib-debug/template b/srcpkgs/lua54-stdlib-debug/template
index 1d862bc6726..73f13179fa7 100644
--- a/srcpkgs/lua54-stdlib-debug/template
+++ b/srcpkgs/lua54-stdlib-debug/template
@@ -3,7 +3,6 @@ pkgname=lua54-stdlib-debug
 version=1.0.1
 revision=3
 wrksrc=_debug-${version}
-archs=noarch
 depends="lua54"
 _desc="A debug hints management library for Lua"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/lua54-stdlib-normalize/template b/srcpkgs/lua54-stdlib-normalize/template
index 9a0d6071327..2fa1c7a75f6 100644
--- a/srcpkgs/lua54-stdlib-normalize/template
+++ b/srcpkgs/lua54-stdlib-normalize/template
@@ -2,7 +2,6 @@
 pkgname=lua54-stdlib-normalize
 version=2.0.3
 revision=3
-archs=noarch
 wrksrc=normalize-${version}
 depends="lua54 lua54-stdlib-debug"
 _desc="Collection of normalized Lua functions"
diff --git a/srcpkgs/lua54-vicious/template b/srcpkgs/lua54-vicious/template
index 9da7e6330c5..2a9b7f13f40 100644
--- a/srcpkgs/lua54-vicious/template
+++ b/srcpkgs/lua54-vicious/template
@@ -3,7 +3,6 @@ pkgname=lua54-vicious
 version=2.4.1
 revision=1
 wrksrc=vicious-${version}
-archs=noarch
 depends="lua54"
 _desc="Modular widget library for window managers"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/luarocks-lua53/template b/srcpkgs/luarocks-lua53/template
index 5c047f790c0..4480962a81a 100644
--- a/srcpkgs/luarocks-lua53/template
+++ b/srcpkgs/luarocks-lua53/template
@@ -2,7 +2,6 @@
 pkgname=luarocks-lua53
 version=3.3.1
 revision=3
-archs=noarch
 wrksrc=luarocks-${version}
 build_style=configure
 configure_args="
@@ -63,7 +62,6 @@ post_install() {
 }
 
 luarocks-lua54_package() {
-	archs=noarch
 	short_desc="${_desc} (5.4.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua54"
 	conf_files="/etc/luarocks/config-5.4.lua"
@@ -78,7 +76,6 @@ luarocks-lua54_package() {
 }
 
 luarocks-lua52_package() {
-	archs=noarch
 	short_desc="${_desc} (5.2.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua52"
 	conf_files="/etc/luarocks/config-5.2.lua"
@@ -93,7 +90,6 @@ luarocks-lua52_package() {
 }
 
 luarocks-lua51_package() {
-	archs=noarch
 	short_desc="${_desc} (5.1.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua51"
 	conf_files="/etc/luarocks/config-5.1.lua"
diff --git a/srcpkgs/lugaru/template b/srcpkgs/lugaru/template
index 618a3ab5894..2dd39570266 100644
--- a/srcpkgs/lugaru/template
+++ b/srcpkgs/lugaru/template
@@ -19,7 +19,6 @@ checksum=f3ea477caf78911c69939fbdc163f9f6517c7ef2267e716a0e050be1a166ef97
 
 lugaru-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	license="CC-BY-SA-4"
 	pkg_install() {
 		vmove usr/share/lugaru
diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 30fbd3ef8d0..28c3119fb47 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -2,7 +2,6 @@
 pkgname=lutris
 version=0.5.7.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext python3-setuptools python3-gobject gtk+3-devel"
 depends="python3-dbus python3-gobject python3-yaml python3-evdev python3-Pillow
diff --git a/srcpkgs/lxde-common/template b/srcpkgs/lxde-common/template
index 27e853db6e9..e6fef2f7f15 100644
--- a/srcpkgs/lxde-common/template
+++ b/srcpkgs/lxde-common/template
@@ -2,7 +2,6 @@
 pkgname=lxde-common
 version=0.99.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool"
 depends="lxsession gnome-themes-extra lxde-icon-theme"
diff --git a/srcpkgs/lxde-icon-theme/template b/srcpkgs/lxde-icon-theme/template
index 896f177f23f..90fb159959e 100644
--- a/srcpkgs/lxde-icon-theme/template
+++ b/srcpkgs/lxde-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=lxde-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 makedepends="gtk+-devel"
diff --git a/srcpkgs/lxdm-theme-vdojo/template b/srcpkgs/lxdm-theme-vdojo/template
index b41d9c94f6b..a706df6056f 100644
--- a/srcpkgs/lxdm-theme-vdojo/template
+++ b/srcpkgs/lxdm-theme-vdojo/template
@@ -2,7 +2,6 @@
 pkgname=lxdm-theme-vdojo
 version=1.0
 revision=1
-archs=noarch
 wrksrc="vdojo-$version"
 depends="lxdm"
 short_desc="LXDM theme for voidlinux"
diff --git a/srcpkgs/lxmenu-data/template b/srcpkgs/lxmenu-data/template
index 3bbb4b87f76..77d9af9b191 100644
--- a/srcpkgs/lxmenu-data/template
+++ b/srcpkgs/lxmenu-data/template
@@ -2,7 +2,6 @@
 pkgname=lxmenu-data
 version=0.1.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="LXDE freedesktop menu required files"
diff --git a/srcpkgs/lxqt-build-tools/template b/srcpkgs/lxqt-build-tools/template
index 335ff770e01..b0f7f26df9a 100644
--- a/srcpkgs/lxqt-build-tools/template
+++ b/srcpkgs/lxqt-build-tools/template
@@ -2,7 +2,6 @@
 pkgname=lxqt-build-tools
 version=0.7.0
 revision=1
-archs=noarch
 build_style=cmake
 hostmakedepends="qt5-host-tools qt5-qmake pkg-config"
 makedepends="qt5-devel"
diff --git a/srcpkgs/magic-wormhole/template b/srcpkgs/magic-wormhole/template
index b3a7bdf27f8..657778c7d83 100644
--- a/srcpkgs/magic-wormhole/template
+++ b/srcpkgs/magic-wormhole/template
@@ -2,7 +2,6 @@
 pkgname=magic-wormhole
 version=0.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-autobahn python3-cffi python3-click python3-humanize
diff --git a/srcpkgs/mailpile/template b/srcpkgs/mailpile/template
index 972c1da3106..e3010566a17 100644
--- a/srcpkgs/mailpile/template
+++ b/srcpkgs/mailpile/template
@@ -2,7 +2,6 @@
 pkgname=mailpile
 version=0.5.2
 revision=3
-archs=noarch
 wrksrc="Mailpile-${version}"
 build_style=python2-module
 pycompile_module="static mailpile"
diff --git a/srcpkgs/make-ca/template b/srcpkgs/make-ca/template
index 5c54e95cdc2..e308fa4f390 100644
--- a/srcpkgs/make-ca/template
+++ b/srcpkgs/make-ca/template
@@ -2,7 +2,6 @@
 pkgname=make-ca
 version=1.7
 revision=1
-archs=noarch
 wrksrc="make-ca-${version}"
 build_style=gnu-makefile
 make_install_args="SBINDIR=/usr/bin"
diff --git a/srcpkgs/makepasswd/template b/srcpkgs/makepasswd/template
index 12814d730d5..e997b1bd0f1 100644
--- a/srcpkgs/makepasswd/template
+++ b/srcpkgs/makepasswd/template
@@ -2,7 +2,6 @@
 pkgname=makepasswd
 version=1.10.9
 revision=2
-archs=noarch
 depends="perl-Crypt-OpenSSL-Random perl-Crypt-PasswdMD5"
 short_desc="Create and/or encrypt true-random-seeded password strings"
 maintainer="Kevin Berry <kevin@opensourcealchemist.com>"
diff --git a/srcpkgs/makeself/template b/srcpkgs/makeself/template
index 2fc0f26fbd5..aaf9bb75883 100644
--- a/srcpkgs/makeself/template
+++ b/srcpkgs/makeself/template
@@ -2,7 +2,6 @@
 pkgname=makeself
 version=2.4.2
 revision=1
-archs=noarch
 wrksrc="makeself-release-${version}"
 short_desc="Make self-extractable archives on Unix"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages-posix/template b/srcpkgs/man-pages-posix/template
index f16421308ae..25f42c2a692 100644
--- a/srcpkgs/man-pages-posix/template
+++ b/srcpkgs/man-pages-posix/template
@@ -4,7 +4,6 @@ _distver=2013
 _revver=a
 version="${_distver}${_revver}"
 revision=4
-archs=noarch
 wrksrc="${pkgname}-${_distver}-${_revver}"
 short_desc="Manual pages about POSIX systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages/template b/srcpkgs/man-pages/template
index c1e38ac3dba..507bbe9f7b3 100644
--- a/srcpkgs/man-pages/template
+++ b/srcpkgs/man-pages/template
@@ -2,7 +2,6 @@
 pkgname=man-pages
 version=5.08
 revision=1
-archs=noarch
 short_desc="Linux Documentation Project (LDP) manual pages"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-or-later"
@@ -50,7 +49,6 @@ do_install() {
 }
 
 man-pages-devel_package() {
-	archs=noarch
 	short_desc+=" - development pages"
 	pkg_install() {
 		vmove usr/share/man/man[2-3]
diff --git a/srcpkgs/mantablockscreen/template b/srcpkgs/mantablockscreen/template
index 79b21d96121..80172a917f9 100644
--- a/srcpkgs/mantablockscreen/template
+++ b/srcpkgs/mantablockscreen/template
@@ -2,7 +2,6 @@
 pkgname=mantablockscreen
 version=0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="ImageMagick xrandr i3lock-color compton bash"
 short_desc="Another i3lock-color wrapper that mantab"
diff --git a/srcpkgs/manuskript/template b/srcpkgs/manuskript/template
index c0c3269225c..55a7919c563 100644
--- a/srcpkgs/manuskript/template
+++ b/srcpkgs/manuskript/template
@@ -2,7 +2,6 @@
 pkgname=manuskript
 version=0.11.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}"
 hostmakedepends="python3-setuptools"
 depends="python3-enchant python3-lxml python3-Markdown python3-PyQt5 qt5-svg"
diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template
index 793f3aadf41..c81014b7394 100644
--- a/srcpkgs/mariadb/template
+++ b/srcpkgs/mariadb/template
@@ -134,7 +134,6 @@ mariadb-client_package() {
 	}
 }
 mytop_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} perl-Term-ReadKey perl-DBD-mysql"
 	short_desc="Top-like query monitor for MariaDB"
 	pkg_install() {
diff --git a/srcpkgs/marvin/template b/srcpkgs/marvin/template
index 65580f87728..3eac54a4c1a 100644
--- a/srcpkgs/marvin/template
+++ b/srcpkgs/marvin/template
@@ -2,7 +2,6 @@
 pkgname=marvin
 version=18.20.0
 revision=2
-archs=noarch
 maintainer="Brenton Horne <brentonhorne77@gmail.com>"
 homepage="https://chemaxon.com/products/marvin"
 license="marvin"
diff --git a/srcpkgs/mate-applets/template b/srcpkgs/mate-applets/template
index 8e9a40869f1..88196018390 100644
--- a/srcpkgs/mate-applets/template
+++ b/srcpkgs/mate-applets/template
@@ -25,7 +25,6 @@ case "$XBPS_TARGET_MACHINE" in
 esac
 
 mate-applets-data_package() {
-	archs=noarch
 	short_desc+=" - architecture independent data"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mate-backgrounds/template b/srcpkgs/mate-backgrounds/template
index 1c0b34f110c..31e6c7f094a 100644
--- a/srcpkgs/mate-backgrounds/template
+++ b/srcpkgs/mate-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=mate-backgrounds
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="Background images and data for MATE"
diff --git a/srcpkgs/mate-common/template b/srcpkgs/mate-common/template
index 17382ebcf1e..4850dbfe064 100644
--- a/srcpkgs/mate-common/template
+++ b/srcpkgs/mate-common/template
@@ -2,7 +2,6 @@
 pkgname=mate-common
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 depends="automake libtool intltool pkg-config gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mate-icon-theme-faenza/template b/srcpkgs/mate-icon-theme-faenza/template
index 8eaa696d780..80299aa0b61 100644
--- a/srcpkgs/mate-icon-theme-faenza/template
+++ b/srcpkgs/mate-icon-theme-faenza/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme-faenza
 version=1.20.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="mate-common pkg-config intltool itstool icon-naming-utils"
 depends="gtk-update-icon-cache hicolor-icon-theme"
diff --git a/srcpkgs/mate-icon-theme/template b/srcpkgs/mate-icon-theme/template
index f5dfc2932fe..dc3c584cc56 100644
--- a/srcpkgs/mate-icon-theme/template
+++ b/srcpkgs/mate-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="icon-naming-utils"
diff --git a/srcpkgs/mate-menu/template b/srcpkgs/mate-menu/template
index 3c59954a4bc..6191d683ce9 100644
--- a/srcpkgs/mate-menu/template
+++ b/srcpkgs/mate-menu/template
@@ -2,7 +2,6 @@
 pkgname=mate-menu
 version=20.04.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/lib/mate-menu"
 hostmakedepends="intltool python3-distutils-extra python3-setuptools"
diff --git a/srcpkgs/mate-themes/template b/srcpkgs/mate-themes/template
index 577574cedc0..c93250d5589 100644
--- a/srcpkgs/mate-themes/template
+++ b/srcpkgs/mate-themes/template
@@ -2,7 +2,6 @@
 pkgname=mate-themes
 version=3.22.21
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="gtk+-devel gtk+3-devel"
diff --git a/srcpkgs/mate-tweak/template b/srcpkgs/mate-tweak/template
index a7da4bd36d8..76179410d25 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -2,7 +2,6 @@
 pkgname=mate-tweak
 version=20.04.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"
 depends="mate-panel python3-gobject python3-psutil python3-setproctitle
diff --git a/srcpkgs/mate-user-guide/template b/srcpkgs/mate-user-guide/template
index 7c1363e3ae2..41c477d013c 100644
--- a/srcpkgs/mate-user-guide/template
+++ b/srcpkgs/mate-user-guide/template
@@ -2,7 +2,6 @@
 pkgname=mate-user-guide
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="MATE User Guide"
diff --git a/srcpkgs/mathjax/template b/srcpkgs/mathjax/template
index c1088202b51..b86cc52aa5a 100644
--- a/srcpkgs/mathjax/template
+++ b/srcpkgs/mathjax/template
@@ -2,7 +2,6 @@
 pkgname=mathjax
 version=2.7.6
 revision=1
-archs=noarch
 wrksrc="MathJax-${version}"
 depends="font-util"
 short_desc="JavaScript display engine for LaTeX, MathML and AsciiMath"
diff --git a/srcpkgs/maxima/template b/srcpkgs/maxima/template
index 90d2df8667d..8e8fde12aff 100644
--- a/srcpkgs/maxima/template
+++ b/srcpkgs/maxima/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 maxima-src_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision}"
 	short_desc+=" - source files"
 	pkg_install() {
@@ -41,7 +40,6 @@ maxima-src_package() {
 }
 
 maxima-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -50,7 +48,6 @@ maxima-emacs_package() {
 }
 
 xmaxima_package() {
-	archs=noarch
 	short_desc+=" - Tk interface"
 	depends="${sourcepkg}-${version}_${revision} tk"
 	pkg_install() {
diff --git a/srcpkgs/mb2md/template b/srcpkgs/mb2md/template
index 2fc5c5062d8..d226aac792e 100644
--- a/srcpkgs/mb2md/template
+++ b/srcpkgs/mb2md/template
@@ -2,7 +2,6 @@
 pkgname=mb2md
 version=3.20
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="perl-TimeDate"
 short_desc="Convert mbox mailboxes into maildir mailboxes"
diff --git a/srcpkgs/mcomix/template b/srcpkgs/mcomix/template
index 397fd241c49..15a556ad9f6 100644
--- a/srcpkgs/mcomix/template
+++ b/srcpkgs/mcomix/template
@@ -2,7 +2,6 @@
 pkgname=mcomix
 version=1.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="${pkgname}"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mdds/template b/srcpkgs/mdds/template
index 5530252ec3d..9e497d8f6a4 100644
--- a/srcpkgs/mdds/template
+++ b/srcpkgs/mdds/template
@@ -7,7 +7,6 @@
 pkgname=mdds
 version=1.5.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Collection of multi-dimensional data structures and indexing algorithms"
diff --git a/srcpkgs/mdevd/template b/srcpkgs/mdevd/template
index 4dc0d6e1f64..6dd20225c36 100644
--- a/srcpkgs/mdevd/template
+++ b/srcpkgs/mdevd/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 mdevd-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index acd79293246..72c81620747 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -36,7 +36,6 @@ libmed_package() {
 
 med-doc_package() {
 	short_desc+=" - Documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/med
 	}
diff --git a/srcpkgs/media-player-info/template b/srcpkgs/media-player-info/template
index 40f59736d3b..b4b60e3e1b2 100644
--- a/srcpkgs/media-player-info/template
+++ b/srcpkgs/media-player-info/template
@@ -2,7 +2,6 @@
 pkgname=media-player-info
 version=24
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="eudev-libudev-devel"
diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 486d3b7104b..35c53f8b2b9 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -2,7 +2,6 @@
 pkgname=meld
 version=3.20.2
 revision=1
-archs=noarch
 build_style=python3-module
 configure_args="--disable-schemas-compile"
 hostmakedepends="pkg-config intltool gnome-doc-utils python3 itstool gtk-update-icon-cache libxml2-python3"
diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index f16c5f64337..d67b6909924 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -2,7 +2,6 @@
 pkgname=menulibre
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/menumaker/template b/srcpkgs/menumaker/template
index 1e4e3f6fc6b..1b73dd13862 100644
--- a/srcpkgs/menumaker/template
+++ b/srcpkgs/menumaker/template
@@ -2,7 +2,6 @@
 pkgname=menumaker
 version=0.99.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/menumaker"
 hostmakedepends="python"
diff --git a/srcpkgs/menutray/template b/srcpkgs/menutray/template
index 6f06e21ff21..3c986f208de 100644
--- a/srcpkgs/menutray/template
+++ b/srcpkgs/menutray/template
@@ -2,7 +2,6 @@
 pkgname=menutray
 version=0.53
 revision=1
-archs=noarch
 depends="perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Application menu through a GTK+ tray status icon"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/meson-cmake-wrapper/template b/srcpkgs/meson-cmake-wrapper/template
index b13ca9229dc..e9058501f60 100644
--- a/srcpkgs/meson-cmake-wrapper/template
+++ b/srcpkgs/meson-cmake-wrapper/template
@@ -2,7 +2,6 @@
 pkgname=meson-cmake-wrapper
 version=0.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mcw"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 8f02d6ba333..a78967b7eae 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,6 @@
 pkgname=meson
 version=0.55.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-devel python3-setuptools"
 depends="ninja python3-setuptools"
diff --git a/srcpkgs/mime-types/template b/srcpkgs/mime-types/template
index 09b3fb9be3c..1f9c9830b9e 100644
--- a/srcpkgs/mime-types/template
+++ b/srcpkgs/mime-types/template
@@ -2,7 +2,6 @@
 pkgname=mime-types
 version=9
 revision=4
-archs=noarch
 conf_files="/etc/mime.types"
 short_desc="Provides a shared /etc/mime.types file"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index 66cd1e12539..82cfd4aa6da 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -2,7 +2,6 @@
 pkgname=mimeo
 version=2019.7
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"
 hostmakedepends="python3"
diff --git a/srcpkgs/mimms/template b/srcpkgs/mimms/template
index 3c1decf9178..db3c660d808 100644
--- a/srcpkgs/mimms/template
+++ b/srcpkgs/mimms/template
@@ -2,7 +2,6 @@
 pkgname=mimms
 version=3.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="libmimms"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/minigalaxy/template b/srcpkgs/minigalaxy/template
index 1d2daaea8d0..12f907fc150 100644
--- a/srcpkgs/minigalaxy/template
+++ b/srcpkgs/minigalaxy/template
@@ -2,7 +2,6 @@
 pkgname=minigalaxy
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="hicolor-icon-theme webkit2gtk python3-gobject python3-requests"
diff --git a/srcpkgs/miro-video-converter/template b/srcpkgs/miro-video-converter/template
index c9d0777aea6..00d273e6bdb 100644
--- a/srcpkgs/miro-video-converter/template
+++ b/srcpkgs/miro-video-converter/template
@@ -3,7 +3,6 @@ pkgname=miro-video-converter
 version=3.0.2
 revision=2
 wrksrc=mirovideoconverter3-${version}
-archs=noarch
 build_style=python2-module
 pycompile_module="mvc"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mkchromecast/template b/srcpkgs/mkchromecast/template
index e5d9626f9dd..fd977f906a3 100644
--- a/srcpkgs/mkchromecast/template
+++ b/srcpkgs/mkchromecast/template
@@ -2,7 +2,6 @@
 pkgname=mkchromecast
 version=0.3.8.1
 revision=2
-archs=noarch
 pycompile_dirs="/usr/share/mkchromecast/mkchromecast"
 depends="python3-Flask python3-netifaces python3-setuptools python3-requests
  python3-mutagen python3-psutil python3-PyQt5 python3-SoCo python3-chromecast
diff --git a/srcpkgs/mkfontscale/template b/srcpkgs/mkfontscale/template
index dafbb915ca8..a1405b8123c 100644
--- a/srcpkgs/mkfontscale/template
+++ b/srcpkgs/mkfontscale/template
@@ -18,7 +18,6 @@ post_install() {
 }
 
 mkfontdir_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}-${version}_${revision}"
 }
diff --git a/srcpkgs/mkinitcpio-encryptssh/template b/srcpkgs/mkinitcpio-encryptssh/template
index 7da6d9e243b..9764febbfeb 100644
--- a/srcpkgs/mkinitcpio-encryptssh/template
+++ b/srcpkgs/mkinitcpio-encryptssh/template
@@ -3,7 +3,6 @@ pkgname=mkinitcpio-encryptssh
 version=0.16
 revision=2
 _version_suffix=1
-archs=noarch
 wrksrc="dropbear_initrd_encrypt-${version}-${_version_suffix}"
 depends="mkinitcpio cryptsetup dropbear mkinitcpio-nfs-utils psmisc iproute2"
 short_desc="Allows for an encrypted root device to be unlocked remotely over SSH"
diff --git a/srcpkgs/mkinitcpio/template b/srcpkgs/mkinitcpio/template
index a0f44360db4..89a6deab1df 100644
--- a/srcpkgs/mkinitcpio/template
+++ b/srcpkgs/mkinitcpio/template
@@ -2,7 +2,6 @@
 pkgname=mkinitcpio
 version=27
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="busybox-static bsdtar bash"
 short_desc="Next generation of initramfs creation"
@@ -30,7 +29,6 @@ post_install() {
 mkinitcpio-udev_package() {
 	depends="${sourcepkg}>=${version}_${revision} eudev"
 	short_desc+=" - udev support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/udev_hook 644 usr/lib/initcpio/hooks udev
 		vinstall ${FILESDIR}/udev_install 644 usr/lib/initcpio/install udev
@@ -40,7 +38,6 @@ mkinitcpio-udev_package() {
 mkinitcpio-lvm2_package() {
 	depends="${sourcepkg}>=${version}_${revision} lvm2 thin-provisioning-tools"
 	short_desc+=" - lvm2 support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/lvm2_hook 644 usr/lib/initcpio/hooks lvm2
 		vinstall ${FILESDIR}/lvm2_install 644 usr/lib/initcpio/install lvm2
@@ -54,7 +51,6 @@ mkinitcpio-encrypt_package() {
 	depends="${sourcepkg}>=${version}_${revision}
 		${sourcepkg}-lvm2>=${version}_${revision} cryptsetup"
 	short_desc+=" - encrypt support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/encrypt_hook 644 usr/lib/initcpio/hooks encrypt
 		vinstall ${FILESDIR}/encrypt_install 644 usr/lib/initcpio/install encrypt
@@ -64,7 +60,6 @@ mkinitcpio-encrypt_package() {
 mkinitcpio-mdadm_package() {
 	depends="${sourcepkg}>=${version}_${revision} mdadm"
 	short_desc+=" - mdadm support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/mdadm_hook 644 usr/lib/initcpio/hooks mdadm
 		vinstall ${FILESDIR}/mdadm_install 644 usr/lib/initcpio/install mdadm
@@ -75,7 +70,6 @@ mkinitcpio-mdadm_package() {
 mkinitcpio-xbps_package() {
 	depends="${sourcepkg}>=${version}_${revision} xbps"
 	short_desc+=" - xbps support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/xbps_install 644 usr/lib/initcpio/install xbps
 	}
diff --git a/srcpkgs/mlt/template b/srcpkgs/mlt/template
index 1579a5b21dd..1798e9e7326 100644
--- a/srcpkgs/mlt/template
+++ b/srcpkgs/mlt/template
@@ -57,7 +57,6 @@ post_install() {
 
 mlt-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mlt
 	}
@@ -65,7 +64,6 @@ mlt-data_package() {
 
 mlt-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
@@ -94,7 +92,6 @@ mlt-python3_package() {
 
 mlt-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="mlt-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/mm-common/template b/srcpkgs/mm-common/template
index da83e052bd6..5398a1b143e 100644
--- a/srcpkgs/mm-common/template
+++ b/srcpkgs/mm-common/template
@@ -2,7 +2,6 @@
 pkgname=mm-common
 version=1.0.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool itstool"
 depends="gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mobile-broadband-provider-info/template b/srcpkgs/mobile-broadband-provider-info/template
index b51be988591..d4986e56405 100644
--- a/srcpkgs/mobile-broadband-provider-info/template
+++ b/srcpkgs/mobile-broadband-provider-info/template
@@ -2,7 +2,6 @@
 pkgname=mobile-broadband-provider-info
 version=20190618
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libxslt"
 checkdepends="libxml2"
diff --git a/srcpkgs/mog/template b/srcpkgs/mog/template
index 51f76b94dc4..41a9230f6e1 100644
--- a/srcpkgs/mog/template
+++ b/srcpkgs/mog/template
@@ -29,7 +29,6 @@ pre_build() {
 
 mog-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mog/graphics
 		vmove usr/share/mog/sound
diff --git a/srcpkgs/mongoose/template b/srcpkgs/mongoose/template
index 587b1ff34eb..6de2663d477 100644
--- a/srcpkgs/mongoose/template
+++ b/srcpkgs/mongoose/template
@@ -22,7 +22,6 @@ mongoose-devel_package() {
 }
 
 mongoose-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mons/template b/srcpkgs/mons/template
index d326cc456c5..4353a22fecb 100644
--- a/srcpkgs/mons/template
+++ b/srcpkgs/mons/template
@@ -3,7 +3,6 @@ pkgname=mons
 version=0.8.2
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="libXrandr"
 hostmakedepends="help2man"
 short_desc="Quickly manage 2-monitors display using xrandr"
diff --git a/srcpkgs/mopidy-local/template b/srcpkgs/mopidy-local/template
index 53f42032019..9cb909cbd8e 100644
--- a/srcpkgs/mopidy-local/template
+++ b/srcpkgs/mopidy-local/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-local
 version=3.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="mopidy python3-pykka python3-setuptools"
diff --git a/srcpkgs/mopidy-mpd/template b/srcpkgs/mopidy-mpd/template
index db1642166fd..5cd84e87ba2 100644
--- a/srcpkgs/mopidy-mpd/template
+++ b/srcpkgs/mopidy-mpd/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-mpd
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="Mopidy-MPD-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mopidy/template b/srcpkgs/mopidy/template
index c3497f3b88d..db3eca17752 100644
--- a/srcpkgs/mopidy/template
+++ b/srcpkgs/mopidy/template
@@ -2,7 +2,6 @@
 pkgname=mopidy
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="Mopidy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme python3-pykka"
diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 22bf450556e..d1d4f4b02c1 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -2,7 +2,6 @@
 pkgname=mozo
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="glib-devel mate-menus-devel python3-gobject-devel"
diff --git a/srcpkgs/mpd-sima/template b/srcpkgs/mpd-sima/template
index 831fec709b7..0b8e1079760 100644
--- a/srcpkgs/mpd-sima/template
+++ b/srcpkgs/mpd-sima/template
@@ -2,7 +2,6 @@
 pkgname=mpd-sima
 version=0.15.1
 revision=2
-archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module
 pycompile_module="sima"
diff --git a/srcpkgs/mps-youtube/template b/srcpkgs/mps-youtube/template
index 2141b3e627d..1ce565e4bc5 100644
--- a/srcpkgs/mps-youtube/template
+++ b/srcpkgs/mps-youtube/template
@@ -2,7 +2,6 @@
 pkgname=mps-youtube
 version=0.2.8
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/msbuild-bin/template b/srcpkgs/msbuild-bin/template
index 58e9bd501b0..ac05eb692b4 100644
--- a/srcpkgs/msbuild-bin/template
+++ b/srcpkgs/msbuild-bin/template
@@ -3,7 +3,6 @@ _xamarin_rel="xamarinxplat.2020.01.10.05.36-0xamarin1+ubuntu1804b1"
 pkgname=msbuild-bin
 version=16.5
 revision=2
-archs=noarch
 build_style=fetch
 depends="mono"
 short_desc="Xamarin/Mono fork of the Microsoft Build system"
diff --git a/srcpkgs/msttcorefonts/template b/srcpkgs/msttcorefonts/template
index 938e03315c1..a253ba88b94 100644
--- a/srcpkgs/msttcorefonts/template
+++ b/srcpkgs/msttcorefonts/template
@@ -45,7 +45,6 @@ restricted=yes
 repository=nonfree
 
 # They're just fonts...
-archs=noarch
 
 # Tell XBPS that these are fonts
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/mtm/template b/srcpkgs/mtm/template
index ed69349285b..81ac285cd77 100644
--- a/srcpkgs/mtm/template
+++ b/srcpkgs/mtm/template
@@ -24,7 +24,6 @@ do_install() {
 
 mtm-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/mu/template b/srcpkgs/mu/template
index c31ee5b5900..2ee0ba83dd9 100644
--- a/srcpkgs/mu/template
+++ b/srcpkgs/mu/template
@@ -26,7 +26,6 @@ pre_configure() {
 
 if [ ! "$CROSS_BUILD" ]; then
 	mu4e_package() {
-		archs=noarch
 		short_desc+=" - Emacs frontend"
 		depends="${sourcepkg}-${version}_${revision} emacs"
 		pkg_install() {
diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index 1e695654a86..3a0c2120a6d 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -2,7 +2,6 @@
 pkgname=mugshot
 version=0.4.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"
 depends="accountsservice gtk+3 python3-dbus python3-gobject python3-pexpect"
diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index c451109bd69..5ec9968ad90 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -2,7 +2,6 @@
 pkgname=multibootusb
 version=9.2.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="scripts"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index 957ed3ed818..7f75588deec 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -2,7 +2,6 @@
 pkgname=mutagen
 version=1.43.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mutagen"
 hostmakedepends="python-devel python-setuptools python3-devel
@@ -39,7 +38,6 @@ python3-mutagen_package() {
 	 mutagen:moggsplit:/usr/bin/moggsplit3
 	 mutagen:mutagen-inspect:/usr/bin/mutagen-inspect3
 	 mutagen:mutagen-pony:/usr/bin/mutagen-pony3"
-	archs=noarch
 	depends="python3"
 	pycompile_module="mutagen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index c46fe9b101e..3f3a3ab0a7c 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -2,7 +2,6 @@
 pkgname=mymcplus
 version=3.0.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="wxPython4 python3-PyOpenGL"
diff --git a/srcpkgs/mypaint-brushes/template b/srcpkgs/mypaint-brushes/template
index 5226d6f18d6..045d7d6a0dc 100644
--- a/srcpkgs/mypaint-brushes/template
+++ b/srcpkgs/mypaint-brushes/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes
 version=2.0.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Brushes used by MyPaint and other software using libmypaint"
diff --git a/srcpkgs/mypaint-brushes1/template b/srcpkgs/mypaint-brushes1/template
index 8622bb46bb8..fe9ad775afd 100644
--- a/srcpkgs/mypaint-brushes1/template
+++ b/srcpkgs/mypaint-brushes1/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes1
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="mypaint-brushes-${version}"
 build_style=gnu-configure
 hostmakedepends="automake"
diff --git a/srcpkgs/myrepos/template b/srcpkgs/myrepos/template
index 2a67216feb7..fb282542f6d 100644
--- a/srcpkgs/myrepos/template
+++ b/srcpkgs/myrepos/template
@@ -2,7 +2,6 @@
 pkgname=myrepos
 version=1.20180726
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="git mercurial perl"
diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 0eb5bc75d27..710d7c861ba 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -2,7 +2,6 @@
 pkgname=nagstamon
 version=3.2.1
 revision=2
-archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
 pycompile_module="Nagstamon"
diff --git a/srcpkgs/nautilus-python/template b/srcpkgs/nautilus-python/template
index 7a32e9e6617..414848a4e8d 100644
--- a/srcpkgs/nautilus-python/template
+++ b/srcpkgs/nautilus-python/template
@@ -2,7 +2,6 @@
 pkgname=nautilus-python
 version=1.2.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-gtk-doc PYTHON=python3"
 hostmakedepends="automake libtool pkg-config which"
diff --git a/srcpkgs/ncurses/template b/srcpkgs/ncurses/template
index d1bb2ae3aa8..bcc9515dfec 100644
--- a/srcpkgs/ncurses/template
+++ b/srcpkgs/ncurses/template
@@ -131,7 +131,6 @@ ncurses-devel_package() {
 }
 ncurses-base_package() {
 	short_desc+=" - base terminfo files"
-	archs=noarch
 	pkg_install() {
 		cat ${FILESDIR}/base-files | while read line; do
 			vmove ${line}
@@ -141,7 +140,6 @@ ncurses-base_package() {
 ncurses-term_package() {
 	depends="ncurses-base-${version}_${revision}"
 	short_desc+=" - full terminal descriptions"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tabset
 		vmove usr/share/terminfo
diff --git a/srcpkgs/neofetch/template b/srcpkgs/neofetch/template
index 60862481a28..99a5b6fa463 100644
--- a/srcpkgs/neofetch/template
+++ b/srcpkgs/neofetch/template
@@ -2,7 +2,6 @@
 pkgname=neofetch
 version=7.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 short_desc="Simple system information script"
diff --git a/srcpkgs/neovim-remote/template b/srcpkgs/neovim-remote/template
index c826750a004..8b84712d21f 100644
--- a/srcpkgs/neovim-remote/template
+++ b/srcpkgs/neovim-remote/template
@@ -2,7 +2,6 @@
 pkgname=neovim-remote
 version=2.4.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-neovim python3-psutil"
diff --git a/srcpkgs/nerd-fonts/template b/srcpkgs/nerd-fonts/template
index a2f2084738b..16d4b469627 100644
--- a/srcpkgs/nerd-fonts/template
+++ b/srcpkgs/nerd-fonts/template
@@ -2,7 +2,6 @@
 pkgname=nerd-fonts
 version=2.1.0
 revision=2
-archs=noarch
 depends="font-util xbps-triggers nerd-fonts-ttf nerd-fonts-otf"
 short_desc="Iconic font aggregator, collection and patcher"
 maintainer="cinerea0 <cinerea0@protonmail.com>"
@@ -32,7 +31,6 @@ do_install() {
 }
 
 nerd-fonts-otf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - otf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/otf"
 	depends="font-util xbps-triggers"
@@ -42,7 +40,6 @@ nerd-fonts-otf_package() {
 }
 
 nerd-fonts-ttf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - ttf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/ttf"
 	depends="font-util xbps-triggers"
diff --git a/srcpkgs/netbsd-wtf/template b/srcpkgs/netbsd-wtf/template
index 87708e08847..878f674a0af 100644
--- a/srcpkgs/netbsd-wtf/template
+++ b/srcpkgs/netbsd-wtf/template
@@ -3,7 +3,6 @@ pkgname=netbsd-wtf
 version=20180621
 revision=2
 _commit=b1e5be48e340146f63b174cc14fef892a783168b
-archs=noarch
 build_style=gnu-makefile
 short_desc="The NetBSD's wtf(6) utility"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/netdata/template b/srcpkgs/netdata/template
index 205d7985614..8f1f915b8e7 100644
--- a/srcpkgs/netdata/template
+++ b/srcpkgs/netdata/template
@@ -53,7 +53,6 @@ post_install() {
 netdata-plugins-nodejs_package() {
 	short_desc+=" - NodeJS Plugins"
 	depends="${sourcepkg}>=${version}_${revision} virtual?nodejs-runtime"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/node.d.plugin
 		vmove usr/libexec/netdata/node.d
@@ -63,7 +62,6 @@ netdata-plugins-nodejs_package() {
 netdata-plugins-python_package() {
 	short_desc+=" - Python Plugins"
 	depends="${sourcepkg}>=${version}_${revision} python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/python.d.plugin
 		vmove usr/libexec/netdata/python.d
diff --git a/srcpkgs/netsurf-buildsystem/template b/srcpkgs/netsurf-buildsystem/template
index b65615497e2..1a8f7dd25bc 100644
--- a/srcpkgs/netsurf-buildsystem/template
+++ b/srcpkgs/netsurf-buildsystem/template
@@ -2,7 +2,6 @@
 pkgname=netsurf-buildsystem
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#netsurf-}-${version}"
 short_desc="Netsurf buildsystem"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/nicotine+/template b/srcpkgs/nicotine+/template
index 6f743890f83..ad57c8a98b0 100644
--- a/srcpkgs/nicotine+/template
+++ b/srcpkgs/nicotine+/template
@@ -2,7 +2,6 @@
 pkgname=nicotine+
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="nicotine-plus-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/nmap/template b/srcpkgs/nmap/template
index 8f036af7fc4..c868f1fd8ac 100644
--- a/srcpkgs/nmap/template
+++ b/srcpkgs/nmap/template
@@ -36,7 +36,6 @@ post_install() {
 }
 
 zenmap_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} pygtk"
 	short_desc+=" - GUI Frontend"
 	pkg_install() {
diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index d9bba6a03b8..8e0fb2a7300 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -91,7 +91,6 @@ libnotmuch-devel_package() {
 }
 
 notmuch-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -104,7 +103,6 @@ notmuch-emacs_package() {
 }
 
 notmuch-mutt_package() {
-	archs=noarch
 	short_desc+=" - Mutt interface"
 	depends="${sourcepkg}-${version}_${revision} perl-Mail-Box perl-MailTools
 	 perl-String-ShellQuote perl-Term-ReadLine-Gnu perl-File-Which"
@@ -115,7 +113,6 @@ notmuch-mutt_package() {
 }
 
 notmuch-python3_package() {
-	archs=noarch
 	depends="libnotmuch-${version}_${revision}"
 	short_desc+=" - Python 3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/noto-fonts-cjk/template b/srcpkgs/noto-fonts-cjk/template
index 8f35b2e9307..1de8196f2a8 100644
--- a/srcpkgs/noto-fonts-cjk/template
+++ b/srcpkgs/noto-fonts-cjk/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-cjk
 version=20190416
 revision=1
-archs=noarch
 _githash=be6c059ac1587e556e2412b27f5155c8eb3ddbe6
 wrksrc="noto-cjk-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-emoji/template b/srcpkgs/noto-fonts-emoji/template
index 5c467f27551..ee804e84650 100644
--- a/srcpkgs/noto-fonts-emoji/template
+++ b/srcpkgs/noto-fonts-emoji/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-emoji
 version=20200722
 revision=1
-archs=noarch
 _githash=d5e261484286d33a1fe8a02676f5907ecc02106f
 wrksrc="noto-emoji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-ttf/template b/srcpkgs/noto-fonts-ttf/template
index 59c5f03f8e6..21f2064f3aa 100644
--- a/srcpkgs/noto-fonts-ttf/template
+++ b/srcpkgs/noto-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-ttf
 version=20190926
 revision=1
-archs=noarch
 _githash=0fa1dfabd6e3746bb7463399e2813f60d3f1b256
 wrksrc="noto-fonts-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/novaboot/template b/srcpkgs/novaboot/template
index f93c1ebe23b..f5f539b55dc 100644
--- a/srcpkgs/novaboot/template
+++ b/srcpkgs/novaboot/template
@@ -2,7 +2,6 @@
 pkgname=novaboot
 version=20191023
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 makedepends="perl"
diff --git a/srcpkgs/nsss/template b/srcpkgs/nsss/template
index 947efc1a496..fafa035d570 100644
--- a/srcpkgs/nsss/template
+++ b/srcpkgs/nsss/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 nsss-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/ntp/template b/srcpkgs/ntp/template
index c1cd814ea9d..e89fd2f8ae1 100644
--- a/srcpkgs/ntp/template
+++ b/srcpkgs/ntp/template
@@ -42,7 +42,6 @@ post_install() {
 
 ntp-perl_package() {
 	depends="ntp>=$version perl"
-	archs=noarch
 	short_desc+=" - perl scripts"
 	pkg_install() {
 		vmove usr/bin/ntp-wait
diff --git a/srcpkgs/num-utils/template b/srcpkgs/num-utils/template
index d7b542fa7af..ed38c538be1 100644
--- a/srcpkgs/num-utils/template
+++ b/srcpkgs/num-utils/template
@@ -10,7 +10,6 @@ license="GPL-2"
 homepage="http://suso.suso.org/xulu/Num-utils"
 distfiles="http://suso.suso.org/programs/${pkgname}/downloads/${pkgname}-${version}.tar.gz"
 checksum=03592760fc7844492163b14ddc9bb4e4d6526e17b468b5317b4a702ea7f6c64e
-archs=noarch
 
 post_extract() {
 	sed -i 's/\$new_number\^\$1/$new_number**$1/g' numprocess
diff --git a/srcpkgs/numix-themes/template b/srcpkgs/numix-themes/template
index f993b7949a4..78b431f7072 100644
--- a/srcpkgs/numix-themes/template
+++ b/srcpkgs/numix-themes/template
@@ -2,7 +2,6 @@ pkgname=numix-themes
 version=2.6.7
 revision=1
 wrksrc="numix-gtk-theme-${version}"
-archs=noarch
 build_style=gnu-makefile
 short_desc="A modern flat theme with a combination of light and dark elements"
 maintainer="Jakub Skrzypnik <jot.skrzyp@gmail.com>"
diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 4b265771793..fe9734dc24d 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -2,7 +2,6 @@
 pkgname=nyx
 version=2.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="nyx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/oblogout/template b/srcpkgs/oblogout/template
index 7d7b93a2fd1..70623e2c76a 100644
--- a/srcpkgs/oblogout/template
+++ b/srcpkgs/oblogout/template
@@ -2,7 +2,6 @@
 pkgname=oblogout
 version=0.2
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 build_style=python2-module
 conf_files="/etc/oblogout.conf"
diff --git a/srcpkgs/obmenu-generator/template b/srcpkgs/obmenu-generator/template
index 370c37bec39..35236b5433b 100644
--- a/srcpkgs/obmenu-generator/template
+++ b/srcpkgs/obmenu-generator/template
@@ -2,7 +2,6 @@
 pkgname=obmenu-generator
 version=0.88
 revision=1
-archs=noarch
 depends="perl perl-Linux-DesktopFiles perl-Data-Dump perl-Gtk2"
 short_desc="Perl Script to generate Openbox menu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/obmenu/template b/srcpkgs/obmenu/template
index 0e72c282bef..7191ad31d54 100644
--- a/srcpkgs/obmenu/template
+++ b/srcpkgs/obmenu/template
@@ -2,7 +2,6 @@
 pkgname=obmenu
 version=1.0
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="obxml.py"
 hostmakedepends="python"
diff --git a/srcpkgs/offlineimap/template b/srcpkgs/offlineimap/template
index c66f7f4581e..95be25f9aeb 100644
--- a/srcpkgs/offlineimap/template
+++ b/srcpkgs/offlineimap/template
@@ -2,7 +2,6 @@
 pkgname=offlineimap
 version=7.3.3
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-six python-rfc6555 asciidoc"
 depends="python-six python-rfc6555"
diff --git a/srcpkgs/ohsnap-font/template b/srcpkgs/ohsnap-font/template
index 2ce38c54ac7..f582d716f0a 100644
--- a/srcpkgs/ohsnap-font/template
+++ b/srcpkgs/ohsnap-font/template
@@ -2,7 +2,6 @@
 pkgname=ohsnap-font
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="ohsnap-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/ok.sh/template b/srcpkgs/ok.sh/template
index ac00f710837..400767cc52b 100644
--- a/srcpkgs/ok.sh/template
+++ b/srcpkgs/ok.sh/template
@@ -2,7 +2,6 @@
 pkgname=ok.sh
 version=0.6.1
 revision=1
-archs=noarch
 depends="curl jq"
 checkdepends="socat ${depends}"
 short_desc="GitHub API client library written in POSIX sh"
diff --git a/srcpkgs/oniguruma/template b/srcpkgs/oniguruma/template
index c017fe458d5..c84b5b51f61 100644
--- a/srcpkgs/oniguruma/template
+++ b/srcpkgs/oniguruma/template
@@ -28,7 +28,6 @@ oniguruma-devel_package() {
 }
 
 oniguruma-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index b8df8ae79c7..5fd796c2ebd 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -2,7 +2,6 @@
 pkgname=onionshare
 version=2.2
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_dirs="/usr/share/nautilus-python/extensions"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/opencl-clhpp/template b/srcpkgs/opencl-clhpp/template
index a2d140b5f9b..7ac36210b97 100644
--- a/srcpkgs/opencl-clhpp/template
+++ b/srcpkgs/opencl-clhpp/template
@@ -3,7 +3,6 @@ pkgname=opencl-clhpp
 version=2.0.10
 revision=1
 wrksrc="OpenCL-CLHPP-${version}"
-archs=noarch
 hostmakedepends="python"
 short_desc="OpenCL Host API C++ bindings (cl.hpp and cl2.hpp)"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/opencl2-headers/template b/srcpkgs/opencl2-headers/template
index 4a1ef594025..20b005fccbe 100644
--- a/srcpkgs/opencl2-headers/template
+++ b/srcpkgs/opencl2-headers/template
@@ -2,7 +2,6 @@
 pkgname=opencl2-headers
 version=2020.06.16
 revision=1
-archs=noarch
 wrksrc="OpenCL-Headers-${version}"
 short_desc="OpenCL 2.2 (Open Computing Language) header files"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/openjdk8/template b/srcpkgs/openjdk8/template
index 9f9c5998fdc..a95d647e9f7 100644
--- a/srcpkgs/openjdk8/template
+++ b/srcpkgs/openjdk8/template
@@ -286,28 +286,24 @@ openjdk8-doc_package() {
 }
 
 openjdk_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 openjdk-jre_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-jre>=${version}_${revision}"
 	short_desc+=" - runtime components (transitional dummy package)"
 }
 
 openjdk-src_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-src>=${version}_${revision}"
 	short_desc+=" - source code (transitional dummy package)"
 }
 
 openjdk-doc_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-doc>=${version}_${revision}"
 	short_desc+=" - documentation (transitional dummy package)"
diff --git a/srcpkgs/openlierox/template b/srcpkgs/openlierox/template
index 33784034232..52e90f4e834 100644
--- a/srcpkgs/openlierox/template
+++ b/srcpkgs/openlierox/template
@@ -42,7 +42,6 @@ do_install() {
 
 openlierox-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/OpenLieroX
 	}
diff --git a/srcpkgs/openra/template b/srcpkgs/openra/template
index f191405c111..afdde5c1125 100644
--- a/srcpkgs/openra/template
+++ b/srcpkgs/openra/template
@@ -2,7 +2,6 @@
 pkgname=openra
 version=20200503
 revision=1
-archs=noarch
 wrksrc="OpenRA-release-${version}"
 build_style="gnu-makefile"
 make_install_target="install install-linux-shortcuts install-linux-mime
diff --git a/srcpkgs/openresolv/template b/srcpkgs/openresolv/template
index c542e9b5310..2eb521564c6 100644
--- a/srcpkgs/openresolv/template
+++ b/srcpkgs/openresolv/template
@@ -2,7 +2,6 @@
 pkgname=openresolv
 version=3.10.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Management framework for resolv.conf"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/opensonic/template b/srcpkgs/opensonic/template
index c32bb11cb93..21487454e74 100644
--- a/srcpkgs/opensonic/template
+++ b/srcpkgs/opensonic/template
@@ -38,7 +38,6 @@ post_install() {
 
 opensonic-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/opensonic/config
 		vmove usr/share/opensonic/images
diff --git a/srcpkgs/opensurge/template b/srcpkgs/opensurge/template
index 187cace09e6..a80afb13578 100644
--- a/srcpkgs/opensurge/template
+++ b/srcpkgs/opensurge/template
@@ -15,7 +15,6 @@ checksum=d060e3215231741ce0b4e5b897af52f8755c57660c8a33856bf921c83af18ba2
 
 opensurge-data_package() {
 	short_desc+=" - game data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/opentmpfiles/template b/srcpkgs/opentmpfiles/template
index 66e3bd34f2f..cec60fef210 100644
--- a/srcpkgs/opentmpfiles/template
+++ b/srcpkgs/opentmpfiles/template
@@ -2,7 +2,6 @@
 pkgname=opentmpfiles
 version=0.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="A standalone utility for handling systemd-style tmpfiles.d settings"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/openttd/template b/srcpkgs/openttd/template
index 47df4a01b56..17c3c6577dd 100644
--- a/srcpkgs/openttd/template
+++ b/srcpkgs/openttd/template
@@ -45,7 +45,6 @@ do_configure() {
 
 openttd-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openttd
 		vmkdir usr/share/openttd/data
diff --git a/srcpkgs/opentyrian/template b/srcpkgs/opentyrian/template
index 92a1ef220b5..0ec941fd3f5 100644
--- a/srcpkgs/opentyrian/template
+++ b/srcpkgs/opentyrian/template
@@ -37,7 +37,6 @@ EOT
 
 opentyrian-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/${sourcepkg}/data
 		vcopy "${XBPS_BUILDDIR}/tyrian${_dataver}/*" usr/share/${sourcepkg}/data
diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index f70202e6d76..18de381eaed 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -2,7 +2,6 @@
 pkgname=orca
 version=3.36.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="at-spi2-atk-devel liblouis-devel python3-gobject-devel"
diff --git a/srcpkgs/orjail/template b/srcpkgs/orjail/template
index 37ae9bbf042..67608de589d 100644
--- a/srcpkgs/orjail/template
+++ b/srcpkgs/orjail/template
@@ -2,7 +2,6 @@
 pkgname=orjail
 version=1.1
 revision=1
-archs=noarch
 hostmakedepends="ruby-ronn"
 depends="bash bc-gh coreutils grep iproute2 ncurses tor util-linux"
 short_desc="Force a program to exclusively use the Tor network"
diff --git a/srcpkgs/osinfo-db/template b/srcpkgs/osinfo-db/template
index cbeb399d412..891add3213e 100644
--- a/srcpkgs/osinfo-db/template
+++ b/srcpkgs/osinfo-db/template
@@ -2,7 +2,6 @@
 pkgname=osinfo-db
 version=20200813
 revision=1
-archs=noarch
 build_style=fetch
 hostmakedepends="osinfo-db-tools"
 short_desc="Osinfo database about operating systems"
diff --git a/srcpkgs/othman/template b/srcpkgs/othman/template
index 7c75a6b04f2..5bbcaed9424 100644
--- a/srcpkgs/othman/template
+++ b/srcpkgs/othman/template
@@ -2,7 +2,6 @@
 pkgname=othman
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="othman"
 hostmakedepends="python3 ImageMagick sqlite intltool"
diff --git a/srcpkgs/overpass-otf/template b/srcpkgs/overpass-otf/template
index 3f349b80966..b5d2d7cb8e4 100644
--- a/srcpkgs/overpass-otf/template
+++ b/srcpkgs/overpass-otf/template
@@ -2,7 +2,6 @@
 pkgname=overpass-otf
 version=3.0.4
 revision=1
-archs=noarch
 wrksrc="Overpass-${version}"
 depends="font-util xbps-triggers"
 short_desc="Open source font family inspired by Highway Gothic"
diff --git a/srcpkgs/oxygen-icons5/template b/srcpkgs/oxygen-icons5/template
index 583e7880eb6..9a93f760e19 100644
--- a/srcpkgs/oxygen-icons5/template
+++ b/srcpkgs/oxygen-icons5/template
@@ -2,7 +2,6 @@
 pkgname=oxygen-icons5
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="kcoreaddons extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/pam-base/template b/srcpkgs/pam-base/template
index 216cea3679f..dc0de192b4a 100644
--- a/srcpkgs/pam-base/template
+++ b/srcpkgs/pam-base/template
@@ -2,7 +2,6 @@
 pkgname=pam-base
 version=0.3
 revision=5
-archs=noarch
 short_desc="PAM base configuration files"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="public domain"
diff --git a/srcpkgs/pantalaimon/template b/srcpkgs/pantalaimon/template
index 31a1763ab24..4c9523bbc02 100644
--- a/srcpkgs/pantalaimon/template
+++ b/srcpkgs/pantalaimon/template
@@ -2,7 +2,6 @@
 pkgname=pantalaimon
 version=0.6.5
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-attrs python3-aiohttp python3-appdirs python3-click
diff --git a/srcpkgs/paper-gtk-theme/template b/srcpkgs/paper-gtk-theme/template
index a00a0ce1a4c..39d19abbf34 100644
--- a/srcpkgs/paper-gtk-theme/template
+++ b/srcpkgs/paper-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=paper-gtk-theme
 version=2.1.0
 revision=1
-archs=noarch
 short_desc="A modern Linux desktop theme suite"
 build_style=gnu-configure
 maintainer="Satoshi Amemiya <amemiya@protonmail.com>"
diff --git a/srcpkgs/paper-icon-theme/template b/srcpkgs/paper-icon-theme/template
index dabaa3d7ec0..c57bb2af7fc 100644
--- a/srcpkgs/paper-icon-theme/template
+++ b/srcpkgs/paper-icon-theme/template
@@ -3,7 +3,6 @@ pkgname=paper-icon-theme
 version=1.5.0
 revision=1
 wrksrc="${pkgname}-v.${version}"
-archs=noarch
 build_style=meson
 short_desc="A modern freedesktop icon theme"
 maintainer="travankor <travankor@tuta.io>"
diff --git a/srcpkgs/papirus-folders/template b/srcpkgs/papirus-folders/template
index 9dd36bdee91..cdcefee2ff2 100644
--- a/srcpkgs/papirus-folders/template
+++ b/srcpkgs/papirus-folders/template
@@ -2,7 +2,6 @@
 pkgname=papirus-folders
 version=1.7.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="papirus-icon-theme"
 short_desc="Allows to change the color of folder"
diff --git a/srcpkgs/papirus-icon-theme/template b/srcpkgs/papirus-icon-theme/template
index 39e5fef6086..929b9486b64 100644
--- a/srcpkgs/papirus-icon-theme/template
+++ b/srcpkgs/papirus-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=papirus-icon-theme
 version=20200801
 revision=1
-archs=noarch
 short_desc="SVG icon theme for Linux, based on Paper Icon Set"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/parallel/template b/srcpkgs/parallel/template
index 0f8e1b1657a..1a6bb1949de 100644
--- a/srcpkgs/parallel/template
+++ b/srcpkgs/parallel/template
@@ -2,7 +2,6 @@
 pkgname=parallel
 version=20200822
 revision=1
-archs="noarch"
 build_style=gnu-configure
 depends="perl"
 checkdepends="perl"
diff --git a/srcpkgs/pass-git-helper/template b/srcpkgs/pass-git-helper/template
index 6d7f25bd8a7..5707c2d6a2d 100644
--- a/srcpkgs/pass-git-helper/template
+++ b/srcpkgs/pass-git-helper/template
@@ -2,7 +2,6 @@
 pkgname=pass-git-helper
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="pass python3-xdg"
diff --git a/srcpkgs/pass-import/template b/srcpkgs/pass-import/template
index ac7590bea99..3ac75af3910 100644
--- a/srcpkgs/pass-import/template
+++ b/srcpkgs/pass-import/template
@@ -2,7 +2,6 @@
 pkgname=pass-import
 version=3.0
 revision=3
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3-setuptools python3-yaml"
 depends="pass>=1.7.0 python3-defusedxml python3-magic
diff --git a/srcpkgs/pass-otp/template b/srcpkgs/pass-otp/template
index a9e3de053ae..9aaf5418b7a 100644
--- a/srcpkgs/pass-otp/template
+++ b/srcpkgs/pass-otp/template
@@ -2,7 +2,6 @@
 pkgname=pass-otp
 version=1.2.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="pass oath-toolkit qrencode"
 short_desc="A pass extension for managing one-time-password (OTP) tokens"
diff --git a/srcpkgs/pass-update/template b/srcpkgs/pass-update/template
index 0265a3aeafd..321a9fb4216 100644
--- a/srcpkgs/pass-update/template
+++ b/srcpkgs/pass-update/template
@@ -2,7 +2,6 @@
 pkgname=pass-update
 version=2.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args=BASHCOMPDIR=/usr/share/bash-completion/completions
 depends="pass"
diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template
index 229bb79c70d..1ca941ac4a5 100644
--- a/srcpkgs/pass/template
+++ b/srcpkgs/pass/template
@@ -2,7 +2,6 @@
 pkgname=pass
 version=1.7.3
 revision=3
-archs=noarch
 wrksrc="password-store-${version}"
 build_style=gnu-makefile
 make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
diff --git a/srcpkgs/pastebinit/template b/srcpkgs/pastebinit/template
index 1fcff9d6e4c..a7a692126a8 100644
--- a/srcpkgs/pastebinit/template
+++ b/srcpkgs/pastebinit/template
@@ -2,7 +2,6 @@
 pkgname=pastebinit
 version=1.5
 revision=3
-archs=noarch
 hostmakedepends="asciidoc gettext"
 depends="python3"
 short_desc="Pastebin command-line client"
diff --git a/srcpkgs/pcb/template b/srcpkgs/pcb/template
index 882fffad2c7..ad749498d5c 100644
--- a/srcpkgs/pcb/template
+++ b/srcpkgs/pcb/template
@@ -18,7 +18,6 @@ distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=1ceeaf1bdbe0508b9b140ca421eb600836579114c04dee939341c5d594f36e5d
 
 pcb-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/pcb
diff --git a/srcpkgs/pdd/template b/srcpkgs/pdd/template
index 70deb5a1ae3..6cb6ae2867a 100644
--- a/srcpkgs/pdd/template
+++ b/srcpkgs/pdd/template
@@ -2,7 +2,6 @@
 pkgname=pdd
 version=1.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-dateutil"
 checkdepends="python3-dateutil python3-pytest"
diff --git a/srcpkgs/pdf.js/template b/srcpkgs/pdf.js/template
index fbd2704e5f5..71f2403818f 100644
--- a/srcpkgs/pdf.js/template
+++ b/srcpkgs/pdf.js/template
@@ -2,7 +2,6 @@
 pkgname=pdf.js
 version=2.5.207
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Portable Document Format (PDF) viewer built with HTML5"
 maintainer="Daniel Santana <daniel@santana.tech>"
diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index 5ecede6cf56..bccb91ce3da 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -2,7 +2,6 @@
 pkgname=peframe
 version=6.0.3
 revision=2
-archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pelican/template b/srcpkgs/pelican/template
index c505227c554..9b390fa7726 100644
--- a/srcpkgs/pelican/template
+++ b/srcpkgs/pelican/template
@@ -2,7 +2,6 @@
 pkgname=pelican
 version=4.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pelican"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/percona-toolkit/template b/srcpkgs/percona-toolkit/template
index 612be5996a6..42cc7d91487 100644
--- a/srcpkgs/percona-toolkit/template
+++ b/srcpkgs/percona-toolkit/template
@@ -2,7 +2,6 @@
 pkgname=percona-toolkit
 version=3.0.13
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-DBD-mysql"
 depends="perl-DBD-mysql perl-Term-ReadKey"
diff --git a/srcpkgs/perl-ACL-Lite/template b/srcpkgs/perl-ACL-Lite/template
index f3ce855be07..3b2240d8650 100644
--- a/srcpkgs/perl-ACL-Lite/template
+++ b/srcpkgs/perl-ACL-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-ACL-Lite
 version=0.0004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AWS-Signature4/template b/srcpkgs/perl-AWS-Signature4/template
index 33844d45194..de5fac2cdb1 100644
--- a/srcpkgs/perl-AWS-Signature4/template
+++ b/srcpkgs/perl-AWS-Signature4/template
@@ -2,7 +2,6 @@
 pkgname=perl-AWS-Signature4
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Algorithm-Diff/template b/srcpkgs/perl-Algorithm-Diff/template
index 9bff5156ed2..08feaa2eb59 100644
--- a/srcpkgs/perl-Algorithm-Diff/template
+++ b/srcpkgs/perl-Algorithm-Diff/template
@@ -2,7 +2,6 @@
 pkgname=perl-Algorithm-Diff
 version=1.1903
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Alien-Build/template b/srcpkgs/perl-Alien-Build/template
index edc1f516035..4de28b0505c 100644
--- a/srcpkgs/perl-Alien-Build/template
+++ b/srcpkgs/perl-Alien-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-Build
 version=2.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-PkgConfig perl-File-Which"
diff --git a/srcpkgs/perl-Alien-wxWidgets/template b/srcpkgs/perl-Alien-wxWidgets/template
index 3c0a7eae5e8..fef3d2e27c0 100644
--- a/srcpkgs/perl-Alien-wxWidgets/template
+++ b/srcpkgs/perl-Alien-wxWidgets/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-wxWidgets
 version=0.69
 revision=1
-archs=noarch
 wrksrc="Alien-wxWidgets-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Module-Pluggable perl-LWP-Protocol-https"
diff --git a/srcpkgs/perl-Alien/template b/srcpkgs/perl-Alien/template
index 9149deae190..ffb54bc1566 100644
--- a/srcpkgs/perl-Alien/template
+++ b/srcpkgs/perl-Alien/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien
 version=0.95
 revision=1
-archs=noarch
 wrksrc="Alien-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AnyEvent-I3/template b/srcpkgs/perl-AnyEvent-I3/template
index 306cf53f404..bc087f6a578 100644
--- a/srcpkgs/perl-AnyEvent-I3/template
+++ b/srcpkgs/perl-AnyEvent-I3/template
@@ -3,7 +3,6 @@ pkgname=perl-AnyEvent-I3
 version=0.17
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-JSON-XS perl-AnyEvent"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/perl-AnyEvent/template b/srcpkgs/perl-AnyEvent/template
index 1d938d338c4..415f3eadeff 100644
--- a/srcpkgs/perl-AnyEvent/template
+++ b/srcpkgs/perl-AnyEvent/template
@@ -2,7 +2,6 @@
 pkgname=perl-AnyEvent
 version=7.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Apache-LogFormat-Compiler/template b/srcpkgs/perl-Apache-LogFormat-Compiler/template
index 36136de1a91..6b9aaacd152 100644
--- a/srcpkgs/perl-Apache-LogFormat-Compiler/template
+++ b/srcpkgs/perl-Apache-LogFormat-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Apache-LogFormat-Compiler
 version=0.36
 revision=1
-archs=noarch
 wrksrc="Apache-LogFormat-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-AppConfig/template b/srcpkgs/perl-AppConfig/template
index 02893ec6303..15b76b83b73 100644
--- a/srcpkgs/perl-AppConfig/template
+++ b/srcpkgs/perl-AppConfig/template
@@ -2,7 +2,6 @@
 pkgname=perl-AppConfig
 version=1.71
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Extract/template b/srcpkgs/perl-Archive-Extract/template
index ab0af642e64..89eb8ea79b0 100644
--- a/srcpkgs/perl-Archive-Extract/template
+++ b/srcpkgs/perl-Archive-Extract/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Extract
 version=0.86
 revision=1
-archs=noarch
 wrksrc="Archive-Extract-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Zip/template b/srcpkgs/perl-Archive-Zip/template
index e06ed44535c..ebc31653704 100644
--- a/srcpkgs/perl-Archive-Zip/template
+++ b/srcpkgs/perl-Archive-Zip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Zip
 version=1.68
 revision=1
-archs=noarch
 wrksrc="Archive-Zip-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Authen-SASL/template b/srcpkgs/perl-Authen-SASL/template
index 9b31f20e858..55329c9e917 100644
--- a/srcpkgs/perl-Authen-SASL/template
+++ b/srcpkgs/perl-Authen-SASL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Authen-SASL
 version=2.16
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-B-Hooks-EndOfScope/template b/srcpkgs/perl-B-Hooks-EndOfScope/template
index 8d2ec1ee190..6ece75610ba 100644
--- a/srcpkgs/perl-B-Hooks-EndOfScope/template
+++ b/srcpkgs/perl-B-Hooks-EndOfScope/template
@@ -14,4 +14,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/B-Hooks-EndOfScope"
 distfiles="${CPAN_SITE}/B/${pkgname/perl-/}-${version}.tar.gz"
 checksum=03aa3dfe5d0aa6471a96f43fe8318179d19794d4a640708f0288f9216ec7acc6
-archs=noarch
diff --git a/srcpkgs/perl-Business-ISBN-Data/template b/srcpkgs/perl-Business-ISBN-Data/template
index 1e0864d9058..674100474ca 100644
--- a/srcpkgs/perl-Business-ISBN-Data/template
+++ b/srcpkgs/perl-Business-ISBN-Data/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN-Data
 version=20191107
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISBN/template b/srcpkgs/perl-Business-ISBN/template
index 9a3d872045f..79451fa92db 100644
--- a/srcpkgs/perl-Business-ISBN/template
+++ b/srcpkgs/perl-Business-ISBN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN
 version=3.005
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISMN/template b/srcpkgs/perl-Business-ISMN/template
index 82b5caa5a85..82f8b48d51d 100644
--- a/srcpkgs/perl-Business-ISMN/template
+++ b/srcpkgs/perl-Business-ISMN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISMN
 version=1.201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISSN/template b/srcpkgs/perl-Business-ISSN/template
index ba5031a7874..c7c1350016d 100644
--- a/srcpkgs/perl-Business-ISSN/template
+++ b/srcpkgs/perl-Business-ISSN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISSN
 version=1.004
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CGI/template b/srcpkgs/perl-CGI/template
index 8c04e0a3178..2e7e64657f6 100644
--- a/srcpkgs/perl-CGI/template
+++ b/srcpkgs/perl-CGI/template
@@ -2,7 +2,6 @@
 pkgname=perl-CGI
 version=4.50
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Changes/template b/srcpkgs/perl-CPAN-Changes/template
index 3c4291e8350..e43b9b1aedc 100644
--- a/srcpkgs/perl-CPAN-Changes/template
+++ b/srcpkgs/perl-CPAN-Changes/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Changes
 version=0.400002
 revision=2
-archs=noarch
 wrksrc="CPAN-Changes-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Common-Index/template b/srcpkgs/perl-CPAN-Common-Index/template
index e37b7258507..273a368bbcf 100644
--- a/srcpkgs/perl-CPAN-Common-Index/template
+++ b/srcpkgs/perl-CPAN-Common-Index/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Common-Index
 version=0.010
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-DistnameInfo/template b/srcpkgs/perl-CPAN-DistnameInfo/template
index 16703b14b42..a353e608d67 100644
--- a/srcpkgs/perl-CPAN-DistnameInfo/template
+++ b/srcpkgs/perl-CPAN-DistnameInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-DistnameInfo
 version=0.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Meta-Check/template b/srcpkgs/perl-CPAN-Meta-Check/template
index 1bce3bc0b3f..1ae99ce17b3 100644
--- a/srcpkgs/perl-CPAN-Meta-Check/template
+++ b/srcpkgs/perl-CPAN-Meta-Check/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Meta-Check
 version=0.014
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Canary-Stability/template b/srcpkgs/perl-Canary-Stability/template
index 75eb874d31e..2bfd0243908 100644
--- a/srcpkgs/perl-Canary-Stability/template
+++ b/srcpkgs/perl-Canary-Stability/template
@@ -2,7 +2,6 @@
 pkgname=perl-Canary-Stability
 version=2013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Capture-Tiny/template b/srcpkgs/perl-Capture-Tiny/template
index 16ed2ed387e..9ac147eed2b 100644
--- a/srcpkgs/perl-Capture-Tiny/template
+++ b/srcpkgs/perl-Capture-Tiny/template
@@ -13,4 +13,3 @@ license="Apache-2.0"
 homepage="https://metacpan.org/release/Capture-Tiny"
 distfiles="${CPAN_SITE}/Mail/DAGOLDEN/Capture-Tiny-${version}.tar.gz"
 checksum=6c23113e87bad393308c90a207013e505f659274736638d8c79bac9c67cc3e19
-archs=noarch
diff --git a/srcpkgs/perl-Carp-Clan/template b/srcpkgs/perl-Carp-Clan/template
index 59704ed94f5..f2d100f73ec 100644
--- a/srcpkgs/perl-Carp-Clan/template
+++ b/srcpkgs/perl-Carp-Clan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Carp-Clan
 version=6.08
 revision=1
-archs=noarch
 wrksrc="Carp-Clan-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Accessor/template b/srcpkgs/perl-Class-Accessor/template
index 7dede179620..bfe3ad483d7 100644
--- a/srcpkgs/perl-Class-Accessor/template
+++ b/srcpkgs/perl-Class-Accessor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Accessor
 version=0.51
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Data-Inheritable/template b/srcpkgs/perl-Class-Data-Inheritable/template
index a7cc019bdae..8c7a6b8e448 100644
--- a/srcpkgs/perl-Class-Data-Inheritable/template
+++ b/srcpkgs/perl-Class-Data-Inheritable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Data-Inheritable
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Factory-Util/template b/srcpkgs/perl-Class-Factory-Util/template
index 92597b7ddd4..784eabeaa30 100644
--- a/srcpkgs/perl-Class-Factory-Util/template
+++ b/srcpkgs/perl-Class-Factory-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Factory-Util
 version=1.7
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Class-Inspector/template b/srcpkgs/perl-Class-Inspector/template
index cf071445c1d..78abb98fd8c 100644
--- a/srcpkgs/perl-Class-Inspector/template
+++ b/srcpkgs/perl-Class-Inspector/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Inspector
 version=1.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Load/template b/srcpkgs/perl-Class-Load/template
index 03f6e1c1a9a..ee0fe237b76 100644
--- a/srcpkgs/perl-Class-Load/template
+++ b/srcpkgs/perl-Class-Load/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Load
 version=0.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Method-Modifiers/template b/srcpkgs/perl-Class-Method-Modifiers/template
index 533720aa724..a255a8047f0 100644
--- a/srcpkgs/perl-Class-Method-Modifiers/template
+++ b/srcpkgs/perl-Class-Method-Modifiers/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Method-Modifiers
 version=2.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Singleton/template b/srcpkgs/perl-Class-Singleton/template
index d3ae0a38c8b..b0339fdbcc3 100644
--- a/srcpkgs/perl-Class-Singleton/template
+++ b/srcpkgs/perl-Class-Singleton/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Singleton
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Tiny/template b/srcpkgs/perl-Class-Tiny/template
index 6aee90c1149..1eeba58dc3c 100644
--- a/srcpkgs/perl-Class-Tiny/template
+++ b/srcpkgs/perl-Class-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Tiny
 version=1.006
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Clipboard/template b/srcpkgs/perl-Clipboard/template
index 36ce5a991c4..3bee57ee587 100644
--- a/srcpkgs/perl-Clipboard/template
+++ b/srcpkgs/perl-Clipboard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clipboard
 version=0.26
 revision=1
-archs=noarch
 wrksrc="Clipboard-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Clone-Choose/template b/srcpkgs/perl-Clone-Choose/template
index d5264c751eb..cabbf1da02e 100644
--- a/srcpkgs/perl-Clone-Choose/template
+++ b/srcpkgs/perl-Clone-Choose/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-Choose
 version=0.010
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Test-Without-Module"
diff --git a/srcpkgs/perl-Clone-PP/template b/srcpkgs/perl-Clone-PP/template
index 81ea599562d..3898d320b82 100644
--- a/srcpkgs/perl-Clone-PP/template
+++ b/srcpkgs/perl-Clone-PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-PP
 version=1.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-AutoConf/template b/srcpkgs/perl-Config-AutoConf/template
index 254014993da..9774e110628 100644
--- a/srcpkgs/perl-Config-AutoConf/template
+++ b/srcpkgs/perl-Config-AutoConf/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-AutoConf
 version=0.318
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Config-General/template b/srcpkgs/perl-Config-General/template
index 3b3490b88b9..edb0b74dd47 100644
--- a/srcpkgs/perl-Config-General/template
+++ b/srcpkgs/perl-Config-General/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-General
 version=2.63
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-INI-Reader-Ordered/template b/srcpkgs/perl-Config-INI-Reader-Ordered/template
index e733962c6d0..924a10df4d6 100644
--- a/srcpkgs/perl-Config-INI-Reader-Ordered/template
+++ b/srcpkgs/perl-Config-INI-Reader-Ordered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI-Reader-Ordered
 version=0.020
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Config-INI"
diff --git a/srcpkgs/perl-Config-INI/template b/srcpkgs/perl-Config-INI/template
index 5d24f752f44..69bb56fed6f 100644
--- a/srcpkgs/perl-Config-INI/template
+++ b/srcpkgs/perl-Config-INI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI
 version=0.025
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Mixin-Linewise"
diff --git a/srcpkgs/perl-Config-IniFiles/template b/srcpkgs/perl-Config-IniFiles/template
index 30b71ca775e..0b5b7c67fee 100644
--- a/srcpkgs/perl-Config-IniFiles/template
+++ b/srcpkgs/perl-Config-IniFiles/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-IniFiles
 version=3.000003
 revision=1
-archs=noarch
 wrksrc="Config-IniFiles-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Simple/template b/srcpkgs/perl-Config-Simple/template
index dc86662227a..f89baab02a2 100644
--- a/srcpkgs/perl-Config-Simple/template
+++ b/srcpkgs/perl-Config-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Simple
 version=4.59
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Tiny/template b/srcpkgs/perl-Config-Tiny/template
index e96ba7aeab9..817b36e7fa8 100644
--- a/srcpkgs/perl-Config-Tiny/template
+++ b/srcpkgs/perl-Config-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Tiny
 version=2.24
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Convert-BinHex/template b/srcpkgs/perl-Convert-BinHex/template
index d8ead1e579d..a3d5cee38b8 100644
--- a/srcpkgs/perl-Convert-BinHex/template
+++ b/srcpkgs/perl-Convert-BinHex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Convert-BinHex
 version=1.125
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Cookie-Baker/template b/srcpkgs/perl-Cookie-Baker/template
index ecb7b80e30c..97380da327c 100644
--- a/srcpkgs/perl-Cookie-Baker/template
+++ b/srcpkgs/perl-Cookie-Baker/template
@@ -2,7 +2,6 @@
 pkgname=perl-Cookie-Baker
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Crypt-Blowfish_PP/template b/srcpkgs/perl-Crypt-Blowfish_PP/template
index e2e7680ae52..25e05ae03fb 100644
--- a/srcpkgs/perl-Crypt-Blowfish_PP/template
+++ b/srcpkgs/perl-Crypt-Blowfish_PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-Blowfish_PP
 version=1.12
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index f09b1dc8ba3..9ca4812c589 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-CBC
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DES_EDE3/template b/srcpkgs/perl-Crypt-DES_EDE3/template
index e4a7abc00f3..55c7d689554 100644
--- a/srcpkgs/perl-Crypt-DES_EDE3/template
+++ b/srcpkgs/perl-Crypt-DES_EDE3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DES_EDE3
 version=0.01
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DH/template b/srcpkgs/perl-Crypt-DH/template
index 07c4dc70d23..ccb82e6d101 100644
--- a/srcpkgs/perl-Crypt-DH/template
+++ b/srcpkgs/perl-Crypt-DH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DH
 version=0.07
 revision=9
-archs=noarch
 wrksrc="Crypt-DH-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Math-BigInt-GMP perl-Archive-Zip"
diff --git a/srcpkgs/perl-Crypt-OpenSSL-Guess/template b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
index 8c207e50fa0..4c9691ec99c 100644
--- a/srcpkgs/perl-Crypt-OpenSSL-Guess/template
+++ b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-OpenSSL-Guess
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-PasswdMD5/template b/srcpkgs/perl-Crypt-PasswdMD5/template
index a579748e61d..7d1fccac254 100644
--- a/srcpkgs/perl-Crypt-PasswdMD5/template
+++ b/srcpkgs/perl-Crypt-PasswdMD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-PasswdMD5
 version=1.40
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-RC4/template b/srcpkgs/perl-Crypt-RC4/template
index bb7bb8931ec..04bb549019d 100644
--- a/srcpkgs/perl-Crypt-RC4/template
+++ b/srcpkgs/perl-Crypt-RC4/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-RC4
 version=2.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Danga-Socket/template b/srcpkgs/perl-Danga-Socket/template
index 049159b68a7..6ebc84f42e8 100644
--- a/srcpkgs/perl-Danga-Socket/template
+++ b/srcpkgs/perl-Danga-Socket/template
@@ -2,7 +2,6 @@
 pkgname=perl-Danga-Socket
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Compare/template b/srcpkgs/perl-Data-Compare/template
index c5fb3661f94..b7b42a7c299 100644
--- a/srcpkgs/perl-Data-Compare/template
+++ b/srcpkgs/perl-Data-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Compare
 version=1.27
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-Find-Rule perl-Clone"
diff --git a/srcpkgs/perl-Data-Dump/template b/srcpkgs/perl-Data-Dump/template
index 6ec79b62440..2d1cfd4901a 100644
--- a/srcpkgs/perl-Data-Dump/template
+++ b/srcpkgs/perl-Data-Dump/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dump
 version=1.23
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Dx/template b/srcpkgs/perl-Data-Dx/template
index ea44d272f58..4ad2bec1cc2 100644
--- a/srcpkgs/perl-Data-Dx/template
+++ b/srcpkgs/perl-Data-Dx/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dx
 version=0.000010
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Data-Dump perl-Keyword-Declare"
diff --git a/srcpkgs/perl-Data-OptList/template b/srcpkgs/perl-Data-OptList/template
index 7ea35f387b1..15c14aaf4a8 100644
--- a/srcpkgs/perl-Data-OptList/template
+++ b/srcpkgs/perl-Data-OptList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-OptList
 version=0.110
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Section-Simple/template b/srcpkgs/perl-Data-Section-Simple/template
index 5148ad90e52..5ac37007280 100644
--- a/srcpkgs/perl-Data-Section-Simple/template
+++ b/srcpkgs/perl-Data-Section-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Section-Simple
 version=0.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Uniqid/template b/srcpkgs/perl-Data-Uniqid/template
index 4005118cf6b..fcfa5baecc9 100644
--- a/srcpkgs/perl-Data-Uniqid/template
+++ b/srcpkgs/perl-Data-Uniqid/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Uniqid
 version=0.12
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Validate-IP/template b/srcpkgs/perl-Data-Validate-IP/template
index 5e0fb95de5a..2029d98c4c2 100644
--- a/srcpkgs/perl-Data-Validate-IP/template
+++ b/srcpkgs/perl-Data-Validate-IP/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/Data-Validate-IP"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Data/Data-Validate-IP-${version}.tar.gz"
 checksum=e1aa92235dcb9c6fd9b6c8cda184d1af73537cc77f4f83a0f88207a8bfbfb7d6
-archs=noarch
diff --git a/srcpkgs/perl-Date-Calc/template b/srcpkgs/perl-Date-Calc/template
index 3708c34ce4a..9cf7b813852 100644
--- a/srcpkgs/perl-Date-Calc/template
+++ b/srcpkgs/perl-Date-Calc/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl perl-Carp-Clan perl-Bit-Vector"
 depends="${makedepends}"
-archs=noarch
 short_desc="Date::Calc - Gregorian calendar date calculations"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 homepage="https://metacpan.org/release/Date-Calc"
diff --git a/srcpkgs/perl-Date-Manip/template b/srcpkgs/perl-Date-Manip/template
index 1474cd7aa17..2e19d7bee53 100644
--- a/srcpkgs/perl-Date-Manip/template
+++ b/srcpkgs/perl-Date-Manip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Date-Manip
 version=6.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Calendar-Julian/template b/srcpkgs/perl-DateTime-Calendar-Julian/template
index caf881a51e4..160ee75faf6 100644
--- a/srcpkgs/perl-DateTime-Calendar-Julian/template
+++ b/srcpkgs/perl-DateTime-Calendar-Julian/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Calendar-Julian
 version=0.102
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime"
diff --git a/srcpkgs/perl-DateTime-Format-Builder/template b/srcpkgs/perl-DateTime-Format-Builder/template
index 5ebef529fed..20fadc3ae7b 100644
--- a/srcpkgs/perl-DateTime-Format-Builder/template
+++ b/srcpkgs/perl-DateTime-Format-Builder/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Builder
 version=0.82
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime perl-Class-Factory-Util perl-DateTime-Format-Strptime perl-Params-Validate"
diff --git a/srcpkgs/perl-DateTime-Format-Strptime/template b/srcpkgs/perl-DateTime-Format-Strptime/template
index 4d4dd839035..0aca7d6b237 100644
--- a/srcpkgs/perl-DateTime-Format-Strptime/template
+++ b/srcpkgs/perl-DateTime-Format-Strptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Strptime
 version=1.77
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Locale/template b/srcpkgs/perl-DateTime-Locale/template
index 1c24fdaecce..6b1208e781b 100644
--- a/srcpkgs/perl-DateTime-Locale/template
+++ b/srcpkgs/perl-DateTime-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Locale
 version=1.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-DateTime-TimeZone/template b/srcpkgs/perl-DateTime-TimeZone/template
index b9c9149fc87..a681fa5c7bd 100644
--- a/srcpkgs/perl-DateTime-TimeZone/template
+++ b/srcpkgs/perl-DateTime-TimeZone/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-TimeZone
 version=2.39
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-CheckLib/template b/srcpkgs/perl-Devel-CheckLib/template
index be4e79419aa..fe9bd2398bc 100644
--- a/srcpkgs/perl-Devel-CheckLib/template
+++ b/srcpkgs/perl-Devel-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-CheckLib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="Devel-CheckLib-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-CaptureOutput"
diff --git a/srcpkgs/perl-Devel-GlobalDestruction/template b/srcpkgs/perl-Devel-GlobalDestruction/template
index 538d06d9e9f..5d971b90606 100644
--- a/srcpkgs/perl-Devel-GlobalDestruction/template
+++ b/srcpkgs/perl-Devel-GlobalDestruction/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-GlobalDestruction
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Sub-Exporter-Progressive"
diff --git a/srcpkgs/perl-Devel-StackTrace-AsHTML/template b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
index 446496001c7..42a8a6102de 100644
--- a/srcpkgs/perl-Devel-StackTrace-AsHTML/template
+++ b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Apache-LogFormat-Compiler"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Devel/Devel-StackTrace-AsHTML-${version}.tar.gz"
 checksum=6283dbe2197e2f20009cc4b449997742169cdd951bfc44cbc6e62c2a962d3147
-archs=noarch
diff --git a/srcpkgs/perl-Devel-StackTrace/template b/srcpkgs/perl-Devel-StackTrace/template
index 45972e75631..318568b9c3f 100644
--- a/srcpkgs/perl-Devel-StackTrace/template
+++ b/srcpkgs/perl-Devel-StackTrace/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-StackTrace
 version=2.04
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-Symdump/template b/srcpkgs/perl-Devel-Symdump/template
index d4823034b1f..d63c6e5a9d2 100644
--- a/srcpkgs/perl-Devel-Symdump/template
+++ b/srcpkgs/perl-Devel-Symdump/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Devel-Symdump"
 license="GPL-1, Artistic"
 distfiles="$CPAN_SITE/Devel/Devel-Symdump-${version}.tar.gz"
 checksum=826f81a107f5592a2516766ed43beb47e10cc83edc9ea48090b02a36040776c0
-archs=noarch
diff --git a/srcpkgs/perl-Digest-HMAC/template b/srcpkgs/perl-Digest-HMAC/template
index 5ece091d408..e47d13022ed 100644
--- a/srcpkgs/perl-Digest-HMAC/template
+++ b/srcpkgs/perl-Digest-HMAC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-HMAC
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Digest-Perl-MD5/template b/srcpkgs/perl-Digest-Perl-MD5/template
index 4ea78427ea5..0785fb4d25a 100644
--- a/srcpkgs/perl-Digest-Perl-MD5/template
+++ b/srcpkgs/perl-Digest-Perl-MD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-Perl-MD5
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Dist-CheckConflicts/template b/srcpkgs/perl-Dist-CheckConflicts/template
index 8c1f653ca03..0ae6651298f 100644
--- a/srcpkgs/perl-Dist-CheckConflicts/template
+++ b/srcpkgs/perl-Dist-CheckConflicts/template
@@ -2,7 +2,6 @@
 pkgname=perl-Dist-CheckConflicts
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Date-Format/template b/srcpkgs/perl-Email-Date-Format/template
index 57781d72c02..aa4db10ad48 100644
--- a/srcpkgs/perl-Email-Date-Format/template
+++ b/srcpkgs/perl-Email-Date-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Date-Format
 version=1.005
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-FolderType/template b/srcpkgs/perl-Email-FolderType/template
index a538f294158..3a57b288169 100644
--- a/srcpkgs/perl-Email-FolderType/template
+++ b/srcpkgs/perl-Email-FolderType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-FolderType
 version=0.814
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-LocalDelivery/template b/srcpkgs/perl-Email-LocalDelivery/template
index 3b2ed70646a..19d61c3f06f 100644
--- a/srcpkgs/perl-Email-LocalDelivery/template
+++ b/srcpkgs/perl-Email-LocalDelivery/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-LocalDelivery
 version=1.200
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-ContentType/template b/srcpkgs/perl-Email-MIME-ContentType/template
index 3131fafdbb4..17108543bde 100644
--- a/srcpkgs/perl-Email-MIME-ContentType/template
+++ b/srcpkgs/perl-Email-MIME-ContentType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-ContentType
 version=1.024
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-Encodings/template b/srcpkgs/perl-Email-MIME-Encodings/template
index ba28cb0ac78..1141dcb43e3 100644
--- a/srcpkgs/perl-Email-MIME-Encodings/template
+++ b/srcpkgs/perl-Email-MIME-Encodings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-Encodings
 version=1.315
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME/template b/srcpkgs/perl-Email-MIME/template
index 55a6b438578..32573aa6f9b 100644
--- a/srcpkgs/perl-Email-MIME/template
+++ b/srcpkgs/perl-Email-MIME/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME
 version=1.949
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MessageID/template b/srcpkgs/perl-Email-MessageID/template
index 5b52585b5f9..729503da15e 100644
--- a/srcpkgs/perl-Email-MessageID/template
+++ b/srcpkgs/perl-Email-MessageID/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MessageID
 version=1.406
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Simple/template b/srcpkgs/perl-Email-Simple/template
index 57ccc513dbe..f27eec6ebad 100644
--- a/srcpkgs/perl-Email-Simple/template
+++ b/srcpkgs/perl-Email-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Simple
 version=2.216
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Encode-Locale/template b/srcpkgs/perl-Encode-Locale/template
index 53e09d8a2e7..20371b4daf7 100644
--- a/srcpkgs/perl-Encode-Locale/template
+++ b/srcpkgs/perl-Encode-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-Encode-Locale
 version=1.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Eval-Closure/template b/srcpkgs/perl-Eval-Closure/template
index c3301afd97f..0a3a9ba40e0 100644
--- a/srcpkgs/perl-Eval-Closure/template
+++ b/srcpkgs/perl-Eval-Closure/template
@@ -2,7 +2,6 @@
 pkgname=perl-Eval-Closure
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exception-Class/template b/srcpkgs/perl-Exception-Class/template
index 3d0f37bf503..91280322f46 100644
--- a/srcpkgs/perl-Exception-Class/template
+++ b/srcpkgs/perl-Exception-Class/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl-Class-Data-Inheritable perl-Devel-StackTrace"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Allows you to declare real exception classes'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Exception-Class"
diff --git a/srcpkgs/perl-Expect/template b/srcpkgs/perl-Expect/template
index 6ec5f668697..8832c5148ef 100644
--- a/srcpkgs/perl-Expect/template
+++ b/srcpkgs/perl-Expect/template
@@ -2,7 +2,6 @@
 pkgname=perl-Expect
 version=1.35
 revision=1
-archs=noarch
 wrksrc="Expect-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exporter-Tiny/template b/srcpkgs/perl-Exporter-Tiny/template
index c1d2a7c3f9b..091e19bf774 100644
--- a/srcpkgs/perl-Exporter-Tiny/template
+++ b/srcpkgs/perl-Exporter-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Exporter-Tiny
 version=1.002002
 revision=1
-archs=noarch
 wrksrc="Exporter-Tiny-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Config/template b/srcpkgs/perl-ExtUtils-Config/template
index 5951b92a159..6fcc7265c85 100644
--- a/srcpkgs/perl-ExtUtils-Config/template
+++ b/srcpkgs/perl-ExtUtils-Config/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Config
 version=0.008
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-CppGuess/template b/srcpkgs/perl-ExtUtils-CppGuess/template
index df071fc6b85..b1cdbf48c6e 100644
--- a/srcpkgs/perl-ExtUtils-CppGuess/template
+++ b/srcpkgs/perl-ExtUtils-CppGuess/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-CppGuess
 version=0.21
 revision=1
-archs=noarch
 wrksrc="ExtUtils-CppGuess-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Capture-Tiny perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-Depends/template b/srcpkgs/perl-ExtUtils-Depends/template
index 80ac7515fa1..6b6c52e1d5a 100644
--- a/srcpkgs/perl-ExtUtils-Depends/template
+++ b/srcpkgs/perl-ExtUtils-Depends/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Depends
 version=0.8000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Helpers/template b/srcpkgs/perl-ExtUtils-Helpers/template
index 5b95d1cdeed..7c44bcad431 100644
--- a/srcpkgs/perl-ExtUtils-Helpers/template
+++ b/srcpkgs/perl-ExtUtils-Helpers/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Helpers
 version=0.026
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-InstallPaths/template b/srcpkgs/perl-ExtUtils-InstallPaths/template
index 168a4104de6..f9408e37b16 100644
--- a/srcpkgs/perl-ExtUtils-InstallPaths/template
+++ b/srcpkgs/perl-ExtUtils-InstallPaths/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-InstallPaths
 version=0.012
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-LibBuilder/template b/srcpkgs/perl-ExtUtils-LibBuilder/template
index c2c582b0aa2..b3a7082d078 100644
--- a/srcpkgs/perl-ExtUtils-LibBuilder/template
+++ b/srcpkgs/perl-ExtUtils-LibBuilder/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-LibBuilder
 version=0.08
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
index 5a42f6710d4..eb51966421e 100644
--- a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
+++ b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-MakeMaker-CPANfile
 version=0.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-PkgConfig/template b/srcpkgs/perl-ExtUtils-PkgConfig/template
index 72e96b548e5..7b1910322d9 100644
--- a/srcpkgs/perl-ExtUtils-PkgConfig/template
+++ b/srcpkgs/perl-ExtUtils-PkgConfig/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl pkg-config"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="Simplistic perl interface to pkg-config"
 homepage="https://metacpan.org/release/ExtUtils-PkgConfig"
 license="LGPL-2.1"
diff --git a/srcpkgs/perl-ExtUtils-XSpp/template b/srcpkgs/perl-ExtUtils-XSpp/template
index 708071a8279..29bf5791813 100644
--- a/srcpkgs/perl-ExtUtils-XSpp/template
+++ b/srcpkgs/perl-ExtUtils-XSpp/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-XSpp
 version=0.18
 revision=1
-archs=noarch
 wrksrc="ExtUtils-XSpp-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Base perl-Test-Differences"
diff --git a/srcpkgs/perl-FFI-CheckLib/template b/srcpkgs/perl-FFI-CheckLib/template
index 3b740cdacf3..cb88b1082d7 100644
--- a/srcpkgs/perl-FFI-CheckLib/template
+++ b/srcpkgs/perl-FFI-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-FFI-CheckLib
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-BaseDir/template b/srcpkgs/perl-File-BaseDir/template
index ada966fc66f..90b32ebe6e5 100644
--- a/srcpkgs/perl-File-BaseDir/template
+++ b/srcpkgs/perl-File-BaseDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-BaseDir
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Copy-Recursive/template b/srcpkgs/perl-File-Copy-Recursive/template
index 02d38a02582..a62a14f1614 100644
--- a/srcpkgs/perl-File-Copy-Recursive/template
+++ b/srcpkgs/perl-File-Copy-Recursive/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Copy-Recursive
 version=0.45
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-DesktopEntry/template b/srcpkgs/perl-File-DesktopEntry/template
index 5ce93ef5ff1..3b0baa47c3f 100644
--- a/srcpkgs/perl-File-DesktopEntry/template
+++ b/srcpkgs/perl-File-DesktopEntry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-DesktopEntry
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Find-Rule/template b/srcpkgs/perl-File-Find-Rule/template
index aecdb1ab8d5..82f01d58436 100644
--- a/srcpkgs/perl-File-Find-Rule/template
+++ b/srcpkgs/perl-File-Find-Rule/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Find-Rule
 version=0.34
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Glob perl-Number-Compare"
diff --git a/srcpkgs/perl-File-Flock-Retry/template b/srcpkgs/perl-File-Flock-Retry/template
index 0d7d912386a..c89b100a27f 100644
--- a/srcpkgs/perl-File-Flock-Retry/template
+++ b/srcpkgs/perl-File-Flock-Retry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Flock-Retry
 version=0.631
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-HomeDir/template b/srcpkgs/perl-File-HomeDir/template
index d318404f3cb..bb719e466f9 100644
--- a/srcpkgs/perl-File-HomeDir/template
+++ b/srcpkgs/perl-File-HomeDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-HomeDir
 version=1.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Which"
diff --git a/srcpkgs/perl-File-KeePass/template b/srcpkgs/perl-File-KeePass/template
index 35ac51656ea..2d8b536cfdd 100644
--- a/srcpkgs/perl-File-KeePass/template
+++ b/srcpkgs/perl-File-KeePass/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-KeePass
 version=2.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Listing/template b/srcpkgs/perl-File-Listing/template
index 88e1782c01a..431be101ddf 100644
--- a/srcpkgs/perl-File-Listing/template
+++ b/srcpkgs/perl-File-Listing/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Listing
 version=6.04
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-MimeInfo/template b/srcpkgs/perl-File-MimeInfo/template
index c9286a3e2be..a35a097b9fa 100644
--- a/srcpkgs/perl-File-MimeInfo/template
+++ b/srcpkgs/perl-File-MimeInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-MimeInfo
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Next/template b/srcpkgs/perl-File-Next/template
index ad618b321f0..10f79dfeea8 100644
--- a/srcpkgs/perl-File-Next/template
+++ b/srcpkgs/perl-File-Next/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Next
 version=1.18
 revision=1
-archs=noarch
 wrksrc="File-Next-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Path-Expand/template b/srcpkgs/perl-File-Path-Expand/template
index a1160ae2bd0..330f3255553 100644
--- a/srcpkgs/perl-File-Path-Expand/template
+++ b/srcpkgs/perl-File-Path-Expand/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Path-Expand
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Remove/template b/srcpkgs/perl-File-Remove/template
index bf19bbe94c6..1d97e011026 100644
--- a/srcpkgs/perl-File-Remove/template
+++ b/srcpkgs/perl-File-Remove/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Remove
 version=1.58
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Rename/template b/srcpkgs/perl-File-Rename/template
index 5c198686de0..fd7c1000574 100644
--- a/srcpkgs/perl-File-Rename/template
+++ b/srcpkgs/perl-File-Rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Rename
 version=1.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-ShareDir-Install/template b/srcpkgs/perl-File-ShareDir-Install/template
index 208a8575079..63c63c755e3 100644
--- a/srcpkgs/perl-File-ShareDir-Install/template
+++ b/srcpkgs/perl-File-ShareDir-Install/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="File::ShareDir::Install - Install shared files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/File-ShareDir-Install"
diff --git a/srcpkgs/perl-File-ShareDir/template b/srcpkgs/perl-File-ShareDir/template
index beb7e228afc..6c453f01997 100644
--- a/srcpkgs/perl-File-ShareDir/template
+++ b/srcpkgs/perl-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-ShareDir
 version=1.116
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp-Tiny/template b/srcpkgs/perl-File-Slurp-Tiny/template
index 8a9d8804674..a1dbc242b72 100644
--- a/srcpkgs/perl-File-Slurp-Tiny/template
+++ b/srcpkgs/perl-File-Slurp-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp-Tiny
 version=0.004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp/template b/srcpkgs/perl-File-Slurp/template
index e80907b93f6..6d6eaf13023 100644
--- a/srcpkgs/perl-File-Slurp/template
+++ b/srcpkgs/perl-File-Slurp/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp
 version=9999.30
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurper/template b/srcpkgs/perl-File-Slurper/template
index 4d863f45594..abad103efaf 100644
--- a/srcpkgs/perl-File-Slurper/template
+++ b/srcpkgs/perl-File-Slurper/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurper
 version=0.012
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Which/template b/srcpkgs/perl-File-Which/template
index 3cf781fc48c..dda22972729 100644
--- a/srcpkgs/perl-File-Which/template
+++ b/srcpkgs/perl-File-Which/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Which
 version=1.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Write-Rotate/template b/srcpkgs/perl-File-Write-Rotate/template
index b0cce6f7c18..6f8e780d6f6 100644
--- a/srcpkgs/perl-File-Write-Rotate/template
+++ b/srcpkgs/perl-File-Write-Rotate/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Write-Rotate
 version=0.321
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-chdir/template b/srcpkgs/perl-File-chdir/template
index af6a761eaf2..6a37200eda4 100644
--- a/srcpkgs/perl-File-chdir/template
+++ b/srcpkgs/perl-File-chdir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-chdir
 version=0.1011
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-pushd/template b/srcpkgs/perl-File-pushd/template
index 1ff8d169a2f..2d94f16b604 100644
--- a/srcpkgs/perl-File-pushd/template
+++ b/srcpkgs/perl-File-pushd/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-pushd
 version=1.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Filesys-Notify-Simple/template b/srcpkgs/perl-Filesys-Notify-Simple/template
index 63162d61a23..4ec2992d5bf 100644
--- a/srcpkgs/perl-Filesys-Notify-Simple/template
+++ b/srcpkgs/perl-Filesys-Notify-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Filesys-Notify-Simple
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Font-TTF/template b/srcpkgs/perl-Font-TTF/template
index 16637e92dbc..9e521a86ca1 100644
--- a/srcpkgs/perl-Font-TTF/template
+++ b/srcpkgs/perl-Font-TTF/template
@@ -2,7 +2,6 @@
 pkgname=perl-Font-TTF
 version=1.06
 revision=3
-archs=noarch
 wrksrc="Font-TTF-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-String"
diff --git a/srcpkgs/perl-Getopt-Compact/template b/srcpkgs/perl-Getopt-Compact/template
index 4fd53e9b485..693125559ff 100644
--- a/srcpkgs/perl-Getopt-Compact/template
+++ b/srcpkgs/perl-Getopt-Compact/template
@@ -2,7 +2,6 @@
 pkgname=perl-Getopt-Compact
 version=0.04
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-GooCanvas2/template b/srcpkgs/perl-GooCanvas2/template
index c1236ce2d94..407993e27f5 100644
--- a/srcpkgs/perl-GooCanvas2/template
+++ b/srcpkgs/perl-GooCanvas2/template
@@ -2,7 +2,6 @@
 pkgname=perl-GooCanvas2
 version=0.06
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Graphics-ColorUtils/template b/srcpkgs/perl-Graphics-ColorUtils/template
index eaa71105c53..d11ed93971f 100644
--- a/srcpkgs/perl-Graphics-ColorUtils/template
+++ b/srcpkgs/perl-Graphics-ColorUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-Graphics-ColorUtils
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk2-Ex-Simple-List/template b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
index e07199fd18a..6399c0d906f 100644
--- a/srcpkgs/perl-Gtk2-Ex-Simple-List/template
+++ b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk2-Ex-Simple-List
 version=0.50
 revision=2
-archs=noarch
 wrksrc="Gtk2-Ex-Simple-List-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3-SimpleList/template b/srcpkgs/perl-Gtk3-SimpleList/template
index 5e647b5a737..78e57b052c3 100644
--- a/srcpkgs/perl-Gtk3-SimpleList/template
+++ b/srcpkgs/perl-Gtk3-SimpleList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3-SimpleList
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3/template b/srcpkgs/perl-Gtk3/template
index d1ab6cccf8c..b5f50a2f058 100644
--- a/srcpkgs/perl-Gtk3/template
+++ b/srcpkgs/perl-Gtk3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3
 version=0.037
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Form/template b/srcpkgs/perl-HTML-Form/template
index 0eeb276979c..bf4020cfe3f 100644
--- a/srcpkgs/perl-HTML-Form/template
+++ b/srcpkgs/perl-HTML-Form/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Form
 version=6.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tagset/template b/srcpkgs/perl-HTML-Tagset/template
index 5525e6d93ad..3b8ed139843 100644
--- a/srcpkgs/perl-HTML-Tagset/template
+++ b/srcpkgs/perl-HTML-Tagset/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tagset
 version=3.20
 revision=7
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tree/template b/srcpkgs/perl-HTML-Tree/template
index b77bf5c83a6..328478a1b15 100644
--- a/srcpkgs/perl-HTML-Tree/template
+++ b/srcpkgs/perl-HTML-Tree/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tree
 version=5.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-HTTP-Cookies/template b/srcpkgs/perl-HTTP-Cookies/template
index b3bf18556b3..06e37f0719e 100644
--- a/srcpkgs/perl-HTTP-Cookies/template
+++ b/srcpkgs/perl-HTTP-Cookies/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Cookies
 version=6.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Daemon/template b/srcpkgs/perl-HTTP-Daemon/template
index 5ca067d49d5..ba5d3f2190a 100644
--- a/srcpkgs/perl-HTTP-Daemon/template
+++ b/srcpkgs/perl-HTTP-Daemon/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Daemon
 version=6.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Date/template b/srcpkgs/perl-HTTP-Date/template
index c97750feba0..c193712ee37 100644
--- a/srcpkgs/perl-HTTP-Date/template
+++ b/srcpkgs/perl-HTTP-Date/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Date
 version=6.05
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Entity-Parser/template b/srcpkgs/perl-HTTP-Entity-Parser/template
index 6fcada68323..8886aa27d4b 100644
--- a/srcpkgs/perl-HTTP-Entity-Parser/template
+++ b/srcpkgs/perl-HTTP-Entity-Parser/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Entity-Parser
 version=0.24
 revision=1
-archs=noarch
 wrksrc="HTTP-Entity-Parser-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Headers-Fast/template b/srcpkgs/perl-HTTP-Headers-Fast/template
index 2f263d67329..69876b00abb 100644
--- a/srcpkgs/perl-HTTP-Headers-Fast/template
+++ b/srcpkgs/perl-HTTP-Headers-Fast/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Headers-Fast
 version=0.22
 revision=1
-archs=noarch
 wrksrc="HTTP-Headers-Fast-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Message/template b/srcpkgs/perl-HTTP-Message/template
index 3fb6cd73ecf..d1fa295004e 100644
--- a/srcpkgs/perl-HTTP-Message/template
+++ b/srcpkgs/perl-HTTP-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Message
 version=6.24
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-MultiPartParser/template b/srcpkgs/perl-HTTP-MultiPartParser/template
index 91c07646740..8f0a5ca5c1a 100644
--- a/srcpkgs/perl-HTTP-MultiPartParser/template
+++ b/srcpkgs/perl-HTTP-MultiPartParser/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/HTTP-MultiPartParser"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/HTTP/HTTP-MultiPartParser-${version}.tar.gz"
 checksum=5eddda159f54d16f868e032440ac2b024e55aac48931871b62627f1a16d00b12
-archs=noarch
diff --git a/srcpkgs/perl-HTTP-Negotiate/template b/srcpkgs/perl-HTTP-Negotiate/template
index 7cdc61fca6c..3fa8d2c8373 100644
--- a/srcpkgs/perl-HTTP-Negotiate/template
+++ b/srcpkgs/perl-HTTP-Negotiate/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Negotiate
 version=6.01
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Response-Encoding/template b/srcpkgs/perl-HTTP-Response-Encoding/template
index 8f2b5d0a854..c21570e1a36 100644
--- a/srcpkgs/perl-HTTP-Response-Encoding/template
+++ b/srcpkgs/perl-HTTP-Response-Encoding/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Response-Encoding
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Server-Simple/template b/srcpkgs/perl-HTTP-Server-Simple/template
index 732f2a05326..a2a50984056 100644
--- a/srcpkgs/perl-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Server-Simple
 version=0.52
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Tinyish/template b/srcpkgs/perl-HTTP-Tinyish/template
index 065830e5d50..fb574fefcca 100644
--- a/srcpkgs/perl-HTTP-Tinyish/template
+++ b/srcpkgs/perl-HTTP-Tinyish/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Tinyish
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-Merge/template b/srcpkgs/perl-Hash-Merge/template
index 8b01ec990ce..935f53319b2 100644
--- a/srcpkgs/perl-Hash-Merge/template
+++ b/srcpkgs/perl-Hash-Merge/template
@@ -2,7 +2,6 @@
 pkgname=perl-Hash-Merge
 version=0.302
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-MultiValue/template b/srcpkgs/perl-Hash-MultiValue/template
index d9be3ac82ab..8624237f1ef 100644
--- a/srcpkgs/perl-Hash-MultiValue/template
+++ b/srcpkgs/perl-Hash-MultiValue/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Hash-MultiValue"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Hash/Hash-MultiValue-${version}.tar.gz"
 checksum=66181df7aa68e2786faf6895c88b18b95c800a8e4e6fb4c07fd176410a3c73f4
-archs=noarch
diff --git a/srcpkgs/perl-IO-CaptureOutput/template b/srcpkgs/perl-IO-CaptureOutput/template
index e2d5f360b38..1ad727f0916 100644
--- a/srcpkgs/perl-IO-CaptureOutput/template
+++ b/srcpkgs/perl-IO-CaptureOutput/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-CaptureOutput
 version=1.1105
 revision=1
-archs=noarch
 wrksrc="IO-CaptureOutput-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-HTML/template b/srcpkgs/perl-IO-HTML/template
index 7fb1ca71ede..2566ea52211 100644
--- a/srcpkgs/perl-IO-HTML/template
+++ b/srcpkgs/perl-IO-HTML/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-HTML
 version=1.001
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-SessionData/template b/srcpkgs/perl-IO-SessionData/template
index 04b7108a4df..0c0f2cefb7c 100644
--- a/srcpkgs/perl-IO-SessionData/template
+++ b/srcpkgs/perl-IO-SessionData/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-SessionData
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-INET6/template b/srcpkgs/perl-IO-Socket-INET6/template
index c94145ca85a..f67537b5b17 100644
--- a/srcpkgs/perl-IO-Socket-INET6/template
+++ b/srcpkgs/perl-IO-Socket-INET6/template
@@ -8,7 +8,6 @@ hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-Socket6"
 checkdepends="perl-Test-Pod perl-Test-Pod-Coverage"
 depends="${makedepends}"
-archs=noarch
 short_desc="IO::Socket::INET6 - Object interface for AF_INET/AF_INET6 domain sockets"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/IO-Socket-INET6"
diff --git a/srcpkgs/perl-IO-Socket-SSL/template b/srcpkgs/perl-IO-Socket-SSL/template
index 70463405a2a..21792ff27ac 100644
--- a/srcpkgs/perl-IO-Socket-SSL/template
+++ b/srcpkgs/perl-IO-Socket-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-SSL
 version=2.068
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-Socks/template b/srcpkgs/perl-IO-Socket-Socks/template
index d37fbcfc55a..8a970ad4a2e 100644
--- a/srcpkgs/perl-IO-Socket-Socks/template
+++ b/srcpkgs/perl-IO-Socket-Socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-Socks
 version=0.74
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-String/template b/srcpkgs/perl-IO-String/template
index 7c0735b6b81..4732a8ee56e 100644
--- a/srcpkgs/perl-IO-String/template
+++ b/srcpkgs/perl-IO-String/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-String
 version=1.08
 revision=2
-archs=noarch
 wrksrc="IO-String-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Stty/template b/srcpkgs/perl-IO-Stty/template
index a6fdf1c2fe6..cc00d3bc064 100644
--- a/srcpkgs/perl-IO-Stty/template
+++ b/srcpkgs/perl-IO-Stty/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Stty
 version=0.04
 revision=1
-archs=noarch
 wrksrc="IO-Stty-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-stringy/template b/srcpkgs/perl-IO-stringy/template
index 411a8374bcf..ccc92e36fc0 100644
--- a/srcpkgs/perl-IO-stringy/template
+++ b/srcpkgs/perl-IO-stringy/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-stringy
 version=2.113
 revision=1
-archs=noarch
 wrksrc="IO-Stringy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run/template b/srcpkgs/perl-IPC-Run/template
index ceb5b93652b..dccd5ebcbbb 100644
--- a/srcpkgs/perl-IPC-Run/template
+++ b/srcpkgs/perl-IPC-Run/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run
 version=20200505.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run3/template b/srcpkgs/perl-IPC-Run3/template
index 25155d2b8f3..068ec8b309f 100644
--- a/srcpkgs/perl-IPC-Run3/template
+++ b/srcpkgs/perl-IPC-Run3/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run3
 version=0.048
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-System-Simple/template b/srcpkgs/perl-IPC-System-Simple/template
index 29fe8c39e4b..a022bad07c9 100644
--- a/srcpkgs/perl-IPC-System-Simple/template
+++ b/srcpkgs/perl-IPC-System-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-System-Simple
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Importer/template b/srcpkgs/perl-Importer/template
index 455ee533b1b..2d848054f57 100644
--- a/srcpkgs/perl-Importer/template
+++ b/srcpkgs/perl-Importer/template
@@ -2,7 +2,6 @@
 pkgname=perl-Importer
 version=0.025
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Inline-C/template b/srcpkgs/perl-Inline-C/template
index 1ed461f4ffa..a38df73e0c3 100644
--- a/srcpkgs/perl-Inline-C/template
+++ b/srcpkgs/perl-Inline-C/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline-C
 version=0.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Inline/template b/srcpkgs/perl-Inline/template
index 60849405c13..c8099adbad9 100644
--- a/srcpkgs/perl-Inline/template
+++ b/srcpkgs/perl-Inline/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline
 version=0.86
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON-MaybeXS/template b/srcpkgs/perl-JSON-MaybeXS/template
index 5bde5e5d988..88bf28d7481 100644
--- a/srcpkgs/perl-JSON-MaybeXS/template
+++ b/srcpkgs/perl-JSON-MaybeXS/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON-MaybeXS
 version=1.004002
 revision=1
-archs=noarch
 wrksrc="JSON-MaybeXS-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON/template b/srcpkgs/perl-JSON/template
index 2d3962b3835..a2386e14e2a 100644
--- a/srcpkgs/perl-JSON/template
+++ b/srcpkgs/perl-JSON/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON
 version=4.02
 revision=1
-archs=noarch
 wrksrc="JSON-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Keyword-Declare/template b/srcpkgs/perl-Keyword-Declare/template
index 67afa378530..54b839a4316 100644
--- a/srcpkgs/perl-Keyword-Declare/template
+++ b/srcpkgs/perl-Keyword-Declare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Declare
 version=0.001017
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope perl-Keyword-Simple perl-PPR"
diff --git a/srcpkgs/perl-Keyword-Simple/template b/srcpkgs/perl-Keyword-Simple/template
index abc491b1a2a..16b0a062a2b 100644
--- a/srcpkgs/perl-Keyword-Simple/template
+++ b/srcpkgs/perl-Keyword-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Simple
 version=0.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-MediaTypes/template b/srcpkgs/perl-LWP-MediaTypes/template
index bdb32bcf9ee..a861f096acd 100644
--- a/srcpkgs/perl-LWP-MediaTypes/template
+++ b/srcpkgs/perl-LWP-MediaTypes/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-MediaTypes
 version=6.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-https/template b/srcpkgs/perl-LWP-Protocol-https/template
index a78137a3199..5b64992fb00 100644
--- a/srcpkgs/perl-LWP-Protocol-https/template
+++ b/srcpkgs/perl-LWP-Protocol-https/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-https
 version=6.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-socks/template b/srcpkgs/perl-LWP-Protocol-socks/template
index 15a96605eea..dc2a1b01c58 100644
--- a/srcpkgs/perl-LWP-Protocol-socks/template
+++ b/srcpkgs/perl-LWP-Protocol-socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-socks
 version=1.7
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP/template b/srcpkgs/perl-LWP/template
index 52c256e3b80..24238e19363 100644
--- a/srcpkgs/perl-LWP/template
+++ b/srcpkgs/perl-LWP/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP
 version=6.47
 revision=1
-archs=noarch
 wrksrc="libwww-perl-${version}"
 build_style=perl-module
 hostmakedepends="
diff --git a/srcpkgs/perl-Lingua-Translit/template b/srcpkgs/perl-Lingua-Translit/template
index 075e12b8190..f3caaac516e 100644
--- a/srcpkgs/perl-Lingua-Translit/template
+++ b/srcpkgs/perl-Lingua-Translit/template
@@ -2,7 +2,6 @@
 pkgname=perl-Lingua-Translit
 version=0.28
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Linux-DesktopFiles/template b/srcpkgs/perl-Linux-DesktopFiles/template
index 9d6cda1c3f7..0cde8fbf700 100644
--- a/srcpkgs/perl-Linux-DesktopFiles/template
+++ b/srcpkgs/perl-Linux-DesktopFiles/template
@@ -4,7 +4,6 @@ version=0.25
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/perl-Linux-Distribution/template b/srcpkgs/perl-Linux-Distribution/template
index 01a726003d3..9e9ef9c3ac0 100644
--- a/srcpkgs/perl-Linux-Distribution/template
+++ b/srcpkgs/perl-Linux-Distribution/template
@@ -2,7 +2,6 @@
 pkgname=perl-Linux-Distribution
 version=0.23
 revision=2
-archs=noarch
 wrksrc="Linux-Distribution-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-AllUtils/template b/srcpkgs/perl-List-AllUtils/template
index a47d19136ac..2a422e705be 100644
--- a/srcpkgs/perl-List-AllUtils/template
+++ b/srcpkgs/perl-List-AllUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-AllUtils
 version=0.16
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-MoreUtils/template b/srcpkgs/perl-List-MoreUtils/template
index 55467ee119b..d4f371fc627 100644
--- a/srcpkgs/perl-List-MoreUtils/template
+++ b/srcpkgs/perl-List-MoreUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-MoreUtils
 version=0.428
 revision=2
-archs=noarch
 wrksrc="List-MoreUtils-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-SomeUtils/template b/srcpkgs/perl-List-SomeUtils/template
index df6e1570cd0..014fd652caa 100644
--- a/srcpkgs/perl-List-SomeUtils/template
+++ b/srcpkgs/perl-List-SomeUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-SomeUtils
 version=0.58
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-UtilsBy/template b/srcpkgs/perl-List-UtilsBy/template
index 7f22975ec4f..359fe5c1a9e 100644
--- a/srcpkgs/perl-List-UtilsBy/template
+++ b/srcpkgs/perl-List-UtilsBy/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-UtilsBy
 version=0.11
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Locale-PO/template b/srcpkgs/perl-Locale-PO/template
index 77341df5cdf..a7efbeec358 100644
--- a/srcpkgs/perl-Locale-PO/template
+++ b/srcpkgs/perl-Locale-PO/template
@@ -2,7 +2,6 @@
 pkgname=perl-Locale-PO
 version=0.27
 revision=3
-archs=noarch
 wrksrc="Locale-PO-${version}"
 build_style="perl-module"
 hostmakedepends="perl perl-File-Slurp"
diff --git a/srcpkgs/perl-Log-Log4perl/template b/srcpkgs/perl-Log-Log4perl/template
index 3af10b95a39..5633665e577 100644
--- a/srcpkgs/perl-Log-Log4perl/template
+++ b/srcpkgs/perl-Log-Log4perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Log-Log4perl
 version=1.50
 revision=1
-archs=noarch
 wrksrc="Log-Log4perl-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Charset/template b/srcpkgs/perl-MIME-Charset/template
index 568dc6d95e1..8aa6b243e7a 100644
--- a/srcpkgs/perl-MIME-Charset/template
+++ b/srcpkgs/perl-MIME-Charset/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Charset
 version=1.012.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Types/template b/srcpkgs/perl-MIME-Types/template
index 4ce98fe5137..7253144ee47 100644
--- a/srcpkgs/perl-MIME-Types/template
+++ b/srcpkgs/perl-MIME-Types/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Types
 version=2.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-tools/template b/srcpkgs/perl-MIME-tools/template
index e4df2da1748..f12f1e5cc1c 100644
--- a/srcpkgs/perl-MIME-tools/template
+++ b/srcpkgs/perl-MIME-tools/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-tools
 version=5.509
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Info/template b/srcpkgs/perl-MP3-Info/template
index 70b84cc316c..9bc827ca727 100644
--- a/srcpkgs/perl-MP3-Info/template
+++ b/srcpkgs/perl-MP3-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Info
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Tag/template b/srcpkgs/perl-MP3-Tag/template
index 1bff6e2e7b7..62377f0bea1 100644
--- a/srcpkgs/perl-MP3-Tag/template
+++ b/srcpkgs/perl-MP3-Tag/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Tag
 version=1.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl unzip"
diff --git a/srcpkgs/perl-MRO-Compat/template b/srcpkgs/perl-MRO-Compat/template
index bf51f72241c..6c09d01d943 100644
--- a/srcpkgs/perl-MRO-Compat/template
+++ b/srcpkgs/perl-MRO-Compat/template
@@ -2,7 +2,6 @@
 pkgname=perl-MRO-Compat
 version=0.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Box/template b/srcpkgs/perl-Mail-Box/template
index f2e68883b5e..c21c166845b 100644
--- a/srcpkgs/perl-Mail-Box/template
+++ b/srcpkgs/perl-Mail-Box/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Box
 version=3.008
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-DKIM/template b/srcpkgs/perl-Mail-DKIM/template
index 5dfd3f9b2f0..30af708ec25 100644
--- a/srcpkgs/perl-Mail-DKIM/template
+++ b/srcpkgs/perl-Mail-DKIM/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-DKIM
 version=1.20200724
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Message/template b/srcpkgs/perl-Mail-Message/template
index 1bf220ad388..76ed0153002 100644
--- a/srcpkgs/perl-Mail-Message/template
+++ b/srcpkgs/perl-Mail-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Message
 version=3.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-POP3Client/template b/srcpkgs/perl-Mail-POP3Client/template
index 5317b8ce273..577dfc1c30c 100644
--- a/srcpkgs/perl-Mail-POP3Client/template
+++ b/srcpkgs/perl-Mail-POP3Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-POP3Client
 version=2.19
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Sendmail/template b/srcpkgs/perl-Mail-Sendmail/template
index 55fdfc7f3ad..b61ecddae98 100644
--- a/srcpkgs/perl-Mail-Sendmail/template
+++ b/srcpkgs/perl-Mail-Sendmail/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Sendmail
 version=0.80
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Transport/template b/srcpkgs/perl-Mail-Transport/template
index 1e1501c286e..f1ec85e7000 100644
--- a/srcpkgs/perl-Mail-Transport/template
+++ b/srcpkgs/perl-Mail-Transport/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Transport
 version=3.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MailTools/template b/srcpkgs/perl-MailTools/template
index 8687178a114..65911f6edb5 100644
--- a/srcpkgs/perl-MailTools/template
+++ b/srcpkgs/perl-MailTools/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-TimeDate"
 depends="${makedepends}"
-archs=noarch
 short_desc="MailTools -- Various e-mail related modules"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://metacpan.org/release/MailTools"
diff --git a/srcpkgs/perl-Menlo-Legacy/template b/srcpkgs/perl-Menlo-Legacy/template
index 217e8836b13..5b285a92548 100644
--- a/srcpkgs/perl-Menlo-Legacy/template
+++ b/srcpkgs/perl-Menlo-Legacy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo-Legacy
 version=1.9022
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Menlo/template b/srcpkgs/perl-Menlo/template
index c16d725e03b..94751be3421 100644
--- a/srcpkgs/perl-Menlo/template
+++ b/srcpkgs/perl-Menlo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo
 version=1.9019
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mixin-Linewise/template b/srcpkgs/perl-Mixin-Linewise/template
index 1f2c66462b7..02573bc745a 100644
--- a/srcpkgs/perl-Mixin-Linewise/template
+++ b/srcpkgs/perl-Mixin-Linewise/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mixin-Linewise
 version=0.108
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-PerlIO-utf8-strict perl-Sub-Exporter"
diff --git a/srcpkgs/perl-Module-Build-Tiny/template b/srcpkgs/perl-Module-Build-Tiny/template
index f1b3c327040..e7c462fe4d6 100644
--- a/srcpkgs/perl-Module-Build-Tiny/template
+++ b/srcpkgs/perl-Module-Build-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build-Tiny
 version=0.039
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-ExtUtils-Config perl-ExtUtils-Helpers perl-ExtUtils-InstallPaths"
diff --git a/srcpkgs/perl-Module-Build/template b/srcpkgs/perl-Module-Build/template
index 654c0dedc6b..251896beee8 100644
--- a/srcpkgs/perl-Module-Build/template
+++ b/srcpkgs/perl-Module-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build
 version=0.4231
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-CPANfile/template b/srcpkgs/perl-Module-CPANfile/template
index b6c80ffe2d9..6a01786a74a 100644
--- a/srcpkgs/perl-Module-CPANfile/template
+++ b/srcpkgs/perl-Module-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-CPANfile
 version=1.1004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Find/template b/srcpkgs/perl-Module-Find/template
index 53aaaf84e0a..80d4c29af95 100644
--- a/srcpkgs/perl-Module-Find/template
+++ b/srcpkgs/perl-Module-Find/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Find
 version=0.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Implementation/template b/srcpkgs/perl-Module-Implementation/template
index cd8764774e0..725a6a104cb 100644
--- a/srcpkgs/perl-Module-Implementation/template
+++ b/srcpkgs/perl-Module-Implementation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Implementation
 version=0.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Manifest/template b/srcpkgs/perl-Module-Manifest/template
index 1a56b9da224..86674f57437 100644
--- a/srcpkgs/perl-Module-Manifest/template
+++ b/srcpkgs/perl-Module-Manifest/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Module-Manifest"
 license="Artistic, GPL-1"
 distfiles="$CPAN_SITE/Module/Module-Manifest-${version}.tar.gz"
 checksum=a395f80ff15ea0e66fd6c453844b6787ed4a875a3cd8df9f7e29280250bd539b
-archs=noarch
diff --git a/srcpkgs/perl-Module-Pluggable/template b/srcpkgs/perl-Module-Pluggable/template
index 793c7d6c8bd..b66ec862bdc 100644
--- a/srcpkgs/perl-Module-Pluggable/template
+++ b/srcpkgs/perl-Module-Pluggable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Pluggable
 version=5.2
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Runtime/template b/srcpkgs/perl-Module-Runtime/template
index a8e421f60e1..11231dffd67 100644
--- a/srcpkgs/perl-Module-Runtime/template
+++ b/srcpkgs/perl-Module-Runtime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Runtime
 version=0.016
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Mojolicious/template b/srcpkgs/perl-Mojolicious/template
index 14cf2b6160e..46174772c5e 100644
--- a/srcpkgs/perl-Mojolicious/template
+++ b/srcpkgs/perl-Mojolicious/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mojolicious
 version=8.42
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Monkey-Patch-Action/template b/srcpkgs/perl-Monkey-Patch-Action/template
index f13376e85df..2d7bfdf6240 100644
--- a/srcpkgs/perl-Monkey-Patch-Action/template
+++ b/srcpkgs/perl-Monkey-Patch-Action/template
@@ -2,7 +2,6 @@
 pkgname=perl-Monkey-Patch-Action
 version=0.061
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Moo/template b/srcpkgs/perl-Moo/template
index 155a50b3112..ad85f0207cb 100644
--- a/srcpkgs/perl-Moo/template
+++ b/srcpkgs/perl-Moo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Moo
 version=2.004000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mozilla-CA/template b/srcpkgs/perl-Mozilla-CA/template
index 3a406de17d2..60e89cd77e6 100644
--- a/srcpkgs/perl-Mozilla-CA/template
+++ b/srcpkgs/perl-Mozilla-CA/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mozilla-CA
 version=20200520
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS-Resolver-Mock/template b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
index 5583cb8138d..b31762710e9 100644
--- a/srcpkgs/perl-Net-DNS-Resolver-Mock/template
+++ b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS-Resolver-Mock
 version=1.20200215
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS/template b/srcpkgs/perl-Net-DNS/template
index efa3b7dd63e..ae5529844fc 100644
--- a/srcpkgs/perl-Net-DNS/template
+++ b/srcpkgs/perl-Net-DNS/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS
 version=1.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-HTTP/template b/srcpkgs/perl-Net-HTTP/template
index 105416774df..0b6d48cc134 100644
--- a/srcpkgs/perl-Net-HTTP/template
+++ b/srcpkgs/perl-Net-HTTP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-HTTP
 version=6.19
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Client/template b/srcpkgs/perl-Net-IMAP-Client/template
index 1e0f579548f..ddb280e9e4e 100644
--- a/srcpkgs/perl-Net-IMAP-Client/template
+++ b/srcpkgs/perl-Net-IMAP-Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Client
 version=0.9505
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Simple/template b/srcpkgs/perl-Net-IMAP-Simple/template
index 30d331492fb..70244a0ab64 100644
--- a/srcpkgs/perl-Net-IMAP-Simple/template
+++ b/srcpkgs/perl-Net-IMAP-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Simple
 version=1.2212
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-MPD/template b/srcpkgs/perl-Net-MPD/template
index 38363aa7b48..e69ff0d37cc 100644
--- a/srcpkgs/perl-Net-MPD/template
+++ b/srcpkgs/perl-Net-MPD/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-MPD
 version=0.07
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Net-OpenSSH/template b/srcpkgs/perl-Net-OpenSSH/template
index 69fc0d570e1..b8e6439ead8 100644
--- a/srcpkgs/perl-Net-OpenSSH/template
+++ b/srcpkgs/perl-Net-OpenSSH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-OpenSSH
 version=0.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SFTP-Foreign/template b/srcpkgs/perl-Net-SFTP-Foreign/template
index a447269f22a..852d70c9c5d 100644
--- a/srcpkgs/perl-Net-SFTP-Foreign/template
+++ b/srcpkgs/perl-Net-SFTP-Foreign/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SFTP-Foreign
 version=1.91
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SMTP-SSL/template b/srcpkgs/perl-Net-SMTP-SSL/template
index 4bceff607f7..066b9325ace 100644
--- a/srcpkgs/perl-Net-SMTP-SSL/template
+++ b/srcpkgs/perl-Net-SMTP-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SMTP-SSL
 version=1.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-Server/template b/srcpkgs/perl-Net-Server/template
index d6303b7a70b..663ed0d44de 100644
--- a/srcpkgs/perl-Net-Server/template
+++ b/srcpkgs/perl-Net-Server/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-Server
 version=2.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Compare/template b/srcpkgs/perl-Number-Compare/template
index df4eaca2780..c7a4c986303 100644
--- a/srcpkgs/perl-Number-Compare/template
+++ b/srcpkgs/perl-Number-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Compare
 version=0.03
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Format/template b/srcpkgs/perl-Number-Format/template
index f0c958a696c..435d082ab86 100644
--- a/srcpkgs/perl-Number-Format/template
+++ b/srcpkgs/perl-Number-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Format
 version=1.75
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-OLE-Storage_Lite/template b/srcpkgs/perl-OLE-Storage_Lite/template
index 28db86c8be5..37e893ecfa5 100644
--- a/srcpkgs/perl-OLE-Storage_Lite/template
+++ b/srcpkgs/perl-OLE-Storage_Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-OLE-Storage_Lite
 version=0.20
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-MultiType/template b/srcpkgs/perl-Object-MultiType/template
index 7caf30b452d..0a459d4e712 100644
--- a/srcpkgs/perl-Object-MultiType/template
+++ b/srcpkgs/perl-Object-MultiType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-MultiType
 version=0.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-Realize-Later/template b/srcpkgs/perl-Object-Realize-Later/template
index 51682d45083..6aa801950c7 100644
--- a/srcpkgs/perl-Object-Realize-Later/template
+++ b/srcpkgs/perl-Object-Realize-Later/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-Realize-Later
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PDF-API2/template b/srcpkgs/perl-PDF-API2/template
index 076c45b88ec..b8169a27809 100644
--- a/srcpkgs/perl-PDF-API2/template
+++ b/srcpkgs/perl-PDF-API2/template
@@ -2,7 +2,6 @@
 pkgname=perl-PDF-API2
 version=2.037
 revision=1
-archs=noarch
 wrksrc="PDF-API2-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-POSIX-strftime-Compiler/template b/srcpkgs/perl-POSIX-strftime-Compiler/template
index 6b68d220377..5b9eff0e86a 100644
--- a/srcpkgs/perl-POSIX-strftime-Compiler/template
+++ b/srcpkgs/perl-POSIX-strftime-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-POSIX-strftime-Compiler
 version=0.44
 revision=1
-archs=noarch
 wrksrc="POSIX-strftime-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-PPR/template b/srcpkgs/perl-PPR/template
index bc7165f468a..2ed7e88c560 100644
--- a/srcpkgs/perl-PPR/template
+++ b/srcpkgs/perl-PPR/template
@@ -2,7 +2,6 @@
 pkgname=perl-PPR
 version=0.000028
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope"
diff --git a/srcpkgs/perl-Package-DeprecationManager/template b/srcpkgs/perl-Package-DeprecationManager/template
index 9e4cf28789d..6a5d31909f1 100644
--- a/srcpkgs/perl-Package-DeprecationManager/template
+++ b/srcpkgs/perl-Package-DeprecationManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-DeprecationManager
 version=0.17
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Package-Stash/template b/srcpkgs/perl-Package-Stash/template
index 4b021644ae0..9a17b5d6bc0 100644
--- a/srcpkgs/perl-Package-Stash/template
+++ b/srcpkgs/perl-Package-Stash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-Stash
 version=0.38
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Dist-CheckConflicts"
diff --git a/srcpkgs/perl-Parallel-ForkManager/template b/srcpkgs/perl-Parallel-ForkManager/template
index ba0d496c36f..e0195f5ddbf 100644
--- a/srcpkgs/perl-Parallel-ForkManager/template
+++ b/srcpkgs/perl-Parallel-ForkManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parallel-ForkManager
 version=2.02
 revision=1
-archs=noarch
 wrksrc="Parallel-ForkManager-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Params-ValidationCompiler/template b/srcpkgs/perl-Params-ValidationCompiler/template
index 79331a19c2d..a3e5a189a72 100644
--- a/srcpkgs/perl-Params-ValidationCompiler/template
+++ b/srcpkgs/perl-Params-ValidationCompiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Params-ValidationCompiler
 version=0.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-CPAN-Meta/template b/srcpkgs/perl-Parse-CPAN-Meta/template
index 7f2a04132a2..0463d20ca47 100644
--- a/srcpkgs/perl-Parse-CPAN-Meta/template
+++ b/srcpkgs/perl-Parse-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-CPAN-Meta
 version=1.4422
 revision=2
-archs=noarch
 wrksrc="Parse-CPAN-Meta-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-PMFile/template b/srcpkgs/perl-Parse-PMFile/template
index 3d406c6d5c3..5090b138072 100644
--- a/srcpkgs/perl-Parse-PMFile/template
+++ b/srcpkgs/perl-Parse-PMFile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-PMFile
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-MakeMaker-CPANfile perl-Module-CPANfile"
diff --git a/srcpkgs/perl-Parse-RecDescent/template b/srcpkgs/perl-Parse-RecDescent/template
index 272fe0008b6..d8236b57ce9 100644
--- a/srcpkgs/perl-Parse-RecDescent/template
+++ b/srcpkgs/perl-Parse-RecDescent/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-RecDescent
 version=1.967015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-Yapp/template b/srcpkgs/perl-Parse-Yapp/template
index bd200ede930..593310b30cf 100644
--- a/srcpkgs/perl-Parse-Yapp/template
+++ b/srcpkgs/perl-Parse-Yapp/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-Yapp
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PatchReader/template b/srcpkgs/perl-PatchReader/template
index 51cd3172766..f92209bfd06 100644
--- a/srcpkgs/perl-PatchReader/template
+++ b/srcpkgs/perl-PatchReader/template
@@ -2,7 +2,6 @@
 pkgname=perl-PatchReader
 version=0.9.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Path-Tiny/template b/srcpkgs/perl-Path-Tiny/template
index 6db01f7ff4e..c81538f8fbd 100644
--- a/srcpkgs/perl-Path-Tiny/template
+++ b/srcpkgs/perl-Path-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Path-Tiny
 version=0.114
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Pegex/template b/srcpkgs/perl-Pegex/template
index b1ae1eef38f..c6531608145 100644
--- a/srcpkgs/perl-Pegex/template
+++ b/srcpkgs/perl-Pegex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pegex
 version=0.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Plack-Middleware-Deflater/template b/srcpkgs/perl-Plack-Middleware-Deflater/template
index c18fa1932bd..64e97653d56 100644
--- a/srcpkgs/perl-Plack-Middleware-Deflater/template
+++ b/srcpkgs/perl-Plack-Middleware-Deflater/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Plack-Middleware-Deflater"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-Deflater-${version}.tar.gz"
 checksum=28da95e7da4c8b5591ac454509c92176cd0842960ce074fde30f9a1075dcc275
-archs=noarch
diff --git a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
index 3c120a2ce23..4187eaf1bd3 100644
--- a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
+++ b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Plack-Middleware-ReverseProxy"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-ReverseProxy-${version}.tar.gz"
 checksum=874931d37d07667ba0d0f37903b94511071f4191feb73fa45765da2b8c15a128
-archs="noarch"
diff --git a/srcpkgs/perl-Plack/template b/srcpkgs/perl-Plack/template
index 6954a1eccc1..b0893d9875d 100644
--- a/srcpkgs/perl-Plack/template
+++ b/srcpkgs/perl-Plack/template
@@ -18,4 +18,3 @@ homepage="https://metacpan.org/release/Plack"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-${version}.tar.gz"
 checksum=322c93f5acc0a0f0e11fd4a76188f978bdc14338a9f1df3ae535227017046561
-archs=noarch
diff --git a/srcpkgs/perl-Pod-Coverage/template b/srcpkgs/perl-Pod-Coverage/template
index 6202ae090fc..50545eed804 100644
--- a/srcpkgs/perl-Pod-Coverage/template
+++ b/srcpkgs/perl-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Coverage
 version=0.23
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-Symdump"
diff --git a/srcpkgs/perl-Pod-Simple-Text-Termcap/template b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
index 65fcd4aa738..7df35f1e433 100644
--- a/srcpkgs/perl-Pod-Simple-Text-Termcap/template
+++ b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Simple-Text-Termcap
 version=0.01
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Probe-Perl/template b/srcpkgs/perl-Probe-Perl/template
index 673236a744c..cef72577248 100644
--- a/srcpkgs/perl-Probe-Perl/template
+++ b/srcpkgs/perl-Probe-Perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Probe-Perl
 version=0.03
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Daemontools/template b/srcpkgs/perl-Proc-Daemontools/template
index ded05432e82..c4979387c25 100644
--- a/srcpkgs/perl-Proc-Daemontools/template
+++ b/srcpkgs/perl-Proc-Daemontools/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Daemontools
 version=1.06
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Govern/template b/srcpkgs/perl-Proc-Govern/template
index 5b999a8099e..910bd8a0be7 100644
--- a/srcpkgs/perl-Proc-Govern/template
+++ b/srcpkgs/perl-Proc-Govern/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Govern
 version=0.209
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-PID-File/template b/srcpkgs/perl-Proc-PID-File/template
index c0a1929f98c..40b10ab049a 100644
--- a/srcpkgs/perl-Proc-PID-File/template
+++ b/srcpkgs/perl-Proc-PID-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-PID-File
 version=1.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Readonly/template b/srcpkgs/perl-Readonly/template
index fafb9a80950..d6a5e85c73d 100644
--- a/srcpkgs/perl-Readonly/template
+++ b/srcpkgs/perl-Readonly/template
@@ -2,7 +2,6 @@
 pkgname=perl-Readonly
 version=2.05
 revision=2
-archs=noarch
 wrksrc="Readonly-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Ref-Util/template b/srcpkgs/perl-Ref-Util/template
index 2b6acde1820..66a77e571ab 100644
--- a/srcpkgs/perl-Ref-Util/template
+++ b/srcpkgs/perl-Ref-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Ref-Util
 version=0.204
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Common/template b/srcpkgs/perl-Regexp-Common/template
index 0a8ef2222cb..6b9d253162b 100644
--- a/srcpkgs/perl-Regexp-Common/template
+++ b/srcpkgs/perl-Regexp-Common/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Common
 version=2017060201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Grammars/template b/srcpkgs/perl-Regexp-Grammars/template
index cae12ff654b..761e58df7ff 100644
--- a/srcpkgs/perl-Regexp-Grammars/template
+++ b/srcpkgs/perl-Regexp-Grammars/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Grammars
 version=1.057
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Reply/template b/srcpkgs/perl-Reply/template
index 8dc0d7fb756..64a4341d012 100644
--- a/srcpkgs/perl-Reply/template
+++ b/srcpkgs/perl-Reply/template
@@ -2,7 +2,6 @@
 pkgname=perl-Reply
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-LexAlias perl-Eval-Closure perl-Package-Stash perl-PadWalker perl-Term-ReadLine-Gnu perl-Try-Tiny perl-File-HomeDir perl-Config-INI-Reader-Ordered"
diff --git a/srcpkgs/perl-Role-Tiny/template b/srcpkgs/perl-Role-Tiny/template
index 7eb125fbd4e..a51bd0ec025 100644
--- a/srcpkgs/perl-Role-Tiny/template
+++ b/srcpkgs/perl-Role-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Role-Tiny
 version=2.001004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SGMLSpm/template b/srcpkgs/perl-SGMLSpm/template
index e1f9ac69878..2ece0a3567e 100644
--- a/srcpkgs/perl-SGMLSpm/template
+++ b/srcpkgs/perl-SGMLSpm/template
@@ -4,7 +4,6 @@ version=1.1
 revision=1
 wrksrc=${pkgname/perl-/}-${version}
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-SOAP-Lite/template b/srcpkgs/perl-SOAP-Lite/template
index e74a27a0497..e0382bf0464 100644
--- a/srcpkgs/perl-SOAP-Lite/template
+++ b/srcpkgs/perl-SOAP-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-SOAP-Lite
 version=1.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SUPER/template b/srcpkgs/perl-SUPER/template
index 1b11e76b38e..89c9f219f55 100644
--- a/srcpkgs/perl-SUPER/template
+++ b/srcpkgs/perl-SUPER/template
@@ -2,7 +2,6 @@
 pkgname=perl-SUPER
 version=1.20190531
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Scope-Guard/template b/srcpkgs/perl-Scope-Guard/template
index f17c470e784..85a5038e0c0 100644
--- a/srcpkgs/perl-Scope-Guard/template
+++ b/srcpkgs/perl-Scope-Guard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Scope-Guard
 version=0.21
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Set-IntSpan/template b/srcpkgs/perl-Set-IntSpan/template
index 681aa0b1386..f6565cf8ce3 100644
--- a/srcpkgs/perl-Set-IntSpan/template
+++ b/srcpkgs/perl-Set-IntSpan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Set-IntSpan
 version=1.19
 revision=2
-archs=noarch
 wrksrc="Set-IntSpan-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Naturally/template b/srcpkgs/perl-Sort-Naturally/template
index 11cfb97cfe4..a621922cdc4 100644
--- a/srcpkgs/perl-Sort-Naturally/template
+++ b/srcpkgs/perl-Sort-Naturally/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Naturally
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Versions/template b/srcpkgs/perl-Sort-Versions/template
index 292e0def8ea..97efedd9fa6 100644
--- a/srcpkgs/perl-Sort-Versions/template
+++ b/srcpkgs/perl-Sort-Versions/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Versions
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Specio/template b/srcpkgs/perl-Specio/template
index 22fc22f79e8..353cd58a5fe 100644
--- a/srcpkgs/perl-Specio/template
+++ b/srcpkgs/perl-Specio/template
@@ -2,7 +2,6 @@
 pkgname=perl-Specio
 version=0.46
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spiffy/template b/srcpkgs/perl-Spiffy/template
index 4412ade6858..d2ae23c5386 100644
--- a/srcpkgs/perl-Spiffy/template
+++ b/srcpkgs/perl-Spiffy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spiffy
 version=0.46
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseExcel/template b/srcpkgs/perl-Spreadsheet-ParseExcel/template
index 748f157113a..c5449492a99 100644
--- a/srcpkgs/perl-Spreadsheet-ParseExcel/template
+++ b/srcpkgs/perl-Spreadsheet-ParseExcel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseExcel
 version=0.65
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseXLSX/template b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
index 189c47dd66b..da0e9fa9e7f 100644
--- a/srcpkgs/perl-Spreadsheet-ParseXLSX/template
+++ b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseXLSX
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Stow/template b/srcpkgs/perl-Stow/template
index 9ed2a52ed93..c52f0ec06cd 100644
--- a/srcpkgs/perl-Stow/template
+++ b/srcpkgs/perl-Stow/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stow
 version=2.3.1
 revision=1
-archs=noarch
 wrksrc="Stow-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Output perl-IO-stringy"
diff --git a/srcpkgs/perl-Stream-Buffered/template b/srcpkgs/perl-Stream-Buffered/template
index d872e01d511..ed0566b75d7 100644
--- a/srcpkgs/perl-Stream-Buffered/template
+++ b/srcpkgs/perl-Stream-Buffered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stream-Buffered
 version=0.03
 revision=2
-archs=noarch
 wrksrc="Stream-Buffered-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-Escape/template b/srcpkgs/perl-String-Escape/template
index f33bacae2a8..d62b712adf1 100644
--- a/srcpkgs/perl-String-Escape/template
+++ b/srcpkgs/perl-String-Escape/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-Escape
 version=2010.002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-ShellQuote/template b/srcpkgs/perl-String-ShellQuote/template
index 7992c6bfd54..0620e27d55e 100644
--- a/srcpkgs/perl-String-ShellQuote/template
+++ b/srcpkgs/perl-String-ShellQuote/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-ShellQuote
 version=1.04
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Delete/template b/srcpkgs/perl-Sub-Delete/template
index f57c5ceee74..b93395a327f 100644
--- a/srcpkgs/perl-Sub-Delete/template
+++ b/srcpkgs/perl-Sub-Delete/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Delete
 version=1.00002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter-Progressive/template b/srcpkgs/perl-Sub-Exporter-Progressive/template
index ba7ff3325fd..ca3735cf30d 100644
--- a/srcpkgs/perl-Sub-Exporter-Progressive/template
+++ b/srcpkgs/perl-Sub-Exporter-Progressive/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter-Progressive
 version=0.001013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter/template b/srcpkgs/perl-Sub-Exporter/template
index 580e244d5bf..fd7835fa11b 100644
--- a/srcpkgs/perl-Sub-Exporter/template
+++ b/srcpkgs/perl-Sub-Exporter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter
 version=0.987
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Info/template b/srcpkgs/perl-Sub-Info/template
index 6026d8f5bf2..b92e7492406 100644
--- a/srcpkgs/perl-Sub-Info/template
+++ b/srcpkgs/perl-Sub-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Info
 version=0.002
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Install/template b/srcpkgs/perl-Sub-Install/template
index ef853d0d7fd..9515c5147a4 100644
--- a/srcpkgs/perl-Sub-Install/template
+++ b/srcpkgs/perl-Sub-Install/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Install
 version=0.928
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Quote/template b/srcpkgs/perl-Sub-Quote/template
index 1ab6d42ec20..8f0f784f114 100644
--- a/srcpkgs/perl-Sub-Quote/template
+++ b/srcpkgs/perl-Sub-Quote/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Quote
 version=2.006006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Uplevel/template b/srcpkgs/perl-Sub-Uplevel/template
index 5986ba70ba7..eddf582a4e3 100644
--- a/srcpkgs/perl-Sub-Uplevel/template
+++ b/srcpkgs/perl-Sub-Uplevel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Uplevel
 version=0.2800
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Svsh/template b/srcpkgs/perl-Svsh/template
index 06a7bfa948e..c70cb1572d4 100644
--- a/srcpkgs/perl-Svsh/template
+++ b/srcpkgs/perl-Svsh/template
@@ -2,7 +2,6 @@
 pkgname=perl-Svsh
 version=1.002000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sys-Syscall/template b/srcpkgs/perl-Sys-Syscall/template
index cdcc58dc479..564b0dab0eb 100644
--- a/srcpkgs/perl-Sys-Syscall/template
+++ b/srcpkgs/perl-Sys-Syscall/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sys-Syscall
 version=0.25
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Animation/template b/srcpkgs/perl-Term-Animation/template
index 3341a3eab6c..bfe5c34c8dc 100644
--- a/srcpkgs/perl-Term-Animation/template
+++ b/srcpkgs/perl-Term-Animation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Animation
 version=2.6
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Curses"
diff --git a/srcpkgs/perl-Term-ExtendedColor/template b/srcpkgs/perl-Term-ExtendedColor/template
index 971fc6ffbd0..b4936d810ce 100644
--- a/srcpkgs/perl-Term-ExtendedColor/template
+++ b/srcpkgs/perl-Term-ExtendedColor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ExtendedColor
 version=0.504
 revision=1
-archs=noarch
 wrksrc="Term-ExtendedColor-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-ShellUI/template b/srcpkgs/perl-Term-ShellUI/template
index f5d77d801db..dfd12fc0ba4 100644
--- a/srcpkgs/perl-Term-ShellUI/template
+++ b/srcpkgs/perl-Term-ShellUI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ShellUI
 version=0.92
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Table/template b/srcpkgs/perl-Term-Table/template
index 0934b654d5a..e2a14a69a6a 100644
--- a/srcpkgs/perl-Term-Table/template
+++ b/srcpkgs/perl-Term-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Table
 version=0.015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Base/template b/srcpkgs/perl-Test-Base/template
index 9eef8acf384..dd7e15cc716 100644
--- a/srcpkgs/perl-Test-Base/template
+++ b/srcpkgs/perl-Test-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Base
 version=0.89
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-CPAN-Meta/template b/srcpkgs/perl-Test-CPAN-Meta/template
index 3c21325b9e1..694b3b17142 100644
--- a/srcpkgs/perl-Test-CPAN-Meta/template
+++ b/srcpkgs/perl-Test-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-CPAN-Meta
 version=0.25
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Class/template b/srcpkgs/perl-Test-Class/template
index 1b60133766e..aeff642718d 100644
--- a/srcpkgs/perl-Test-Class/template
+++ b/srcpkgs/perl-Test-Class/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Class
 version=0.50
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Cmd/template b/srcpkgs/perl-Test-Cmd/template
index aa4e8c68a7c..b667845728b 100644
--- a/srcpkgs/perl-Test-Cmd/template
+++ b/srcpkgs/perl-Test-Cmd/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Cmd
 version=1.09
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Command/template b/srcpkgs/perl-Test-Command/template
index 2232d4c1d82..3b42a6f14eb 100644
--- a/srcpkgs/perl-Test-Command/template
+++ b/srcpkgs/perl-Test-Command/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Command
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Deep/template b/srcpkgs/perl-Test-Deep/template
index 6bde21fc2ff..a8127d43469 100644
--- a/srcpkgs/perl-Test-Deep/template
+++ b/srcpkgs/perl-Test-Deep/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Deep
 version=1.130
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Differences/template b/srcpkgs/perl-Test-Differences/template
index b65ac242d0c..1fed4aa2222 100644
--- a/srcpkgs/perl-Test-Differences/template
+++ b/srcpkgs/perl-Test-Differences/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Differences
 version=0.67
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Diff"
diff --git a/srcpkgs/perl-Test-DistManifest/template b/srcpkgs/perl-Test-DistManifest/template
index 31d92ee2296..da092b7a3c5 100644
--- a/srcpkgs/perl-Test-DistManifest/template
+++ b/srcpkgs/perl-Test-DistManifest/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-DistManifest
 version=1.014
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Test-NoWarnings perl-Module-Manifest"
diff --git a/srcpkgs/perl-Test-Exception/template b/srcpkgs/perl-Test-Exception/template
index 6fe7eec0c4a..e66c8fc81ac 100644
--- a/srcpkgs/perl-Test-Exception/template
+++ b/srcpkgs/perl-Test-Exception/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Exception
 version=0.43
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Sub-Uplevel"
diff --git a/srcpkgs/perl-Test-FailWarnings/template b/srcpkgs/perl-Test-FailWarnings/template
index e3fdb4ab06e..d585bd9b896 100644
--- a/srcpkgs/perl-Test-FailWarnings/template
+++ b/srcpkgs/perl-Test-FailWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-FailWarnings
 version=0.008
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Fatal/template b/srcpkgs/perl-Test-Fatal/template
index e67737a383d..e467fb12fb2 100644
--- a/srcpkgs/perl-Test-Fatal/template
+++ b/srcpkgs/perl-Test-Fatal/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Fatal
 version=0.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File-ShareDir/template b/srcpkgs/perl-Test-File-ShareDir/template
index 6dd421ddbde..75ff5004ffb 100644
--- a/srcpkgs/perl-Test-File-ShareDir/template
+++ b/srcpkgs/perl-Test-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File-ShareDir
 version=1.001002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File/template b/srcpkgs/perl-Test-File/template
index 08d104ca38a..7206a9d5d8a 100644
--- a/srcpkgs/perl-Test-File/template
+++ b/srcpkgs/perl-Test-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File
 version=1.443
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-HTTP-Server-Simple/template b/srcpkgs/perl-Test-HTTP-Server-Simple/template
index a9ea7150716..215be3be929 100644
--- a/srcpkgs/perl-Test-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-Test-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-HTTP-Server-Simple
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Inter/template b/srcpkgs/perl-Test-Inter/template
index 321f710da5f..f43818096b0 100644
--- a/srcpkgs/perl-Test-Inter/template
+++ b/srcpkgs/perl-Test-Inter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Inter
 version=1.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Find-Rule"
diff --git a/srcpkgs/perl-Test-MockModule/template b/srcpkgs/perl-Test-MockModule/template
index 23acd60fdb8..1d7a8e5b1c3 100644
--- a/srcpkgs/perl-Test-MockModule/template
+++ b/srcpkgs/perl-Test-MockModule/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-MockModule
 version=0.172.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Test-Most/template b/srcpkgs/perl-Test-Most/template
index 6a9db439290..532381fa8ee 100644
--- a/srcpkgs/perl-Test-Most/template
+++ b/srcpkgs/perl-Test-Most/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Most
 version=0.37
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Needs/template b/srcpkgs/perl-Test-Needs/template
index e5c81edc3ac..5e54b40b06c 100644
--- a/srcpkgs/perl-Test-Needs/template
+++ b/srcpkgs/perl-Test-Needs/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Needs
 version=0.002006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-NoWarnings/template b/srcpkgs/perl-Test-NoWarnings/template
index 96e81fec90f..fd15cd958a0 100644
--- a/srcpkgs/perl-Test-NoWarnings/template
+++ b/srcpkgs/perl-Test-NoWarnings/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Test::NoWarnings - Make sure you did not emit warnings while testing.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-NoWarnings"
diff --git a/srcpkgs/perl-Test-Output/template b/srcpkgs/perl-Test-Output/template
index df03ea4add2..5a625bee5f3 100644
--- a/srcpkgs/perl-Test-Output/template
+++ b/srcpkgs/perl-Test-Output/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Output
 version=1.031
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Pod-Coverage/template b/srcpkgs/perl-Test-Pod-Coverage/template
index a752e59d35d..19cb1a8f2f9 100644
--- a/srcpkgs/perl-Test-Pod-Coverage/template
+++ b/srcpkgs/perl-Test-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Pod-Coverage
 version=1.10
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Pod-Coverage"
diff --git a/srcpkgs/perl-Test-Pod/template b/srcpkgs/perl-Test-Pod/template
index c34f8ea27df..cbfd3ff23c2 100644
--- a/srcpkgs/perl-Test-Pod/template
+++ b/srcpkgs/perl-Test-Pod/template
@@ -12,4 +12,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Test-Pod"
 distfiles="${CPAN_SITE}/Test/Test-Pod-${version}.tar.gz"
 checksum=60a8dbcc60168bf1daa5cc2350236df9343e9878f4ab9830970a5dde6fe8e5fc
-archs=noarch
diff --git a/srcpkgs/perl-Test-Requires/template b/srcpkgs/perl-Test-Requires/template
index 64ffb6664b7..8e8818008b7 100644
--- a/srcpkgs/perl-Test-Requires/template
+++ b/srcpkgs/perl-Test-Requires/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Requires
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-RequiresInternet/template b/srcpkgs/perl-Test-RequiresInternet/template
index 69d8f515348..075072dee81 100644
--- a/srcpkgs/perl-Test-RequiresInternet/template
+++ b/srcpkgs/perl-Test-RequiresInternet/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-RequiresInternet
 version=0.05
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Script/template b/srcpkgs/perl-Test-Script/template
index 3dc87e44f2f..ae1409a00ae 100644
--- a/srcpkgs/perl-Test-Script/template
+++ b/srcpkgs/perl-Test-Script/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Script
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Probe-Perl perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Test-SharedFork/template b/srcpkgs/perl-Test-SharedFork/template
index b975ff0ecc3..66b02b46b37 100644
--- a/srcpkgs/perl-Test-SharedFork/template
+++ b/srcpkgs/perl-Test-SharedFork/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-SharedFork
 version=0.35
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Simple/template b/srcpkgs/perl-Test-Simple/template
index 963b288dc55..daa105b57de 100644
--- a/srcpkgs/perl-Test-Simple/template
+++ b/srcpkgs/perl-Test-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Simple
 version=1.302175
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Subroutines/template b/srcpkgs/perl-Test-Subroutines/template
index acfd9da0cd8..316a27b3ab7 100644
--- a/srcpkgs/perl-Test-Subroutines/template
+++ b/srcpkgs/perl-Test-Subroutines/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Subroutines
 version=1.113350
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-TCP/template b/srcpkgs/perl-Test-TCP/template
index 31caea2c412..48ff54b37a0 100644
--- a/srcpkgs/perl-Test-TCP/template
+++ b/srcpkgs/perl-Test-TCP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-TCP
 version=2.22
 revision=1
-archs=noarch
 wrksrc="Test-TCP-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Time/template b/srcpkgs/perl-Test-Time/template
index 5af68205289..7f65a8e54e2 100644
--- a/srcpkgs/perl-Test-Time/template
+++ b/srcpkgs/perl-Test-Time/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Time
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Trap/template b/srcpkgs/perl-Test-Trap/template
index 79e8b842023..108e7c6e2d3 100644
--- a/srcpkgs/perl-Test-Trap/template
+++ b/srcpkgs/perl-Test-Trap/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Data-Dump"
 makedepends="$hostmakedepends"
 depends="$hostmakedepends"
-archs=noarch
 short_desc='Test::Trap - Trap exit codes, exceptions, output, etc.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-Trap"
diff --git a/srcpkgs/perl-Test-UseAllModules/template b/srcpkgs/perl-Test-UseAllModules/template
index 1205fc0be5d..003c510ec78 100644
--- a/srcpkgs/perl-Test-UseAllModules/template
+++ b/srcpkgs/perl-Test-UseAllModules/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Test-UseAllModules"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Test/Test-UseAllModules-${version}.tar.gz"
 checksum=a71f2fe8b96ab8bfc2760aa1d3135ea049a5b20dcb105457b769a1195c7a2509
-archs=noarch
diff --git a/srcpkgs/perl-Test-Warn/template b/srcpkgs/perl-Test-Warn/template
index 174a5303531..a643e723110 100644
--- a/srcpkgs/perl-Test-Warn/template
+++ b/srcpkgs/perl-Test-Warn/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warn
 version=0.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Warnings/template b/srcpkgs/perl-Test-Warnings/template
index 465830261d6..988e26c5ae4 100644
--- a/srcpkgs/perl-Test-Warnings/template
+++ b/srcpkgs/perl-Test-Warnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warnings
 version=0.030
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Weaken/template b/srcpkgs/perl-Test-Weaken/template
index f336b5a09b6..6cfef3bf09a 100644
--- a/srcpkgs/perl-Test-Weaken/template
+++ b/srcpkgs/perl-Test-Weaken/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Weaken
 version=3.022000
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Without-Module/template b/srcpkgs/perl-Test-Without-Module/template
index 662a2293596..f869abe5d61 100644
--- a/srcpkgs/perl-Test-Without-Module/template
+++ b/srcpkgs/perl-Test-Without-Module/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Without-Module
 version=0.20
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-YAML/template b/srcpkgs/perl-Test-YAML/template
index 21f167214ef..a4c1e3c1389 100644
--- a/srcpkgs/perl-Test-YAML/template
+++ b/srcpkgs/perl-Test-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-YAML
 version=1.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-utf8/template b/srcpkgs/perl-Test-utf8/template
index 3b331fae4ec..56e18704f89 100644
--- a/srcpkgs/perl-Test-utf8/template
+++ b/srcpkgs/perl-Test-utf8/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-utf8
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Plugin-NoWarnings/template b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
index 45501cb5757..31813c6a98e 100644
--- a/srcpkgs/perl-Test2-Plugin-NoWarnings/template
+++ b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Plugin-NoWarnings
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Suite/template b/srcpkgs/perl-Test2-Suite/template
index 57ac88d0ff6..82813453486 100644
--- a/srcpkgs/perl-Test2-Suite/template
+++ b/srcpkgs/perl-Test2-Suite/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Suite
 version=0.000129
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-ASCIITable/template b/srcpkgs/perl-Text-ASCIITable/template
index c9cde14602c..3250aa44596 100644
--- a/srcpkgs/perl-Text-ASCIITable/template
+++ b/srcpkgs/perl-Text-ASCIITable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-ASCIITable
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Text-Aligner/template b/srcpkgs/perl-Text-Aligner/template
index d2c819ffc37..fcecd066492 100644
--- a/srcpkgs/perl-Text-Aligner/template
+++ b/srcpkgs/perl-Text-Aligner/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Aligner
 version=0.16
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Autoformat/template b/srcpkgs/perl-Text-Autoformat/template
index 38486635f16..d154567480e 100644
--- a/srcpkgs/perl-Text-Autoformat/template
+++ b/srcpkgs/perl-Text-Autoformat/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Autoformat
 version=1.75
 revision=1
-archs=noarch
 wrksrc="Text-Autoformat-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Reform"
diff --git a/srcpkgs/perl-Text-CSV/template b/srcpkgs/perl-Text-CSV/template
index b5a7d98cca5..20fa46051ac 100644
--- a/srcpkgs/perl-Text-CSV/template
+++ b/srcpkgs/perl-Text-CSV/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-CSV
 version=2.00
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Diff/template b/srcpkgs/perl-Text-Diff/template
index 9867a6ea528..73f9054c0d9 100644
--- a/srcpkgs/perl-Text-Diff/template
+++ b/srcpkgs/perl-Text-Diff/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Algorithm-Diff"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Text::Diff - Perform diffs on files and record sets'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Text-Diff"
diff --git a/srcpkgs/perl-Text-Glob/template b/srcpkgs/perl-Text-Glob/template
index cfe57391caf..3d4a030dd06 100644
--- a/srcpkgs/perl-Text-Glob/template
+++ b/srcpkgs/perl-Text-Glob/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Glob
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Markdown/template b/srcpkgs/perl-Text-Markdown/template
index 753ace32d12..300414f4746 100644
--- a/srcpkgs/perl-Text-Markdown/template
+++ b/srcpkgs/perl-Text-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Markdown
 version=1.000031
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Reform/template b/srcpkgs/perl-Text-Reform/template
index dd1b6b62268..9cd9582f468 100644
--- a/srcpkgs/perl-Text-Reform/template
+++ b/srcpkgs/perl-Text-Reform/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Reform
 version=1.20
 revision=2
-archs=noarch
 wrksrc="Text-Reform-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Roman/template b/srcpkgs/perl-Text-Roman/template
index 80d0865b293..a5d09c1287b 100644
--- a/srcpkgs/perl-Text-Roman/template
+++ b/srcpkgs/perl-Text-Roman/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Roman
 version=3.5
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Table/template b/srcpkgs/perl-Text-Table/template
index 4f74932bfe9..ed02ceae69e 100644
--- a/srcpkgs/perl-Text-Table/template
+++ b/srcpkgs/perl-Text-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Table
 version=1.134
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Unidecode/template b/srcpkgs/perl-Text-Unidecode/template
index 220aa563058..ed3ecd863ac 100644
--- a/srcpkgs/perl-Text-Unidecode/template
+++ b/srcpkgs/perl-Text-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Unidecode
 version=1.30
 revision=1
-archs=noarch
 wrksrc="Text-Unidecode-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-WrapI18N/template b/srcpkgs/perl-Text-WrapI18N/template
index b356989f72c..89897a18bbe 100644
--- a/srcpkgs/perl-Text-WrapI18N/template
+++ b/srcpkgs/perl-Text-WrapI18N/template
@@ -4,7 +4,6 @@ version=0.06
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl perl-Text-CharWidth"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-Text-XLogfile/template b/srcpkgs/perl-Text-XLogfile/template
index 6cc929a6493..893e5ff0710 100644
--- a/srcpkgs/perl-Text-XLogfile/template
+++ b/srcpkgs/perl-Text-XLogfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-XLogfile
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Cycle/template b/srcpkgs/perl-Tie-Cycle/template
index 5010b16ec37..35e968852cd 100644
--- a/srcpkgs/perl-Tie-Cycle/template
+++ b/srcpkgs/perl-Tie-Cycle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Cycle
 version=1.225
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Handle-Offset/template b/srcpkgs/perl-Tie-Handle-Offset/template
index 88e4298951d..fd4aa1745fa 100644
--- a/srcpkgs/perl-Tie-Handle-Offset/template
+++ b/srcpkgs/perl-Tie-Handle-Offset/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Handle-Offset
 version=0.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-IxHash/template b/srcpkgs/perl-Tie-IxHash/template
index 9d926ee407e..4fb6114ce42 100644
--- a/srcpkgs/perl-Tie-IxHash/template
+++ b/srcpkgs/perl-Tie-IxHash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-IxHash
 version=1.23
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-Duration/template b/srcpkgs/perl-Time-Duration/template
index 686edca3d76..23fa2c1e0ee 100644
--- a/srcpkgs/perl-Time-Duration/template
+++ b/srcpkgs/perl-Time-Duration/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-Duration
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-modules/template b/srcpkgs/perl-Time-modules/template
index 0bd579a552a..c79a85f112d 100644
--- a/srcpkgs/perl-Time-modules/template
+++ b/srcpkgs/perl-Time-modules/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-modules
 version=2013.0912
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-TimeDate/template b/srcpkgs/perl-TimeDate/template
index d4614cb2855..ffde91659cd 100644
--- a/srcpkgs/perl-TimeDate/template
+++ b/srcpkgs/perl-TimeDate/template
@@ -2,7 +2,6 @@
 pkgname=perl-TimeDate
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tree-DAG_Node/template b/srcpkgs/perl-Tree-DAG_Node/template
index 54039240222..5e269fdb381 100644
--- a/srcpkgs/perl-Tree-DAG_Node/template
+++ b/srcpkgs/perl-Tree-DAG_Node/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-File-Slurp-Tiny"
 depends="${makedepends}"
-archs=noarch
 short_desc="Tree::DAG_Node - An N-ary tree"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/Tree-DAG_Node"
diff --git a/srcpkgs/perl-Try-Tiny/template b/srcpkgs/perl-Try-Tiny/template
index 0d80bce773c..3cd203ebb79 100644
--- a/srcpkgs/perl-Try-Tiny/template
+++ b/srcpkgs/perl-Try-Tiny/template
@@ -14,7 +14,6 @@ homepage="https://metacpan.org/release/Try-Tiny"
 license="MIT"
 distfiles="${CPAN_SITE}/XML/ETHER/Try-Tiny-${version}.tar.gz"
 checksum=da5bd0d5c903519bbf10bb9ba0cb7bcac0563882bcfe4503aee3fb143eddef6b
-archs=noarch
 
 post_install() {
 	vlicense LICENCE LICENSE
diff --git a/srcpkgs/perl-Types-Serialiser/template b/srcpkgs/perl-Types-Serialiser/template
index 8946b5040f1..dd496b881ba 100644
--- a/srcpkgs/perl-Types-Serialiser/template
+++ b/srcpkgs/perl-Types-Serialiser/template
@@ -2,7 +2,6 @@
 pkgname=perl-Types-Serialiser
 version=1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-URI/template b/srcpkgs/perl-URI/template
index 825be5c78fd..6cc6fce1a26 100644
--- a/srcpkgs/perl-URI/template
+++ b/srcpkgs/perl-URI/template
@@ -2,7 +2,6 @@
 pkgname=perl-URI
 version=1.76
 revision=1
-archs=noarch
 wrksrc="URI-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unicode-Tussle/template b/srcpkgs/perl-Unicode-Tussle/template
index 69503663e56..883dedfb1d0 100644
--- a/srcpkgs/perl-Unicode-Tussle/template
+++ b/srcpkgs/perl-Unicode-Tussle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unicode-Tussle
 version=1.111
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unix-Uptime/template b/srcpkgs/perl-Unix-Uptime/template
index 0c9454e3374..c522917d6f3 100644
--- a/srcpkgs/perl-Unix-Uptime/template
+++ b/srcpkgs/perl-Unix-Uptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unix-Uptime
 version=0.4000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-User-Identity/template b/srcpkgs/perl-User-Identity/template
index 53b43af710f..7a0e453bfb2 100644
--- a/srcpkgs/perl-User-Identity/template
+++ b/srcpkgs/perl-User-Identity/template
@@ -2,7 +2,6 @@
 pkgname=perl-User-Identity
 version=0.99
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WL/template b/srcpkgs/perl-WL/template
index 0f5fdbfe394..0553c2ea3e8 100644
--- a/srcpkgs/perl-WL/template
+++ b/srcpkgs/perl-WL/template
@@ -2,7 +2,6 @@
 pkgname=perl-WL
 version=0.92
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Form-UrlEncoded/template b/srcpkgs/perl-WWW-Form-UrlEncoded/template
index ccda0fc7384..e49fd8526d2 100644
--- a/srcpkgs/perl-WWW-Form-UrlEncoded/template
+++ b/srcpkgs/perl-WWW-Form-UrlEncoded/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Form-UrlEncoded
 version=0.26
 revision=1
-archs=noarch
 wrksrc="WWW-Form-UrlEncoded-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Mechanize/template b/srcpkgs/perl-WWW-Mechanize/template
index 6e00152f672..cd39fd9dc92 100644
--- a/srcpkgs/perl-WWW-Mechanize/template
+++ b/srcpkgs/perl-WWW-Mechanize/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Mechanize
 version=2.00
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-CGI perl-HTML-Form perl-HTML-Tree
diff --git a/srcpkgs/perl-WWW-RobotRules/template b/srcpkgs/perl-WWW-RobotRules/template
index c21656741a3..3c3b3c925e4 100644
--- a/srcpkgs/perl-WWW-RobotRules/template
+++ b/srcpkgs/perl-WWW-RobotRules/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-RobotRules
 version=6.02
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WebService-MusicBrainz/template b/srcpkgs/perl-WebService-MusicBrainz/template
index a4d281f6c13..4755a1d2c6b 100644
--- a/srcpkgs/perl-WebService-MusicBrainz/template
+++ b/srcpkgs/perl-WebService-MusicBrainz/template
@@ -2,7 +2,6 @@
 pkgname=perl-WebService-MusicBrainz
 version=1.0.5
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol-Other/template b/srcpkgs/perl-X11-Protocol-Other/template
index b076d9786c1..264a518269a 100644
--- a/srcpkgs/perl-X11-Protocol-Other/template
+++ b/srcpkgs/perl-X11-Protocol-Other/template
@@ -2,7 +2,6 @@
 pkgname=perl-X11-Protocol-Other
 version=31
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol/template b/srcpkgs/perl-X11-Protocol/template
index 5cae4bdc214..a8f979b1f28 100644
--- a/srcpkgs/perl-X11-Protocol/template
+++ b/srcpkgs/perl-X11-Protocol/template
@@ -3,7 +3,6 @@ pkgname=perl-X11-Protocol
 #TODO
 version=0.56
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-PrettyPrint/template b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
index 8e8cc1b013a..741cb36485d 100644
--- a/srcpkgs/perl-XML-LibXML-PrettyPrint/template
+++ b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-PrettyPrint
 version=0.006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-Simple/template b/srcpkgs/perl-XML-LibXML-Simple/template
index 1b4fb0e6ff3..7fe3b756c91 100644
--- a/srcpkgs/perl-XML-LibXML-Simple/template
+++ b/srcpkgs/perl-XML-LibXML-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-Simple
 version=1.01
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-XML-LibXML perl-File-Slurp-Tiny"
diff --git a/srcpkgs/perl-XML-NamespaceSupport/template b/srcpkgs/perl-XML-NamespaceSupport/template
index 4163007fae5..6bd16959aba 100644
--- a/srcpkgs/perl-XML-NamespaceSupport/template
+++ b/srcpkgs/perl-XML-NamespaceSupport/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-NamespaceSupport
 version=1.12
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Parser-Lite/template b/srcpkgs/perl-XML-Parser-Lite/template
index 3f2bea8e8f5..56b5725ab10 100644
--- a/srcpkgs/perl-XML-Parser-Lite/template
+++ b/srcpkgs/perl-XML-Parser-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Parser-Lite
 version=0.722
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX-Base/template b/srcpkgs/perl-XML-SAX-Base/template
index 4a7baac7fce..f9b270aa02f 100644
--- a/srcpkgs/perl-XML-SAX-Base/template
+++ b/srcpkgs/perl-XML-SAX-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX-Base
 version=1.09
 revision=2
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX/template b/srcpkgs/perl-XML-SAX/template
index 33a0de887bc..973a341ba84 100644
--- a/srcpkgs/perl-XML-SAX/template
+++ b/srcpkgs/perl-XML-SAX/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Simple/template b/srcpkgs/perl-XML-Simple/template
index 3b8f8c40688..4a0b0f4b6e8 100644
--- a/srcpkgs/perl-XML-Simple/template
+++ b/srcpkgs/perl-XML-Simple/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 maintainer="Orphaned <orphan@voidlinux.org>"
 distfiles="${CPAN_SITE}/XML/XML-Simple-$version.tar.gz"
 checksum=531fddaebea2416743eb5c4fdfab028f502123d9a220405a4100e68fc480dbf8
-archs=noarch
diff --git a/srcpkgs/perl-XML-Smart/template b/srcpkgs/perl-XML-Smart/template
index 622a2ecf1be..1dbe4ced2fc 100644
--- a/srcpkgs/perl-XML-Smart/template
+++ b/srcpkgs/perl-XML-Smart/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Smart
 version=1.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Twig/template b/srcpkgs/perl-XML-Twig/template
index 9ec76ea5248..ce3d0458926 100644
--- a/srcpkgs/perl-XML-Twig/template
+++ b/srcpkgs/perl-XML-Twig/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Twig
 version=3.52
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Writer/template b/srcpkgs/perl-XML-Writer/template
index cde06ed960b..31e76ae5831 100644
--- a/srcpkgs/perl-XML-Writer/template
+++ b/srcpkgs/perl-XML-Writer/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Writer
 version=0.625
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-XPath/template b/srcpkgs/perl-XML-XPath/template
index 7b7f6bde62b..a709df1ec21 100644
--- a/srcpkgs/perl-XML-XPath/template
+++ b/srcpkgs/perl-XML-XPath/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-XPath
 version=1.44
 revision=1
-archs=noarch
 wrksrc="XML-XPath-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML-Tiny/template b/srcpkgs/perl-YAML-Tiny/template
index 84a40add1d4..fd6de16f557 100644
--- a/srcpkgs/perl-YAML-Tiny/template
+++ b/srcpkgs/perl-YAML-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML-Tiny
 version=1.73
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML/template b/srcpkgs/perl-YAML/template
index b73e193ed08..7b8cd68384b 100644
--- a/srcpkgs/perl-YAML/template
+++ b/srcpkgs/perl-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-common-sense/template b/srcpkgs/perl-common-sense/template
index 2a2ec4a54ef..d651e673d95 100644
--- a/srcpkgs/perl-common-sense/template
+++ b/srcpkgs/perl-common-sense/template
@@ -2,7 +2,6 @@
 pkgname=perl-common-sense
 version=3.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-local-lib/template b/srcpkgs/perl-local-lib/template
index afc54934dcf..1204b0dba79 100644
--- a/srcpkgs/perl-local-lib/template
+++ b/srcpkgs/perl-local-lib/template
@@ -2,7 +2,6 @@
 pkgname=perl-local-lib
 version=2.000024
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-autoclean/template b/srcpkgs/perl-namespace-autoclean/template
index a523c1aba25..210020077ac 100644
--- a/srcpkgs/perl-namespace-autoclean/template
+++ b/srcpkgs/perl-namespace-autoclean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-autoclean
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-clean/template b/srcpkgs/perl-namespace-clean/template
index c0a01f76b59..6625382226c 100644
--- a/srcpkgs/perl-namespace-clean/template
+++ b/srcpkgs/perl-namespace-clean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-clean
 version=0.27
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-rename/template b/srcpkgs/perl-rename/template
index 5cd20da30ac..bdd861b7d43 100644
--- a/srcpkgs/perl-rename/template
+++ b/srcpkgs/perl-rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-rename
 version=1.9
 revision=2
-archs=noarch
 wrksrc="rename-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-strictures/template b/srcpkgs/perl-strictures/template
index f682d3b3732..8ecccbe64d6 100644
--- a/srcpkgs/perl-strictures/template
+++ b/srcpkgs/perl-strictures/template
@@ -2,7 +2,6 @@
 pkgname=perl-strictures
 version=2.000006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-tainting/template b/srcpkgs/perl-tainting/template
index f24735ecfba..313f390856c 100644
--- a/srcpkgs/perl-tainting/template
+++ b/srcpkgs/perl-tainting/template
@@ -2,7 +2,6 @@
 pkgname=perl-tainting
 version=0.02
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perltidy/template b/srcpkgs/perltidy/template
index af2a2350e70..1e03d93eb79 100644
--- a/srcpkgs/perltidy/template
+++ b/srcpkgs/perltidy/template
@@ -2,7 +2,6 @@
 pkgname=perltidy
 version=20200822
 revision=1
-archs=noarch
 wrksrc="Perl-Tidy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/persepolis/template b/srcpkgs/persepolis/template
index 696afdd62e6..d04d25bca08 100644
--- a/srcpkgs/persepolis/template
+++ b/srcpkgs/persepolis/template
@@ -2,7 +2,6 @@
 pkgname=persepolis
 version=3.2.0
 revision=2
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools python3-setproctitle python3-requests
 	python3-psutil aria2 ffmpeg libnotify pulseaudio youtube-dl sound-theme-freedesktop
diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 6cfdf8170c0..97b33d3071c 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -2,7 +2,6 @@
 pkgname=peru
 version=1.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="peru"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pex/template b/srcpkgs/pex/template
index 105fb3e896d..544c117a4c1 100644
--- a/srcpkgs/pex/template
+++ b/srcpkgs/pex/template
@@ -2,7 +2,6 @@
 pkgname=pex
 version=2.1.15
 revision=1
-archs=noarch
 wrksrc="pex-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/pfetch/template b/srcpkgs/pfetch/template
index d67c2564bfb..992ed6619a4 100644
--- a/srcpkgs/pfetch/template
+++ b/srcpkgs/pfetch/template
@@ -2,7 +2,6 @@
 pkgname=pfetch
 version=0.6.0
 revision=1
-archs="noarch"
 short_desc="System information tool written in POSIX sh"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 license="MIT"
diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index 51835304d71..3120ac477fc 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -2,7 +2,6 @@
 pkgname=pgcli
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
diff --git a/srcpkgs/phoronix-test-suite/template b/srcpkgs/phoronix-test-suite/template
index 417e31c77bf..fe798298d6e 100644
--- a/srcpkgs/phoronix-test-suite/template
+++ b/srcpkgs/phoronix-test-suite/template
@@ -2,7 +2,6 @@
 pkgname=phoronix-test-suite
 version=9.6.1
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="php"
 short_desc="Comprehensive testing and benchmarking platform for Linux"
diff --git a/srcpkgs/phpMyAdmin/template b/srcpkgs/phpMyAdmin/template
index 8c82cc872b6..9a316fba310 100644
--- a/srcpkgs/phpMyAdmin/template
+++ b/srcpkgs/phpMyAdmin/template
@@ -2,7 +2,6 @@
 pkgname=phpMyAdmin
 version=5.0.2
 revision=1
-archs=noarch
 wrksrc="phpMyAdmin-${version}-all-languages"
 conf_files="/etc/webapps/phpMyAdmin/config.inc.php"
 depends="php mysql"
diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index ca1f29c11de..cdd41a84cfd 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -2,7 +2,6 @@
 pkgname=picard
 version=2.3.2
 revision=1
-archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module
 make_install_args="--disable-autoupdate"
diff --git a/srcpkgs/pingus/template b/srcpkgs/pingus/template
index 5551b01171f..b7277d10be3 100644
--- a/srcpkgs/pingus/template
+++ b/srcpkgs/pingus/template
@@ -29,7 +29,6 @@ do_install() {
 
 pingus-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pingus
 	}
diff --git a/srcpkgs/pioneer/template b/srcpkgs/pioneer/template
index b8eb8607375..ce00e4469fa 100644
--- a/srcpkgs/pioneer/template
+++ b/srcpkgs/pioneer/template
@@ -33,7 +33,6 @@ pioneer-modelcompiler_package() {
 
 pioneer-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pioneer
 	}
diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index 0f54fe32153..ac49322856e 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -2,7 +2,6 @@
 pkgname=piper
 version=0.5.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext libratbag pkg-config glib-devel python3-lxml"
 makedepends="python3-devel python3-gobject-devel"
diff --git a/srcpkgs/pipewire/template b/srcpkgs/pipewire/template
index 494f2296327..d6a31ad764a 100644
--- a/srcpkgs/pipewire/template
+++ b/srcpkgs/pipewire/template
@@ -151,7 +151,6 @@ libjack-pipewire_package() {
 }
 
 pipewire-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/plantuml/template b/srcpkgs/plantuml/template
index a28ec87cf43..fd71dd487f0 100644
--- a/srcpkgs/plantuml/template
+++ b/srcpkgs/plantuml/template
@@ -3,7 +3,6 @@ pkgname=plantuml
 reverts="8047_1 8053_1 8059_1"
 version=1.2020.15
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="virtual?java-environment graphviz"
diff --git a/srcpkgs/plasma-workspace-wallpapers/template b/srcpkgs/plasma-workspace-wallpapers/template
index 03f0cd0aff8..4a7d9c5a3cd 100644
--- a/srcpkgs/plasma-workspace-wallpapers/template
+++ b/srcpkgs/plasma-workspace-wallpapers/template
@@ -2,7 +2,6 @@
 pkgname=plasma-workspace-wallpapers
 version=5.19.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/plata-theme/template b/srcpkgs/plata-theme/template
index 7701b8598c7..f0da75a1120 100644
--- a/srcpkgs/plata-theme/template
+++ b/srcpkgs/plata-theme/template
@@ -2,7 +2,6 @@
 pkgname=plata-theme
 version=0.9.8
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-parallel --enable-telegram"
 hostmakedepends="automake libtool pkg-config glib-devel libxml2 sassc inkscape
diff --git a/srcpkgs/platformio/template b/srcpkgs/platformio/template
index b8ec9a97db9..6831a5cfab7 100644
--- a/srcpkgs/platformio/template
+++ b/srcpkgs/platformio/template
@@ -2,7 +2,6 @@
 pkgname=platformio
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="platformio-core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index 6d3483ae251..f5c171ff726 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -2,7 +2,6 @@
 pkgname=playitslowly
 version=1.5.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 python3-gobject gtk+3 gstreamer1 gst-plugins-base1 gst-plugins-good1
diff --git a/srcpkgs/plymouth/template b/srcpkgs/plymouth/template
index e60716016a8..bc5466e18c8 100644
--- a/srcpkgs/plymouth/template
+++ b/srcpkgs/plymouth/template
@@ -48,7 +48,6 @@ plymouth-devel_package() {
 
 plymouth-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	depends="void-artwork"
 	pkg_install() {
 		vmove usr/share/plymouth/themes
diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index c2b2d92e87a..c0e4377a1d7 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -2,7 +2,6 @@
 pkgname=pmbootstrap
 version=1.22.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools coreutils procps-ng libressl git"
diff --git a/srcpkgs/po4a/template b/srcpkgs/po4a/template
index afa923f9e3e..9e9a726118e 100644
--- a/srcpkgs/po4a/template
+++ b/srcpkgs/po4a/template
@@ -2,7 +2,6 @@
 pkgname=po4a
 version=0.61
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 _perldeps="perl perl-Text-WrapI18N perl-Term-ReadKey perl-Unicode-LineBreak
  perl-SGMLSpm perl-YAML-Tiny"
diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index eee3691d959..072c9186985 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -2,7 +2,6 @@
 pkgname=pockyt
 version=1.2
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-parse"
diff --git a/srcpkgs/podman-compose/template b/srcpkgs/podman-compose/template
index 4f4467de689..7df91e17cb8 100644
--- a/srcpkgs/podman-compose/template
+++ b/srcpkgs/podman-compose/template
@@ -2,7 +2,6 @@
 pkgname=podman-compose
 version=0.1.5
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-yaml"
 depends="${hostmakedepends} podman"
diff --git a/srcpkgs/polysh/template b/srcpkgs/polysh/template
index 36e743fabbb..a374979aeab 100644
--- a/srcpkgs/polysh/template
+++ b/srcpkgs/polysh/template
@@ -2,7 +2,6 @@
 pkgname=polysh
 version=0.4
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="polysh"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/pony-stable/template b/srcpkgs/pony-stable/template
index 4bd27ef0538..87694cad4ed 100644
--- a/srcpkgs/pony-stable/template
+++ b/srcpkgs/pony-stable/template
@@ -2,7 +2,6 @@
 pkgname=pony-stable
 version=0.2.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Simple dependency manager for the Pony language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponyc/template b/srcpkgs/ponyc/template
index 76f6e23475a..b7a79ce00a1 100644
--- a/srcpkgs/ponyc/template
+++ b/srcpkgs/ponyc/template
@@ -2,7 +2,6 @@
 pkgname=ponyc
 version=0.33.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Pony programming language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponysay/template b/srcpkgs/ponysay/template
index 5e916c5d485..ea0e87a5280 100644
--- a/srcpkgs/ponysay/template
+++ b/srcpkgs/ponysay/template
@@ -2,7 +2,6 @@
 pkgname=ponysay
 version=3.0.3
 revision=4
-archs=noarch
 hostmakedepends="python3 texinfo"
 depends="python3"
 short_desc="Pony rewrite of cowsay"
diff --git a/srcpkgs/poppler-data/template b/srcpkgs/poppler-data/template
index a83e7dbcf65..babd5990158 100644
--- a/srcpkgs/poppler-data/template
+++ b/srcpkgs/poppler-data/template
@@ -2,7 +2,6 @@
 pkgname=poppler-data
 version=0.4.9
 revision=1
-archs=noarch
 short_desc="Encoding data for the poppler PDF rendering library"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, GPL-2.0-or-later, BSD-3-Clause"
diff --git a/srcpkgs/postgresql/template b/srcpkgs/postgresql/template
index 2880d5f673b..b68ff9ca9f0 100644
--- a/srcpkgs/postgresql/template
+++ b/srcpkgs/postgresql/template
@@ -74,7 +74,6 @@ post_install() {
 
 postgresql-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/postgresql12/template b/srcpkgs/postgresql12/template
index 7d724e174e4..86ba8e7e9ff 100644
--- a/srcpkgs/postgresql12/template
+++ b/srcpkgs/postgresql12/template
@@ -104,7 +104,6 @@ _substitute() {
 
 postgresql12-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove ${_prefix}/share/doc
 	}
diff --git a/srcpkgs/printrun/template b/srcpkgs/printrun/template
index 3784d97eaa4..bdc6ce8d85c 100644
--- a/srcpkgs/printrun/template
+++ b/srcpkgs/printrun/template
@@ -2,7 +2,6 @@
 pkgname=printrun
 version=1.6.0
 revision=3
-archs=noarch
 wrksrc="Printrun-printrun-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools python-pyserial"
diff --git a/srcpkgs/pritunl-client/template b/srcpkgs/pritunl-client/template
index d61a2bfc7bc..a184a2f925c 100644
--- a/srcpkgs/pritunl-client/template
+++ b/srcpkgs/pritunl-client/template
@@ -2,7 +2,6 @@
 pkgname=pritunl-client
 version=1.0.1865.25
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="pritunl-client"
 make_install_args="--no-upstart --no-systemd"
diff --git a/srcpkgs/profile-cleaner/template b/srcpkgs/profile-cleaner/template
index 0128620c1af..1d5e7ba2237 100644
--- a/srcpkgs/profile-cleaner/template
+++ b/srcpkgs/profile-cleaner/template
@@ -2,7 +2,6 @@
 pkgname=profile-cleaner
 version=2.37
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Reduces profile size by cleaning their sqlite databases"
 depends="bash sqlite bc parallel findutils"
diff --git a/srcpkgs/protonvpn-cli/template b/srcpkgs/protonvpn-cli/template
index fb8ed8e0b57..081cbeea0b1 100644
--- a/srcpkgs/protonvpn-cli/template
+++ b/srcpkgs/protonvpn-cli/template
@@ -2,7 +2,6 @@
 pkgname=protonvpn-cli
 version=2.2.4
 revision=1
-archs=noarch
 wrksrc="linux-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pslist/template b/srcpkgs/pslist/template
index 52f36b6c129..673b4d932a9 100644
--- a/srcpkgs/pslist/template
+++ b/srcpkgs/pslist/template
@@ -2,7 +2,6 @@
 pkgname=pslist
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANDIR=/usr/share/man/man"
 make_check_target="test"
diff --git a/srcpkgs/psuinfo/template b/srcpkgs/psuinfo/template
index ca491f25bef..0705658530b 100644
--- a/srcpkgs/psuinfo/template
+++ b/srcpkgs/psuinfo/template
@@ -2,7 +2,6 @@
 pkgname=psuinfo
 version=1.1
 revision=1
-archs=noarch
 depends="python3>=3.5 python3-psutil"
 short_desc="Script to display customizable system info in Tint2 or other panels"
 maintainer="Piotr Miller <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/public-inbox/template b/srcpkgs/public-inbox/template
index 7a7198e79b5..ab9f82f6a82 100644
--- a/srcpkgs/public-inbox/template
+++ b/srcpkgs/public-inbox/template
@@ -2,7 +2,6 @@
 pkgname=public-inbox
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version/pre/-pre}"
 build_style=perl-module
 hostmakedepends="git perl perl-DBD-SQLite perl-Danga-Socket
diff --git a/srcpkgs/pulsemixer/template b/srcpkgs/pulsemixer/template
index 918b5af771a..e9f2c4f272d 100644
--- a/srcpkgs/pulsemixer/template
+++ b/srcpkgs/pulsemixer/template
@@ -2,7 +2,6 @@
 pkgname=pulsemixer
 version=1.5.1
 revision=1
-archs=noarch
 depends="python3 libpulseaudio"
 short_desc="CLI and curses mixer for Pulseaudio"
 maintainer="Dean Thomson <mrrobot@fsociety.info>"
diff --git a/srcpkgs/puppet/template b/srcpkgs/puppet/template
index 404319be63e..8156914f5d3 100644
--- a/srcpkgs/puppet/template
+++ b/srcpkgs/puppet/template
@@ -2,7 +2,6 @@
 pkgname=puppet
 version=6.16.0
 revision=1
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby facter-devel hiera which"
 makedepends="facter-devel"
diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index c0becb7bf58..e18b9ae3b5e 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -2,7 +2,6 @@
 pkgname=py3status
 version=3.28
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pyudev"
diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index d0594aa77f4..c3113303009 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -4,7 +4,6 @@ version=0.12.4
 revision=3
 build_style=python3-module
 pycompile_module="pychess"
-archs=noarch
 hostmakedepends="python3-setuptools"
 depends="gobject-introspection gst-plugins-base1 gtksourceview python3-gobject"
 short_desc="A GTK chess client written in Python"
diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index c9066259862..d4480023613 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -2,7 +2,6 @@
 pkgname=pycp
 version=8.0.8
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pycp"
 hostmakedepends="help2man python3-setuptools"
diff --git a/srcpkgs/pylint/template b/srcpkgs/pylint/template
index 20f70825470..965e2c65dca 100644
--- a/srcpkgs/pylint/template
+++ b/srcpkgs/pylint/template
@@ -2,7 +2,6 @@
 pkgname=pylint
 version=2.6.0
 revision=1
-archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module
 pycompile_module="pylint"
diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 808c298c7b5..7ed0770161b 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -2,7 +2,6 @@
 pkgname=pyradio
 version=0.8.7.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/pysolfc-cardsets/template b/srcpkgs/pysolfc-cardsets/template
index 2b1786bbce4..19a94b652f6 100644
--- a/srcpkgs/pysolfc-cardsets/template
+++ b/srcpkgs/pysolfc-cardsets/template
@@ -3,7 +3,6 @@ pkgname=pysolfc-cardsets
 version=2.0
 revision=1
 wrksrc="PySolFC-Cardsets-${version}"
-archs=noarch
 build_style=fetch
 short_desc="PySolFC Cardsets"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index b634a8da817..9f405513f6c 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -2,7 +2,6 @@
 pkgname=pysolfc
 version=2.10.1
 revision=1
-archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="gettext python3-pygame python3-random2 python3-six
diff --git a/srcpkgs/pystopwatch/template b/srcpkgs/pystopwatch/template
index b10e194b021..1540db0c152 100644
--- a/srcpkgs/pystopwatch/template
+++ b/srcpkgs/pystopwatch/template
@@ -2,7 +2,6 @@
 pkgname=pystopwatch
 version=2019
 revision=1
-archs=noarch
 makedepends="pygtk-devel librsvg-devel"
 depends="python pygtk librsvg"
 short_desc="GTK2+ stopwatch written in Python"
diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index a8c2e30c74b..471aef78fd3 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,6 @@
 pkgname=python-Arrow
 version=0.15.5
 revision=1
-archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/a/arrow/arrow-${version}.tar.gz"
 checksum=5390e464e2c5f76971b60ffa7ee29c598c7501a294bc9f5e6dadcb251a5d027b
 
 python3-Arrow_package() {
-	archs=noarch
 	depends="python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 2b175b4ecba..d8482560e9d 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Babel
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-pytz"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="babel:pybabel:/usr/bin/pybabel3"
diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 956348442ff..b8f87d432bf 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -2,7 +2,6 @@
 pkgname=python-BeautifulSoup4
 version=4.8.2
 revision=1
-archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-BeautifulSoup4_package() {
-	archs=noarch
 	depends="python3 python3-soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index ce0447f4d35..d0f78cc8a5e 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -2,7 +2,6 @@
 pkgname=python-Cheroot
 version=8.3.1
 revision=1
-archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-Cheroot_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-more-itertools
 	 python3-jaraco.functools"
 	alternatives="cheroot:cheroot:/usr/bin/cheroot3"
diff --git a/srcpkgs/python-CherryPy/template b/srcpkgs/python-CherryPy/template
index b1e17cca37a..dc4db21f582 100644
--- a/srcpkgs/python-CherryPy/template
+++ b/srcpkgs/python-CherryPy/template
@@ -3,7 +3,6 @@ pkgname=python-CherryPy
 reverts="18.0.1_1 18.0.0_1"
 version=17.4.2
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python2-module
 pycompile_module="cherrypy"
diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 6549f5c0fae..e3049bfb0c8 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -2,7 +2,6 @@
 pkgname=python-Django
 version=1.11.29
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 3ca0de18077..d90c614b497 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Assets
 version=0.12
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_assets.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Assets_package() {
-	archs=noarch
 	depends="python3-Flask python3-webassets"
 	pycompile_module="flask_assets.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index e5b600bf922..ec0457edaa8 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Babel
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Babel python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index a9b982bdce6..8ccc741026f 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Login
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Login_package() {
-	archs=noarch
 	depends="python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index edf5c13560e..a5f93f870ae 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-OAuthlib
 version=0.9.5
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-OAuthlib_package() {
-	archs=noarch
 	depends="python3-Flask python3-requests-oauthlib"
 	pycompile_module="flask_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index ebac828a5b1..66b81795f21 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Script
 version=2.0.6
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_script"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Script_package() {
-	archs=noarch
 	depends="python3-Flask"
 	pycompile_module="flask_script"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index f72307f79be..5fbba684f2d 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-WTF
 version=0.14.3
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-WTF_package() {
-	archs=noarch
 	depends="python3-Flask python3-WTForms"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 1aa7f5208ed..c408c68feaf 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-Flask_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Werkzeug python3-itsdangerous python3-click"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="flask:flask:/usr/bin/flask3"
diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 232429265f1..d04bb9d9bf6 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -2,7 +2,6 @@
 pkgname=python-GitPython
 version=2.1.11
 revision=2
-archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module
 pycompile_module="git"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-GitPython_package() {
-	archs=noarch
 	depends="python3-gitdb"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index aaae9fcd002..57f7d363e0f 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -2,7 +2,6 @@
 pkgname=python-IPy
 version=1.00
 revision=2
-archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module
 pycompile_module="IPy.py"
@@ -21,7 +20,6 @@ post_install() {
 
 python3-IPy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="IPy.py"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index 3fcd44dc198..b7b7acd1086 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -2,7 +2,6 @@
 pkgname=python-Jinja2
 version=2.10.1
 revision=2
-archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module
 pycompile_module="jinja2"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-Jinja2_package() {
-	archs=noarch
 	depends="python3-MarkupSafe"
 	pycompile_module="jinja2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index 8cfa6722149..58d13c2e9ef 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -2,7 +2,6 @@
 pkgname=python-Mako
 version=1.1.3
 revision=1
-archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-Mako_package() {
-	archs=noarch
 	depends="python3-setuptools python3-MarkupSafe"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="mako:mako-render:/usr/bin/mako-render3"
diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index fa75ca590cc..7e426c6463c 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python-Markdown
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index 1eb15b49301..7e120f7f16a 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -2,7 +2,6 @@
 pkgname=python-Markups
 version=3.0.0
 revision=3
-archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Markups_package() {
-	archs=noarch
 	depends="python3 python3-markdown-math"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 8b8c4f5f1e6..cfb5ce7ee5e 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -2,7 +2,6 @@
 pkgname=python-MiniMock
 version=1.2.8
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="minimock.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-MiniMock_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="minimock.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyHamcrest/template b/srcpkgs/python-PyHamcrest/template
index 48f001595aa..f105d8557af 100644
--- a/srcpkgs/python-PyHamcrest/template
+++ b/srcpkgs/python-PyHamcrest/template
@@ -2,7 +2,6 @@
 pkgname=python-PyHamcrest
 version=1.9.0
 revision=2
-archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module
 pycompile_module="hamcrest"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-PyHamcrest_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="hamcrest"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index 79709575673..a5afbb8b356 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -2,7 +2,6 @@
 pkgname=python-PyOpenGL
 version=3.1.5
 revision=1
-archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-PyOpenGL_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index d464e59d617..cf6ceb24d86 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -2,7 +2,6 @@
 pkgname=python-Pygments
 version=2.5.2
 revision=1
-archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-Pygments_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pygments:pygmentize:/usr/bin/pygmentize3"
diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index 3eba13d0e9c..2a71b87f354 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -2,7 +2,6 @@
 pkgname=python-Pyro4
 version=4.80
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -34,7 +33,6 @@ python3-Pyro4_package() {
 	 pyro4:pyro4-ns:/usr/bin/pyro4-ns3
 	 pyro4:pyro4-nsc:/usr/bin/pyro4-nsc3
 	 pyro4:pyro4-test-echoserver:/usr/bin/pyro4-test-echoserver3"
-	archs=noarch
 	depends="python3-setuptools python3-serpent"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index 8d2db9a02b3..01c58198024 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -2,7 +2,6 @@
 pkgname=python-SPARQLWrapper
 version=1.8.4
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="SPARQLWrapper"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/S/SPARQLWrapper/SPARQLWrapper-${version}.tar.gz"
 checksum=21928e7a97f565e772cdeeb0abad428960f4307e3a13dbdd8f6d3da8a6a506c9
 
 python3-SPARQLWrapper_package() {
-	archs=noarch
 	depends="python3-rdflib"
 	pycompile_module="SPARQLWrapper"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 444eb1427d6..244948a7621 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python-Unidecode
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module
 pycompile_module="unidecode"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-Unidecode_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="unidecode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 33f16940cb8..cdc03a45a1f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -2,7 +2,6 @@
 pkgname=python-WTForms
 version=2.2.1
 revision=2
-archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module
 pycompile_module="wtforms"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-WTForms_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wtforms"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index b4bf1071851..5fcd9781c3d 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -2,7 +2,6 @@
 pkgname=python-Werkzeug
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-Werkzeug_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index 66856b206a7..92cb5811a13 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -3,7 +3,6 @@ pkgname=python-Whoosh
 version=2.7.4
 revision=2
 wrksrc="Whoosh-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="whoosh"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 python3-Whoosh_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="whoosh"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 5ad8b234f5d..bc8e29f99a0 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -2,7 +2,6 @@
 pkgname=python-Yapsy
 version=1.12.2
 revision=2
-archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module
 pycompile_module="yapsy"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Yapsy_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="yapsy"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index f9621a9c8dc..d51c8447d4b 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -12,7 +12,6 @@ license="MIT"
 homepage="http://jwilk.net/software/python-aalib"
 distfiles="${PYPI_SITE}/p/python-aalib/python-aalib-${version}.tar.gz"
 checksum=c39071629e7962dcd926faf0135dc73e2a8eb5db9a53bc2ebe5965f8c39165a2
-archs=noarch
 
 post_install() {
 	sed -n '3,21p' < setup.py > LICENSE
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-aalib_package() {
-	archs=noarch
 	pycompile_module="aalib.py"
 	depends="aalib python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index b33009d5efb..5530541c6c4 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -2,7 +2,6 @@
 pkgname=python-alabaster
 version=0.7.12
 revision=2
-archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module
 pycompile_module="alabaster"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-alabaster_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="alabaster"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 06f865c456d..96d77ac6e49 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -2,7 +2,6 @@
 pkgname=python-alembic
 version=1.4.2
 revision=2
-archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-alembic_package() {
-	archs=noarch
 	depends="python3-Mako python3-SQLAlchemy python3-dateutil python3-editor"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index 3663a82f0cc..1756b99acab 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -2,7 +2,6 @@
 pkgname=python-ansicolor
 version=0.2.6
 revision=3
-archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module
 pycompile_module="ansicolor"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/ansicolor/ansicolor-${version}.tar.gz"
 checksum=d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d
 
 python3-ansicolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ansicolor"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index 68f8fa5cb4f..bf3b69cce99 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -2,7 +2,6 @@
 pkgname=python-appdirs
 version=1.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-appdirs_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 656da441757..1d4aae379bc 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -2,7 +2,6 @@
 pkgname=python-argh
 version=0.26.2
 revision=2
-archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module
 pycompile_module="argh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/argh/argh-${version}.tar.gz"
 checksum=e9535b8c84dc9571a48999094fda7f33e63c3f1b74f3e5f3ac0105a58405bb65
 
 python3-argh_package() {
-	archs=noarch
 	pycompile_module="argh"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 4f245755dcf..b1d370ba61c 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -2,7 +2,6 @@
 pkgname=python-arxiv2bib
 version=1.0.8
 revision=3
-archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module
 pycompile_module="arxiv2bib"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-arxiv2bib_package() {
-	archs=noarch
 	pycompile_module="arxiv2bib.py"
 	alternatives="arxiv2bib:arxiv2bib:/usr/bin/arxiv2bib3"
 	depends="python3-setuptools"
diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index e7ffe7415fc..7cf0624d22e 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -2,7 +2,6 @@
 pkgname=python-asn1crypto
 version=0.24.0
 revision=2
-archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module
 pycompile_module="asn1crypto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-asn1crypto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="asn1crypto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-astroid/template b/srcpkgs/python-astroid/template
index 9da6aebae87..71cb18836cb 100644
--- a/srcpkgs/python-astroid/template
+++ b/srcpkgs/python-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python-astroid
 version=1.6.6
 revision=2
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python2-module
 pycompile_module="astroid"
diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index ec411d981d4..5eebc020c12 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -2,7 +2,6 @@
 pkgname=python-atomicwrites
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module
 pycompile_module="atomicwrites"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-atomicwrites_package() {
-	archs=noarch
 	pycompile_module="atomicwrites"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 0141d97f85d..f7923ca89d1 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -3,7 +3,6 @@
 pkgname=python-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python"
diff --git a/srcpkgs/python-attrs/template b/srcpkgs/python-attrs/template
index 6e2297a9553..644601aa77b 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -2,7 +2,6 @@
 pkgname=python-attrs
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module
 pycompile_module="attr"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-attrs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="attr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index bc878d4b82d..55b3fc03ff5 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -2,7 +2,6 @@
 pkgname=python-audioread
 version=2.1.8
 revision=2
-archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module
 pycompile_module="audioread"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-audioread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="audioread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-automat/template b/srcpkgs/python-automat/template
index 66dad2f84bc..a73c9095962 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -2,7 +2,6 @@
 pkgname=python-automat
 version=20.2.0
 revision=1
-archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -32,7 +31,6 @@ post_install() {
 }
 
 python3-automat_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-attrs python3-six"
 	alternatives="automat:automat-visualize:/usr/bin/automat-visualize3"
diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index 74480b5a9fe..9ab879f9e87 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -2,7 +2,6 @@
 pkgname=python-axolotl
 version=0.2.3
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="axolotl"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=fe0e8147423f8dc4ec1077ea18ca5a54091366d22faa903a772ee6ea88b88daf
 
 python3-axolotl_package() {
-	archs=noarch
 	depends="python3-axolotl-curve25519 python3-cryptography python3-protobuf"
 	pycompile_module="axolotl"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-b2sdk/template b/srcpkgs/python-b2sdk/template
index 8c51c62d603..5ea032ed0dc 100644
--- a/srcpkgs/python-b2sdk/template
+++ b/srcpkgs/python-b2sdk/template
@@ -3,7 +3,6 @@
 pkgname=python-b2sdk
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc="b2sdk-${version}"
 build_style=python3-module
 pycompile_module="b2sdk"
diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index 47d5bb176cc..6de0b031414 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -2,7 +2,6 @@
 pkgname=python-babelfish
 version=0.5.5
 revision=2
-archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module
 pycompile_module="babelfish"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-babelfish_package() {
-	archs=noarch
 	pycompile_module="babelfish"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index a55af727ab6..d43ccd1d1c7 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -2,7 +2,6 @@
 pkgname=python-backcall
 version=0.1.0
 revision=2
-archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module
 pycompile_module="backcall"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/backcall/backcall-${version}.tar.gz"
 checksum=38ecd85be2c1e78f77fd91700c76e14667dc21e2713b63876c0eb901196e01e4
 
 python3-backcall_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="backcall"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backports.configparser/template b/srcpkgs/python-backports.configparser/template
index 8a641320820..91d60205364 100644
--- a/srcpkgs/python-backports.configparser/template
+++ b/srcpkgs/python-backports.configparser/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.configparser
 version=3.5.0
 revision=1
-archs=noarch
 wrksrc="configparser-${version}"
 build_style=python2-module
 pycompile_module="backports configparser.py"
diff --git a/srcpkgs/python-backports.functools_lru_cache/template b/srcpkgs/python-backports.functools_lru_cache/template
index 0d268c9efa6..4829107b32d 100644
--- a/srcpkgs/python-backports.functools_lru_cache/template
+++ b/srcpkgs/python-backports.functools_lru_cache/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.functools_lru_cache
 version=1.5
 revision=1
-archs=noarch
 wrksrc="backports.functools_lru_cache-${version}"
 build_style=python2-module
 pycompile_module="backports/functools_lru_cache.py"
diff --git a/srcpkgs/python-backports.shutil_get_terminal_size/template b/srcpkgs/python-backports.shutil_get_terminal_size/template
index 2e9a5af7f52..8d0923ea0d1 100644
--- a/srcpkgs/python-backports.shutil_get_terminal_size/template
+++ b/srcpkgs/python-backports.shutil_get_terminal_size/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.shutil_get_terminal_size
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="backports.shutil_get_terminal_size-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports.ssl_match_hostname/template b/srcpkgs/python-backports.ssl_match_hostname/template
index dd4d76b47db..cd15b2c217c 100644
--- a/srcpkgs/python-backports.ssl_match_hostname/template
+++ b/srcpkgs/python-backports.ssl_match_hostname/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.ssl_match_hostname
 version=3.5.0.1
 revision=3
-archs=noarch
 wrksrc="backports.ssl_match_hostname-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports/template b/srcpkgs/python-backports/template
index eec822727a8..ab40751073d 100644
--- a/srcpkgs/python-backports/template
+++ b/srcpkgs/python-backports/template
@@ -2,7 +2,6 @@
 pkgname=python-backports
 version=1.0
 revision=3
-archs=noarch
 wrksrc="backports-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports_abc/template b/srcpkgs/python-backports_abc/template
index 9d2e5565f02..0d23f9bd983 100644
--- a/srcpkgs/python-backports_abc/template
+++ b/srcpkgs/python-backports_abc/template
@@ -2,7 +2,6 @@
 pkgname=python-backports_abc
 version=0.5
 revision=1
-archs=noarch
 wrksrc="backports_abc-${version}"
 build_style=python2-module
 pycompile_module="backports_abc.py"
diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index c40115c9fb8..ae63106cf4b 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -2,7 +2,6 @@
 pkgname=python-bibtexparser
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module
 pycompile_module="bibtexparser"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bibtexparser/bibtexparser-${version}.tar.gz"
 checksum=df8966ea752db6d74657a69b9d684a61aa33457ad6d9d50e41c50ef7f374907f
 
 python3-bibtexparser_package() {
-	archs=noarch
 	pycompile_module="bibtexparser"
 	depends="python3-parsing python3-future"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 448ea60d53d..6e70a5976c1 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -2,7 +2,6 @@
 pkgname=python-bitbucket-api
 version=0.5.0
 revision=4
-archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module
 pycompile_module="bitbucket"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-bitbucket-api_package() {
-	archs=noarch
 	depends="python3-requests-oauthlib python3-sh"
 	pycompile_module="bitbucket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index 84b0f132eba..e298a86007b 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -2,7 +2,6 @@
 pkgname=python-bleach
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bleach/bleach-${version}.tar.gz"
 checksum=aa8b870d0f46965bac2c073a93444636b0e1ca74e9777e34f03dd494b8a59d48
 
 python3-bleach_package() {
-	archs=noarch
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index baa4938c328..314dda27c56 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -2,7 +2,6 @@
 pkgname=python-blessings
 version=1.7
 revision=2
-archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module
 pycompile_module="blessings"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-blessings_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="blessings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index b6d1d63d19a..d1df76cb181 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -2,7 +2,6 @@
 pkgname=python-blinker
 version=1.4
 revision=4
-archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-blinker_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="blinker"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 684c00feee0..583c1b3c3b2 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -2,7 +2,6 @@
 pkgname=python-boto
 version=2.49.0
 revision=2
-archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module
 pycompile_module="boto"
@@ -41,7 +40,6 @@ post_install() {
 }
 
 python3-boto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="boto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index 600559839d2..5430a3ed15f 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -2,7 +2,6 @@
 pkgname=python-botocore
 version=1.17.28
 revision=1
-archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/botocore/archive/${version}.tar.gz"
 checksum=c9a4b4ffedeff89848a899bd4634be46a21a190690b505c2050888c0a5447936
 
 python3-botocore_package() {
-	archs=noarch
 	depends="python3-dateutil python3-docutils python3-jmespath python3-urllib3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 0ffc8adfec7..67ce25c0e25 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -2,7 +2,6 @@
 pkgname=python-bottle
 version=0.12.17
 revision=2
-archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module
 pycompile_module="bottle"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-bottle_package() {
-	archs=noarch
 	pycompile_module="bottle"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index 16c89346565..101466a7524 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -2,7 +2,6 @@
 pkgname=python-cached-property
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module
 pycompile_module="cached_property.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cached-property_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cached_property.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index c057739b03d..b505bb1b258 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -2,7 +2,6 @@
 pkgname=python-cairocffi
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module
 pycompile_module="cairocffi"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cairocffi_package() {
-	archs=noarch
 	depends="python3-cffi"
 	pycompile_module="cairocffi"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index bd502bbbddf..8874a5e3dd6 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -2,7 +2,6 @@
 pkgname=python-chardet
 version=3.0.4
 revision=3
-archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae
 alternatives="chardet:chardetect:/usr/bin/chardetect2"
 
 python3-chardet_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="chardet"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 7faa0f4cce9..e93599c9a9c 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -2,7 +2,6 @@
 pkgname=python-chroot
 version=0.9.18
 revision=2
-archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module
 pycompile_module="pychroot"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-chroot_package() {
-	archs=noarch
 	depends="python3-snakeoil"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="chroot:pychroot:/usr/bin/pychroot3"
diff --git a/srcpkgs/python-cliapp/template b/srcpkgs/python-cliapp/template
index fd2c8cc4d13..c79ac262aa5 100644
--- a/srcpkgs/python-cliapp/template
+++ b/srcpkgs/python-cliapp/template
@@ -2,7 +2,6 @@
 pkgname=python-cliapp
 version=1.20180121
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="cliapp"
 hostmakedepends="python-setuptools python-yaml"
diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index b57a7a74b4a..663e72fc0b0 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -2,7 +2,6 @@
 pkgname=python-click-log
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"
 pycompile_module="click_log"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-log_package() {
-	archs=noarch
 	pycompile_module="click_log"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 49b4a4a9aae..39de1538611 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -2,7 +2,6 @@
 pkgname=python-click-threading
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-threading_package() {
-	archs=noarch
 	pycompile_module="click_threading"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 40d1b25a7ab..4f6444c307c 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -2,7 +2,6 @@
 pkgname=python-click
 version=7.1.2
 revision=1
-archs=noarch
 wrksrc="click-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-click_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 9ae2e19435c..13fdb17246b 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -2,7 +2,6 @@
 pkgname=python-codespell
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module
 pycompile_module="codespell_lib"
@@ -17,7 +16,6 @@ checksum=53d22aefa1daf3365ca4625877271d23d143c0a92c16e55daf5cd14b6494b8f4
 alternatives="python-codespell:codespell:/usr/bin/codespell2"
 
 python3-codespell_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="codespell_lib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 09562385243..db815379183 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -2,7 +2,6 @@
 pkgname=python-colorama
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module
 pycompile_module="colorama"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-colorama_package() {
-	archs=noarch
 	pycompile_module="colorama"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index a8cb5d5d34e..3848feac2d6 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -2,7 +2,6 @@
 pkgname=python-configobj
 version=5.0.6
 revision=6
-archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module
 pycompile_module="_version.py configobj.py validate.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-configobj_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="_version.py configobj.py validate.py"
 	depends="python3-six"
diff --git a/srcpkgs/python-constantly/template b/srcpkgs/python-constantly/template
index 9160aec9edd..34edf105840 100644
--- a/srcpkgs/python-constantly/template
+++ b/srcpkgs/python-constantly/template
@@ -2,7 +2,6 @@
 pkgname=python-constantly
 version=15.1.0
 revision=3
-archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module
 pycompile_module="constantly"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-constantly_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="constantly"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index d6d0b8010e2..5297e842c14 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -2,7 +2,6 @@
 pkgname=python-construct
 version=2.9.45
 revision=3
-archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module
 pycompile_module="construct"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-construct_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="construct"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-contextlib2/template b/srcpkgs/python-contextlib2/template
index 97ef11550c8..6bd95147447 100644
--- a/srcpkgs/python-contextlib2/template
+++ b/srcpkgs/python-contextlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-contextlib2
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="contextlib2-${version}"
 build_style=python2-module
 pycompile_module="contextlib2.py"
diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index 8c5d65fe260..132980d887a 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -2,7 +2,6 @@
 pkgname=python-cram
 version=0.7
 revision=3
-archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module
 pycompile_module="cram"
@@ -17,7 +16,6 @@ checksum=7da7445af2ce15b90aad5ec4792f857cef5786d71f14377e9eb994d8b8337f2f
 alternatives="cram:cram:/usr/bin/cram2"
 
 python3-cram_package() {
-	archs=noarch
 	pycompile_module="cram"
 	alternatives="cram:cram:/usr/bin/cram3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index 3eee49a6dbf..d375016bc91 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -2,7 +2,6 @@
 pkgname=python-cryptography_vectors
 version=3.0
 revision=1
-archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index f6d2d0cbf8b..f4e95f73e48 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -2,7 +2,6 @@
 pkgname=python-css-parser
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module
 pycompile_module="css_parser"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-css-parser_package() {
-	archs=noarch
 	pycompile_module="css_parser"
 	depends="python3"
 	short_desc="${short_desc/2/3}"
diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index c7f43ebca9f..81f28f8d682 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -2,7 +2,6 @@
 pkgname=python-cssselect
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="cssselect"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cssselect_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cssselect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 5f08903b9a0..2f023f342b0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -2,7 +2,6 @@
 pkgname=python-cssutils
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ python3-cssutils_package() {
 	 cssutils:csscapture:/usr/bin/csscapture3
 	 cssutils:csscombine:/usr/bin/csscombine3
 	 cssutils:cssparse:/usr/bin/cssparse3"
-	archs=noarch
 	pycompile_module="cssutils encutils"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 6126a11e9b4..c07d2d0270b 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -2,7 +2,6 @@
 pkgname=python-curtsies
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module
 pycompile_module="curtsies"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-curtsies_package() {
-	archs=noarch
 	pycompile_module="curtsies"
 	depends="python3-blessings python3-wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index 0b53c195dae..1d6b1ec2bf2 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -2,7 +2,6 @@
 pkgname=python-cycler
 version=0.10.0
 revision=5
-archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cycler_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="cycler.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index efaf163e573..51740f1ee4c 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -2,7 +2,6 @@
 pkgname=python-daemonize
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module
 pycompile_module="daemonize.py"
@@ -20,7 +19,6 @@ post_Install() {
 }
 
 python3-daemonize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="daemonize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dateutil/template b/srcpkgs/python-dateutil/template
index 7675b8f9447..ecedb52ebbd 100644
--- a/srcpkgs/python-dateutil/template
+++ b/srcpkgs/python-dateutil/template
@@ -2,7 +2,6 @@
 pkgname=python-dateutil
 version=2.8.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="dateutil"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-dateutil_package() {
-	archs=noarch
 	depends="python3-six tzdata"
 	pycompile_module="dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 7f14fef90a6..8ef89843121 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -2,7 +2,6 @@
 pkgname=python-decorator
 version=4.4.0
 revision=2
-archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module
 pycompile_module="decorator.py"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-decorator_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="decorator.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index 96234eb18c7..a0cf9f80b07 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -2,7 +2,6 @@
 pkgname=python-defusedxml
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module
 pycompile_module="defusedxml"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-defusedxml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="defusedxml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index 5af18eda664..990062e8ffe 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -2,7 +2,6 @@
 pkgname=python-discogs_client
 version=2.2.2
 revision=2
-archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-discogs_client_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-oauthlib"
 	pycompile_module="discogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 46bb0cccc31..9e5b8cafc56 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -2,7 +2,6 @@
 pkgname=python-distutils-extra
 version=2.39
 revision=4
-archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"
 hostmakedepends="intltool python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://launchpad.net/${pkgname}/trunk/${version}/+download/${pkgname}
 checksum=723f24f4d65fc8d99b33a002fbbb3771d4cc9d664c97085bf37f3997ae8063af
 
 python3-distutils-extra_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="DistUtilsExtra"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 66d237e89ee..2ee14846431 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -2,7 +2,6 @@
 pkgname=python-dnspython
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module
 pycompile_module="dns"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-dnspython_package() {
-	archs=noarch
 	pycompile_module="dns"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index 2224be0d21d..4d743effbe2 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -2,7 +2,6 @@
 pkgname=python-docker-pycreds
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module
 pycompile_module="dockerpycreds"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker-pycreds/docker-pycreds-${version}.tar.gz"
 checksum=6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4
 
 python3-docker-pycreds_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="dockerpycreds"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index 1a325bd6c46..8156dac04c2 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -2,7 +2,6 @@
 pkgname=python-docker
 version=4.2.0
 revision=1
-archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker/docker-${version}.tar.gz"
 checksum=ddae66620ab5f4bce769f64bcd7934f880c8abe6aa50986298db56735d0f722e
 
 python3-docker_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-websocket-client python3-docker-pycreds"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 4a0b3a7a33f..f3f10985243 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -2,7 +2,6 @@
 pkgname=python-dockerpty
 version=0.4.1
 revision=4
-archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/dockerpty/dockerpty-${version}.tar.gz"
 checksum=69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce
 
 python3-dockerpty_package() {
-	archs=noarch
 	depends="python3-six python3-docker"
 	pycompile_module="dockerpty"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 48e5f86c1e0..911a684ac8c 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -2,7 +2,6 @@
 pkgname=python-docopt
 version=0.6.2
 revision=5
-archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-docopt_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="docopt.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 99e74968ddd..b818198b077 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -2,7 +2,6 @@
 pkgname=python-docutils
 version=0.16
 revision=1
-archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -53,7 +52,6 @@ python3-docutils_package() {
 	 docutils:rst2xetex:/usr/bin/rst2xetex.py3
 	 docutils:rst2xml:/usr/bin/rst2xml.py3
 	 docutils:rstpep2html:/usr/bin/rstpep2html.py3"
-	archs=noarch
 	depends="python3 python3-Pygments"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 0978b7e168c..0c967a1e546 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -2,7 +2,6 @@
 pkgname=python-dogpile.cache
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-dogpile.cache_package() {
-	archs=noarch
 	depends="python3 python3-decorator"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 77fa674d156..f58f749178f 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -2,7 +2,6 @@
 pkgname=python-dominate
 version=2.5.2
 revision=1
-archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -14,7 +13,6 @@ distfiles="https://github.com/Knio/dominate/archive/${version}.tar.gz"
 checksum=a184e19ca36646a85ec40b83fe3762c08834ffe51499ec436eeb6646edde36ac
 
 python3-dominate_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 9e1108b28eb..f7854dad45d 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -2,7 +2,6 @@
 pkgname=python-ecdsa
 version=0.14.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 pycompile_module="ecdsa"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-ecdsa_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="ecdsa"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 3594e407205..0cc765fc3ea 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -2,7 +2,6 @@
 pkgname=python-editor
 version=1.0.4
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="editor"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/python-editor/python-editor-${version}.tar.gz"
 checksum=51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b
 
 python3-editor_package() {
-	archs=noarch
 	pycompile_module="editor"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 4668a9cc814..944d9424edd 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -2,7 +2,6 @@
 pkgname=python-empy
 version=3.3.4
 revision=2
-archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module
 pycompile_module="EmPy"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-empy_package() {
-	archs=noarch
 	pycompile_module="EmPy"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index 68d35c0e13a..3a9f8f9235e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python-enchant
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools enchant-devel"
diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index 6070650f35d..846be545b54 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -2,7 +2,6 @@
 pkgname=python-entrypoints
 version=0.3
 revision=2
-archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module
 pycompile_module="entrypoints.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-entrypoints_package() {
-	archs=noarch
 	pycompile_module="entrypoints.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enum34/template b/srcpkgs/python-enum34/template
index 9bd644fe47d..849d37e119d 100644
--- a/srcpkgs/python-enum34/template
+++ b/srcpkgs/python-enum34/template
@@ -2,7 +2,6 @@
 pkgname=python-enum34
 version=1.1.6
 revision=1
-archs=noarch
 wrksrc="enum34-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index b8cccad60ac..e00112ebce3 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -2,7 +2,6 @@
 pkgname=python-envdir
 version=1.0.1
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="envdir"
@@ -26,7 +25,6 @@ python3-envdir_package() {
 	alternatives="
 	 envdir:envdir:/usr/bin/envdir3
 	 envdir:envshell:/usr/bin/envshell3"
-	archs=noarch
 	pycompile_module="envdir"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index f28f40b0319..14cac54c7ea 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -2,7 +2,6 @@
 pkgname=python-enzyme
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module
 pycompile_module="enzyme"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/enzyme/enzyme-${version}.tar.gz"
 checksum=f2167fa97c24d1103a94d4bf4eb20f00ca76c38a37499821049253b2059c62bb
 
 python3-enzyme_package() {
-	archs=noarch
 	pycompile_module="enzyme"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index a96490fb56d..bbd1a376d97 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -2,7 +2,6 @@
 pkgname=python-ewmh
 version=0.1.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="ewmh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/ewmh/ewmh-${version}.tar.gz"
 checksum=c56b093f7d575181e979bb3a7d15c34065755f811c351ff0a31fede12b09343d
 
 python3-ewmh_package() {
-	archs=noarch
 	depends="python3-xlib"
 	pycompile_module="ewmh"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 834aa7730ee..842bc1534cb 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -2,7 +2,6 @@
 pkgname=python-exifread
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"
 pycompile_module="exifread"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-exifread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="exifread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 24d2ec0611f..ae213f138ad 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -2,7 +2,6 @@
 pkgname=python-fasteners
 version=0.15
 revision=2
-archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/fasteners/fasteners-${version}.tar.gz"
 checksum=3a176da6b70df9bb88498e1a18a9e4a8579ed5b9141207762368a1017bf8f5ef
 
 python3-fasteners_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="fasteners"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 24d5317b1e9..e2cc73a0da7 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -2,7 +2,6 @@
 pkgname=python-feedgenerator
 version=1.9.1
 revision=1
-archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/feedgenerator/feedgenerator-${version}.tar.gz"
 checksum=a28a5add781509390d1a6a52d017829853ee4bef1d2e7b4d5da0e9d1b395ce54
 
 python3-feedgenerator_package() {
-	archs=noarch
 	depends="python3-pytz python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index 94f0a58ec88..e803b2d67d8 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -2,7 +2,6 @@
 pkgname=python-feedparser
 version=5.2.1
 revision=6
-archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module
 pycompile_module="feedparser.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-feedparser_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="feedparser.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 10b974794b5..5951e1658ba 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -2,7 +2,6 @@
 pkgname=python-filetype
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module
 pycompile_module="filetype"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-filetype_package() {
-	archs=noarch
 	pycompile_module="filetype"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index e8e681421f7..07a57e6a816 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -2,7 +2,6 @@
 pkgname=python-flaky
 version=3.6.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="flaky"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/flaky/flaky-${version}.tar.gz"
 checksum=8cd5455bb00c677f787da424eaf8c4a58a922d0e97126d3085db5b279a98b698
 
 python3-flaky_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="flaky"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-funcsigs/template b/srcpkgs/python-funcsigs/template
index 26f14b0ca3c..627e54dbebb 100644
--- a/srcpkgs/python-funcsigs/template
+++ b/srcpkgs/python-funcsigs/template
@@ -2,7 +2,6 @@
 pkgname=python-funcsigs
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="funcsigs-${version}"
 build_style=python2-module
 pycompile_module="funcsigs"
diff --git a/srcpkgs/python-functools32/template b/srcpkgs/python-functools32/template
index 53f9d69a576..4d553cfc1a0 100644
--- a/srcpkgs/python-functools32/template
+++ b/srcpkgs/python-functools32/template
@@ -2,7 +2,6 @@
 pkgname=python-functools32
 version=3.2.3.post2
 revision=1
-archs=noarch
 wrksrc="functools32-${version/.post/-}"
 build_style=python2-module
 pycompile_module="functools32"
diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 88b09a1944f..bdca44ab56f 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -2,7 +2,6 @@
 pkgname=python-future
 version=0.18.2
 revision=1
-archs=noarch
 wrksrc="future-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ python3-future_package() {
 	alternatives="
 	 future:futurize:/usr/bin/futurize3
 	 future:pasteurize:/usr/bin/pasteurize3"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-futures/template b/srcpkgs/python-futures/template
index 12d1f4ae71f..3657171b7c9 100644
--- a/srcpkgs/python-futures/template
+++ b/srcpkgs/python-futures/template
@@ -2,7 +2,6 @@
 pkgname=python-futures
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="futures-${version}"
 build_style=python2-module
 pycompile_module="concurrent"
diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index 253ddaa07bd..be12400dee5 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -2,7 +2,6 @@
 pkgname=python-gitdb
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module
 pycompile_module="gitdb"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-gitdb_package() {
-	archs=noarch
 	depends="python3-smmap"
 	pycompile_module="gitdb"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 425fe1b7362..25a6dfa5265 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -2,7 +2,6 @@
 pkgname=python-github3
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module
 pycompile_module="github3"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-github3_package() {
-	archs=noarch
 	depends="python3-requests python3-uritemplate"
 	pycompile_module="github3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 0f71b4c7153..b7d621f71f9 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -2,7 +2,6 @@
 pkgname=python-gitlab
 version=1.12.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="gitlab"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-gitlab_package() {
-	archs=noarch
 	depends="python3-setuptools python3-requests python3-six"
 	pycompile_module="gitlab"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 7b3bb5a7bb7..2b05b8facce 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -2,7 +2,6 @@
 pkgname=python-gntp
 version=1.0.3
 revision=5
-archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module
 pycompile_module="gntp"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-gntp_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="gntp"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index b5dd94bf8e1..d3be663d966 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=python-gnupg
 version=0.4.6
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python gnupg"
@@ -20,7 +19,6 @@ post_install() {
 python3-gnupg_package() {
 	depends="python3 gnupg"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 		vlicense LICENSE.txt
diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index 027135d430c..348c347a094 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -2,7 +2,6 @@
 pkgname=python-gogs-client
 version=1.0.6
 revision=4
-archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module
 pycompile_module="gogs_client"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-gogs-client_package() {
-	archs=noarch
 	depends="python3-future python3-requests python3-attrs"
 	pycompile_module="gogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index a962f14522f..acf0b08270c 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -2,7 +2,6 @@
 pkgname=python-guessit
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module
 pycompile_module="guessit"
@@ -17,7 +16,6 @@ checksum=2dcd3f2acaf6c1a864f903f084ddd6a6b753f3107ae864355d7c8c1e9cb205b2
 alternatives="guessit:guessit:/usr/bin/guessit2"
 
 python3-guessit_package() {
-	archs=noarch
 	pycompile_module="guessit"
 	depends="python3 python3-rebulk python3-babelfish python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 7f2d2c5fa8a..c078bb1edda 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -2,7 +2,6 @@
 pkgname=python-h11
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc=h11-${version}
 build_style=python-module
 pycompile_module="h11"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-h11_package() {
-	archs=noarch
 	pycompile_module="h11"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index a914f21ecb7..13f16c5495c 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -2,7 +2,6 @@
 pkgname=python-habanero
 version=0.6.2
 revision=2
-archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module
 pycompile_module="habanero"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-habanero_package() {
-	archs=noarch
 	pycompile_module="habanero"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index ffbac313103..2855219bb2a 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -2,7 +2,6 @@
 pkgname=python-hpack
 version=3.0.0
 revision=2
-archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module
 pycompile_module="hpack"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hpack_package() {
-	archs=noarch
 	pycompile_module="hpack"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-html2text/template b/srcpkgs/python-html2text/template
index f83a3a4c020..5b4e911b0a3 100644
--- a/srcpkgs/python-html2text/template
+++ b/srcpkgs/python-html2text/template
@@ -3,7 +3,6 @@
 pkgname=python-html2text
 version=2019.8.11
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 2565de64fd2..9740f92e0f7 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -2,7 +2,6 @@
 pkgname=python-html5lib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-html5lib_package() {
-	archs=noarch
 	pycompile_module="html5lib"
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index e798b4fc1b3..7d9e0b7e45f 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -2,7 +2,6 @@
 pkgname=python-httmock
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module
 pycompile_module="httmock.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-httmock_package() {
-	archs=noarch
 	pycompile_module="httmock.py"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index 3a31c396621..0b52b6a8c0e 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python-httplib2
 version=0.14.0
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="httplib2-${version}"
 build_style=python-module
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-httplib2_package() {
-	archs=noarch
 	depends="python3 ca-certificates"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 2c6942ac329..c31e3301020 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -2,7 +2,6 @@
 pkgname=python-hyper-h2
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-hyper-h2_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3 python3-hpack python3-hyperframe"
 	pkg_install() {
diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index 6b544c2061c..3e097830d29 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperframe
 version=5.2.0
 revision=2
-archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module
 pycompile_module="hyperframe"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperframe_package() {
-	archs=noarch
 	pycompile_module="hyperframe"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hyperlink/template b/srcpkgs/python-hyperlink/template
index 945bf72ee59..8f09927f274 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperlink
 version=19.0.0
 revision=2
-archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module
 pycompile_module="hyperlink"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperlink_package() {
-	archs=noarch
 	depends="python3-idna"
 	pycompile_module="hyperlink"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index de55593fc02..abbb225b87b 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -2,7 +2,6 @@
 pkgname=python-hypothesis
 version=4.38.2
 revision=2
-archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python
 build_style=python-module
@@ -35,7 +34,6 @@ do_check() {
 }
 
 python3-hypothesis_package() {
-	archs=noarch
 	pycompile_module="hypothesis"
 	depends="python3-attrs python3-coverage"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index dbb7ddb8fd3..f0a50b1a760 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -2,7 +2,6 @@
 pkgname=python-icalendar
 version=4.0.6
 revision=1
-archs=noarch
 wrksrc="icalendar-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-icalendar_package() {
-	archs=noarch
 	depends="python3-setuptools python3-dateutil python3-pytz"
 	alternatives="icalendar:icalendar:/usr/bin/icalendar3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 9de25fa6392..74896b4e4c5 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -2,7 +2,6 @@
 pkgname=python-idna
 version=2.9
 revision=1
-archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-idna_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index f64c86812b5..e65fa624fb8 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -2,7 +2,6 @@
 pkgname=python-imagesize
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module
 pycompile_module="imagesize.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-imagesize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="imagesize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-importlib_metadata/template b/srcpkgs/python-importlib_metadata/template
index 227e67ed565..f4a2e9438d0 100644
--- a/srcpkgs/python-importlib_metadata/template
+++ b/srcpkgs/python-importlib_metadata/template
@@ -2,7 +2,6 @@
 pkgname=python-importlib_metadata
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-incremental/template b/srcpkgs/python-incremental/template
index 70477e26866..70c332e0274 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -2,7 +2,6 @@
 pkgname=python-incremental
 version=17.5.0
 revision=3
-archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module
 pycompile_module="incremental"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-incremental_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="incremental"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index 64e48fd9330..02f724b4bdf 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -2,7 +2,6 @@
 pkgname=python-inotify
 version=0.9.6
 revision=4
-archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-inotify_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyinotify.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ipaddr/template b/srcpkgs/python-ipaddr/template
index 9bd50773ae6..f17949a1822 100644
--- a/srcpkgs/python-ipaddr/template
+++ b/srcpkgs/python-ipaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddr
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="ipaddr-${version}"
 build_style=python2-module
 pycompile_module="ipaddr.py"
diff --git a/srcpkgs/python-ipaddress/template b/srcpkgs/python-ipaddress/template
index 8a2d6c80b31..4d598e1146a 100644
--- a/srcpkgs/python-ipaddress/template
+++ b/srcpkgs/python-ipaddress/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddress
 version=1.0.23
 revision=1
-archs=noarch
 wrksrc="ipaddress-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 3c53013fb9d..f44d919759b 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -2,7 +2,6 @@
 pkgname=python-iptools
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="iptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-iptools_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="iptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 1cc46a060d6..92d61d8166b 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -2,7 +2,6 @@
 pkgname=python-isbnlib
 version=3.9.6
 revision=2
-archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module
 pycompile_module="isbnlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-isbnlib_package() {
-	archs=noarch
 	pycompile_module="isbnlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a841866d439..4e59ea10e12 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -2,7 +2,6 @@
 pkgname=python-iso-8601
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module
 pycompile_module="iso8601"
diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index 74e4e813e64..bb5115ef04e 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -2,7 +2,6 @@
 pkgname=python-isodate
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module
 pycompile_module="isodate"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-isodate_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="isodate"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index cd8e43b69ea..bcc48aa6abd 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -2,7 +2,6 @@
 pkgname=python-isort
 version=4.3.21
 revision=2
-archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module
 pycompile_module="isort"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-isort_package() {
-	archs=noarch
 	pycompile_module="isort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index fe51cc78a9b..b02eeabc46a 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -2,7 +2,6 @@
 pkgname=python-itsdangerous
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-itsdangerous_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jaraco.functools/template b/srcpkgs/python-jaraco.functools/template
index 55c82a8101a..84aaea71b7e 100644
--- a/srcpkgs/python-jaraco.functools/template
+++ b/srcpkgs/python-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python-jaraco.functools
 version=2.0
 revision=3
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 0799a69c69f..5c0437ae78d 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -2,7 +2,6 @@
 pkgname=python-jedi
 version=0.17.2
 revision=2
-archs=noarch
 wrksrc="jedi-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jedi_package() {
-	archs=noarch
 	depends="python3-parso"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 6f1dfcecf0f..5716281b7fd 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -2,7 +2,6 @@
 pkgname=python-jmespath
 version=0.10.0
 revision=1
-archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jmespath_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="jmespath:jp.py:/usr/bin/jp.py3"
diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index fd103d123aa..c7e06343501 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonpointer
 version=2.0
 revision=2
-archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-jsonpointer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="jsonpointer.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index a245168a824..d70336fef15 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonrpclib
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module
 pycompile_module="jsonrpclib"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/j/jsonrpclib-pelix/jsonrpclib-pelix-${version}.tar.gz"
 checksum=19c558e169a51480b39548783067ca55046b62b2409ab4559931255e12f635de
 
 python3-jsonrpclib_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 326b5609d36..f62b9a370a1 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -3,7 +3,6 @@ pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
 revision=4
-archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-jsonschema_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="jsonschema"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 6668b240008..a1a5ba3cb30 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -2,7 +2,6 @@
 pkgname=python-kaptan
 version=0.5.12
 revision=2
-archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module
 pycompile_module="kaptan"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-kaptan_package() {
-	archs=noarch
 	pycompile_module="kaptan"
 	depends="python3 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index 50e1d7e6e78..c9ed9368215 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -2,7 +2,6 @@
 pkgname=python-keepalive
 version=0.5
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/k/keepalive/keepalive-${version}.tar.gz"
 checksum=3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1
 
 python3-keepalive_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="keepalive"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 917131d6d93..96ea9ebf05b 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -2,7 +2,6 @@
 pkgname=python-kitchen
 version=1.2.6
 revision=3
-archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module
 pycompile_module="kitchen"
@@ -16,7 +15,6 @@ distfiles="https://github.com/fedora-infra/kitchen/archive/${version}.tar.gz"
 checksum=6963dd84819713aafdd55e5314dcce6df5a37430b62fd9c48770e9f1a467b2b0
 
 python3-kitchen_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="kitchen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-larch/template b/srcpkgs/python-larch/template
index 7b9fb4a1e5e..9cdece3c5a1 100644
--- a/srcpkgs/python-larch/template
+++ b/srcpkgs/python-larch/template
@@ -2,7 +2,6 @@
 pkgname=python-larch
 version=1.20151025
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools python-tracing"
 makedepends="python-devel python-tracing"
diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 39fcc264979..9ab0a38ac90 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -2,7 +2,6 @@
 pkgname=python-ldap3
 version=2.6.1
 revision=2
-archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module
 pycompile_module="ldap3"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=f21d1a65e19ed5a691d7cf30af375e84663254e800ddc950bd7b6f9bb15d2c19
 
 python3-ldap3_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="ldap3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 20f43af5f7d..6e155bae91b 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -2,7 +2,6 @@
 pkgname=python-libtmux
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module
 pycompile_module="libtmux"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-libtmux_package() {
-	archs=noarch
 	pycompile_module="libtmux"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 778cecba7e9..c03de4dada8 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-lockfile
 version=0.12.2
 revision=4
-archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-pbr python3-pbr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-lockfile_package() {
-	archs=noarch
 	pycompile_module="lockfile"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index c190d529bfe..13d75a8a077 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -2,7 +2,6 @@
 pkgname=python-logfury
 version=0.1.2
 revision=5
-archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module
 pycompile_module="logfury"
@@ -29,7 +28,6 @@ do_check() {
 }
 
 python3-logfury_package() {
-	archs=noarch
 	pycompile_module="logfury"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 6bb26bb6cd2..2265a60b796 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -2,7 +2,6 @@
 pkgname=python-magic
 version=0.4.18
 revision=2
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python libmagic"
@@ -18,7 +17,6 @@ post_install() {
 }
 
 python3-magic_package() {
-	archs=noarch
 	depends="python3 libmagic"
 	# Beware: not an alternative
 	conflicts="python3-file-magic>=0"
diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index e9068f64202..88f400e3d29 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -2,7 +2,6 @@
 pkgname=python-markdown2
 version=2.3.8
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="markdown2"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-markdown2_package() {
-	archs=noarch
 	pycompile_module="markdown2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-matplotlib/template b/srcpkgs/python-matplotlib/template
index b155d980569..421a1930bda 100644
--- a/srcpkgs/python-matplotlib/template
+++ b/srcpkgs/python-matplotlib/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 python-matplotlib-data_package() {
-	archs=noarch
 	conf_files="/etc/matplotlibrc"
 	short_desc+=" - data files"
 	pkg_install() {
diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index 1e2ed6328b8..d20b004b852 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -2,7 +2,6 @@
 pkgname=python-mccabe
 version=0.6.1
 revision=3
-archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-mccabe_package() {
-	archs=noarch
 	pycompile_module="mccabe.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index ca29bbd0d23..a9be9b7ff2f 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -2,7 +2,6 @@
 pkgname=python-mechanize
 version=0.4.3
 revision=3
-archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module
 pycompile_module="mechanize"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mechanize_package() {
-	archs=noarch
 	depends="python3 python3-html5lib"
 	pycompile_module="mechanize"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index ef5c054ba75..56e75385714 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -2,7 +2,6 @@
 pkgname=python-mistune
 version=0.8.4
 revision=2
-archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module
 pycompile_module="mistune.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mistune_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mistune.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mock/template b/srcpkgs/python-mock/template
index 8392c6e2a93..2690cb1b98f 100644
--- a/srcpkgs/python-mock/template
+++ b/srcpkgs/python-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-mock
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="mock"
diff --git a/srcpkgs/python-monotonic/template b/srcpkgs/python-monotonic/template
index 2c1e997bea1..d291dc8b5bb 100644
--- a/srcpkgs/python-monotonic/template
+++ b/srcpkgs/python-monotonic/template
@@ -2,7 +2,6 @@
 pkgname=python-monotonic
 version=1.5
 revision=1
-archs=noarch
 wrksrc="monotonic-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-more-itertools/template b/srcpkgs/python-more-itertools/template
index 8b77456eed7..598f5e643b9 100644
--- a/srcpkgs/python-more-itertools/template
+++ b/srcpkgs/python-more-itertools/template
@@ -3,7 +3,6 @@ pkgname=python-more-itertools
 reverts="6.0.0_1"
 version=5.0.0
 revision=2
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python2-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 0389f8c2a28..2bb2a79ee73 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -2,7 +2,6 @@
 pkgname=python-mpd2
 version=1.0.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mpd"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-mpd2_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpd"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index 8fd4873dd62..ef9609f1eac 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -2,7 +2,6 @@
 pkgname=python-mpmath
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module
 pycompile_module="mpmath"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mpmath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpmath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-msp430-tools/template b/srcpkgs/python-msp430-tools/template
index 84c0fd78cb8..af7413be891 100644
--- a/srcpkgs/python-msp430-tools/template
+++ b/srcpkgs/python-msp430-tools/template
@@ -2,7 +2,6 @@
 pkgname=python-msp430-tools
 version=0.9.2
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="msp430"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index 992c7b76fe9..524ccf0cf27 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -2,7 +2,6 @@
 pkgname=python-mtranslate
 version=1.6
 revision=2
-archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module
 pycompile_module="mtranslate"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mtranslate_package() {
-	archs=noarch
 	pycompile_module="mtranslate"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-munkres/template b/srcpkgs/python-munkres/template
index 97694aeac84..a0d670f74a1 100644
--- a/srcpkgs/python-munkres/template
+++ b/srcpkgs/python-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python-munkres
 version=1.0.12
 revision=1
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python2-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index a17ca953a3a..69ddaaa6924 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -2,7 +2,6 @@
 pkgname=python-musicbrainzngs
 version=0.6
 revision=4
-archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"
 pycompile_module="musicbrainzngs"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-musicbrainzngs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="musicbrainzngs"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index ffad63a70a1..638453e695e 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -2,7 +2,6 @@
 pkgname=python-mygpoclient
 version=1.8
 revision=3
-archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module
 pycompile_module="mygpoclient"
@@ -30,7 +29,6 @@ python3-mygpoclient_package() {
 	 mygpoclient:mygpo-simple-client:/usr/bin/mygpo-simple-client3"
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="mygpoclient"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 75626b9f6d5..21d4346f554 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -2,7 +2,6 @@
 pkgname=python-namedlist
 version=1.7
 revision=6
-archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/namedlist/namedlist-${version}.tar.gz"
 checksum=190b39ceaf1d6b59999811259e61beb1b26aaa482fb8c95538294d551461c986
 
 python3-namedlist_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="namedlist.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 7101e297aad..ec6df73b102 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -2,7 +2,6 @@
 pkgname=python-natsort
 version=6.0.0
 revision=2
-archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module
 pycompile_module="natsort"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-natsort_package() {
-	archs=noarch
 	pycompile_module="natsort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 54b653f68a9..ddf490888c6 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -2,7 +2,6 @@
 pkgname=python-ndg_httpsclient
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module
 pycompile_module="ndg/httpsclient"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ndg_httpsclient_package() {
-	archs=noarch
 	depends="python3-openssl python3-pyasn1"
 	pycompile_module="ndg/httpsclient"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 20cc1c93134..69fa4080f1c 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-netaddr
 version=0.7.19
 revision=3
-archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module
 pycompile_module="netaddr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-netaddr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="netaddr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index f2cd7fe5c3f..2ad6f5bb304 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -2,7 +2,6 @@
 pkgname=python-nose
 version=1.3.7
 revision=4
-archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module
 pycompile_module="nose"
@@ -18,7 +17,6 @@ checksum=f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98
 alternatives="nose:nosetests:/usr/bin/nosetests2"
 
 python3-nose_package() {
-	archs=noarch
 	pycompile_module="nose"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index 058abbd4253..de6db0c3cac 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -2,7 +2,6 @@
 pkgname=python-nose2
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="nose2"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-nose2_package() {
-	archs=noarch
 	pycompile_module="nose2"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-coverage python3-six"
diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 2223850f22e..1e47ceb7e75 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -13,14 +13,12 @@ license="BSD-2-Clause"
 homepage="https://github.com/bad-day/npyscreen"
 distfiles="https://github.com/bad-day/npyscreen/archive/${version}.tar.gz"
 checksum=6703c22d6bad3131b075d7d242c611a3c7ba8eae03f6d3cb414e3d35dae94b29
-archs=noarch
 
 post_install() {
 	vlicense LICENCE
 }
 
 python3-npyscreen_package() {
-	archs=noarch
 	pycompile_module="npyscreen"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 0582fb326c1..7bb1ee3effe 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -2,7 +2,6 @@
 pkgname=python-ntplib
 version=0.3.3
 revision=4
-archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"
 pycompile_module="ntplib.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/ntplib/ntplib-${version}.tar.gz"
 checksum="c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"
 
 python3-ntplib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ntplib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index 2398adba276..9469fb2411e 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -2,7 +2,6 @@
 pkgname=python-oauth2client
 version=4.1.3
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauth2client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/o/oauth2client/oauth2client-${version}.tar.gz"
 checksum=d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6
 
 python3-oauth2client_package() {
-	archs=noarch
 	depends="python3-httplib2 python3-pyasn1 python3-pyasn1-modules
 	 python3-rsa python3-six"
 	pycompile_module="oauth2client"
diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 036f1b31c92..ba8887bb647 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-oauthlib
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-oauthlib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 803d7b67cd8..8d57d382f61 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -2,7 +2,6 @@
 pkgname=python-olefile
 version=0.46
 revision=2
-archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module
 pycompile_module="olefile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-olefile_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="olefile"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index d7ab230194d..92d746abf01 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -2,7 +2,6 @@
 pkgname=python-openssl
 version=19.1.0
 revision=1
-archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pyOpenSSL/pyOpenSSL-${version}.tar.gz"
 checksum=9a24494b2602aaf402be5c9e30a0b82d4a5c67528fe8fb475e3f3bc00dd69507
 
 python3-openssl_package() {
-	archs=noarch
 	depends="python3-cryptography python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 06042d12b90..3aff25e48ab 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -2,7 +2,6 @@
 pkgname=python-packaging
 version=19.1
 revision=3
-archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module
 pycompile_module="packaging"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-packaging_package() {
-	archs=noarch
 	pycompile_module="packaging"
 	depends="python3-attrs python3-parsing python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index 780e9008ea7..91331977858 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -2,7 +2,6 @@
 pkgname=python-pam
 version=1.8.4
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="pam.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pam_package() {
-	archs=noarch
 	depends="python3 pam"
 	pycompile_module="pam.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index 8650d20256f..119156c8578 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -2,7 +2,6 @@
 pkgname=python-pandocfilters
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module
 pycompile_module="pandocfilters.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pandocfilters_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pandocfilters.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index f1bca0aea24..54447c2eb96 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -2,7 +2,6 @@
 pkgname=python-paramiko
 version=2.7.1
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/paramiko/paramiko-${version}.tar.gz"
 checksum=920492895db8013f6cc0179293147f830b8c7b21fdfc839b6bad760c27459d9f
 
 python3-paramiko_package() {
-	archs=noarch
 	depends="python3-cryptography python3-pyasn1 python3-bcrypt python3-pynacl"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 9ccdc26d51e..0eda1fafae5 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -2,7 +2,6 @@
 pkgname=python-parse
 version=1.12.0
 revision=2
-archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module
 pycompile_module="parse.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-parse_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="parse.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 56d64c7cbaa..db4b7f35583 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -2,7 +2,6 @@
 pkgname=python-parsing
 version=2.4.6
 revision=1
-archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-parsing_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 49ed2fbdf20..93cbe8ef17d 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -2,7 +2,6 @@
 pkgname=python-parso
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index f46a3e92642..805563fc9a6 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -2,7 +2,6 @@
 pkgname=python-passlib
 version=1.7.1
 revision=3
-archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module
 pycompile_module="passlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-passlib_package() {
-	archs=noarch
 	pycompile_module="passlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathlib/template b/srcpkgs/python-pathlib/template
index 65704965145..b71e822c2e8 100644
--- a/srcpkgs/python-pathlib/template
+++ b/srcpkgs/python-pathlib/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="pathlib-${version}"
 build_style=python2-module
 pycompile_module="pathlib.py"
diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index fa600b78fbe..d879dbb709c 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib2
 version=2.3.4
 revision=3
-archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module
 pycompile_module="pathlib2"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pathlib2/pathlib2-${version}.tar.gz"
 checksum=446014523bb9be5c28128c4d2a10ad6bb60769e78bd85658fe44a450674e0ef8
 
 python3-pathlib2_package() {
-	archs=noarch
 	depends="python3-six python3-scandir"
 	pycompile_module="pathlib2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index bd4736ec45d..33d17e59452 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -2,7 +2,6 @@
 pkgname=python-pathspec
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module
 pycompile_module="pathspec"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-pathspec_package() {
-	archs=noarch
 	pycompile_module="pathspec"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 47dc6ef6a71..d8785d20444 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -2,7 +2,6 @@
 pkgname=python-pathtools
 version=0.1.2
 revision=2
-archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module
 pycompile_module="pathtools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pathtools_package() {
-	archs=noarch
 	pycompile_module="pathtools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index 956d0b4cad9..218cf6e1bae 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -2,7 +2,6 @@
 pkgname=python-pbkdf2
 version=1.3
 revision=4
-archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module
 pycompile_module="pbkdf2"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pbkdf2_package() {
-	archs=noarch
 	pycompile_module="pbkdf2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pbr/template b/srcpkgs/python-pbr/template
index 9c7216056fe..fca5c38e134 100644
--- a/srcpkgs/python-pbr/template
+++ b/srcpkgs/python-pbr/template
@@ -2,7 +2,6 @@
 pkgname=python-pbr
 version=5.4.3
 revision=2
-archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module
 pycompile_module="pbr"
@@ -17,7 +16,6 @@ checksum=2c8e420cd4ed4cec4e7999ee47409e876af575d4c35a45840d59e8b5f3155ab8
 alternatives="pbr:pbr:/usr/bin/pbr2"
 
 python3-pbr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pbr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ef7db98e491..ae37b56cb7c 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -2,7 +2,6 @@
 pkgname=python-pdfrw
 version=0.4
 revision=3
-archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 
 python3-pdfrw_package() {
 	replaces="python-pdfrw-example<${version}_${revision}"
-	archs=noarch
 	pycompile_module="pdfrw"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 03102c3d294..c17f54ee717 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -2,7 +2,6 @@
 pkgname=python-pexpect
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module
 pycompile_module="pexpect"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-pexpect_package() {
-	archs=noarch
 	depends="python3-ptyprocess"
 	pycompile_module="pexpect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index f98052f4151..a0120b06438 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -2,7 +2,6 @@
 pkgname=python-pgmigrate
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pgmigrate_package() {
-	archs=noarch
 	depends="python3 python3-sqlparse python3-psycopg2 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index a28b6e209e7..86291588854 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -2,7 +2,6 @@
 pkgname=python-pgpdump
 version=1.5
 revision=6
-archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/toofishes/python-pgpdump/archive/${version}.tar.gz
 checksum=05383f66e467e855299d1ed51161c6038ac338d9d10bd33476b574dc3bef64ff
 
 python3-pgpdump_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pgpdump"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index e3c9a17bfdc..dd4753a52af 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -2,7 +2,6 @@
 pkgname=python-picamera
 version=1.13
 revision=2
-archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module
 pycompile_module="picamera"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-picamera_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="picamera"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index c1d86826c15..2cbddcf65af 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -2,7 +2,6 @@
 pkgname=python-pickleshare
 version=0.7.5
 revision=2
-archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module
 pycompile_module="pickleshare.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pickleshare_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pickleshare.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index d44215124f4..58b3e982ca7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -2,7 +2,6 @@
 pkgname=python-pip
 version=20.0.2
 revision=1
-archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pip_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pip:pip:/usr/bin/pip3"
diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index 69490a04324..b5c3c76ad0f 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -2,7 +2,6 @@
 pkgname=python-pipenv
 version=2020.8.13
 revision=1
-archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ post_install() {
 }
 
 python3-pipenv_package() {
-	archs=noarch
 	depends="python3 python3-pip python3-virtualenv python3-virtualenv-clone"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="
diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index e9e5480907d..9a423f67e48 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -2,7 +2,6 @@
 pkgname=python-pkgconfig
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module
 pycompile_module="pkgconfig"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pkgconfig_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pkgconfig"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pluggy/template b/srcpkgs/python-pluggy/template
index e52dee341ec..89bedfb33d4 100644
--- a/srcpkgs/python-pluggy/template
+++ b/srcpkgs/python-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python-pluggy
 version=0.13.1
 revision=1
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-ply/template b/srcpkgs/python-ply/template
index 04a3defa6aa..0ea8ca0f182 100644
--- a/srcpkgs/python-ply/template
+++ b/srcpkgs/python-ply/template
@@ -2,7 +2,6 @@
 pkgname=python-ply
 version=3.11
 revision=2
-archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ply_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ply"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index 58fd20d3f73..6edc83ab027 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -2,7 +2,6 @@
 pkgname=python-podcastparser
 version=0.6.5
 revision=1
-archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -25,7 +24,6 @@ post_install() {
 
 python3-podcastparser_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove "usr/lib/python3*"
diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index 8b8d4b66c68..67e81743db3 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -2,7 +2,6 @@
 pkgname=python-polib
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-polib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="polib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 455051f5a50..88fa8a98417 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -2,7 +2,6 @@
 pkgname=python-portend
 version=2.5
 revision=2
-archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
 pycompile_module="portend.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-portend_package() {
-	archs=noarch
 	depends="python3-tempora"
 	pycompile_module="portend.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 6d8063fc43a..8cd4d8943da 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -2,7 +2,6 @@
 pkgname=python-pretend
 version=1.0.9
 revision=2
-archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module
 pycompile_module="pretend"
diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 0d6bd1db69d..80371bed0fa 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -2,7 +2,6 @@
 pkgname=python-progress
 version=1.5
 revision=2
-archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module
 pycompile_module="progress"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-progress_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="progress"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 7b71fbeffc2..ee3bd9aafad 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -2,7 +2,6 @@
 pkgname=python-prometheus_client
 version=0.7.1
 revision=2
-archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module
 pycompile_module="prometheus_client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/prometheus_client/prometheus_client-${version}.tar.gz"
 checksum=71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da
 
 python3-prometheus_client_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="prometheus_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index 70516738c27..614745d925b 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -3,7 +3,6 @@ pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.18
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index e0f00f41668..1d93496f287 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -2,7 +2,6 @@
 pkgname=python-prompt_toolkit2
 version=2.0.9
 revision=5
-archs=noarch
 build_style=meta
 short_desc="Python2 library for building command lines (removed package)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index b1da90de474..b4e6f91a33f 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -2,7 +2,6 @@
 pkgname=python-proselint
 version=0.10.2
 revision=2
-archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module
 pycompile_module="proselint"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-proselint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-click python3-future python3-six"
 	pycompile_module="proselint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 0485f0d930d..816bddbb2c0 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python-protobuf
 version=3.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-protobuf_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index fd2e51fa3ac..961bbff5e30 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -2,7 +2,6 @@
 pkgname=python-ptyprocess
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module
 pycompile_module="ptyprocess"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-ptyprocess_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ptyprocess"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 2a0559b4dc3..1256aeab468 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -2,7 +2,6 @@
 pkgname=python-py
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="py-${version}"
 build_style=python-module
 pycompile_module="py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-py_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index e9a10e88c15..8c54b620b8a 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -2,7 +2,6 @@
 pkgname=python-pyPEG2
 version=2.15.2
 revision=5
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/${pkgname#*-}/${pkgname#*-}-${version}.tar.gz"
 checksum=2b2d4f80d8e1a9370b2a91f4a25f4abf7f69b85c8da84cd23ec36451958a1f6d
 
 python3-pyPEG2_package() {
-	archs=noarch
 	depends="python3-lxml"
 	pycompile_module="pypeg2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index d5b2d967f4e..d3524454dbe 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -2,7 +2,6 @@
 pkgname=python-pyacoustid
 version=1.1.5
 revision=3
-archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyacoustid_package() {
-	archs=noarch
 	pycompile_module="acoustid.py chromaprint.py"
 	depends="chromaprint python3-audioread python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index f45976e5b0b..3a4cfe7f541 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyaes
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module
 pycompile_module="pyaes"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyaes_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyaes"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1-modules/template b/srcpkgs/python-pyasn1-modules/template
index b180252b96d..20626d431c6 100644
--- a/srcpkgs/python-pyasn1-modules/template
+++ b/srcpkgs/python-pyasn1-modules/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1-modules
 version=0.2.8
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyasn1_modules"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-pyasn1-modules_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="pyasn1_modules"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1/template b/srcpkgs/python-pyasn1/template
index 7f50c81b281..bb3e06272af 100644
--- a/srcpkgs/python-pyasn1/template
+++ b/srcpkgs/python-pyasn1/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1
 version=0.4.8
 revision=1
-archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyasn1_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index 04e85465121..647bd2d58d3 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -2,7 +2,6 @@
 pkgname=python-pycodestyle
 version=2.6.0
 revision=1
-archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pycodestyle_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle3"
diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index c4a4c9cafbd..a7cf612255f 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -2,7 +2,6 @@
 pkgname=python-pycountry
 version=19.8.18
 revision=1
-archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/pycountry/pycountry-${version}.tar.gz"
 checksum=3c57aa40adcf293d59bebaffbe60d8c39976fba78d846a018dc0c2ec9c6cb3cb
 
 python3-pycountry_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index d2e83aa79b2..b833ec6e2d2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -2,7 +2,6 @@
 pkgname=python-pycparser
 version=2.19
 revision=2
-archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module
 pycompile_module="pycparser"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pycparser_package() {
-	archs=noarch
 	depends="python3-ply"
 	pycompile_module="pycparser"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pydns/template b/srcpkgs/python-pydns/template
index 50f97da8ede..5d0027f9eee 100644
--- a/srcpkgs/python-pydns/template
+++ b/srcpkgs/python-pydns/template
@@ -2,7 +2,6 @@
 pkgname=python-pydns
 version=2.3.6
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="DNS"
diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index 193650442fc..694e8598c45 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -2,7 +2,6 @@
 pkgname=python-pyelftools
 version=0.25
 revision=2
-archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module
 pycompile_module="elftools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyelftools_package() {
-	archs=noarch
 	pycompile_module="elftools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 586cba32b89..97d5c43a109 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyflakes
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyflakes_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pyflakes:pyflakes:/usr/bin/pyflakes3"
diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index 397103c49f7..084f261cdf7 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -2,7 +2,6 @@
 pkgname=python-pyglet
 version=1.4.10
 revision=1
-archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools unzip"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pyglet_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pykka/template b/srcpkgs/python-pykka/template
index 512639c69c3..9c668bc01e2 100644
--- a/srcpkgs/python-pykka/template
+++ b/srcpkgs/python-pykka/template
@@ -2,7 +2,6 @@
 pkgname=python-pykka
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="Pykka-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/P/Pykka/Pykka-${version}.tar.gz"
 checksum=895cc2ed8779b65dd14a90ba3f4b8cb0f7904c7bf0710fe96a923019f8e82a39
 
 python3-pykka_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index b70bd73d4aa..34131d837e6 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -2,7 +2,6 @@
 pkgname=python-pyotp
 version=2.3.0
 revision=2
-archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module
 pycompile_module="pyotp"
@@ -26,7 +25,6 @@ post_install() {
 
 python3-pyotp_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="pyotp"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-pypcapfile/template b/srcpkgs/python-pypcapfile/template
index 73b767f61c2..ef4d475ff13 100644
--- a/srcpkgs/python-pypcapfile/template
+++ b/srcpkgs/python-pypcapfile/template
@@ -3,7 +3,6 @@ pkgname=python-pypcapfile
 version=0.12.0
 revision=1
 wrksrc="pypcapfile-${version}"
-archs=noarch
 build_style=python2-module
 pycompile_module="pcapfile"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 1286923b906..302c6765857 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -2,7 +2,6 @@
 pkgname=python-pyperclip
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_wrksrc=pyperclip-${version}
 build_style=python-module
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-pyperclip_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index 1bea9c2ffdf..8ff86f6f711 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -2,7 +2,6 @@
 pkgname=python-pyqtgraph
 version=0.10.0
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyqtgraph"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyqtgraph_package() {
-	archs=noarch
 	depends="python3-PyQt5 python3-numpy python3-PyOpenGL"
 	pycompile_module="pyqtgraph"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index cd81c4d0624..18387d894a8 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -2,7 +2,6 @@
 pkgname=python-pyrfc3339
 version=1.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"
 wrksrc="pyRFC3339-${version}"
@@ -23,7 +22,6 @@ python3-pyrfc3339_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-pytz"
 	pycompile_module="pyrfc3339"
-	archs=noarch
 	pkg_install() {
 		vlicense LICENSE.txt LICENSE
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-pyserial/template b/srcpkgs/python-pyserial/template
index 354be493b16..ea2ba7123ee 100644
--- a/srcpkgs/python-pyserial/template
+++ b/srcpkgs/python-pyserial/template
@@ -2,7 +2,6 @@
 pkgname=python-pyserial
 version=3.4
 revision=3
-archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyserial_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="serial"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index ca508a4a7cc..1396099515a 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -2,7 +2,6 @@
 pkgname=python-pysocks
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pysocks_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index be742c08ce4..42a6719080a 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -2,7 +2,6 @@
 pkgname=python-pysrt
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=b4f844ba33e4e7743e9db746492f3a193dc0bc112b153914698e7c1cdeb9b0b9
 alternatives="srt:srt:/usr/bin/srt2"
 
 python3-pysrt_package() {
-	archs=noarch
 	depends="python3 python3-chardet"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="srt:srt:/usr/bin/srt3"
diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 893045b8998..26c053a1158 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -2,7 +2,6 @@
 pkgname=python-pystache
 version=0.5.4
 revision=3
-archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module
 pycompile_module="pystache"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pystache_package() {
-	archs=noarch
 	pycompile_module="pystache"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 1efc2f9a488..86bcd331228 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -2,7 +2,6 @@
 pkgname=python-pyte
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module
 pycompile_module="pyte"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-pyte_package() {
-	archs=noarch
 	pycompile_module="pyte"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-wcwidth"
diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index 14255af8a35..3dd87c592dd 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-fixture-config
 version=1.3.0
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_fixture_config.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-fixture-config_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_fixture_config.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index 240e8773aaa..d963da9fb14 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-mock
 version=1.10.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_mock.py _pytest_mock_version.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-mock_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_mock.py _pytest_mock_version.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 5e2ffe71b6e..3c205b971de 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest
 version=4.6.9
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index 40f582962c8..81df887b425 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -2,7 +2,6 @@
 pkgname=python-pytz
 version=2019.3
 revision=2
-archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module
 pycompile_module="pytz"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pytz_package() {
-	archs=noarch
 	depends="python3 tzdata"
 	pycompile_module="pytz"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index 2ec53088636..bc6fb1ba8a5 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -2,7 +2,6 @@
 pkgname=python-pyudev
 version=0.21.0
 revision=3
-archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module
 pycompile_module="pyudev"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=5f4625f89347e465731866ddbe042a055bbc5092577356aa3d089ac5fb8efd94
 
 python3-pyudev_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 
diff --git a/srcpkgs/python-pyx/template b/srcpkgs/python-pyx/template
index 1ece52764ab..24a8edae5fb 100644
--- a/srcpkgs/python-pyx/template
+++ b/srcpkgs/python-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python-pyx
 version=0.12.1
 revision=4
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python2-module
 pycompile_module="pyx"
diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 35b568eb4e6..28c0ca61c67 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -2,7 +2,6 @@
 pkgname=python-pyzbar
 version=0.1.8
 revision=2
-archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module
 pycompile_module="pyzbar"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-pyzbar_package() {
-	archs=noarch
 	pycompile_module="pyzbar"
 	depends="libzbar python3"
 	alternatives="pyzbar:read_zbar:/usr/bin/read_zbar.py3"
diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index bf35c82757e..10f8455d835 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -2,7 +2,6 @@
 pkgname=python-qrcode
 version=6.1
 revision=2
-archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module
 pycompile_module="qrcode"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-qrcode_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="qrcode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 2603cae3584..741b7f63a76 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -2,7 +2,6 @@
 pkgname=python-random2
 version=1.0.1
 revision=4
-archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module
 pycompile_module="random2.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/random2/random2-${version}.zip"
 checksum=34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007
 
 python3-random2_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="random2.py"
 	pkg_install() {
diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index 83ff75c6e03..20e7a42f8d8 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -2,7 +2,6 @@
 pkgname=python-rarfile
 version=4.0
 revision=1
-archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-rarfile_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index 87382c21602..b7457cfda31 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -2,7 +2,6 @@
 pkgname=python-raven
 version=6.10.0
 revision=2
-archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module
 pycompile_module="raven"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-raven_package() {
-	archs=noarch
 	pycompile_module="raven"
 	depends="ca-certificates python3-setuptools"
 	alternatives="raven:raven:/usr/bin/raven3"
diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index f676dedfb2f..471a4d5ad1b 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -2,7 +2,6 @@
 pkgname=python-rdflib
 version=4.2.2
 revision=3
-archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ python3-rdflib_package() {
 	 rdflib:rdfgraphisomorphism:/usr/bin/rdfgraphisomorphism3
 	 rdflib:rdfpipe:/usr/bin/rdfpipe3
 	 rdflib:rdfs2dot:/usr/bin/rdfs2dot3"
-	archs=noarch
 	depends="python3-setuptools python3-isodate python3-parsing"
 	pycompile_module="rdflib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ace92da477b..46caca6191c 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -2,7 +2,6 @@
 pkgname=python-readability-lxml
 version=0.8.1
 revision=1
-archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/r/readability-lxml/readability-lxml-${version}.tar.gz"
 checksum=e51fea56b5909aaf886d307d48e79e096293255afa567b7d08bca94d25b1a4e1
 
 python3-readability-lxml_package() {
-	archs=noarch
 	depends="python3-lxml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 3bc58c3a7dd..ed683fde9ef 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -2,7 +2,6 @@
 pkgname=python-rebulk
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-rebulk_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index 68eb4ee09e9..59475277d20 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -2,7 +2,6 @@
 pkgname=python-redis
 version=3.5.3
 revision=1
-archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-redis_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 2d1410fcd1b..6c66bce1309 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-mock
 version=1.5.2
 revision=3
-archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module
 pycompile_module="requests_mock"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-mock/requests-mock-${version}.tar.gz"
 checksum=7a5fa99db5e3a2a961b6f20ed40ee6baeff73503cf0a553cc4d679409e6170fb
 
 python3-requests-mock_package() {
-	archs=noarch
 	pycompile_module="requests_mock"
 	depends="python3-requests python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index e3e824b35b1..84cf752dcb0 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-oauthlib
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_oauthlib"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-requests-oauthlib_package() {
-	archs=noarch
 	depends="python3-requests python3-oauthlib"
 	pycompile_module="requests_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 13a81586221..62d763b2b5d 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-toolbelt
 version=0.9.1
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_toolbelt"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-toolbelt/requests-toolbelt-${version}.tar.gz"
 checksum=968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0
 
 python3-requests-toolbelt_package() {
-	archs=noarch
 	pycompile_module="requests_toolbelt"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index 1bd9f51333c..a2c68c7452a 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -2,7 +2,6 @@
 pkgname=python-requests
 version=2.23.0
 revision=1
-archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-requests_package() {
-	archs=noarch
 	depends="ca-certificates python3-chardet python3-urllib3 python3-idna"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index 2522872cc32..4543670a319 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -2,7 +2,6 @@
 pkgname=python-rfc6555
 version=0.0.0
 revision=2
-archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module
 pycompile_module="rfc6555"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/rfc6555/rfc6555-${version}.tar.gz"
 checksum=191cbba0315b53654155321e56a93466f42cd0a474b4f341df4d03264dcb5217
 
 python3-rfc6555_package() {
-	archs=noarch
 	pycompile_module="rfc6555"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index 72f32a9da0d..f9a3dbd72ad 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -3,7 +3,6 @@ pkgname=python-ripe-atlas-cousteau
 version=1.4.2
 revision=2
 build_style=python-module
-archs=noarch
 pycompile_module="ripe/atlas/cousteau"
 wrksrc="ripe-atlas-cousteau-${version}"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=91bfaaafe7561ccc7b91f555a5004c467d615b9f404739496a4ed6a22fcb07b7
 
 python3-ripe-atlas-cousteau_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="ripe/atlas/cousteau"
 	depends="python3-dateutil python3-socketIO-client"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 22abb48af46..3e9b273ed72 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -2,7 +2,6 @@
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module
 pycompile_module="ripe/atlas/sagan"
@@ -17,7 +16,6 @@ checksum=39d8c0864ec8d790fe46f45cb55020d8603fceb374c77cda46f96b71279af016
 
 python3-ripe-atlas-sagan_package() {
 	depends="python3-dateutil python3-pytz python3-cryptography"
-	archs=noarch
 	pycompile_module="ripe/atlas/sagan"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index 11e9bf2c60d..17e034b0edc 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -2,7 +2,6 @@
 pkgname=python-rsa
 version=4.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="rsa"
@@ -31,7 +30,6 @@ python3-rsa_package() {
 	 rsa:pyrsa-priv2pub:/usr/bin/pyrsa-priv2pub3
 	 rsa:pyrsa-sign:/usr/bin/pyrsa-sign3
 	 rsa:pyrsa-verify:/usr/bin/pyrsa-verify3"
-	archs=noarch
 	pycompile_module="rsa"
 	depends="python3-setuptools python3-pyasn1"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index 29aba6cc68b..70f276e67d2 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -2,7 +2,6 @@
 pkgname=python-s3transfer
 version=0.3.3
 revision=1
-archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/s3transfer/archive/${version}.tar.gz"
 checksum=0c8b0f7aaf32173d1475df0a453bfdc37be8207ea15c1d8415a590ef3986fc51
 
 python3-s3transfer_package() {
-	archs=noarch
 	depends="python3-botocore"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index 0db5b157ce1..49654ed01ce 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -2,7 +2,6 @@
 pkgname=python-scour
 version=0.37
 revision=2
-archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module
 pycompile_module="scour"
@@ -23,7 +22,6 @@ do_check() {
 }
 
 python3-scour_package() {
-	archs=noarch
 	pycompile_module="scour"
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-selectors2/template b/srcpkgs/python-selectors2/template
index 1ad45d8e7d3..c73fcb17309 100644
--- a/srcpkgs/python-selectors2/template
+++ b/srcpkgs/python-selectors2/template
@@ -2,7 +2,6 @@
 pkgname=python-selectors2
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="selectors2-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 94f56545695..68a97a3aa47 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -2,7 +2,6 @@
 pkgname=python-send2trash
 version=1.5.0
 revision=2
-archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module
 pycompile_module="send2trash"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-send2trash_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="send2trash"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index 658802bef0d..59083a2af5c 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python-serpent
 version=1.28
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-service_identity/template b/srcpkgs/python-service_identity/template
index e21a1520a75..d4957063827 100644
--- a/srcpkgs/python-service_identity/template
+++ b/srcpkgs/python-service_identity/template
@@ -2,7 +2,6 @@
 pkgname=python-service_identity
 version=18.1.0
 revision=2
-archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module
 pycompile_module="service_identity"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-service_identity_package() {
-	archs=noarch
 	depends="python3-attrs python3-pyasn1-modules python3-cryptography"
 	pycompile_module="service_identity"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index d71e746e12e..3e3aeaa589c 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -4,7 +4,6 @@ pkgname=python-setuptools
 # python2 support for setuptools ended at 44.0.0
 version=44.0.0
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 16de6daf662..67cd0c68998 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -2,7 +2,6 @@
 pkgname=python-sh
 version=1.13.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-sh_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index 6c95222fa7e..cbd435e04e5 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -2,7 +2,6 @@
 pkgname=python-simplebayes
 version=1.5.8
 revision=2
-archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module
 pycompile_module="simplebayes"
@@ -22,7 +21,6 @@ post_install() {
 python3-simplebayes_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="simplebayes"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index f352387fa1f..483244ed30f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -2,7 +2,6 @@
 pkgname=python-simplegeneric
 version=0.8.1
 revision=4
-archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/simplegeneric/simplegeneric-${version}.zip"
 checksum=dc972e06094b9af5b855b3df4a646395e43d1c9d0d39ed345b7393560d0b9173
 
 python3-simplegeneric_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="simplegeneric.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-singledispatch/template b/srcpkgs/python-singledispatch/template
index 9da989105f8..cc5f1468f5b 100644
--- a/srcpkgs/python-singledispatch/template
+++ b/srcpkgs/python-singledispatch/template
@@ -2,7 +2,6 @@
 pkgname=python-singledispatch
 version=3.4.0.3
 revision=1
-archs=noarch
 wrksrc="singledispatch-${version}"
 build_style=python2-module
 pycompile_module="singledispatch.py singledispatch_helpers.py"
diff --git a/srcpkgs/python-six/template b/srcpkgs/python-six/template
index 7fde8bc856b..d69f387b1dd 100644
--- a/srcpkgs/python-six/template
+++ b/srcpkgs/python-six/template
@@ -2,7 +2,6 @@
 pkgname=python-six
 version=1.15.0
 revision=1
-archs=noarch
 wrksrc="six-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ do_check() {
 }
 
 python3-six_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 8c8ea952285..5de11eb3f6b 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -2,7 +2,6 @@
 pkgname=python-smmap
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module
 pycompile_module="smmap"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-smmap_package() {
-	archs=noarch
 	pycompile_module="smmap"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 221478860e5..a3059e544d9 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -2,7 +2,6 @@
 pkgname=python-snowballstemmer
 version=1.2.1
 revision=4
-archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/snowballstemmer/snowballstemmer-${version}.tar.gz"
 checksum=919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128
 
 python3-snowballstemmer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="snowballstemmer"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 9495d7cf40b..7924c6d0cf4 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -2,7 +2,6 @@
 pkgname=python-socketIO-client
 version=0.7.2
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"
 wrksrc="socketIO-client-${version}"
@@ -22,7 +21,6 @@ post_install() {
 python3-socketIO-client_package() {
 	depends="python3-requests python3-six python3-websocket-client"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="socketIO_client"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 062cc3e6a8a..f412d7e4b4e 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -2,7 +2,6 @@
 pkgname=python-soupsieve
 version=1.9.5
 revision=2
-archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module
 pycompile_module="soupsieve"
@@ -34,7 +33,6 @@ post_install() {
 }
 
 python3-soupsieve_package() {
-	archs=noarch
 	pycompile_module="soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-spambayes/template b/srcpkgs/python-spambayes/template
index 9a85558c1d3..24d92de47dd 100644
--- a/srcpkgs/python-spambayes/template
+++ b/srcpkgs/python-spambayes/template
@@ -3,7 +3,6 @@ pkgname=python-spambayes
 version=1.1b3
 revision=1
 wrksrc=${pkgname#*-}-${version}
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python-lockfile python-pydns"
diff --git a/srcpkgs/python-sqlalchemy-migrate/template b/srcpkgs/python-sqlalchemy-migrate/template
index bb002660c0f..d9818bc1975 100644
--- a/srcpkgs/python-sqlalchemy-migrate/template
+++ b/srcpkgs/python-sqlalchemy-migrate/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlalchemy-migrate
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="migrate"
@@ -27,7 +26,6 @@ python3-sqlalchemy-migrate_package() {
 	alternatives="
 	 migrate:migrate-repository:/usr/bin/migrate-repository3
 	 migrate:migrate:/usr/bin/migrate3"
-	archs=noarch
 	depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
 	 python3-sqlparse python3-tempita"
 	pycompile_module="migrate"
diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 0f8c6f8ea2e..18369a5ab6b 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module
 pycompile_module="sqlparse"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-sqlparse_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="sqlparse"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 97bb4b48cb6..f032c8cb0b0 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -2,7 +2,6 @@
 pkgname=python-stem
 version=1.8.0
 revision=1
-archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module
 pycompile_module="stem"
@@ -18,7 +17,6 @@ checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
 
 python3-stem_package() {
-	archs=noarch
 	depends="python3-cryptography"
 	pycompile_module="stem"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 4f781304d3f..21efeca4d6a 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -2,7 +2,6 @@
 pkgname=python-stevedore
 version=1.30.1
 revision=2
-archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module
 pycompile_module="stevedore"
@@ -21,7 +20,6 @@ pre_build() {
 }
 
 python3-stevedore_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="stevedore"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 11f63f67bba..093db30e6da 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -2,7 +2,6 @@
 pkgname=python-stormssh
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc=storm-${version}
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-stormssh_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-paramiko python3-termcolor python3-Flask"
 	pycompile_module="storm"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 74dcf00ebdd..fe30efae2dc 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -2,7 +2,6 @@
 pkgname=python-subliminal
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-subliminal_package() {
-	archs=noarch
 	depends="python3 python3-guessit python3-babelfish python3-enzyme
 	 python3-BeautifulSoup4 python3-requests python3-click python3-dogpile.cache
 	 python3-stevedore python3-chardet python3-pysrt python3-six python3-appdirs
diff --git a/srcpkgs/python-tempita/template b/srcpkgs/python-tempita/template
index c1c75ee1cac..1c59ba302bf 100644
--- a/srcpkgs/python-tempita/template
+++ b/srcpkgs/python-tempita/template
@@ -2,7 +2,6 @@
 pkgname=python-tempita
 version=0.5.2
 revision=4
-archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/T/Tempita/Tempita-${version}.tar.gz"
 checksum=cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c
 
 python3-tempita_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="tempita"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index 194dc2718e5..166dd7c1157 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -2,7 +2,6 @@
 pkgname=python-tempora
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-tempora_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-pytz"
 	alternatives="tempora:calc-prorate:/usr/bin/calc-prorate3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 73c18fc79eb..f68d3be8832 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -2,7 +2,6 @@
 pkgname=python-termcolor
 version=1.1.0
 revision=6
-archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-termcolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="termcolor.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index d649364d88d..1777e9906e4 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -2,7 +2,6 @@
 pkgname=python-terminado
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module
 pycompile_module="terminado"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-terminado_package() {
-	archs=noarch
 	depends="python3-ptyprocess python3-tornado"
 	pycompile_module="terminado"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index abfc59900c0..da250a65f02 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -2,7 +2,6 @@
 pkgname=python-testpath
 version=0.4.2
 revision=2
-archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module
 pycompile_module="testpath"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-testpath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="testpath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index 24bac87af6a..2e7ca37e415 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -2,7 +2,6 @@
 pkgname=python-texttable
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module
 pycompile_module="texttable.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-texttable_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="texttable.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tkinter/template b/srcpkgs/python-tkinter/template
index f2b6d0bacf1..e9019fbc09c 100644
--- a/srcpkgs/python-tkinter/template
+++ b/srcpkgs/python-tkinter/template
@@ -76,7 +76,6 @@ do_install() {
 }
 
 idle-python_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python2 using Tkinter"
 	pycompile_dirs="usr/lib/python2.7/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 812d80343cc..350b4c93b51 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -2,7 +2,6 @@
 pkgname=python-tmuxp
 version=1.5.4
 revision=1
-archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module
 pycompile_module="tmuxp"
@@ -28,7 +27,6 @@ post_install() {
 }
 
 python3-tmuxp_package() {
-	archs=noarch
 	pycompile_module="tmuxp"
 	depends="python3 python3-setuptools python3-colorama python3-click python3-kaptan python3-libtmux"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 2fd6eaa0cea..d853e4385fd 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -2,7 +2,6 @@
 pkgname=python-toml
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module
 pycompile_module="toml"
@@ -20,7 +19,6 @@ pkg_install() {
 }
 
 python3-toml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="toml"
 	short_desc=${short_desc/Python2/Python3}
diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index f7ee7d037af..3d3c1dafc5a 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -2,7 +2,6 @@
 pkgname=python-tqdm
 version=4.48.2
 revision=1
-archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -27,7 +26,6 @@ python3-tqdm_package() {
 	alternatives="
 	 tqdm:tqdm:/usr/bin/tqdm3
 	 tqdm:tqdm.1:/usr/share/man/man1/tqdm3.1"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-tracing/template b/srcpkgs/python-tracing/template
index 4408f31be9f..7281f1f9ecd 100644
--- a/srcpkgs/python-tracing/template
+++ b/srcpkgs/python-tracing/template
@@ -2,7 +2,6 @@
 pkgname=python-tracing
 version=0.10
 revision=1
-archs=noarch
 wrksrc="python-tracing-tracing-${version}"
 build_style=python2-module
 pycompile_module="tracing"
diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 2df1a81c9be..4742cade8b8 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -2,7 +2,6 @@
 pkgname=python-ttystatus
 version=0.38
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://code.liw.fi/debian/pool/main/p/${pkgname}/${pkgname}_${version
 checksum=e544dd5b0f77ebc3bb5b4ace34bd3d2751e72956ec096c8ffb34beaead433628
 
 python3-ttystatus_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ttystatus"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index 2487511922a..f2a6afd286f 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -2,7 +2,6 @@
 pkgname=python-tweepy
 version=3.8.0
 revision=2
-archs=noarch
 wrksrc="tweepy-${version}"
 build_style=python-module
 pycompile_module="tweepy"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-tweepy_package() {
-	archs=noarch
 	pycompile_module="tweepy"
 	depends="python3-requests-oauthlib python3-six python3-pysocks"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index e5e7194078a..775fbf19426 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -2,7 +2,6 @@
 pkgname=python-twitter
 version=3.5
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="twitter"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ pre_build() {
 }
 
 python3-twitter_package() {
-	archs=noarch
 	pycompile_module="twitter"
 	depends="python3-future python3-requests python3-requests-oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-txgithub/template b/srcpkgs/python-txgithub/template
index e33466d59e3..ccd5f7b9747 100644
--- a/srcpkgs/python-txgithub/template
+++ b/srcpkgs/python-txgithub/template
@@ -2,7 +2,6 @@
 pkgname=python-txgithub
 version=15.0.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="txgithub"
diff --git a/srcpkgs/python-typing/template b/srcpkgs/python-typing/template
index dce911b6b1a..b5bd5971843 100644
--- a/srcpkgs/python-typing/template
+++ b/srcpkgs/python-typing/template
@@ -2,7 +2,6 @@
 pkgname=python-typing
 version=3.6.6
 revision=1
-archs=noarch
 wrksrc="typing-${version}"
 build_style=python2-module
 pycompile_module="typing.py"
diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 2ff5c497523..dfbb1fc9b34 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -2,7 +2,6 @@
 pkgname=python-unittest-mixins
 version=1.6
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="unittest_mixins"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/u/unittest-mixins/unittest-mixins-${version}.tar.gz"
 checksum=05363abe099f0724b7bb6d71d0ce1046078c868cb10b3f1ebdf3ca6593c52507
 
 python3-unittest-mixins_package() {
-	archs=noarch
 	pycompile_module="unittest_mixins"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index 0808a11e98d..f5ae56e2e2d 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -2,7 +2,6 @@
 pkgname=python-urbandict
 version=0.6.1
 revision=1
-archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=a19685ffa2450bea2df9bf328a6ce7c3c1e2213c95171ae2263b987cc54d201b
 alternatives="urbandicli:urbandicli:/usr/bin/urbandicli2"
 
 python3-urbandict_package() {
-	archs=noarch
 	alternatives="urbandicli:urbandicli:/usr/bin/urbandicli3"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3"
diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 5a44f7e24af..7598cdcb114 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -2,7 +2,6 @@
 pkgname=python-uritemplate
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-uritemplate_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 3f354488f86..fd464147487 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -2,7 +2,6 @@
 pkgname=python-urllib3
 version=1.25.8
 revision=1
-archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-urllib3_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urlnorm/template b/srcpkgs/python-urlnorm/template
index ae488dc3179..2a4a1ab6eab 100644
--- a/srcpkgs/python-urlnorm/template
+++ b/srcpkgs/python-urlnorm/template
@@ -2,7 +2,6 @@
 pkgname=python-urlnorm
 version=1.1.4
 revision=2
-archs=noarch
 wrksrc="urlnorm-${version}"
 build_style=python2-module
 pycompile_module="urlnorm"
diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index 62d214489e2..86bf7e4fae0 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -2,7 +2,6 @@
 pkgname=python-urwidtrees
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module
 pycompile_module="urwidtrees"
@@ -16,7 +15,6 @@ distfiles="https://github.com/pazz/urwidtrees/archive/${version}.tar.gz"
 checksum=703f4b161b930a26a461a3e3e695f94237ac75e2a52b87613e49093d9aa76034
 
 python3-urwidtrees_package() {
-	archs=noarch
 	pycompile_module="urwidtrees"
 	depends="python3-urwid"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index 4c7a5ef1bfb..15d10eb36fd 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -2,7 +2,6 @@
 pkgname=python-utils
 version=2.4.0
 revision=1
-archs=noarch
 wrksrc="python-utils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-utils_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 62c663bf18e..2683de6e90b 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -2,7 +2,6 @@
 pkgname=python-vint
 version=0.3.19
 revision=3
-archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module
 pycompile_module="vint"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-vint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-ansicolor python3-chardet python3-yaml"
 	pycompile_module="vint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index 624ade6f12b..32154cafe05 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -21,7 +21,6 @@ post_install() {
 
 python3-vispy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="vispy"
 	depends="python3-numpy"
 	pkg_install() {
diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 2c1c215527c..91bb0d96e17 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -2,7 +2,6 @@
 pkgname=python-vobject
 version=0.9.6.1
 revision=2
-archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module
 pycompile_module="vobject"
@@ -20,7 +19,6 @@ alternatives="
  vobject:ics_diff:/usr/bin/ics_diff2"
 
 python3-vobject_package() {
-	archs=noarch
 	pycompile_module="vobject"
 	depends="python3-setuptools python3-dateutil python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index 1dd5de27491..cd6da9e8785 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -2,7 +2,6 @@
 pkgname=python-voluptuous
 version=0.11.5
 revision=3
-archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module
 pycompile_module="voluptuous"
diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index 2eea6397f00..839e4edc91e 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -2,7 +2,6 @@
 pkgname=python-watchdog
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module
 pycompile_module="watchdog"
@@ -17,7 +16,6 @@ checksum=965f658d0732de3188211932aeb0bb457587f04f63ab4c1e33eab878e9de961d
 alternatives="watchdog:watchmedo:/usr/bin/watchmedo2"
 
 python3-watchdog_package() {
-	archs=noarch
 	pycompile_module="watchdog"
 	alternatives="watchdog:watchmedo:/usr/bin/watchmedo3"
 	depends="python3-setuptools python3-yaml python3-argh python3-pathtools"
diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 8ec6d17450c..e043794dc2d 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -2,7 +2,6 @@
 pkgname=python-wcwidth
 version=0.1.7
 revision=3
-archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module
 pycompile_module="wcwidth"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wcwidth_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 7ed3cfd1b4c..5e6673ed205 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -2,7 +2,6 @@
 pkgname=python-webassets
 version=0.12.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="webassets"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-webassets_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="webassets"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index f047a9e3c52..048c9bb5d3a 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -2,7 +2,6 @@
 pkgname=python-webencodings
 version=0.5.1
 revision=3
-archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module
 pycompile_module="webencodings"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/w/webencodings/webencodings-${version}.tar.gz"
 checksum=b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923
 
 python3-webencodings_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 3df8ab42b36..68773ce04ab 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -2,7 +2,6 @@
 pkgname=python-websocket-client
 version=0.56.0
 revision=2
-archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module
 pycompile_module="websocket"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-websocket-client_package() {
-	archs=noarch
 	depends="python3-six ca-certificates"
 	pycompile_module="websocket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 05fc8d1cc06..d3a346aa67e 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -2,7 +2,6 @@
 pkgname=python-wheel
 version=0.34.2
 revision=1
-archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wheel_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="wheel:wheel:usr/bin/wheel3"
diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index f8a69755b74..82b835789b0 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -2,7 +2,6 @@
 pkgname=python-wikipedia
 version=1.4.0
 revision=3
-archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module
 pycompile_module="wikipedia"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wikipedia_package() {
-	archs=noarch
 	pycompile_module="wikipedia"
 	depends="python3-BeautifulSoup4 python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index f8b131104e6..aab4fcc6e05 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -2,7 +2,6 @@
 pkgname=python-wsproto
 version=0.15.0
 revision=2
-archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module
 pycompile_module="wsproto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wsproto_package() {
-	archs=noarch
 	pycompile_module="wsproto"
 	depends="python3 python3-h11"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index 4e819c8bec7..b75ee56b800 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -2,7 +2,6 @@
 pkgname=python-xdg
 version=0.26
 revision=2
-archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module
 hostmakedepends="python python3"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/pyxdg/pyxdg-${version}.tar.gz"
 checksum=fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06
 
 python3-xdg_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="xdg"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 8c409c7f8c4..24933a8ee2e 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -2,7 +2,6 @@
 pkgname=python-xlib
 version=0.27
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python-six"
@@ -18,7 +17,6 @@ pre_build() {
 }
 
 python3-xlib_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index b8f25af9575..6991a03edaf 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -2,7 +2,6 @@
 pkgname=python-xmldiff
 version=2.4
 revision=1
-archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,14 +18,12 @@ alternatives="xmldiff:xmldiff:/usr/bin/xmldiff2"
 replaces="xmldiff>=0"
 
 xmldiff_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 python3-xmldiff_package() {
-	archs=noarch
 	depends="python3-lxml python3-six python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="xmldiff:xmldiff:/usr/bin/xmldiff3"
diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index b3d7ef042e8..925469ed211 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -2,7 +2,6 @@
 pkgname=python-xmltodict
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module
 pycompile_module="xmltodict.py"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-xmltodict_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="xmltodict.py"
 	depends="python3"
diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index d0b51ba637a..3ec999d2d8c 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -2,7 +2,6 @@
 pkgname=python-yamllint
 version=1.15.0
 revision=2
-archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module
 pycompile_module="yamllint"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-yamllint_package() {
-	archs=noarch
 	depends="python3-pathspec python3-setuptools python3-yaml"
 	pycompile_module="yamllint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index 4a44b0c926e..a254226ce8c 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-zc.lockfile
 version=2.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zc/lockfile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-zc.lockfile_package() {
-	archs=noarch
 	pycompile_module="zc/lockfile"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zipp/template b/srcpkgs/python-zipp/template
index c58f294006f..16c30842069 100644
--- a/srcpkgs/python-zipp/template
+++ b/srcpkgs/python-zipp/template
@@ -2,7 +2,6 @@
 pkgname=python-zipp
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="zipp-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 2c7390127ac..cdc08a374f0 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -2,7 +2,6 @@
 pkgname=python-zipstream
 version=1.1.4
 revision=4
-archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module
 pycompile_module="zipstream"
@@ -16,7 +15,6 @@ distfiles="https://github.com/allanlei/python-zipstream/archive/v${version}.tar.
 checksum=32a7a4bdb786914445589595273beffbbf9b6a0a3a3dc2cf19ea96114bd2abd7
 
 python3-zipstream_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="zipstream"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python3-3to2/template b/srcpkgs/python3-3to2/template
index 38558f1fcff..99e585a0a63 100644
--- a/srcpkgs/python3-3to2/template
+++ b/srcpkgs/python3-3to2/template
@@ -2,7 +2,6 @@
 pkgname=python3-3to2
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module
 pycompile_module="lib3to2"
diff --git a/srcpkgs/python3-CherryPy/template b/srcpkgs/python3-CherryPy/template
index 2b5fa77a786..b57d61c44db 100644
--- a/srcpkgs/python3-CherryPy/template
+++ b/srcpkgs/python3-CherryPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-CherryPy
 version=18.6.0
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ConfigArgParse/template b/srcpkgs/python3-ConfigArgParse/template
index ae8d5820cc8..793005a680f 100644
--- a/srcpkgs/python3-ConfigArgParse/template
+++ b/srcpkgs/python3-ConfigArgParse/template
@@ -2,7 +2,6 @@
 pkgname=python3-ConfigArgParse
 version=1.1
 revision=1
-archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python3-module
 pycompile_module="configargparse.py"
diff --git a/srcpkgs/python3-Django/template b/srcpkgs/python3-Django/template
index 9f1a08f968d..5d9a26ba6c3 100644
--- a/srcpkgs/python3-Django/template
+++ b/srcpkgs/python3-Django/template
@@ -2,7 +2,6 @@
 pkgname=python3-Django
 version=3.0.7
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-EasyProcess/template b/srcpkgs/python3-EasyProcess/template
index 725467884d4..bc740b46c59 100644
--- a/srcpkgs/python3-EasyProcess/template
+++ b/srcpkgs/python3-EasyProcess/template
@@ -2,7 +2,6 @@
 pkgname=python3-EasyProcess
 version=0.3
 revision=1
-archs=noarch
 wrksrc=EasyProcess-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-Mail/template b/srcpkgs/python3-Flask-Mail/template
index f1e31e984d0..01e568eacdf 100644
--- a/srcpkgs/python3-Flask-Mail/template
+++ b/srcpkgs/python3-Flask-Mail/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-Mail
 version=0.9.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-RESTful/template b/srcpkgs/python3-Flask-RESTful/template
index 74f5be02359..5900fc17409 100644
--- a/srcpkgs/python3-Flask-RESTful/template
+++ b/srcpkgs/python3-Flask-RESTful/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-RESTful
 version=0.3.8
 revision=1
-archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-SQLAlchemy/template b/srcpkgs/python3-Flask-SQLAlchemy/template
index 392425b0610..65d9a9da023 100644
--- a/srcpkgs/python3-Flask-SQLAlchemy/template
+++ b/srcpkgs/python3-Flask-SQLAlchemy/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-SQLAlchemy
 version=2.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-User/template b/srcpkgs/python3-Flask-User/template
index 1de87f20bf4..cae7df2f916 100644
--- a/srcpkgs/python3-Flask-User/template
+++ b/srcpkgs/python3-Flask-User/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-User
 version=1.0.2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Inflector/template b/srcpkgs/python3-Inflector/template
index e890c1ad256..2e777e3d1e2 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -2,7 +2,6 @@
 pkgname=python3-Inflector
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Markdown/template b/srcpkgs/python3-Markdown/template
index 3c2e12cbe8d..6373522906b 100644
--- a/srcpkgs/python3-Markdown/template
+++ b/srcpkgs/python3-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python3-Markdown
 version=3.2.2
 revision=1
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-MechanicalSoup/template b/srcpkgs/python3-MechanicalSoup/template
index 5a3b0b3eb03..379cfad07b1 100644
--- a/srcpkgs/python3-MechanicalSoup/template
+++ b/srcpkgs/python3-MechanicalSoup/template
@@ -2,7 +2,6 @@
 pkgname=python3-MechanicalSoup
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module
 pycompile_module="mechanicalsoup"
diff --git a/srcpkgs/python3-Pebble/template b/srcpkgs/python3-Pebble/template
index 0d91d52c6d1..b000c3120ae 100644
--- a/srcpkgs/python3-Pebble/template
+++ b/srcpkgs/python3-Pebble/template
@@ -2,7 +2,6 @@
 pkgname=python3-Pebble
 version=4.5.3
 revision=1
-archs=noarch
 wrksrc=Pebble-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyBrowserID/template b/srcpkgs/python3-PyBrowserID/template
index eefd0175f1b..a67482469c2 100644
--- a/srcpkgs/python3-PyBrowserID/template
+++ b/srcpkgs/python3-PyBrowserID/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyBrowserID
 version=0.14.0
 revision=3
-archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module
 pycompile_module="browserid"
diff --git a/srcpkgs/python3-PyFxA/template b/srcpkgs/python3-PyFxA/template
index 6fc6791efdd..47f332200e4 100644
--- a/srcpkgs/python3-PyFxA/template
+++ b/srcpkgs/python3-PyFxA/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyFxA
 version=0.7.3
 revision=2
-archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module
 pycompile_module="fxa"
diff --git a/srcpkgs/python3-PyPDF2/template b/srcpkgs/python3-PyPDF2/template
index 75289b4f3ca..bb9b668ba1b 100644
--- a/srcpkgs/python3-PyPDF2/template
+++ b/srcpkgs/python3-PyPDF2/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyPDF2
 version=1.26.0
 revision=1
-archs=noarch
 wrksrc="PyPDF2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyVirtualDisplay/template b/srcpkgs/python3-PyVirtualDisplay/template
index e7c42f99c4e..589e669a917 100644
--- a/srcpkgs/python3-PyVirtualDisplay/template
+++ b/srcpkgs/python3-PyVirtualDisplay/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyVirtualDisplay
 version=1.3.2
 revision=1
-archs=noarch
 wrksrc=PyVirtualDisplay-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-QtPy/template b/srcpkgs/python3-QtPy/template
index 2ddc8b313ee..6a32de69c52 100644
--- a/srcpkgs/python3-QtPy/template
+++ b/srcpkgs/python3-QtPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-QtPy
 version=1.9.0
 revision=1
-archs=noarch
 wrksrc=QtPy-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ReParser/template b/srcpkgs/python3-ReParser/template
index 5959de9d0e3..8de97219a45 100644
--- a/srcpkgs/python3-ReParser/template
+++ b/srcpkgs/python3-ReParser/template
@@ -2,7 +2,6 @@
 pkgname=python3-ReParser
 version=1.4.3
 revision=2
-archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module
 pycompile_module="reparser.py"
diff --git a/srcpkgs/python3-Ropper/template b/srcpkgs/python3-Ropper/template
index 6cf233bd99a..ea8c89c4de8 100644
--- a/srcpkgs/python3-Ropper/template
+++ b/srcpkgs/python3-Ropper/template
@@ -2,7 +2,6 @@
 pkgname=python3-Ropper
 version=1.13.5
 revision=1
-archs="noarch"
 wrksrc="Ropper-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-SecretStorage/template b/srcpkgs/python3-SecretStorage/template
index 864d1385411..1944bf60a4f 100644
--- a/srcpkgs/python3-SecretStorage/template
+++ b/srcpkgs/python3-SecretStorage/template
@@ -2,7 +2,6 @@
 pkgname=python3-SecretStorage
 version=3.1.2
 revision=1
-archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module
 pycompile_module="secretstorage"
diff --git a/srcpkgs/python3-SoCo/template b/srcpkgs/python3-SoCo/template
index 9a27dcdb264..b25879f7b83 100644
--- a/srcpkgs/python3-SoCo/template
+++ b/srcpkgs/python3-SoCo/template
@@ -2,7 +2,6 @@
 pkgname=python3-SoCo
 version=0.18.1
 revision=2
-archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module
 pycompile_module="soco"
diff --git a/srcpkgs/python3-Sphinx/template b/srcpkgs/python3-Sphinx/template
index df1eba9e438..b0b889a79ac 100644
--- a/srcpkgs/python3-Sphinx/template
+++ b/srcpkgs/python3-Sphinx/template
@@ -2,7 +2,6 @@
 pkgname=python3-Sphinx
 version=3.2.1
 revision=1
-archs=noarch
 wrksrc=Sphinx-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Telethon/template b/srcpkgs/python3-Telethon/template
index 25ccd5200e5..008835cd554 100644
--- a/srcpkgs/python3-Telethon/template
+++ b/srcpkgs/python3-Telethon/template
@@ -2,7 +2,6 @@
 pkgname=python3-Telethon
 version=1.13.0
 revision=2
-archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-TxSNI/template b/srcpkgs/python3-TxSNI/template
index 22b38d1d3cf..a24785ee8f5 100644
--- a/srcpkgs/python3-TxSNI/template
+++ b/srcpkgs/python3-TxSNI/template
@@ -2,7 +2,6 @@
 pkgname=python3-TxSNI
 version=0.1.9
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="TxSNI-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-WebOb/template b/srcpkgs/python3-WebOb/template
index 53e63879f2c..51d94de11ce 100644
--- a/srcpkgs/python3-WebOb/template
+++ b/srcpkgs/python3-WebOb/template
@@ -2,7 +2,6 @@
 pkgname=python3-WebOb
 version=1.8.5
 revision=2
-archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module
 pycompile_module="webob"
diff --git a/srcpkgs/python3-XlsxWriter/template b/srcpkgs/python3-XlsxWriter/template
index b991457e01e..d8ed07a40e2 100644
--- a/srcpkgs/python3-XlsxWriter/template
+++ b/srcpkgs/python3-XlsxWriter/template
@@ -2,7 +2,6 @@
 pkgname=python3-XlsxWriter
 version=1.1.8
 revision=2
-archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module
 pycompile_module="XlsxWriter"
diff --git a/srcpkgs/python3-acme/template b/srcpkgs/python3-acme/template
index b8a0c7888c2..601c681e15a 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -2,7 +2,6 @@
 pkgname=python3-acme
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioamqp/template b/srcpkgs/python3-aioamqp/template
index 861cec8f543..cbe7c34a0f4 100644
--- a/srcpkgs/python3-aioamqp/template
+++ b/srcpkgs/python3-aioamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioamqp
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="aioamqp-aioamqp-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiodns/template b/srcpkgs/python3-aiodns/template
index bca5802ef69..147fc1a5591 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiodns
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiofiles/template b/srcpkgs/python3-aiofiles/template
index 61d4d081821..b588a2b1583 100644
--- a/srcpkgs/python3-aiofiles/template
+++ b/srcpkgs/python3-aiofiles/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiofiles
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp-cors/template b/srcpkgs/python3-aiohttp-cors/template
index b621716e3cd..ee29a0ee68e 100644
--- a/srcpkgs/python3-aiohttp-cors/template
+++ b/srcpkgs/python3-aiohttp-cors/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index f13b0598456..326c17ce4e5 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors2
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-sse-client/template b/srcpkgs/python3-aiohttp-sse-client/template
index 6599b036e97..b5e1aa5e3ca 100644
--- a/srcpkgs/python3-aiohttp-sse-client/template
+++ b/srcpkgs/python3-aiohttp-sse-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-sse-client
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp_socks/template b/srcpkgs/python3-aiohttp_socks/template
index 10ab967ef76..572903c6752 100644
--- a/srcpkgs/python3-aiohttp_socks/template
+++ b/srcpkgs/python3-aiohttp_socks/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp_socks
 version=0.2.2
 revision=2
-archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_socks"
diff --git a/srcpkgs/python3-aioinflux/template b/srcpkgs/python3-aioinflux/template
index d63da0c2ccc..08a7bfe251b 100644
--- a/srcpkgs/python3-aioinflux/template
+++ b/srcpkgs/python3-aioinflux/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioinflux
 version=0.9.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aionotify/template b/srcpkgs/python3-aionotify/template
index 93d857f71b6..15e147e5f99 100644
--- a/srcpkgs/python3-aionotify/template
+++ b/srcpkgs/python3-aionotify/template
@@ -2,7 +2,6 @@
 pkgname=python3-aionotify
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="aionotify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioredis/template b/srcpkgs/python3-aioredis/template
index c93ad443386..d6d1143b616 100644
--- a/srcpkgs/python3-aioredis/template
+++ b/srcpkgs/python3-aioredis/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioredis
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiorpcx/template b/srcpkgs/python3-aiorpcx/template
index 3e25da6752f..e78840575e7 100644
--- a/srcpkgs/python3-aiorpcx/template
+++ b/srcpkgs/python3-aiorpcx/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiorpcx
 version=0.18.4
 revision=1
-archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module
 pycompile_module="aiorpcx"
diff --git a/srcpkgs/python3-altgraph/template b/srcpkgs/python3-altgraph/template
index 2bf433edb6e..76f7663a6e6 100644
--- a/srcpkgs/python3-altgraph/template
+++ b/srcpkgs/python3-altgraph/template
@@ -2,7 +2,6 @@
 pkgname=python3-altgraph
 version=0.16.1
 revision=2
-archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module
 pycompile_module="altgraph"
diff --git a/srcpkgs/python3-aniso8601/template b/srcpkgs/python3-aniso8601/template
index 0253b89b5a3..667b0b101b7 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -2,7 +2,6 @@
 pkgname=python3-aniso8601
 version=8.0.0
 revision=2
-archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"
 build_style=python3-module
diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index cb3832799a1..723e1bacaa5 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -2,7 +2,6 @@
 pkgname=python3-ansible-lint
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="ansible-lint-${version}"
 build_style=python3-module
 pycompile_module="ansiblelint"
diff --git a/srcpkgs/python3-anytree/template b/srcpkgs/python3-anytree/template
index 5bd9b407017..1406d04febc 100644
--- a/srcpkgs/python3-anytree/template
+++ b/srcpkgs/python3-anytree/template
@@ -2,7 +2,6 @@
 pkgname=python3-anytree
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-applib/template b/srcpkgs/python3-applib/template
index 3a5a4ed5d40..717849c614f 100644
--- a/srcpkgs/python3-applib/template
+++ b/srcpkgs/python3-applib/template
@@ -2,7 +2,6 @@
 pkgname=python3-applib
 version=1.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="applib-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-argcomplete/template b/srcpkgs/python3-argcomplete/template
index 8b7a61dc11a..c637a4aedbc 100644
--- a/srcpkgs/python3-argcomplete/template
+++ b/srcpkgs/python3-argcomplete/template
@@ -3,7 +3,6 @@ pkgname=python3-argcomplete
 version=1.12.0
 revision=1
 wrksrc="argcomplete-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="argcomplete"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-astral/template b/srcpkgs/python3-astral/template
index d290eee7806..9553913111e 100644
--- a/srcpkgs/python3-astral/template
+++ b/srcpkgs/python3-astral/template
@@ -2,7 +2,6 @@
 pkgname=python3-astral
 version=2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-astroid/template b/srcpkgs/python3-astroid/template
index ff4a857e214..878560346af 100644
--- a/srcpkgs/python3-astroid/template
+++ b/srcpkgs/python3-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python3-astroid
 version=2.4.2
 revision=1
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-async-timeout/template b/srcpkgs/python3-async-timeout/template
index 854584fb5b2..729fe1b46c7 100644
--- a/srcpkgs/python3-async-timeout/template
+++ b/srcpkgs/python3-async-timeout/template
@@ -2,7 +2,6 @@
 pkgname=python3-async-timeout
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module
 pycompile_module="async_timeout"
diff --git a/srcpkgs/python3-async_generator/template b/srcpkgs/python3-async_generator/template
index 20d9f7ea0d1..16d43ef99cf 100644
--- a/srcpkgs/python3-async_generator/template
+++ b/srcpkgs/python3-async_generator/template
@@ -2,7 +2,6 @@
 pkgname=python3-async_generator
 version=1.10
 revision=2
-archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module
 pycompile_module="async_generator"
diff --git a/srcpkgs/python3-atspi/template b/srcpkgs/python3-atspi/template
index a33a374fe18..f3024c4ceb5 100644
--- a/srcpkgs/python3-atspi/template
+++ b/srcpkgs/python3-atspi/template
@@ -2,7 +2,6 @@
 pkgname=python3-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
diff --git a/srcpkgs/python3-authres/template b/srcpkgs/python3-authres/template
index 27f543c33ba..666a0fb7c06 100644
--- a/srcpkgs/python3-authres/template
+++ b/srcpkgs/python3-authres/template
@@ -2,7 +2,6 @@
 pkgname=python3-authres
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="authres-${version}"
 build_style=python3-module
 pycompile_module=authres
diff --git a/srcpkgs/python3-autobahn/template b/srcpkgs/python3-autobahn/template
index fb3c80d8bb7..69d75e9178a 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -2,7 +2,6 @@
 pkgname=python3-autobahn
 version=20.7.1
 revision=1
-archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-blessed/template b/srcpkgs/python3-blessed/template
index a4a2274bd89..abdd6bb18a5 100644
--- a/srcpkgs/python3-blessed/template
+++ b/srcpkgs/python3-blessed/template
@@ -2,7 +2,6 @@
 pkgname=python3-blessed
 version=1.17.9
 revision=1
-archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-boltons/template b/srcpkgs/python3-boltons/template
index 78f0f03a762..4921021252a 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -2,7 +2,6 @@
 pkgname=python3-boltons
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module
 pycompile_module="boltons"
diff --git a/srcpkgs/python3-boto3/template b/srcpkgs/python3-boto3/template
index 92126db33d7..44665c3e1e6 100644
--- a/srcpkgs/python3-boto3/template
+++ b/srcpkgs/python3-boto3/template
@@ -2,7 +2,6 @@
 pkgname=python3-boto3
 version=1.14.47
 revision=1
-archs=noarch
 wrksrc="boto3-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-breathe/template b/srcpkgs/python3-breathe/template
index 8e27f9397f4..49a45b25ad8 100644
--- a/srcpkgs/python3-breathe/template
+++ b/srcpkgs/python3-breathe/template
@@ -2,7 +2,6 @@
 pkgname=python3-breathe
 version=4.20.0
 revision=1
-archs=noarch
 wrksrc="breathe-${version}"
 build_style=python3-module
 _pyreqs="python3-Sphinx python3-docutils python3-six"
diff --git a/srcpkgs/python3-cachetools/template b/srcpkgs/python3-cachetools/template
index 6b14d89eff2..7220d8cdb09 100644
--- a/srcpkgs/python3-cachetools/template
+++ b/srcpkgs/python3-cachetools/template
@@ -2,7 +2,6 @@
 pkgname=python3-cachetools
 version=4.1.0
 revision=1
-archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-canonicaljson/template b/srcpkgs/python3-canonicaljson/template
index 87b7c8cc8e3..663ab617acc 100644
--- a/srcpkgs/python3-canonicaljson/template
+++ b/srcpkgs/python3-canonicaljson/template
@@ -2,7 +2,6 @@
 pkgname=python3-canonicaljson
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-casttube/template b/srcpkgs/python3-casttube/template
index 9e5544b0101..9d6798ee872 100644
--- a/srcpkgs/python3-casttube/template
+++ b/srcpkgs/python3-casttube/template
@@ -2,7 +2,6 @@
 pkgname=python3-casttube
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module
 pycompile_module="casttube"
diff --git a/srcpkgs/python3-certifi/template b/srcpkgs/python3-certifi/template
index 35807ad3642..185bf0b31ab 100644
--- a/srcpkgs/python3-certifi/template
+++ b/srcpkgs/python3-certifi/template
@@ -2,7 +2,6 @@
 pkgname=python3-certifi
 version=2020.06.20
 revision=1
-archs=noarch
 wrksrc="python-certifi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-changelogs/template b/srcpkgs/python3-changelogs/template
index d9a7784cf3b..8f4cb4a66b1 100644
--- a/srcpkgs/python3-changelogs/template
+++ b/srcpkgs/python3-changelogs/template
@@ -2,7 +2,6 @@
 pkgname=python3-changelogs
 version=0.14.0
 revision=2
-archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module
 pycompile_module="changelogs"
diff --git a/srcpkgs/python3-chess/template b/srcpkgs/python3-chess/template
index 3bf7847302e..82abdbe0fc6 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -2,7 +2,6 @@
 pkgname=python3-chess
 version=0.30.1
 revision=1
-archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-chromecast/template b/srcpkgs/python3-chromecast/template
index e83286d30ce..1f581a88eb8 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -2,7 +2,6 @@
 pkgname=python3-chromecast
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module
 pycompile_module="pychromecast"
diff --git a/srcpkgs/python3-cjkwrap/template b/srcpkgs/python3-cjkwrap/template
index fa951f26223..04fbf1440af 100644
--- a/srcpkgs/python3-cjkwrap/template
+++ b/srcpkgs/python3-cjkwrap/template
@@ -2,7 +2,6 @@
 pkgname=python3-cjkwrap
 version=2.2
 revision=2
-archs=noarch
 wrksrc="cjkwrap-v${version}"
 build_style=python3-module
 pycompile_module="cjkwrap.py"
diff --git a/srcpkgs/python3-cli-ui/template b/srcpkgs/python3-cli-ui/template
index b8e8c97d96f..47ed99e080f 100644
--- a/srcpkgs/python3-cli-ui/template
+++ b/srcpkgs/python3-cli-ui/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli-ui
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module
 pycompile_module="cli_ui"
diff --git a/srcpkgs/python3-cli_helpers/template b/srcpkgs/python3-cli_helpers/template
index 87b284e3cb5..d576e3f3e11 100644
--- a/srcpkgs/python3-cli_helpers/template
+++ b/srcpkgs/python3-cli_helpers/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli_helpers
 version=1.2.1
 revision=2
-archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module
 pycompile_module="cli_helpers"
diff --git a/srcpkgs/python3-click-plugins/template b/srcpkgs/python3-click-plugins/template
index 0ef6ce6b248..54b2de90f7d 100644
--- a/srcpkgs/python3-click-plugins/template
+++ b/srcpkgs/python3-click-plugins/template
@@ -2,7 +2,6 @@
 pkgname=python3-click-plugins
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module
 pycompile_module="click-plugins"
diff --git a/srcpkgs/python3-cloudscraper/template b/srcpkgs/python3-cloudscraper/template
index 01cac007c83..57575537070 100644
--- a/srcpkgs/python3-cloudscraper/template
+++ b/srcpkgs/python3-cloudscraper/template
@@ -2,7 +2,6 @@
 pkgname=python3-cloudscraper
 version=1.2.40
 revision=1
-archs=noarch
 wrksrc=cloudscraper-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-cmdln/template b/srcpkgs/python3-cmdln/template
index 2b7e21f3980..d0f84304fca 100644
--- a/srcpkgs/python3-cmdln/template
+++ b/srcpkgs/python3-cmdln/template
@@ -2,7 +2,6 @@
 pkgname=python3-cmdln
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module
 pycompile_module="cmdln.py"
diff --git a/srcpkgs/python3-colorclass/template b/srcpkgs/python3-colorclass/template
index ed8d2d2ea02..3874e6504d5 100644
--- a/srcpkgs/python3-colorclass/template
+++ b/srcpkgs/python3-colorclass/template
@@ -2,7 +2,6 @@
 pkgname=python3-colorclass
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module
 pycompile_module="colorclass"
diff --git a/srcpkgs/python3-crccheck/template b/srcpkgs/python3-crccheck/template
index a0a86e0ae2c..31d05495d2d 100644
--- a/srcpkgs/python3-crccheck/template
+++ b/srcpkgs/python3-crccheck/template
@@ -2,7 +2,6 @@
 pkgname=python3-crccheck
 version=0.6
 revision=2
-archs=noarch
 wrksrc="crccheck-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dateparser/template b/srcpkgs/python3-dateparser/template
index e36395eea8a..16257fd04ed 100644
--- a/srcpkgs/python3-dateparser/template
+++ b/srcpkgs/python3-dateparser/template
@@ -2,7 +2,6 @@
 pkgname=python3-dateparser
 version=0.7.6
 revision=1
-archs=noarch
 wrksrc=dateparser-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dbusmock/template b/srcpkgs/python3-dbusmock/template
index d8330a210c0..aa46bf5ad74 100644
--- a/srcpkgs/python3-dbusmock/template
+++ b/srcpkgs/python3-dbusmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-dbusmock
 version=0.19
 revision=1
-archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-deprecation/template b/srcpkgs/python3-deprecation/template
index 5983a0aadbf..0c87034caf2 100644
--- a/srcpkgs/python3-deprecation/template
+++ b/srcpkgs/python3-deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-deprecation
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-discid/template b/srcpkgs/python3-discid/template
index de3f5e571db..981445e5136 100644
--- a/srcpkgs/python3-discid/template
+++ b/srcpkgs/python3-discid/template
@@ -2,7 +2,6 @@
 pkgname=python3-discid
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module
 pycompile_module=discid
diff --git a/srcpkgs/python3-distlib/template b/srcpkgs/python3-distlib/template
index ff983ca9b6d..36186ff0700 100644
--- a/srcpkgs/python3-distlib/template
+++ b/srcpkgs/python3-distlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-distlib
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="distlib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dkimpy/template b/srcpkgs/python3-dkimpy/template
index 836f46d7aec..c334ec70bf6 100644
--- a/srcpkgs/python3-dkimpy/template
+++ b/srcpkgs/python3-dkimpy/template
@@ -2,7 +2,6 @@
 pkgname=python3-dkimpy
 version=1.0.0
 revision=2
-archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python3-module
 pycompile_module="dkim"
@@ -30,7 +29,6 @@ post_install() {
 
 python-dkimpy_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-dkimpy"
 	short_desc+=" - transitional dummy package"
 }
diff --git a/srcpkgs/python3-doi/template b/srcpkgs/python3-doi/template
index 29b9036922c..04c80853ecc 100644
--- a/srcpkgs/python3-doi/template
+++ b/srcpkgs/python3-doi/template
@@ -2,7 +2,6 @@
 pkgname=python3-doi
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="python-doi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dpkt/template b/srcpkgs/python3-dpkt/template
index 5ca1a6b1dbb..8045291e788 100644
--- a/srcpkgs/python3-dpkt/template
+++ b/srcpkgs/python3-dpkt/template
@@ -2,7 +2,6 @@
 pkgname=python3-dpkt
 version=1.9.2
 revision=1
-archs=noarch
 wrksrc="dpkt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-easygui/template b/srcpkgs/python3-easygui/template
index a9a2f66d865..82e665df9b6 100644
--- a/srcpkgs/python3-easygui/template
+++ b/srcpkgs/python3-easygui/template
@@ -2,7 +2,6 @@
 pkgname=python3-easygui
 version=0.98.1
 revision=2
-archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module
 pycompile_module="easygui"
diff --git a/srcpkgs/python3-elementpath/template b/srcpkgs/python3-elementpath/template
index 9f1a1fe1a8e..ad5f0f92564 100644
--- a/srcpkgs/python3-elementpath/template
+++ b/srcpkgs/python3-elementpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-elementpath
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=elementpath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-eliot/template b/srcpkgs/python3-eliot/template
index eca2c769d45..e139012e680 100644
--- a/srcpkgs/python3-eliot/template
+++ b/srcpkgs/python3-eliot/template
@@ -2,7 +2,6 @@
 pkgname=python3-eliot
 version=1.12.0
 revision=1
-archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-enchant/template b/srcpkgs/python3-enchant/template
index 1540cc34bc8..6c7f5a8837d 100644
--- a/srcpkgs/python3-enchant/template
+++ b/srcpkgs/python3-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python3-enchant
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools enchant-devel"
diff --git a/srcpkgs/python3-etesync/template b/srcpkgs/python3-etesync/template
index c0822245056..6c2218c4732 100644
--- a/srcpkgs/python3-etesync/template
+++ b/srcpkgs/python3-etesync/template
@@ -2,7 +2,6 @@
 pkgname=python3-etesync
 version=0.11.1
 revision=1
-archs=noarch
 wrksrc="etesync-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ffmpeg-python/template b/srcpkgs/python3-ffmpeg-python/template
index 137a864711f..ba0c070ffe5 100644
--- a/srcpkgs/python3-ffmpeg-python/template
+++ b/srcpkgs/python3-ffmpeg-python/template
@@ -2,7 +2,6 @@
 pkgname=python3-ffmpeg-python
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="ffmpeg-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fido2/template b/srcpkgs/python3-fido2/template
index fcf8a219ca2..bf76019c3a6 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -3,7 +3,6 @@ pkgname=python3-fido2
 _pkgname=fido2
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-filebytes/template b/srcpkgs/python3-filebytes/template
index 8a7236c705a..1953ab8b4b5 100644
--- a/srcpkgs/python3-filebytes/template
+++ b/srcpkgs/python3-filebytes/template
@@ -2,7 +2,6 @@
 pkgname=python3-filebytes
 version=0.10.2
 revision=1
-archs="noarch"
 wrksrc="filebytes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fishnet/template b/srcpkgs/python3-fishnet/template
index 6280ae8e966..f49689f6843 100644
--- a/srcpkgs/python3-fishnet/template
+++ b/srcpkgs/python3-fishnet/template
@@ -2,7 +2,6 @@
 pkgname=python3-fishnet
 version=1.15.18
 revision=2
-archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module
 pycompile_module="fishnet.py"
diff --git a/srcpkgs/python3-flexmock/template b/srcpkgs/python3-flexmock/template
index 8a7c9a2894d..39e01adee6c 100644
--- a/srcpkgs/python3-flexmock/template
+++ b/srcpkgs/python3-flexmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-flexmock
 version=0.10.4
 revision=2
-archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module
 pycompile_module="flexmock.py"
diff --git a/srcpkgs/python3-freezegun/template b/srcpkgs/python3-freezegun/template
index d8c96e1f1c6..465965a5489 100644
--- a/srcpkgs/python3-freezegun/template
+++ b/srcpkgs/python3-freezegun/template
@@ -2,7 +2,6 @@
 pkgname=python3-freezegun
 version=0.3.15
 revision=1
-archs=noarch
 wrksrc="freezegun-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index 739000a887c..73280ccab1a 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -2,7 +2,6 @@
 pkgname=python3-frozendict
 version=1.2
 revision=2
-archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module
 pycompile_module="frozendict"
diff --git a/srcpkgs/python3-furl/template b/srcpkgs/python3-furl/template
index 5fc53ba21de..71ae4e650d8 100644
--- a/srcpkgs/python3-furl/template
+++ b/srcpkgs/python3-furl/template
@@ -2,7 +2,6 @@
 pkgname=python3-furl
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="furl-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-geojson/template b/srcpkgs/python3-geojson/template
index 90e7d5a0e60..01bd91ec9ab 100644
--- a/srcpkgs/python3-geojson/template
+++ b/srcpkgs/python3-geojson/template
@@ -2,7 +2,6 @@
 pkgname=python3-geojson
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module
 pycompile_module="geojson"
diff --git a/srcpkgs/python3-gitchangelog/template b/srcpkgs/python3-gitchangelog/template
index cc1945f2623..d8ea98a34a5 100644
--- a/srcpkgs/python3-gitchangelog/template
+++ b/srcpkgs/python3-gitchangelog/template
@@ -2,7 +2,6 @@
 pkgname=python3-gitchangelog
 version=3.0.4
 revision=2
-archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module
 pycompile_module="gitchangelog"
diff --git a/srcpkgs/python3-google-api-core/template b/srcpkgs/python3-google-api-core/template
index e2f78f172cb..bcfa3fa83b4 100644
--- a/srcpkgs/python3-google-api-core/template
+++ b/srcpkgs/python3-google-api-core/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-core
 version=1.17.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-api-python-client/template b/srcpkgs/python3-google-api-python-client/template
index 12859dd49ec..34000c8412f 100644
--- a/srcpkgs/python3-google-api-python-client/template
+++ b/srcpkgs/python3-google-api-python-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-python-client
 version=1.8.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-auth-httplib2/template b/srcpkgs/python3-google-auth-httplib2/template
index 230494ba905..7cade87f4ca 100644
--- a/srcpkgs/python3-google-auth-httplib2/template
+++ b/srcpkgs/python3-google-auth-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth-httplib2
 version=0.0.3
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-google-auth/template b/srcpkgs/python3-google-auth/template
index 8e18145cda9..7067d8daeb5 100644
--- a/srcpkgs/python3-google-auth/template
+++ b/srcpkgs/python3-google-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth
 version=1.16.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-googleapis-common-protos/template b/srcpkgs/python3-googleapis-common-protos/template
index 1b0747910e0..326f783ddab 100644
--- a/srcpkgs/python3-googleapis-common-protos/template
+++ b/srcpkgs/python3-googleapis-common-protos/template
@@ -2,7 +2,6 @@
 pkgname=python3-googleapis-common-protos
 version=1.51.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-graphviz/template b/srcpkgs/python3-graphviz/template
index 2e7ec3bd76a..f1282e5d36c 100644
--- a/srcpkgs/python3-graphviz/template
+++ b/srcpkgs/python3-graphviz/template
@@ -2,7 +2,6 @@
 pkgname=python3-graphviz
 version=0.13.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="graphviz"
diff --git a/srcpkgs/python3-hawkauthlib/template b/srcpkgs/python3-hawkauthlib/template
index 1456fa7d814..4fc1166f99c 100644
--- a/srcpkgs/python3-hawkauthlib/template
+++ b/srcpkgs/python3-hawkauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-hawkauthlib
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module
 pycompile_module="hawkauthlib"
diff --git a/srcpkgs/python3-hjson/template b/srcpkgs/python3-hjson/template
index 9cd01b86f08..c4d60a580a8 100644
--- a/srcpkgs/python3-hjson/template
+++ b/srcpkgs/python3-hjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-hjson
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="hjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hkdf/template b/srcpkgs/python3-hkdf/template
index 0faaf05b5fe..fef3e6d4dc7 100644
--- a/srcpkgs/python3-hkdf/template
+++ b/srcpkgs/python3-hkdf/template
@@ -2,7 +2,6 @@
 pkgname=python3-hkdf
 version=0.0.3
 revision=2
-archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module
 pycompile_module="hkdf.py"
diff --git a/srcpkgs/python3-html2text/template b/srcpkgs/python3-html2text/template
index 54e9dab354b..e06075d34be 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -2,7 +2,6 @@
 pkgname=python3-html2text
 version=2020.1.16
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python3-humanize/template b/srcpkgs/python3-humanize/template
index cbf4398d976..7062c5589b8 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -2,7 +2,6 @@
 pkgname=python3-humanize
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hypercorn/template b/srcpkgs/python3-hypercorn/template
index a2280eba7fd..c2eabe98d17 100644
--- a/srcpkgs/python3-hypercorn/template
+++ b/srcpkgs/python3-hypercorn/template
@@ -2,7 +2,6 @@
 pkgname=python3-hypercorn
 version=0.10.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-i3ipc/template b/srcpkgs/python3-i3ipc/template
index df0c16a161b..72518ad93a3 100644
--- a/srcpkgs/python3-i3ipc/template
+++ b/srcpkgs/python3-i3ipc/template
@@ -2,7 +2,6 @@
 pkgname=python3-i3ipc
 version=2.2.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index 0608fb7278c..75126a355ca 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -2,7 +2,6 @@
 pkgname=python3-idna-ssl
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module
 pycompile_module="idna_ssl.py"
diff --git a/srcpkgs/python3-ifaddr/template b/srcpkgs/python3-ifaddr/template
index 803404735be..e1e78db4e0a 100644
--- a/srcpkgs/python3-ifaddr/template
+++ b/srcpkgs/python3-ifaddr/template
@@ -2,7 +2,6 @@
 pkgname=python3-ifaddr
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-influxdb/template b/srcpkgs/python3-influxdb/template
index 366eea281af..62b135c20b7 100644
--- a/srcpkgs/python3-influxdb/template
+++ b/srcpkgs/python3-influxdb/template
@@ -2,7 +2,6 @@
 pkgname=python3-influxdb
 version=5.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python-setuptools"
diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index f40bfc437bb..6343085ce87 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython
 version=7.17.0
 revision=1
-archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_genutils/template b/srcpkgs/python3-ipython_genutils/template
index b2754424178..190fa6f9b5f 100644
--- a/srcpkgs/python3-ipython_genutils/template
+++ b/srcpkgs/python3-ipython_genutils/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_genutils
 version=0.2.0
 revision=4
-archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_ipykernel/template b/srcpkgs/python3-ipython_ipykernel/template
index c3c0232c14a..19864960761 100644
--- a/srcpkgs/python3-ipython_ipykernel/template
+++ b/srcpkgs/python3-ipython_ipykernel/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_ipykernel
 version=5.2.0
 revision=1
-archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-ipython
diff --git a/srcpkgs/python3-irc/template b/srcpkgs/python3-irc/template
index 714c11dc943..5e4f518e5c3 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -2,7 +2,6 @@
 pkgname=python3-irc
 version=17.1
 revision=2
-archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module
 pycompile_module="irc"
diff --git a/srcpkgs/python3-itunespy/template b/srcpkgs/python3-itunespy/template
index 7a04a945dbd..6ef6b151473 100644
--- a/srcpkgs/python3-itunespy/template
+++ b/srcpkgs/python3-itunespy/template
@@ -2,7 +2,6 @@
 pkgname=python3-itunespy
 version=1.6
 revision=1
-archs=noarch
 wrksrc="itunespy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-janus/template b/srcpkgs/python3-janus/template
index b7388d96975..e7ca53a5773 100644
--- a/srcpkgs/python3-janus/template
+++ b/srcpkgs/python3-janus/template
@@ -2,7 +2,6 @@
 pkgname=python3-janus
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="janus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.classes/template b/srcpkgs/python3-jaraco.classes/template
index 6dbe89cb7f9..15e4996dedc 100644
--- a/srcpkgs/python3-jaraco.classes/template
+++ b/srcpkgs/python3-jaraco.classes/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.classes
 version=3.1.0
 revision=1
-archs=noarch
 wrksrc="jaraco.classes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.collections/template b/srcpkgs/python3-jaraco.collections/template
index 64f78eb4300..0a29387cf13 100644
--- a/srcpkgs/python3-jaraco.collections/template
+++ b/srcpkgs/python3-jaraco.collections/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.collections
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="jaraco.collections-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.functools/template b/srcpkgs/python3-jaraco.functools/template
index ca1ebb066d5..31a7711c5a7 100644
--- a/srcpkgs/python3-jaraco.functools/template
+++ b/srcpkgs/python3-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.functools
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.text/template b/srcpkgs/python3-jaraco.text/template
index a64ba0db7cb..f971a0326a7 100644
--- a/srcpkgs/python3-jaraco.text/template
+++ b/srcpkgs/python3-jaraco.text/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.text
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="jaraco.text-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco/template b/srcpkgs/python3-jaraco/template
index d6ab6b23228..a718dfc9736 100644
--- a/srcpkgs/python3-jaraco/template
+++ b/srcpkgs/python3-jaraco/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco
 version=1.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Namespace package declaration for jaraco (Python3)"
 maintainer="bra1nwave <bra1nwave@protonmail.com>"
diff --git a/srcpkgs/python3-jeepney/template b/srcpkgs/python3-jeepney/template
index 6654f4a7c97..691180ca473 100644
--- a/srcpkgs/python3-jeepney/template
+++ b/srcpkgs/python3-jeepney/template
@@ -2,7 +2,6 @@
 pkgname=python3-jeepney
 version=0.4.3
 revision=1
-archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-josepy/template b/srcpkgs/python3-josepy/template
index 903bd7028ed..cff1341c508 100644
--- a/srcpkgs/python3-josepy/template
+++ b/srcpkgs/python3-josepy/template
@@ -2,7 +2,6 @@
 pkgname=python3-josepy
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module
 pycompile_module="josepy"
diff --git a/srcpkgs/python3-jsondiff/template b/srcpkgs/python3-jsondiff/template
index 9e22f1dc42b..f196830147b 100644
--- a/srcpkgs/python3-jsondiff/template
+++ b/srcpkgs/python3-jsondiff/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsondiff
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="jsondiff-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jsonrpc-server/template b/srcpkgs/python3-jsonrpc-server/template
index b51e185efe9..a259f1f9a37 100644
--- a/srcpkgs/python3-jsonrpc-server/template
+++ b/srcpkgs/python3-jsonrpc-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsonrpc-server
 version=0.3.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_client/template b/srcpkgs/python3-jupyter_client/template
index 6cba34ab0b8..8291700d9ae 100644
--- a/srcpkgs/python3-jupyter_client/template
+++ b/srcpkgs/python3-jupyter_client/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_client
 version=6.1.0
 revision=1
-archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 4b404987cd8..9d03069b213 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_console
 version=6.1.0
 revision=4
-archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template
index ea75fa510a7..5ab8150f31a 100644
--- a/srcpkgs/python3-jupyter_core/template
+++ b/srcpkgs/python3-jupyter_core/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_core
 version=4.6.3
 revision=1
-archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 
 python3-jupyter_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-jupyter_notebook python3-jupyter_console
 	 python3-jupyter_ipywidgets"
 	short_desc="Jupyter metapackage for Void Linux"
diff --git a/srcpkgs/python3-jupyter_ipywidgets/template b/srcpkgs/python3-jupyter_ipywidgets/template
index 7e64279aeec..17b0445e2c8 100644
--- a/srcpkgs/python3-jupyter_ipywidgets/template
+++ b/srcpkgs/python3-jupyter_ipywidgets/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_ipywidgets
 version=7.5.1
 revision=1
-archs=noarch
 _widgetsnbextver=3.5.0
 wrksrc="ipywidgets-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-jupyter_nbconvert/template b/srcpkgs/python3-jupyter_nbconvert/template
index dba1d5a980e..b2c31bbf512 100644
--- a/srcpkgs/python3-jupyter_nbconvert/template
+++ b/srcpkgs/python3-jupyter_nbconvert/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbconvert
 version=5.6.1
 revision=1
-archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_nbformat/template b/srcpkgs/python3-jupyter_nbformat/template
index a46c5697212..8c0e41c0e77 100644
--- a/srcpkgs/python3-jupyter_nbformat/template
+++ b/srcpkgs/python3-jupyter_nbformat/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbformat
 version=5.0.4
 revision=1
-archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_notebook/template b/srcpkgs/python3-jupyter_notebook/template
index cc1727d2ee0..37a127cea7a 100644
--- a/srcpkgs/python3-jupyter_notebook/template
+++ b/srcpkgs/python3-jupyter_notebook/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_notebook
 version=6.0.3
 revision=1
-archs=noarch
 wrksrc="notebook-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_qtconsole/template b/srcpkgs/python3-jupyter_qtconsole/template
index 0c062662763..65a3a05c1ec 100644
--- a/srcpkgs/python3-jupyter_qtconsole/template
+++ b/srcpkgs/python3-jupyter_qtconsole/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_qtconsole
 version=4.7.1
 revision=1
-archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_widgetsnbextension/template b/srcpkgs/python3-jupyter_widgetsnbextension/template
index e1fe046894c..f64149d86f6 100644
--- a/srcpkgs/python3-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python3-jupyter_widgetsnbextension/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_widgetsnbextension
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyring/template b/srcpkgs/python3-keyring/template
index 97e10618eee..0585163b07e 100644
--- a/srcpkgs/python3-keyring/template
+++ b/srcpkgs/python3-keyring/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyring
 version=21.2.1
 revision=1
-archs=noarch
 wrksrc="keyring-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyrings-alt/template b/srcpkgs/python3-keyrings-alt/template
index 3052d257d1c..1ac1a6331ee 100644
--- a/srcpkgs/python3-keyrings-alt/template
+++ b/srcpkgs/python3-keyrings-alt/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyrings-alt
 version=3.4.0
 revision=2
-archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-language-server/template b/srcpkgs/python3-language-server/template
index 8ac0842f3b9..333431b4280 100644
--- a/srcpkgs/python3-language-server/template
+++ b/srcpkgs/python3-language-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-language-server
 version=0.34.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macaroons/template b/srcpkgs/python3-macaroons/template
index 7dfb4f3f588..542ba921643 100644
--- a/srcpkgs/python3-macaroons/template
+++ b/srcpkgs/python3-macaroons/template
@@ -2,7 +2,6 @@
 pkgname=python3-macaroons
 version=0.13.0
 revision=3
-archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index 5e65f7993dd..7d966f69d09 100644
--- a/srcpkgs/python3-macholib/template
+++ b/srcpkgs/python3-macholib/template
@@ -2,7 +2,6 @@
 pkgname=python3-macholib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-markdown-math/template b/srcpkgs/python3-markdown-math/template
index b49d58dd79c..b54cf2cd2fc 100644
--- a/srcpkgs/python3-markdown-math/template
+++ b/srcpkgs/python3-markdown-math/template
@@ -2,7 +2,6 @@
 pkgname=python3-markdown-math
 version=0.7
 revision=1
-archs=noarch
 wrksrc=python-markdown-math-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-marshmallow/template b/srcpkgs/python3-marshmallow/template
index 2a3b2329389..7eaba150dd1 100644
--- a/srcpkgs/python3-marshmallow/template
+++ b/srcpkgs/python3-marshmallow/template
@@ -2,7 +2,6 @@
 pkgname=python3-marshmallow
 version=3.7.0
 revision=1
-archs=noarch
 wrksrc="marshmallow-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 25e008c920a..f828d3e11b3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 python3-matplotlib-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove "${py3_sitelib}/matplotlib/mpl-data"
diff --git a/srcpkgs/python3-matrix-nio/template b/srcpkgs/python3-matrix-nio/template
index fe28e1596f8..a8d00ffa34e 100644
--- a/srcpkgs/python3-matrix-nio/template
+++ b/srcpkgs/python3-matrix-nio/template
@@ -2,7 +2,6 @@
 pkgname=python3-matrix-nio
 version=0.14.1
 revision=1
-archs=noarch
 wrksrc="matrix-nio-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-minidb/template b/srcpkgs/python3-minidb/template
index 140964b7a8a..540527fe2c6 100644
--- a/srcpkgs/python3-minidb/template
+++ b/srcpkgs/python3-minidb/template
@@ -2,7 +2,6 @@
 pkgname=python3-minidb
 version=2.0.2
 revision=3
-archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module
 pycompile_module="minidb.py"
diff --git a/srcpkgs/python3-mock/template b/srcpkgs/python3-mock/template
index 5506d4a70c2..134b61f8bad 100644
--- a/srcpkgs/python3-mock/template
+++ b/srcpkgs/python3-mock/template
@@ -2,7 +2,6 @@
 pkgname=python3-mock
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="mock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index 113e728c9d8..32d046f3c80 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -2,7 +2,6 @@
 pkgname=python3-more-itertools
 version=8.0.2
 revision=1
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python3-mpv/template b/srcpkgs/python3-mpv/template
index 984b7baa224..88d23b1690e 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -2,7 +2,6 @@
 pkgname=python3-mpv
 version=0.4.5
 revision=1
-archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-msoffcrypto-tool/template b/srcpkgs/python3-msoffcrypto-tool/template
index 6ae64cb2b1d..943bee51b52 100644
--- a/srcpkgs/python3-msoffcrypto-tool/template
+++ b/srcpkgs/python3-msoffcrypto-tool/template
@@ -2,7 +2,6 @@
 pkgname=python3-msoffcrypto-tool
 version=4.10.2
 revision=2
-archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-munkres/template b/srcpkgs/python3-munkres/template
index d0d0a013e80..3a0291a6d93 100644
--- a/srcpkgs/python3-munkres/template
+++ b/srcpkgs/python3-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python3-munkres
 version=1.1.2
 revision=2
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python3-musicpd/template b/srcpkgs/python3-musicpd/template
index 8c6ba2fb451..6808849a0e6 100644
--- a/srcpkgs/python3-musicpd/template
+++ b/srcpkgs/python3-musicpd/template
@@ -2,7 +2,6 @@
 pkgname=python3-musicpd
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module
 pycompile_module="musicpd.py"
diff --git a/srcpkgs/python3-mypy/template b/srcpkgs/python3-mypy/template
index 5d7f93d5772..32a13b25d45 100644
--- a/srcpkgs/python3-mypy/template
+++ b/srcpkgs/python3-mypy/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy
 version=0.761
 revision=1
-archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module
 pycompile_module="mypy"
diff --git a/srcpkgs/python3-mypy_extensions/template b/srcpkgs/python3-mypy_extensions/template
index e2d12256de5..4112db6fb62 100644
--- a/srcpkgs/python3-mypy_extensions/template
+++ b/srcpkgs/python3-mypy_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy_extensions
 version=0.4.3
 revision=2
-archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module
 pycompile_module="mypy_extensions.py"
diff --git a/srcpkgs/python3-nbxmpp/template b/srcpkgs/python3-nbxmpp/template
index b73a21dfe39..f739c098e51 100644
--- a/srcpkgs/python3-nbxmpp/template
+++ b/srcpkgs/python3-nbxmpp/template
@@ -2,7 +2,6 @@
 pkgname=python3-nbxmpp
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -17,7 +16,6 @@ checksum=ca60c9bd1527fbeac305df90c670f11f2fe79f1304dad1efa0315f7484a34d43
 
 python-nbxmpp_package() {
 	build_style=meta
-	archs=noarch
 	# Someone bumped this package to 1.0.0, which doesn't support Python 2
 	short_desc+=" - Python 2 - removed package"
 }
diff --git a/srcpkgs/python3-neovim/template b/srcpkgs/python3-neovim/template
index b5c705bbafd..cb61c800dac 100644
--- a/srcpkgs/python3-neovim/template
+++ b/srcpkgs/python3-neovim/template
@@ -2,7 +2,6 @@
 pkgname=python3-neovim
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-networkx/template b/srcpkgs/python3-networkx/template
index b993e4427c3..8fdaa74adb4 100644
--- a/srcpkgs/python3-networkx/template
+++ b/srcpkgs/python3-networkx/template
@@ -2,7 +2,6 @@
 pkgname=python3-networkx
 version=2.4
 revision=1
-archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools unzip"
diff --git a/srcpkgs/python3-nose-random/template b/srcpkgs/python3-nose-random/template
index 868d57cd494..e0b97430a9e 100644
--- a/srcpkgs/python3-nose-random/template
+++ b/srcpkgs/python3-nose-random/template
@@ -2,7 +2,6 @@
 pkgname=python3-nose-random
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="nose-random-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-notify2/template b/srcpkgs/python3-notify2/template
index 8416e98cc32..80cc7a2b5a2 100644
--- a/srcpkgs/python3-notify2/template
+++ b/srcpkgs/python3-notify2/template
@@ -2,7 +2,6 @@
 pkgname=python3-notify2
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="notify2-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/python3-ntlm-auth/template b/srcpkgs/python3-ntlm-auth/template
index fc9746b14aa..0b02fa3b67a 100644
--- a/srcpkgs/python3-ntlm-auth/template
+++ b/srcpkgs/python3-ntlm-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-ntlm-auth
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="ntlm-auth-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-oletools/template b/srcpkgs/python3-oletools/template
index 68a14274ad2..327895d5394 100644
--- a/srcpkgs/python3-oletools/template
+++ b/srcpkgs/python3-oletools/template
@@ -2,7 +2,6 @@
 pkgname=python3-oletools
 version=0.55
 revision=2
-archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module
 pycompile_module="oletools"
diff --git a/srcpkgs/python3-opcua/template b/srcpkgs/python3-opcua/template
index 16583e68089..872986836b8 100644
--- a/srcpkgs/python3-opcua/template
+++ b/srcpkgs/python3-opcua/template
@@ -2,7 +2,6 @@
 pkgname=python3-opcua
 version=0.98.11
 revision=1
-archs=noarch
 wrksrc="opcua-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-orderedmultidict/template b/srcpkgs/python3-orderedmultidict/template
index e6df82104cd..74d1a68bf9d 100644
--- a/srcpkgs/python3-orderedmultidict/template
+++ b/srcpkgs/python3-orderedmultidict/template
@@ -2,7 +2,6 @@
 pkgname=python3-orderedmultidict
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="orderedmultidict-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pafy/template b/srcpkgs/python3-pafy/template
index 8d3fafaf789..d6086f4a59a 100644
--- a/srcpkgs/python3-pafy/template
+++ b/srcpkgs/python3-pafy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pafy
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools youtube-dl"
diff --git a/srcpkgs/python3-pamqp/template b/srcpkgs/python3-pamqp/template
index 8c66eb482de..a3e7ab9c06b 100644
--- a/srcpkgs/python3-pamqp/template
+++ b/srcpkgs/python3-pamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pamqp
 version=2.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parsedatetime/template b/srcpkgs/python3-parsedatetime/template
index 71855b7c3ff..a77e82725e6 100644
--- a/srcpkgs/python3-parsedatetime/template
+++ b/srcpkgs/python3-parsedatetime/template
@@ -2,7 +2,6 @@
 pkgname=python3-parsedatetime
 version=2.6
 revision=1
-archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parso/template b/srcpkgs/python3-parso/template
index 5fed4bfb7ee..6c5b0e5f653 100644
--- a/srcpkgs/python3-parso/template
+++ b/srcpkgs/python3-parso/template
@@ -2,7 +2,6 @@
 pkgname=python3-parso
 version=0.8.0
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-path-and-address/template b/srcpkgs/python3-path-and-address/template
index 5c6825009ec..64d7a075e84 100644
--- a/srcpkgs/python3-path-and-address/template
+++ b/srcpkgs/python3-path-and-address/template
@@ -2,7 +2,6 @@
 pkgname=python3-path-and-address
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="path-and-address-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pcodedmp/template b/srcpkgs/python3-pcodedmp/template
index eb52c809fae..27f4310bf93 100644
--- a/srcpkgs/python3-pcodedmp/template
+++ b/srcpkgs/python3-pcodedmp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pcodedmp
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module
 pycompile_module="pcodedmp"
diff --git a/srcpkgs/python3-pefile/template b/srcpkgs/python3-pefile/template
index 8791f06640b..ed3c2befb4e 100644
--- a/srcpkgs/python3-pefile/template
+++ b/srcpkgs/python3-pefile/template
@@ -2,7 +2,6 @@
 pkgname=python3-pefile
 version=2019.4.18
 revision=2
-archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module
 pycompile_module="pefile.py peutils.py ordlookup"
diff --git a/srcpkgs/python3-pem/template b/srcpkgs/python3-pem/template
index ad51601c006..ce1123185ad 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -2,7 +2,6 @@
 pkgname=python3-pem
 version=19.3.0
 revision=1
-archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module
 pycompile_module="pem"
diff --git a/srcpkgs/python3-perf/template b/srcpkgs/python3-perf/template
index dff80be01bc..8b82eaf55cc 100644
--- a/srcpkgs/python3-perf/template
+++ b/srcpkgs/python3-perf/template
@@ -2,7 +2,6 @@
 pkgname=python3-perf
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module
 pycompile_module="pyperf"
diff --git a/srcpkgs/python3-pgspecial/template b/srcpkgs/python3-pgspecial/template
index 34b660dfc07..4bfc6073872 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgspecial
 version=1.11.9
 revision=2
-archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module
 pycompile_module="pgspecial"
diff --git a/srcpkgs/python3-pgzero/template b/srcpkgs/python3-pgzero/template
index 8b8f477112d..d8ab268d5e7 100644
--- a/srcpkgs/python3-pgzero/template
+++ b/srcpkgs/python3-pgzero/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgzero
 version=1.2
 revision=2
-archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module
 pycompile_module="pgzero pgzrun.py"
diff --git a/srcpkgs/python3-phonenumbers/template b/srcpkgs/python3-phonenumbers/template
index dd96963adfe..83671f70f6c 100644
--- a/srcpkgs/python3-phonenumbers/template
+++ b/srcpkgs/python3-phonenumbers/template
@@ -2,7 +2,6 @@
 pkgname=python3-phonenumbers
 version=8.11.5
 revision=1
-archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pipx/template b/srcpkgs/python3-pipx/template
index f0c90c15ba3..df7fb708637 100644
--- a/srcpkgs/python3-pipx/template
+++ b/srcpkgs/python3-pipx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pipx
 version=0.15.5.0
 revision=1
-archs=noarch
 wrksrc="pipx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pkginfo/template b/srcpkgs/python3-pkginfo/template
index b7cb5ec9165..1cdddd5d541 100644
--- a/srcpkgs/python3-pkginfo/template
+++ b/srcpkgs/python3-pkginfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-pkginfo
 version=1.5.0.1
 revision=2
-archs=noarch
 wrksrc=pkginfo-${version}
 build_style=python3-module
 depends="python3"
diff --git a/srcpkgs/python3-plotly/template b/srcpkgs/python3-plotly/template
index 9cefb0a2702..02bbccfb709 100644
--- a/srcpkgs/python3-plotly/template
+++ b/srcpkgs/python3-plotly/template
@@ -2,7 +2,6 @@
 pkgname=python3-plotly
 version=4.9.0
 revision=1
-archs=noarch
 wrksrc="plotly-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pluggy/template b/srcpkgs/python3-pluggy/template
index d5baa4e7406..b65f092ed16 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pluggy
 version=0.13.1
 revision=3
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pmw/template b/srcpkgs/python3-pmw/template
index 289b5ef1d0d..bcc1167153f 100644
--- a/srcpkgs/python3-pmw/template
+++ b/srcpkgs/python3-pmw/template
@@ -2,7 +2,6 @@
 pkgname=python3-pmw
 version=2.0.1
 revision=2
-archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"
 license="MIT"
diff --git a/srcpkgs/python3-precis-i18n/template b/srcpkgs/python3-precis-i18n/template
index be7bb0b0b56..1faac093297 100644
--- a/srcpkgs/python3-precis-i18n/template
+++ b/srcpkgs/python3-precis-i18n/template
@@ -2,7 +2,6 @@
 pkgname=python3-precis-i18n
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module
 pycompile_module="precis_i18n"
diff --git a/srcpkgs/python3-priority/template b/srcpkgs/python3-priority/template
index 177129a7a42..3be207c7132 100644
--- a/srcpkgs/python3-priority/template
+++ b/srcpkgs/python3-priority/template
@@ -2,7 +2,6 @@
 pkgname=python3-priority
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-prompt_toolkit/template b/srcpkgs/python3-prompt_toolkit/template
index fc95924342e..9c4ad5e64ca 100644
--- a/srcpkgs/python3-prompt_toolkit/template
+++ b/srcpkgs/python3-prompt_toolkit/template
@@ -2,7 +2,6 @@
 pkgname=python3-prompt_toolkit
 version=3.0.6
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pulsectl/template b/srcpkgs/python3-pulsectl/template
index 5dd314d56ab..69b7ccc34f1 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -2,7 +2,6 @@
 pkgname=python3-pulsectl
 version=19.10.4
 revision=1
-archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module
 pycompile_module="pulsectl"
diff --git a/srcpkgs/python3-pure-protobuf/template b/srcpkgs/python3-pure-protobuf/template
index 2c23b4204f7..47058bbe288 100644
--- a/srcpkgs/python3-pure-protobuf/template
+++ b/srcpkgs/python3-pure-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python3-pure-protobuf
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc=protobuf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-py-cpuinfo/template b/srcpkgs/python3-py-cpuinfo/template
index c9b1a5211c1..e240b6a329a 100644
--- a/srcpkgs/python3-py-cpuinfo/template
+++ b/srcpkgs/python3-py-cpuinfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-py-cpuinfo
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc="py-cpuinfo-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template
index adbe4c10dbd..27d9c341d35 100644
--- a/srcpkgs/python3-pybind11/template
+++ b/srcpkgs/python3-pybind11/template
@@ -2,7 +2,6 @@
 pkgname=python3-pybind11
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="pybind11-${version}"
 build_style=python3-module
 make_install_args="--install-headers=/usr/include/pybind11"
diff --git a/srcpkgs/python3-pycollada/template b/srcpkgs/python3-pycollada/template
index 54dfc922374..4a154752348 100644
--- a/srcpkgs/python3-pycollada/template
+++ b/srcpkgs/python3-pycollada/template
@@ -2,7 +2,6 @@
 pkgname=python3-pycollada
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="pycollada-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pydbus/template b/srcpkgs/python3-pydbus/template
index 5ecd28aca88..e36bcde8126 100644
--- a/srcpkgs/python3-pydbus/template
+++ b/srcpkgs/python3-pydbus/template
@@ -2,7 +2,6 @@
 pkgname=python3-pydbus
 version=0.6.0
 revision=1
-archs=noarch
 wrksrc="pydbus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyfavicon/template b/srcpkgs/python3-pyfavicon/template
index 720db698879..85321739192 100644
--- a/srcpkgs/python3-pyfavicon/template
+++ b/srcpkgs/python3-pyfavicon/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyfavicon
 version=0.1.1
 revision=1
-archs=noarch
 wrksrc=pyfavicon-$version
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyfiglet/template b/srcpkgs/python3-pyfiglet/template
index a4a67b12d42..a8d61f0516e 100644
--- a/srcpkgs/python3-pyfiglet/template
+++ b/srcpkgs/python3-pyfiglet/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyfiglet
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"
 pycompile_module="pyfiglet"
diff --git a/srcpkgs/python3-pyinfra/template b/srcpkgs/python3-pyinfra/template
index dd18497b965..e80407a2bce 100644
--- a/srcpkgs/python3-pyinfra/template
+++ b/srcpkgs/python3-pyinfra/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyinfra
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="pyinfra-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykeepass/template b/srcpkgs/python3-pykeepass/template
index 96a53ac1ffa..095827914f3 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykeepass
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykwalify/template b/srcpkgs/python3-pykwalify/template
index 76398effff3..5eedaefcd74 100644
--- a/srcpkgs/python3-pykwalify/template
+++ b/srcpkgs/python3-pykwalify/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykwalify
 version=1.7.0
 revision=3
-archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylast/template b/srcpkgs/python3-pylast/template
index 7884038e532..d2067019ef1 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylast
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module
 pycompile_module="pylast"
diff --git a/srcpkgs/python3-pylibgen/template b/srcpkgs/python3-pylibgen/template
index 30fb465a637..37f2f92e0b1 100644
--- a/srcpkgs/python3-pylibgen/template
+++ b/srcpkgs/python3-pylibgen/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylibgen
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylru/template b/srcpkgs/python3-pylru/template
index 0329ab72c30..4fefac7f5cb 100644
--- a/srcpkgs/python3-pylru/template
+++ b/srcpkgs/python3-pylru/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylru
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pypandoc/template b/srcpkgs/python3-pypandoc/template
index 928fde01371..560925d21a9 100644
--- a/srcpkgs/python3-pypandoc/template
+++ b/srcpkgs/python3-pypandoc/template
@@ -3,7 +3,6 @@ pkgname=python3-pypandoc
 version=1.5
 revision=1
 wrksrc=pypandoc-$version
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="pandoc python3"
diff --git a/srcpkgs/python3-pysdl2/template b/srcpkgs/python3-pysdl2/template
index 3efdca5b667..cc444a25125 100644
--- a/srcpkgs/python3-pysdl2/template
+++ b/srcpkgs/python3-pysdl2/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysdl2
 version=0.9.6
 revision=2
-archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module
 pycompile_module="sdl2"
diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index ee77908b933..6f619aefd13 100644
--- a/srcpkgs/python3-pyside2/template
+++ b/srcpkgs/python3-pyside2/template
@@ -77,23 +77,19 @@ libpyside2-python3_package() {
 libpyside-python3_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside-phonon_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyenet_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/python3-pysigset/template b/srcpkgs/python3-pysigset/template
index 50d9162ea70..91ba4976691 100644
--- a/srcpkgs/python3-pysigset/template
+++ b/srcpkgs/python3-pysigset/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysigset
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module
 pycompile_module="pysigset.py"
diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index 0c90d33a9e5..3830286e059 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-asyncio
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module
 pycompile_module="pytest_asyncio"
diff --git a/srcpkgs/python3-pytest-cov/template b/srcpkgs/python3-pytest-cov/template
index e94daceb8f4..f685f3bc43a 100644
--- a/srcpkgs/python3-pytest-cov/template
+++ b/srcpkgs/python3-pytest-cov/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-cov
 version=2.10.1
 revision=1
-archs=noarch
 wrksrc="pytest-cov-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-qt/template b/srcpkgs/python3-pytest-qt/template
index a15bc15a4f3..2c82b27b522 100644
--- a/srcpkgs/python3-pytest-qt/template
+++ b/srcpkgs/python3-pytest-qt/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-qt
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc=pytest-qt-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-xvfb/template b/srcpkgs/python3-pytest-xvfb/template
index 9e3aa7822d4..05372f207c1 100644
--- a/srcpkgs/python3-pytest-xvfb/template
+++ b/srcpkgs/python3-pytest-xvfb/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-xvfb
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=pytest-xvfb-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template
index 3df0405f1e2..69f9b1b53f9 100644
--- a/srcpkgs/python3-pytest/template
+++ b/srcpkgs/python3-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest
 version=5.3.5
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pythondialog/template b/srcpkgs/python3-pythondialog/template
index b55866f51e6..11ac0d5a105 100644
--- a/srcpkgs/python3-pythondialog/template
+++ b/srcpkgs/python3-pythondialog/template
@@ -2,7 +2,6 @@
 pkgname=python3-pythondialog
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="pythondialog-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytools/template b/srcpkgs/python3-pytools/template
index 446df179c07..38e39a68179 100644
--- a/srcpkgs/python3-pytools/template
+++ b/srcpkgs/python3-pytools/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytools
 version=2020.4
 revision=1
-archs=noarch
 wrksrc=${pkgname#*-}-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pywinrm/template b/srcpkgs/python3-pywinrm/template
index 7a57b8efcb3..961a9ebacc4 100644
--- a/srcpkgs/python3-pywinrm/template
+++ b/srcpkgs/python3-pywinrm/template
@@ -2,7 +2,6 @@
 pkgname=python3-pywinrm
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pywinrm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyx/template b/srcpkgs/python3-pyx/template
index f8de127e420..24bd6b68960 100644
--- a/srcpkgs/python3-pyx/template
+++ b/srcpkgs/python3-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyx
 version=0.15
 revision=1
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-quart/template b/srcpkgs/python3-quart/template
index 8e0e7d59be7..a465bbf4abf 100644
--- a/srcpkgs/python3-quart/template
+++ b/srcpkgs/python3-quart/template
@@ -2,7 +2,6 @@
 pkgname=python3-quart
 version=0.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-readlike/template b/srcpkgs/python3-readlike/template
index 43159962442..a3c5353492f 100644
--- a/srcpkgs/python3-readlike/template
+++ b/srcpkgs/python3-readlike/template
@@ -2,7 +2,6 @@
 pkgname=python3-readlike
 version=0.1.3
 revision=2
-archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module
 pycompile_module="readlike.py"
diff --git a/srcpkgs/python3-repoze.sphinx.autointerface/template b/srcpkgs/python3-repoze.sphinx.autointerface/template
index 684c7f90d05..7fbafc4e955 100644
--- a/srcpkgs/python3-repoze.sphinx.autointerface/template
+++ b/srcpkgs/python3-repoze.sphinx.autointerface/template
@@ -2,7 +2,6 @@
 pkgname=python3-repoze.sphinx.autointerface
 version=0.8
 revision=3
-archs=noarch
 wrksrc="repoze.sphinx.autointerface-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-file/template b/srcpkgs/python3-requests-file/template
index 1f459fa55ab..e8197152c4a 100644
--- a/srcpkgs/python3-requests-file/template
+++ b/srcpkgs/python3-requests-file/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-file
 version=1.4.3
 revision=1
-archs=noarch
 wrksrc="requests-file-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-ntlm/template b/srcpkgs/python3-requests-ntlm/template
index 7ca189d6abf..8bdf509f291 100644
--- a/srcpkgs/python3-requests-ntlm/template
+++ b/srcpkgs/python3-requests-ntlm/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-ntlm
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="requests-ntlm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-unixsocket/template b/srcpkgs/python3-requests-unixsocket/template
index fd389ec2d13..5731168d162 100644
--- a/srcpkgs/python3-requests-unixsocket/template
+++ b/srcpkgs/python3-requests-unixsocket/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-unixsocket
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module
 pycompile_module="requests_unixsocket"
diff --git a/srcpkgs/python3-rss2email/template b/srcpkgs/python3-rss2email/template
index 69e67d93deb..37634807bee 100644
--- a/srcpkgs/python3-rss2email/template
+++ b/srcpkgs/python3-rss2email/template
@@ -2,7 +2,6 @@
 pkgname=python3-rss2email
 version=3.11
 revision=2
-archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module
 pycompile_module="rss2email"
diff --git a/srcpkgs/python3-rtree/template b/srcpkgs/python3-rtree/template
index 652b840591e..2bb1c135a02 100644
--- a/srcpkgs/python3-rtree/template
+++ b/srcpkgs/python3-rtree/template
@@ -2,7 +2,6 @@
 pkgname=python3-rtree
 version=0.9.4
 revision=1
-archs=noarch
 wrksrc="rtree-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools libspatialindex-devel"
diff --git a/srcpkgs/python3-s-tui/template b/srcpkgs/python3-s-tui/template
index 5864e90c91a..a70b25ef150 100644
--- a/srcpkgs/python3-s-tui/template
+++ b/srcpkgs/python3-s-tui/template
@@ -2,7 +2,6 @@
 pkgname=python3-s-tui
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-saml2/template b/srcpkgs/python3-saml2/template
index a8d2798b61c..740d5301c49 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -2,7 +2,6 @@
 pkgname=python3-saml2
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-scruffy/template b/srcpkgs/python3-scruffy/template
index 62a21a74eca..b10f0b25cad 100644
--- a/srcpkgs/python3-scruffy/template
+++ b/srcpkgs/python3-scruffy/template
@@ -2,7 +2,6 @@
 pkgname=python3-scruffy
 version=0.3.8.1
 revision=2
-archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module
 pycompile_module="scruffy"
diff --git a/srcpkgs/python3-semanticversion/template b/srcpkgs/python3-semanticversion/template
index 766eeb160f8..2a0ad41ef16 100644
--- a/srcpkgs/python3-semanticversion/template
+++ b/srcpkgs/python3-semanticversion/template
@@ -2,7 +2,6 @@
 pkgname=python3-semanticversion
 version=2.8.5
 revision=1
-archs=noarch
 wrksrc="semantic_version-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sentry/template b/srcpkgs/python3-sentry/template
index c340cbb7820..5f0bdb07a64 100644
--- a/srcpkgs/python3-sentry/template
+++ b/srcpkgs/python3-sentry/template
@@ -2,7 +2,6 @@
 pkgname=python3-sentry
 version=0.15.1
 revision=1
-archs=noarch
 wrksrc="sentry-python-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-serpent/template b/srcpkgs/python3-serpent/template
index 538bfcd1786..8776d167bfc 100644
--- a/srcpkgs/python3-serpent/template
+++ b/srcpkgs/python3-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python3-serpent
 version=1.30.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-setuptools/template b/srcpkgs/python3-setuptools/template
index 9bf5b316e66..15654c0c639 100644
--- a/srcpkgs/python3-setuptools/template
+++ b/srcpkgs/python3-setuptools/template
@@ -2,7 +2,6 @@
 pkgname=python3-setuptools
 version=49.2.1
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python3-module
 hostmakedepends="python3-devel"
diff --git a/srcpkgs/python3-shodan/template b/srcpkgs/python3-shodan/template
index 390f9d79322..b5324dac9ac 100644
--- a/srcpkgs/python3-shodan/template
+++ b/srcpkgs/python3-shodan/template
@@ -2,7 +2,6 @@
 pkgname=python3-shodan
 version=1.23.0
 revision=1
-archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-signedjson/template b/srcpkgs/python3-signedjson/template
index 5002ade8f79..744a1f36a5b 100644
--- a/srcpkgs/python3-signedjson/template
+++ b/srcpkgs/python3-signedjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-signedjson
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-slugify/template b/srcpkgs/python3-slugify/template
index 012bb98f063..7a6a44e664d 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -4,7 +4,6 @@ pkgname=python3-slugify
 # doesn't work with newer versions
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module
 pycompile_module="slugify"
diff --git a/srcpkgs/python3-sortedcontainers/template b/srcpkgs/python3-sortedcontainers/template
index 41d87d4ebd0..df9e9d97a2c 100644
--- a/srcpkgs/python3-sortedcontainers/template
+++ b/srcpkgs/python3-sortedcontainers/template
@@ -2,7 +2,6 @@
 pkgname=python3-sortedcontainers
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module
 pycompile_module="sortedcontainers"
diff --git a/srcpkgs/python3-spake2/template b/srcpkgs/python3-spake2/template
index dc0cdced747..7f34a47eb26 100644
--- a/srcpkgs/python3-spake2/template
+++ b/srcpkgs/python3-spake2/template
@@ -2,7 +2,6 @@
 pkgname=python3-spake2
 version=0.8
 revision=2
-archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module
 pycompile_module="spake2"
diff --git a/srcpkgs/python3-sphinx_rtd_theme/template b/srcpkgs/python3-sphinx_rtd_theme/template
index 8447a451a74..93e6cb4a4dd 100644
--- a/srcpkgs/python3-sphinx_rtd_theme/template
+++ b/srcpkgs/python3-sphinx_rtd_theme/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinx_rtd_theme
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-applehelp/template b/srcpkgs/python3-sphinxcontrib-applehelp/template
index 90bfc78adf8..30948b589f8 100644
--- a/srcpkgs/python3-sphinxcontrib-applehelp/template
+++ b/srcpkgs/python3-sphinxcontrib-applehelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-applehelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-applehelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-devhelp/template b/srcpkgs/python3-sphinxcontrib-devhelp/template
index 0244d826d17..f670cfdf187 100644
--- a/srcpkgs/python3-sphinxcontrib-devhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-devhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-devhelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-devhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-htmlhelp/template b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
index 33dac6dbfad..582aefdf76e 100644
--- a/srcpkgs/python3-sphinxcontrib-htmlhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-htmlhelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-htmlhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-jsmath/template b/srcpkgs/python3-sphinxcontrib-jsmath/template
index 266ff00b88b..ce87ffcd71b 100644
--- a/srcpkgs/python3-sphinxcontrib-jsmath/template
+++ b/srcpkgs/python3-sphinxcontrib-jsmath/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-jsmath
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-jsmath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-qthelp/template b/srcpkgs/python3-sphinxcontrib-qthelp/template
index 2335cb13cb8..b324a4bce8b 100644
--- a/srcpkgs/python3-sphinxcontrib-qthelp/template
+++ b/srcpkgs/python3-sphinxcontrib-qthelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-qthelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-qthelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-serializinghtml/template b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
index 82ddabe65ed..6b2d69ee7ca 100644
--- a/srcpkgs/python3-sphinxcontrib-serializinghtml/template
+++ b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-serializinghtml
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-serializinghtml-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib/template b/srcpkgs/python3-sphinxcontrib/template
index d52fd02ab76..ef3686233a6 100644
--- a/srcpkgs/python3-sphinxcontrib/template
+++ b/srcpkgs/python3-sphinxcontrib/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib
 version=1.0
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/python3-subunit/template b/srcpkgs/python3-subunit/template
index a617b3db63a..7609e9fea85 100644
--- a/srcpkgs/python3-subunit/template
+++ b/srcpkgs/python3-subunit/template
@@ -2,7 +2,6 @@
 pkgname=python3-subunit
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=subunit-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-svg.path/template b/srcpkgs/python3-svg.path/template
index 473fc38dcc4..f85d0a22e0c 100644
--- a/srcpkgs/python3-svg.path/template
+++ b/srcpkgs/python3-svg.path/template
@@ -2,7 +2,6 @@
 pkgname=python3-svg.path
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="svg.path-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sympy/template b/srcpkgs/python3-sympy/template
index 77f7747a999..3546c85c48c 100644
--- a/srcpkgs/python3-sympy/template
+++ b/srcpkgs/python3-sympy/template
@@ -2,7 +2,6 @@
 pkgname=python3-sympy
 version=1.6.1
 revision=1
-archs=noarch
 wrksrc="sympy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tabulate/template b/srcpkgs/python3-tabulate/template
index 16956529913..1fba151f70d 100644
--- a/srcpkgs/python3-tabulate/template
+++ b/srcpkgs/python3-tabulate/template
@@ -2,7 +2,6 @@
 pkgname=python3-tabulate
 version=0.8.6
 revision=1
-archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module
 pycompile_module="tabulate.py"
diff --git a/srcpkgs/python3-terminaltables/template b/srcpkgs/python3-terminaltables/template
index 4f781eab76d..151d95641b1 100644
--- a/srcpkgs/python3-terminaltables/template
+++ b/srcpkgs/python3-terminaltables/template
@@ -2,7 +2,6 @@
 pkgname=python3-terminaltables
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module
 pycompile_module="terminaltables"
diff --git a/srcpkgs/python3-text-unidecode/template b/srcpkgs/python3-text-unidecode/template
index b3b5aa95575..6219e336eb5 100644
--- a/srcpkgs/python3-text-unidecode/template
+++ b/srcpkgs/python3-text-unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python3-text-unidecode
 version=1.2
 revision=2
-archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module
 pycompile_module="text_unidecode"
diff --git a/srcpkgs/python3-tinycss/template b/srcpkgs/python3-tinycss/template
index 3b4717c234e..7ca826988cd 100644
--- a/srcpkgs/python3-tinycss/template
+++ b/srcpkgs/python3-tinycss/template
@@ -2,7 +2,6 @@
 pkgname=python3-tinycss
 version=0.4
 revision=2
-archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module
 pycompile_module="tinycss"
diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index f77446c5e61..ff6bb2699e5 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -77,7 +77,6 @@ do_install() {
 }
 
 idle-python3_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python3 using Tkinter"
 	pycompile_dirs="usr/lib/python${version%.*}/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python3-tldextract/template b/srcpkgs/python3-tldextract/template
index 2a9392a5dcc..57ea2de0c41 100644
--- a/srcpkgs/python3-tldextract/template
+++ b/srcpkgs/python3-tldextract/template
@@ -2,7 +2,6 @@
 pkgname=python3-tldextract
 version=2.2.2
 revision=1
-archs=noarch
 wrksrc="tldextract-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template
index 92a11a42629..c352f646664 100644
--- a/srcpkgs/python3-traitlets/template
+++ b/srcpkgs/python3-traitlets/template
@@ -2,7 +2,6 @@
 pkgname=python3-traitlets
 version=4.3.3
 revision=3
-archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 5ea767b5a7d..a307014e474 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-transifex-client
 version=0.13.6
 revision=2
-archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module
 pycompile_module="txclib"
diff --git a/srcpkgs/python3-treq/template b/srcpkgs/python3-treq/template
index 075f90e49ef..c87126db99f 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -2,7 +2,6 @@
 pkgname=python3-treq
 version=20.3.0
 revision=1
-archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-trimesh/template b/srcpkgs/python3-trimesh/template
index d1397443726..cc78c69a205 100644
--- a/srcpkgs/python3-trimesh/template
+++ b/srcpkgs/python3-trimesh/template
@@ -2,7 +2,6 @@
 pkgname=python3-trimesh
 version=3.8.1
 revision=1
-archs=noarch
 wrksrc="trimesh-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index bd1c82d0611..917fdb2e038 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -2,7 +2,6 @@
 pkgname=python3-txacme
 version=0.9.3
 revision=1
-archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txaio/template b/srcpkgs/python3-txaio/template
index d9ee273d235..f686ef8848c 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -2,7 +2,6 @@
 pkgname=python3-txaio
 version=20.4.1
 revision=1
-archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-txtorcon/template b/srcpkgs/python3-txtorcon/template
index d2ad88b06d1..8ad2b861ca9 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -2,7 +2,6 @@
 pkgname=python3-txtorcon
 version=20.0.0
 revision=1
-archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-typing_extensions/template b/srcpkgs/python3-typing_extensions/template
index 57405689d4e..d9beffc7950 100644
--- a/srcpkgs/python3-typing_extensions/template
+++ b/srcpkgs/python3-typing_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-typing_extensions
 version=3.7.4.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tzlocal/template b/srcpkgs/python3-tzlocal/template
index 7ea15464075..c78db3d0b47 100644
--- a/srcpkgs/python3-tzlocal/template
+++ b/srcpkgs/python3-tzlocal/template
@@ -2,7 +2,6 @@
 pkgname=python3-tzlocal
 version=2.1
 revision=2
-archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-unpaddedbase64/template b/srcpkgs/python3-unpaddedbase64/template
index 06a47db3b64..2cb5d9b8c2b 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -2,7 +2,6 @@
 pkgname=python3-unpaddedbase64
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module
 pycompile_module="unpaddedbase64.py"
diff --git a/srcpkgs/python3-urlgrabber/template b/srcpkgs/python3-urlgrabber/template
index eef67c8e13c..6d19cd95f28 100644
--- a/srcpkgs/python3-urlgrabber/template
+++ b/srcpkgs/python3-urlgrabber/template
@@ -2,7 +2,6 @@
 pkgname=python3-urlgrabber
 version=4.0.0
 revision=2
-archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module
 pycompile_module="urlgrabber"
diff --git a/srcpkgs/python3-usb/template b/srcpkgs/python3-usb/template
index 1e27b46961b..fe8676e84bf 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,6 @@
 pkgname=python3-usb
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="pyusb-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-userpath/template b/srcpkgs/python3-userpath/template
index 4d53e7b5dea..5d5b22e7774 100644
--- a/srcpkgs/python3-userpath/template
+++ b/srcpkgs/python3-userpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-userpath
 version=1.4.1
 revision=1
-archs=noarch
 wrksrc="userpath-${version}"
 build_style=python3-module
 pycompile_module="userpath"
diff --git a/srcpkgs/python3-validators/template b/srcpkgs/python3-validators/template
index 2d790254c96..cfaf8b9e8e9 100644
--- a/srcpkgs/python3-validators/template
+++ b/srcpkgs/python3-validators/template
@@ -2,7 +2,6 @@
 pkgname=python3-validators
 version=0.14.2
 revision=1
-archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virtualenv-clone/template b/srcpkgs/python3-virtualenv-clone/template
index 508e855b9cd..92e27a1cd3a 100644
--- a/srcpkgs/python3-virtualenv-clone/template
+++ b/srcpkgs/python3-virtualenv-clone/template
@@ -2,7 +2,6 @@
 pkgname=python3-virtualenv-clone
 version=0.5.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virtualenv/template b/srcpkgs/python3-virtualenv/template
index 7f9f71fccc5..d0b81cc453a 100644
--- a/srcpkgs/python3-virtualenv/template
+++ b/srcpkgs/python3-virtualenv/template
@@ -2,7 +2,6 @@
 pkgname=python3-virtualenv
 version=20.0.20
 revision=2
-archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virustotal-api/template b/srcpkgs/python3-virustotal-api/template
index fc362c03b39..016265c95e4 100644
--- a/srcpkgs/python3-virustotal-api/template
+++ b/srcpkgs/python3-virustotal-api/template
@@ -2,7 +2,6 @@
 pkgname=python3-virustotal-api
 version=1.1.11
 revision=2
-archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module
 pycompile_module="virus_total_apis"
diff --git a/srcpkgs/python3-xapp/template b/srcpkgs/python3-xapp/template
index 6e746704ad8..4a914d36443 100644
--- a/srcpkgs/python3-xapp/template
+++ b/srcpkgs/python3-xapp/template
@@ -2,7 +2,6 @@
 pkgname=python3-xapp
 version=2.0.1
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="xapp"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xdg-variables/template b/srcpkgs/python3-xdg-variables/template
index 589302d33bc..836f8b61878 100644
--- a/srcpkgs/python3-xdg-variables/template
+++ b/srcpkgs/python3-xdg-variables/template
@@ -2,7 +2,6 @@
 pkgname=python3-xdg-variables
 version=4.0.1
 revision=1
-archs=noarch
 wrksrc="xdg-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xlrd/template b/srcpkgs/python3-xlrd/template
index 9f7b29580e4..4a8b4fb520e 100644
--- a/srcpkgs/python3-xlrd/template
+++ b/srcpkgs/python3-xlrd/template
@@ -2,7 +2,6 @@
 pkgname=python3-xlrd
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xmlschema/template b/srcpkgs/python3-xmlschema/template
index 939c7ef6fca..d4311a18d9d 100644
--- a/srcpkgs/python3-xmlschema/template
+++ b/srcpkgs/python3-xmlschema/template
@@ -2,7 +2,6 @@
 pkgname=python3-xmlschema
 version=1.2.3
 revision=1
-archs=noarch
 wrksrc=xmlschema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-elementpath"
diff --git a/srcpkgs/python3-yapf/template b/srcpkgs/python3-yapf/template
index 33111cd732d..482acbbe0f5 100644
--- a/srcpkgs/python3-yapf/template
+++ b/srcpkgs/python3-yapf/template
@@ -2,7 +2,6 @@
 pkgname=python3-yapf
 version=0.29.0
 revision=1
-archs=noarch
 wrksrc="yapf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-youtube-search/template b/srcpkgs/python3-youtube-search/template
index 0c6ec393a37..96a1ca19dce 100644
--- a/srcpkgs/python3-youtube-search/template
+++ b/srcpkgs/python3-youtube-search/template
@@ -3,7 +3,6 @@ pkgname=python3-youtube-search
 version=1.1.0
 revision=1
 _gitver=86af3e73bd340f37be56f2be6a5ff706b16e454e
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="youtube-search-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-yoyo-migrations/template b/srcpkgs/python3-yoyo-migrations/template
index 9e481e153f4..244bcfa73d0 100644
--- a/srcpkgs/python3-yoyo-migrations/template
+++ b/srcpkgs/python3-yoyo-migrations/template
@@ -2,7 +2,6 @@
 pkgname=python3-yoyo-migrations
 version=7.2.0
 revision=1
-archs=noarch
 wrksrc=yoyo-migrations-$version
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zeroconf/template b/srcpkgs/python3-zeroconf/template
index b480d60b684..6c1f33e1444 100644
--- a/srcpkgs/python3-zeroconf/template
+++ b/srcpkgs/python3-zeroconf/template
@@ -2,7 +2,6 @@
 pkgname=python3-zeroconf
 version=0.28.1
 revision=1
-archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.cachedescriptors/template b/srcpkgs/python3-zope.cachedescriptors/template
index 1f1fae5b27b..c0a56526d58 100644
--- a/srcpkgs/python3-zope.cachedescriptors/template
+++ b/srcpkgs/python3-zope.cachedescriptors/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.cachedescriptors
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module
 pycompile_module="zope/cachedescriptors"
diff --git a/srcpkgs/python3-zope.component/template b/srcpkgs/python3-zope.component/template
index 5dddba61bb3..eee2bb67f5c 100644
--- a/srcpkgs/python3-zope.component/template
+++ b/srcpkgs/python3-zope.component/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.component
 version=4.6.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.configuration/template b/srcpkgs/python3-zope.configuration/template
index a18339a5d7a..859ea5a13e3 100644
--- a/srcpkgs/python3-zope.configuration/template
+++ b/srcpkgs/python3-zope.configuration/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.configuration
 version=4.4.0
 revision=1
-archs=noarch
 wrksrc="zope.configuration-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/python3-zope.copy/template b/srcpkgs/python3-zope.copy/template
index 7007acb96b4..2872fc4446a 100644
--- a/srcpkgs/python3-zope.copy/template
+++ b/srcpkgs/python3-zope.copy/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.copy
 version=4.2
 revision=2
-archs=noarch
 wrksrc="zope.copy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deferredimport/template b/srcpkgs/python3-zope.deferredimport/template
index 7e8ff8fca5c..d2baacf3065 100644
--- a/srcpkgs/python3-zope.deferredimport/template
+++ b/srcpkgs/python3-zope.deferredimport/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deferredimport
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.deferredimport-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deprecation/template b/srcpkgs/python3-zope.deprecation/template
index 854c67dfa8a..5939729f835 100644
--- a/srcpkgs/python3-zope.deprecation/template
+++ b/srcpkgs/python3-zope.deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deprecation
 version=4.4.0
 revision=3
-archs=noarch
 wrksrc="zope.deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.event/template b/srcpkgs/python3-zope.event/template
index 0ca1af6cfc4..222189cc613 100644
--- a/srcpkgs/python3-zope.event/template
+++ b/srcpkgs/python3-zope.event/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.event
 version=4.4
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="zope/event"
diff --git a/srcpkgs/python3-zope.exceptions/template b/srcpkgs/python3-zope.exceptions/template
index e918cea8c7e..8719bd54a11 100644
--- a/srcpkgs/python3-zope.exceptions/template
+++ b/srcpkgs/python3-zope.exceptions/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.exceptions
 version=4.3
 revision=2
-archs=noarch
 wrksrc="zope.exceptions-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.hookable/template b/srcpkgs/python3-zope.hookable/template
index 774cf286c8e..e721baf6117 100644
--- a/srcpkgs/python3-zope.hookable/template
+++ b/srcpkgs/python3-zope.hookable/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.hookable
 version=5.0.1
 revision=1
-archs=noarch
 wrksrc="zope.hookable-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.location/template b/srcpkgs/python3-zope.location/template
index c2d6435dcf4..425cc0c04a1 100644
--- a/srcpkgs/python3-zope.location/template
+++ b/srcpkgs/python3-zope.location/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.location
 version=4.2
 revision=3
-archs=noarch
 wrksrc="zope.location-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.schema/template b/srcpkgs/python3-zope.schema/template
index 7c45510564d..82d51060bc5 100644
--- a/srcpkgs/python3-zope.schema/template
+++ b/srcpkgs/python3-zope.schema/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.schema
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc=zope.schema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testing/template b/srcpkgs/python3-zope.testing/template
index 9fd4dd19dcd..7c547615b68 100644
--- a/srcpkgs/python3-zope.testing/template
+++ b/srcpkgs/python3-zope.testing/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testing
 version=4.7
 revision=2
-archs=noarch
 wrksrc="zope.testing-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testrunner/template b/srcpkgs/python3-zope.testrunner/template
index 85413372686..80cf55a1715 100644
--- a/srcpkgs/python3-zope.testrunner/template
+++ b/srcpkgs/python3-zope.testrunner/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testrunner
 version=5.1
 revision=2
-archs=noarch
 wrksrc="zope.testrunner-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinxcontrib"
diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 98c4e1581e4..613217153a3 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -2,7 +2,6 @@
 pkgname=pywal
 version=3.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pywal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/qalculate/template b/srcpkgs/qalculate/template
index c5d041892f4..dbd193635bb 100644
--- a/srcpkgs/qalculate/template
+++ b/srcpkgs/qalculate/template
@@ -16,7 +16,6 @@ distfiles="https://github.com/Qalculate/libqalculate/releases/download/v${versio
 checksum=28c46dc8dd975f253627d80c55a6feab7c44d965dce3ceffefc3cafc9a97c457
 
 libqalculate-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/qalculate
diff --git a/srcpkgs/qdirstat/template b/srcpkgs/qdirstat/template
index 40be76ac8ef..4490a4e1272 100644
--- a/srcpkgs/qdirstat/template
+++ b/srcpkgs/qdirstat/template
@@ -23,7 +23,6 @@ post_install() {
 qdirstat-cache-writer_package() {
 	short_desc+=" - headless scanner"
 	depends="perl"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/qdirstat-cache-writer
 		vman man/qdirstat-cache-writer.1
diff --git a/srcpkgs/qmc2-flyers/template b/srcpkgs/qmc2-flyers/template
index 91f26dd0a18..bd62c4093a5 100644
--- a/srcpkgs/qmc2-flyers/template
+++ b/srcpkgs/qmc2-flyers/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="599660060753ce7118d9abc4b77f4644985d1341e1f3ca7c1f34d1a7a2e8030d"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2-snapshots/template b/srcpkgs/qmc2-snapshots/template
index fee8f052012..df2fcbc12c8 100644
--- a/srcpkgs/qmc2-snapshots/template
+++ b/srcpkgs/qmc2-snapshots/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="97684b11d4811ca1c3c24d31c359b7ac6ac90436e3fbce9e4966670697516d4f"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2/template b/srcpkgs/qmc2/template
index f362582dff5..1f72e9dd200 100644
--- a/srcpkgs/qmc2/template
+++ b/srcpkgs/qmc2/template
@@ -81,7 +81,6 @@ do_install() {
 		> ${DESTDIR}/usr/share/applications/qchdman.desktop
 }
 qmc2-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		local _ddir
diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template
index bd991d71e04..f999b249f94 100644
--- a/srcpkgs/qmk/template
+++ b/srcpkgs/qmk/template
@@ -2,7 +2,6 @@
 pkgname=qmk
 version=0.0.35
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-appdirs
diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 8063350ba06..4a3c282d40f 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -2,7 +2,6 @@
 pkgname=qomui
 version=0.8.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="qomui"
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/qrintf/template b/srcpkgs/qrintf/template
index 8b4ae6e9f0c..cd4cd8bee34 100644
--- a/srcpkgs/qrintf/template
+++ b/srcpkgs/qrintf/template
@@ -2,7 +2,6 @@
 pkgname=qrintf
 version=0.9.2
 revision=2
-archs=noarch
 depends="perl"
 short_desc="A sprintf accelerator for GCC and Clang"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/qtcreator/template b/srcpkgs/qtcreator/template
index e8cc8990fe0..23e69c35eed 100644
--- a/srcpkgs/qtcreator/template
+++ b/srcpkgs/qtcreator/template
@@ -71,7 +71,6 @@ qtcreator-full_package() {
 
 qtcreator-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/quixand/template b/srcpkgs/quixand/template
index 0574f90aa7e..2c6bd03be74 100644
--- a/srcpkgs/quixand/template
+++ b/srcpkgs/quixand/template
@@ -2,7 +2,6 @@
 pkgname=quixand
 version=2020
 revision=1
-archs=noarch
 depends="bash encfs"
 short_desc="Tool for creating single-use unrecoverable encrypted sandboxes"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index ba19de245ad..177ad99b74c 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -2,7 +2,6 @@
 pkgname=quodlibet
 version=4.3.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"
 hostmakedepends="intltool python3-devel"
diff --git a/srcpkgs/qytdl/template b/srcpkgs/qytdl/template
index b620c498a25..2733e6726e8 100644
--- a/srcpkgs/qytdl/template
+++ b/srcpkgs/qytdl/template
@@ -2,7 +2,6 @@
 pkgname=qytdl
 version=1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/qytdl/src"
 depends="desktop-file-utils python3-PyQt5 python3-youtube-dl"
diff --git a/srcpkgs/racket/template b/srcpkgs/racket/template
index dab6e5ec43c..41c9537b0e8 100644
--- a/srcpkgs/racket/template
+++ b/srcpkgs/racket/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 racket-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="racket>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/radicale/template b/srcpkgs/radicale/template
index 5cf0cc8da0d..30c1b9bfb8a 100644
--- a/srcpkgs/radicale/template
+++ b/srcpkgs/radicale/template
@@ -2,7 +2,6 @@
 pkgname=radicale
 version=1.1.6
 revision=4
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 pycompile_module="radicale"
diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 6fd785c5484..a762f1e41dd 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -2,7 +2,6 @@
 pkgname=radicale2
 version=2.1.12
 revision=1
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index d88da9b1ee1..33ecef3a239 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -2,7 +2,6 @@
 pkgname=ranger
 version=1.9.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="ranger"
 hostmakedepends="python3"
diff --git a/srcpkgs/rapidjson/template b/srcpkgs/rapidjson/template
index c1f3f32ba6d..0f8553674cb 100644
--- a/srcpkgs/rapidjson/template
+++ b/srcpkgs/rapidjson/template
@@ -3,7 +3,6 @@ pkgname=rapidjson
 version=1.1.0
 revision=2
 build_style=cmake
-archs=noarch
 short_desc="A fast JSON parser/generator for C++ with both SAX/DOM style API"
 maintainer="Alexander Egorenkov <egorenar-dev@posteo.net>"
 license="BSD, MIT"
diff --git a/srcpkgs/rapidxml/template b/srcpkgs/rapidxml/template
index 35418273bb4..6a19d381165 100644
--- a/srcpkgs/rapidxml/template
+++ b/srcpkgs/rapidxml/template
@@ -2,7 +2,6 @@
 pkgname=rapidxml
 version=1.13
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 short_desc="XML parser written in C++"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/rapydscript-ng/template b/srcpkgs/rapydscript-ng/template
index 681fe9781cc..92101d56f44 100644
--- a/srcpkgs/rapydscript-ng/template
+++ b/srcpkgs/rapydscript-ng/template
@@ -2,7 +2,6 @@
 pkgname=rapydscript-ng
 version=0.7.20
 revision=2
-archs=noarch
 hostmakedepends="nodejs"
 depends="nodejs"
 short_desc="Transpiler for a Python like language to JavaScript"
diff --git a/srcpkgs/rcm/template b/srcpkgs/rcm/template
index 2f84ba88ad3..9f7e44a091c 100644
--- a/srcpkgs/rcm/template
+++ b/srcpkgs/rcm/template
@@ -2,7 +2,6 @@
 pkgname=rcm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 checkdepends="python3-cram"
 depends="perl"
diff --git a/srcpkgs/rdumpfs/template b/srcpkgs/rdumpfs/template
index 12d80550d06..20709eb0c20 100644
--- a/srcpkgs/rdumpfs/template
+++ b/srcpkgs/rdumpfs/template
@@ -2,7 +2,6 @@
 pkgname=rdumpfs
 version=0.1
 revision=3
-archs=noarch
 depends="rsync bash"
 short_desc="A rsync-based dump file system backup tool"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/rebar3/template b/srcpkgs/rebar3/template
index 5243045ee94..f3cd96fead5 100644
--- a/srcpkgs/rebar3/template
+++ b/srcpkgs/rebar3/template
@@ -2,7 +2,6 @@
 pkgname=rebar3
 version=3.13.2
 revision=1
-archs=noarch
 hostmakedepends=erlang
 depends="erlang>=22"
 short_desc="Erlang build tool to compile, test, and release applications"
diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index fa2cb9cf445..14ddd26a73e 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -2,7 +2,6 @@
 pkgname=rednotebook
 version=2.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="desktop-file-utils gtksourceview hicolor-icon-theme python3-enchant
diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template
index 0f4e4047520..c9d037f10cb 100644
--- a/srcpkgs/remhind/template
+++ b/srcpkgs/remhind/template
@@ -2,7 +2,6 @@
 pkgname=remhind
 version=0.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel"
 depends="python3-icalendar python3-dateutil python3-gobject python3-toml
diff --git a/srcpkgs/rex/template b/srcpkgs/rex/template
index 0f294444ade..908ce0c2060 100644
--- a/srcpkgs/rex/template
+++ b/srcpkgs/rex/template
@@ -2,7 +2,6 @@
 pkgname=rex
 version=1.12.1
 revision=1
-archs=noarch
 wrksrc="Rex-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-AWS-Signature4 perl-Clone-Choose
diff --git a/srcpkgs/rinse/template b/srcpkgs/rinse/template
index 289fb177632..f626b75ad7a 100644
--- a/srcpkgs/rinse/template
+++ b/srcpkgs/rinse/template
@@ -2,7 +2,6 @@
 pkgname=rinse
 version=3.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_check_target=test
 hostmakedepends="dpkg"
diff --git a/srcpkgs/ripe-atlas-tools/template b/srcpkgs/ripe-atlas-tools/template
index c5e21c4b8dc..07bf1dceef1 100644
--- a/srcpkgs/ripe-atlas-tools/template
+++ b/srcpkgs/ripe-atlas-tools/template
@@ -2,7 +2,6 @@
 pkgname=ripe-atlas-tools
 version=2.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/rkhunter/template b/srcpkgs/rkhunter/template
index 743af812a78..968cad3cc7b 100644
--- a/srcpkgs/rkhunter/template
+++ b/srcpkgs/rkhunter/template
@@ -2,7 +2,6 @@
 pkgname=rkhunter
 version=1.4.6
 revision=1
-archs=noarch
 conf_files="/etc/rkhunter.conf"
 make_dirs="/var/lib/rkhunter/tmp 0750 root root"
 makedepends="curl"
diff --git a/srcpkgs/rocksndiamonds/template b/srcpkgs/rocksndiamonds/template
index 480aefff57f..55622087988 100644
--- a/srcpkgs/rocksndiamonds/template
+++ b/srcpkgs/rocksndiamonds/template
@@ -34,7 +34,6 @@ do_install() {
 
 rocksndiamonds-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/rocksndiamonds
 	}
diff --git a/srcpkgs/rpi-firmware/template b/srcpkgs/rpi-firmware/template
index faa8fa28222..45b6d58bc23 100644
--- a/srcpkgs/rpi-firmware/template
+++ b/srcpkgs/rpi-firmware/template
@@ -5,7 +5,6 @@ _gitshort="${_githash:0:7}"
 pkgname=rpi-firmware
 version=20200326
 revision=1
-archs=noarch
 wrksrc="firmware-${_githash}"
 short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
 maintainer="Peter Bui <pbui@github.bx612.space>"
diff --git a/srcpkgs/rpmextract/template b/srcpkgs/rpmextract/template
index e1e325f7a6c..5b568f72ba8 100644
--- a/srcpkgs/rpmextract/template
+++ b/srcpkgs/rpmextract/template
@@ -2,7 +2,6 @@
 pkgname=rpmextract
 version=1.1
 revision=3
-archs=noarch
 depends="bsdtar coreutils"
 short_desc="Script to convert or extract RPM archives (contains rpm2cpio)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/rsnapshot/template b/srcpkgs/rsnapshot/template
index 8dafcc87bcd..cb86ba6e78b 100644
--- a/srcpkgs/rsnapshot/template
+++ b/srcpkgs/rsnapshot/template
@@ -2,7 +2,6 @@
 pkgname=rsnapshot
 version=1.4.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl rsync openssh"
 makedepends="perl-Lchown"
diff --git a/srcpkgs/rtl8812au-dkms/template b/srcpkgs/rtl8812au-dkms/template
index 49548f69a76..7fb637158b4 100644
--- a/srcpkgs/rtl8812au-dkms/template
+++ b/srcpkgs/rtl8812au-dkms/template
@@ -4,7 +4,6 @@ version=20200702
 revision=1
 _modver=5.6.4.2
 _gitrev=3110ad65d0f03532bd97b1017cae67ca86dd34f6
-archs=noarch
 wrksrc="rtl8812au-${_modver}-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8812AU/8821AU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rtl8822bu-dkms/template b/srcpkgs/rtl8822bu-dkms/template
index 9f87620427d..1db7fe4eef0 100644
--- a/srcpkgs/rtl8822bu-dkms/template
+++ b/srcpkgs/rtl8822bu-dkms/template
@@ -3,7 +3,6 @@ pkgname=rtl8822bu-dkms
 version=20200407
 revision=1
 _gitrev=9438d453ec5b4878b7d4a2b4bcf87b37df09c3fb
-archs=noarch
 wrksrc="rtl8822bu-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8822BU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index de6652231aa..dec05bd21d0 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -2,7 +2,6 @@
 pkgname=rubber
 version=1.5.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 virtual?tex"
diff --git a/srcpkgs/ruby-addressable/template b/srcpkgs/ruby-addressable/template
index 0495e0176ec..0cc0fcd7a3d 100644
--- a/srcpkgs/ruby-addressable/template
+++ b/srcpkgs/ruby-addressable/template
@@ -2,7 +2,6 @@
 pkgname=ruby-addressable
 version=2.7.0
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-public_suffix>=2.0.2 ruby-public_suffix<5.0"
 short_desc="Replacement for Ruby's standard library URI implementation"
diff --git a/srcpkgs/ruby-asciidoctor/template b/srcpkgs/ruby-asciidoctor/template
index f70d94c165d..dba6815ad74 100644
--- a/srcpkgs/ruby-asciidoctor/template
+++ b/srcpkgs/ruby-asciidoctor/template
@@ -2,7 +2,6 @@
 pkgname=ruby-asciidoctor
 version=2.0.10
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Ruby implementation of AsciiDoc"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-concurrent-ruby/template b/srcpkgs/ruby-concurrent-ruby/template
index f702b3a2c09..c19d4a72091 100644
--- a/srcpkgs/ruby-concurrent-ruby/template
+++ b/srcpkgs/ruby-concurrent-ruby/template
@@ -2,7 +2,6 @@
 pkgname=ruby-concurrent-ruby
 version=1.1.5
 revision=3
-archs="noarch"
 build_style=gem
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-connection_pool/template b/srcpkgs/ruby-connection_pool/template
index 0ef9ffee343..4bde99058f1 100644
--- a/srcpkgs/ruby-connection_pool/template
+++ b/srcpkgs/ruby-connection_pool/template
@@ -2,7 +2,6 @@
 pkgname=ruby-connection_pool
 version=2.2.2
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Generic connection pool for Ruby"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-deep_merge/template b/srcpkgs/ruby-deep_merge/template
index 851a1fd4901..fe8fa774354 100644
--- a/srcpkgs/ruby-deep_merge/template
+++ b/srcpkgs/ruby-deep_merge/template
@@ -2,7 +2,6 @@
 pkgname=ruby-deep_merge
 version=1.2.1
 revision=2
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-ethon/template b/srcpkgs/ruby-ethon/template
index 6e19f1641e3..47c14e97059 100644
--- a/srcpkgs/ruby-ethon/template
+++ b/srcpkgs/ruby-ethon/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ethon
 version=0.12.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-ffi>=1.3.0"
 short_desc="Lightweight wrapper around libcurl"
diff --git a/srcpkgs/ruby-faraday/template b/srcpkgs/ruby-faraday/template
index 517f7afa39e..cb902fa55de 100644
--- a/srcpkgs/ruby-faraday/template
+++ b/srcpkgs/ruby-faraday/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday
 version=1.0.1
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-multipart-post>=1.2 ruby-multipart-post<3"
 short_desc="HTTP/REST API client library"
diff --git a/srcpkgs/ruby-faraday_middleware/template b/srcpkgs/ruby-faraday_middleware/template
index c300a0b5f86..869d7ca04ac 100644
--- a/srcpkgs/ruby-faraday_middleware/template
+++ b/srcpkgs/ruby-faraday_middleware/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday_middleware
 version=1.0.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-faraday>=1.0"
 short_desc="Various middleware for Faraday"
diff --git a/srcpkgs/ruby-filesize/template b/srcpkgs/ruby-filesize/template
index dad1a39f098..32284c510a6 100644
--- a/srcpkgs/ruby-filesize/template
+++ b/srcpkgs/ruby-filesize/template
@@ -2,7 +2,6 @@
 pkgname=ruby-filesize
 version=0.2.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Small class for handling filesizes"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-gh/template b/srcpkgs/ruby-gh/template
index 0a9899994f1..2972f27ff15 100644
--- a/srcpkgs/ruby-gh/template
+++ b/srcpkgs/ruby-gh/template
@@ -2,7 +2,6 @@
 pkgname=ruby-gh
 version=0.15.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.4.0 ruby-backports ruby-faraday>=0.8
  ruby-multi_json>=1.0 ruby-net-http-persistent>=2.9 ruby-net-http-pipeline"
diff --git a/srcpkgs/ruby-highline/template b/srcpkgs/ruby-highline/template
index 5064e4167c3..c21e6f4b1c6 100644
--- a/srcpkgs/ruby-highline/template
+++ b/srcpkgs/ruby-highline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-highline
 version=2.0.3
 revision=2
-archs=noarch
 build_style=gem
 short_desc="High-level IO library for comamndline interfaces"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-httparty/template b/srcpkgs/ruby-httparty/template
index 7a26fe321e7..fb88f3ae633 100644
--- a/srcpkgs/ruby-httparty/template
+++ b/srcpkgs/ruby-httparty/template
@@ -2,7 +2,6 @@
 pkgname=ruby-httparty
 version=0.17.1
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types>=3.0 ruby-multi_xml>=0.5.2"
 short_desc="Makes http fun! Also, makes consuming restful web services dead easy"
diff --git a/srcpkgs/ruby-launchy/template b/srcpkgs/ruby-launchy/template
index 1586ac19625..fd42c758b4e 100644
--- a/srcpkgs/ruby-launchy/template
+++ b/srcpkgs/ruby-launchy/template
@@ -2,7 +2,6 @@
 pkgname=ruby-launchy
 version=2.4.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.3 ruby-addressable<3.0"
 short_desc="Helper class for launching cross-platform applications"
diff --git a/srcpkgs/ruby-manpages/template b/srcpkgs/ruby-manpages/template
index 2521b71af56..491ed093d46 100644
--- a/srcpkgs/ruby-manpages/template
+++ b/srcpkgs/ruby-manpages/template
@@ -2,7 +2,6 @@
 pkgname=ruby-manpages
 version=0.6.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Gem to add man pages support to ruby gems"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-mime-types-data/template b/srcpkgs/ruby-mime-types-data/template
index d8b3958fc44..3da961f2eaa 100644
--- a/srcpkgs/ruby-mime-types-data/template
+++ b/srcpkgs/ruby-mime-types-data/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types-data
 version=3.2019.1009
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Registry for MIME media type definitions"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mime-types/template b/srcpkgs/ruby-mime-types/template
index 1512f5f9a6c..aef14485633 100644
--- a/srcpkgs/ruby-mime-types/template
+++ b/srcpkgs/ruby-mime-types/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types
 version=3.3
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types-data>=3.2015"
 short_desc="Library for registry and information about MIME types"
diff --git a/srcpkgs/ruby-multi_json/template b/srcpkgs/ruby-multi_json/template
index 71c3623f0fb..cff882e742c 100644
--- a/srcpkgs/ruby-multi_json/template
+++ b/srcpkgs/ruby-multi_json/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_json
 version=1.14.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Common interface for multiple JSON parsing libraries"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multi_xml/template b/srcpkgs/ruby-multi_xml/template
index 3a4628c9e29..a8d30d74535 100644
--- a/srcpkgs/ruby-multi_xml/template
+++ b/srcpkgs/ruby-multi_xml/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_xml
 version=0.6.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multipart-post/template b/srcpkgs/ruby-multipart-post/template
index a2b21ce7627..44c2119aa04 100644
--- a/srcpkgs/ruby-multipart-post/template
+++ b/srcpkgs/ruby-multipart-post/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multipart-post
 version=2.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Use with Net::HTTP to do multipart form posts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mustache/template b/srcpkgs/ruby-mustache/template
index 96ebfb59b27..b7d9bf4f416 100644
--- a/srcpkgs/ruby-mustache/template
+++ b/srcpkgs/ruby-mustache/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mustache
 version=1.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Framework-agnostic way to render logic-free views"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-net-http-persistent/template b/srcpkgs/ruby-net-http-persistent/template
index afae4ea0308..bd3dc9240a3 100644
--- a/srcpkgs/ruby-net-http-persistent/template
+++ b/srcpkgs/ruby-net-http-persistent/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-persistent
 version=3.1.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-connection_pool>=2.2 ruby-connection_pool<3.0"
 short_desc="Manages persistent connections using Net::HTTP"
diff --git a/srcpkgs/ruby-net-http-pipeline/template b/srcpkgs/ruby-net-http-pipeline/template
index 0cb6aa687ff..8b7762613ea 100644
--- a/srcpkgs/ruby-net-http-pipeline/template
+++ b/srcpkgs/ruby-net-http-pipeline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-pipeline
 version=1.0.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="HTTP/1.1 pipelining implementation atop Net::HTTP"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-public_suffix/template b/srcpkgs/ruby-public_suffix/template
index ec94bd34ca3..d588f22de24 100644
--- a/srcpkgs/ruby-public_suffix/template
+++ b/srcpkgs/ruby-public_suffix/template
@@ -2,7 +2,6 @@
 pkgname=ruby-public_suffix
 version=4.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Parse domain names into top level domain, domain and subdomains"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-pusher-client/template b/srcpkgs/ruby-pusher-client/template
index 9b41bbf12ef..fac92ca2968 100644
--- a/srcpkgs/ruby-pusher-client/template
+++ b/srcpkgs/ruby-pusher-client/template
@@ -2,7 +2,6 @@
 pkgname=ruby-pusher-client
 version=0.6.2
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-websocket>=1.0 ruby-websocket<2.0"
 short_desc="Client for consuming WebSockets from http://pusher.com"
diff --git a/srcpkgs/ruby-rainbow/template b/srcpkgs/ruby-rainbow/template
index dc2c03331d4..96fc7360c7c 100644
--- a/srcpkgs/ruby-rainbow/template
+++ b/srcpkgs/ruby-rainbow/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rainbow
 version=3.0.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Colorize printed text on ANSI terminals"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-rb-readline/template b/srcpkgs/ruby-rb-readline/template
index 5457b9cd5d1..2d78ead9d50 100644
--- a/srcpkgs/ruby-rb-readline/template
+++ b/srcpkgs/ruby-rb-readline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rb-readline
 version=0.5.5
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby"
 short_desc="Pure Ruby implementation of GNU readline library"
diff --git a/srcpkgs/ruby-ronn/template b/srcpkgs/ruby-ronn/template
index cada3abd52d..01515c05e6a 100644
--- a/srcpkgs/ruby-ronn/template
+++ b/srcpkgs/ruby-ronn/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ronn
 version=0.7.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-hpricot ruby-mustache ruby-rdiscount groff"
 short_desc="Strick markdown-like format for manpages"
diff --git a/srcpkgs/ruby-rubysl-singleton/template b/srcpkgs/ruby-rubysl-singleton/template
index a2b64a23ca4..184f71f3375 100644
--- a/srcpkgs/ruby-rubysl-singleton/template
+++ b/srcpkgs/ruby-rubysl-singleton/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rubysl-singleton
 version=2.0.0
 revision=2
-archs="noarch"
 build_style=gemspec
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-semantic_puppet/template b/srcpkgs/ruby-semantic_puppet/template
index e7af95f9e7a..758c6cef565 100644
--- a/srcpkgs/ruby-semantic_puppet/template
+++ b/srcpkgs/ruby-semantic_puppet/template
@@ -2,7 +2,6 @@
 pkgname=ruby-semantic_puppet
 version=1.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Tools for working with Semantic Versions"
 maintainer="eater <=@eater.me>"
diff --git a/srcpkgs/ruby-sync/template b/srcpkgs/ruby-sync/template
index 20771ee9b5e..5155a3e1359 100644
--- a/srcpkgs/ruby-sync/template
+++ b/srcpkgs/ruby-sync/template
@@ -2,7 +2,6 @@
 pkgname=ruby-sync
 version=0.5.0
 revision=1
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-travis/template b/srcpkgs/ruby-travis/template
index 2eaa35cad8e..3e236aa25b4 100644
--- a/srcpkgs/ruby-travis/template
+++ b/srcpkgs/ruby-travis/template
@@ -2,7 +2,6 @@
 pkgname=ruby-travis
 version=1.9.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-backports ruby-faraday>=1.0 ruby-faraday_middleware>=1.0
  ruby-gh>=0.13 ruby-highline>=2.0 ruby-launchy>=2.1 ruby-pusher-client>=0.4
diff --git a/srcpkgs/ruby-typhoeus/template b/srcpkgs/ruby-typhoeus/template
index 33447f4b2bf..f6945c9fd7e 100644
--- a/srcpkgs/ruby-typhoeus/template
+++ b/srcpkgs/ruby-typhoeus/template
@@ -2,7 +2,6 @@
 pkgname=ruby-typhoeus
 version=1.3.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-ethon>=0.9.0"
 short_desc="Parallel HTTP requests runner"
diff --git a/srcpkgs/ruby-websocket/template b/srcpkgs/ruby-websocket/template
index 83c913113f1..56ee82430b9 100644
--- a/srcpkgs/ruby-websocket/template
+++ b/srcpkgs/ruby-websocket/template
@@ -2,7 +2,6 @@
 pkgname=ruby-websocket
 version=1.2.8
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Universal Ruby library to handle WebSocket protocol"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby/template b/srcpkgs/ruby/template
index 5159f3c3b88..1cd48b464d7 100644
--- a/srcpkgs/ruby/template
+++ b/srcpkgs/ruby/template
@@ -105,7 +105,6 @@ post_install() {
 
 ruby-devel-doc_package() {
 	short_desc+=" - HTML C API documentation files"
-	archs=noarch
 	pkg_install() {
 		if [ -d "${DESTDIR}/usr/share/doc" ]; then
 			vmove usr/share/doc
@@ -133,7 +132,6 @@ ruby-devel_package() {
 ruby-ri_package() {
 	depends="ruby-${version}_${revision}"
 	short_desc="Ruby Interactive reference"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/ri
 		if [ -d "${DESTDIR}/usr/share/ri" ]; then
diff --git a/srcpkgs/run-mailcap/template b/srcpkgs/run-mailcap/template
index a09c1f8ef01..4947cf0d13c 100644
--- a/srcpkgs/run-mailcap/template
+++ b/srcpkgs/run-mailcap/template
@@ -2,7 +2,6 @@
 pkgname=run-mailcap
 version=3.64
 revision=1
-archs=noarch
 wrksrc="mime-support-${version}ubuntu1"
 depends="perl"
 short_desc="Execute programs via entries in the mailcap file"
diff --git a/srcpkgs/runelite-launcher/template b/srcpkgs/runelite-launcher/template
index f4717951c59..f2bd9af220c 100644
--- a/srcpkgs/runelite-launcher/template
+++ b/srcpkgs/runelite-launcher/template
@@ -2,7 +2,6 @@
 pkgname=runelite-launcher
 version=2.1.3
 revision=1
-archs=noarch
 wrksrc="launcher-${version}"
 hostmakedepends="apache-maven-bin"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/runit-iptables/template b/srcpkgs/runit-iptables/template
index c35cdc4738f..4761418d8a3 100644
--- a/srcpkgs/runit-iptables/template
+++ b/srcpkgs/runit-iptables/template
@@ -2,7 +2,6 @@
 pkgname=runit-iptables
 version=20180616
 revision=1
-archs=noarch
 depends="runit-void iptables"
 short_desc="Restore iptables rules on boot"
 maintainer="Nicolas Porcel <nicolasporcel06@gmail.com>"
diff --git a/srcpkgs/runit-kdump/template b/srcpkgs/runit-kdump/template
index 0c7f8ea464d..c220d4215ee 100644
--- a/srcpkgs/runit-kdump/template
+++ b/srcpkgs/runit-kdump/template
@@ -2,7 +2,6 @@
 pkgname=runit-kdump
 version=20150226
 revision=4
-archs=noarch
 make_dirs="/var/crash 0755 root root"
 depends="runit-void makedumpfile kexec-tools"
 short_desc="Crashkernel/kdump support for runit to save vmcore to disk"
diff --git a/srcpkgs/runit-nftables/template b/srcpkgs/runit-nftables/template
index d07cb42cae5..4ca82522948 100644
--- a/srcpkgs/runit-nftables/template
+++ b/srcpkgs/runit-nftables/template
@@ -2,7 +2,6 @@
 pkgname=runit-nftables
 version=20200123
 revision=1
-archs=noarch
 depends="runit-void nftables"
 short_desc="Restore nftables rules on boot"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/runit-swap/template b/srcpkgs/runit-swap/template
index 20147c8555d..f0a8416d38f 100644
--- a/srcpkgs/runit-swap/template
+++ b/srcpkgs/runit-swap/template
@@ -10,7 +10,6 @@ maintainer="Andrea Brancaleoni <abc@pompel.me>"
 license="GPL-3"
 homepage="https://github.com/thypon/runit-swap"
 conf_files="/etc/runit/swap.conf"
-archs=noarch
 distfiles="$homepage/archive/v$version.tar.gz"
 checksum=a66730777fb084564e7fae67f2017d775b757b6b6c0c319802f71bed2184e958
 
diff --git a/srcpkgs/rust/template b/srcpkgs/rust/template
index cba2feba4d2..942457e523c 100644
--- a/srcpkgs/rust/template
+++ b/srcpkgs/rust/template
@@ -298,7 +298,6 @@ do_install() {
 
 rust-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/rxvt-unicode/template b/srcpkgs/rxvt-unicode/template
index d07e838a818..5360b4486be 100644
--- a/srcpkgs/rxvt-unicode/template
+++ b/srcpkgs/rxvt-unicode/template
@@ -77,7 +77,6 @@ post_install() {
 
 rxvt-unicode-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/s3cmd/template b/srcpkgs/s3cmd/template
index 8043233efb5..5b3527c19a4 100644
--- a/srcpkgs/s3cmd/template
+++ b/srcpkgs/s3cmd/template
@@ -2,7 +2,6 @@
 pkgname=s3cmd
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-dateutil"
diff --git a/srcpkgs/s6-dns/template b/srcpkgs/s6-dns/template
index 9a0227f2806..fa8a6f34c9c 100644
--- a/srcpkgs/s6-dns/template
+++ b/srcpkgs/s6-dns/template
@@ -21,7 +21,6 @@ post_install() {
 }
 
 s6-dns-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-linux-utils/template b/srcpkgs/s6-linux-utils/template
index 224125b1117..e84aa08fc56 100644
--- a/srcpkgs/s6-linux-utils/template
+++ b/srcpkgs/s6-linux-utils/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-linux-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-networking/template b/srcpkgs/s6-networking/template
index 832b56ba251..2d08e3a7964 100644
--- a/srcpkgs/s6-networking/template
+++ b/srcpkgs/s6-networking/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-networking-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-portable-utils/template b/srcpkgs/s6-portable-utils/template
index c163ea31eae..a9fa76d8e25 100644
--- a/srcpkgs/s6-portable-utils/template
+++ b/srcpkgs/s6-portable-utils/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 s6-portable-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-rc/template b/srcpkgs/s6-rc/template
index 4296af454a2..108f89faa9f 100644
--- a/srcpkgs/s6-rc/template
+++ b/srcpkgs/s6-rc/template
@@ -34,7 +34,6 @@ s6-rc-devel_package() {
 }
 
 s6-rc-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6/template b/srcpkgs/s6/template
index baecf1ee007..f54f828e685 100644
--- a/srcpkgs/s6/template
+++ b/srcpkgs/s6/template
@@ -27,7 +27,6 @@ post_install() {
 }
 
 s6-doc_package() {
-	archs=noarch
 	short_desc="Documentation for s6"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/sabnzbd/template b/srcpkgs/sabnzbd/template
index a45b6535c33..e0364e3e746 100644
--- a/srcpkgs/sabnzbd/template
+++ b/srcpkgs/sabnzbd/template
@@ -2,7 +2,6 @@
 pkgname=sabnzbd
 version=2.3.9
 revision=1
-archs=noarch
 wrksrc="SABnzbd-${version}"
 pycompile_dirs="/usr/share/sabnzbd"
 depends="par2cmdline python-cheetah python-configobj python-feedparser
diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index c237bc503d8..6b7c5f51007 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -2,7 +2,6 @@
 pkgname=safeeyes
 version=2.0.9
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/salt/template b/srcpkgs/salt/template
index 80525f92686..7472d3975a8 100644
--- a/srcpkgs/salt/template
+++ b/srcpkgs/salt/template
@@ -2,7 +2,6 @@
 pkgname=salt
 version=3001.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-yaml python3-Jinja2 python3-requests python3-pyzmq
diff --git a/srcpkgs/sandfox/template b/srcpkgs/sandfox/template
index 36bd2571bd6..24e20f3c806 100644
--- a/srcpkgs/sandfox/template
+++ b/srcpkgs/sandfox/template
@@ -2,7 +2,6 @@
 pkgname=sandfox
 version=1.1.4
 revision=2
-archs=noarch
 depends="bash inotify-tools lsof"
 short_desc="Runs Firefox and other apps in a filesystem sandbox"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/sauerbraten/template b/srcpkgs/sauerbraten/template
index bb0c9b8acb9..636a3b446ba 100644
--- a/srcpkgs/sauerbraten/template
+++ b/srcpkgs/sauerbraten/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 sauerbraten-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmkdir usr/share/$sourcepkg
diff --git a/srcpkgs/sbcl/template b/srcpkgs/sbcl/template
index 2f58d4153f8..6eee1a27abe 100644
--- a/srcpkgs/sbcl/template
+++ b/srcpkgs/sbcl/template
@@ -56,7 +56,6 @@ do_install() {
 }
 
 sbcl-source_package() {
-	archs="noarch"
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" -- source files"
 	pkg_install() {
diff --git a/srcpkgs/sbt/template b/srcpkgs/sbt/template
index df79423b267..c2e90eb2d97 100644
--- a/srcpkgs/sbt/template
+++ b/srcpkgs/sbt/template
@@ -2,7 +2,6 @@
 pkgname=sbt
 version=1.3.10
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="virtual?java-environment"
 short_desc="Interactive build tool for Scala and Java"
diff --git a/srcpkgs/scanmem/template b/srcpkgs/scanmem/template
index b9bbb2f89fc..0cdd4271f7b 100644
--- a/srcpkgs/scanmem/template
+++ b/srcpkgs/scanmem/template
@@ -41,7 +41,6 @@ libscanmem-devel_package() {
 gameconqueror_package() {
 	short_desc="GameConqueror is a GUI front-end for scanmem, providing more features"
 	depends="polkit gtk+3 python3-gobject lib${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		cd $DESTDIR
diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 36972bfd461..45bec58f751 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -2,7 +2,6 @@
 pkgname=scapy
 version=2.4.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="scapy"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/schedule/template b/srcpkgs/schedule/template
index 0a5b7c03d6b..4348334a32b 100644
--- a/srcpkgs/schedule/template
+++ b/srcpkgs/schedule/template
@@ -2,7 +2,6 @@
 pkgname=schedule
 version=8.0.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Framework to schedule jobs in a multiuser multitasking environment"
diff --git a/srcpkgs/screenFetch/template b/srcpkgs/screenFetch/template
index 4a3d5a9dcaa..6b98d688755 100644
--- a/srcpkgs/screenFetch/template
+++ b/srcpkgs/screenFetch/template
@@ -2,7 +2,6 @@
 pkgname=screenFetch
 version=3.9.1
 revision=1
-archs=noarch
 depends="bash bc xdpyinfo"
 short_desc="Bash screenshot information tool"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/screenkey/template b/srcpkgs/screenkey/template
index b4feb736b89..8205bff7a23 100644
--- a/srcpkgs/screenkey/template
+++ b/srcpkgs/screenkey/template
@@ -2,7 +2,6 @@
 pkgname=screenkey
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-setuptools python3-distutils-extra"
 depends="python3-gobject"
diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index e3ce1bc7ff2..10f41dd685b 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -2,7 +2,6 @@
 pkgname=screenplain
 version=0.9.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-reportlab"
diff --git a/srcpkgs/seafile-libclient/template b/srcpkgs/seafile-libclient/template
index 4db42506d81..1b25ea59255 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -39,7 +39,6 @@ seafile-libclient-devel_package() {
 seafile-libclient-python3_package() {
 	short_desc="Cloud storage system - Python3 bindings"
 	depends="libsearpc-python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
@@ -49,7 +48,6 @@ seafile-cli_package() {
 	short_desc="Cloud storage system - client CLI"
 	depends="seafile-libclient-python3 ${sourcepkg}>=${version}_${revision}"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/seaf-cli
 		vmove usr/share/man/man1/seaf-cli.1
diff --git a/srcpkgs/sendEmail/template b/srcpkgs/sendEmail/template
index a60e0941572..508aca8aeeb 100644
--- a/srcpkgs/sendEmail/template
+++ b/srcpkgs/sendEmail/template
@@ -2,7 +2,6 @@
 pkgname=sendEmail
 version=1.56
 revision=1
-archs=noarch
 wrksrc="${pkgname}-v${version}"
 depends="perl-Net-SSLeay"
 short_desc="Lightweight, command line SMTP email client"
diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index 8191947a20b..d7b357a5940 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -2,7 +2,6 @@
 pkgname=setconf
 version=0.7.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="setconf.py"
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-setconf_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" - transitional dummy package"
 	depends="setconf"
diff --git a/srcpkgs/shared-color-targets/template b/srcpkgs/shared-color-targets/template
index 45b350d0b63..4b7f7dfab0a 100644
--- a/srcpkgs/shared-color-targets/template
+++ b/srcpkgs/shared-color-targets/template
@@ -2,7 +2,6 @@
 pkgname=shared-color-targets
 version=0.1.7
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Shared color targets for creating color profiles"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shared-desktop-ontologies/template b/srcpkgs/shared-desktop-ontologies/template
index d8ac5283177..6260f372e5e 100644
--- a/srcpkgs/shared-desktop-ontologies/template
+++ b/srcpkgs/shared-desktop-ontologies/template
@@ -2,7 +2,6 @@
 pkgname=shared-desktop-ontologies
 version=0.11.0
 revision=3
-archs=noarch
 build_style=cmake
 short_desc="Provide RDF vocabularies for the Semantic Desktop"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 4cd7da661b0..5b204fff7e9 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -55,12 +55,10 @@ python3-shiboken_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
 
 libshiboken-python3_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/shorewall/template b/srcpkgs/shorewall/template
index 30efdba8869..e0d82656e85 100644
--- a/srcpkgs/shorewall/template
+++ b/srcpkgs/shorewall/template
@@ -2,7 +2,6 @@
 pkgname=shorewall
 version=5.2.7
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="shorewall-core perl"
 short_desc="Iptables-based firewall for Linux systems"
@@ -37,7 +36,6 @@ do_install() {
 }
 
 shorewall-core_package() {
-	archs=noarch
 	depends="iptables iproute2"
 	short_desc+=" - Core Shorewall files"
 	pkg_install() {
@@ -47,7 +45,6 @@ shorewall-core_package() {
 }
 
 shorewall6_package() {
-	archs=noarch
 	depends="shorewall"
 	conf_files="/etc/$pkgname/*"
 	short_desc+=" - IPv6 support"
diff --git a/srcpkgs/shunit2/template b/srcpkgs/shunit2/template
index f909503b0f6..77babcece07 100644
--- a/srcpkgs/shunit2/template
+++ b/srcpkgs/shunit2/template
@@ -2,7 +2,6 @@
 pkgname=shunit2
 version=2.1.8
 revision=1
-archs=noarch
 depends="bash"
 checkdepends="zsh ksh"
 short_desc="Unit testing framework for Unix shell scripts based on xUnit"
diff --git a/srcpkgs/sickbeard/template b/srcpkgs/sickbeard/template
index a056d33f0b9..8499ed6ea0a 100644
--- a/srcpkgs/sickbeard/template
+++ b/srcpkgs/sickbeard/template
@@ -2,7 +2,6 @@
 pkgname=sickbeard
 version=507
 revision=3
-archs=noarch
 wrksrc="Sick-Beard-build-${version}"
 pycompile_dirs="/usr/share/${pkgname}"
 depends="python-cheetah"
diff --git a/srcpkgs/signond/template b/srcpkgs/signond/template
index fc1bdebe712..c72b3932ea6 100644
--- a/srcpkgs/signond/template
+++ b/srcpkgs/signond/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 signond-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/sigrok-firmware-fx2lafw/template b/srcpkgs/sigrok-firmware-fx2lafw/template
index 5c92bc1c0ac..7f9a574fa2d 100644
--- a/srcpkgs/sigrok-firmware-fx2lafw/template
+++ b/srcpkgs/sigrok-firmware-fx2lafw/template
@@ -2,7 +2,6 @@
 pkgname=sigrok-firmware-fx2lafw
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname}-bin-${version}"
 short_desc="Sigrok fx2lafw Firmware files"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/skalibs/template b/srcpkgs/skalibs/template
index 7b838abda1b..05dbcc04fa1 100644
--- a/srcpkgs/skalibs/template
+++ b/srcpkgs/skalibs/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 skalibs-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/slim-void-theme/template b/srcpkgs/slim-void-theme/template
index 373d6b644e4..8598b5cc0bc 100644
--- a/srcpkgs/slim-void-theme/template
+++ b/srcpkgs/slim-void-theme/template
@@ -2,7 +2,6 @@
 pkgname=slim-void-theme
 version=1.0.0
 revision=1
-archs=noarch
 depends="slim"
 short_desc="Fancy SLiM theme for Void Linux"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
diff --git a/srcpkgs/snazzer/template b/srcpkgs/snazzer/template
index 40828a47362..a42c9a541bd 100644
--- a/srcpkgs/snazzer/template
+++ b/srcpkgs/snazzer/template
@@ -2,7 +2,6 @@
 pkgname=snazzer
 version=0.0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl pod2mdoc"
 depends="sudo btrfs-progs"
diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3a88e08a988..8ae8caf4337 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -2,7 +2,6 @@
 pkgname=sonata
 version=1.7b1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-mpd2 python3-gobject gtk+3 ${hostmakedepends}"
diff --git a/srcpkgs/sound-icons/template b/srcpkgs/sound-icons/template
index ee30809549f..84a4de4011d 100644
--- a/srcpkgs/sound-icons/template
+++ b/srcpkgs/sound-icons/template
@@ -2,7 +2,6 @@
 pkgname=sound-icons
 version=0.1
 revision=1
-archs=noarch
 short_desc="Sounds for speech enabled applications"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/sound-theme-freedesktop/template b/srcpkgs/sound-theme-freedesktop/template
index 5edc5cb8440..b2147d82046 100644
--- a/srcpkgs/sound-theme-freedesktop/template
+++ b/srcpkgs/sound-theme-freedesktop/template
@@ -2,7 +2,6 @@
 pkgname=sound-theme-freedesktop
 version=0.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="Freedesktop sound theme"
diff --git a/srcpkgs/soundconverter/template b/srcpkgs/soundconverter/template
index 1bda4743513..2dfe30d25e3 100644
--- a/srcpkgs/soundconverter/template
+++ b/srcpkgs/soundconverter/template
@@ -2,7 +2,6 @@
 pkgname=soundconverter
 version=3.0.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/${pkgname}/python/${pkgname}"
 hostmakedepends="glib intltool pkg-config python3-gobject"
diff --git a/srcpkgs/soundfont-fluid/template b/srcpkgs/soundfont-fluid/template
index dfbe2f089a7..96318df36e2 100644
--- a/srcpkgs/soundfont-fluid/template
+++ b/srcpkgs/soundfont-fluid/template
@@ -2,7 +2,6 @@
 pkgname=soundfont-fluid
 version=3.1
 revision=3
-archs=noarch
 wrksrc="fluid-soundfont-${version}"
 short_desc="FluidR3 Soundfont"
 maintainer="Nick Hahn <nick.hahn@hotmail.de>"
diff --git a/srcpkgs/source-sans-pro/template b/srcpkgs/source-sans-pro/template
index 510f5a74e91..059f669b8bb 100644
--- a/srcpkgs/source-sans-pro/template
+++ b/srcpkgs/source-sans-pro/template
@@ -3,7 +3,6 @@ pkgname=source-sans-pro
 version=3.006
 revision=1
 _relver="3.006R"
-archs=noarch
 wrksrc="source-sans-pro-${_relver/\//-}"
 depends="font-util"
 short_desc="Sans serif font family for user interface environments"
diff --git a/srcpkgs/spampd/template b/srcpkgs/spampd/template
index 69d884a75df..1058d4bb5a7 100644
--- a/srcpkgs/spampd/template
+++ b/srcpkgs/spampd/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="http://www.worlddesign.com/index.cfm/page/software/open-source/spampd.htm"
 distfiles="https://github.com/downloads/mpaperno/$pkgname/$pkgname-$version.tar.gz"
 checksum=c980e55f46c7757fd45294e5268766253123490d0158d2ee36ad5700ddf823bb
-archs=noarch
 system_accounts="_spampd"
 _spampd_homedir="/var/lib/spampd"
 
diff --git a/srcpkgs/sparsehash/template b/srcpkgs/sparsehash/template
index b6e1725d3a3..919e516f4d8 100644
--- a/srcpkgs/sparsehash/template
+++ b/srcpkgs/sparsehash/template
@@ -2,7 +2,6 @@
 pkgname=sparsehash
 version=2.0.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Library that contains several hash-map implementations"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/spdx-licenses-list/template b/srcpkgs/spdx-licenses-list/template
index 98b05b520d8..c12a3616660 100644
--- a/srcpkgs/spdx-licenses-list/template
+++ b/srcpkgs/spdx-licenses-list/template
@@ -4,7 +4,6 @@
 pkgname=spdx-licenses-list
 version=3.10
 revision=1
-archs=noarch
 wrksrc="license-list-data-${version}"
 short_desc="SPDX License List"
 maintainer="mobinmob <mobinmob@disroot.org>"
@@ -22,7 +21,6 @@ do_install() {
 }
 
 spdx-licenses-text_package() {
-	archs=noarch
 	short_desc="SPDX licenses in plain text"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -31,7 +29,6 @@ spdx-licenses-text_package() {
 }
 
 spdx-licenses-json_package() {
-	archs=noarch
 	short_desc="SPDX licenses in JSON"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -40,7 +37,6 @@ spdx-licenses-json_package() {
 }
 
 spdx-licenses-html_package() {
-	archs=noarch
 	short_desc="SPDX licenses in HTML"
 	pkg_install() {
 		vmkdir usr/share/spdx
diff --git a/srcpkgs/spectre-meltdown-checker/template b/srcpkgs/spectre-meltdown-checker/template
index ba940726dc1..4873a59248e 100644
--- a/srcpkgs/spectre-meltdown-checker/template
+++ b/srcpkgs/spectre-meltdown-checker/template
@@ -2,7 +2,6 @@
 pkgname=spectre-meltdown-checker
 version=0.43
 revision=1
-archs=noarch
 short_desc="Spectre & Meltdown vulnerability/mitigation checker for Linux"
 depends="binutils"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/speed-dreams/template b/srcpkgs/speed-dreams/template
index 6a32ccc1b49..f269e718af2 100644
--- a/srcpkgs/speed-dreams/template
+++ b/srcpkgs/speed-dreams/template
@@ -34,7 +34,6 @@ esac
 
 speed-dreams-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/speed-dreams-2
 	}
diff --git a/srcpkgs/speedometer/template b/srcpkgs/speedometer/template
index 3c287fcdca7..12c6f43a0e2 100644
--- a/srcpkgs/speedometer/template
+++ b/srcpkgs/speedometer/template
@@ -2,7 +2,6 @@
 pkgname=speedometer
 version=2.8
 revision=3
-archs=noarch
 wrksrc="speedometer-release-${version}"
 depends="python-urwid"
 short_desc="Monitor network traffic or speed/progress of a file transfer"
diff --git a/srcpkgs/speedtest-cli/template b/srcpkgs/speedtest-cli/template
index c65d9fd631d..04b63b8f57a 100644
--- a/srcpkgs/speedtest-cli/template
+++ b/srcpkgs/speedtest-cli/template
@@ -2,7 +2,6 @@
 pkgname=speedtest-cli
 version=2.1.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/spice-protocol/template b/srcpkgs/spice-protocol/template
index 819c2977712..f4b952ce5df 100644
--- a/srcpkgs/spice-protocol/template
+++ b/srcpkgs/spice-protocol/template
@@ -2,7 +2,6 @@
 pkgname=spice-protocol
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="spice-protocol-v${version}"
 build_style=meson
 short_desc="SPICE protocol headers"
diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template
index e7a76a818bf..31842d87272 100644
--- a/srcpkgs/sqlmap/template
+++ b/srcpkgs/sqlmap/template
@@ -2,7 +2,6 @@
 pkgname=sqlmap
 version=1.4.8
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/sqlmap"
 depends="python3"
 short_desc="Automatic SQL injection and database takeover tool"
diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index b9d1f6f8054..3c549b131da 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -2,7 +2,6 @@
 pkgname=ssh-audit
 version=2.2.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="SSH server auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index c642a07cd37..8ac71be47e8 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -2,7 +2,6 @@
 pkgname=sshuttle
 version=1.0.4
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools iptables"
diff --git a/srcpkgs/ssoma/template b/srcpkgs/ssoma/template
index e2ea3eb961c..d618cba28ac 100644
--- a/srcpkgs/ssoma/template
+++ b/srcpkgs/ssoma/template
@@ -2,7 +2,6 @@
 pkgname=ssoma
 version=0.2.0
 revision=2
-archs=noarch
 make_install_target="install install-man prefix=/usr"
 build_style=perl-module
 depends="perl perl-Email-LocalDelivery perl-Email-MIME perl-File-Path-Expand
diff --git a/srcpkgs/st/template b/srcpkgs/st/template
index c1ff40e2496..4c3281adff6 100644
--- a/srcpkgs/st/template
+++ b/srcpkgs/st/template
@@ -29,7 +29,6 @@ post_install() {
 
 st-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/starfighter/template b/srcpkgs/starfighter/template
index 1b357256b2f..d465bacc52a 100644
--- a/srcpkgs/starfighter/template
+++ b/srcpkgs/starfighter/template
@@ -21,7 +21,6 @@ pre_configure() {
 
 starfighter-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/starfighter
 	}
diff --git a/srcpkgs/startup/template b/srcpkgs/startup/template
index 4a163d65afc..9180c0b7962 100644
--- a/srcpkgs/startup/template
+++ b/srcpkgs/startup/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 startup-tools_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} python3-dbus python3-gobject"
 	short_desc+=" - monitoring and analysis tools"
 	pkg_install() {
diff --git a/srcpkgs/statnot/template b/srcpkgs/statnot/template
index e1817d8f43a..e5bfff9f5e3 100644
--- a/srcpkgs/statnot/template
+++ b/srcpkgs/statnot/template
@@ -2,7 +2,6 @@
 pkgname=statnot
 version=0.0.4
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="pygtk python3-dbus xsetroot"
 short_desc="Notification system for lightweight window managers"
diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index d75e88837cc..b3d4de94217 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -2,7 +2,6 @@
 pkgname=stcgal
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/steam-fonts/template b/srcpkgs/steam-fonts/template
index b0f2aa192b5..fe6f3074b6f 100644
--- a/srcpkgs/steam-fonts/template
+++ b/srcpkgs/steam-fonts/template
@@ -2,7 +2,6 @@
 pkgname=steam-fonts
 version=1.0.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="font-util"
 short_desc="Fonts to fix scrambled or missing text in steam menus"
diff --git a/srcpkgs/stellarium/template b/srcpkgs/stellarium/template
index f3d91387947..38d1518ad50 100644
--- a/srcpkgs/stellarium/template
+++ b/srcpkgs/stellarium/template
@@ -16,7 +16,6 @@ checksum=400ef964c2a1612157a4b219464ea919b4e330322a0db894835b6e11c4af5e9b
 
 stellarium-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stellarium
 	}
diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index abe5f3b563c..4c507387804 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -2,7 +2,6 @@
 pkgname=stig
 version=0.10.1a
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel"
diff --git a/srcpkgs/stk/template b/srcpkgs/stk/template
index 8df159eb8a9..30029aa02bd 100644
--- a/srcpkgs/stk/template
+++ b/srcpkgs/stk/template
@@ -66,7 +66,6 @@ post_install() {
 
 stk-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stk
 	}
diff --git a/srcpkgs/stlarch-font/template b/srcpkgs/stlarch-font/template
index 1c123b7cf0e..ab9e37e4ed1 100644
--- a/srcpkgs/stlarch-font/template
+++ b/srcpkgs/stlarch-font/template
@@ -2,7 +2,6 @@
 pkgname=stlarch-font
 version=1.5
 revision=2
-archs=noarch
 wrksrc="stlarch_font-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/stow/template b/srcpkgs/stow/template
index 4fc87c43888..e3c02065e3c 100644
--- a/srcpkgs/stow/template
+++ b/srcpkgs/stow/template
@@ -2,7 +2,6 @@
 pkgname=stow
 version=2.3.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_target="test"
 hostmakedepends="perl"
diff --git a/srcpkgs/straw-viewer/template b/srcpkgs/straw-viewer/template
index fc327f581ab..22c8507b358 100644
--- a/srcpkgs/straw-viewer/template
+++ b/srcpkgs/straw-viewer/template
@@ -2,7 +2,6 @@
 pkgname=straw-viewer
 version=0.0.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index 44de1bc6fbb..d40a2a23262 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -2,7 +2,6 @@
 pkgname=streamlink
 version=1.5.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycryptodome python3-pycountry
diff --git a/srcpkgs/strip-nondeterminism/template b/srcpkgs/strip-nondeterminism/template
index 5065be2d273..a3129bf6856 100644
--- a/srcpkgs/strip-nondeterminism/template
+++ b/srcpkgs/strip-nondeterminism/template
@@ -2,7 +2,6 @@
 pkgname=strip-nondeterminism
 version=1.6.3
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-Archive-Zip"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/supertux2/template b/srcpkgs/supertux2/template
index 4b7053c6b95..0678b74eeb4 100644
--- a/srcpkgs/supertux2/template
+++ b/srcpkgs/supertux2/template
@@ -22,7 +22,6 @@ checksum=26a9e56ea2d284148849f3239177d777dda5b675a10ab2d76ee65854c91ff598
 
 supertux2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/supertux2
 	}
diff --git a/srcpkgs/supertuxkart/template b/srcpkgs/supertuxkart/template
index 664c79b2529..89985781f68 100644
--- a/srcpkgs/supertuxkart/template
+++ b/srcpkgs/supertuxkart/template
@@ -20,7 +20,6 @@ checksum=e9b02b0b11ab68aacaec38306903feffe59a501224805cd3645cebf10e880ae8
 
 supertuxkart-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		# these script only serve a prupose for developing, not to the package
 		rm "${DESTDIR}/usr/share/supertuxkart/data/po/extract_strings_from_XML.py"
diff --git a/srcpkgs/surfraw/template b/srcpkgs/surfraw/template
index eb49d652edf..3229c598c11 100644
--- a/srcpkgs/surfraw/template
+++ b/srcpkgs/surfraw/template
@@ -8,7 +8,6 @@ build_style=gnu-configure
 short_desc="Command line interface to variety of search engines"
 maintainer="Evan Deaubl <evan@deaubl.name>"
 license="Public Domain"
-archs=noarch
 hostmakedepends="automake perl"
 depends="perl"
 homepage="https://gitlab.com/surfraw/Surfraw"
diff --git a/srcpkgs/sv-helper/template b/srcpkgs/sv-helper/template
index 183ceb72944..74d90c83601 100644
--- a/srcpkgs/sv-helper/template
+++ b/srcpkgs/sv-helper/template
@@ -2,7 +2,6 @@
 pkgname=sv-helper
 version=2.0.2
 revision=1
-archs=noarch
 depends="runit"
 short_desc="Utilities to help administer a runit-as-pid1 system"
 maintainer="bougyman <tj@rubyists.com>"
diff --git a/srcpkgs/swaks/template b/srcpkgs/swaks/template
index e9394bf0b20..3cc608976cf 100644
--- a/srcpkgs/swaks/template
+++ b/srcpkgs/swaks/template
@@ -2,7 +2,6 @@
 pkgname=swaks
 version=20190914.0
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl perl-IO-Socket-INET6 perl-Net-DNS"
 short_desc="Swiss Army Knife for SMTP"
diff --git a/srcpkgs/sway/template b/srcpkgs/sway/template
index fa8e1850c50..2cf0434b1fc 100644
--- a/srcpkgs/sway/template
+++ b/srcpkgs/sway/template
@@ -34,7 +34,6 @@ post_install() {
 grimshot_package() {
 	short_desc="Helper for screenshots within sway"
 	depends="grim slurp sway wl-clipboard jq libnotify"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/bin/grimshot
 		vmove usr/share/man/man1/grimshot.1
diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index 2f42b235c06..fea97464d88 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -2,7 +2,6 @@
 pkgname=synapse
 version=1.19.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jsonschema python3-frozendict python3-canonicaljson>=1.2.0
diff --git a/srcpkgs/syncplay/template b/srcpkgs/syncplay/template
index 83accc1983a..7c3239a484d 100644
--- a/srcpkgs/syncplay/template
+++ b/srcpkgs/syncplay/template
@@ -2,7 +2,6 @@
 pkgname=syncplay
 version=1.6.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/lib/syncplay/syncplay"
 depends="desktop-file-utils python3-pyside2 python3-Twisted
diff --git a/srcpkgs/syncthing-gtk/template b/srcpkgs/syncthing-gtk/template
index aaaa57a1c9e..f50ef18abb8 100644
--- a/srcpkgs/syncthing-gtk/template
+++ b/srcpkgs/syncthing-gtk/template
@@ -3,7 +3,6 @@ pkgname=syncthing-gtk
 reverts="0.14.36_1"
 version=0.9.4.4
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="syncthing python-dateutil libnotify librsvg python-bcrypt
diff --git a/srcpkgs/system-config-printer/template b/srcpkgs/system-config-printer/template
index c9fd88c7344..400e213b05e 100644
--- a/srcpkgs/system-config-printer/template
+++ b/srcpkgs/system-config-printer/template
@@ -20,7 +20,6 @@ distfiles="${homepage}/releases/download/${version}/system-config-printer-${vers
 checksum=ab4a4553f536487bf2be1143529749ed9926edd84bd97c2b42666a7111d60b7f
 
 python3-cupshelpers_package() {
-	archs=noarch
 	depends="python3-cups python3-dbus python3-requests"
 	short_desc="Python utility modules around the CUPS printing system"
 	pycompile_module="cupshelpers"
diff --git a/srcpkgs/t-prot/template b/srcpkgs/t-prot/template
index 96c7b10b41f..56123e4c6ba 100644
--- a/srcpkgs/t-prot/template
+++ b/srcpkgs/t-prot/template
@@ -5,7 +5,6 @@ revision=2
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD"
 depends="perl perl-Locale-gettext"
-archs=noarch
 homepage="http://www.escape.de/~tolot/mutt/"
 short_desc="TOFU protection - display filter for RFC822 messages"
 distfiles="http://www.escape.de/~tolot/mutt/t-prot/downloads/${pkgname}-${version}.tar.gz"
diff --git a/srcpkgs/t2ec/template b/srcpkgs/t2ec/template
index f90c7b2898c..5ad009c76ed 100644
--- a/srcpkgs/t2ec/template
+++ b/srcpkgs/t2ec/template
@@ -2,7 +2,6 @@
 pkgname=t2ec
 version=1.3
 revision=1
-archs=noarch
 depends="python3 acpi xbacklight alsa-utils wireless_tools wget jgmenu"
 short_desc="Scripts to display info icons and controls in Tint2 or other panels"
 maintainer="nwg-piotr <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/taisei/template b/srcpkgs/taisei/template
index e99bbc6f538..543044d052e 100644
--- a/srcpkgs/taisei/template
+++ b/srcpkgs/taisei/template
@@ -20,7 +20,6 @@ post_install() {
 
 taisei-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/taisei
 	}
diff --git a/srcpkgs/tango-icon-theme/template b/srcpkgs/tango-icon-theme/template
index 666bb9a533f..b0cc8257bc6 100644
--- a/srcpkgs/tango-icon-theme/template
+++ b/srcpkgs/tango-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=tango-icon-theme
 version=0.8.90
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="ImageMagick icon-naming-utils intltool pkg-config"
 makedepends="icon-naming-utils libmagick-devel"
diff --git a/srcpkgs/tcllib/template b/srcpkgs/tcllib/template
index a06f1295075..089c9fb4715 100644
--- a/srcpkgs/tcllib/template
+++ b/srcpkgs/tcllib/template
@@ -2,7 +2,6 @@
 pkgname=tcllib
 version=1.20
 revision=1
-archs=noarch
 wrksrc="tcllib-tcllib-${version/./-}"
 build_style=gnu-configure
 hostmakedepends="pkg-config tcl"
diff --git a/srcpkgs/tdrop/template b/srcpkgs/tdrop/template
index 9d454df944a..eccfdbef043 100644
--- a/srcpkgs/tdrop/template
+++ b/srcpkgs/tdrop/template
@@ -2,7 +2,6 @@
 pkgname=tdrop
 version=0.3.0
 revision=1
-archs=noarch
 depends="bash xdotool xprop xwininfo"
 short_desc="Turn terminal emulator or any program into dropdown window"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/tegaki-zinnia-japanese/template b/srcpkgs/tegaki-zinnia-japanese/template
index c6e9c64cef8..83766bce8d7 100644
--- a/srcpkgs/tegaki-zinnia-japanese/template
+++ b/srcpkgs/tegaki-zinnia-japanese/template
@@ -9,7 +9,6 @@ license="GPL-2"
 hostmakedepends="unzip"
 distfiles="https://github.com/tegaki/tegaki/releases/download/v0.3/${pkgname}-${version}.zip"
 checksum=07861bbb5440d74e705864721f12a5ce1c7f21a869f9c95ff21433d8994aafda
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/tegaki/models/zinnia
diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index bd60dcc57a6..1d3f6602f83 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -2,7 +2,6 @@
 pkgname=tekaim
 version=1.6.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="curl maim python3 xclip"
diff --git a/srcpkgs/telepathy-python/template b/srcpkgs/telepathy-python/template
index 41a0e0d03cb..f5e41c305e8 100644
--- a/srcpkgs/telepathy-python/template
+++ b/srcpkgs/telepathy-python/template
@@ -2,7 +2,6 @@
 pkgname=telepathy-python
 version=0.15.19
 revision=7
-archs=noarch
 build_style=gnu-configure
 pycompile_module="telepathy"
 hostmakedepends="automake python libxslt"
diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 83b1bca4edd..a7508ab0d78 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -2,7 +2,6 @@
 pkgname=telepresence
 version=0.105
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-pip python3-setuptools git"
 depends="kubectl fuse-sshfs torsocks openssh conntrack-tools iptables"
diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index d9efe27f2db..1431154fd64 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -2,7 +2,6 @@
 pkgname=termdown
 version=1.17.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-dateutil python3-click python3-pyfiglet"
diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index ba3fcfdc8d6..7867869fda7 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -2,7 +2,6 @@
 pkgname=terminal_markdown_viewer
 version=1.6.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mdv"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/terminator/template b/srcpkgs/terminator/template
index bc95ee7924b..1e0b9517f25 100644
--- a/srcpkgs/terminator/template
+++ b/srcpkgs/terminator/template
@@ -2,7 +2,6 @@
 pkgname=terminator
 version=1.91
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="terminatorlib"
 hostmakedepends="intltool python"
diff --git a/srcpkgs/terminus-font/template b/srcpkgs/terminus-font/template
index 4a296a8f0ce..8efc808c4b2 100644
--- a/srcpkgs/terminus-font/template
+++ b/srcpkgs/terminus-font/template
@@ -2,7 +2,6 @@
 pkgname=terminus-font
 version=4.48
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--x11dir=/usr/share/fonts/X11/misc
  --psfdir=/usr/share/kbd/consolefonts"
diff --git a/srcpkgs/termsyn-font/template b/srcpkgs/termsyn-font/template
index 2d6f574bda5..f59be231eb7 100644
--- a/srcpkgs/termsyn-font/template
+++ b/srcpkgs/termsyn-font/template
@@ -2,7 +2,6 @@
 pkgname=termsyn-font
 version=1.8.7
 revision=2
-archs=noarch
 wrksrc="termsyn-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/termtosvg/template b/srcpkgs/termtosvg/template
index 431d0945140..6c60000ecbe 100644
--- a/srcpkgs/termtosvg/template
+++ b/srcpkgs/termtosvg/template
@@ -2,7 +2,6 @@
 pkgname=termtosvg
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyte python3-lxml python3-wcwidth"
diff --git a/srcpkgs/tesseract-ocr/template b/srcpkgs/tesseract-ocr/template
index f0313da0ce6..8aa75de7ac9 100644
--- a/srcpkgs/tesseract-ocr/template
+++ b/srcpkgs/tesseract-ocr/template
@@ -108,7 +108,6 @@ tesseract-ocr-devel_package() {
 }
 tesseract-ocr-basic_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-all>=0"
@@ -120,7 +119,6 @@ tesseract-ocr-basic_package() {
 }
 tesseract-ocr-all_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-basic>=0"
@@ -143,7 +141,6 @@ tesseract-ocr-all_package() {
 	done
 }
 tesseract-ocr-afr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Afrikaans language data"
 	pkg_install() {
@@ -151,7 +148,6 @@ tesseract-ocr-afr_package() {
 	}
 }
 tesseract-ocr-amh_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Amharic language data"
 	pkg_install() {
@@ -159,7 +155,6 @@ tesseract-ocr-amh_package() {
 	}
 }
 tesseract-ocr-ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic language data"
 	pkg_install() {
@@ -167,7 +162,6 @@ tesseract-ocr-ara_package() {
 	}
 }
 tesseract-ocr-asm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Assamese language data"
 	pkg_install() {
@@ -175,7 +169,6 @@ tesseract-ocr-asm_package() {
 	}
 }
 tesseract-ocr-aze_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani language data"
 	pkg_install() {
@@ -183,7 +176,6 @@ tesseract-ocr-aze_package() {
 	}
 }
 tesseract-ocr-aze_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani (cyrillic) language data"
 	pkg_install() {
@@ -191,7 +183,6 @@ tesseract-ocr-aze_cyrl_package() {
 	}
 }
 tesseract-ocr-bel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Belarusian language data"
 	pkg_install() {
@@ -199,7 +190,6 @@ tesseract-ocr-bel_package() {
 	}
 }
 tesseract-ocr-ben_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali language data"
 	pkg_install() {
@@ -207,7 +197,6 @@ tesseract-ocr-ben_package() {
 	}
 }
 tesseract-ocr-bod_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan language data"
 	pkg_install() {
@@ -215,7 +204,6 @@ tesseract-ocr-bod_package() {
 	}
 }
 tesseract-ocr-bos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bosnian language data"
 	pkg_install() {
@@ -223,7 +211,6 @@ tesseract-ocr-bos_package() {
 	}
 }
 tesseract-ocr-bre_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Breton language data"
 	pkg_install() {
@@ -231,7 +218,6 @@ tesseract-ocr-bre_package() {
 	}
 }
 tesseract-ocr-bul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bulgarian language data"
 	pkg_install() {
@@ -239,7 +225,6 @@ tesseract-ocr-bul_package() {
 	}
 }
 tesseract-ocr-cat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Catalan language data"
 	pkg_install() {
@@ -247,7 +232,6 @@ tesseract-ocr-cat_package() {
 	}
 }
 tesseract-ocr-ceb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cebuano language data"
 	pkg_install() {
@@ -255,7 +239,6 @@ tesseract-ocr-ceb_package() {
 	}
 }
 tesseract-ocr-ces_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Czech language data"
 	pkg_install() {
@@ -263,7 +246,6 @@ tesseract-ocr-ces_package() {
 	}
 }
 tesseract-ocr-chi_sim_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Simplified) language data"
 	pkg_install() {
@@ -271,7 +253,6 @@ tesseract-ocr-chi_sim_package() {
 	}
 }
 tesseract-ocr-chi_tra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Traditional) language data"
 	pkg_install() {
@@ -279,7 +260,6 @@ tesseract-ocr-chi_tra_package() {
 	}
 }
 tesseract-ocr-chr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee language data"
 	pkg_install() {
@@ -287,7 +267,6 @@ tesseract-ocr-chr_package() {
 	}
 }
 tesseract-ocr-cos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Corsican language data"
 	pkg_install() {
@@ -295,7 +274,6 @@ tesseract-ocr-cos_package() {
 	}
 }
 tesseract-ocr-cym_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Welsh language data"
 	pkg_install() {
@@ -303,7 +281,6 @@ tesseract-ocr-cym_package() {
 	}
 }
 tesseract-ocr-dan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Danish language data"
 	pkg_install() {
@@ -311,7 +288,6 @@ tesseract-ocr-dan_package() {
 	}
 }
 tesseract-ocr-deu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - German language data"
 	pkg_install() {
@@ -319,7 +295,6 @@ tesseract-ocr-deu_package() {
 	}
 }
 tesseract-ocr-div_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dhivehi language data"
 	pkg_install() {
@@ -327,7 +302,6 @@ tesseract-ocr-div_package() {
 	}
 }
 tesseract-ocr-dzo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dzongkha language data"
 	pkg_install() {
@@ -335,7 +309,6 @@ tesseract-ocr-dzo_package() {
 	}
 }
 tesseract-ocr-ell_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek language data"
 	pkg_install() {
@@ -343,7 +316,6 @@ tesseract-ocr-ell_package() {
 	}
 }
 tesseract-ocr-eng_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - English language data"
 	pkg_install() {
@@ -351,7 +323,6 @@ tesseract-ocr-eng_package() {
 	}
 }
 tesseract-ocr-enm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle English (1100-1500) language data"
 	pkg_install() {
@@ -359,7 +330,6 @@ tesseract-ocr-enm_package() {
 	}
 }
 tesseract-ocr-epo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Esperanto language data"
 	pkg_install() {
@@ -367,7 +337,6 @@ tesseract-ocr-epo_package() {
 	}
 }
 tesseract-ocr-est_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Estonian language data"
 	pkg_install() {
@@ -375,7 +344,6 @@ tesseract-ocr-est_package() {
 	}
 }
 tesseract-ocr-eus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Basque language data"
 	pkg_install() {
@@ -383,7 +351,6 @@ tesseract-ocr-eus_package() {
 	}
 }
 tesseract-ocr-fao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Faroese language data"
 	pkg_install() {
@@ -391,7 +358,6 @@ tesseract-ocr-fao_package() {
 	}
 }
 tesseract-ocr-fas_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Persian language data"
 	pkg_install() {
@@ -399,7 +365,6 @@ tesseract-ocr-fas_package() {
 	}
 }
 tesseract-ocr-fil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Filipino language data"
 	pkg_install() {
@@ -407,7 +372,6 @@ tesseract-ocr-fil_package() {
 	}
 }
 tesseract-ocr-fin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Finnish language data"
 	pkg_install() {
@@ -415,7 +379,6 @@ tesseract-ocr-fin_package() {
 	}
 }
 tesseract-ocr-fra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - French language data"
 	pkg_install() {
@@ -423,7 +386,6 @@ tesseract-ocr-fra_package() {
 	}
 }
 tesseract-ocr-frk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frankish language data"
 	pkg_install() {
@@ -431,7 +393,6 @@ tesseract-ocr-frk_package() {
 	}
 }
 tesseract-ocr-frm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle French (ca. 1400-1600) language data"
 	pkg_install() {
@@ -439,7 +400,6 @@ tesseract-ocr-frm_package() {
 	}
 }
 tesseract-ocr-fry_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frisian language data"
 	pkg_install() {
@@ -447,7 +407,6 @@ tesseract-ocr-fry_package() {
 	}
 }
 tesseract-ocr-gla_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Scottish Gaelic language data"
 	pkg_install() {
@@ -455,7 +414,6 @@ tesseract-ocr-gla_package() {
 	}
 }
 tesseract-ocr-gle_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Irish language data"
 	pkg_install() {
@@ -463,7 +421,6 @@ tesseract-ocr-gle_package() {
 	}
 }
 tesseract-ocr-glg_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Galician language data"
 	pkg_install() {
@@ -471,7 +428,6 @@ tesseract-ocr-glg_package() {
 	}
 }
 tesseract-ocr-grc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ancient Greek Language data"
 	pkg_install() {
@@ -479,7 +435,6 @@ tesseract-ocr-grc_package() {
 	}
 }
 tesseract-ocr-guj_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati Language data"
 	pkg_install() {
@@ -487,7 +442,6 @@ tesseract-ocr-guj_package() {
 	}
 }
 tesseract-ocr-hat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Haitian language data"
 	pkg_install() {
@@ -495,7 +449,6 @@ tesseract-ocr-hat_package() {
 	}
 }
 tesseract-ocr-heb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew language data"
 	pkg_install() {
@@ -503,7 +456,6 @@ tesseract-ocr-heb_package() {
 	}
 }
 tesseract-ocr-hin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hindi language data"
 	pkg_install() {
@@ -511,7 +463,6 @@ tesseract-ocr-hin_package() {
 	}
 }
 tesseract-ocr-hrv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Croatian language data"
 	pkg_install() {
@@ -519,7 +470,6 @@ tesseract-ocr-hrv_package() {
 	}
 }
 tesseract-ocr-hun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hungarian language data"
 	pkg_install() {
@@ -527,7 +477,6 @@ tesseract-ocr-hun_package() {
 	}
 }
 tesseract-ocr-hye_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian language data"
 	pkg_install() {
@@ -535,7 +484,6 @@ tesseract-ocr-hye_package() {
 	}
 }
 tesseract-ocr-iku_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Inuktitut language data"
 	pkg_install() {
@@ -543,7 +491,6 @@ tesseract-ocr-iku_package() {
 	}
 }
 tesseract-ocr-ind_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Indonesian language data"
 	pkg_install() {
@@ -551,7 +498,6 @@ tesseract-ocr-ind_package() {
 	}
 }
 tesseract-ocr-isl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Icelandic language data"
 	pkg_install() {
@@ -559,7 +505,6 @@ tesseract-ocr-isl_package() {
 	}
 }
 tesseract-ocr-ita_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian language data"
 	pkg_install() {
@@ -567,7 +512,6 @@ tesseract-ocr-ita_package() {
 	}
 }
 tesseract-ocr-ita_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian (Old) language data"
 	pkg_install() {
@@ -575,7 +519,6 @@ tesseract-ocr-ita_old_package() {
 	}
 }
 tesseract-ocr-jav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Javanese language data"
 	pkg_install() {
@@ -583,7 +526,6 @@ tesseract-ocr-jav_package() {
 	}
 }
 tesseract-ocr-jpn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese language data"
 	pkg_install() {
@@ -591,7 +533,6 @@ tesseract-ocr-jpn_package() {
 	}
 }
 tesseract-ocr-kan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada language data"
 	pkg_install() {
@@ -599,7 +540,6 @@ tesseract-ocr-kan_package() {
 	}
 }
 tesseract-ocr-kat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian language data"
 	pkg_install() {
@@ -607,7 +547,6 @@ tesseract-ocr-kat_package() {
 	}
 }
 tesseract-ocr-kat_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian (old) language data"
 	pkg_install() {
@@ -615,7 +554,6 @@ tesseract-ocr-kat_old_package() {
 	}
 }
 tesseract-ocr-kaz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kazakh language data"
 	pkg_install() {
@@ -623,7 +561,6 @@ tesseract-ocr-kaz_package() {
 	}
 }
 tesseract-ocr-khm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Central Khmer language data"
 	pkg_install() {
@@ -631,7 +568,6 @@ tesseract-ocr-khm_package() {
 	}
 }
 tesseract-ocr-kir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kirghiz language data"
 	pkg_install() {
@@ -639,7 +575,6 @@ tesseract-ocr-kir_package() {
 	}
 }
 tesseract-ocr-kor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Korean language data"
 	pkg_install() {
@@ -647,7 +582,6 @@ tesseract-ocr-kor_package() {
 	}
 }
 tesseract-ocr-kur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish language data"
 	pkg_install() {
@@ -655,7 +589,6 @@ tesseract-ocr-kur_package() {
 	}
 }
 tesseract-ocr-kur_ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish (Arabic) language data"
 	pkg_install() {
@@ -663,7 +596,6 @@ tesseract-ocr-kur_ara_package() {
 	}
 }
 tesseract-ocr-lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao language data"
 	pkg_install() {
@@ -671,7 +603,6 @@ tesseract-ocr-lao_package() {
 	}
 }
 tesseract-ocr-lat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin language data"
 	pkg_install() {
@@ -679,7 +610,6 @@ tesseract-ocr-lat_package() {
 	}
 }
 tesseract-ocr-lav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latvian language data"
 	pkg_install() {
@@ -687,7 +617,6 @@ tesseract-ocr-lav_package() {
 	}
 }
 tesseract-ocr-lit_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lithuanian language data"
 	pkg_install() {
@@ -695,7 +624,6 @@ tesseract-ocr-lit_package() {
 	}
 }
 tesseract-ocr-ltz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Luxembourgish language data"
 	pkg_install() {
@@ -703,7 +631,6 @@ tesseract-ocr-ltz_package() {
 	}
 }
 tesseract-ocr-mal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam language data"
 	pkg_install() {
@@ -711,7 +638,6 @@ tesseract-ocr-mal_package() {
 	}
 }
 tesseract-ocr-mar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Marathi language data"
 	pkg_install() {
@@ -719,7 +645,6 @@ tesseract-ocr-mar_package() {
 	}
 }
 tesseract-ocr-mkd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Macedonian language data"
 	pkg_install() {
@@ -727,7 +652,6 @@ tesseract-ocr-mkd_package() {
 	}
 }
 tesseract-ocr-mlt_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maltese language data"
 	pkg_install() {
@@ -735,7 +659,6 @@ tesseract-ocr-mlt_package() {
 	}
 }
 tesseract-ocr-mon_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Mongolian language data"
 	pkg_install() {
@@ -743,7 +666,6 @@ tesseract-ocr-mon_package() {
 	}
 }
 tesseract-ocr-mri_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maori language data"
 	pkg_install() {
@@ -751,7 +673,6 @@ tesseract-ocr-mri_package() {
 	}
 }
 tesseract-ocr-msa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malay language data"
 	pkg_install() {
@@ -759,7 +680,6 @@ tesseract-ocr-msa_package() {
 	}
 }
 tesseract-ocr-mya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Burmese language data"
 	pkg_install() {
@@ -767,7 +687,6 @@ tesseract-ocr-mya_package() {
 	}
 }
 tesseract-ocr-nep_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Nepalese language data"
 	pkg_install() {
@@ -775,7 +694,6 @@ tesseract-ocr-nep_package() {
 	}
 }
 tesseract-ocr-nld_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dutch language data"
 	pkg_install() {
@@ -783,7 +701,6 @@ tesseract-ocr-nld_package() {
 	}
 }
 tesseract-ocr-nor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Norwegian language data"
 	pkg_install() {
@@ -791,7 +708,6 @@ tesseract-ocr-nor_package() {
 	}
 }
 tesseract-ocr-oci_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Occitan (post 1500) language data"
 	pkg_install() {
@@ -799,7 +715,6 @@ tesseract-ocr-oci_package() {
 	}
 }
 tesseract-ocr-ori_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya language data"
 	pkg_install() {
@@ -807,7 +722,6 @@ tesseract-ocr-ori_package() {
 	}
 }
 tesseract-ocr-pan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Panjabi language data"
 	pkg_install() {
@@ -815,7 +729,6 @@ tesseract-ocr-pan_package() {
 	}
 }
 tesseract-ocr-pol_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Polish language data"
 	pkg_install() {
@@ -823,7 +736,6 @@ tesseract-ocr-pol_package() {
 	}
 }
 tesseract-ocr-por_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Portuguese language data"
 	pkg_install() {
@@ -831,7 +743,6 @@ tesseract-ocr-por_package() {
 	}
 }
 tesseract-ocr-pus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Pushto language data"
 	pkg_install() {
@@ -839,7 +750,6 @@ tesseract-ocr-pus_package() {
 	}
 }
 tesseract-ocr-que_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Quechua language data"
 	pkg_install() {
@@ -847,7 +757,6 @@ tesseract-ocr-que_package() {
 	}
 }
 tesseract-ocr-ron_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Romanian language data"
 	pkg_install() {
@@ -855,7 +764,6 @@ tesseract-ocr-ron_package() {
 	}
 }
 tesseract-ocr-rus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Russian language data"
 	pkg_install() {
@@ -863,7 +771,6 @@ tesseract-ocr-rus_package() {
 	}
 }
 tesseract-ocr-san_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sanskrit language data"
 	pkg_install() {
@@ -871,7 +778,6 @@ tesseract-ocr-san_package() {
 	}
 }
 tesseract-ocr-sin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala language data"
 	pkg_install() {
@@ -879,7 +785,6 @@ tesseract-ocr-sin_package() {
 	}
 }
 tesseract-ocr-slk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovakian language data"
 	pkg_install() {
@@ -887,7 +792,6 @@ tesseract-ocr-slk_package() {
 	}
 }
 tesseract-ocr-slv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovenian language data"
 	pkg_install() {
@@ -895,7 +799,6 @@ tesseract-ocr-slv_package() {
 	}
 }
 tesseract-ocr-snd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sindhi language data"
 	pkg_install() {
@@ -903,7 +806,6 @@ tesseract-ocr-snd_package() {
 	}
 }
 tesseract-ocr-spa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish language data"
 	pkg_install() {
@@ -911,7 +813,6 @@ tesseract-ocr-spa_package() {
 	}
 }
 tesseract-ocr-spa_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish (Old) language data"
 	pkg_install() {
@@ -919,7 +820,6 @@ tesseract-ocr-spa_old_package() {
 	}
 }
 tesseract-ocr-sqi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Albanian language data"
 	pkg_install() {
@@ -927,7 +827,6 @@ tesseract-ocr-sqi_package() {
 	}
 }
 tesseract-ocr-srp_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian language data"
 	pkg_install() {
@@ -935,7 +834,6 @@ tesseract-ocr-srp_package() {
 	}
 }
 tesseract-ocr-srp_latn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian (Latin) language data"
 	pkg_install() {
@@ -943,7 +841,6 @@ tesseract-ocr-srp_latn_package() {
 	}
 }
 tesseract-ocr-sun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sundanese language data"
 	pkg_install() {
@@ -951,7 +848,6 @@ tesseract-ocr-sun_package() {
 	}
 }
 tesseract-ocr-swa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swahili language data"
 	pkg_install() {
@@ -959,7 +855,6 @@ tesseract-ocr-swa_package() {
 	}
 }
 tesseract-ocr-swe_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swedish language data"
 	pkg_install() {
@@ -967,7 +862,6 @@ tesseract-ocr-swe_package() {
 	}
 }
 tesseract-ocr-syr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac language data"
 	pkg_install() {
@@ -975,7 +869,6 @@ tesseract-ocr-syr_package() {
 	}
 }
 tesseract-ocr-tam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil language data"
 	pkg_install() {
@@ -983,7 +876,6 @@ tesseract-ocr-tam_package() {
 	}
 }
 tesseract-ocr-tat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tatar language data"
 	pkg_install() {
@@ -991,7 +883,6 @@ tesseract-ocr-tat_package() {
 	}
 }
 tesseract-ocr-tel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu language data"
 	pkg_install() {
@@ -999,7 +890,6 @@ tesseract-ocr-tel_package() {
 	}
 }
 tesseract-ocr-tgk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tajik language data"
 	pkg_install() {
@@ -1007,7 +897,6 @@ tesseract-ocr-tgk_package() {
 	}
 }
 tesseract-ocr-tgl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tagalog language data"
 	pkg_install() {
@@ -1015,7 +904,6 @@ tesseract-ocr-tgl_package() {
 	}
 }
 tesseract-ocr-tha_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai language data"
 	pkg_install() {
@@ -1023,7 +911,6 @@ tesseract-ocr-tha_package() {
 	}
 }
 tesseract-ocr-tir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tigrinya language data"
 	pkg_install() {
@@ -1031,7 +918,6 @@ tesseract-ocr-tir_package() {
 	}
 }
 tesseract-ocr-ton_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tonga language data"
 	pkg_install() {
@@ -1039,7 +925,6 @@ tesseract-ocr-ton_package() {
 	}
 }
 tesseract-ocr-tur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Turkish language data"
 	pkg_install() {
@@ -1047,7 +932,6 @@ tesseract-ocr-tur_package() {
 	}
 }
 tesseract-ocr-uig_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uighur language data"
 	pkg_install() {
@@ -1055,7 +939,6 @@ tesseract-ocr-uig_package() {
 	}
 }
 tesseract-ocr-ukr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ukrainian language data"
 	pkg_install() {
@@ -1063,7 +946,6 @@ tesseract-ocr-ukr_package() {
 	}
 }
 tesseract-ocr-urd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Urdu language data"
 	pkg_install() {
@@ -1071,7 +953,6 @@ tesseract-ocr-urd_package() {
 	}
 }
 tesseract-ocr-uzb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek language data"
 	pkg_install() {
@@ -1079,7 +960,6 @@ tesseract-ocr-uzb_package() {
 	}
 }
 tesseract-ocr-uzb_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek (Cyrillic) language data"
 	pkg_install() {
@@ -1087,7 +967,6 @@ tesseract-ocr-uzb_cyrl_package() {
 	}
 }
 tesseract-ocr-vie_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese language data"
 	pkg_install() {
@@ -1095,7 +974,6 @@ tesseract-ocr-vie_package() {
 	}
 }
 tesseract-ocr-yid_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yiddish language data"
 	pkg_install() {
@@ -1103,7 +981,6 @@ tesseract-ocr-yid_package() {
 	}
 }
 tesseract-ocr-yor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yoruba language data"
 	pkg_install() {
@@ -1111,7 +988,6 @@ tesseract-ocr-yor_package() {
 	}
 }
 tesseract-ocr-script-Arabic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic script data"
 	pkg_install() {
@@ -1119,7 +995,6 @@ tesseract-ocr-script-Arabic_package() {
 	}
 }
 tesseract-ocr-script-Armenian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian script data"
 	pkg_install() {
@@ -1127,7 +1002,6 @@ tesseract-ocr-script-Armenian_package() {
 	}
 }
 tesseract-ocr-script-Bengali_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali script data"
 	pkg_install() {
@@ -1135,7 +1009,6 @@ tesseract-ocr-script-Bengali_package() {
 	}
 }
 tesseract-ocr-script-Canadian_Aboriginal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Canadian Aboriginal script data"
 	pkg_install() {
@@ -1143,7 +1016,6 @@ tesseract-ocr-script-Canadian_Aboriginal_package() {
 	}
 }
 tesseract-ocr-script-Cherokee_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee script data"
 	pkg_install() {
@@ -1151,7 +1023,6 @@ tesseract-ocr-script-Cherokee_package() {
 	}
 }
 tesseract-ocr-script-Cyrillic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cyrillic script data"
 	pkg_install() {
@@ -1159,7 +1030,6 @@ tesseract-ocr-script-Cyrillic_package() {
 	}
 }
 tesseract-ocr-script-Devanagari_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Devanagari script data"
 	pkg_install() {
@@ -1167,7 +1037,6 @@ tesseract-ocr-script-Devanagari_package() {
 	}
 }
 tesseract-ocr-script-Ethiopic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ethiopic script data"
 	pkg_install() {
@@ -1175,7 +1044,6 @@ tesseract-ocr-script-Ethiopic_package() {
 	}
 }
 tesseract-ocr-script-Fraktur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Fraktur script data"
 	pkg_install() {
@@ -1183,7 +1051,6 @@ tesseract-ocr-script-Fraktur_package() {
 	}
 }
 tesseract-ocr-script-Georgian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian script data"
 	pkg_install() {
@@ -1191,7 +1058,6 @@ tesseract-ocr-script-Georgian_package() {
 	}
 }
 tesseract-ocr-script-Greek_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek script data"
 	pkg_install() {
@@ -1199,7 +1065,6 @@ tesseract-ocr-script-Greek_package() {
 	}
 }
 tesseract-ocr-script-Gujarati_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati script data"
 	pkg_install() {
@@ -1207,7 +1072,6 @@ tesseract-ocr-script-Gujarati_package() {
 	}
 }
 tesseract-ocr-script-Gurmukhi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gurmukhi script data"
 	pkg_install() {
@@ -1215,7 +1079,6 @@ tesseract-ocr-script-Gurmukhi_package() {
 	}
 }
 tesseract-ocr-script-HanS_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanS script data"
 	pkg_install() {
@@ -1223,7 +1086,6 @@ tesseract-ocr-script-HanS_package() {
 	}
 }
 tesseract-ocr-script-HanT_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanT script data"
 	pkg_install() {
@@ -1231,7 +1093,6 @@ tesseract-ocr-script-HanT_package() {
 	}
 }
 tesseract-ocr-script-Hangul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hangul script data"
 	pkg_install() {
@@ -1239,7 +1100,6 @@ tesseract-ocr-script-Hangul_package() {
 	}
 }
 tesseract-ocr-script-Hebrew_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew script data"
 	pkg_install() {
@@ -1247,7 +1107,6 @@ tesseract-ocr-script-Hebrew_package() {
 	}
 }
 tesseract-ocr-script-Japanese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese script data"
 	pkg_install() {
@@ -1255,7 +1114,6 @@ tesseract-ocr-script-Japanese_package() {
 	}
 }
 tesseract-ocr-script-Kannada_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada script data"
 	pkg_install() {
@@ -1263,7 +1121,6 @@ tesseract-ocr-script-Kannada_package() {
 	}
 }
 tesseract-ocr-script-Khmer_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Khmer script data"
 	pkg_install() {
@@ -1271,7 +1128,6 @@ tesseract-ocr-script-Khmer_package() {
 	}
 }
 tesseract-ocr-script-Lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao script data"
 	pkg_install() {
@@ -1279,7 +1135,6 @@ tesseract-ocr-script-Lao_package() {
 	}
 }
 tesseract-ocr-script-Latin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin script data"
 	pkg_install() {
@@ -1287,7 +1142,6 @@ tesseract-ocr-script-Latin_package() {
 	}
 }
 tesseract-ocr-script-Malayalam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam script data"
 	pkg_install() {
@@ -1295,7 +1149,6 @@ tesseract-ocr-script-Malayalam_package() {
 	}
 }
 tesseract-ocr-script-Myanmar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Myanmar script data"
 	pkg_install() {
@@ -1303,7 +1156,6 @@ tesseract-ocr-script-Myanmar_package() {
 	}
 }
 tesseract-ocr-script-Oriya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya script data"
 	pkg_install() {
@@ -1311,7 +1163,6 @@ tesseract-ocr-script-Oriya_package() {
 	}
 }
 tesseract-ocr-script-Sinhala_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala script data"
 	pkg_install() {
@@ -1319,7 +1170,6 @@ tesseract-ocr-script-Sinhala_package() {
 	}
 }
 tesseract-ocr-script-Syriac_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac script data"
 	pkg_install() {
@@ -1327,7 +1177,6 @@ tesseract-ocr-script-Syriac_package() {
 	}
 }
 tesseract-ocr-script-Tamil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil script data"
 	pkg_install() {
@@ -1335,7 +1184,6 @@ tesseract-ocr-script-Tamil_package() {
 	}
 }
 tesseract-ocr-script-Telugu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu script data"
 	pkg_install() {
@@ -1343,7 +1191,6 @@ tesseract-ocr-script-Telugu_package() {
 	}
 }
 tesseract-ocr-script-Thaana_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thaana script data"
 	pkg_install() {
@@ -1351,7 +1198,6 @@ tesseract-ocr-script-Thaana_package() {
 	}
 }
 tesseract-ocr-script-Thai_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai script data"
 	pkg_install() {
@@ -1359,7 +1205,6 @@ tesseract-ocr-script-Thai_package() {
 	}
 }
 tesseract-ocr-script-Tibetan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan script data"
 	pkg_install() {
@@ -1367,7 +1212,6 @@ tesseract-ocr-script-Tibetan_package() {
 	}
 }
 tesseract-ocr-script-Vietnamese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese script data"
 	pkg_install() {
diff --git a/srcpkgs/testssl.sh/template b/srcpkgs/testssl.sh/template
index 2480aa2bce2..493fac73a21 100644
--- a/srcpkgs/testssl.sh/template
+++ b/srcpkgs/testssl.sh/template
@@ -2,7 +2,6 @@
 pkgname=testssl.sh
 version=3.0.2
 revision=1
-archs=noarch
 depends="libressl bind-utils"
 short_desc="Command line tool which checks a server for the support of TLS/SSL"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/tewi-font/template b/srcpkgs/tewi-font/template
index 49e301745d3..4ce6b7c79a1 100644
--- a/srcpkgs/tewi-font/template
+++ b/srcpkgs/tewi-font/template
@@ -2,7 +2,6 @@
 pkgname=tewi-font
 version=2.0.2
 revision=2
-archs=noarch
 hostmakedepends="bdftopcf python3"
 depends="font-util xbps-triggers"
 short_desc="Programming monospace bitmap font"
diff --git a/srcpkgs/texi2html/template b/srcpkgs/texi2html/template
index 9726abd7e4d..7fb2c48e317 100644
--- a/srcpkgs/texi2html/template
+++ b/srcpkgs/texi2html/template
@@ -2,7 +2,6 @@
 pkgname=texi2html
 version=5.0
 revision=1
-archs=noarch
 build_style="gnu-configure"
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/texlive-basic/template b/srcpkgs/texlive-basic/template
index 52fbfee52a3..e04c946eb94 100644
--- a/srcpkgs/texlive-basic/template
+++ b/srcpkgs/texlive-basic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-basic
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-bibtexextra/template b/srcpkgs/texlive-bibtexextra/template
index e5954e1c364..1f159c9846c 100644
--- a/srcpkgs/texlive-bibtexextra/template
+++ b/srcpkgs/texlive-bibtexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-bibtexextra
 version=2020.55376
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional BibTeX styles and bibliography databases"
diff --git a/srcpkgs/texlive-core/template b/srcpkgs/texlive-core/template
index 694c8bcb3d0..d5d5c0fa530 100644
--- a/srcpkgs/texlive-core/template
+++ b/srcpkgs/texlive-core/template
@@ -2,7 +2,6 @@
 pkgname=texlive-core
 version=2020.55416
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - core texmf distribution"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-fontsextra/template b/srcpkgs/texlive-fontsextra/template
index a80ea7cd234..f7df53cab6f 100644
--- a/srcpkgs/texlive-fontsextra/template
+++ b/srcpkgs/texlive-fontsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-fontsextra
 version=2020.55407
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - All sorts of extra fonts"
diff --git a/srcpkgs/texlive-formatsextra/template b/srcpkgs/texlive-formatsextra/template
index 85704c43687..d38d08aa8c4 100644
--- a/srcpkgs/texlive-formatsextra/template
+++ b/srcpkgs/texlive-formatsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-formatsextra
 version=2020.54498
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Collection of extra TeX 'formats'"
diff --git a/srcpkgs/texlive-full/template b/srcpkgs/texlive-full/template
index d6e1c127e0c..249f34ffc48 100644
--- a/srcpkgs/texlive-full/template
+++ b/srcpkgs/texlive-full/template
@@ -2,7 +2,6 @@
 pkgname=texlive-full
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-most>=2020
  texlive-lang>=2020"
diff --git a/srcpkgs/texlive-games/template b/srcpkgs/texlive-games/template
index d5a8209c893..463ef3f8267 100644
--- a/srcpkgs/texlive-games/template
+++ b/srcpkgs/texlive-games/template
@@ -2,7 +2,6 @@
 pkgname=texlive-games
 version=2020.55271
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting board games"
diff --git a/srcpkgs/texlive-humanities/template b/srcpkgs/texlive-humanities/template
index e1b06eacfd4..9c08fa051d8 100644
--- a/srcpkgs/texlive-humanities/template
+++ b/srcpkgs/texlive-humanities/template
@@ -2,7 +2,6 @@
 pkgname=texlive-humanities
 version=2020.55389
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra texlive-pictures"
 short_desc="TeX Live - Packages for humanities, law, linguistics, etc"
diff --git a/srcpkgs/texlive-lang/template b/srcpkgs/texlive-lang/template
index 11469a71bf2..5a33e9cb289 100644
--- a/srcpkgs/texlive-lang/template
+++ b/srcpkgs/texlive-lang/template
@@ -2,7 +2,6 @@
 pkgname=texlive-lang
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-core>=2020.55416
  texlive-langchinese>=2020.55162
diff --git a/srcpkgs/texlive-langchinese/template b/srcpkgs/texlive-langchinese/template
index 4fa5ee940eb..81301b1aa92 100644
--- a/srcpkgs/texlive-langchinese/template
+++ b/srcpkgs/texlive-langchinese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langchinese
 version=2020.55162
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Chinese"
diff --git a/srcpkgs/texlive-langcyrillic/template b/srcpkgs/texlive-langcyrillic/template
index 80b953954c5..6e351e93600 100644
--- a/srcpkgs/texlive-langcyrillic/template
+++ b/srcpkgs/texlive-langcyrillic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langcyrillic
 version=2020.54594
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Cyrillic text"
diff --git a/srcpkgs/texlive-langextra/template b/srcpkgs/texlive-langextra/template
index ac20ff46333..2cfe79bdcb5 100644
--- a/srcpkgs/texlive-langextra/template
+++ b/srcpkgs/texlive-langextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langextra
 version=2020.55417
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra"
 short_desc="TeX Live - Packages for a bunch of extra languages"
diff --git a/srcpkgs/texlive-langgreek/template b/srcpkgs/texlive-langgreek/template
index fe279f6ea13..9c45215780f 100644
--- a/srcpkgs/texlive-langgreek/template
+++ b/srcpkgs/texlive-langgreek/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langgreek
 version=2020.54512
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Greek"
diff --git a/srcpkgs/texlive-langjapanese/template b/srcpkgs/texlive-langjapanese/template
index cd10461aea0..3beac842576 100644
--- a/srcpkgs/texlive-langjapanese/template
+++ b/srcpkgs/texlive-langjapanese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langjapanese
 version=2020.55320
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Japanese"
diff --git a/srcpkgs/texlive-langkorean/template b/srcpkgs/texlive-langkorean/template
index 281ac6c1864..cec6361c8f7 100644
--- a/srcpkgs/texlive-langkorean/template
+++ b/srcpkgs/texlive-langkorean/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langkorean
 version=2020.54519
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Korean"
diff --git a/srcpkgs/texlive-latexextra/template b/srcpkgs/texlive-latexextra/template
index 6e393f78f8d..d7b9bc0dd5c 100644
--- a/srcpkgs/texlive-latexextra/template
+++ b/srcpkgs/texlive-latexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-latexextra
 version=2020.55418
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="perl-File-Which python3-Pygments texlive-core texlive-pictures"
 short_desc="TeX Live - Collection of LaTeX addon packages"
diff --git a/srcpkgs/texlive-minimal/template b/srcpkgs/texlive-minimal/template
index c71ac097c6a..62dca76c0de 100644
--- a/srcpkgs/texlive-minimal/template
+++ b/srcpkgs/texlive-minimal/template
@@ -2,7 +2,6 @@
 pkgname=texlive-minimal
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-core>=2020.55416"
diff --git a/srcpkgs/texlive-most/template b/srcpkgs/texlive-most/template
index 408fe2f9de5..bc62b2a5667 100644
--- a/srcpkgs/texlive-most/template
+++ b/srcpkgs/texlive-most/template
@@ -2,7 +2,6 @@
 pkgname=texlive-most
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-music/template b/srcpkgs/texlive-music/template
index b8a2488a15d..b0f8c9f7546 100644
--- a/srcpkgs/texlive-music/template
+++ b/srcpkgs/texlive-music/template
@@ -2,7 +2,6 @@
 pkgname=texlive-music
 version=2020.54758
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="fontforge python3 texlive-core"
 short_desc="TeX Live - Music typesetting packages"
diff --git a/srcpkgs/texlive-pictures/template b/srcpkgs/texlive-pictures/template
index dee8054f190..24da6c2ea0a 100644
--- a/srcpkgs/texlive-pictures/template
+++ b/srcpkgs/texlive-pictures/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pictures
 version=2020.55342
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Packages for drawing graphics"
diff --git a/srcpkgs/texlive-pstricks/template b/srcpkgs/texlive-pstricks/template
index c76855241de..71103d1b1ee 100644
--- a/srcpkgs/texlive-pstricks/template
+++ b/srcpkgs/texlive-pstricks/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pstricks
 version=2020.55289
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional PSTricks packages"
diff --git a/srcpkgs/texlive-publishers/template b/srcpkgs/texlive-publishers/template
index 1e5f646ccf7..cd2e983a9ca 100644
--- a/srcpkgs/texlive-publishers/template
+++ b/srcpkgs/texlive-publishers/template
@@ -2,7 +2,6 @@
 pkgname=texlive-publishers
 version=2020.55415
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - Classes and packages for certain publishers"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-science/template b/srcpkgs/texlive-science/template
index 68f358537f7..093e2564709 100644
--- a/srcpkgs/texlive-science/template
+++ b/srcpkgs/texlive-science/template
@@ -2,7 +2,6 @@
 pkgname=texlive-science
 version=2020.55390
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting for mathematatics and science disciplines"
diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 708971811d3..5dc0263184b 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -2,7 +2,6 @@
 pkgname=thefuck
 version=3.29
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/thinkpad-scripts/template b/srcpkgs/thinkpad-scripts/template
index 855d42492fb..9d283afe28a 100644
--- a/srcpkgs/thinkpad-scripts/template
+++ b/srcpkgs/thinkpad-scripts/template
@@ -2,7 +2,6 @@
 pkgname=thinkpad-scripts
 version=4.12.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="tps"
 hostmakedepends="gettext python3-setuptools"
diff --git a/srcpkgs/tlp/template b/srcpkgs/tlp/template
index 5b2496afefe..b9ccfcb4614 100644
--- a/srcpkgs/tlp/template
+++ b/srcpkgs/tlp/template
@@ -2,7 +2,6 @@
 pkgname=tlp
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="TLP-${version}"
 depends="hdparm bash iw util-linux ethtool perl"
 short_desc="Advanced power management tool for Linux"
@@ -39,7 +38,6 @@ do_install() {
 
 tlp-rdw_package() {
 	short_desc="Control the radio device wizard"
-	archs=noarch
 	depends="tlp NetworkManager"
 	pkg_install() {
 		vmove usr/bin/tlp-rdw
diff --git a/srcpkgs/tmux-xpanes/template b/srcpkgs/tmux-xpanes/template
index b01bffc32c6..1499c4eca3a 100644
--- a/srcpkgs/tmux-xpanes/template
+++ b/srcpkgs/tmux-xpanes/template
@@ -2,7 +2,6 @@
 pkgname=tmux-xpanes
 version=4.1.2
 revision=1
-archs=noarch
 short_desc="Awesome way to create multiple tmux panes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="MIT"
diff --git a/srcpkgs/tmuxc/template b/srcpkgs/tmuxc/template
index 7eeffc8c64c..b18a9446d7f 100644
--- a/srcpkgs/tmuxc/template
+++ b/srcpkgs/tmuxc/template
@@ -2,7 +2,6 @@
 pkgname=tmuxc
 version=1.7.1
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Local and remote tmux window manager"
 maintainer="Zach Dykstra <dykstra.zachary@gmail.com>"
diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 676412b8d0b..8903b8ad3d6 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -2,7 +2,6 @@
 pkgname=todoman
 version=3.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="todoman"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index e3754e566d1..b614799e0ab 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -2,7 +2,6 @@
 pkgname=toot
 version=0.27.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-requests python3-setuptools python3-wcwidth
diff --git a/srcpkgs/tpm/template b/srcpkgs/tpm/template
index f3c68898e70..7e2ad566087 100644
--- a/srcpkgs/tpm/template
+++ b/srcpkgs/tpm/template
@@ -2,7 +2,6 @@
 pkgname=tpm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="gnupg2"
diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 32f4977ac46..967f7ffc3a6 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -2,7 +2,6 @@
 pkgname=trackma
 version=0.8.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-urwid python3-gobject"
diff --git a/srcpkgs/treeline/template b/srcpkgs/treeline/template
index f8830179127..d7ec815d9c9 100644
--- a/srcpkgs/treeline/template
+++ b/srcpkgs/treeline/template
@@ -2,7 +2,6 @@
 pkgname=treeline
 version=3.1.3
 revision=1
-archs=noarch
 wrksrc="TreeLine-${version}"
 pycompile_dirs="usr/share/treeline"
 hostmakedepends="python3"
diff --git a/srcpkgs/tremc/template b/srcpkgs/tremc/template
index 8bba9b83fd1..a47e023c000 100644
--- a/srcpkgs/tremc/template
+++ b/srcpkgs/tremc/template
@@ -2,7 +2,6 @@
 pkgname=tremc
 version=0.9.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3"
 short_desc="Console client for the BitTorrent client Transmission"
diff --git a/srcpkgs/trident-icons/template b/srcpkgs/trident-icons/template
index a446b5418f1..236c488866f 100644
--- a/srcpkgs/trident-icons/template
+++ b/srcpkgs/trident-icons/template
@@ -2,7 +2,6 @@
 pkgname=trident-icons
 version=2020.03.27
 revision=1
-archs=noarch
 short_desc="Icon themes from Project Trident"
 maintainer="Ken Moore <ken@project-trident.org>"
 license="MIT,GPL-3.0-only"
diff --git a/srcpkgs/triehash/template b/srcpkgs/triehash/template
index 0c7ea1ae50e..6de5e09ced8 100644
--- a/srcpkgs/triehash/template
+++ b/srcpkgs/triehash/template
@@ -2,7 +2,6 @@
 pkgname=triehash
 version=0.3
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Generator for order-preserving minimal perfect hash functions"
 maintainer="mobinmob <mobinmob@disroot.org>"
diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index cd18ec521b8..605e8ab747c 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -2,7 +2,6 @@
 pkgname=tryton
 version=5.4.2
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="tryton"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/ttf-bitstream-vera/template b/srcpkgs/ttf-bitstream-vera/template
index 5e97f056bd0..bcd09ea572b 100644
--- a/srcpkgs/ttf-bitstream-vera/template
+++ b/srcpkgs/ttf-bitstream-vera/template
@@ -2,7 +2,6 @@
 pkgname=ttf-bitstream-vera
 version=1.10
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="Bitstream Vera fonts"
 maintainer="human <human@neet.fi>"
diff --git a/srcpkgs/ttf-material-icons/template b/srcpkgs/ttf-material-icons/template
index 51a2409a66d..aa9610410ce 100644
--- a/srcpkgs/ttf-material-icons/template
+++ b/srcpkgs/ttf-material-icons/template
@@ -3,7 +3,6 @@ pkgname=ttf-material-icons
 version=3.0.1
 revision=2
 wrksrc=material-design-icons-${version}
-archs=noarch
 short_desc="Material Design icons by Google"
 maintainer="Michael Carlberg <c@rlberg.se>"
 license=CC
diff --git a/srcpkgs/ttf-ubuntu-font-family/template b/srcpkgs/ttf-ubuntu-font-family/template
index 75d5ac88c83..e5af168fe51 100644
--- a/srcpkgs/ttf-ubuntu-font-family/template
+++ b/srcpkgs/ttf-ubuntu-font-family/template
@@ -2,7 +2,6 @@
 pkgname=ttf-ubuntu-font-family
 version=0.83
 revision=2
-archs=noarch
 wrksrc="ubuntu-font-family-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 132d5a5cd3c..2340955960e 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -2,7 +2,6 @@
 pkgname=tuimoji
 version=1.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index 5d45f9f647c..edc2a9ca22b 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -2,7 +2,6 @@
 pkgname=tuir
 version=1.29.0
 revision=2
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 rtv_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc="Simple terminal viewer for Reddit (transitional dummy package)"
diff --git a/srcpkgs/turses/template b/srcpkgs/turses/template
index e5d2e11c97a..4fb893c86a7 100644
--- a/srcpkgs/turses/template
+++ b/srcpkgs/turses/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="https://pypi.org/project/turses/"
 distfiles="${PYPI_SITE}/t/turses/turses-${version}.tar.gz"
 checksum=46a61541d1acd1338561a198b3011081b91f118415c08b111444cdb24685b396
-archs=noarch
 
 pre_build() {
 	# The package isn't updated for a time and the dependencies have been updated
diff --git a/srcpkgs/tuxpaint-stamps/template b/srcpkgs/tuxpaint-stamps/template
index 2602dfbc666..ae5188f0d6c 100644
--- a/srcpkgs/tuxpaint-stamps/template
+++ b/srcpkgs/tuxpaint-stamps/template
@@ -2,7 +2,6 @@
 pkgname=tuxpaint-stamps
 version=2020.05.29
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_target="install-all"
 short_desc="Stamps set for tuxpaint"
diff --git a/srcpkgs/tuxpaint/template b/srcpkgs/tuxpaint/template
index 6613a1191f3..3ef250ee0e0 100644
--- a/srcpkgs/tuxpaint/template
+++ b/srcpkgs/tuxpaint/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 tuxpaint-data_package() {
-	archs=noarch
 	short_desc="${short_desc} - data and docs"
 	python_version=2
 	pkg_install() {
diff --git a/srcpkgs/tvbrowser/template b/srcpkgs/tvbrowser/template
index ebe21cc5a34..6f88a7f919b 100644
--- a/srcpkgs/tvbrowser/template
+++ b/srcpkgs/tvbrowser/template
@@ -2,7 +2,6 @@
 pkgname=tvbrowser
 version=4.2.1
 revision=1
-archs=noarch
 depends="java-runtime>=11 hicolor-icon-theme bash"
 short_desc="Ad free open source TV guide for more than 1000 channels"
 maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
diff --git a/srcpkgs/twaindsm/template b/srcpkgs/twaindsm/template
index 15292267fec..f9d5e082692 100644
--- a/srcpkgs/twaindsm/template
+++ b/srcpkgs/twaindsm/template
@@ -39,7 +39,6 @@ twaindsm-devel_package() {
 
 twaindsm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${pkgname}
 		mv ${wrksrc}/TWAIN_DSM/doc/html ${PKGDESTDIR}/usr/share/doc/${pkgname}
diff --git a/srcpkgs/twemoji/template b/srcpkgs/twemoji/template
index e0201e88a96..c6b9e888ff9 100644
--- a/srcpkgs/twemoji/template
+++ b/srcpkgs/twemoji/template
@@ -2,7 +2,6 @@
 pkgname=twemoji
 version=12.0.1
 revision=1
-archs=noarch
 wrksrc="TwitterColorEmoji-SVGinOT-Linux-${version}"
 depends="font-util"
 short_desc="Twitter emoji font set in color and b&w"
diff --git a/srcpkgs/txt2man/template b/srcpkgs/txt2man/template
index edb10e56599..c385f2411ea 100644
--- a/srcpkgs/txt2man/template
+++ b/srcpkgs/txt2man/template
@@ -2,7 +2,6 @@
 pkgname=txt2man
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc=${pkgname}-${pkgname}-${version}
 short_desc="Converts text to man page"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/tzdata/template b/srcpkgs/tzdata/template
index 74d2f335c61..2f68c5040b0 100644
--- a/srcpkgs/tzdata/template
+++ b/srcpkgs/tzdata/template
@@ -2,7 +2,6 @@
 pkgname=tzdata
 version=2020a
 revision=1
-archs=noarch
 wrksrc=tzdata
 create_wrksrc=yes
 hostmakedepends="tzutils"
diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 382a653d9d4..b5a025a8a4c 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -2,7 +2,6 @@
 pkgname=tzupdate
 version=2.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests"
diff --git a/srcpkgs/u-boot-menu/template b/srcpkgs/u-boot-menu/template
index f080279af82..d6524f0d859 100644
--- a/srcpkgs/u-boot-menu/template
+++ b/srcpkgs/u-boot-menu/template
@@ -2,7 +2,6 @@
 pkgname=u-boot-menu
 version=0.1
 revision=1
-archs=noarch
 conf_files="/etc/default/extlinux"
 short_desc="Create an u-boot menu with currently available kernels"
 maintainer="Remi Pommarel <repk@triplefau.lt>"
diff --git a/srcpkgs/uberwriter/template b/srcpkgs/uberwriter/template
index a02b4dc992e..35ab2e2acd2 100644
--- a/srcpkgs/uberwriter/template
+++ b/srcpkgs/uberwriter/template
@@ -4,7 +4,6 @@ pkgname=uberwriter
 version=12.11.02
 revision=2
 build_style=meta
-archs=noarch
 depends="apostrophe"
 short_desc="Original fork of apostrophe"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 36515e7f3f7..98a5d43d727 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -2,7 +2,6 @@
 pkgname=udiskie
 version=2.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-gobject"
 depends="gtk+3 libnotify python3-docopt python3-gobject python3-keyutils
diff --git a/srcpkgs/ufetch/template b/srcpkgs/ufetch/template
index 1303de65884..c62d05690ba 100644
--- a/srcpkgs/ufetch/template
+++ b/srcpkgs/ufetch/template
@@ -2,7 +2,6 @@
 pkgname=ufetch
 version=0.2
 revision=1
-archs=noarch
 wrksrc="ufetch-v${version}"
 depends="xbps coreutils ncurses"
 short_desc="Tiny system info for Void"
diff --git a/srcpkgs/ufoai/template b/srcpkgs/ufoai/template
index 6463d2c47c6..e98c615766f 100644
--- a/srcpkgs/ufoai/template
+++ b/srcpkgs/ufoai/template
@@ -69,7 +69,6 @@ post_install() {
 
 ufoai-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/ufoai/base/*.pk3
 		vmove usr/share/ufoai/base/i18n
diff --git a/srcpkgs/ufw-extras/template b/srcpkgs/ufw-extras/template
index 0054a0ac19e..eba36a4314d 100644
--- a/srcpkgs/ufw-extras/template
+++ b/srcpkgs/ufw-extras/template
@@ -2,7 +2,6 @@
 pkgname=ufw-extras
 version=0.5
 revision=1
-archs=noarch
 depends="ufw"
 short_desc="Extra configuration files for Uncomplicated Firewall (ufw)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index 0bf2a3a0b76..b8d8bb58c80 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -2,7 +2,6 @@
 pkgname=ufw
 version=0.36
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="ufw"
 conf_files="
diff --git a/srcpkgs/uhd/template b/srcpkgs/uhd/template
index b0484732ea9..e6d1ea9cbb1 100644
--- a/srcpkgs/uhd/template
+++ b/srcpkgs/uhd/template
@@ -39,7 +39,6 @@ uhd-devel_package() {
 
 uhd-doc_package() {
 	short_desc+=" - doc files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/unicode-emoji/template b/srcpkgs/unicode-emoji/template
index bc674e3aa54..17d2be29376 100644
--- a/srcpkgs/unicode-emoji/template
+++ b/srcpkgs/unicode-emoji/template
@@ -2,7 +2,6 @@
 pkgname=unicode-emoji
 version=12.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Unicode Emoji Data Files"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index 6e81970800d..0a320f621e8 100644
--- a/srcpkgs/unknown-horizons/template
+++ b/srcpkgs/unknown-horizons/template
@@ -2,7 +2,6 @@
 pkgname=unknown-horizons
 version=2019.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"
 depends="python3 fifengine python3-yaml"
diff --git a/srcpkgs/unoconv/template b/srcpkgs/unoconv/template
index 1a6c2c913e9..2015cb36e57 100644
--- a/srcpkgs/unoconv/template
+++ b/srcpkgs/unoconv/template
@@ -2,7 +2,6 @@
 pkgname=unoconv
 version=0.9.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="asciidoc git"
 depends="python"
diff --git a/srcpkgs/unp/template b/srcpkgs/unp/template
index ba43e043502..eb2f0624d42 100644
--- a/srcpkgs/unp/template
+++ b/srcpkgs/unp/template
@@ -2,7 +2,6 @@
 pkgname=unp
 version="2.0~pre7+nmu1"
 revision=2
-archs=noarch
 hostmakedepends="gettext"
 makedepends="perl"
 depends="perl"
diff --git a/srcpkgs/urbanterror-data/template b/srcpkgs/urbanterror-data/template
index 987dca0e366..e0e08224843 100644
--- a/srcpkgs/urbanterror-data/template
+++ b/srcpkgs/urbanterror-data/template
@@ -2,7 +2,6 @@
 pkgname=urbanterror-data
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="UrbanTerror43"
 hostmakedepends="unzip"
 short_desc="Urbanterror data files"
diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index 2bb1688dad7..c13e6dafaba 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -2,7 +2,6 @@
 pkgname=urlscan
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index ee56c05689f..dc4a775cf9b 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -2,7 +2,6 @@
 pkgname=urlwatch
 version=2.17
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urxvt-perls/template b/srcpkgs/urxvt-perls/template
index 8a62a338283..7ee582152ed 100644
--- a/srcpkgs/urxvt-perls/template
+++ b/srcpkgs/urxvt-perls/template
@@ -2,7 +2,6 @@
 pkgname=urxvt-perls
 version=2.3
 revision=1
-archs=noarch
 depends="rxvt-unicode perl"
 short_desc="Perl extensions for the rxvt-unicode terminal emulator"
 maintainer="nem <nem@posteo.net>"
diff --git a/srcpkgs/usb-modeswitch-data/template b/srcpkgs/usb-modeswitch-data/template
index b23431f54f1..51b3c653b76 100644
--- a/srcpkgs/usb-modeswitch-data/template
+++ b/srcpkgs/usb-modeswitch-data/template
@@ -2,7 +2,6 @@
 pkgname=usb-modeswitch-data
 version=20191128
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="RULESDIR=/usr/lib/udev/rules.d"
 short_desc="Mode switching tool for controlling 'multi-mode' USB devices (data files)"
diff --git a/srcpkgs/vala-panel-appmenu/template b/srcpkgs/vala-panel-appmenu/template
index 0913a270047..83f9d0ed72e 100644
--- a/srcpkgs/vala-panel-appmenu/template
+++ b/srcpkgs/vala-panel-appmenu/template
@@ -86,7 +86,6 @@ mate-panel-appmenu_package() {
 
 vala-panel-appmenu-data_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/locale
 		vmove usr/share/glib-2.0/schemas/org.valapanel.appmenu.gschema.xml
diff --git a/srcpkgs/vala/template b/srcpkgs/vala/template
index e958825f196..25da83cf23d 100644
--- a/srcpkgs/vala/template
+++ b/srcpkgs/vala/template
@@ -46,7 +46,6 @@ vala-devel_package() {
 }
 
 vala-doc_package() {
-	archs=noarch
 	depends="vala-${version}_${revision}"
 	short_desc+=" - devhelp documentation"
 	pkg_install() {
diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index 651d1c87641..20a00f3549d 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -2,7 +2,6 @@
 pkgname=variety
 version=0.8.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"
 pycompile_dirs="usr/share/variety/plugins"
diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 13b20f5d8c0..9b15a76a963 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -2,7 +2,6 @@
 pkgname=vdirsyncer
 version=0.16.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-atomicwrites python3-click python3-click-log
diff --git a/srcpkgs/vdrift/template b/srcpkgs/vdrift/template
index 290288696f6..900d01481d9 100644
--- a/srcpkgs/vdrift/template
+++ b/srcpkgs/vdrift/template
@@ -35,7 +35,6 @@ post_install() {
 
 vdrift-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/vdrift
 	}
diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 6ca85d4e766..54065817a84 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -2,7 +2,6 @@
 pkgname=vidcutter
 version=6.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/vigra/template b/srcpkgs/vigra/template
index 09ffcff4f2a..ac7a79db23e 100644
--- a/srcpkgs/vigra/template
+++ b/srcpkgs/vigra/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 vigra-doc_package() {
-	archs=noarch
 	depends="vigra>=${version}_${revision}"
 	short_desc+=" - documentation"
 	pkg_install() {
diff --git a/srcpkgs/vim-colorschemes/template b/srcpkgs/vim-colorschemes/template
index a018fc4d501..01683376b04 100644
--- a/srcpkgs/vim-colorschemes/template
+++ b/srcpkgs/vim-colorschemes/template
@@ -3,7 +3,6 @@ pkgname=vim-colorschemes
 version=20170822
 revision=1
 _commit=eab315701f4627967fd62582eefc4e37a3745786
-archs=noarch
 short_desc="Vim colorschemes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="GPL-3"
diff --git a/srcpkgs/vim-gnupg/template b/srcpkgs/vim-gnupg/template
index 9cb1d79f000..903af68738d 100644
--- a/srcpkgs/vim-gnupg/template
+++ b/srcpkgs/vim-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=vim-gnupg
 version=2.6.1
 revision=1
-archs=noarch
 depends="vim-common gnupg"
 short_desc="Plugin for transparent editing of gpg encrypted files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 4585d99624f..e0becffaea6 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -112,7 +112,6 @@ do_install() {
 vim-common_package() {
 	short_desc+=" - common files"
 	depends="xxd"
-	archs=noarch
 	alternatives="
 	 vi:ex:/usr/bin/vim
 	 vi:ex.1:/usr/share/man/man1/vim.1
diff --git a/srcpkgs/vips/template b/srcpkgs/vips/template
index 5639fbcb01f..cc50b2ac39f 100644
--- a/srcpkgs/vips/template
+++ b/srcpkgs/vips/template
@@ -69,7 +69,6 @@ libvips-devel_package() {
 }
 
 libvips-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/gtk-doc
diff --git a/srcpkgs/virt-manager/template b/srcpkgs/virt-manager/template
index db7734b6812..1920a937ab3 100644
--- a/srcpkgs/virt-manager/template
+++ b/srcpkgs/virt-manager/template
@@ -2,7 +2,6 @@
 pkgname=virt-manager
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-devel glib-devel gtk-update-icon-cache
  python3-gobject libosinfo libvirt-python3 libxml2-python3 python3-requests"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 virt-manager-tools_package() {
-	archs=noarch
 	short_desc="Programs to create and clone virtual machines"
 	depends="libosinfo python3-gobject libvirt-python3 python3-urllib3 libxml2-python3 python3-requests"
 	pycompile_dirs="/usr/share/${sourcepkg}"
diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index ebf37c59c6c..8a658600f70 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -2,7 +2,6 @@
 pkgname=virtme
 version=0.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="virtme"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/virtualbox-ose/template b/srcpkgs/virtualbox-ose/template
index f1184e6a6fc..ef5aed6c95e 100644
--- a/srcpkgs/virtualbox-ose/template
+++ b/srcpkgs/virtualbox-ose/template
@@ -121,7 +121,6 @@ virtualbox-ose-dkms_package() {
 	short_desc+=" - kernel module sources for dkms"
 	dkms_modules="virtualbox-ose ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
@@ -169,7 +168,6 @@ virtualbox-ose-guest-dkms_package() {
 	short_desc+=" - guest addition module source for dkms"
 	dkms_modules="virtualbox-ose-guest ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 55846f10531..af8e7bb15a9 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -2,7 +2,6 @@
 pkgname=virtualenvwrapper
 version=4.8.4
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"
 hostmakedepends="python3-setuptools python3-pbr"
diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index c5c3ae7c82e..9a57496edc3 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -2,7 +2,6 @@
 pkgname=visidata
 version=1.5.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="visidata"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/void-artwork/template b/srcpkgs/void-artwork/template
index ecfc2b9b5e6..dc9f08cc3cc 100644
--- a/srcpkgs/void-artwork/template
+++ b/srcpkgs/void-artwork/template
@@ -2,7 +2,6 @@
 pkgname=void-artwork
 version=20170517
 revision=2
-archs=noarch
 short_desc="Void Linux artwork"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-docs/template b/srcpkgs/void-docs/template
index 1e9845a8621..00601b87a54 100644
--- a/srcpkgs/void-docs/template
+++ b/srcpkgs/void-docs/template
@@ -2,7 +2,6 @@
 pkgname=void-docs
 version=2020.08.18
 revision=2
-archs=noarch
 hostmakedepends="mdBook fd pandoc texlive perl perl-JSON"
 short_desc="Documentation for Void Linux"
 maintainer="Érico Nogueira <ericonr@disroot.org>"
diff --git a/srcpkgs/void-release-keys/template b/srcpkgs/void-release-keys/template
index f9451a73b7b..f0c7a46f354 100644
--- a/srcpkgs/void-release-keys/template
+++ b/srcpkgs/void-release-keys/template
@@ -2,7 +2,6 @@
 pkgname=void-release-keys
 version=1
 revision=1
-archs=noarch
 short_desc="Void Linux Release Keys"
 maintainer="Void Release Engineering <releases@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-repo-nonfree/template b/srcpkgs/void-repo-nonfree/template
index 02410a5b72a..98706c49041 100644
--- a/srcpkgs/void-repo-nonfree/template
+++ b/srcpkgs/void-repo-nonfree/template
@@ -2,7 +2,6 @@
 pkgname=void-repo-nonfree
 version=9
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Void Linux drop-in file for the nonfree repository"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -34,7 +33,6 @@ do_install() {
 }
 
 void-repo-debug_package() {
-	archs=noarch
 	short_desc="${short_desc/nonfree/debug}"
 	pkg_install() {
 		vmove usr/share/xbps.d/20-repository-debug.conf
diff --git a/srcpkgs/void-updates/template b/srcpkgs/void-updates/template
index 97236f068c8..d90cbfb3ca5 100644
--- a/srcpkgs/void-updates/template
+++ b/srcpkgs/void-updates/template
@@ -2,7 +2,6 @@
 pkgname=void-updates
 version=20190330
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="git curl"
 short_desc="Void Linux package updates"
diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 3280a8ed5d0..420db91ddcb 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -2,7 +2,6 @@
 pkgname=volctl
 version=0.7.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject pulseaudio desktop-file-utils"
diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index 23731b3e01d..501df81b4fc 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -2,7 +2,6 @@
 pkgname=voltron
 version=0.1.7
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-blessed python3-Flask python3-Pygments python3-pysigset
diff --git a/srcpkgs/vpm/template b/srcpkgs/vpm/template
index a1b826c402f..daf0db65ffc 100644
--- a/srcpkgs/vpm/template
+++ b/srcpkgs/vpm/template
@@ -2,7 +2,6 @@
 pkgname=vpm
 version=1.3
 revision=1
-archs=noarch
 short_desc="XBPS package management helper for VoidLinux"
 maintainer="Armin Jenewein <github@m2m.pm>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/vpnc-scripts/template b/srcpkgs/vpnc-scripts/template
index 811bd9a3d95..dd58c857083 100644
--- a/srcpkgs/vpnc-scripts/template
+++ b/srcpkgs/vpnc-scripts/template
@@ -2,7 +2,6 @@
 pkgname=vpnc-scripts
 version=20190611
 revision=1
-archs=noarch
 short_desc="Network configuration scripts for VPNC and OpenConnect"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
diff --git a/srcpkgs/vpnd/template b/srcpkgs/vpnd/template
index fa4222ae372..9f062291564 100644
--- a/srcpkgs/vpnd/template
+++ b/srcpkgs/vpnd/template
@@ -2,7 +2,6 @@
 pkgname=vpnd
 version=0.1.3
 revision=1
-archs=noarch
 depends="bash"
 conf_files="/etc/vpnd.conf"
 short_desc="Package update notifier daemon for Void Linux"
diff --git a/srcpkgs/vsv/template b/srcpkgs/vsv/template
index 0144340eb46..230f5b52ff5 100644
--- a/srcpkgs/vsv/template
+++ b/srcpkgs/vsv/template
@@ -2,7 +2,6 @@
 pkgname=vsv
 version=1.3.4
 revision=1
-archs=noarch
 depends="bash coreutils psmisc"
 short_desc="Manage and view runit services"
 maintainer="Dave Eddy <dave@daveeddy.com>"
diff --git a/srcpkgs/warsow-data/template b/srcpkgs/warsow-data/template
index c9c80e71f84..01e9a2e71ef 100644
--- a/srcpkgs/warsow-data/template
+++ b/srcpkgs/warsow-data/template
@@ -2,7 +2,6 @@
 pkgname=warsow-data
 version=2.1
 revision=1
-archs=noarch
 wrksrc="warsow_${version/./}"
 short_desc="Free online multiplayer competitive FPS (data files)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/warzone2100/template b/srcpkgs/warzone2100/template
index cc425c6072a..7f0319dfcd8 100644
--- a/srcpkgs/warzone2100/template
+++ b/srcpkgs/warzone2100/template
@@ -19,7 +19,6 @@ checksum=ea2cd7f016118a89244ebef8ce9424f71c060bcd5895b791d3e1cec02b555b69
 nocross="fails to detect SDL2 when cross-compiling"
 
 warzone2100-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/wayland-protocols/template b/srcpkgs/wayland-protocols/template
index 353d3f3d7f7..160dae706f9 100644
--- a/srcpkgs/wayland-protocols/template
+++ b/srcpkgs/wayland-protocols/template
@@ -2,7 +2,6 @@
 pkgname=wayland-protocols
 version=1.20
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config wayland-devel automake"
 depends="libffi-devel"
diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index 5676d81988e..978b31053fb 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -2,7 +2,6 @@
 pkgname=weather
 version=2.4
 revision=1
-archs=noarch
 depends="python3"
 conf_files="/etc/weatherrc"
 short_desc="CLI utility for current (METAR) weather conditions and forecasts"
diff --git a/srcpkgs/wee-slack/template b/srcpkgs/wee-slack/template
index 95487cde249..9d083c4dc73 100644
--- a/srcpkgs/wee-slack/template
+++ b/srcpkgs/wee-slack/template
@@ -2,7 +2,6 @@
 pkgname=wee-slack
 version=2.6.0
 revision=1
-archs=noarch
 depends="weechat weechat-python python3-websocket-client"
 short_desc="WeeChat plugin for Slack.com"
 maintainer="Renato Aguiar <renato@renatoaguiar.net>"
diff --git a/srcpkgs/wesnoth/template b/srcpkgs/wesnoth/template
index 92921f571fe..39b4751be6f 100644
--- a/srcpkgs/wesnoth/template
+++ b/srcpkgs/wesnoth/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 wesnoth-data_package() {
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/wesnoth
 	}
diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index 3d086157137..33bd15c4dd9 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -2,7 +2,6 @@
 pkgname=wfuzz
 version=2.4.7
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-chardet python3-curl python3-future python3-lxml python3-parse
diff --git a/srcpkgs/wgetpaste/template b/srcpkgs/wgetpaste/template
index 94cb687eedc..56eed95485a 100644
--- a/srcpkgs/wgetpaste/template
+++ b/srcpkgs/wgetpaste/template
@@ -2,7 +2,6 @@
 pkgname=wgetpaste
 version=2.29
 revision=1
-archs=noarch
 depends="bash wget"
 short_desc="Script that automates pasting to a number of pastebin services"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/when/template b/srcpkgs/when/template
index eb7f52f0996..5da95abdee0 100644
--- a/srcpkgs/when/template
+++ b/srcpkgs/when/template
@@ -2,7 +2,6 @@
 pkgname=when
 version=1.1.39
 revision=1
-archs=noarch
 wrksrc=when_dist
 depends="perl"
 short_desc="Minimalistic personal calendar program"
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index fe0fe79d3c8..c32f08c91aa 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -2,7 +2,6 @@
 pkgname=wicd
 version=1.7.4
 revision=4
-archs=noarch
 pycompile_module="wicd"
 pycompile_dirs="usr/lib/wicd usr/share/wicd"
 hostmakedepends="python python-setuptools python-Babel"
@@ -43,7 +42,6 @@ do_install() {
 }
 
 wicd-gtk_package() {
-	archs=noarch
 	depends="wicd>=${version} pygtk python-notify shared-mime-info desktop-file-utils hicolor-icon-theme"
 	short_desc+=" - GTK UI"
 	pycompile_dirs="usr/share/wicd/gtk"
diff --git a/srcpkgs/widelands-maps/template b/srcpkgs/widelands-maps/template
index 5f856fd6089..f375a49f63d 100644
--- a/srcpkgs/widelands-maps/template
+++ b/srcpkgs/widelands-maps/template
@@ -8,7 +8,6 @@ license="GPL-2"
 homepage="http://wl.widelands.org/maps/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum=2029d8e72efedaa2f81f3b99d2d14f732964ac71bf5d563ae18321ace5ddf531
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/widelands
diff --git a/srcpkgs/widelands/template b/srcpkgs/widelands/template
index 061040d9ae4..d2c65c04fda 100644
--- a/srcpkgs/widelands/template
+++ b/srcpkgs/widelands/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 widelands-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/widelands
diff --git a/srcpkgs/wifi-firmware/template b/srcpkgs/wifi-firmware/template
index d48d21b3aec..c044014a7f0 100644
--- a/srcpkgs/wifi-firmware/template
+++ b/srcpkgs/wifi-firmware/template
@@ -2,7 +2,6 @@
 pkgname=wifi-firmware
 version=1.3
 revision=3
-archs=noarch
 build_style=meta
 depends="ipw2100-firmware ipw2200-firmware zd1211-firmware"
 short_desc="WiFi firmware meta-package"
diff --git a/srcpkgs/wifish/template b/srcpkgs/wifish/template
index 64252790947..b8c4067ddee 100644
--- a/srcpkgs/wifish/template
+++ b/srcpkgs/wifish/template
@@ -5,7 +5,6 @@ revision=1
 depends="wpa_supplicant gawk"
 short_desc="Simple wifi tool"
 maintainer="bougyman <bougyman@rubyists.com>"
-archs=noarch
 license="wtfpl"
 homepage="http://github.com/bougyman/wifish"
 distfiles="https://github.com/bougyman/wifish/archive/${version}.tar.gz"
diff --git a/srcpkgs/wine-gecko/template b/srcpkgs/wine-gecko/template
index 6216c6c8dff..fd0988a88c8 100644
--- a/srcpkgs/wine-gecko/template
+++ b/srcpkgs/wine-gecko/template
@@ -2,7 +2,6 @@
 pkgname=wine-gecko
 version=2.47.1
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mozilla Gecko Layout Engine for WINE (32bit)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine-mono/template b/srcpkgs/wine-mono/template
index 02072ab807b..e74c5ed0166 100644
--- a/srcpkgs/wine-mono/template
+++ b/srcpkgs/wine-mono/template
@@ -2,7 +2,6 @@
 pkgname=wine-mono
 version=5.1.0
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mono built for running .NET applications with WINE"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine/template b/srcpkgs/wine/template
index 7dbe6bcf9ef..3038037adcb 100644
--- a/srcpkgs/wine/template
+++ b/srcpkgs/wine/template
@@ -89,7 +89,6 @@ wine-devel_package() {
 }
 
 wine-common_package() {
-	archs="noarch"
 	short_desc+=" - common files"
 	binfmts="/usr/bin/wine --magic MZ"
 	pkg_install() {
diff --git a/srcpkgs/winetricks/template b/srcpkgs/winetricks/template
index 57358041ee6..a352cfb6092 100644
--- a/srcpkgs/winetricks/template
+++ b/srcpkgs/winetricks/template
@@ -2,7 +2,6 @@
 pkgname=winetricks
 version=20200412
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="cabextract unzip xmessage" # actually it depends on wine
 short_desc="Script to install various redistributable runtime libraries in Wine"
diff --git a/srcpkgs/wok/template b/srcpkgs/wok/template
index bd1b6278e8c..42beab7a00b 100644
--- a/srcpkgs/wok/template
+++ b/srcpkgs/wok/template
@@ -2,7 +2,6 @@
 pkgname=wok
 version=1.1.1
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="wok"
 hostmakedepends="python-devel python-setuptools"
diff --git a/srcpkgs/words-mnemonic/template b/srcpkgs/words-mnemonic/template
index 65fd6f5b177..41ac40b25e5 100644
--- a/srcpkgs/words-mnemonic/template
+++ b/srcpkgs/words-mnemonic/template
@@ -3,7 +3,6 @@ pkgname=words-mnemonic
 version=20150217
 revision=3
 build_style=fetch
-archs=noarch
 short_desc="Word list from the Mnemonic encoder project"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 # see https://github.com/singpolyma/mnemonicode/blob/master/mn_wordlist.c
diff --git a/srcpkgs/words-web2/template b/srcpkgs/words-web2/template
index 262f92db486..8865f605e81 100644
--- a/srcpkgs/words-web2/template
+++ b/srcpkgs/words-web2/template
@@ -13,7 +13,6 @@ distfiles="https://svnweb.freebsd.org/base/head/share/dict/README?revision=25790
 checksum="0bebe63be8ea1263c04c9ef40fbb1a88c242b0b53db32bd6c8d27ad5afffb183
  a80b7cac20dff2fd92e59bb58d2d581efa9b965756a8c8f03f754d3d98e92723
  9313e251fee3e56204db2b284346d61c3a80ce613d7a077c5674f15f9cb33ab3"
-archs=noarch
 
 do_install() {
 	vinstall web2 0644 /usr/share/dict
diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 4692074cd04..d63a74663f6 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -2,7 +2,6 @@
 pkgname=wpgtk
 version=6.1.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject python3-Pillow pywal libxslt"
diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 621e1c85428..8e5e71f1505 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -2,7 +2,6 @@
 pkgname=wpull
 version=2.0.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="wpull"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/wqy-microhei/template b/srcpkgs/wqy-microhei/template
index 77071b31ae5..9e517eb721a 100644
--- a/srcpkgs/wqy-microhei/template
+++ b/srcpkgs/wqy-microhei/template
@@ -2,7 +2,6 @@
 pkgname=wqy-microhei
 version=0.2.0.beta
 revision=2
-archs=noarch
 wrksrc=wqy-microhei
 depends="font-util"
 short_desc="A Sans-Serif style high quality CJK outline font"
diff --git a/srcpkgs/xapian-core/template b/srcpkgs/xapian-core/template
index 1b9cf9e8837..429bead39c0 100644
--- a/srcpkgs/xapian-core/template
+++ b/srcpkgs/xapian-core/template
@@ -31,7 +31,6 @@ xapian-core-devel_package() {
 }
 xapian-core-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/xbitmaps/template b/srcpkgs/xbitmaps/template
index 7cb547e43a1..9a0dcef9d50 100644
--- a/srcpkgs/xbitmaps/template
+++ b/srcpkgs/xbitmaps/template
@@ -2,7 +2,6 @@
 pkgname=xbitmaps
 version=1.1.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Common X11 bitmaps"
 license="MIT"
diff --git a/srcpkgs/xbps-triggers/template b/srcpkgs/xbps-triggers/template
index b28d198b1ce..a40698e1f8e 100644
--- a/srcpkgs/xbps-triggers/template
+++ b/srcpkgs/xbps-triggers/template
@@ -2,7 +2,6 @@
 pkgname=xbps-triggers
 version=0.116
 revision=1
-archs=noarch
 bootstrap=yes
 short_desc="XBPS triggers for Void Linux"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/xcb-proto/template b/srcpkgs/xcb-proto/template
index afc0d260a23..a3d18c56f59 100644
--- a/srcpkgs/xcb-proto/template
+++ b/srcpkgs/xcb-proto/template
@@ -2,7 +2,6 @@
 pkgname=xcb-proto
 version=1.14
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="libxml2"
diff --git a/srcpkgs/xcursor-themes/template b/srcpkgs/xcursor-themes/template
index 4c70ce9ef0e..2ff2cc9a9aa 100644
--- a/srcpkgs/xcursor-themes/template
+++ b/srcpkgs/xcursor-themes/template
@@ -2,7 +2,6 @@
 pkgname=xcursor-themes
 version=1.0.6
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config xcursorgen xorg-util-macros"
 makedepends="libXcursor-devel libXrender-devel"
diff --git a/srcpkgs/xcursor-vanilla-dmz/template b/srcpkgs/xcursor-vanilla-dmz/template
index 30f2bf17cd6..8c6ebd634a7 100644
--- a/srcpkgs/xcursor-vanilla-dmz/template
+++ b/srcpkgs/xcursor-vanilla-dmz/template
@@ -3,7 +3,6 @@ pkgname=xcursor-vanilla-dmz
 version=0.4.5
 revision=1
 wrksrc="dmz-cursor-theme-${version}"
-archs=noarch
 hostmakedepends="xcursorgen"
 short_desc="Vanilla DMZ cursor theme (White)"
 maintainer="Jerry Tegno <jerrytegno@gmail.com>"
diff --git a/srcpkgs/xdg-utils/template b/srcpkgs/xdg-utils/template
index 9a235ca2f69..164dbf476d4 100644
--- a/srcpkgs/xdg-utils/template
+++ b/srcpkgs/xdg-utils/template
@@ -2,7 +2,6 @@
 pkgname=xdg-utils
 version=1.1.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="xmlto lynx"
 short_desc="Tools to assist applications with various desktop integration tasks"
diff --git a/srcpkgs/xdgmenumaker/template b/srcpkgs/xdgmenumaker/template
index c9ee447c743..7a28d5f39eb 100644
--- a/srcpkgs/xdgmenumaker/template
+++ b/srcpkgs/xdgmenumaker/template
@@ -2,7 +2,6 @@
 pkgname=xdgmenumaker
 version=1.5
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-xdg python3-gobject gobject-introspection python3-Pillow"
 short_desc="Automatic menu generator for WMs, such as, fluxbox, icewm, jwm, pekwm"
diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 85b33af2222..b5c76c4af46 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -2,7 +2,6 @@
 pkgname=xdot
 version=1.1
 revision=3
-archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module
 pycompile_module="xdot"
diff --git a/srcpkgs/xed/template b/srcpkgs/xed/template
index 9754a340873..8c42a2d9d21 100644
--- a/srcpkgs/xed/template
+++ b/srcpkgs/xed/template
@@ -2,7 +2,6 @@
 pkgname=xed
 version=0.9.1
 revision=1
-archs=noarch
 depends="tk"
 short_desc="The standard text editor, for X11"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/xerces-c/template b/srcpkgs/xerces-c/template
index 100094350f7..c0353e3ee22 100644
--- a/srcpkgs/xerces-c/template
+++ b/srcpkgs/xerces-c/template
@@ -43,7 +43,6 @@ libxerces-c-devel_package() {
 
 xerces-c-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vdoc "CREDITS"
 		vcopy "${wrksrc}/doc"           "/usr/share/doc/${pkgname}"
diff --git a/srcpkgs/xfwm4-themes/template b/srcpkgs/xfwm4-themes/template
index bdfeb031906..3308a5ee525 100644
--- a/srcpkgs/xfwm4-themes/template
+++ b/srcpkgs/xfwm4-themes/template
@@ -2,7 +2,6 @@
 pkgname=xfwm4-themes
 version=4.10.0
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="Themes for the XFCE window manager"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/xkb-qwerty-fr/template b/srcpkgs/xkb-qwerty-fr/template
index 8cd62b9ecdf..5be0f9487ec 100644
--- a/srcpkgs/xkb-qwerty-fr/template
+++ b/srcpkgs/xkb-qwerty-fr/template
@@ -2,7 +2,6 @@
 pkgname=xkb-qwerty-fr
 version=0.5
 revision=1
-archs=noarch
 short_desc="French qwerty X11 keymap"
 maintainer="Franklin Delehelle <franklin.delehelle@odena.eu>"
 license="GPL-2"
diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 37fb6872079..5e6e998f14e 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -2,7 +2,6 @@
 pkgname=xkcdpass
 version=1.17.3
 revision=2
-archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module
 pycompile_module="xkcdpass"
diff --git a/srcpkgs/xkeyboard-config/template b/srcpkgs/xkeyboard-config/template
index afee6371174..0329d0d17c8 100644
--- a/srcpkgs/xkeyboard-config/template
+++ b/srcpkgs/xkeyboard-config/template
@@ -2,7 +2,6 @@
 pkgname=xkeyboard-config
 version=2.30
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-xkb-rules-symlink=xfree86,xorg --enable-compat-rules"
 hostmakedepends="pkg-config libxslt intltool python3"
diff --git a/srcpkgs/xmltoman/template b/srcpkgs/xmltoman/template
index 2f74978bea7..a1d3a628a61 100644
--- a/srcpkgs/xmltoman/template
+++ b/srcpkgs/xmltoman/template
@@ -11,4 +11,3 @@ license="GPL-3"
 homepage="https://sourceforge.net/projects/xmltoman"
 distfiles="https://github.com/Distrotech/xmltoman/archive/${version}.tar.gz"
 checksum=2ab86b74fe364a866d84c14b20cbd42a09fa85c629deeff52376bbf890854feb
-archs=noarch
diff --git a/srcpkgs/xmoto/template b/srcpkgs/xmoto/template
index ae400bdce0a..3c3bde96533 100644
--- a/srcpkgs/xmoto/template
+++ b/srcpkgs/xmoto/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 xmoto-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/xmoto
diff --git a/srcpkgs/xonotic-data-low/template b/srcpkgs/xonotic-data-low/template
index ffca0a897af..253b8c407dd 100644
--- a/srcpkgs/xonotic-data-low/template
+++ b/srcpkgs/xonotic-data-low/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data-low
 version=0.8.2
 revision=1
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="A free, fast-paced crossplatform FPS (Lower Quality data files)"
diff --git a/srcpkgs/xonotic-data/template b/srcpkgs/xonotic-data/template
index f274258d867..c604fcd5af0 100644
--- a/srcpkgs/xonotic-data/template
+++ b/srcpkgs/xonotic-data/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="Free, fast-paced crossplatform first-person shooter (data files)"
diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 28576175bb7..b1b7bf8ea8c 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -2,7 +2,6 @@
 pkgname=xonsh
 version=0.9.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 short_desc="Python-powered, cross-platform, Unix-gazing shell"
diff --git a/srcpkgs/xorg-cf-files/template b/srcpkgs/xorg-cf-files/template
index bdc733ade0a..e1b05da5fcd 100644
--- a/srcpkgs/xorg-cf-files/template
+++ b/srcpkgs/xorg-cf-files/template
@@ -2,7 +2,6 @@
 pkgname=xorg-cf-files
 version=1.0.6
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config automake xorg-util-macros font-util"
 short_desc="X.Org imake program and related utilities"
diff --git a/srcpkgs/xorg-util-macros/template b/srcpkgs/xorg-util-macros/template
index aa98fafc833..987949ce97d 100644
--- a/srcpkgs/xorg-util-macros/template
+++ b/srcpkgs/xorg-util-macros/template
@@ -3,7 +3,6 @@ pkgname=xorg-util-macros
 version=1.19.2
 revision=1
 wrksrc="${pkgname/xorg-/}-${version}"
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="X.org autotool macros"
diff --git a/srcpkgs/xtools/template b/srcpkgs/xtools/template
index d1b5e0fe4f2..82a4e91cacc 100644
--- a/srcpkgs/xtools/template
+++ b/srcpkgs/xtools/template
@@ -2,7 +2,6 @@
 pkgname=xtools
 version=0.61
 revision=1
-archs="noarch"
 build_style=gnu-makefile
 depends="bash curl findutils git make spdx-licenses-list xbps"
 short_desc="Opinionated helpers for working with XBPS"
diff --git a/srcpkgs/xtrans/template b/srcpkgs/xtrans/template
index 77dbb83a9f6..c21c51b6bbc 100644
--- a/srcpkgs/xtrans/template
+++ b/srcpkgs/xtrans/template
@@ -2,7 +2,6 @@
 pkgname=xtrans
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="Network API translation layer to insulate X"
diff --git a/srcpkgs/xye/template b/srcpkgs/xye/template
index 11094ab555b..d58f407d888 100644
--- a/srcpkgs/xye/template
+++ b/srcpkgs/xye/template
@@ -23,7 +23,6 @@ post_install() {
 
 xye-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/xye
 	}
diff --git a/srcpkgs/yadm/template b/srcpkgs/yadm/template
index 7b5ebbbc028..4db6f2e0035 100644
--- a/srcpkgs/yadm/template
+++ b/srcpkgs/yadm/template
@@ -2,7 +2,6 @@
 pkgname=yadm
 version=2.5.0
 revision=1
-archs=noarch
 depends="bash git gnupg"
 short_desc="Yet Another Dotfiles Manager"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/yaru-plus/template b/srcpkgs/yaru-plus/template
index c4cebdb389e..4a493ddf961 100644
--- a/srcpkgs/yaru-plus/template
+++ b/srcpkgs/yaru-plus/template
@@ -2,7 +2,6 @@
 pkgname=yaru-plus
 version=4.0
 revision=1
-archs=noarch
 depends="yaru"
 short_desc="Elegant Canonical's Yaru-based third-party icons theme"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
diff --git a/srcpkgs/yaru/template b/srcpkgs/yaru/template
index 6d00563b8a6..b084a1e6af5 100644
--- a/srcpkgs/yaru/template
+++ b/srcpkgs/yaru/template
@@ -2,7 +2,6 @@
 pkgname=yaru
 version=20.10.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="glib-devel sassc pkg-config"
 makedepends="gtk+3-devel libglib-devel"
diff --git a/srcpkgs/yelp-tools/template b/srcpkgs/yelp-tools/template
index 9e8a670e6b0..1403206a26a 100644
--- a/srcpkgs/yelp-tools/template
+++ b/srcpkgs/yelp-tools/template
@@ -2,7 +2,6 @@
 pkgname=yelp-tools
 version=3.32.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config itstool libxslt"
 makedepends="yelp-xsl"
diff --git a/srcpkgs/yelp-xsl/template b/srcpkgs/yelp-xsl/template
index f74a7fba67c..152f3f364ae 100644
--- a/srcpkgs/yelp-xsl/template
+++ b/srcpkgs/yelp-xsl/template
@@ -2,7 +2,6 @@
 pkgname=yelp-xsl
 version=3.36.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/you-get/template b/srcpkgs/you-get/template
index b0bf348d351..ac69df8355b 100644
--- a/srcpkgs/you-get/template
+++ b/srcpkgs/you-get/template
@@ -2,7 +2,6 @@
 pkgname=you-get
 version=0.4.1456
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pysocks python3-setuptools"
diff --git a/srcpkgs/youtube-dl/template b/srcpkgs/youtube-dl/template
index 8e35e276ee9..a274d72d5bc 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -2,7 +2,6 @@
 pkgname=youtube-dl
 version=2020.07.28
 revision=1
-archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/youtube-viewer/template b/srcpkgs/youtube-viewer/template
index c05d02ffa15..66eb9b9b46e 100644
--- a/srcpkgs/youtube-viewer/template
+++ b/srcpkgs/youtube-viewer/template
@@ -2,7 +2,6 @@
 pkgname=youtube-viewer
 version=3.7.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index c6bcf76d96f..07a4dc4dc98 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -2,7 +2,6 @@
 pkgname=yq
 version=2.10.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-yaml"
diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index bef3366f910..846f47d53f4 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -2,7 +2,6 @@
 pkgname=ytcc
 version=1.8.2
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-SQLAlchemy python3-feedparser python3-lxml python3-youtube-dl
diff --git a/srcpkgs/ytmdl/template b/srcpkgs/ytmdl/template
index 7952b5662cd..132d5d63c9a 100644
--- a/srcpkgs/ytmdl/template
+++ b/srcpkgs/ytmdl/template
@@ -2,7 +2,6 @@
 pkgname=ytmdl
 version=2020.07.26
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="ffmpeg youtube-dl python3-mutagen python3-requests python3-colorama
diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index bc9e6e418c2..3354bb9b407 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -2,7 +2,6 @@
 pkgname=yturl
 version=2.0.2
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools texinfo"
 depends="python3-setuptools python3-requests python3-six"
diff --git a/srcpkgs/yubikey-manager/template b/srcpkgs/yubikey-manager/template
index 75886e00e81..04184e8a4c6 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -2,7 +2,6 @@
 pkgname=yubikey-manager
 version=3.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="libu2f-host python3-fido2 python3-openssl python3-usb python3-pyscard
diff --git a/srcpkgs/zabbix/template b/srcpkgs/zabbix/template
index ec9f7e7b298..b923a819714 100644
--- a/srcpkgs/zabbix/template
+++ b/srcpkgs/zabbix/template
@@ -95,7 +95,6 @@ zabbix-proxy_package() {
 }
 
 zabbix-frontend-php_package() {
-	archs=noarch
 	depends="zabbix php-gd php-mysql"
 	short_desc="Zabbix Networking Monitoring PHP Frontend"
 	pkg_install() {
diff --git a/srcpkgs/zd1211-firmware/template b/srcpkgs/zd1211-firmware/template
index d53a71b7fde..4cd21ae7995 100644
--- a/srcpkgs/zd1211-firmware/template
+++ b/srcpkgs/zd1211-firmware/template
@@ -2,7 +2,6 @@
 pkgname=zd1211-firmware
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Firmware for the Zydas 1211 wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zeek/template b/srcpkgs/zeek/template
index 825e56e0fe4..644c3412f0c 100644
--- a/srcpkgs/zeek/template
+++ b/srcpkgs/zeek/template
@@ -65,7 +65,6 @@ zeek-devel_package() {
 }
 
 bro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
@@ -74,13 +73,11 @@ bro_package() {
 binpac_package() {
 	short_desc+=" - protocol parser compiler (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 }
 
 binpac-devel_package() {
 	short_desc+=" - protocol parser compiler library (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}-devel>=${version}_${revision}"
 }
diff --git a/srcpkgs/zeroinstall/template b/srcpkgs/zeroinstall/template
index 3022800b9e2..f46dfcb0362 100644
--- a/srcpkgs/zeroinstall/template
+++ b/srcpkgs/zeroinstall/template
@@ -30,7 +30,6 @@ pre_build() {
 
 zeroinstall-injector_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="zeroinstall-${version}_${revision}"
 }
diff --git a/srcpkgs/zfs-auto-snapshot/template b/srcpkgs/zfs-auto-snapshot/template
index 113dfd3c30b..0a9d0ea7aeb 100644
--- a/srcpkgs/zfs-auto-snapshot/template
+++ b/srcpkgs/zfs-auto-snapshot/template
@@ -2,7 +2,6 @@
 pkgname=zfs-auto-snapshot
 version=1.2.4
 revision=2
-archs=noarch
 wrksrc="${pkgname}-upstream-${version}"
 build_style=gnu-makefile
 short_desc="ZFS automatic snapshot service"
diff --git a/srcpkgs/zfs-prune-snapshots/template b/srcpkgs/zfs-prune-snapshots/template
index 431c2b71db7..5eaba5c26b3 100644
--- a/srcpkgs/zfs-prune-snapshots/template
+++ b/srcpkgs/zfs-prune-snapshots/template
@@ -2,7 +2,6 @@
 pkgname=zfs-prune-snapshots
 version=1.1.0
 revision=2
-archs="noarch"
 build_style=gnu-makefile
 hostmakedepends="make"
 depends="bash zfs"
diff --git a/srcpkgs/zfsbootmenu/template b/srcpkgs/zfsbootmenu/template
index 88c2543394b..68387f60c3b 100644
--- a/srcpkgs/zfsbootmenu/template
+++ b/srcpkgs/zfsbootmenu/template
@@ -2,7 +2,6 @@
 pkgname=zfsbootmenu
 version=1.4.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/zfsbootmenu/config.yaml"
 depends="dracut zfs fzf kexec-tools bash pigz mbuffer
diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 993198a9f63..def5a357e83 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -2,7 +2,6 @@
 pkgname=zim
 version=0.73.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-gobject python3-xdg gtk+3"
 depends="python3-gobject python3-xdg gtk+3 desktop-file-utils"
diff --git a/srcpkgs/zola/template b/srcpkgs/zola/template
index 23ba73020a2..0e6d2337a88 100644
--- a/srcpkgs/zola/template
+++ b/srcpkgs/zola/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 gutenberg_package() {
-	archs=noarch
 	depends="zola-${version}_${revision}"
 	short_desc="Transition package for Zola"
 	pkg_install() {
diff --git a/srcpkgs/zookeeper/template b/srcpkgs/zookeeper/template
index fc972d0ab4a..e5ab729f23e 100644
--- a/srcpkgs/zookeeper/template
+++ b/srcpkgs/zookeeper/template
@@ -2,7 +2,6 @@
 pkgname=zookeeper
 version=3.4.13
 revision=1
-archs=noarch
 depends="virtual?java-runtime"
 short_desc="Distributed hierarchical key-value store"
 maintainer="Mickael Fortunato <morsi.morsicus@gmail.com>"
diff --git a/srcpkgs/zramen/template b/srcpkgs/zramen/template
index 8245a3b7c25..1e446d7dfdb 100644
--- a/srcpkgs/zramen/template
+++ b/srcpkgs/zramen/template
@@ -2,7 +2,6 @@
 pkgname=zramen
 version=0.2.1
 revision=1
-archs=noarch
 depends="virtual?awk bash bc coreutils grep kmod util-linux"
 short_desc="Manage zram swap space"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/zsh-autosuggestions/template b/srcpkgs/zsh-autosuggestions/template
index 5e5b225037c..bccaa490981 100644
--- a/srcpkgs/zsh-autosuggestions/template
+++ b/srcpkgs/zsh-autosuggestions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-autosuggestions
 version=0.6.4
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like autosuggestions for zsh"
 maintainer="vinnyA3 <vincent.aceto@gmail.com>"
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index 2256bf9a127..8bc854c48f9 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-completions
 version=0.32.0
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Additional completions for Zsh"
 maintainer="Alexander Gehrke <void@qwertyuiop.de>"
diff --git a/srcpkgs/zsh-history-substring-search/template b/srcpkgs/zsh-history-substring-search/template
index 151f412cee2..dc84a8e5192 100644
--- a/srcpkgs/zsh-history-substring-search/template
+++ b/srcpkgs/zsh-history-substring-search/template
@@ -2,7 +2,6 @@
 pkgname=zsh-history-substring-search
 version=1.0.2
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like history search feature for zsh"
 maintainer="Young-Jin Park <youngjinpark20@gmail.com>"
diff --git a/srcpkgs/zsh-syntax-highlighting/template b/srcpkgs/zsh-syntax-highlighting/template
index 66b89fedfc8..0e8aabcdf37 100644
--- a/srcpkgs/zsh-syntax-highlighting/template
+++ b/srcpkgs/zsh-syntax-highlighting/template
@@ -2,7 +2,6 @@
 pkgname=zsh-syntax-highlighting
 version=0.7.1
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish shell like syntax highlighting for Zsh"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zynaddsubfx/template b/srcpkgs/zynaddsubfx/template
index 2361d8bd548..26b769db868 100644
--- a/srcpkgs/zynaddsubfx/template
+++ b/srcpkgs/zynaddsubfx/template
@@ -57,7 +57,6 @@ post_install() {
 }
 zynaddsubfx-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/${sourcepkg}
 	}
diff --git a/srcpkgs/zzz-user-hooks/template b/srcpkgs/zzz-user-hooks/template
index 7301509092f..8d9404e48ec 100644
--- a/srcpkgs/zzz-user-hooks/template
+++ b/srcpkgs/zzz-user-hooks/template
@@ -2,7 +2,6 @@
 pkgname=zzz-user-hooks
 version=1.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 checkdepends="shellcheck"

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR PATCH] [Updated] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (45 preceding siblings ...)
  2020-08-27  7:22 ` [PR PATCH] [Updated] " fosslinux
@ 2020-08-27  7:22 ` fosslinux
  2020-08-27  7:23 ` fosslinux
                   ` (40 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-27  7:22 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

There is an updated pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages noarch
https://github.com/void-linux/void-packages/pull/24357

[wip] common: disable creation of noarch packages.
This change disables the creation of noarch packages.

I believe that most package maintainers are of the same opinion that noarch causes far more problems than it solves. For some time on IRC there has been continued discussion about disabling it. This is what this PR attempts to achieve.

This still supports `archs=noarch` but IMO this is misleading if it dosen't actually create a package with the noarch arch. This is why I have made `archs=noarch` just mean `noarch=yes`. This is how I think all future packages should declare noarch: `noarch=yes`. I also considered `data_only=yes` or `arch_independent=yes` but I don't really like either of those.

The reason noarch even still exists is because it is a useful shorthand for `nodebug=yes`, `nostrip=yes`, etc etc.

The removed 32-bit block about noarch is useless because noarch already forces `noshlibprovides`.

NB: Right now, this is a MVP and still needs some more work.

Pinging @q66 @the-maldridge 

A patch file from https://github.com/void-linux/void-packages/pull/24357.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-noarch-24357.patch --]
[-- Type: text/x-diff, Size: 1077110 bytes --]

From 44a3b458c354af787eab3d11cf829e32f4d53fa4 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Wed, 19 Aug 2020 16:44:41 +1000
Subject: [PATCH 1/3] common: disable creation of noarch packages.

---
 common/hooks/do-pkg/00-gen-pkg.sh                    |  6 ++----
 common/hooks/post-install/06-strip-and-debug-pkgs.sh |  2 +-
 common/hooks/post-pkg/00-register-pkg.sh             |  6 ++----
 common/hooks/pre-pkg/04-generate-runtime-deps.sh     |  2 +-
 common/hooks/pre-pkg/05-prepare-32bit.sh             | 11 -----------
 common/hooks/pre-pkg/06-shlib-provides.sh            |  2 +-
 common/xbps-src/shutils/common.sh                    |  8 +-------
 common/xbps-src/shutils/pkgtarget.sh                 |  2 +-
 8 files changed, 9 insertions(+), 30 deletions(-)

diff --git a/common/hooks/do-pkg/00-gen-pkg.sh b/common/hooks/do-pkg/00-gen-pkg.sh
index b809a6dc5eb..f0b70c8eebb 100644
--- a/common/hooks/do-pkg/00-gen-pkg.sh
+++ b/common/hooks/do-pkg/00-gen-pkg.sh
@@ -104,14 +104,12 @@ hook() {
 	local arch= binpkg= repo= _pkgver= _desc= _pkgn= _pkgv= _provides= \
 		_replaces= _reverts= f= found_dbg_subpkg=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 
diff --git a/common/hooks/post-install/06-strip-and-debug-pkgs.sh b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
index 44d8a51fe93..b59dde5ab3c 100644
--- a/common/hooks/post-install/06-strip-and-debug-pkgs.sh
+++ b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
@@ -59,7 +59,7 @@ create_debug_pkg() {
 hook() {
 	local fname= x= f= _soname= STRIPCMD=
 
-	if [ -n "$nostrip" -o "${archs// /}" = "noarch" ]; then
+	if [ -n "$nostrip" ]; then
 		return 0
 	fi
 
diff --git a/common/hooks/post-pkg/00-register-pkg.sh b/common/hooks/post-pkg/00-register-pkg.sh
index 5dc28c999c9..ce641cfc850 100644
--- a/common/hooks/post-pkg/00-register-pkg.sh
+++ b/common/hooks/post-pkg/00-register-pkg.sh
@@ -13,14 +13,12 @@ registerpkg() {
 hook() {
 	local arch= binpkg= pkgdir=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 	if [ -n "$repository" ]; then
diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
index 6e45b7dd3c3..8ffd3a71d8e 100644
--- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh
+++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
@@ -56,7 +56,7 @@ hook() {
 
     mapshlibs=$XBPS_COMMONDIR/shlibs
 
-    if [ "${archs// /}" = "noarch" -o -n "$noverifyrdeps" ]; then
+    if [ -n "$noverifyrdeps" ]; then
         store_pkgdestdir_rundeps
         return 0
     fi
diff --git a/common/hooks/pre-pkg/05-prepare-32bit.sh b/common/hooks/pre-pkg/05-prepare-32bit.sh
index fd6fdf88217..f3612959cb5 100644
--- a/common/hooks/pre-pkg/05-prepare-32bit.sh
+++ b/common/hooks/pre-pkg/05-prepare-32bit.sh
@@ -20,10 +20,6 @@ hook() {
 	if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
 		return
 	fi 
-	# Ignore noarch pkgs.
-	if [ "${archs// /}" = "noarch" ]; then
-		return
-	fi
 	if [ -z "$lib32mode" ]; then
 		# Library mode, copy only relevant files to new destdir.
 		#
@@ -106,13 +102,6 @@ hook() {
 				printf "${pkgn}-32bit${pkgv} " >> ${destdir32}/rdeps
 				continue
 			fi
-			# If dependency is noarch do not change it to 32bit.
-			_arch=$($XBPS_QUERY_CMD -R --property=architecture "$f")
-			if [ "${_arch}" = "noarch" ]; then
-				echo "   RDEP: $f -> ${pkgn}${pkgv} (noarch)"
-				printf "${pkgn}${pkgv} " >> ${destdir32}/rdeps
-				continue
-			fi
 			# If dependency does not have "shlib-provides" do not
 			# change it to 32bit.
 			for x in ${subpackages}; do
diff --git a/common/hooks/pre-pkg/06-shlib-provides.sh b/common/hooks/pre-pkg/06-shlib-provides.sh
index cdc94de3bc9..fc39f6bfbe4 100644
--- a/common/hooks/pre-pkg/06-shlib-provides.sh
+++ b/common/hooks/pre-pkg/06-shlib-provides.sh
@@ -45,7 +45,7 @@ collect_sonames() {
 hook() {
 	local _destdir32=${XBPS_DESTDIR}/${pkgname}-32bit-${version}
 
-	if [ -z "$shlib_provides" -a "${archs// /}" = "noarch" -o -n "$noshlibprovides" ]; then
+	if [ -n "$noshlibprovides" ]; then
 		return 0
 	fi
 
diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh
index e8bcf577c6b..1564a174bf2 100644
--- a/common/xbps-src/shutils/common.sh
+++ b/common/xbps-src/shutils/common.sh
@@ -395,7 +395,6 @@ setup_pkg() {
         source_file ${XBPS_SRCPKGDIR}/${basepkg}/template
     fi
 
-
     # Check if required vars weren't set.
     _vars="pkgname version short_desc revision homepage license"
     for f in ${_vars}; do
@@ -457,12 +456,7 @@ setup_pkg() {
     fi
     makejobs="-j$XBPS_MAKEJOBS"
 
-    # strip whitespaces to make "  noarch  " valid too.
-    if [ "${archs// /}" = "noarch" ]; then
-        arch="noarch"
-    else
-        arch="$XBPS_TARGET_MACHINE"
-    fi
+    arch="$XBPS_TARGET_MACHINE"
     if [ -n "$XBPS_BINPKG_EXISTS" ]; then
         local _binpkgver="$($XBPS_QUERY_XCMD -R -ppkgver $pkgver 2>/dev/null)"
         if [ "$_binpkgver" = "$pkgver" ]; then
diff --git a/common/xbps-src/shutils/pkgtarget.sh b/common/xbps-src/shutils/pkgtarget.sh
index 090ec5c1a3e..fa70816fe24 100644
--- a/common/xbps-src/shutils/pkgtarget.sh
+++ b/common/xbps-src/shutils/pkgtarget.sh
@@ -3,7 +3,7 @@
 check_pkg_arch() {
     local cross="$1" _arch f match nonegation
 
-    if [ -n "$archs" -a "${archs// /}" != "noarch" ]; then
+    if [ -n "$archs" ]; then
         if [ -n "$cross" ]; then
             _arch="$XBPS_TARGET_MACHINE"
         elif [ -n "$XBPS_ARCH" ]; then

From 7101668773f6d5202863af4522a77ca8fdb78881 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Thu, 27 Aug 2020 17:17:50 +1000
Subject: [PATCH 2/3] Manual.md: remove mentions of noarch.

---
 Manual.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/Manual.md b/Manual.md
index 5502c6e26f8..af5f4019bc3 100644
--- a/Manual.md
+++ b/Manual.md
@@ -711,8 +711,7 @@ used.
 - `fetch_cmd` Executable to be used to fetch URLs in `distfiles` during the `do_fetch` phase.
 
 - `archs` Whitespace separated list of architectures that a package can be
-built for, available architectures can be found under `common/cross-profiles`
-alongside the `noarch` value for packages that do not contain any machine code.
+built for, available architectures can be found under `common/cross-profiles`.
 In general, `archs` should only be set if the upstream software explicitly targets
 certain architectures or there is a compelling reason why the software should not be
 available on some supported architectures.
@@ -725,8 +724,6 @@ Examples:
 	archs="x86_64-musl ~*-musl"
 	# Default value (all arches)
 	archs="*"
-	# Packages that do not depend on architecture-specific objects
-	archs=noarch
 	```
 
 <a id="explain_depends"></a>
@@ -914,8 +911,8 @@ can be used to pass arguments during compilation. If your package does not make
 extensions consider using the `gem` build style instead.
 
 - `gem` For packages that are installed using gems from [RubyGems](https://rubygems.org/).
-The gem command can be overridden by `gem_cmd`. `archs` is set to `noarch` unconditionally
-and `distfiles` is set by the build style if the template does not do so. If your gem
+The gem command can be overridden by `gem_cmd`. 
+`distfiles` is set by the build style if the template does not do so. If your gem
 provides extensions which must be compiled consider using the `gemspec` build style instead.
 
 - `ruby-module` For packages that are ruby modules and are installable via `ruby install.rb`.
@@ -1413,6 +1410,10 @@ destdir (`$DESTDIR`) to the `subpackage` destdir (`$PKGDESTDIR`).
 Subpackages are processed always in alphabetical order; To force a custom order,
 the `subpackages` variable can be declared with the wanted order.
 
+Please note that XBPS makes no distinction between normal packages, and data
+packages. Data packages, documentation packages and binary packages are all
+treated the same way.
+
 <a id="pkgs_development"></a>
 ### Development packages
 
@@ -1451,7 +1452,7 @@ type used to split architecture independent, big(ger) or huge amounts
 of data from a package's main and architecture dependent part. It is up
 to you to decide, if a `-data` subpackage makes sense for your package.
 This type is common for games (graphics, sound and music), part libraries (CAD)
-or card material (maps). Data subpackages are almost always `archs=noarch`.
+or card material (maps).
 The main package must then have `depends="${pkgname}-data-${version}_${revision}"`,
 possibly in addition to other, non-automatic depends.
 
@@ -1589,7 +1590,6 @@ The following variables influence how Haskell packages are built:
 Font packages are very straightforward to write, they are always set with the
 following variables:
 
-- `archs=noarch`: Font packages don't install arch specific files.
 - `depends="font-util"`: because they are required for regenerating the font
 cache during the install/removal of the package
 - `font_dirs`: which should be set to the directory where the package

From 5fc24cfee1f1ca1eb4f6ce8c100ae015433336e2 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Thu, 27 Aug 2020 17:21:36 +1000
Subject: [PATCH 3/3] srcpkgs: remove archs=noarch.

[ci skip]
---
 srcpkgs/0ad-data/template                     |   1 -
 srcpkgs/66/template                           |   1 -
 srcpkgs/7kaa/template                         |   1 -
 srcpkgs/Adapta/template                       |   1 -
 srcpkgs/Autodia/template                      |   1 -
 srcpkgs/CImg/template                         |   1 -
 srcpkgs/Cataclysm-DDA/template                |   2 -
 srcpkgs/Cendric/template                      |   1 -
 srcpkgs/ClusterSSH/template                   |   1 -
 srcpkgs/ETL/template                          |   1 -
 srcpkgs/Electron-Cash/template                |   1 -
 srcpkgs/Fonts-TLWG/template                   |   2 -
 srcpkgs/GCP-Guest-Environment/template        |   1 -
 srcpkgs/Grammalecte/template                  |   1 -
 srcpkgs/ISOEnts/template                      |   1 -
 srcpkgs/Komikku/template                      |   1 -
 srcpkgs/LanguageTool/template                 |   1 -
 srcpkgs/MoinMoin/template                     |   1 -
 srcpkgs/OpenCPN-gshhs-crude/template          |   5 -
 srcpkgs/OpenLP/template                       |   1 -
 srcpkgs/OpenRCT2/template                     |   1 -
 srcpkgs/PhotoCollage/template                 |   1 -
 srcpkgs/ProofGeneral/template                 |   1 -
 srcpkgs/PyInstaller/template                  |   1 -
 srcpkgs/Pyrex/template                        |   1 -
 srcpkgs/ReText/template                       |   1 -
 srcpkgs/SMC/template                          |   1 -
 srcpkgs/SPIRV-Headers/template                |   1 -
 srcpkgs/Solaar/template                       |   1 -
 srcpkgs/TSC/template                          |   1 -
 srcpkgs/TwitchNotifier/template               |   1 -
 srcpkgs/Uranium/template                      |   1 -
 srcpkgs/Vulkan-Headers/template               |   1 -
 srcpkgs/WiringPi/template                     |   1 -
 srcpkgs/WoeUSB/template                       |   1 -
 srcpkgs/XyGrib-maps/template                  |   1 -
 srcpkgs/abcde/template                        |   1 -
 srcpkgs/abi-compliance-checker/template       |   1 -
 srcpkgs/ack/template                          |   1 -
 srcpkgs/acpilight/template                    |   1 -
 srcpkgs/acr/template                          |   1 -
 srcpkgs/adapta-kde/template                   |   1 -
 srcpkgs/adwaita-icon-theme/template           |   1 -
 srcpkgs/adwaita-plus/template                 |   1 -
 srcpkgs/afew/template                         |   1 -
 srcpkgs/aisleriot/template                    |   1 -
 srcpkgs/alacritty/template                    |   1 -
 srcpkgs/albatross-themes/template             |   1 -
 srcpkgs/alienfx/template                      |   1 -
 srcpkgs/alot/template                         |   1 -
 srcpkgs/alsa-firmware/template                |   1 -
 srcpkgs/amiri-font/template                   |   1 -
 srcpkgs/ampache/template                      |   1 -
 srcpkgs/angrysearch/template                  |   1 -
 srcpkgs/anki/template                         |   1 -
 srcpkgs/ansi/template                         |   1 -
 srcpkgs/ansible/template                      |   1 -
 srcpkgs/antlr3-bin/template                   |   1 -
 srcpkgs/apache-ant/template                   |   2 -
 srcpkgs/apache-jmeter/template                |   1 -
 srcpkgs/apache-maven/template                 |   1 -
 srcpkgs/apache-storm/template                 |   1 -
 srcpkgs/apache-tomcat/template                |   3 -
 srcpkgs/apparmor/template                     |   1 -
 srcpkgs/apt/template                          |   1 -
 srcpkgs/arandr/template                       |   1 -
 srcpkgs/arc-theme/template                    |   1 -
 srcpkgs/archlabs-themes/template              |   1 -
 srcpkgs/argtable/template                     |   1 -
 srcpkgs/artwiz-fonts/template                 |   1 -
 srcpkgs/asciidoc/template                     |   1 -
 srcpkgs/asciinema/template                    |   1 -
 srcpkgs/asciiquarium/template                 |   1 -
 srcpkgs/aspell-ru/template                    |   1 -
 srcpkgs/astromenace/template                  |   1 -
 srcpkgs/asus-kbd-backlight/template           |   1 -
 srcpkgs/atool/template                        |   1 -
 srcpkgs/audit/template                        |   1 -
 srcpkgs/auto-auto-complete/template           |   1 -
 srcpkgs/autoconf-archive/template             |   1 -
 srcpkgs/autoconf/template                     |   1 -
 srcpkgs/autoconf213/template                  |   1 -
 srcpkgs/autojump/template                     |   1 -
 srcpkgs/automake/template                     |   1 -
 srcpkgs/autorandr/template                    |   1 -
 srcpkgs/avahi-discover/template               |   4 -
 srcpkgs/avideo/template                       |   1 -
 srcpkgs/awoken-icons/template                 |   3 -
 srcpkgs/aws-cli/template                      |   1 -
 srcpkgs/awsume/template                       |   1 -
 srcpkgs/azote/template                        |   1 -
 srcpkgs/b43-firmware-classic/template         |   1 -
 srcpkgs/b43-firmware/template                 |   1 -
 srcpkgs/bCNC/template                         |   1 -
 srcpkgs/backblaze-b2/template                 |   2 -
 srcpkgs/backintime-qt/template                |   1 -
 srcpkgs/backintime/template                   |   1 -
 srcpkgs/bandit/template                       |   1 -
 srcpkgs/bash-completion/template              |   1 -
 srcpkgs/bash-preexec/template                 |   1 -
 srcpkgs/bashmount/template                    |   1 -
 srcpkgs/bats/template                         |   1 -
 srcpkgs/bdf2psf/template                      |   1 -
 srcpkgs/beard/template                        |   1 -
 srcpkgs/beets/template                        |   1 -
 srcpkgs/betterlockscreen/template             |   1 -
 srcpkgs/biber/template                        |   1 -
 srcpkgs/binutils/template                     |   1 -
 srcpkgs/binwalk/template                      |   1 -
 srcpkgs/biosdisk/template                     |   1 -
 srcpkgs/bitfighter/template                   |   1 -
 srcpkgs/black/template                        |   1 -
 srcpkgs/blackbird-themes/template             |   1 -
 srcpkgs/blackbox/template                     |   1 -
 srcpkgs/blazeblogger/template                 |   1 -
 srcpkgs/bleachbit/template                    |   1 -
 srcpkgs/bluebird-themes/template              |   1 -
 srcpkgs/boost/template                        |   1 -
 srcpkgs/bootiso/template                      |   1 -
 srcpkgs/borgmatic/template                    |   1 -
 srcpkgs/boswars/template                      |   1 -
 srcpkgs/botan/template                        |   1 -
 srcpkgs/breeze-cursors/template               |   8 -
 srcpkgs/breeze/template                       |   1 -
 srcpkgs/brise/template                        |   1 -
 srcpkgs/broadcom-bt-firmware/template         |   1 -
 srcpkgs/bsdbuild/template                     |   1 -
 srcpkgs/btrfs-backup/template                 |   1 -
 srcpkgs/bucklespring/template                 |   1 -
 srcpkgs/buildbot-slave/template               |   1 -
 srcpkgs/buildbot/template                     |   1 -
 srcpkgs/buku/template                         |   1 -
 srcpkgs/buku_run/template                     |   1 -
 srcpkgs/bum/template                          |   1 -
 srcpkgs/bumblebee-status/template             |   1 -
 srcpkgs/burp2-server/template                 |   1 -
 srcpkgs/bwidget/template                      |   1 -
 srcpkgs/byobu/template                        |   1 -
 srcpkgs/bzrtools/template                     |   1 -
 srcpkgs/c/template                            |   1 -
 srcpkgs/ca-certificates/template              |   1 -
 srcpkgs/caffeine-ng/template                  |   1 -
 srcpkgs/calligra/template                     |   1 -
 srcpkgs/cantarell-fonts/template              |   1 -
 srcpkgs/canto-next/template                   |   1 -
 srcpkgs/carton/template                       |   1 -
 srcpkgs/castero/template                      |   1 -
 srcpkgs/catch2/template                       |   1 -
 srcpkgs/catfish/template                      |   1 -
 srcpkgs/ccsm/template                         |   1 -
 srcpkgs/cdemu-client/template                 |   1 -
 srcpkgs/cdm/template                          |   1 -
 srcpkgs/cdogs-sdl/template                    |   1 -
 srcpkgs/cegui/template                        |   2 -
 srcpkgs/cegui07/template                      |   2 -
 srcpkgs/cereal/template                       |   1 -
 srcpkgs/certbot/template                      |   1 -
 srcpkgs/chatty/template                       |   1 -
 srcpkgs/checkbashisms/template                |   1 -
 srcpkgs/checksec/template                     |   1 -
 srcpkgs/cherry-font/template                  |   1 -
 srcpkgs/cherrytree/template                   |   1 -
 srcpkgs/cinnamon-translations/template        |   1 -
 srcpkgs/ckbcomp/template                      |   1 -
 srcpkgs/cldr-emoji-annotation/template        |   1 -
 .../template                                  |   1 -
 srcpkgs/clerk/template                        |   1 -
 srcpkgs/clipmenu/template                     |   1 -
 srcpkgs/cloc/template                         |   1 -
 srcpkgs/clyrics/template                      |   1 -
 srcpkgs/cmake-vala/template                   |   1 -
 srcpkgs/cmc/template                          |   1 -
 srcpkgs/coccigrep/template                    |   1 -
 srcpkgs/coin3/template                        |   1 -
 srcpkgs/collectl/template                     |   1 -
 srcpkgs/colordiff/template                    |   1 -
 srcpkgs/compiz-bcop/template                  |   1 -
 srcpkgs/composer/template                     |   1 -
 srcpkgs/coreboot-utils/template               |   1 -
 srcpkgs/couchpotato/template                  |   1 -
 srcpkgs/coursera-dl/template                  |   1 -
 srcpkgs/cowsay-temoc/template                 |   1 -
 srcpkgs/cowsay/template                       |   1 -
 srcpkgs/cozy/template                         |   1 -
 srcpkgs/cpanminus/template                    |   1 -
 srcpkgs/cpuset/template                       |   1 -
 srcpkgs/create_ap/template                    |   1 -
 srcpkgs/criu/template                         |   1 -
 srcpkgs/ctop/template                         |   1 -
 srcpkgs/culmus/template                       |   1 -
 srcpkgs/cura-fdm-materials/template           |   1 -
 srcpkgs/cura/template                         |   1 -
 srcpkgs/curseradio/template                   |   1 -
 srcpkgs/cvs2svn/template                      |   1 -
 srcpkgs/cycle/template                        |   1 -
 srcpkgs/d-feet/template                       |   1 -
 srcpkgs/db/template                           |   1 -
 srcpkgs/ddclient/template                     |   1 -
 srcpkgs/ddgr/template                         |   1 -
 srcpkgs/deepin-gtk-theme/template             |   1 -
 srcpkgs/deepin-icon-theme/template            |   1 -
 srcpkgs/deerportal/template                   |   1 -
 srcpkgs/deheader/template                     |   1 -
 srcpkgs/dehydrated/template                   |   1 -
 srcpkgs/dejavu-fonts-ttf/template             |   1 -
 srcpkgs/deluge/template                       |   3 -
 srcpkgs/devedeng/template                     |   1 -
 srcpkgs/dex/template                          |   1 -
 srcpkgs/dhcpcd-gtk/template                   |   1 -
 srcpkgs/diffoscope/template                   |   1 -
 srcpkgs/dina-font/template                    |   1 -
 srcpkgs/ditaa/template                        |   1 -
 srcpkgs/dkimproxy/template                    |   2 -
 srcpkgs/dnssec-anchors/template               |   1 -
 srcpkgs/docbook-dsssl/template                |   1 -
 srcpkgs/docbook-xml/template                  |   1 -
 srcpkgs/docbook-xsl-ns/template               |   1 -
 srcpkgs/docbook-xsl/template                  |   1 -
 srcpkgs/docbook/template                      |   1 -
 srcpkgs/docker-compose/template               |   1 -
 srcpkgs/docx2txt/template                     |   1 -
 srcpkgs/dot-xsession/template                 |   1 -
 srcpkgs/downloader-cli/template               |   1 -
 srcpkgs/dpdk/template                         |   1 -
 srcpkgs/dracut/template                       |   1 -
 srcpkgs/dreampie/template                     |   1 -
 srcpkgs/drist/template                        |   1 -
 srcpkgs/dstat/template                        |   1 -
 srcpkgs/dtrx/template                         |   1 -
 srcpkgs/duiadns/template                      |   1 -
 srcpkgs/durden/template                       |   1 -
 srcpkgs/easyrsa/template                      |   1 -
 srcpkgs/econnman/template                     |   1 -
 srcpkgs/edx-dl/template                       |   1 -
 srcpkgs/eigen/template                        |   1 -
 srcpkgs/eigen2/template                       |   1 -
 srcpkgs/eigen3.2/template                     |   1 -
 srcpkgs/ekushey-fonts-ttf/template            |   1 -
 srcpkgs/electrum-ltc/template                 |   1 -
 srcpkgs/electrum/template                     |   1 -
 srcpkgs/emacs-ess/template                    |   1 -
 srcpkgs/emacs/template                        |   1 -
 srcpkgs/emerald-themes/template               |   1 -
 srcpkgs/encodings/template                    |   1 -
 srcpkgs/endless-sky-gl21/template             |   1 -
 srcpkgs/endless-sky/template                  |   1 -
 srcpkgs/enigma/template                       |   2 -
 srcpkgs/envypn-font/template                  |   1 -
 srcpkgs/erlang/template                       |   1 -
 srcpkgs/escrotum/template                     |   1 -
 srcpkgs/eselect/template                      |   1 -
 srcpkgs/etcetera/template                     |   1 -
 srcpkgs/etckeeper/template                    |   1 -
 srcpkgs/etesync-dav/template                  |   1 -
 srcpkgs/etr/template                          |   1 -
 srcpkgs/execline/template                     |   1 -
 srcpkgs/exiftool/template                     |   1 -
 srcpkgs/extra-cmake-modules/template          |   1 -
 srcpkgs/eyeD3/template                        |   1 -
 srcpkgs/faba-icon-theme/template              |   1 -
 srcpkgs/faenza-icon-theme/template            |   1 -
 srcpkgs/faience-icon-theme/template           |   1 -
 srcpkgs/fail2ban/template                     |   1 -
 srcpkgs/fake-hwclock/template                 |   1 -
 srcpkgs/fava/template                         |   1 -
 srcpkgs/fbmenugen/template                    |   1 -
 srcpkgs/ferm/template                         |   1 -
 srcpkgs/fff/template                          |   1 -
 srcpkgs/ffscreencast/template                 |   1 -
 srcpkgs/fgit/template                         |   1 -
 srcpkgs/fierce/template                       |   1 -
 srcpkgs/figlet-fonts/template                 |   1 -
 srcpkgs/fillets-ng/template                   |   1 -
 srcpkgs/flake8/template                       |   2 -
 srcpkgs/flare-engine/template                 |   1 -
 srcpkgs/flare-game/template                   |   1 -
 srcpkgs/flickcurl/template                    |   1 -
 srcpkgs/flightgear/template                   |   1 -
 srcpkgs/flinks/template                       |   1 -
 srcpkgs/flowblade/template                    |   1 -
 srcpkgs/foliate/template                      |   1 -
 srcpkgs/font-3270/template                    |   1 -
 srcpkgs/font-FixedMisc/template               |   1 -
 srcpkgs/font-Hasklig/template                 |   1 -
 srcpkgs/font-Siji/template                    |   1 -
 srcpkgs/font-adobe-100dpi/template            |   1 -
 srcpkgs/font-adobe-75dpi/template             |   1 -
 srcpkgs/font-adobe-source-code-pro/template   |   2 -
 srcpkgs/font-adobe-utopia-100dpi/template     |   1 -
 srcpkgs/font-adobe-utopia-75dpi/template      |   1 -
 srcpkgs/font-adobe-utopia-type1/template      |   1 -
 srcpkgs/font-alias/template                   |   1 -
 srcpkgs/font-awesome/template                 |   1 -
 srcpkgs/font-awesome5/template                |   1 -
 srcpkgs/font-b612/template                    |   1 -
 srcpkgs/font-bh-100dpi/template               |   1 -
 srcpkgs/font-bh-75dpi/template                |   1 -
 .../font-bh-lucidatypewriter-100dpi/template  |   1 -
 .../font-bh-lucidatypewriter-75dpi/template   |   1 -
 srcpkgs/font-bh-ttf/template                  |   1 -
 srcpkgs/font-bh-type1/template                |   1 -
 srcpkgs/font-bitstream-100dpi/template        |   1 -
 srcpkgs/font-bitstream-75dpi/template         |   1 -
 srcpkgs/font-bitstream-speedo/template        |   1 -
 srcpkgs/font-bitstream-type1/template         |   1 -
 srcpkgs/font-cozette/template                 |   1 -
 srcpkgs/font-cursor-misc/template             |   1 -
 srcpkgs/font-daewoo-misc/template             |   1 -
 srcpkgs/font-dec-misc/template                |   1 -
 srcpkgs/font-fantasque-sans-ttf/template      |   1 -
 srcpkgs/font-fira-otf/template                |   2 -
 srcpkgs/font-firacode/template                |   1 -
 srcpkgs/font-fontin/template                  |   1 -
 srcpkgs/font-hack-ttf/template                |   1 -
 srcpkgs/font-hanazono/template                |   1 -
 srcpkgs/font-hermit-otf/template              |   1 -
 srcpkgs/font-ibm-plex-ttf/template            |   1 -
 srcpkgs/font-ibm-type1/template               |   1 -
 srcpkgs/font-inconsolata-otf/template         |   1 -
 srcpkgs/font-ionicons-ttf/template            |   1 -
 srcpkgs/font-iosevka/template                 |   1 -
 srcpkgs/font-isas-misc/template               |   1 -
 srcpkgs/font-jis-misc/template                |   1 -
 srcpkgs/font-kakwafont/template               |   1 -
 srcpkgs/font-libertine-ttf/template           |   2 -
 srcpkgs/font-manjari/template                 |   1 -
 .../font-material-design-icons-ttf/template   |   1 -
 srcpkgs/font-micro-misc/template              |   1 -
 srcpkgs/font-misc-misc/template               |   1 -
 srcpkgs/font-mplus-ttf/template               |   1 -
 srcpkgs/font-mutt-misc/template               |   1 -
 srcpkgs/font-open-dyslexic-ttf/template       |   1 -
 srcpkgs/font-sarasa-gothic/template           |   1 -
 srcpkgs/font-schumacher-misc/template         |   1 -
 srcpkgs/font-sil-abyssinica/template          |   1 -
 srcpkgs/font-sil-alkalami/template            |   1 -
 srcpkgs/font-sil-andika/template              |   1 -
 srcpkgs/font-sil-annapurna/template           |   1 -
 srcpkgs/font-sil-awami-nastaliq/template      |   1 -
 srcpkgs/font-sil-charis/template              |   1 -
 srcpkgs/font-sil-doulos/template              |   1 -
 srcpkgs/font-sil-ezra/template                |   1 -
 srcpkgs/font-sil-galatia/template             |   1 -
 srcpkgs/font-sil-gentium/template             |   1 -
 srcpkgs/font-sil-harmattan/template           |   1 -
 srcpkgs/font-sil-lateef/template              |   1 -
 srcpkgs/font-sil-mingzat/template             |   1 -
 srcpkgs/font-sil-mondulkiri/template          |   1 -
 srcpkgs/font-sil-namdhinggo/template          |   1 -
 srcpkgs/font-sil-nuosu/template               |   1 -
 srcpkgs/font-sil-padauk/template              |   1 -
 srcpkgs/font-sil-scheherazade/template        |   1 -
 srcpkgs/font-sil-sophia-nubian/template       |   1 -
 srcpkgs/font-sil-tai-heritage-pro/template    |   1 -
 srcpkgs/font-sony-misc/template               |   1 -
 srcpkgs/font-spleen/template                  |   1 -
 srcpkgs/font-sun-misc/template                |   1 -
 srcpkgs/font-symbola/template                 |   1 -
 srcpkgs/font-tamsyn/template                  |   1 -
 srcpkgs/font-tamzen/template                  |   1 -
 srcpkgs/font-unifont-bdf/template             |   1 -
 srcpkgs/font-vazir/template                   |   1 -
 srcpkgs/font-vollkorn-ttf/template            |   1 -
 srcpkgs/font-weather-icons/template           |   1 -
 srcpkgs/fontconfig/template                   |   1 -
 srcpkgs/fonts-croscore-ttf/template           |   1 -
 srcpkgs/fonts-droid-ttf/template              |   1 -
 srcpkgs/fonts-nanum-ttf/template              |   1 -
 srcpkgs/fonts-roboto-ttf/template             |   1 -
 srcpkgs/fonttools/template                    |   1 -
 srcpkgs/foomatic-db-nonfree/template          |   1 -
 srcpkgs/foomatic-db/template                  |   1 -
 srcpkgs/foot/template                         |   1 -
 srcpkgs/fortune-mod-anarchism/template        |   1 -
 srcpkgs/fortune-mod-de/template               |   1 -
 srcpkgs/fortune-mod-void/template             |   1 -
 srcpkgs/freedroidRPG/template                 |   1 -
 srcpkgs/freefont-ttf/template                 |   1 -
 srcpkgs/freeorion/template                    |   1 -
 srcpkgs/freepats/template                     |   1 -
 srcpkgs/freeplane/template                    |   1 -
 srcpkgs/freerouting/template                  |   1 -
 srcpkgs/freetds/template                      |   1 -
 srcpkgs/fsharp/template                       |   1 -
 srcpkgs/gajim/template                        |   1 -
 srcpkgs/gallery-dl/template                   |   1 -
 srcpkgs/gandi-cli/template                    |   1 -
 srcpkgs/gccmakedep/template                   |   1 -
 srcpkgs/gcdemu/template                       |   1 -
 srcpkgs/gconfmm/template                      |   1 -
 srcpkgs/gcovr/template                        |   1 -
 srcpkgs/gdash/template                        |   1 -
 srcpkgs/gdown/template                        |   1 -
 srcpkgs/geda/template                         |   2 -
 srcpkgs/gef/template                          |   1 -
 srcpkgs/geoip-data/template                   |   1 -
 srcpkgs/gespeaker/template                    |   1 -
 srcpkgs/geteltorito/template                  |   1 -
 srcpkgs/getmail/template                      |   1 -
 srcpkgs/gettext/template                      |   1 -
 srcpkgs/ghc/template                          |   1 -
 srcpkgs/ghi/template                          |   1 -
 srcpkgs/giac/template                         |   1 -
 srcpkgs/gimme/template                        |   1 -
 srcpkgs/gist/template                         |   1 -
 srcpkgs/git-cal/template                      |   1 -
 srcpkgs/git-cola/template                     |   1 -
 srcpkgs/git-extras/template                   |   1 -
 srcpkgs/git-filter-repo/template              |   1 -
 srcpkgs/git-review/template                   |   1 -
 srcpkgs/git-revise/template                   |   1 -
 srcpkgs/git-secret/template                   |   1 -
 srcpkgs/git-toolbelt/template                 |   1 -
 srcpkgs/git/template                          |   5 -
 srcpkgs/gitflow/template                      |   1 -
 srcpkgs/gitolite/template                     |   1 -
 srcpkgs/glances/template                      |   1 -
 srcpkgs/glibc/template                        |   1 -
 srcpkgs/glibmm/template                       |   1 -
 srcpkgs/glm/template                          |   1 -
 srcpkgs/glog/template                         |   1 -
 srcpkgs/gmsh/template                         |   1 -
 srcpkgs/gmsl/template                         |   1 -
 srcpkgs/gmusicbrowser/template                |   1 -
 srcpkgs/gnome-backgrounds/template            |   1 -
 srcpkgs/gnome-colors-icon-theme/template      |   1 -
 srcpkgs/gnome-common/template                 |   1 -
 srcpkgs/gnome-doc-utils/template              |   1 -
 srcpkgs/gnome-getting-started-docs/template   |   1 -
 srcpkgs/gnome-icon-theme-extras/template      |   1 -
 srcpkgs/gnome-icon-theme-symbolic/template    |   1 -
 srcpkgs/gnome-icon-theme-xfce/template        |   1 -
 srcpkgs/gnome-icon-theme/template             |   1 -
 srcpkgs/gnome-js-common/template              |   1 -
 srcpkgs/gnome-mime-data/template              |   1 -
 srcpkgs/gnome-passwordsafe/template           |   1 -
 srcpkgs/gnome-shell-extensions/template       |   1 -
 srcpkgs/gnome-themes-extra/template           |   1 -
 srcpkgs/gnome-tweaks/template                 |   2 -
 srcpkgs/gnome-user-docs/template              |   1 -
 srcpkgs/gnome-video-effects/template          |   1 -
 srcpkgs/gns3-gui/template                     |   1 -
 srcpkgs/gns3-net-converter/template           |   1 -
 srcpkgs/gnupod/template                       |   1 -
 srcpkgs/gnuradio/template                     |   1 -
 srcpkgs/gnustep-gui/template                  |   1 -
 srcpkgs/gohufont/template                     |   1 -
 srcpkgs/google-cloud-sdk/template             |   1 -
 srcpkgs/google-fonts-ttf/template             |   1 -
 srcpkgs/gpodder/template                      |   1 -
 srcpkgs/gradle/template                       |   1 -
 srcpkgs/gramps/template                       |   1 -
 srcpkgs/grc/template                          |   1 -
 srcpkgs/greg/template                         |   1 -
 srcpkgs/greybird-themes/template              |   1 -
 srcpkgs/grip/template                         |   1 -
 srcpkgs/grml-zsh-config/template              |   1 -
 srcpkgs/groff/template                        |   1 -
 srcpkgs/grub-terminus/template                |   1 -
 srcpkgs/grub/template                         |   5 -
 srcpkgs/gscan2pdf/template                    |   1 -
 srcpkgs/gscreenshot/template                  |   1 -
 srcpkgs/gsfonts/template                      |   1 -
 srcpkgs/gtk-doc/template                      |   1 -
 srcpkgs/gtk-theme-united-gnome/template       |   1 -
 srcpkgs/guake/template                        |   1 -
 srcpkgs/gufw/template                         |   1 -
 srcpkgs/guilt/template                        |   1 -
 srcpkgs/gyazo/template                        |   1 -
 srcpkgs/hamster-applet/template               |   1 -
 srcpkgs/hashboot/template                     |   1 -
 srcpkgs/hedgewars/template                    |   1 -
 srcpkgs/hg-git/template                       |   1 -
 srcpkgs/hicolor-icon-theme/template           |   1 -
 srcpkgs/hiera/template                        |   1 -
 srcpkgs/hostfw/template                       |   1 -
 srcpkgs/hostmux/template                      |   1 -
 srcpkgs/hosts-update/template                 |   1 -
 srcpkgs/httpie/template                       |   2 -
 srcpkgs/hunspell-da_DK/template               |   1 -
 srcpkgs/hunspell-de_CH/template               |   1 -
 srcpkgs/hunspell-de_DE/template               |   1 -
 srcpkgs/hunspell-el_GR/template               |   1 -
 srcpkgs/hunspell-en_AU/template               |   1 -
 srcpkgs/hunspell-en_GB-ize/template           |   1 -
 srcpkgs/hunspell-en_US/template               |   1 -
 srcpkgs/hunspell-es_ES/template               |   1 -
 srcpkgs/hunspell-fr_FR/template               |   4 -
 srcpkgs/hunspell-hr_HR/template               |   1 -
 srcpkgs/hunspell-it_IT/template               |   1 -
 srcpkgs/hunspell-pl_PL/template               |   1 -
 srcpkgs/hunspell-pt_BR/template               |   1 -
 srcpkgs/hunspell-ru_RU-ieyo/template          |   1 -
 srcpkgs/hunspell-ru_RU/template               |   1 -
 srcpkgs/hunspell-sv_SE/template               |   1 -
 srcpkgs/hwids/template                        |   1 -
 srcpkgs/i3blocks-blocklets/template           |   1 -
 srcpkgs/i3lock-fancy/template                 |   1 -
 srcpkgs/iana-etc/template                     |   1 -
 srcpkgs/ibus-avro/template                    |   1 -
 srcpkgs/icdiff/template                       |   2 -
 srcpkgs/ice-ssb/template                      |   1 -
 srcpkgs/icecat/template                       |  93 -----------
 srcpkgs/icedtea-sound/template                |   1 -
 srcpkgs/icon-naming-utils/template            |   1 -
 srcpkgs/imgp/template                         |   1 -
 srcpkgs/indic-otf/template                    |   1 -
 srcpkgs/indicator-doom-cpu/template           |   1 -
 srcpkgs/iniparser/template                    |   2 -
 srcpkgs/intltool/template                     |   1 -
 srcpkgs/inxi/template                         |   1 -
 srcpkgs/io.elementary.stylesheet/template     |   1 -
 srcpkgs/ioprof/template                       |   1 -
 srcpkgs/iotop/template                        |   1 -
 srcpkgs/ipafont-fonts-otf/template            |   1 -
 srcpkgs/ipcalc/template                       |   1 -
 srcpkgs/ipw2100-firmware/template             |   1 -
 srcpkgs/ipw2200-firmware/template             |   1 -
 srcpkgs/iscan-data/template                   |   1 -
 srcpkgs/iso-codes/template                    |   1 -
 srcpkgs/itstool/template                      |   1 -
 srcpkgs/jadx/template                         |   1 -
 srcpkgs/java-commons-io/template              |   1 -
 srcpkgs/javahelp2/template                    |   1 -
 srcpkgs/jrnl/template                         |   1 -
 srcpkgs/kadu/template                         |   1 -
 srcpkgs/kaitai-struct-compiler/template       |   1 -
 srcpkgs/kapidox/template                      |   1 -
 srcpkgs/kbd/template                          |   1 -
 srcpkgs/key-mon/template                      |   1 -
 srcpkgs/keychain/template                     |   1 -
 srcpkgs/khal/template                         |   1 -
 srcpkgs/khard/template                        |   1 -
 srcpkgs/khmer-fonts-ttf/template              |   1 -
 srcpkgs/kicad-footprints/template             |   1 -
 srcpkgs/kicad-i18n/template                   |   1 -
 srcpkgs/kicad-packages3D/template             |   1 -
 srcpkgs/kicad-symbols/template                |   1 -
 srcpkgs/kicad-templates/template              |   1 -
 srcpkgs/kickassembler/template                |   1 -
 srcpkgs/kitty/template                        |   1 -
 srcpkgs/kobodeluxe/template                   |   1 -
 srcpkgs/kodi-binary-addons/template           |   1 -
 srcpkgs/kpcli/template                        |   1 -
 srcpkgs/kshdb/template                        |   1 -
 srcpkgs/kupfer/template                       |   1 -
 srcpkgs/laditools/template                    |   1 -
 srcpkgs/ladspa-sdk/template                   |   2 -
 srcpkgs/laptop-mode/template                  |   1 -
 srcpkgs/leiningen/template                    |   1 -
 srcpkgs/leocad/template                       |   1 -
 srcpkgs/lesspipe/template                     |   1 -
 srcpkgs/lfe/template                          |   1 -
 srcpkgs/lfm/template                          |   1 -
 srcpkgs/lftpfs/template                       |   1 -
 srcpkgs/libbytesize/template                  |   1 -
 srcpkgs/libcap-ng/template                    |   1 -
 srcpkgs/libchewing/template                   |   1 -
 srcpkgs/libclc-git/template                   |   1 -
 srcpkgs/libcppunit/template                   |   1 -
 srcpkgs/libdwarf/template                     |   1 -
 srcpkgs/libe-book/template                    |   1 -
 srcpkgs/liberation-fonts-ttf/template         |   1 -
 srcpkgs/libfreehand/template                  |   1 -
 srcpkgs/libgphoto2/template                   |   1 -
 srcpkgs/libinput-gestures/template            |   1 -
 srcpkgs/libmwaw/template                      |   1 -
 srcpkgs/libosmgpsmap/template                 |   1 -
 srcpkgs/libquvi-scripts/template              |   1 -
 srcpkgs/libreoffice/template                  |   2 -
 srcpkgs/libsearpc/template                    |   2 -
 srcpkgs/libsoxr/template                      |   1 -
 srcpkgs/libvpx5/template                      |   1 -
 srcpkgs/libwaylandpp/template                 |   1 -
 srcpkgs/lightdm-webkit2-greeter/template      |   1 -
 srcpkgs/lilypond-doc/template                 |   1 -
 srcpkgs/linux-firmware-dvb/template           |   1 -
 srcpkgs/linux-firmware/template               |   5 -
 srcpkgs/lltag/template                        |   1 -
 srcpkgs/llvm10/template                       |   1 -
 srcpkgs/llvm6.0/template                      |   1 -
 srcpkgs/llvm7/template                        |   1 -
 srcpkgs/llvm8/template                        |   1 -
 srcpkgs/llvm9/template                        |   1 -
 srcpkgs/lollypop/template                     |   1 -
 srcpkgs/lua54-MessagePack/template            |   1 -
 srcpkgs/lua54-stdlib-debug/template           |   1 -
 srcpkgs/lua54-stdlib-normalize/template       |   1 -
 srcpkgs/lua54-vicious/template                |   1 -
 srcpkgs/luarocks-lua53/template               |   4 -
 srcpkgs/lugaru/template                       |   1 -
 srcpkgs/lutris/template                       |   1 -
 srcpkgs/lxde-common/template                  |   1 -
 srcpkgs/lxde-icon-theme/template              |   1 -
 srcpkgs/lxdm-theme-vdojo/template             |   1 -
 srcpkgs/lxmenu-data/template                  |   1 -
 srcpkgs/lxqt-build-tools/template             |   1 -
 srcpkgs/magic-wormhole/template               |   1 -
 srcpkgs/mailpile/template                     |   1 -
 srcpkgs/make-ca/template                      |   1 -
 srcpkgs/makepasswd/template                   |   1 -
 srcpkgs/makeself/template                     |   1 -
 srcpkgs/man-pages-posix/template              |   1 -
 srcpkgs/man-pages/template                    |   2 -
 srcpkgs/mantablockscreen/template             |   1 -
 srcpkgs/manuskript/template                   |   1 -
 srcpkgs/mariadb/template                      |   1 -
 srcpkgs/marvin/template                       |   1 -
 srcpkgs/mate-applets/template                 |   1 -
 srcpkgs/mate-backgrounds/template             |   1 -
 srcpkgs/mate-common/template                  |   1 -
 srcpkgs/mate-icon-theme-faenza/template       |   1 -
 srcpkgs/mate-icon-theme/template              |   1 -
 srcpkgs/mate-menu/template                    |   1 -
 srcpkgs/mate-themes/template                  |   1 -
 srcpkgs/mate-tweak/template                   |   1 -
 srcpkgs/mate-user-guide/template              |   1 -
 srcpkgs/mathjax/template                      |   1 -
 srcpkgs/maxima/template                       |   3 -
 srcpkgs/mb2md/template                        |   1 -
 srcpkgs/mcomix/template                       |   1 -
 srcpkgs/mdds/template                         |   1 -
 srcpkgs/mdevd/template                        |   1 -
 srcpkgs/med/template                          |   1 -
 srcpkgs/media-player-info/template            |   1 -
 srcpkgs/meld/template                         |   1 -
 srcpkgs/menulibre/template                    |   1 -
 srcpkgs/menumaker/template                    |   1 -
 srcpkgs/menutray/template                     |   1 -
 srcpkgs/meson-cmake-wrapper/template          |   1 -
 srcpkgs/meson/template                        |   1 -
 srcpkgs/mime-types/template                   |   1 -
 srcpkgs/mimeo/template                        |   1 -
 srcpkgs/mimms/template                        |   1 -
 srcpkgs/minigalaxy/template                   |   1 -
 srcpkgs/miro-video-converter/template         |   1 -
 srcpkgs/mkchromecast/template                 |   1 -
 srcpkgs/mkfontscale/template                  |   1 -
 srcpkgs/mkinitcpio-encryptssh/template        |   1 -
 srcpkgs/mkinitcpio/template                   |   6 -
 srcpkgs/mlt/template                          |   3 -
 srcpkgs/mm-common/template                    |   1 -
 .../mobile-broadband-provider-info/template   |   1 -
 srcpkgs/mog/template                          |   1 -
 srcpkgs/mongoose/template                     |   1 -
 srcpkgs/mons/template                         |   1 -
 srcpkgs/mopidy-local/template                 |   1 -
 srcpkgs/mopidy-mpd/template                   |   1 -
 srcpkgs/mopidy/template                       |   1 -
 srcpkgs/mozo/template                         |   1 -
 srcpkgs/mpd-sima/template                     |   1 -
 srcpkgs/mps-youtube/template                  |   1 -
 srcpkgs/msbuild-bin/template                  |   1 -
 srcpkgs/msttcorefonts/template                |   1 -
 srcpkgs/mtm/template                          |   1 -
 srcpkgs/mu/template                           |   1 -
 srcpkgs/mugshot/template                      |   1 -
 srcpkgs/multibootusb/template                 |   1 -
 srcpkgs/mutagen/template                      |   2 -
 srcpkgs/mymcplus/template                     |   1 -
 srcpkgs/mypaint-brushes/template              |   1 -
 srcpkgs/mypaint-brushes1/template             |   1 -
 srcpkgs/myrepos/template                      |   1 -
 srcpkgs/nagstamon/template                    |   1 -
 srcpkgs/nautilus-python/template              |   1 -
 srcpkgs/ncurses/template                      |   2 -
 srcpkgs/neofetch/template                     |   1 -
 srcpkgs/neovim-remote/template                |   1 -
 srcpkgs/nerd-fonts/template                   |   3 -
 srcpkgs/netbsd-wtf/template                   |   1 -
 srcpkgs/netdata/template                      |   2 -
 srcpkgs/netsurf-buildsystem/template          |   1 -
 srcpkgs/nicotine+/template                    |   1 -
 srcpkgs/nmap/template                         |   1 -
 srcpkgs/notmuch/template                      |   3 -
 srcpkgs/noto-fonts-cjk/template               |   1 -
 srcpkgs/noto-fonts-emoji/template             |   1 -
 srcpkgs/noto-fonts-ttf/template               |   1 -
 srcpkgs/novaboot/template                     |   1 -
 srcpkgs/nsss/template                         |   1 -
 srcpkgs/ntp/template                          |   1 -
 srcpkgs/num-utils/template                    |   1 -
 srcpkgs/numix-themes/template                 |   1 -
 srcpkgs/nyx/template                          |   1 -
 srcpkgs/oblogout/template                     |   1 -
 srcpkgs/obmenu-generator/template             |   1 -
 srcpkgs/obmenu/template                       |   1 -
 srcpkgs/offlineimap/template                  |   1 -
 srcpkgs/ohsnap-font/template                  |   1 -
 srcpkgs/ok.sh/template                        |   1 -
 srcpkgs/oniguruma/template                    |   1 -
 srcpkgs/onionshare/template                   |   1 -
 srcpkgs/opencl-clhpp/template                 |   1 -
 srcpkgs/opencl2-headers/template              |   1 -
 srcpkgs/openjdk8/template                     |   4 -
 srcpkgs/openlierox/template                   |   1 -
 srcpkgs/openra/template                       |   1 -
 srcpkgs/openresolv/template                   |   1 -
 srcpkgs/opensonic/template                    |   1 -
 srcpkgs/opensurge/template                    |   1 -
 srcpkgs/opentmpfiles/template                 |   1 -
 srcpkgs/openttd/template                      |   1 -
 srcpkgs/opentyrian/template                   |   1 -
 srcpkgs/orca/template                         |   1 -
 srcpkgs/orjail/template                       |   1 -
 srcpkgs/osinfo-db/template                    |   1 -
 srcpkgs/othman/template                       |   1 -
 srcpkgs/overpass-otf/template                 |   1 -
 srcpkgs/oxygen-icons5/template                |   1 -
 srcpkgs/pam-base/template                     |   1 -
 srcpkgs/pantalaimon/template                  |   1 -
 srcpkgs/paper-gtk-theme/template              |   1 -
 srcpkgs/paper-icon-theme/template             |   1 -
 srcpkgs/papirus-folders/template              |   1 -
 srcpkgs/papirus-icon-theme/template           |   1 -
 srcpkgs/parallel/template                     |   1 -
 srcpkgs/pass-git-helper/template              |   1 -
 srcpkgs/pass-import/template                  |   1 -
 srcpkgs/pass-otp/template                     |   1 -
 srcpkgs/pass-update/template                  |   1 -
 srcpkgs/pass/template                         |   1 -
 srcpkgs/pastebinit/template                   |   1 -
 srcpkgs/pcb/template                          |   1 -
 srcpkgs/pdd/template                          |   1 -
 srcpkgs/pdf.js/template                       |   1 -
 srcpkgs/peframe/template                      |   1 -
 srcpkgs/pelican/template                      |   1 -
 srcpkgs/percona-toolkit/template              |   1 -
 srcpkgs/perl-ACL-Lite/template                |   1 -
 srcpkgs/perl-AWS-Signature4/template          |   1 -
 srcpkgs/perl-Algorithm-Diff/template          |   1 -
 srcpkgs/perl-Alien-Build/template             |   1 -
 srcpkgs/perl-Alien-wxWidgets/template         |   1 -
 srcpkgs/perl-Alien/template                   |   1 -
 srcpkgs/perl-AnyEvent-I3/template             |   1 -
 srcpkgs/perl-AnyEvent/template                |   1 -
 .../perl-Apache-LogFormat-Compiler/template   |   1 -
 srcpkgs/perl-AppConfig/template               |   1 -
 srcpkgs/perl-Archive-Extract/template         |   1 -
 srcpkgs/perl-Archive-Zip/template             |   1 -
 srcpkgs/perl-Authen-SASL/template             |   1 -
 srcpkgs/perl-B-Hooks-EndOfScope/template      |   1 -
 srcpkgs/perl-Business-ISBN-Data/template      |   1 -
 srcpkgs/perl-Business-ISBN/template           |   1 -
 srcpkgs/perl-Business-ISMN/template           |   1 -
 srcpkgs/perl-Business-ISSN/template           |   1 -
 srcpkgs/perl-CGI/template                     |   1 -
 srcpkgs/perl-CPAN-Changes/template            |   1 -
 srcpkgs/perl-CPAN-Common-Index/template       |   1 -
 srcpkgs/perl-CPAN-DistnameInfo/template       |   1 -
 srcpkgs/perl-CPAN-Meta-Check/template         |   1 -
 srcpkgs/perl-Canary-Stability/template        |   1 -
 srcpkgs/perl-Capture-Tiny/template            |   1 -
 srcpkgs/perl-Carp-Clan/template               |   1 -
 srcpkgs/perl-Class-Accessor/template          |   1 -
 srcpkgs/perl-Class-Data-Inheritable/template  |   1 -
 srcpkgs/perl-Class-Factory-Util/template      |   1 -
 srcpkgs/perl-Class-Inspector/template         |   1 -
 srcpkgs/perl-Class-Load/template              |   1 -
 srcpkgs/perl-Class-Method-Modifiers/template  |   1 -
 srcpkgs/perl-Class-Singleton/template         |   1 -
 srcpkgs/perl-Class-Tiny/template              |   1 -
 srcpkgs/perl-Clipboard/template               |   1 -
 srcpkgs/perl-Clone-Choose/template            |   1 -
 srcpkgs/perl-Clone-PP/template                |   1 -
 srcpkgs/perl-Config-AutoConf/template         |   1 -
 srcpkgs/perl-Config-General/template          |   1 -
 .../perl-Config-INI-Reader-Ordered/template   |   1 -
 srcpkgs/perl-Config-INI/template              |   1 -
 srcpkgs/perl-Config-IniFiles/template         |   1 -
 srcpkgs/perl-Config-Simple/template           |   1 -
 srcpkgs/perl-Config-Tiny/template             |   1 -
 srcpkgs/perl-Convert-BinHex/template          |   1 -
 srcpkgs/perl-Cookie-Baker/template            |   1 -
 srcpkgs/perl-Crypt-Blowfish_PP/template       |   1 -
 srcpkgs/perl-Crypt-CBC/template               |   1 -
 srcpkgs/perl-Crypt-DES_EDE3/template          |   1 -
 srcpkgs/perl-Crypt-DH/template                |   1 -
 srcpkgs/perl-Crypt-OpenSSL-Guess/template     |   1 -
 srcpkgs/perl-Crypt-PasswdMD5/template         |   1 -
 srcpkgs/perl-Crypt-RC4/template               |   1 -
 srcpkgs/perl-Danga-Socket/template            |   1 -
 srcpkgs/perl-Data-Compare/template            |   1 -
 srcpkgs/perl-Data-Dump/template               |   1 -
 srcpkgs/perl-Data-Dx/template                 |   1 -
 srcpkgs/perl-Data-OptList/template            |   1 -
 srcpkgs/perl-Data-Section-Simple/template     |   1 -
 srcpkgs/perl-Data-Uniqid/template             |   1 -
 srcpkgs/perl-Data-Validate-IP/template        |   1 -
 srcpkgs/perl-Date-Calc/template               |   1 -
 srcpkgs/perl-Date-Manip/template              |   1 -
 .../perl-DateTime-Calendar-Julian/template    |   1 -
 srcpkgs/perl-DateTime-Format-Builder/template |   1 -
 .../perl-DateTime-Format-Strptime/template    |   1 -
 srcpkgs/perl-DateTime-Locale/template         |   1 -
 srcpkgs/perl-DateTime-TimeZone/template       |   1 -
 srcpkgs/perl-Devel-CheckLib/template          |   1 -
 srcpkgs/perl-Devel-GlobalDestruction/template |   1 -
 srcpkgs/perl-Devel-StackTrace-AsHTML/template |   1 -
 srcpkgs/perl-Devel-StackTrace/template        |   1 -
 srcpkgs/perl-Devel-Symdump/template           |   1 -
 srcpkgs/perl-Digest-HMAC/template             |   1 -
 srcpkgs/perl-Digest-Perl-MD5/template         |   1 -
 srcpkgs/perl-Dist-CheckConflicts/template     |   1 -
 srcpkgs/perl-Email-Date-Format/template       |   1 -
 srcpkgs/perl-Email-FolderType/template        |   1 -
 srcpkgs/perl-Email-LocalDelivery/template     |   1 -
 srcpkgs/perl-Email-MIME-ContentType/template  |   1 -
 srcpkgs/perl-Email-MIME-Encodings/template    |   1 -
 srcpkgs/perl-Email-MIME/template              |   1 -
 srcpkgs/perl-Email-MessageID/template         |   1 -
 srcpkgs/perl-Email-Simple/template            |   1 -
 srcpkgs/perl-Encode-Locale/template           |   1 -
 srcpkgs/perl-Eval-Closure/template            |   1 -
 srcpkgs/perl-Exception-Class/template         |   1 -
 srcpkgs/perl-Expect/template                  |   1 -
 srcpkgs/perl-Exporter-Tiny/template           |   1 -
 srcpkgs/perl-ExtUtils-Config/template         |   1 -
 srcpkgs/perl-ExtUtils-CppGuess/template       |   1 -
 srcpkgs/perl-ExtUtils-Depends/template        |   1 -
 srcpkgs/perl-ExtUtils-Helpers/template        |   1 -
 srcpkgs/perl-ExtUtils-InstallPaths/template   |   1 -
 srcpkgs/perl-ExtUtils-LibBuilder/template     |   1 -
 .../perl-ExtUtils-MakeMaker-CPANfile/template |   1 -
 srcpkgs/perl-ExtUtils-PkgConfig/template      |   1 -
 srcpkgs/perl-ExtUtils-XSpp/template           |   1 -
 srcpkgs/perl-FFI-CheckLib/template            |   1 -
 srcpkgs/perl-File-BaseDir/template            |   1 -
 srcpkgs/perl-File-Copy-Recursive/template     |   1 -
 srcpkgs/perl-File-DesktopEntry/template       |   1 -
 srcpkgs/perl-File-Find-Rule/template          |   1 -
 srcpkgs/perl-File-Flock-Retry/template        |   1 -
 srcpkgs/perl-File-HomeDir/template            |   1 -
 srcpkgs/perl-File-KeePass/template            |   1 -
 srcpkgs/perl-File-Listing/template            |   1 -
 srcpkgs/perl-File-MimeInfo/template           |   1 -
 srcpkgs/perl-File-Next/template               |   1 -
 srcpkgs/perl-File-Path-Expand/template        |   1 -
 srcpkgs/perl-File-Remove/template             |   1 -
 srcpkgs/perl-File-Rename/template             |   1 -
 srcpkgs/perl-File-ShareDir-Install/template   |   1 -
 srcpkgs/perl-File-ShareDir/template           |   1 -
 srcpkgs/perl-File-Slurp-Tiny/template         |   1 -
 srcpkgs/perl-File-Slurp/template              |   1 -
 srcpkgs/perl-File-Slurper/template            |   1 -
 srcpkgs/perl-File-Which/template              |   1 -
 srcpkgs/perl-File-Write-Rotate/template       |   1 -
 srcpkgs/perl-File-chdir/template              |   1 -
 srcpkgs/perl-File-pushd/template              |   1 -
 srcpkgs/perl-Filesys-Notify-Simple/template   |   1 -
 srcpkgs/perl-Font-TTF/template                |   1 -
 srcpkgs/perl-Getopt-Compact/template          |   1 -
 srcpkgs/perl-GooCanvas2/template              |   1 -
 srcpkgs/perl-Graphics-ColorUtils/template     |   1 -
 srcpkgs/perl-Gtk2-Ex-Simple-List/template     |   1 -
 srcpkgs/perl-Gtk3-SimpleList/template         |   1 -
 srcpkgs/perl-Gtk3/template                    |   1 -
 srcpkgs/perl-HTML-Form/template               |   1 -
 srcpkgs/perl-HTML-Tagset/template             |   1 -
 srcpkgs/perl-HTML-Tree/template               |   1 -
 srcpkgs/perl-HTTP-Cookies/template            |   1 -
 srcpkgs/perl-HTTP-Daemon/template             |   1 -
 srcpkgs/perl-HTTP-Date/template               |   1 -
 srcpkgs/perl-HTTP-Entity-Parser/template      |   1 -
 srcpkgs/perl-HTTP-Headers-Fast/template       |   1 -
 srcpkgs/perl-HTTP-Message/template            |   1 -
 srcpkgs/perl-HTTP-MultiPartParser/template    |   1 -
 srcpkgs/perl-HTTP-Negotiate/template          |   1 -
 srcpkgs/perl-HTTP-Response-Encoding/template  |   1 -
 srcpkgs/perl-HTTP-Server-Simple/template      |   1 -
 srcpkgs/perl-HTTP-Tinyish/template            |   1 -
 srcpkgs/perl-Hash-Merge/template              |   1 -
 srcpkgs/perl-Hash-MultiValue/template         |   1 -
 srcpkgs/perl-IO-CaptureOutput/template        |   1 -
 srcpkgs/perl-IO-HTML/template                 |   1 -
 srcpkgs/perl-IO-SessionData/template          |   1 -
 srcpkgs/perl-IO-Socket-INET6/template         |   1 -
 srcpkgs/perl-IO-Socket-SSL/template           |   1 -
 srcpkgs/perl-IO-Socket-Socks/template         |   1 -
 srcpkgs/perl-IO-String/template               |   1 -
 srcpkgs/perl-IO-Stty/template                 |   1 -
 srcpkgs/perl-IO-stringy/template              |   1 -
 srcpkgs/perl-IPC-Run/template                 |   1 -
 srcpkgs/perl-IPC-Run3/template                |   1 -
 srcpkgs/perl-IPC-System-Simple/template       |   1 -
 srcpkgs/perl-Importer/template                |   1 -
 srcpkgs/perl-Inline-C/template                |   1 -
 srcpkgs/perl-Inline/template                  |   1 -
 srcpkgs/perl-JSON-MaybeXS/template            |   1 -
 srcpkgs/perl-JSON/template                    |   1 -
 srcpkgs/perl-Keyword-Declare/template         |   1 -
 srcpkgs/perl-Keyword-Simple/template          |   1 -
 srcpkgs/perl-LWP-MediaTypes/template          |   1 -
 srcpkgs/perl-LWP-Protocol-https/template      |   1 -
 srcpkgs/perl-LWP-Protocol-socks/template      |   1 -
 srcpkgs/perl-LWP/template                     |   1 -
 srcpkgs/perl-Lingua-Translit/template         |   1 -
 srcpkgs/perl-Linux-DesktopFiles/template      |   1 -
 srcpkgs/perl-Linux-Distribution/template      |   1 -
 srcpkgs/perl-List-AllUtils/template           |   1 -
 srcpkgs/perl-List-MoreUtils/template          |   1 -
 srcpkgs/perl-List-SomeUtils/template          |   1 -
 srcpkgs/perl-List-UtilsBy/template            |   1 -
 srcpkgs/perl-Locale-PO/template               |   1 -
 srcpkgs/perl-Log-Log4perl/template            |   1 -
 srcpkgs/perl-MIME-Charset/template            |   1 -
 srcpkgs/perl-MIME-Types/template              |   1 -
 srcpkgs/perl-MIME-tools/template              |   1 -
 srcpkgs/perl-MP3-Info/template                |   1 -
 srcpkgs/perl-MP3-Tag/template                 |   1 -
 srcpkgs/perl-MRO-Compat/template              |   1 -
 srcpkgs/perl-Mail-Box/template                |   1 -
 srcpkgs/perl-Mail-DKIM/template               |   1 -
 srcpkgs/perl-Mail-Message/template            |   1 -
 srcpkgs/perl-Mail-POP3Client/template         |   1 -
 srcpkgs/perl-Mail-Sendmail/template           |   1 -
 srcpkgs/perl-Mail-Transport/template          |   1 -
 srcpkgs/perl-MailTools/template               |   1 -
 srcpkgs/perl-Menlo-Legacy/template            |   1 -
 srcpkgs/perl-Menlo/template                   |   1 -
 srcpkgs/perl-Mixin-Linewise/template          |   1 -
 srcpkgs/perl-Module-Build-Tiny/template       |   1 -
 srcpkgs/perl-Module-Build/template            |   1 -
 srcpkgs/perl-Module-CPANfile/template         |   1 -
 srcpkgs/perl-Module-Find/template             |   1 -
 srcpkgs/perl-Module-Implementation/template   |   1 -
 srcpkgs/perl-Module-Manifest/template         |   1 -
 srcpkgs/perl-Module-Pluggable/template        |   1 -
 srcpkgs/perl-Module-Runtime/template          |   1 -
 srcpkgs/perl-Mojolicious/template             |   1 -
 srcpkgs/perl-Monkey-Patch-Action/template     |   1 -
 srcpkgs/perl-Moo/template                     |   1 -
 srcpkgs/perl-Mozilla-CA/template              |   1 -
 srcpkgs/perl-Net-DNS-Resolver-Mock/template   |   1 -
 srcpkgs/perl-Net-DNS/template                 |   1 -
 srcpkgs/perl-Net-HTTP/template                |   1 -
 srcpkgs/perl-Net-IMAP-Client/template         |   1 -
 srcpkgs/perl-Net-IMAP-Simple/template         |   1 -
 srcpkgs/perl-Net-MPD/template                 |   1 -
 srcpkgs/perl-Net-OpenSSH/template             |   1 -
 srcpkgs/perl-Net-SFTP-Foreign/template        |   1 -
 srcpkgs/perl-Net-SMTP-SSL/template            |   1 -
 srcpkgs/perl-Net-Server/template              |   1 -
 srcpkgs/perl-Number-Compare/template          |   1 -
 srcpkgs/perl-Number-Format/template           |   1 -
 srcpkgs/perl-OLE-Storage_Lite/template        |   1 -
 srcpkgs/perl-Object-MultiType/template        |   1 -
 srcpkgs/perl-Object-Realize-Later/template    |   1 -
 srcpkgs/perl-PDF-API2/template                |   1 -
 srcpkgs/perl-POSIX-strftime-Compiler/template |   1 -
 srcpkgs/perl-PPR/template                     |   1 -
 .../perl-Package-DeprecationManager/template  |   1 -
 srcpkgs/perl-Package-Stash/template           |   1 -
 srcpkgs/perl-Parallel-ForkManager/template    |   1 -
 .../perl-Params-ValidationCompiler/template   |   1 -
 srcpkgs/perl-Parse-CPAN-Meta/template         |   1 -
 srcpkgs/perl-Parse-PMFile/template            |   1 -
 srcpkgs/perl-Parse-RecDescent/template        |   1 -
 srcpkgs/perl-Parse-Yapp/template              |   1 -
 srcpkgs/perl-PatchReader/template             |   1 -
 srcpkgs/perl-Path-Tiny/template               |   1 -
 srcpkgs/perl-Pegex/template                   |   1 -
 .../perl-Plack-Middleware-Deflater/template   |   1 -
 .../template                                  |   1 -
 srcpkgs/perl-Plack/template                   |   1 -
 srcpkgs/perl-Pod-Coverage/template            |   1 -
 srcpkgs/perl-Pod-Simple-Text-Termcap/template |   1 -
 srcpkgs/perl-Probe-Perl/template              |   1 -
 srcpkgs/perl-Proc-Daemontools/template        |   1 -
 srcpkgs/perl-Proc-Govern/template             |   1 -
 srcpkgs/perl-Proc-PID-File/template           |   1 -
 srcpkgs/perl-Readonly/template                |   1 -
 srcpkgs/perl-Ref-Util/template                |   1 -
 srcpkgs/perl-Regexp-Common/template           |   1 -
 srcpkgs/perl-Regexp-Grammars/template         |   1 -
 srcpkgs/perl-Reply/template                   |   1 -
 srcpkgs/perl-Role-Tiny/template               |   1 -
 srcpkgs/perl-SGMLSpm/template                 |   1 -
 srcpkgs/perl-SOAP-Lite/template               |   1 -
 srcpkgs/perl-SUPER/template                   |   1 -
 srcpkgs/perl-Scope-Guard/template             |   1 -
 srcpkgs/perl-Set-IntSpan/template             |   1 -
 srcpkgs/perl-Sort-Naturally/template          |   1 -
 srcpkgs/perl-Sort-Versions/template           |   1 -
 srcpkgs/perl-Specio/template                  |   1 -
 srcpkgs/perl-Spiffy/template                  |   1 -
 srcpkgs/perl-Spreadsheet-ParseExcel/template  |   1 -
 srcpkgs/perl-Spreadsheet-ParseXLSX/template   |   1 -
 srcpkgs/perl-Stow/template                    |   1 -
 srcpkgs/perl-Stream-Buffered/template         |   1 -
 srcpkgs/perl-String-Escape/template           |   1 -
 srcpkgs/perl-String-ShellQuote/template       |   1 -
 srcpkgs/perl-Sub-Delete/template              |   1 -
 .../perl-Sub-Exporter-Progressive/template    |   1 -
 srcpkgs/perl-Sub-Exporter/template            |   1 -
 srcpkgs/perl-Sub-Info/template                |   1 -
 srcpkgs/perl-Sub-Install/template             |   1 -
 srcpkgs/perl-Sub-Quote/template               |   1 -
 srcpkgs/perl-Sub-Uplevel/template             |   1 -
 srcpkgs/perl-Svsh/template                    |   1 -
 srcpkgs/perl-Sys-Syscall/template             |   1 -
 srcpkgs/perl-Term-Animation/template          |   1 -
 srcpkgs/perl-Term-ExtendedColor/template      |   1 -
 srcpkgs/perl-Term-ShellUI/template            |   1 -
 srcpkgs/perl-Term-Table/template              |   1 -
 srcpkgs/perl-Test-Base/template               |   1 -
 srcpkgs/perl-Test-CPAN-Meta/template          |   1 -
 srcpkgs/perl-Test-Class/template              |   1 -
 srcpkgs/perl-Test-Cmd/template                |   1 -
 srcpkgs/perl-Test-Command/template            |   1 -
 srcpkgs/perl-Test-Deep/template               |   1 -
 srcpkgs/perl-Test-Differences/template        |   1 -
 srcpkgs/perl-Test-DistManifest/template       |   1 -
 srcpkgs/perl-Test-Exception/template          |   1 -
 srcpkgs/perl-Test-FailWarnings/template       |   1 -
 srcpkgs/perl-Test-Fatal/template              |   1 -
 srcpkgs/perl-Test-File-ShareDir/template      |   1 -
 srcpkgs/perl-Test-File/template               |   1 -
 srcpkgs/perl-Test-HTTP-Server-Simple/template |   1 -
 srcpkgs/perl-Test-Inter/template              |   1 -
 srcpkgs/perl-Test-MockModule/template         |   1 -
 srcpkgs/perl-Test-Most/template               |   1 -
 srcpkgs/perl-Test-Needs/template              |   1 -
 srcpkgs/perl-Test-NoWarnings/template         |   1 -
 srcpkgs/perl-Test-Output/template             |   1 -
 srcpkgs/perl-Test-Pod-Coverage/template       |   1 -
 srcpkgs/perl-Test-Pod/template                |   1 -
 srcpkgs/perl-Test-Requires/template           |   1 -
 srcpkgs/perl-Test-RequiresInternet/template   |   1 -
 srcpkgs/perl-Test-Script/template             |   1 -
 srcpkgs/perl-Test-SharedFork/template         |   1 -
 srcpkgs/perl-Test-Simple/template             |   1 -
 srcpkgs/perl-Test-Subroutines/template        |   1 -
 srcpkgs/perl-Test-TCP/template                |   1 -
 srcpkgs/perl-Test-Time/template               |   1 -
 srcpkgs/perl-Test-Trap/template               |   1 -
 srcpkgs/perl-Test-UseAllModules/template      |   1 -
 srcpkgs/perl-Test-Warn/template               |   1 -
 srcpkgs/perl-Test-Warnings/template           |   1 -
 srcpkgs/perl-Test-Weaken/template             |   1 -
 srcpkgs/perl-Test-Without-Module/template     |   1 -
 srcpkgs/perl-Test-YAML/template               |   1 -
 srcpkgs/perl-Test-utf8/template               |   1 -
 srcpkgs/perl-Test2-Plugin-NoWarnings/template |   1 -
 srcpkgs/perl-Test2-Suite/template             |   1 -
 srcpkgs/perl-Text-ASCIITable/template         |   1 -
 srcpkgs/perl-Text-Aligner/template            |   1 -
 srcpkgs/perl-Text-Autoformat/template         |   1 -
 srcpkgs/perl-Text-CSV/template                |   1 -
 srcpkgs/perl-Text-Diff/template               |   1 -
 srcpkgs/perl-Text-Glob/template               |   1 -
 srcpkgs/perl-Text-Markdown/template           |   1 -
 srcpkgs/perl-Text-Reform/template             |   1 -
 srcpkgs/perl-Text-Roman/template              |   1 -
 srcpkgs/perl-Text-Table/template              |   1 -
 srcpkgs/perl-Text-Unidecode/template          |   1 -
 srcpkgs/perl-Text-WrapI18N/template           |   1 -
 srcpkgs/perl-Text-XLogfile/template           |   1 -
 srcpkgs/perl-Tie-Cycle/template               |   1 -
 srcpkgs/perl-Tie-Handle-Offset/template       |   1 -
 srcpkgs/perl-Tie-IxHash/template              |   1 -
 srcpkgs/perl-Time-Duration/template           |   1 -
 srcpkgs/perl-Time-modules/template            |   1 -
 srcpkgs/perl-TimeDate/template                |   1 -
 srcpkgs/perl-Tree-DAG_Node/template           |   1 -
 srcpkgs/perl-Try-Tiny/template                |   1 -
 srcpkgs/perl-Types-Serialiser/template        |   1 -
 srcpkgs/perl-URI/template                     |   1 -
 srcpkgs/perl-Unicode-Tussle/template          |   1 -
 srcpkgs/perl-Unix-Uptime/template             |   1 -
 srcpkgs/perl-User-Identity/template           |   1 -
 srcpkgs/perl-WL/template                      |   1 -
 srcpkgs/perl-WWW-Form-UrlEncoded/template     |   1 -
 srcpkgs/perl-WWW-Mechanize/template           |   1 -
 srcpkgs/perl-WWW-RobotRules/template          |   1 -
 srcpkgs/perl-WebService-MusicBrainz/template  |   1 -
 srcpkgs/perl-X11-Protocol-Other/template      |   1 -
 srcpkgs/perl-X11-Protocol/template            |   1 -
 srcpkgs/perl-XML-LibXML-PrettyPrint/template  |   1 -
 srcpkgs/perl-XML-LibXML-Simple/template       |   1 -
 srcpkgs/perl-XML-NamespaceSupport/template    |   1 -
 srcpkgs/perl-XML-Parser-Lite/template         |   1 -
 srcpkgs/perl-XML-SAX-Base/template            |   1 -
 srcpkgs/perl-XML-SAX/template                 |   1 -
 srcpkgs/perl-XML-Simple/template              |   1 -
 srcpkgs/perl-XML-Smart/template               |   1 -
 srcpkgs/perl-XML-Twig/template                |   1 -
 srcpkgs/perl-XML-Writer/template              |   1 -
 srcpkgs/perl-XML-XPath/template               |   1 -
 srcpkgs/perl-YAML-Tiny/template               |   1 -
 srcpkgs/perl-YAML/template                    |   1 -
 srcpkgs/perl-common-sense/template            |   1 -
 srcpkgs/perl-local-lib/template               |   1 -
 srcpkgs/perl-namespace-autoclean/template     |   1 -
 srcpkgs/perl-namespace-clean/template         |   1 -
 srcpkgs/perl-rename/template                  |   1 -
 srcpkgs/perl-strictures/template              |   1 -
 srcpkgs/perl-tainting/template                |   1 -
 srcpkgs/perltidy/template                     |   1 -
 srcpkgs/persepolis/template                   |   1 -
 srcpkgs/peru/template                         |   1 -
 srcpkgs/pex/template                          |   1 -
 srcpkgs/pfetch/template                       |   1 -
 srcpkgs/pgcli/template                        |   1 -
 srcpkgs/phoronix-test-suite/template          |   1 -
 srcpkgs/phpMyAdmin/template                   |   1 -
 srcpkgs/picard/template                       |   1 -
 srcpkgs/pingus/template                       |   1 -
 srcpkgs/pioneer/template                      |   1 -
 srcpkgs/piper/template                        |   1 -
 srcpkgs/pipewire/template                     |   1 -
 srcpkgs/plantuml/template                     |   1 -
 srcpkgs/plasma-workspace-wallpapers/template  |   1 -
 srcpkgs/plata-theme/template                  |   1 -
 srcpkgs/platformio/template                   |   1 -
 srcpkgs/playitslowly/template                 |   1 -
 srcpkgs/plymouth/template                     |   1 -
 srcpkgs/pmbootstrap/template                  |   1 -
 srcpkgs/po4a/template                         |   1 -
 srcpkgs/pockyt/template                       |   1 -
 srcpkgs/podman-compose/template               |   1 -
 srcpkgs/polysh/template                       |   1 -
 srcpkgs/pony-stable/template                  |   1 -
 srcpkgs/ponyc/template                        |   1 -
 srcpkgs/ponysay/template                      |   1 -
 srcpkgs/poppler-data/template                 |   1 -
 srcpkgs/postgresql/template                   |   1 -
 srcpkgs/postgresql12/template                 |   1 -
 srcpkgs/printrun/template                     |   1 -
 srcpkgs/pritunl-client/template               |   1 -
 srcpkgs/profile-cleaner/template              |   1 -
 srcpkgs/protonvpn-cli/template                |   1 -
 srcpkgs/pslist/template                       |   1 -
 srcpkgs/psuinfo/template                      |   1 -
 srcpkgs/public-inbox/template                 |   1 -
 srcpkgs/pulsemixer/template                   |   1 -
 srcpkgs/puppet/template                       |   1 -
 srcpkgs/py3status/template                    |   1 -
 srcpkgs/pychess/template                      |   1 -
 srcpkgs/pycp/template                         |   1 -
 srcpkgs/pylint/template                       |   1 -
 srcpkgs/pyradio/template                      |   1 -
 srcpkgs/pysolfc-cardsets/template             |   1 -
 srcpkgs/pysolfc/template                      |   1 -
 srcpkgs/pystopwatch/template                  |   1 -
 srcpkgs/python-Arrow/template                 |   2 -
 srcpkgs/python-Babel/template                 |   2 -
 srcpkgs/python-BeautifulSoup4/template        |   2 -
 srcpkgs/python-Cheroot/template               |   2 -
 srcpkgs/python-CherryPy/template              |   1 -
 srcpkgs/python-Django/template                |   1 -
 srcpkgs/python-Flask-Assets/template          |   2 -
 srcpkgs/python-Flask-Babel/template           |   2 -
 srcpkgs/python-Flask-Login/template           |   2 -
 srcpkgs/python-Flask-OAuthlib/template        |   2 -
 srcpkgs/python-Flask-Script/template          |   2 -
 srcpkgs/python-Flask-WTF/template             |   2 -
 srcpkgs/python-Flask/template                 |   2 -
 srcpkgs/python-GitPython/template             |   2 -
 srcpkgs/python-IPy/template                   |   2 -
 srcpkgs/python-Jinja2/template                |   2 -
 srcpkgs/python-Mako/template                  |   2 -
 srcpkgs/python-Markdown/template              |   1 -
 srcpkgs/python-Markups/template               |   2 -
 srcpkgs/python-MiniMock/template              |   2 -
 srcpkgs/python-PyHamcrest/template            |   2 -
 srcpkgs/python-PyOpenGL/template              |   2 -
 srcpkgs/python-Pygments/template              |   2 -
 srcpkgs/python-Pyro4/template                 |   2 -
 srcpkgs/python-SPARQLWrapper/template         |   2 -
 srcpkgs/python-Unidecode/template             |   2 -
 srcpkgs/python-WTForms/template               |   2 -
 srcpkgs/python-Werkzeug/template              |   2 -
 srcpkgs/python-Whoosh/template                |   2 -
 srcpkgs/python-Yapsy/template                 |   2 -
 srcpkgs/python-aalib/template                 |   2 -
 srcpkgs/python-alabaster/template             |   2 -
 srcpkgs/python-alembic/template               |   2 -
 srcpkgs/python-ansicolor/template             |   2 -
 srcpkgs/python-appdirs/template               |   2 -
 srcpkgs/python-argh/template                  |   2 -
 srcpkgs/python-arxiv2bib/template             |   2 -
 srcpkgs/python-asn1crypto/template            |   2 -
 srcpkgs/python-astroid/template               |   1 -
 srcpkgs/python-atomicwrites/template          |   2 -
 srcpkgs/python-atspi/template                 |   1 -
 srcpkgs/python-attrs/template                 |   2 -
 srcpkgs/python-audioread/template             |   2 -
 srcpkgs/python-automat/template               |   2 -
 srcpkgs/python-axolotl/template               |   2 -
 srcpkgs/python-b2sdk/template                 |   1 -
 srcpkgs/python-babelfish/template             |   2 -
 srcpkgs/python-backcall/template              |   2 -
 .../python-backports.configparser/template    |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 .../template                                  |   1 -
 srcpkgs/python-backports/template             |   1 -
 srcpkgs/python-backports_abc/template         |   1 -
 srcpkgs/python-bibtexparser/template          |   2 -
 srcpkgs/python-bitbucket-api/template         |   2 -
 srcpkgs/python-bleach/template                |   2 -
 srcpkgs/python-blessings/template             |   2 -
 srcpkgs/python-blinker/template               |   2 -
 srcpkgs/python-boto/template                  |   2 -
 srcpkgs/python-botocore/template              |   2 -
 srcpkgs/python-bottle/template                |   2 -
 srcpkgs/python-cached-property/template       |   2 -
 srcpkgs/python-cairocffi/template             |   2 -
 srcpkgs/python-chardet/template               |   2 -
 srcpkgs/python-chroot/template                |   2 -
 srcpkgs/python-cliapp/template                |   1 -
 srcpkgs/python-click-log/template             |   2 -
 srcpkgs/python-click-threading/template       |   2 -
 srcpkgs/python-click/template                 |   2 -
 srcpkgs/python-codespell/template             |   2 -
 srcpkgs/python-colorama/template              |   2 -
 srcpkgs/python-configobj/template             |   2 -
 srcpkgs/python-constantly/template            |   2 -
 srcpkgs/python-construct/template             |   2 -
 srcpkgs/python-contextlib2/template           |   1 -
 srcpkgs/python-cram/template                  |   2 -
 srcpkgs/python-cryptography_vectors/template  |   1 -
 srcpkgs/python-css-parser/template            |   2 -
 srcpkgs/python-cssselect/template             |   2 -
 srcpkgs/python-cssutils/template              |   2 -
 srcpkgs/python-curtsies/template              |   2 -
 srcpkgs/python-cycler/template                |   2 -
 srcpkgs/python-daemonize/template             |   2 -
 srcpkgs/python-dateutil/template              |   2 -
 srcpkgs/python-decorator/template             |   2 -
 srcpkgs/python-defusedxml/template            |   2 -
 srcpkgs/python-discogs_client/template        |   2 -
 srcpkgs/python-distutils-extra/template       |   2 -
 srcpkgs/python-dnspython/template             |   2 -
 srcpkgs/python-docker-pycreds/template        |   2 -
 srcpkgs/python-docker/template                |   2 -
 srcpkgs/python-dockerpty/template             |   2 -
 srcpkgs/python-docopt/template                |   2 -
 srcpkgs/python-docutils/template              |   2 -
 srcpkgs/python-dogpile.cache/template         |   2 -
 srcpkgs/python-dominate/template              |   2 -
 srcpkgs/python-ecdsa/template                 |   2 -
 srcpkgs/python-editor/template                |   2 -
 srcpkgs/python-empy/template                  |   2 -
 srcpkgs/python-enchant/template               |   1 -
 srcpkgs/python-entrypoints/template           |   2 -
 srcpkgs/python-enum34/template                |   1 -
 srcpkgs/python-envdir/template                |   2 -
 srcpkgs/python-enzyme/template                |   2 -
 srcpkgs/python-ewmh/template                  |   2 -
 srcpkgs/python-exifread/template              |   2 -
 srcpkgs/python-fasteners/template             |   2 -
 srcpkgs/python-feedgenerator/template         |   2 -
 srcpkgs/python-feedparser/template            |   2 -
 srcpkgs/python-filetype/template              |   2 -
 srcpkgs/python-flaky/template                 |   2 -
 srcpkgs/python-funcsigs/template              |   1 -
 srcpkgs/python-functools32/template           |   1 -
 srcpkgs/python-future/template                |   2 -
 srcpkgs/python-futures/template               |   1 -
 srcpkgs/python-gitdb/template                 |   2 -
 srcpkgs/python-github3/template               |   2 -
 srcpkgs/python-gitlab/template                |   2 -
 srcpkgs/python-gntp/template                  |   2 -
 srcpkgs/python-gnupg/template                 |   2 -
 srcpkgs/python-gogs-client/template           |   2 -
 srcpkgs/python-guessit/template               |   2 -
 srcpkgs/python-h11/template                   |   2 -
 srcpkgs/python-habanero/template              |   2 -
 srcpkgs/python-hpack/template                 |   2 -
 srcpkgs/python-html2text/template             |   1 -
 srcpkgs/python-html5lib/template              |   2 -
 srcpkgs/python-httmock/template               |   2 -
 srcpkgs/python-httplib2/template              |   2 -
 srcpkgs/python-hyper-h2/template              |   2 -
 srcpkgs/python-hyperframe/template            |   2 -
 srcpkgs/python-hyperlink/template             |   2 -
 srcpkgs/python-hypothesis/template            |   2 -
 srcpkgs/python-icalendar/template             |   2 -
 srcpkgs/python-idna/template                  |   2 -
 srcpkgs/python-imagesize/template             |   2 -
 srcpkgs/python-importlib_metadata/template    |   1 -
 srcpkgs/python-incremental/template           |   2 -
 srcpkgs/python-inotify/template               |   2 -
 srcpkgs/python-ipaddr/template                |   1 -
 srcpkgs/python-ipaddress/template             |   1 -
 srcpkgs/python-iptools/template               |   2 -
 srcpkgs/python-isbnlib/template               |   2 -
 srcpkgs/python-iso-8601/template              |   1 -
 srcpkgs/python-isodate/template               |   2 -
 srcpkgs/python-isort/template                 |   2 -
 srcpkgs/python-itsdangerous/template          |   2 -
 srcpkgs/python-jaraco.functools/template      |   1 -
 srcpkgs/python-jedi/template                  |   2 -
 srcpkgs/python-jmespath/template              |   2 -
 srcpkgs/python-jsonpointer/template           |   2 -
 srcpkgs/python-jsonrpclib/template            |   2 -
 srcpkgs/python-jsonschema/template            |   2 -
 srcpkgs/python-kaptan/template                |   2 -
 srcpkgs/python-keepalive/template             |   2 -
 srcpkgs/python-kitchen/template               |   2 -
 srcpkgs/python-larch/template                 |   1 -
 srcpkgs/python-ldap3/template                 |   2 -
 srcpkgs/python-libtmux/template               |   2 -
 srcpkgs/python-lockfile/template              |   2 -
 srcpkgs/python-logfury/template               |   2 -
 srcpkgs/python-magic/template                 |   2 -
 srcpkgs/python-markdown2/template             |   2 -
 srcpkgs/python-matplotlib/template            |   1 -
 srcpkgs/python-mccabe/template                |   2 -
 srcpkgs/python-mechanize/template             |   2 -
 srcpkgs/python-mistune/template               |   2 -
 srcpkgs/python-mock/template                  |   1 -
 srcpkgs/python-monotonic/template             |   1 -
 srcpkgs/python-more-itertools/template        |   1 -
 srcpkgs/python-mpd2/template                  |   2 -
 srcpkgs/python-mpmath/template                |   2 -
 srcpkgs/python-msp430-tools/template          |   1 -
 srcpkgs/python-mtranslate/template            |   2 -
 srcpkgs/python-munkres/template               |   1 -
 srcpkgs/python-musicbrainzngs/template        |   2 -
 srcpkgs/python-mygpoclient/template           |   2 -
 srcpkgs/python-namedlist/template             |   2 -
 srcpkgs/python-natsort/template               |   2 -
 srcpkgs/python-ndg_httpsclient/template       |   2 -
 srcpkgs/python-netaddr/template               |   2 -
 srcpkgs/python-nose/template                  |   2 -
 srcpkgs/python-nose2/template                 |   2 -
 srcpkgs/python-npyscreen/template             |   2 -
 srcpkgs/python-ntplib/template                |   2 -
 srcpkgs/python-oauth2client/template          |   2 -
 srcpkgs/python-oauthlib/template              |   2 -
 srcpkgs/python-olefile/template               |   2 -
 srcpkgs/python-openssl/template               |   2 -
 srcpkgs/python-packaging/template             |   2 -
 srcpkgs/python-pam/template                   |   2 -
 srcpkgs/python-pandocfilters/template         |   2 -
 srcpkgs/python-paramiko/template              |   2 -
 srcpkgs/python-parse/template                 |   2 -
 srcpkgs/python-parsing/template               |   2 -
 srcpkgs/python-parso/template                 |   1 -
 srcpkgs/python-passlib/template               |   2 -
 srcpkgs/python-pathlib/template               |   1 -
 srcpkgs/python-pathlib2/template              |   2 -
 srcpkgs/python-pathspec/template              |   2 -
 srcpkgs/python-pathtools/template             |   2 -
 srcpkgs/python-pbkdf2/template                |   2 -
 srcpkgs/python-pbr/template                   |   2 -
 srcpkgs/python-pdfrw/template                 |   2 -
 srcpkgs/python-pexpect/template               |   2 -
 srcpkgs/python-pgmigrate/template             |   2 -
 srcpkgs/python-pgpdump/template               |   2 -
 srcpkgs/python-picamera/template              |   2 -
 srcpkgs/python-pickleshare/template           |   2 -
 srcpkgs/python-pip/template                   |   2 -
 srcpkgs/python-pipenv/template                |   2 -
 srcpkgs/python-pkgconfig/template             |   2 -
 srcpkgs/python-pluggy/template                |   1 -
 srcpkgs/python-ply/template                   |   2 -
 srcpkgs/python-podcastparser/template         |   2 -
 srcpkgs/python-polib/template                 |   2 -
 srcpkgs/python-portend/template               |   2 -
 srcpkgs/python-pretend/template               |   1 -
 srcpkgs/python-progress/template              |   2 -
 srcpkgs/python-prometheus_client/template     |   2 -
 srcpkgs/python-prompt_toolkit1/template       |   1 -
 srcpkgs/python-prompt_toolkit2/template       |   1 -
 srcpkgs/python-proselint/template             |   2 -
 srcpkgs/python-protobuf/template              |   2 -
 srcpkgs/python-ptyprocess/template            |   2 -
 srcpkgs/python-py/template                    |   2 -
 srcpkgs/python-pyPEG2/template                |   2 -
 srcpkgs/python-pyacoustid/template            |   2 -
 srcpkgs/python-pyaes/template                 |   2 -
 srcpkgs/python-pyasn1-modules/template        |   2 -
 srcpkgs/python-pyasn1/template                |   2 -
 srcpkgs/python-pycodestyle/template           |   2 -
 srcpkgs/python-pycountry/template             |   2 -
 srcpkgs/python-pycparser/template             |   2 -
 srcpkgs/python-pydns/template                 |   1 -
 srcpkgs/python-pyelftools/template            |   2 -
 srcpkgs/python-pyflakes/template              |   2 -
 srcpkgs/python-pyglet/template                |   2 -
 srcpkgs/python-pykka/template                 |   2 -
 srcpkgs/python-pyotp/template                 |   2 -
 srcpkgs/python-pypcapfile/template            |   1 -
 srcpkgs/python-pyperclip/template             |   2 -
 srcpkgs/python-pyqtgraph/template             |   2 -
 srcpkgs/python-pyrfc3339/template             |   2 -
 srcpkgs/python-pyserial/template              |   2 -
 srcpkgs/python-pysocks/template               |   2 -
 srcpkgs/python-pysrt/template                 |   2 -
 srcpkgs/python-pystache/template              |   2 -
 srcpkgs/python-pyte/template                  |   2 -
 srcpkgs/python-pytest-fixture-config/template |   2 -
 srcpkgs/python-pytest-mock/template           |   2 -
 srcpkgs/python-pytest/template                |   1 -
 srcpkgs/python-pytz/template                  |   2 -
 srcpkgs/python-pyudev/template                |   2 -
 srcpkgs/python-pyx/template                   |   1 -
 srcpkgs/python-pyzbar/template                |   2 -
 srcpkgs/python-qrcode/template                |   2 -
 srcpkgs/python-random2/template               |   2 -
 srcpkgs/python-rarfile/template               |   2 -
 srcpkgs/python-raven/template                 |   2 -
 srcpkgs/python-rdflib/template                |   2 -
 srcpkgs/python-readability-lxml/template      |   2 -
 srcpkgs/python-rebulk/template                |   2 -
 srcpkgs/python-redis/template                 |   2 -
 srcpkgs/python-requests-mock/template         |   2 -
 srcpkgs/python-requests-oauthlib/template     |   2 -
 srcpkgs/python-requests-toolbelt/template     |   2 -
 srcpkgs/python-requests/template              |   2 -
 srcpkgs/python-rfc6555/template               |   2 -
 srcpkgs/python-ripe-atlas-cousteau/template   |   2 -
 srcpkgs/python-ripe-atlas-sagan/template      |   2 -
 srcpkgs/python-rsa/template                   |   2 -
 srcpkgs/python-s3transfer/template            |   2 -
 srcpkgs/python-scour/template                 |   2 -
 srcpkgs/python-selectors2/template            |   1 -
 srcpkgs/python-send2trash/template            |   2 -
 srcpkgs/python-serpent/template               |   1 -
 srcpkgs/python-service_identity/template      |   2 -
 srcpkgs/python-setuptools/template            |   1 -
 srcpkgs/python-sh/template                    |   2 -
 srcpkgs/python-simplebayes/template           |   2 -
 srcpkgs/python-simplegeneric/template         |   2 -
 srcpkgs/python-singledispatch/template        |   1 -
 srcpkgs/python-six/template                   |   2 -
 srcpkgs/python-smmap/template                 |   2 -
 srcpkgs/python-snowballstemmer/template       |   2 -
 srcpkgs/python-socketIO-client/template       |   2 -
 srcpkgs/python-soupsieve/template             |   2 -
 srcpkgs/python-spambayes/template             |   1 -
 srcpkgs/python-sqlalchemy-migrate/template    |   2 -
 srcpkgs/python-sqlparse/template              |   2 -
 srcpkgs/python-stem/template                  |   2 -
 srcpkgs/python-stevedore/template             |   2 -
 srcpkgs/python-stormssh/template              |   2 -
 srcpkgs/python-subliminal/template            |   2 -
 srcpkgs/python-tempita/template               |   2 -
 srcpkgs/python-tempora/template               |   2 -
 srcpkgs/python-termcolor/template             |   2 -
 srcpkgs/python-terminado/template             |   2 -
 srcpkgs/python-testpath/template              |   2 -
 srcpkgs/python-texttable/template             |   2 -
 srcpkgs/python-tkinter/template               |   1 -
 srcpkgs/python-tmuxp/template                 |   2 -
 srcpkgs/python-toml/template                  |   2 -
 srcpkgs/python-tqdm/template                  |   2 -
 srcpkgs/python-tracing/template               |   1 -
 srcpkgs/python-ttystatus/template             |   2 -
 srcpkgs/python-tweepy/template                |   2 -
 srcpkgs/python-twitter/template               |   2 -
 srcpkgs/python-txgithub/template              |   1 -
 srcpkgs/python-typing/template                |   1 -
 srcpkgs/python-unittest-mixins/template       |   2 -
 srcpkgs/python-urbandict/template             |   2 -
 srcpkgs/python-uritemplate/template           |   2 -
 srcpkgs/python-urllib3/template               |   2 -
 srcpkgs/python-urlnorm/template               |   1 -
 srcpkgs/python-urwidtrees/template            |   2 -
 srcpkgs/python-utils/template                 |   2 -
 srcpkgs/python-vint/template                  |   2 -
 srcpkgs/python-vispy/template                 |   1 -
 srcpkgs/python-vobject/template               |   2 -
 srcpkgs/python-voluptuous/template            |   1 -
 srcpkgs/python-watchdog/template              |   2 -
 srcpkgs/python-wcwidth/template               |   2 -
 srcpkgs/python-webassets/template             |   2 -
 srcpkgs/python-webencodings/template          |   2 -
 srcpkgs/python-websocket-client/template      |   2 -
 srcpkgs/python-wheel/template                 |   2 -
 srcpkgs/python-wikipedia/template             |   2 -
 srcpkgs/python-wsproto/template               |   2 -
 srcpkgs/python-xdg/template                   |   2 -
 srcpkgs/python-xlib/template                  |   2 -
 srcpkgs/python-xmldiff/template               |   3 -
 srcpkgs/python-xmltodict/template             |   2 -
 srcpkgs/python-yamllint/template              |   2 -
 srcpkgs/python-zc.lockfile/template           |   2 -
 srcpkgs/python-zipp/template                  |   1 -
 srcpkgs/python-zipstream/template             |   2 -
 srcpkgs/python3-3to2/template                 |   1 -
 srcpkgs/python3-CherryPy/template             |   1 -
 srcpkgs/python3-ConfigArgParse/template       |   1 -
 srcpkgs/python3-Django/template               |   1 -
 srcpkgs/python3-EasyProcess/template          |   1 -
 srcpkgs/python3-Flask-Mail/template           |   1 -
 srcpkgs/python3-Flask-RESTful/template        |   1 -
 srcpkgs/python3-Flask-SQLAlchemy/template     |   1 -
 srcpkgs/python3-Flask-User/template           |   1 -
 srcpkgs/python3-Inflector/template            |   1 -
 srcpkgs/python3-Markdown/template             |   1 -
 srcpkgs/python3-MechanicalSoup/template       |   1 -
 srcpkgs/python3-Pebble/template               |   1 -
 srcpkgs/python3-PyBrowserID/template          |   1 -
 srcpkgs/python3-PyFxA/template                |   1 -
 srcpkgs/python3-PyPDF2/template               |   1 -
 srcpkgs/python3-PyVirtualDisplay/template     |   1 -
 srcpkgs/python3-QtPy/template                 |   1 -
 srcpkgs/python3-ReParser/template             |   1 -
 srcpkgs/python3-Ropper/template               |   1 -
 srcpkgs/python3-SecretStorage/template        |   1 -
 srcpkgs/python3-SoCo/template                 |   1 -
 srcpkgs/python3-Sphinx/template               |   1 -
 srcpkgs/python3-Telethon/template             |   1 -
 srcpkgs/python3-TxSNI/template                |   1 -
 srcpkgs/python3-WebOb/template                |   1 -
 srcpkgs/python3-XlsxWriter/template           |   1 -
 srcpkgs/python3-acme/template                 |   1 -
 srcpkgs/python3-aioamqp/template              |   1 -
 srcpkgs/python3-aiodns/template               |   1 -
 srcpkgs/python3-aiofiles/template             |   1 -
 srcpkgs/python3-aiohttp-cors/template         |   1 -
 srcpkgs/python3-aiohttp-cors2/template        |   1 -
 srcpkgs/python3-aiohttp-sse-client/template   |   1 -
 srcpkgs/python3-aiohttp_socks/template        |   1 -
 srcpkgs/python3-aioinflux/template            |   1 -
 srcpkgs/python3-aionotify/template            |   1 -
 srcpkgs/python3-aioredis/template             |   1 -
 srcpkgs/python3-aiorpcx/template              |   1 -
 srcpkgs/python3-altgraph/template             |   1 -
 srcpkgs/python3-aniso8601/template            |   1 -
 srcpkgs/python3-ansible-lint/template         |   1 -
 srcpkgs/python3-anytree/template              |   1 -
 srcpkgs/python3-applib/template               |   1 -
 srcpkgs/python3-argcomplete/template          |   1 -
 srcpkgs/python3-astral/template               |   1 -
 srcpkgs/python3-astroid/template              |   1 -
 srcpkgs/python3-async-timeout/template        |   1 -
 srcpkgs/python3-async_generator/template      |   1 -
 srcpkgs/python3-atspi/template                |   1 -
 srcpkgs/python3-authres/template              |   1 -
 srcpkgs/python3-autobahn/template             |   1 -
 srcpkgs/python3-blessed/template              |   1 -
 srcpkgs/python3-boltons/template              |   1 -
 srcpkgs/python3-boto3/template                |   1 -
 srcpkgs/python3-breathe/template              |   1 -
 srcpkgs/python3-cachetools/template           |   1 -
 srcpkgs/python3-canonicaljson/template        |   1 -
 srcpkgs/python3-casttube/template             |   1 -
 srcpkgs/python3-certifi/template              |   1 -
 srcpkgs/python3-changelogs/template           |   1 -
 srcpkgs/python3-chess/template                |   1 -
 srcpkgs/python3-chromecast/template           |   1 -
 srcpkgs/python3-cjkwrap/template              |   1 -
 srcpkgs/python3-cli-ui/template               |   1 -
 srcpkgs/python3-cli_helpers/template          |   1 -
 srcpkgs/python3-click-plugins/template        |   1 -
 srcpkgs/python3-cloudscraper/template         |   1 -
 srcpkgs/python3-cmdln/template                |   1 -
 srcpkgs/python3-colorclass/template           |   1 -
 srcpkgs/python3-crccheck/template             |   1 -
 srcpkgs/python3-dateparser/template           |   1 -
 srcpkgs/python3-dbusmock/template             |   1 -
 srcpkgs/python3-deprecation/template          |   1 -
 srcpkgs/python3-discid/template               |   1 -
 srcpkgs/python3-distlib/template              |   1 -
 srcpkgs/python3-dkimpy/template               |   2 -
 srcpkgs/python3-doi/template                  |   1 -
 srcpkgs/python3-dpkt/template                 |   1 -
 srcpkgs/python3-easygui/template              |   1 -
 srcpkgs/python3-elementpath/template          |   1 -
 srcpkgs/python3-eliot/template                |   1 -
 srcpkgs/python3-enchant/template              |   1 -
 srcpkgs/python3-etesync/template              |   1 -
 srcpkgs/python3-ffmpeg-python/template        |   1 -
 srcpkgs/python3-fido2/template                |   1 -
 srcpkgs/python3-filebytes/template            |   1 -
 srcpkgs/python3-fishnet/template              |   1 -
 srcpkgs/python3-flexmock/template             |   1 -
 srcpkgs/python3-freezegun/template            |   1 -
 srcpkgs/python3-frozendict/template           |   1 -
 srcpkgs/python3-furl/template                 |   1 -
 srcpkgs/python3-geojson/template              |   1 -
 srcpkgs/python3-gitchangelog/template         |   1 -
 srcpkgs/python3-google-api-core/template      |   1 -
 .../python3-google-api-python-client/template |   1 -
 srcpkgs/python3-google-auth-httplib2/template |   1 -
 srcpkgs/python3-google-auth/template          |   1 -
 .../python3-googleapis-common-protos/template |   1 -
 srcpkgs/python3-graphviz/template             |   1 -
 srcpkgs/python3-hawkauthlib/template          |   1 -
 srcpkgs/python3-hjson/template                |   1 -
 srcpkgs/python3-hkdf/template                 |   1 -
 srcpkgs/python3-html2text/template            |   1 -
 srcpkgs/python3-humanize/template             |   1 -
 srcpkgs/python3-hypercorn/template            |   1 -
 srcpkgs/python3-i3ipc/template                |   1 -
 srcpkgs/python3-idna-ssl/template             |   1 -
 srcpkgs/python3-ifaddr/template               |   1 -
 srcpkgs/python3-influxdb/template             |   1 -
 srcpkgs/python3-ipython/template              |   1 -
 srcpkgs/python3-ipython_genutils/template     |   1 -
 srcpkgs/python3-ipython_ipykernel/template    |   1 -
 srcpkgs/python3-irc/template                  |   1 -
 srcpkgs/python3-itunespy/template             |   1 -
 srcpkgs/python3-janus/template                |   1 -
 srcpkgs/python3-jaraco.classes/template       |   1 -
 srcpkgs/python3-jaraco.collections/template   |   1 -
 srcpkgs/python3-jaraco.functools/template     |   1 -
 srcpkgs/python3-jaraco.text/template          |   1 -
 srcpkgs/python3-jaraco/template               |   1 -
 srcpkgs/python3-jeepney/template              |   1 -
 srcpkgs/python3-josepy/template               |   1 -
 srcpkgs/python3-jsondiff/template             |   1 -
 srcpkgs/python3-jsonrpc-server/template       |   1 -
 srcpkgs/python3-jupyter_client/template       |   1 -
 srcpkgs/python3-jupyter_console/template      |   1 -
 srcpkgs/python3-jupyter_core/template         |   2 -
 srcpkgs/python3-jupyter_ipywidgets/template   |   1 -
 srcpkgs/python3-jupyter_nbconvert/template    |   1 -
 srcpkgs/python3-jupyter_nbformat/template     |   1 -
 srcpkgs/python3-jupyter_notebook/template     |   1 -
 srcpkgs/python3-jupyter_qtconsole/template    |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-keyring/template              |   1 -
 srcpkgs/python3-keyrings-alt/template         |   1 -
 srcpkgs/python3-language-server/template      |   1 -
 srcpkgs/python3-macaroons/template            |   1 -
 srcpkgs/python3-macholib/template             |   1 -
 srcpkgs/python3-markdown-math/template        |   1 -
 srcpkgs/python3-marshmallow/template          |   1 -
 srcpkgs/python3-matplotlib/template           |   1 -
 srcpkgs/python3-matrix-nio/template           |   1 -
 srcpkgs/python3-minidb/template               |   1 -
 srcpkgs/python3-mock/template                 |   1 -
 srcpkgs/python3-more-itertools/template       |   1 -
 srcpkgs/python3-mpv/template                  |   1 -
 srcpkgs/python3-msoffcrypto-tool/template     |   1 -
 srcpkgs/python3-munkres/template              |   1 -
 srcpkgs/python3-musicpd/template              |   1 -
 srcpkgs/python3-mypy/template                 |   1 -
 srcpkgs/python3-mypy_extensions/template      |   1 -
 srcpkgs/python3-nbxmpp/template               |   2 -
 srcpkgs/python3-neovim/template               |   1 -
 srcpkgs/python3-networkx/template             |   1 -
 srcpkgs/python3-nose-random/template          |   1 -
 srcpkgs/python3-notify2/template              |   1 -
 srcpkgs/python3-ntlm-auth/template            |   1 -
 srcpkgs/python3-oletools/template             |   1 -
 srcpkgs/python3-opcua/template                |   1 -
 srcpkgs/python3-orderedmultidict/template     |   1 -
 srcpkgs/python3-pafy/template                 |   1 -
 srcpkgs/python3-pamqp/template                |   1 -
 srcpkgs/python3-parsedatetime/template        |   1 -
 srcpkgs/python3-parso/template                |   1 -
 srcpkgs/python3-path-and-address/template     |   1 -
 srcpkgs/python3-pcodedmp/template             |   1 -
 srcpkgs/python3-pefile/template               |   1 -
 srcpkgs/python3-pem/template                  |   1 -
 srcpkgs/python3-perf/template                 |   1 -
 srcpkgs/python3-pgspecial/template            |   1 -
 srcpkgs/python3-pgzero/template               |   1 -
 srcpkgs/python3-phonenumbers/template         |   1 -
 srcpkgs/python3-pipx/template                 |   1 -
 srcpkgs/python3-pkginfo/template              |   1 -
 srcpkgs/python3-plotly/template               |   1 -
 srcpkgs/python3-pluggy/template               |   1 -
 srcpkgs/python3-pmw/template                  |   1 -
 srcpkgs/python3-precis-i18n/template          |   1 -
 srcpkgs/python3-priority/template             |   1 -
 srcpkgs/python3-prompt_toolkit/template       |   1 -
 srcpkgs/python3-pulsectl/template             |   1 -
 srcpkgs/python3-pure-protobuf/template        |   1 -
 srcpkgs/python3-py-cpuinfo/template           |   1 -
 srcpkgs/python3-pybind11/template             |   1 -
 srcpkgs/python3-pycollada/template            |   1 -
 srcpkgs/python3-pydbus/template               |   1 -
 srcpkgs/python3-pyfavicon/template            |   1 -
 srcpkgs/python3-pyfiglet/template             |   1 -
 srcpkgs/python3-pyinfra/template              |   1 -
 srcpkgs/python3-pykeepass/template            |   1 -
 srcpkgs/python3-pykwalify/template            |   1 -
 srcpkgs/python3-pylast/template               |   1 -
 srcpkgs/python3-pylibgen/template             |   1 -
 srcpkgs/python3-pylru/template                |   1 -
 srcpkgs/python3-pypandoc/template             |   1 -
 srcpkgs/python3-pysdl2/template               |   1 -
 srcpkgs/python3-pyside2/template              |   4 -
 srcpkgs/python3-pysigset/template             |   1 -
 srcpkgs/python3-pytest-asyncio/template       |   1 -
 srcpkgs/python3-pytest-cov/template           |   1 -
 srcpkgs/python3-pytest-qt/template            |   1 -
 srcpkgs/python3-pytest-xvfb/template          |   1 -
 srcpkgs/python3-pytest/template               |   1 -
 srcpkgs/python3-pythondialog/template         |   1 -
 srcpkgs/python3-pytools/template              |   1 -
 srcpkgs/python3-pywinrm/template              |   1 -
 srcpkgs/python3-pyx/template                  |   1 -
 srcpkgs/python3-quart/template                |   1 -
 srcpkgs/python3-readlike/template             |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-requests-file/template        |   1 -
 srcpkgs/python3-requests-ntlm/template        |   1 -
 srcpkgs/python3-requests-unixsocket/template  |   1 -
 srcpkgs/python3-rss2email/template            |   1 -
 srcpkgs/python3-rtree/template                |   1 -
 srcpkgs/python3-s-tui/template                |   1 -
 srcpkgs/python3-saml2/template                |   1 -
 srcpkgs/python3-scruffy/template              |   1 -
 srcpkgs/python3-semanticversion/template      |   1 -
 srcpkgs/python3-sentry/template               |   1 -
 srcpkgs/python3-serpent/template              |   1 -
 srcpkgs/python3-setuptools/template           |   1 -
 srcpkgs/python3-shodan/template               |   1 -
 srcpkgs/python3-signedjson/template           |   1 -
 srcpkgs/python3-slugify/template              |   1 -
 srcpkgs/python3-sortedcontainers/template     |   1 -
 srcpkgs/python3-spake2/template               |   1 -
 srcpkgs/python3-sphinx_rtd_theme/template     |   1 -
 .../python3-sphinxcontrib-applehelp/template  |   1 -
 .../python3-sphinxcontrib-devhelp/template    |   1 -
 .../python3-sphinxcontrib-htmlhelp/template   |   1 -
 srcpkgs/python3-sphinxcontrib-jsmath/template |   1 -
 srcpkgs/python3-sphinxcontrib-qthelp/template |   1 -
 .../template                                  |   1 -
 srcpkgs/python3-sphinxcontrib/template        |   1 -
 srcpkgs/python3-subunit/template              |   1 -
 srcpkgs/python3-svg.path/template             |   1 -
 srcpkgs/python3-sympy/template                |   1 -
 srcpkgs/python3-tabulate/template             |   1 -
 srcpkgs/python3-terminaltables/template       |   1 -
 srcpkgs/python3-text-unidecode/template       |   1 -
 srcpkgs/python3-tinycss/template              |   1 -
 srcpkgs/python3-tkinter/template              |   1 -
 srcpkgs/python3-tldextract/template           |   1 -
 srcpkgs/python3-traitlets/template            |   1 -
 srcpkgs/python3-transifex-client/template     |   1 -
 srcpkgs/python3-treq/template                 |   1 -
 srcpkgs/python3-trimesh/template              |   1 -
 srcpkgs/python3-txacme/template               |   1 -
 srcpkgs/python3-txaio/template                |   1 -
 srcpkgs/python3-txtorcon/template             |   1 -
 srcpkgs/python3-typing_extensions/template    |   1 -
 srcpkgs/python3-tzlocal/template              |   1 -
 srcpkgs/python3-unpaddedbase64/template       |   1 -
 srcpkgs/python3-urlgrabber/template           |   1 -
 srcpkgs/python3-usb/template                  |   1 -
 srcpkgs/python3-userpath/template             |   1 -
 srcpkgs/python3-validators/template           |   1 -
 srcpkgs/python3-virtualenv-clone/template     |   1 -
 srcpkgs/python3-virtualenv/template           |   1 -
 srcpkgs/python3-virustotal-api/template       |   1 -
 srcpkgs/python3-xapp/template                 |   1 -
 srcpkgs/python3-xdg-variables/template        |   1 -
 srcpkgs/python3-xlrd/template                 |   1 -
 srcpkgs/python3-xmlschema/template            |   1 -
 srcpkgs/python3-yapf/template                 |   1 -
 srcpkgs/python3-youtube-search/template       |   1 -
 srcpkgs/python3-yoyo-migrations/template      |   1 -
 srcpkgs/python3-zeroconf/template             |   1 -
 .../python3-zope.cachedescriptors/template    |   1 -
 srcpkgs/python3-zope.component/template       |   1 -
 srcpkgs/python3-zope.configuration/template   |   1 -
 srcpkgs/python3-zope.copy/template            |   1 -
 srcpkgs/python3-zope.deferredimport/template  |   1 -
 srcpkgs/python3-zope.deprecation/template     |   1 -
 srcpkgs/python3-zope.event/template           |   1 -
 srcpkgs/python3-zope.exceptions/template      |   1 -
 srcpkgs/python3-zope.hookable/template        |   1 -
 srcpkgs/python3-zope.location/template        |   1 -
 srcpkgs/python3-zope.schema/template          |   1 -
 srcpkgs/python3-zope.testing/template         |   1 -
 srcpkgs/python3-zope.testrunner/template      |   1 -
 srcpkgs/pywal/template                        |   1 -
 srcpkgs/qalculate/template                    |   1 -
 srcpkgs/qdirstat/template                     |   1 -
 srcpkgs/qmc2-flyers/template                  |   1 -
 srcpkgs/qmc2-snapshots/template               |   1 -
 srcpkgs/qmc2/template                         |   1 -
 srcpkgs/qmk/template                          |   1 -
 srcpkgs/qomui/template                        |   1 -
 srcpkgs/qrintf/template                       |   1 -
 srcpkgs/qtcreator/template                    |   1 -
 srcpkgs/quixand/template                      |   1 -
 srcpkgs/quodlibet/template                    |   1 -
 srcpkgs/qytdl/template                        |   1 -
 srcpkgs/racket/template                       |   1 -
 srcpkgs/radicale/template                     |   1 -
 srcpkgs/radicale2/template                    |   1 -
 srcpkgs/ranger/template                       |   1 -
 srcpkgs/rapidjson/template                    |   1 -
 srcpkgs/rapidxml/template                     |   1 -
 srcpkgs/rapydscript-ng/template               |   1 -
 srcpkgs/rcm/template                          |   1 -
 srcpkgs/rdumpfs/template                      |   1 -
 srcpkgs/rebar3/template                       |   1 -
 srcpkgs/rednotebook/template                  |   1 -
 srcpkgs/remhind/template                      |   1 -
 srcpkgs/rex/template                          |   1 -
 srcpkgs/rinse/template                        |   1 -
 srcpkgs/ripe-atlas-tools/template             |   1 -
 srcpkgs/rkhunter/template                     |   1 -
 srcpkgs/rocksndiamonds/template               |   1 -
 srcpkgs/rpi-firmware/template                 |   1 -
 srcpkgs/rpmextract/template                   |   1 -
 srcpkgs/rsnapshot/template                    |   1 -
 srcpkgs/rtl8812au-dkms/template               |   1 -
 srcpkgs/rtl8822bu-dkms/template               |   1 -
 srcpkgs/rubber/template                       |   1 -
 srcpkgs/ruby-addressable/template             |   1 -
 srcpkgs/ruby-asciidoctor/template             |   1 -
 srcpkgs/ruby-concurrent-ruby/template         |   1 -
 srcpkgs/ruby-connection_pool/template         |   1 -
 srcpkgs/ruby-deep_merge/template              |   1 -
 srcpkgs/ruby-ethon/template                   |   1 -
 srcpkgs/ruby-faraday/template                 |   1 -
 srcpkgs/ruby-faraday_middleware/template      |   1 -
 srcpkgs/ruby-filesize/template                |   1 -
 srcpkgs/ruby-gh/template                      |   1 -
 srcpkgs/ruby-highline/template                |   1 -
 srcpkgs/ruby-httparty/template                |   1 -
 srcpkgs/ruby-launchy/template                 |   1 -
 srcpkgs/ruby-manpages/template                |   1 -
 srcpkgs/ruby-mime-types-data/template         |   1 -
 srcpkgs/ruby-mime-types/template              |   1 -
 srcpkgs/ruby-multi_json/template              |   1 -
 srcpkgs/ruby-multi_xml/template               |   1 -
 srcpkgs/ruby-multipart-post/template          |   1 -
 srcpkgs/ruby-mustache/template                |   1 -
 srcpkgs/ruby-net-http-persistent/template     |   1 -
 srcpkgs/ruby-net-http-pipeline/template       |   1 -
 srcpkgs/ruby-public_suffix/template           |   1 -
 srcpkgs/ruby-pusher-client/template           |   1 -
 srcpkgs/ruby-rainbow/template                 |   1 -
 srcpkgs/ruby-rb-readline/template             |   1 -
 srcpkgs/ruby-ronn/template                    |   1 -
 srcpkgs/ruby-rubysl-singleton/template        |   1 -
 srcpkgs/ruby-semantic_puppet/template         |   1 -
 srcpkgs/ruby-sync/template                    |   1 -
 srcpkgs/ruby-travis/template                  |   1 -
 srcpkgs/ruby-typhoeus/template                |   1 -
 srcpkgs/ruby-websocket/template               |   1 -
 srcpkgs/ruby/template                         |   2 -
 srcpkgs/run-mailcap/template                  |   1 -
 srcpkgs/runelite-launcher/template            |   1 -
 srcpkgs/runit-iptables/template               |   1 -
 srcpkgs/runit-kdump/template                  |   1 -
 srcpkgs/runit-nftables/template               |   1 -
 srcpkgs/runit-swap/template                   |   1 -
 srcpkgs/rust/template                         |   1 -
 srcpkgs/rxvt-unicode/template                 |   1 -
 srcpkgs/s3cmd/template                        |   1 -
 srcpkgs/s6-dns/template                       |   1 -
 srcpkgs/s6-linux-utils/template               |   1 -
 srcpkgs/s6-networking/template                |   1 -
 srcpkgs/s6-portable-utils/template            |   1 -
 srcpkgs/s6-rc/template                        |   1 -
 srcpkgs/s6/template                           |   1 -
 srcpkgs/sabnzbd/template                      |   1 -
 srcpkgs/safeeyes/template                     |   1 -
 srcpkgs/salt/template                         |   1 -
 srcpkgs/sandfox/template                      |   1 -
 srcpkgs/sauerbraten/template                  |   1 -
 srcpkgs/sbcl/template                         |   1 -
 srcpkgs/sbt/template                          |   1 -
 srcpkgs/scanmem/template                      |   1 -
 srcpkgs/scapy/template                        |   1 -
 srcpkgs/schedule/template                     |   1 -
 srcpkgs/screenFetch/template                  |   1 -
 srcpkgs/screenkey/template                    |   1 -
 srcpkgs/screenplain/template                  |   1 -
 srcpkgs/seafile-libclient/template            |   2 -
 srcpkgs/sendEmail/template                    |   1 -
 srcpkgs/setconf/template                      |   2 -
 srcpkgs/shared-color-targets/template         |   1 -
 srcpkgs/shared-desktop-ontologies/template    |   1 -
 srcpkgs/shiboken2/template                    |   2 -
 srcpkgs/shorewall/template                    |   3 -
 srcpkgs/shunit2/template                      |   1 -
 srcpkgs/sickbeard/template                    |   1 -
 srcpkgs/signond/template                      |   1 -
 srcpkgs/sigrok-firmware-fx2lafw/template      |   1 -
 srcpkgs/skalibs/template                      |   1 -
 srcpkgs/slim-void-theme/template              |   1 -
 srcpkgs/snazzer/template                      |   1 -
 srcpkgs/sonata/template                       |   1 -
 srcpkgs/sound-icons/template                  |   1 -
 srcpkgs/sound-theme-freedesktop/template      |   1 -
 srcpkgs/soundconverter/template               |   1 -
 srcpkgs/soundfont-fluid/template              |   1 -
 srcpkgs/source-sans-pro/template              |   1 -
 srcpkgs/spampd/template                       |   1 -
 srcpkgs/sparsehash/template                   |   1 -
 srcpkgs/spdx-licenses-list/template           |   4 -
 srcpkgs/spectre-meltdown-checker/template     |   1 -
 srcpkgs/speed-dreams/template                 |   1 -
 srcpkgs/speedometer/template                  |   1 -
 srcpkgs/speedtest-cli/template                |   1 -
 srcpkgs/spice-protocol/template               |   1 -
 srcpkgs/sqlmap/template                       |   1 -
 srcpkgs/ssh-audit/template                    |   1 -
 srcpkgs/sshuttle/template                     |   1 -
 srcpkgs/ssoma/template                        |   1 -
 srcpkgs/st/template                           |   1 -
 srcpkgs/starfighter/template                  |   1 -
 srcpkgs/startup/template                      |   1 -
 srcpkgs/statnot/template                      |   1 -
 srcpkgs/stcgal/template                       |   1 -
 srcpkgs/steam-fonts/template                  |   1 -
 srcpkgs/stellarium/template                   |   1 -
 srcpkgs/stig/template                         |   1 -
 srcpkgs/stk/template                          |   1 -
 srcpkgs/stlarch-font/template                 |   1 -
 srcpkgs/stow/template                         |   1 -
 srcpkgs/straw-viewer/template                 |   1 -
 srcpkgs/streamlink/template                   |   1 -
 srcpkgs/strip-nondeterminism/template         |   1 -
 srcpkgs/supertux2/template                    |   1 -
 srcpkgs/supertuxkart/template                 |   1 -
 srcpkgs/surfraw/template                      |   1 -
 srcpkgs/sv-helper/template                    |   1 -
 srcpkgs/swaks/template                        |   1 -
 srcpkgs/sway/template                         |   1 -
 srcpkgs/synapse/template                      |   1 -
 srcpkgs/syncplay/template                     |   1 -
 srcpkgs/syncthing-gtk/template                |   1 -
 srcpkgs/system-config-printer/template        |   1 -
 srcpkgs/t-prot/template                       |   1 -
 srcpkgs/t2ec/template                         |   1 -
 srcpkgs/taisei/template                       |   1 -
 srcpkgs/tango-icon-theme/template             |   1 -
 srcpkgs/tcllib/template                       |   1 -
 srcpkgs/tdrop/template                        |   1 -
 srcpkgs/tegaki-zinnia-japanese/template       |   1 -
 srcpkgs/tekaim/template                       |   1 -
 srcpkgs/telepathy-python/template             |   1 -
 srcpkgs/telepresence/template                 |   1 -
 srcpkgs/termdown/template                     |   1 -
 srcpkgs/terminal_markdown_viewer/template     |   1 -
 srcpkgs/terminator/template                   |   1 -
 srcpkgs/terminus-font/template                |   1 -
 srcpkgs/termsyn-font/template                 |   1 -
 srcpkgs/termtosvg/template                    |   1 -
 srcpkgs/tesseract-ocr/template                | 156 ------------------
 srcpkgs/testssl.sh/template                   |   1 -
 srcpkgs/tewi-font/template                    |   1 -
 srcpkgs/texi2html/template                    |   1 -
 srcpkgs/texlive-basic/template                |   1 -
 srcpkgs/texlive-bibtexextra/template          |   1 -
 srcpkgs/texlive-core/template                 |   1 -
 srcpkgs/texlive-fontsextra/template           |   1 -
 srcpkgs/texlive-formatsextra/template         |   1 -
 srcpkgs/texlive-full/template                 |   1 -
 srcpkgs/texlive-games/template                |   1 -
 srcpkgs/texlive-humanities/template           |   1 -
 srcpkgs/texlive-lang/template                 |   1 -
 srcpkgs/texlive-langchinese/template          |   1 -
 srcpkgs/texlive-langcyrillic/template         |   1 -
 srcpkgs/texlive-langextra/template            |   1 -
 srcpkgs/texlive-langgreek/template            |   1 -
 srcpkgs/texlive-langjapanese/template         |   1 -
 srcpkgs/texlive-langkorean/template           |   1 -
 srcpkgs/texlive-latexextra/template           |   1 -
 srcpkgs/texlive-minimal/template              |   1 -
 srcpkgs/texlive-most/template                 |   1 -
 srcpkgs/texlive-music/template                |   1 -
 srcpkgs/texlive-pictures/template             |   1 -
 srcpkgs/texlive-pstricks/template             |   1 -
 srcpkgs/texlive-publishers/template           |   1 -
 srcpkgs/texlive-science/template              |   1 -
 srcpkgs/thefuck/template                      |   1 -
 srcpkgs/thinkpad-scripts/template             |   1 -
 srcpkgs/tlp/template                          |   2 -
 srcpkgs/tmux-xpanes/template                  |   1 -
 srcpkgs/tmuxc/template                        |   1 -
 srcpkgs/todoman/template                      |   1 -
 srcpkgs/toot/template                         |   1 -
 srcpkgs/tpm/template                          |   1 -
 srcpkgs/trackma/template                      |   1 -
 srcpkgs/treeline/template                     |   1 -
 srcpkgs/tremc/template                        |   1 -
 srcpkgs/trident-icons/template                |   1 -
 srcpkgs/triehash/template                     |   1 -
 srcpkgs/tryton/template                       |   1 -
 srcpkgs/ttf-bitstream-vera/template           |   1 -
 srcpkgs/ttf-material-icons/template           |   1 -
 srcpkgs/ttf-ubuntu-font-family/template       |   1 -
 srcpkgs/tuimoji/template                      |   1 -
 srcpkgs/tuir/template                         |   2 -
 srcpkgs/turses/template                       |   1 -
 srcpkgs/tuxpaint-stamps/template              |   1 -
 srcpkgs/tuxpaint/template                     |   1 -
 srcpkgs/tvbrowser/template                    |   1 -
 srcpkgs/twaindsm/template                     |   1 -
 srcpkgs/twemoji/template                      |   1 -
 srcpkgs/txt2man/template                      |   1 -
 srcpkgs/tzdata/template                       |   1 -
 srcpkgs/tzupdate/template                     |   1 -
 srcpkgs/u-boot-menu/template                  |   1 -
 srcpkgs/uberwriter/template                   |   1 -
 srcpkgs/udiskie/template                      |   1 -
 srcpkgs/ufetch/template                       |   1 -
 srcpkgs/ufoai/template                        |   1 -
 srcpkgs/ufw-extras/template                   |   1 -
 srcpkgs/ufw/template                          |   1 -
 srcpkgs/uhd/template                          |   1 -
 srcpkgs/unicode-emoji/template                |   1 -
 srcpkgs/unknown-horizons/template             |   1 -
 srcpkgs/unoconv/template                      |   1 -
 srcpkgs/unp/template                          |   1 -
 srcpkgs/urbanterror-data/template             |   1 -
 srcpkgs/urlscan/template                      |   1 -
 srcpkgs/urlwatch/template                     |   1 -
 srcpkgs/urxvt-perls/template                  |   1 -
 srcpkgs/usb-modeswitch-data/template          |   1 -
 srcpkgs/vala-panel-appmenu/template           |   1 -
 srcpkgs/vala/template                         |   1 -
 srcpkgs/variety/template                      |   1 -
 srcpkgs/vdirsyncer/template                   |   1 -
 srcpkgs/vdrift/template                       |   1 -
 srcpkgs/vidcutter/template                    |   1 -
 srcpkgs/vigra/template                        |   1 -
 srcpkgs/vim-colorschemes/template             |   1 -
 srcpkgs/vim-gnupg/template                    |   1 -
 srcpkgs/vim/template                          |   1 -
 srcpkgs/vips/template                         |   1 -
 srcpkgs/virt-manager/template                 |   2 -
 srcpkgs/virtme/template                       |   1 -
 srcpkgs/virtualbox-ose/template               |   2 -
 srcpkgs/virtualenvwrapper/template            |   1 -
 srcpkgs/visidata/template                     |   1 -
 srcpkgs/void-artwork/template                 |   1 -
 srcpkgs/void-docs/template                    |   1 -
 srcpkgs/void-release-keys/template            |   1 -
 srcpkgs/void-repo-nonfree/template            |   2 -
 srcpkgs/void-updates/template                 |   1 -
 srcpkgs/volctl/template                       |   1 -
 srcpkgs/voltron/template                      |   1 -
 srcpkgs/vpm/template                          |   1 -
 srcpkgs/vpnc-scripts/template                 |   1 -
 srcpkgs/vpnd/template                         |   1 -
 srcpkgs/vsv/template                          |   1 -
 srcpkgs/warsow-data/template                  |   1 -
 srcpkgs/warzone2100/template                  |   1 -
 srcpkgs/wayland-protocols/template            |   1 -
 srcpkgs/weather/template                      |   1 -
 srcpkgs/wee-slack/template                    |   1 -
 srcpkgs/wesnoth/template                      |   1 -
 srcpkgs/wfuzz/template                        |   1 -
 srcpkgs/wgetpaste/template                    |   1 -
 srcpkgs/when/template                         |   1 -
 srcpkgs/wicd/template                         |   2 -
 srcpkgs/widelands-maps/template               |   1 -
 srcpkgs/widelands/template                    |   1 -
 srcpkgs/wifi-firmware/template                |   1 -
 srcpkgs/wifish/template                       |   1 -
 srcpkgs/wine-gecko/template                   |   1 -
 srcpkgs/wine-mono/template                    |   1 -
 srcpkgs/wine/template                         |   1 -
 srcpkgs/winetricks/template                   |   1 -
 srcpkgs/wok/template                          |   1 -
 srcpkgs/words-mnemonic/template               |   1 -
 srcpkgs/words-web2/template                   |   1 -
 srcpkgs/wpgtk/template                        |   1 -
 srcpkgs/wpull/template                        |   1 -
 srcpkgs/wqy-microhei/template                 |   1 -
 srcpkgs/xapian-core/template                  |   1 -
 srcpkgs/xbitmaps/template                     |   1 -
 srcpkgs/xbps-triggers/template                |   1 -
 srcpkgs/xcb-proto/template                    |   1 -
 srcpkgs/xcursor-themes/template               |   1 -
 srcpkgs/xcursor-vanilla-dmz/template          |   1 -
 srcpkgs/xdg-utils/template                    |   1 -
 srcpkgs/xdgmenumaker/template                 |   1 -
 srcpkgs/xdot/template                         |   1 -
 srcpkgs/xed/template                          |   1 -
 srcpkgs/xerces-c/template                     |   1 -
 srcpkgs/xfwm4-themes/template                 |   1 -
 srcpkgs/xkb-qwerty-fr/template                |   1 -
 srcpkgs/xkcdpass/template                     |   1 -
 srcpkgs/xkeyboard-config/template             |   1 -
 srcpkgs/xmltoman/template                     |   1 -
 srcpkgs/xmoto/template                        |   1 -
 srcpkgs/xonotic-data-low/template             |   1 -
 srcpkgs/xonotic-data/template                 |   1 -
 srcpkgs/xonsh/template                        |   1 -
 srcpkgs/xorg-cf-files/template                |   1 -
 srcpkgs/xorg-util-macros/template             |   1 -
 srcpkgs/xtools/template                       |   1 -
 srcpkgs/xtrans/template                       |   1 -
 srcpkgs/xye/template                          |   1 -
 srcpkgs/yadm/template                         |   1 -
 srcpkgs/yaru-plus/template                    |   1 -
 srcpkgs/yaru/template                         |   1 -
 srcpkgs/yelp-tools/template                   |   1 -
 srcpkgs/yelp-xsl/template                     |   1 -
 srcpkgs/you-get/template                      |   1 -
 srcpkgs/youtube-dl/template                   |   1 -
 srcpkgs/youtube-viewer/template               |   1 -
 srcpkgs/yq/template                           |   1 -
 srcpkgs/ytcc/template                         |   1 -
 srcpkgs/ytmdl/template                        |   1 -
 srcpkgs/yturl/template                        |   1 -
 srcpkgs/yubikey-manager/template              |   1 -
 srcpkgs/zabbix/template                       |   1 -
 srcpkgs/zd1211-firmware/template              |   1 -
 srcpkgs/zeek/template                         |   3 -
 srcpkgs/zeroinstall/template                  |   1 -
 srcpkgs/zfs-auto-snapshot/template            |   1 -
 srcpkgs/zfs-prune-snapshots/template          |   1 -
 srcpkgs/zfsbootmenu/template                  |   1 -
 srcpkgs/zim/template                          |   1 -
 srcpkgs/zola/template                         |   1 -
 srcpkgs/zookeeper/template                    |   1 -
 srcpkgs/zramen/template                       |   1 -
 srcpkgs/zsh-autosuggestions/template          |   1 -
 srcpkgs/zsh-completions/template              |   1 -
 srcpkgs/zsh-history-substring-search/template |   1 -
 srcpkgs/zsh-syntax-highlighting/template      |   1 -
 srcpkgs/zynaddsubfx/template                  |   1 -
 srcpkgs/zzz-user-hooks/template               |   1 -
 2115 files changed, 2747 deletions(-)

diff --git a/srcpkgs/0ad-data/template b/srcpkgs/0ad-data/template
index 325dfbf5cc6..f9e93d4c324 100644
--- a/srcpkgs/0ad-data/template
+++ b/srcpkgs/0ad-data/template
@@ -2,7 +2,6 @@
 pkgname=0ad-data
 version=0.0.23b
 revision=1
-archs=noarch
 wrksrc="0ad-${version}-alpha"
 short_desc="Historically-based real-time strategy game (data files)"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/66/template b/srcpkgs/66/template
index ccd676575f9..cd81c7d184d 100644
--- a/srcpkgs/66/template
+++ b/srcpkgs/66/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 66-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}-${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/7kaa/template b/srcpkgs/7kaa/template
index 0c0cb4dd4f6..693881b2ecf 100644
--- a/srcpkgs/7kaa/template
+++ b/srcpkgs/7kaa/template
@@ -21,7 +21,6 @@ pre_configure() {
 }
 
 7kaa-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	license="MIT"
 	pkg_install() {
diff --git a/srcpkgs/Adapta/template b/srcpkgs/Adapta/template
index 03a736b1cc8..7c1029ba44a 100644
--- a/srcpkgs/Adapta/template
+++ b/srcpkgs/Adapta/template
@@ -2,7 +2,6 @@
 pkgname=Adapta
 version=3.95.0.11
 revision=2
-archs=noarch
 wrksrc="adapta-gtk-theme-$version"
 build_style=gnu-configure
 hostmakedepends="automake glib-devel inkscape parallel pkg-config
diff --git a/srcpkgs/Autodia/template b/srcpkgs/Autodia/template
index 83cb4e1fcca..8e91247e940 100644
--- a/srcpkgs/Autodia/template
+++ b/srcpkgs/Autodia/template
@@ -2,7 +2,6 @@
 pkgname=Autodia
 version=2.14
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/CImg/template b/srcpkgs/CImg/template
index a1df4972bfc..2db3a8d4108 100644
--- a/srcpkgs/CImg/template
+++ b/srcpkgs/CImg/template
@@ -2,7 +2,6 @@
 pkgname=CImg
 version=2.9.1
 revision=1
-archs=noarch
 wrksrc="CImg-v.${version}"
 depends="libgraphicsmagick-devel fftw-devel"
 short_desc="Open-source C++ toolkit for image processing"
diff --git a/srcpkgs/Cataclysm-DDA/template b/srcpkgs/Cataclysm-DDA/template
index 6b7ef57eed1..b04b27b7d32 100644
--- a/srcpkgs/Cataclysm-DDA/template
+++ b/srcpkgs/Cataclysm-DDA/template
@@ -57,7 +57,6 @@ Cataclysm-DDA-tiles_package() {
 
 Cataclysm-DDA-tiles-data_package() {
 	short_desc+=" - tiles data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cataclysm-dda/gfx
 		vmove usr/share/cataclysm-dda/sound
@@ -66,7 +65,6 @@ Cataclysm-DDA-tiles-data_package() {
 
 Cataclysm-DDA-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/Cendric/template b/srcpkgs/Cendric/template
index 6f5c16f479b..6dcc1f33e70 100644
--- a/srcpkgs/Cendric/template
+++ b/srcpkgs/Cendric/template
@@ -24,7 +24,6 @@ post_install() {
 Cendric-data_package() {
 	short_desc+=" - data files"
 	repository=nonfree
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/ClusterSSH/template b/srcpkgs/ClusterSSH/template
index ade9b7fefa0..a614f1643c3 100644
--- a/srcpkgs/ClusterSSH/template
+++ b/srcpkgs/ClusterSSH/template
@@ -2,7 +2,6 @@
 pkgname=ClusterSSH
 version=4.14
 revision=1
-archs=noarch
 wrksrc="clusterssh-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="xterm openssh
diff --git a/srcpkgs/ETL/template b/srcpkgs/ETL/template
index 7b8b01956c3..111f96217d0 100644
--- a/srcpkgs/ETL/template
+++ b/srcpkgs/ETL/template
@@ -3,7 +3,6 @@ pkgname=ETL
 reverts="1.3.11_1"
 version=1.2.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Extended Template Library"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/Electron-Cash/template b/srcpkgs/Electron-Cash/template
index 6cf5a5db45c..131db532944 100644
--- a/srcpkgs/Electron-Cash/template
+++ b/srcpkgs/Electron-Cash/template
@@ -2,7 +2,6 @@
 pkgname=Electron-Cash
 version=4.0.12
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-PyQt5 python3-PyQt5-svg python3-qrcode python3-dateutil
diff --git a/srcpkgs/Fonts-TLWG/template b/srcpkgs/Fonts-TLWG/template
index 0baf7333541..42b5d2a74ee 100644
--- a/srcpkgs/Fonts-TLWG/template
+++ b/srcpkgs/Fonts-TLWG/template
@@ -2,7 +2,6 @@
 pkgname=Fonts-TLWG
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="fonts-tlwg-${version}"
 build_style=gnu-configure
 configure_args="--with-ttfdir=/usr/share/fonts/TTF --with-otfdir=/usr/share/fonts/OTF
@@ -22,7 +21,6 @@ post_install() {
 }
 
 Fonts-TLWG-otf_package() {
-	archs=noarch
 	short_desc="Thai fonts OTF"
 	font_dirs="/usr/share/fonts/OTF"
 	pkg_install() {
diff --git a/srcpkgs/GCP-Guest-Environment/template b/srcpkgs/GCP-Guest-Environment/template
index 77e5e396d4f..2c3db4f6f20 100644
--- a/srcpkgs/GCP-Guest-Environment/template
+++ b/srcpkgs/GCP-Guest-Environment/template
@@ -2,7 +2,6 @@
 pkgname=GCP-Guest-Environment
 version=20191210
 revision=1
-archs=noarch
 wrksrc="compute-image-packages-${version}"
 build_wrksrc="packages/python-google-compute-engine"
 build_style=python2-module
diff --git a/srcpkgs/Grammalecte/template b/srcpkgs/Grammalecte/template
index 00e2bbb34a8..f62e8343202 100644
--- a/srcpkgs/Grammalecte/template
+++ b/srcpkgs/Grammalecte/template
@@ -2,7 +2,6 @@
 pkgname=Grammalecte
 version=1.6.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=python3-module
 hostmakedepends="python3-setuptools bsdtar"
diff --git a/srcpkgs/ISOEnts/template b/srcpkgs/ISOEnts/template
index 3f44042e507..0727d8647d6 100644
--- a/srcpkgs/ISOEnts/template
+++ b/srcpkgs/ISOEnts/template
@@ -2,7 +2,6 @@
 pkgname=ISOEnts
 version=1986
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip bsdtar"
 depends="xmlcatmgr"
diff --git a/srcpkgs/Komikku/template b/srcpkgs/Komikku/template
index 59504a4c087..06b252bdaa7 100644
--- a/srcpkgs/Komikku/template
+++ b/srcpkgs/Komikku/template
@@ -2,7 +2,6 @@
 pkgname=Komikku
 version=0.19.0
 revision=1
-archs=noarch
 wrksrc=Komikku-v${version}
 build_style=meson
 hostmakedepends="appstream-glib desktop-file-utils glib-devel gettext
diff --git a/srcpkgs/LanguageTool/template b/srcpkgs/LanguageTool/template
index a73cc80c9e5..ea588136f8a 100644
--- a/srcpkgs/LanguageTool/template
+++ b/srcpkgs/LanguageTool/template
@@ -2,7 +2,6 @@
 pkgname=LanguageTool
 version=4.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Checks your writing in more than 20 languages"
diff --git a/srcpkgs/MoinMoin/template b/srcpkgs/MoinMoin/template
index 2c13dc6a06f..998546ac5b9 100644
--- a/srcpkgs/MoinMoin/template
+++ b/srcpkgs/MoinMoin/template
@@ -2,7 +2,6 @@
 pkgname=MoinMoin
 version=1.9.10
 revision=1
-archs=noarch
 wrksrc=moin-${version}
 build_style=python2-module
 pycompile_module="MoinMoin jabberbot"
diff --git a/srcpkgs/OpenCPN-gshhs-crude/template b/srcpkgs/OpenCPN-gshhs-crude/template
index b2c64e94093..027b3c7a66b 100644
--- a/srcpkgs/OpenCPN-gshhs-crude/template
+++ b/srcpkgs/OpenCPN-gshhs-crude/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://opencpn.org/"
 distfiles="https://launchpad.net/~opencpn/+archive/ubuntu/opencpn/+files/opencpn-gshhs_${version}.orig.tar.xz"
 checksum=bb45b68af09d5a995594748f507cd533505264f0483c8cb8425693331cccf203
-archs=noarch
 
 do_install() {
 	for file in gshhs/*; do
@@ -19,7 +18,6 @@ do_install() {
 
 OpenCPN-gshhs-low_package() {
 	short_desc="${short_desc/Crude/Low}"
-	archs=noarch
 	depends="OpenCPN-gshhs-crude"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-c-1.dat
@@ -30,7 +28,6 @@ OpenCPN-gshhs-low_package() {
 
 OpenCPN-gshhs-intermediate_package() {
 	short_desc="${short_desc/Crude/Intermediate}"
-	archs=noarch
 	depends="OpenCPN-gshhs-low"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-i-1.dat
@@ -41,7 +38,6 @@ OpenCPN-gshhs-intermediate_package() {
 
 OpenCPN-gshhs-high_package() {
 	short_desc="${short_desc/Crude/High}"
-	archs=noarch
 	depends="OpenCPN-gshhs-intermediate"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-h-1.dat
@@ -52,7 +48,6 @@ OpenCPN-gshhs-high_package() {
 
 OpenCPN-gshhs-full_package() {
 	short_desc="${short_desc/Crude/Full}"
-	archs=noarch
 	depends="OpenCPN-gshhs-high"
 	pkg_install() {
 		vmove usr/share/opencpn/gshhs/poly-f-1.dat
diff --git a/srcpkgs/OpenLP/template b/srcpkgs/OpenLP/template
index ccae6d0282e..f8ea2a4b35b 100644
--- a/srcpkgs/OpenLP/template
+++ b/srcpkgs/OpenLP/template
@@ -2,7 +2,6 @@
 pkgname=OpenLP
 version=2.4.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="openlp"
 hostmakedepends="python3-setuptools qt5-host-tools"
diff --git a/srcpkgs/OpenRCT2/template b/srcpkgs/OpenRCT2/template
index 5b0c68a5f80..14e114c58fc 100644
--- a/srcpkgs/OpenRCT2/template
+++ b/srcpkgs/OpenRCT2/template
@@ -53,7 +53,6 @@ post_extract() {
 
 OpenRCT2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openrct2
 	}
diff --git a/srcpkgs/PhotoCollage/template b/srcpkgs/PhotoCollage/template
index e649885fda0..7f06aff8d51 100644
--- a/srcpkgs/PhotoCollage/template
+++ b/srcpkgs/PhotoCollage/template
@@ -2,7 +2,6 @@
 pkgname=PhotoCollage
 version=1.4.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3"
 depends="python3-Pillow python3-gobject"
diff --git a/srcpkgs/ProofGeneral/template b/srcpkgs/ProofGeneral/template
index 208e58f8d68..1b0aaf72921 100644
--- a/srcpkgs/ProofGeneral/template
+++ b/srcpkgs/ProofGeneral/template
@@ -3,7 +3,6 @@ pkgname=ProofGeneral
 version=4.4
 revision=2
 wrksrc="PG-${version}"
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="emacs which"
 depends="emacs perl"
diff --git a/srcpkgs/PyInstaller/template b/srcpkgs/PyInstaller/template
index ad2dadf10f3..4b3d02468de 100644
--- a/srcpkgs/PyInstaller/template
+++ b/srcpkgs/PyInstaller/template
@@ -2,7 +2,6 @@
 pkgname=PyInstaller
 version=3.6
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3 python3-altgraph"
diff --git a/srcpkgs/Pyrex/template b/srcpkgs/Pyrex/template
index 5ab3598b1c0..c1d90574aaf 100644
--- a/srcpkgs/Pyrex/template
+++ b/srcpkgs/Pyrex/template
@@ -2,7 +2,6 @@
 pkgname=Pyrex
 version=0.9.9
 revision=4
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python-devel"
diff --git a/srcpkgs/ReText/template b/srcpkgs/ReText/template
index a6551fbdf7c..5d657ed46ca 100644
--- a/srcpkgs/ReText/template
+++ b/srcpkgs/ReText/template
@@ -2,7 +2,6 @@
 pkgname=ReText
 version=7.0.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ReText"
 wrksrc="${pkgname,,}-${version}"
diff --git a/srcpkgs/SMC/template b/srcpkgs/SMC/template
index 00f9763bfdd..623bde41157 100644
--- a/srcpkgs/SMC/template
+++ b/srcpkgs/SMC/template
@@ -37,7 +37,6 @@ post_install() {
 
 SMC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/smc
 	}
diff --git a/srcpkgs/SPIRV-Headers/template b/srcpkgs/SPIRV-Headers/template
index 6cc87dc386c..a5e9c17a3ce 100644
--- a/srcpkgs/SPIRV-Headers/template
+++ b/srcpkgs/SPIRV-Headers/template
@@ -2,7 +2,6 @@
 pkgname=SPIRV-Headers
 version=1.5.3
 revision=1
-archs=noarch
 build_style=cmake
 short_desc="Machine-readable files for the SPIR-V Registry"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/Solaar/template b/srcpkgs/Solaar/template
index da77237f898..3d03d7b4966 100644
--- a/srcpkgs/Solaar/template
+++ b/srcpkgs/Solaar/template
@@ -2,7 +2,6 @@
 pkgname=Solaar
 version=1.0.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyudev"
diff --git a/srcpkgs/TSC/template b/srcpkgs/TSC/template
index 10150e7481c..f28c36a1aa1 100644
--- a/srcpkgs/TSC/template
+++ b/srcpkgs/TSC/template
@@ -25,7 +25,6 @@ post_install() {
 
 TSC-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tsc
 	}
diff --git a/srcpkgs/TwitchNotifier/template b/srcpkgs/TwitchNotifier/template
index 3bbba11db49..549e5635542 100644
--- a/srcpkgs/TwitchNotifier/template
+++ b/srcpkgs/TwitchNotifier/template
@@ -6,7 +6,6 @@ build_style=python3-module
 hostmakedepends="python3-devel"
 makedepends="python3-devel"
 depends="python3-gobject python3-requests libnotify"
-archs=noarch
 short_desc="Daemon that notifies you about your followed channels on Twitch.TV"
 maintainer="Giedrius Statkevičius <giedriuswork@gmail.com>"
 license="GPL-3"
diff --git a/srcpkgs/Uranium/template b/srcpkgs/Uranium/template
index ce0c7920cf9..f09179bd9a6 100644
--- a/srcpkgs/Uranium/template
+++ b/srcpkgs/Uranium/template
@@ -2,7 +2,6 @@
 pkgname=Uranium
 version=4.7.0
 revision=1
-archs=noarch
 build_style=cmake
 pycompile_dirs="usr/lib/uranium/plugins"
 hostmakedepends="python3"
diff --git a/srcpkgs/Vulkan-Headers/template b/srcpkgs/Vulkan-Headers/template
index 2fae2dda25b..3c089e9f79f 100644
--- a/srcpkgs/Vulkan-Headers/template
+++ b/srcpkgs/Vulkan-Headers/template
@@ -2,7 +2,6 @@
 pkgname=Vulkan-Headers
 version=1.2.141
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=cmake
 short_desc="Vulkan header files"
diff --git a/srcpkgs/WiringPi/template b/srcpkgs/WiringPi/template
index 562506c41b5..b9e5c5cbff7 100644
--- a/srcpkgs/WiringPi/template
+++ b/srcpkgs/WiringPi/template
@@ -104,7 +104,6 @@ WiringPi-gpio_package() {
 
 WiringPi-examples_package() {
 	short_desc+=" - examples"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/share/examples
 	}
diff --git a/srcpkgs/WoeUSB/template b/srcpkgs/WoeUSB/template
index 1bb0efa56ff..1ac9d5134a1 100644
--- a/srcpkgs/WoeUSB/template
+++ b/srcpkgs/WoeUSB/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 WoeUSB-cli_package() {
-	archs=noarch
 	depends="bash grub ntfs-3g parted wget"
 	short_desc+=" - command line only"
 	pkg_install() {
diff --git a/srcpkgs/XyGrib-maps/template b/srcpkgs/XyGrib-maps/template
index 797bb62d81a..6c5f0672785 100644
--- a/srcpkgs/XyGrib-maps/template
+++ b/srcpkgs/XyGrib-maps/template
@@ -11,7 +11,6 @@ license="GPL-3.0-or-later"
 homepage="https://opengribs.org"
 distfiles="https://github.com/opengribs/XyGrib/releases/download/v${_xygribver}/XyGrib___High_Resolution_Maps.tar.gz"
 checksum=164d0bca0ab118f242d6d10dfb6e6b2f3eacdcf2781b532336e02a2d223a0d0d
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/XyGrib
diff --git a/srcpkgs/abcde/template b/srcpkgs/abcde/template
index 49fe4f97768..b2a8e0117b2 100644
--- a/srcpkgs/abcde/template
+++ b/srcpkgs/abcde/template
@@ -2,7 +2,6 @@
 pkgname=abcde
 version=2.9.3
 revision=1
-archs=noarch
 conf_files="/etc/${pkgname}.conf"
 depends="cd-discid perl-MusicBrainz-DiscID perl-WebService-MusicBrainz vorbis-tools"
 short_desc="CLI audio CD encoder and tagger"
diff --git a/srcpkgs/abi-compliance-checker/template b/srcpkgs/abi-compliance-checker/template
index 644acae70e6..14e8a5e27e3 100644
--- a/srcpkgs/abi-compliance-checker/template
+++ b/srcpkgs/abi-compliance-checker/template
@@ -2,7 +2,6 @@
 pkgname=abi-compliance-checker
 version=2.3
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="binutils ctags perl"
 checkdepends="binutils ctags"
diff --git a/srcpkgs/ack/template b/srcpkgs/ack/template
index 47d3e6c3550..b3ec895eee3 100644
--- a/srcpkgs/ack/template
+++ b/srcpkgs/ack/template
@@ -2,7 +2,6 @@
 pkgname=ack
 version=3.3.1
 revision=1
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=perl-module
 hostmakedepends="perl perl-File-Next"
diff --git a/srcpkgs/acpilight/template b/srcpkgs/acpilight/template
index 89236bd4c3f..40288bad23b 100644
--- a/srcpkgs/acpilight/template
+++ b/srcpkgs/acpilight/template
@@ -2,7 +2,6 @@
 pkgname=acpilight
 version=1.2
 revision=1
-archs=noarch
 wrksrc="acpilight-v${version}"
 depends="python3"
 short_desc="Backward-compatibile xbacklight replacement"
diff --git a/srcpkgs/acr/template b/srcpkgs/acr/template
index 773799454b6..6ec88da7519 100644
--- a/srcpkgs/acr/template
+++ b/srcpkgs/acr/template
@@ -2,7 +2,6 @@
 pkgname=acr
 version=1.9.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="AutoConf Replacement"
 maintainer="Felipe Nogueira <contato.fnog@gmail.com>"
diff --git a/srcpkgs/adapta-kde/template b/srcpkgs/adapta-kde/template
index 1fc16324be1..25278735438 100644
--- a/srcpkgs/adapta-kde/template
+++ b/srcpkgs/adapta-kde/template
@@ -2,7 +2,6 @@
 pkgname=adapta-kde
 version=20180828
 revision=1
-archs=noarch
 short_desc="Port of the popular GTK theme Adapta for Plasma 5 desktop"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/adwaita-icon-theme/template b/srcpkgs/adwaita-icon-theme/template
index febd2915be6..b3ba7687d1b 100644
--- a/srcpkgs/adwaita-icon-theme/template
+++ b/srcpkgs/adwaita-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-icon-theme
 version=3.36.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 depends="librsvg"
diff --git a/srcpkgs/adwaita-plus/template b/srcpkgs/adwaita-plus/template
index c5faf56aeb2..b0f0962ec9c 100644
--- a/srcpkgs/adwaita-plus/template
+++ b/srcpkgs/adwaita-plus/template
@@ -2,7 +2,6 @@
 pkgname=adwaita-plus
 version=5.0
 revision=1
-archs=noarch
 short_desc="Modern third-party icons theme based on GNOME's Adwaita"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/afew/template b/srcpkgs/afew/template
index 2b2614a4eba..1084b32e97a 100644
--- a/srcpkgs/afew/template
+++ b/srcpkgs/afew/template
@@ -2,7 +2,6 @@
 pkgname=afew
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx pkg-config"
 depends="notmuch-python3 python3-dkimpy python3-chardet notmuch"
diff --git a/srcpkgs/aisleriot/template b/srcpkgs/aisleriot/template
index 1b5b594ddd9..29a66674f63 100644
--- a/srcpkgs/aisleriot/template
+++ b/srcpkgs/aisleriot/template
@@ -20,7 +20,6 @@ checksum=eed8edb267a9fa61651b1d3a22a83f51415a4e55d76d5ae737e18a9e9477016b
 
 aisleriot-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/alacritty/template b/srcpkgs/alacritty/template
index 74ddfcd6d65..479c02990c4 100644
--- a/srcpkgs/alacritty/template
+++ b/srcpkgs/alacritty/template
@@ -28,7 +28,6 @@ post_install() {
 
 alacritty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/albatross-themes/template b/srcpkgs/albatross-themes/template
index ca8ff1b363c..1473a296df5 100644
--- a/srcpkgs/albatross-themes/template
+++ b/srcpkgs/albatross-themes/template
@@ -2,7 +2,6 @@
 pkgname=albatross-themes
 version=1.7.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant black GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/alienfx/template b/srcpkgs/alienfx/template
index 62ee564ad4b..f48ad0461aa 100644
--- a/srcpkgs/alienfx/template
+++ b/srcpkgs/alienfx/template
@@ -2,7 +2,6 @@
 pkgname=alienfx
 version=2.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="alienfx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/alot/template b/srcpkgs/alot/template
index c3b1fb07414..8ea0a60ed04 100644
--- a/srcpkgs/alot/template
+++ b/srcpkgs/alot/template
@@ -2,7 +2,6 @@
 pkgname=alot
 version=0.9.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools python3-Twisted notmuch-python3 python3-configobj
diff --git a/srcpkgs/alsa-firmware/template b/srcpkgs/alsa-firmware/template
index 63d37de92b1..45d6a2be1f1 100644
--- a/srcpkgs/alsa-firmware/template
+++ b/srcpkgs/alsa-firmware/template
@@ -2,7 +2,6 @@
 pkgname=alsa-firmware
 version=1.2.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-hotplug-dir=/usr/lib/firmware"
 short_desc="Advanced Linux Sound Architecture (ALSA) firmware"
diff --git a/srcpkgs/amiri-font/template b/srcpkgs/amiri-font/template
index 039962190ae..f1de46736dd 100644
--- a/srcpkgs/amiri-font/template
+++ b/srcpkgs/amiri-font/template
@@ -2,7 +2,6 @@
 pkgname=amiri-font
 version=0.113
 revision=1
-archs=noarch
 wrksrc="Amiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/ampache/template b/srcpkgs/ampache/template
index 3639557449a..99b249cda74 100644
--- a/srcpkgs/ampache/template
+++ b/srcpkgs/ampache/template
@@ -2,7 +2,6 @@
 pkgname=ampache
 version=3.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="php mysql"
diff --git a/srcpkgs/angrysearch/template b/srcpkgs/angrysearch/template
index 88a6954ac85..3bd8eee7f3c 100644
--- a/srcpkgs/angrysearch/template
+++ b/srcpkgs/angrysearch/template
@@ -5,7 +5,6 @@ revision=2
 wrksrc="ANGRYsearch-${version}"
 hostmakedepends="python3"
 depends="python3-PyQt5 xdg-utils"
-archs=noarch
 short_desc="Instant file search"
 maintainer="DirectorX <void.directorx@protonmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/anki/template b/srcpkgs/anki/template
index a25bc0d4e7e..92e66d28c52 100644
--- a/srcpkgs/anki/template
+++ b/srcpkgs/anki/template
@@ -2,7 +2,6 @@
 pkgname=anki
 version=2.1.15
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="python3-PyQt5-webengine python3-requests python3-SQLAlchemy
  python3-PyAudio python3-mpv python3-Markdown python3-send2trash
diff --git a/srcpkgs/ansi/template b/srcpkgs/ansi/template
index be114d5203b..705b26bad4e 100644
--- a/srcpkgs/ansi/template
+++ b/srcpkgs/ansi/template
@@ -2,7 +2,6 @@
 pkgname=ansi
 version=2.0.4
 revision=1
-archs=noarch
 depends="bash"
 short_desc="ANSI escape codes in pure Bash"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ansible/template b/srcpkgs/ansible/template
index 94c470574ae..581ce88bc5e 100644
--- a/srcpkgs/ansible/template
+++ b/srcpkgs/ansible/template
@@ -2,7 +2,6 @@
 pkgname=ansible
 version=2.9.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-cryptography python3-Jinja2 python3-paramiko
diff --git a/srcpkgs/antlr3-bin/template b/srcpkgs/antlr3-bin/template
index 305df8ae69e..2ed87245670 100644
--- a/srcpkgs/antlr3-bin/template
+++ b/srcpkgs/antlr3-bin/template
@@ -2,7 +2,6 @@
 pkgname=antlr3-bin
 version=3.4
 revision=1
-archs=noarch
 build_style=fetch
 depends="virtual?java-runtime"
 short_desc="Parser generator for C++, C#, Java, and Python"
diff --git a/srcpkgs/apache-ant/template b/srcpkgs/apache-ant/template
index 80a738985a0..4db3a4aa0be 100644
--- a/srcpkgs/apache-ant/template
+++ b/srcpkgs/apache-ant/template
@@ -2,7 +2,6 @@
 pkgname=apache-ant
 version=1.10.8
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-runtime"
 short_desc="Java library and command-line tool that help building software"
@@ -42,7 +41,6 @@ do_install() {
 apache-ant-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove $_prefix/manual
 	}
diff --git a/srcpkgs/apache-jmeter/template b/srcpkgs/apache-jmeter/template
index 73f8f06fd96..eaa6eda1d05 100644
--- a/srcpkgs/apache-jmeter/template
+++ b/srcpkgs/apache-jmeter/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 apache-jmeter-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apache-maven/template b/srcpkgs/apache-maven/template
index a6c9fd3e5a2..956b472f373 100644
--- a/srcpkgs/apache-maven/template
+++ b/srcpkgs/apache-maven/template
@@ -2,7 +2,6 @@
 pkgname=apache-maven
 version=3.6.3
 revision=1
-archs=noarch
 hostmakedepends="openjdk8"
 depends="virtual?java-environment"
 short_desc="Software project management and comprehension tool"
diff --git a/srcpkgs/apache-storm/template b/srcpkgs/apache-storm/template
index 6ae346a0557..3efd37f6052 100644
--- a/srcpkgs/apache-storm/template
+++ b/srcpkgs/apache-storm/template
@@ -2,7 +2,6 @@
 pkgname=apache-storm
 version=2.2.0
 revision=2
-archs=noarch
 depends="virtual?java-runtime python3 bash"
 short_desc="Distributed realtime computation system"
 maintainer="bougyman <bougyman@voidlinux.org>"
diff --git a/srcpkgs/apache-tomcat/template b/srcpkgs/apache-tomcat/template
index 7cab7d1d9af..d8abc369365 100644
--- a/srcpkgs/apache-tomcat/template
+++ b/srcpkgs/apache-tomcat/template
@@ -40,7 +40,6 @@ post_install() {
 }
 
 apache-tomcat-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -58,7 +57,6 @@ apache-tomcat-examples_package() {
 }
 
 apache-tomcat-manager_package() {
-	archs=noarch
 	short_desc+=" - Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
@@ -67,7 +65,6 @@ apache-tomcat-manager_package() {
 }
 
 apache-tomcat-host-manager_package() {
-	archs=noarch
 	short_desc+=" - Host Manager"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/apparmor/template b/srcpkgs/apparmor/template
index cd7073fdcfb..3fc8aaea479 100644
--- a/srcpkgs/apparmor/template
+++ b/srcpkgs/apparmor/template
@@ -63,7 +63,6 @@ post_install() {
 }
 
 apparmor-vim_package() {
-	archs=noarch
 	short_desc+=" - Vim syntax"
 	depends="vim"
 	pkg_install() {
diff --git a/srcpkgs/apt/template b/srcpkgs/apt/template
index 8578ed028e2..1fb3ee57e46 100644
--- a/srcpkgs/apt/template
+++ b/srcpkgs/apt/template
@@ -29,7 +29,6 @@ apt-devel_package() {
 }
 
 apt-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation files"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/arandr/template b/srcpkgs/arandr/template
index 5e5bd84dd13..b361ccbf48d 100644
--- a/srcpkgs/arandr/template
+++ b/srcpkgs/arandr/template
@@ -2,7 +2,6 @@
 pkgname=arandr
 version=0.1.10
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-docutils"
 depends="python3-gobject xrandr python3"
diff --git a/srcpkgs/arc-theme/template b/srcpkgs/arc-theme/template
index ccc5f35ea5f..3afd69b34f1 100644
--- a/srcpkgs/arc-theme/template
+++ b/srcpkgs/arc-theme/template
@@ -2,7 +2,6 @@
 pkgname=arc-theme
 version=20200513
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_script="./autogen.sh"
 hostmakedepends="automake glib-devel pkg-config
diff --git a/srcpkgs/archlabs-themes/template b/srcpkgs/archlabs-themes/template
index aa648d35457..a565615ea6f 100644
--- a/srcpkgs/archlabs-themes/template
+++ b/srcpkgs/archlabs-themes/template
@@ -4,7 +4,6 @@ version=20180503
 revision=2
 _commit=73d0900117daefedf6c76dd0e71538bb954f1b10
 wrksrc="ArchLabs-Themes-${_commit}"
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Themes used in ArchLabs"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/argtable/template b/srcpkgs/argtable/template
index 7083e703a50..6719ab7f4fc 100644
--- a/srcpkgs/argtable/template
+++ b/srcpkgs/argtable/template
@@ -26,7 +26,6 @@ argtable-devel_package() {
 argtable-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/artwiz-fonts/template b/srcpkgs/artwiz-fonts/template
index ceea828ee9c..b19ad6d26af 100644
--- a/srcpkgs/artwiz-fonts/template
+++ b/srcpkgs/artwiz-fonts/template
@@ -2,7 +2,6 @@
 pkgname=artwiz-fonts
 version=1.3
 revision=4
-archs=noarch
 create_wrksrc=yes
 depends="font-util mkfontdir"
 short_desc="Small futuristic ASCII fonts for X"
diff --git a/srcpkgs/asciidoc/template b/srcpkgs/asciidoc/template
index 5665577bacb..377800871a9 100644
--- a/srcpkgs/asciidoc/template
+++ b/srcpkgs/asciidoc/template
@@ -2,7 +2,6 @@
 pkgname=asciidoc
 version=9.0.2
 revision=1
-archs=noarch
 wrksrc=${pkgname}-py3-${version}
 build_style=gnu-configure
 hostmakedepends="automake docbook-xsl libxslt python3"
diff --git a/srcpkgs/asciinema/template b/srcpkgs/asciinema/template
index 38b8871753c..551a15be881 100644
--- a/srcpkgs/asciinema/template
+++ b/srcpkgs/asciinema/template
@@ -2,7 +2,6 @@
 pkgname=asciinema
 version=2.0.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="asciinema"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/asciiquarium/template b/srcpkgs/asciiquarium/template
index 128674e7a6e..6f9217a19e1 100644
--- a/srcpkgs/asciiquarium/template
+++ b/srcpkgs/asciiquarium/template
@@ -2,7 +2,6 @@
 pkgname=asciiquarium
 version=1.1
 revision=2
-archs=noarch
 wrksrc="${pkgname}_${version}"
 depends="perl perl-Term-Animation perl-Curses"
 short_desc="Enjoy the mysteries of the sea from the safety of your own terminal"
diff --git a/srcpkgs/aspell-ru/template b/srcpkgs/aspell-ru/template
index f0a6d0fa52d..6c61de58593 100644
--- a/srcpkgs/aspell-ru/template
+++ b/srcpkgs/aspell-ru/template
@@ -14,7 +14,6 @@ checksum=5c29b6ccce57bc3f7c4fb0510d330446b9c769e59c92bdfede27333808b6e646
 
 words-ru_package() {
 	short_desc="Russian dictionary word list"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/dict
 		precat *.cwl |
diff --git a/srcpkgs/astromenace/template b/srcpkgs/astromenace/template
index ae6bbc38330..55613a3d8f6 100644
--- a/srcpkgs/astromenace/template
+++ b/srcpkgs/astromenace/template
@@ -34,7 +34,6 @@ do_install() {
 
 astromenace-data_package() {
 	short_desc+=" - data file"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/astromenace
 		vcopy ${wrksrc}/gamedata usr/share/astromenace
diff --git a/srcpkgs/asus-kbd-backlight/template b/srcpkgs/asus-kbd-backlight/template
index e58e8341650..cc612d3a809 100644
--- a/srcpkgs/asus-kbd-backlight/template
+++ b/srcpkgs/asus-kbd-backlight/template
@@ -3,7 +3,6 @@ pkgname=asus-kbd-backlight
 version=1.2
 revision=1
 create_wrksrc=yes
-archs=noarch
 depends="bash"
 short_desc="Helper for adjusting keyboard backlight brightness in Asus Zenbook"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/atool/template b/srcpkgs/atool/template
index 56264dd3e16..84019be7c53 100644
--- a/srcpkgs/atool/template
+++ b/srcpkgs/atool/template
@@ -2,7 +2,6 @@
 pkgname=atool
 version=0.39.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/audit/template b/srcpkgs/audit/template
index 4d8d2fbe12a..521e12ec4f1 100644
--- a/srcpkgs/audit/template
+++ b/srcpkgs/audit/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 libaudit-common_package() {
-	archs=noarch
 	short_desc+=" - Library common files"
 	pkg_install() {
 		vmove etc/libaudit.conf
diff --git a/srcpkgs/auto-auto-complete/template b/srcpkgs/auto-auto-complete/template
index 2fa45c4fc47..d4eefd9d547 100644
--- a/srcpkgs/auto-auto-complete/template
+++ b/srcpkgs/auto-auto-complete/template
@@ -2,7 +2,6 @@
 pkgname=auto-auto-complete
 version=7.2
 revision=4
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3 texinfo"
 depends="python3"
diff --git a/srcpkgs/autoconf-archive/template b/srcpkgs/autoconf-archive/template
index b04bb9a7905..ea9665901cb 100644
--- a/srcpkgs/autoconf-archive/template
+++ b/srcpkgs/autoconf-archive/template
@@ -2,7 +2,6 @@
 pkgname=autoconf-archive
 version=2019.01.06
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="texinfo"
 depends="autoconf"
diff --git a/srcpkgs/autoconf/template b/srcpkgs/autoconf/template
index a7aecf1359e..954bfea8d2c 100644
--- a/srcpkgs/autoconf/template
+++ b/srcpkgs/autoconf/template
@@ -2,7 +2,6 @@
 pkgname=autoconf
 version=2.69
 revision=8
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl m4 help2man"
 depends="virtual?awk m4 perl"
diff --git a/srcpkgs/autoconf213/template b/srcpkgs/autoconf213/template
index a1ecfe21fa9..7d471a040cf 100644
--- a/srcpkgs/autoconf213/template
+++ b/srcpkgs/autoconf213/template
@@ -2,7 +2,6 @@
 pkgname=autoconf213
 version=2.13
 revision=3
-archs=noarch
 wrksrc="autoconf-${version}"
 build_style=gnu-configure
 configure_args="--program-suffix='-2.13'"
diff --git a/srcpkgs/autojump/template b/srcpkgs/autojump/template
index 2448a2dd894..de499da67e1 100644
--- a/srcpkgs/autojump/template
+++ b/srcpkgs/autojump/template
@@ -2,7 +2,6 @@
 pkgname=autojump
 version=22.5.3
 revision=2
-archs=noarch
 wrksrc="${pkgname}-release-v${version}"
 hostmakedepends="python3"
 depends="python3"
diff --git a/srcpkgs/automake/template b/srcpkgs/automake/template
index f9752f9efb1..ae473c521f5 100644
--- a/srcpkgs/automake/template
+++ b/srcpkgs/automake/template
@@ -3,7 +3,6 @@
 pkgname=automake
 version=1.16.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_args="${makejobs}"
 hostmakedepends="perl autoconf"
diff --git a/srcpkgs/autorandr/template b/srcpkgs/autorandr/template
index b86b81a50ce..86d7d32723d 100644
--- a/srcpkgs/autorandr/template
+++ b/srcpkgs/autorandr/template
@@ -2,7 +2,6 @@
 pkgname=autorandr
 version=1.10.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools pkg-config"
 depends="python3-setuptools xrandr"
diff --git a/srcpkgs/avahi-discover/template b/srcpkgs/avahi-discover/template
index 1c4249f1036..de7039cffa5 100644
--- a/srcpkgs/avahi-discover/template
+++ b/srcpkgs/avahi-discover/template
@@ -103,7 +103,6 @@ do_install() {
 avahi-python3-utils_package() {
 	depends="avahi-python3>=${version}_${revision}"
 	short_desc="Avahi python utilities"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		vmove usr/bin/avahi-bookmarks
@@ -114,14 +113,12 @@ avahi-python3-utils_package() {
 avahi-python-utils_package() {
 	short_desc="Avahi python utilities - transitional dummy pkg"
 	depends="avahi-python3-utils>=${version}_${revision}"
-	archs=noarch
 	build_style=meta
 }
 
 avahi-python_package() {
 	depends="python-dbus"
 	short_desc="Python utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py2_sitelib}/avahi
 	}
@@ -130,7 +127,6 @@ avahi-python_package() {
 avahi-python3_package() {
 	depends="python3-dbus"
 	short_desc="Python3 utility package for Avahi"
-	archs=noarch
 	pkg_install() {
 		vmove ${py3_sitelib}/avahi
 	}
diff --git a/srcpkgs/avideo/template b/srcpkgs/avideo/template
index af1491295da..19c6845f242 100644
--- a/srcpkgs/avideo/template
+++ b/srcpkgs/avideo/template
@@ -2,7 +2,6 @@
 pkgname=avideo
 version=2017.9.27
 revision=5
-archs=noarch
 wrksrc="avideo"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/awoken-icons/template b/srcpkgs/awoken-icons/template
index f52c4f48187..ede6ea0c9d0 100644
--- a/srcpkgs/awoken-icons/template
+++ b/srcpkgs/awoken-icons/template
@@ -2,7 +2,6 @@
 pkgname=awoken-icons
 version=2.5.2
 revision=4
-archs=noarch
 wrksrc=AwOken-2.5
 hostmakedepends="unzip"
 short_desc="Simple and quite complete icon set, Token-style"
@@ -39,7 +38,6 @@ do_install() {
 awoken-icons-dark_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - Dark icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenDark
 	}
@@ -48,7 +46,6 @@ awoken-icons-dark_package() {
 awoken-icons-white_package() {
 	depends="awoken-icons>=${version}"
 	short_desc+=" - White icons"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/AwOkenWhite
 	}
diff --git a/srcpkgs/aws-cli/template b/srcpkgs/aws-cli/template
index c8fadf32d2e..8bc1de2fa00 100644
--- a/srcpkgs/aws-cli/template
+++ b/srcpkgs/aws-cli/template
@@ -2,7 +2,6 @@
 pkgname=aws-cli
 version=1.18.105
 revision=1
-archs=noarch
 wrksrc="aws-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/awsume/template b/srcpkgs/awsume/template
index 0f6c21d60d1..3c01a09de16 100644
--- a/srcpkgs/awsume/template
+++ b/srcpkgs/awsume/template
@@ -2,7 +2,6 @@
 pkgname=awsume
 version=4.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 makedepends="python3-argcomplete python3-boto3 python3-colorama python3-coverage
  python3-pluggy python3-psutil python3-xmltodict python3-yaml"
diff --git a/srcpkgs/azote/template b/srcpkgs/azote/template
index 9b5756804ea..bdb24fa3c1a 100644
--- a/srcpkgs/azote/template
+++ b/srcpkgs/azote/template
@@ -2,7 +2,6 @@
 pkgname=azote
 version=1.7.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3>=3.4 python3-setuptools python3-gobject python3-Pillow gtk+3 feh python3-send2trash xrandr grim slurp ImageMagick python3-yaml"
diff --git a/srcpkgs/b43-firmware-classic/template b/srcpkgs/b43-firmware-classic/template
index b38e6ac7ee6..0bc8d62447e 100644
--- a/srcpkgs/b43-firmware-classic/template
+++ b/srcpkgs/b43-firmware-classic/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware-classic
 version=5.100.138
 revision=1
-archs=noarch
 wrksrc="broadcom-wl-${version}"
 hostmakedepends="b43-fwcutter"
 short_desc="Firmware for Broadcom B43 wireless (trusted release)"
diff --git a/srcpkgs/b43-firmware/template b/srcpkgs/b43-firmware/template
index e5f894b81e7..45cbdd4cc08 100644
--- a/srcpkgs/b43-firmware/template
+++ b/srcpkgs/b43-firmware/template
@@ -2,7 +2,6 @@
 pkgname=b43-firmware
 version=6.30.163.46
 revision=1
-archs=noarch
 wrksrc="${pkgname}"
 create_wrksrc=yes
 hostmakedepends="b43-fwcutter"
diff --git a/srcpkgs/bCNC/template b/srcpkgs/bCNC/template
index 2e715c512a9..ede158da583 100644
--- a/srcpkgs/bCNC/template
+++ b/srcpkgs/bCNC/template
@@ -2,7 +2,6 @@
 pkgname=bCNC
 version=0.9.14.306
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyserial python3-Pillow python3-tkinter python3-numpy python3-scipy"
diff --git a/srcpkgs/backblaze-b2/template b/srcpkgs/backblaze-b2/template
index ef7fbca68b6..cac24c685cc 100644
--- a/srcpkgs/backblaze-b2/template
+++ b/srcpkgs/backblaze-b2/template
@@ -2,7 +2,6 @@
 pkgname=backblaze-b2
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="b2-${version}"
 build_style=python3-module
 pycompile_module="b2"
@@ -43,6 +42,5 @@ do_check() {
 python-b2_package() {
 	depends="backblaze-b2>=${version}_${revision}"
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional package"
 }
diff --git a/srcpkgs/backintime-qt/template b/srcpkgs/backintime-qt/template
index 8453da9bafb..422529bf923 100644
--- a/srcpkgs/backintime-qt/template
+++ b/srcpkgs/backintime-qt/template
@@ -2,7 +2,6 @@
 pkgname=backintime-qt
 version=1.2.1
 revision=1
-archs=noarch
 wrksrc=backintime-${version}
 build_wrksrc="qt"
 build_style=configure
diff --git a/srcpkgs/backintime/template b/srcpkgs/backintime/template
index 2dfc98051f7..6c95fcd722a 100644
--- a/srcpkgs/backintime/template
+++ b/srcpkgs/backintime/template
@@ -2,7 +2,6 @@
 pkgname=backintime
 version=1.2.1
 revision=1
-archs=noarch
 build_wrksrc="common"
 build_style=configure
 configure_args="--python3"
diff --git a/srcpkgs/bandit/template b/srcpkgs/bandit/template
index d29873ecf61..0709b663aa7 100644
--- a/srcpkgs/bandit/template
+++ b/srcpkgs/bandit/template
@@ -2,7 +2,6 @@
 pkgname=bandit
 version=1.6.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="bandit"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bash-completion/template b/srcpkgs/bash-completion/template
index 704b0784688..080e387f5e6 100644
--- a/srcpkgs/bash-completion/template
+++ b/srcpkgs/bash-completion/template
@@ -2,7 +2,6 @@
 pkgname=bash-completion
 version=2.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_args="profiledir=/etc/bash/bashrc.d"
 depends="bash"
diff --git a/srcpkgs/bash-preexec/template b/srcpkgs/bash-preexec/template
index 771ff0426ff..6d71655eecf 100644
--- a/srcpkgs/bash-preexec/template
+++ b/srcpkgs/bash-preexec/template
@@ -2,7 +2,6 @@
 pkgname=bash-preexec
 version=0.3.7
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Preexec and Precmd functions for Bash just like Zsh"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/bashmount/template b/srcpkgs/bashmount/template
index 1c797678452..68d2880e75a 100644
--- a/srcpkgs/bashmount/template
+++ b/srcpkgs/bashmount/template
@@ -2,7 +2,6 @@
 pkgname=bashmount
 version=4.3.0
 revision=1
-archs=noarch
 conf_files="/etc/$pkgname.conf"
 depends="bash util-linux"
 short_desc="Tool to mount and unmount removable media"
diff --git a/srcpkgs/bats/template b/srcpkgs/bats/template
index 890b0d14e54..ded7e5ee315 100644
--- a/srcpkgs/bats/template
+++ b/srcpkgs/bats/template
@@ -2,7 +2,6 @@
 pkgname=bats
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="bats-core-${version}"
 depends="bash"
 short_desc="Bash Automated Testing System"
diff --git a/srcpkgs/bdf2psf/template b/srcpkgs/bdf2psf/template
index d431bc560c9..3258f1871e5 100644
--- a/srcpkgs/bdf2psf/template
+++ b/srcpkgs/bdf2psf/template
@@ -2,7 +2,6 @@
 pkgname=bdf2psf
 version=1.196
 revision=1
-archs=noarch
 wrksrc="console-setup-${version}"
 depends="perl"
 short_desc="Generate console fonts from BDF source fonts"
diff --git a/srcpkgs/beard/template b/srcpkgs/beard/template
index 93d69607399..5e1180c49bf 100644
--- a/srcpkgs/beard/template
+++ b/srcpkgs/beard/template
@@ -2,7 +2,6 @@
 pkgname=beard
 version=0.3
 revision=1
-archs=noarch
 short_desc="Simple hibernation daemon"
 maintainer="Samantha Baldwin <fuhsaz+void@cryptic.li>"
 license="Unlicense"
diff --git a/srcpkgs/beets/template b/srcpkgs/beets/template
index bf0240f1f54..8ebdcc4a42c 100644
--- a/srcpkgs/beets/template
+++ b/srcpkgs/beets/template
@@ -2,7 +2,6 @@
 pkgname=beets
 version=1.4.9
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-munkres python3-musicbrainzngs
diff --git a/srcpkgs/betterlockscreen/template b/srcpkgs/betterlockscreen/template
index c38dd536e77..a438c298aca 100644
--- a/srcpkgs/betterlockscreen/template
+++ b/srcpkgs/betterlockscreen/template
@@ -2,7 +2,6 @@
 pkgname=betterlockscreen
 version=3.0.1
 revision=2
-archs=noarch
 depends="ImageMagick bash bc feh i3lock-color xdpyinfo xrandr xrdb"
 short_desc="Sweet looking lockscreen for linux system"
 maintainer="Aleksander Zien <Aleks@nderZien.com>"
diff --git a/srcpkgs/biber/template b/srcpkgs/biber/template
index 23b94472d1e..af2ddfb4abe 100644
--- a/srcpkgs/biber/template
+++ b/srcpkgs/biber/template
@@ -2,7 +2,6 @@
 pkgname=biber
 version=2.14
 revision=2
-archs=noarch
 wrksrc="${pkgname}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/binutils/template b/srcpkgs/binutils/template
index 06a279cff2c..8592e590c0c 100644
--- a/srcpkgs/binutils/template
+++ b/srcpkgs/binutils/template
@@ -120,7 +120,6 @@ binutils-devel_package() {
 }
 
 binutils-doc_package() {
-	archs=noarch
 	short_desc+=" - info files"
 	pkg_install() {
 		vmove usr/share/info
diff --git a/srcpkgs/binwalk/template b/srcpkgs/binwalk/template
index fccd523d584..c646a08f2e7 100644
--- a/srcpkgs/binwalk/template
+++ b/srcpkgs/binwalk/template
@@ -2,7 +2,6 @@
 pkgname=binwalk
 version=2.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="binwalk"
 hostmakedepends="python3"
diff --git a/srcpkgs/biosdisk/template b/srcpkgs/biosdisk/template
index 324d249d36c..d13ebdac57e 100644
--- a/srcpkgs/biosdisk/template
+++ b/srcpkgs/biosdisk/template
@@ -3,7 +3,6 @@ pkgname=biosdisk
 version=1.01
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="syslinux wget cdrtools"
 short_desc="Utility for creating Dell BIOS flash disks"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/bitfighter/template b/srcpkgs/bitfighter/template
index a91443cbc3c..ae01e4bca51 100644
--- a/srcpkgs/bitfighter/template
+++ b/srcpkgs/bitfighter/template
@@ -28,7 +28,6 @@ post_install() {
 
 bitfighter-data_package() {
 	short_desc+=" - classic level pack"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/bitfighter
 	}
diff --git a/srcpkgs/black/template b/srcpkgs/black/template
index ab7bf23c85e..1798d9ed60d 100644
--- a/srcpkgs/black/template
+++ b/srcpkgs/black/template
@@ -2,7 +2,6 @@
 pkgname=black
 version=19.10b0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="black.py blib2to3 _black_version.py"
 hostmakedepends="git python3-setuptools"
diff --git a/srcpkgs/blackbird-themes/template b/srcpkgs/blackbird-themes/template
index 0e4de2ad703..3fc7e9c99bf 100644
--- a/srcpkgs/blackbird-themes/template
+++ b/srcpkgs/blackbird-themes/template
@@ -2,7 +2,6 @@
 pkgname=blackbird-themes
 version=0.4
 revision=3
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant dark GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/blackbox/template b/srcpkgs/blackbox/template
index cc7fbdc68b0..01f6dc23602 100644
--- a/srcpkgs/blackbox/template
+++ b/srcpkgs/blackbox/template
@@ -2,7 +2,6 @@
 pkgname=blackbox
 version=1.20181219
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Safely store secrets in Git/Mercurial/Subversion"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
diff --git a/srcpkgs/blazeblogger/template b/srcpkgs/blazeblogger/template
index 0eb8d776fc8..78acb7129b3 100644
--- a/srcpkgs/blazeblogger/template
+++ b/srcpkgs/blazeblogger/template
@@ -2,7 +2,6 @@
 pkgname=blazeblogger
 version=1.2.0
 revision=2
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="CLI blogging CMS"
diff --git a/srcpkgs/bleachbit/template b/srcpkgs/bleachbit/template
index 524794f0cb2..b1f81bdb656 100644
--- a/srcpkgs/bleachbit/template
+++ b/srcpkgs/bleachbit/template
@@ -2,7 +2,6 @@
 pkgname=bleachbit
 version=4.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/bleachbit"
 make_install_args="prefix=/usr"
diff --git a/srcpkgs/bluebird-themes/template b/srcpkgs/bluebird-themes/template
index 47034af481c..2e61b2a8592 100644
--- a/srcpkgs/bluebird-themes/template
+++ b/srcpkgs/bluebird-themes/template
@@ -2,7 +2,6 @@
 pkgname=bluebird-themes
 version=1.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="gtk+"
 short_desc="Elegant blue GTK2/3/Metacity/Xfwm theme"
diff --git a/srcpkgs/boost/template b/srcpkgs/boost/template
index 5412f16a2b2..af8127f262a 100644
--- a/srcpkgs/boost/template
+++ b/srcpkgs/boost/template
@@ -136,7 +136,6 @@ boost-python3-1.72_package() {
 	}
 }
 boost-build_package() {
-	archs=noarch
 	conf_files="/etc/site-config.jam"
 	short_desc+=" - Boost.Build framework"
 	pkg_install() {
diff --git a/srcpkgs/bootiso/template b/srcpkgs/bootiso/template
index 78a6205c546..e3450b9e665 100644
--- a/srcpkgs/bootiso/template
+++ b/srcpkgs/bootiso/template
@@ -2,7 +2,6 @@
 pkgname=bootiso
 version=4.1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="prefix=/usr"
 depends="bash binutils coreutils curl dosfstools e2fsprogs eudev exfat-utils
diff --git a/srcpkgs/borgmatic/template b/srcpkgs/borgmatic/template
index 9ca5df9724f..03471b6d123 100644
--- a/srcpkgs/borgmatic/template
+++ b/srcpkgs/borgmatic/template
@@ -2,7 +2,6 @@
 pkgname=borgmatic
 version=1.5.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="borg python3-setuptools python3-ruamel.yaml python3-pykwalify
diff --git a/srcpkgs/boswars/template b/srcpkgs/boswars/template
index 4587f93cfd0..2ac87925dec 100644
--- a/srcpkgs/boswars/template
+++ b/srcpkgs/boswars/template
@@ -56,7 +56,6 @@ do_install() {
 
 boswars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/boswars/campaigns
 		vmove usr/share/boswars/doc
diff --git a/srcpkgs/botan/template b/srcpkgs/botan/template
index 49d382d1bcc..5c997e49231 100644
--- a/srcpkgs/botan/template
+++ b/srcpkgs/botan/template
@@ -88,7 +88,6 @@ post_install() {
 
 botan-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/breeze-cursors/template b/srcpkgs/breeze-cursors/template
index 579ad8ffaa8..80256b0ccbd 100644
--- a/srcpkgs/breeze-cursors/template
+++ b/srcpkgs/breeze-cursors/template
@@ -2,7 +2,6 @@
 pkgname=breeze-cursors
 version=1.0
 revision=2
-archs=noarch
 create_wrksrc=yes
 build_style=meta
 depends="breeze-amber-cursor-theme
@@ -56,49 +55,42 @@ do_install() {
 }
 
 breeze-amber-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Amber cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Amber
 	}
 }
 breeze-blue-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Blue cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Blue
 	}
 }
 breeze-contrast-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Contrast cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Contrast
 	}
 }
 breeze-hacked-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Hacked cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Hacked
 	}
 }
 breeze-obsidian-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Obsidian cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Obsidian
 	}
 }
 breeze-purple-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Purple cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Purple
 	}
 }
 breeze-red-cursor-theme_package() {
-	archs=noarch
 	short_desc="Breeze Red cursor theme"
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Red
diff --git a/srcpkgs/breeze/template b/srcpkgs/breeze/template
index 03dbbb2240b..3958629f68c 100644
--- a/srcpkgs/breeze/template
+++ b/srcpkgs/breeze/template
@@ -23,7 +23,6 @@ fi
 
 breeze-snow-cursor-theme_package() {
 	short_desc="Breeze Snow cursor theme"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons/Breeze_Snow
 	}
diff --git a/srcpkgs/brise/template b/srcpkgs/brise/template
index 442ffddc383..7c50e282036 100644
--- a/srcpkgs/brise/template
+++ b/srcpkgs/brise/template
@@ -2,7 +2,6 @@
 pkgname=brise
 version=0.38.20180515
 revision=2
-archs=noarch
 wrksrc=brise
 build_style=gnu-makefile
 hostmakedepends="pkg-config librime-devel"
diff --git a/srcpkgs/broadcom-bt-firmware/template b/srcpkgs/broadcom-bt-firmware/template
index 8aeef706d15..20e8a30acb4 100644
--- a/srcpkgs/broadcom-bt-firmware/template
+++ b/srcpkgs/broadcom-bt-firmware/template
@@ -3,7 +3,6 @@ pkgname=broadcom-bt-firmware
 version=12.0.1.1105
 revision=1
 _patch=_p1
-archs=noarch
 wrksrc="${pkgname}-${version}${_patch}"
 hostmakedepends="perl"
 short_desc="Broadcom Bluetooth firmware for Linux kernel"
diff --git a/srcpkgs/bsdbuild/template b/srcpkgs/bsdbuild/template
index 11115999c94..95e00c88829 100644
--- a/srcpkgs/bsdbuild/template
+++ b/srcpkgs/bsdbuild/template
@@ -2,7 +2,6 @@
 pkgname=bsdbuild
 version=3.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-manpages --with-manlinks"
 hostmakedepends="groff perl"
diff --git a/srcpkgs/btrfs-backup/template b/srcpkgs/btrfs-backup/template
index 55a3800a857..32cda1dc0c2 100644
--- a/srcpkgs/btrfs-backup/template
+++ b/srcpkgs/btrfs-backup/template
@@ -3,7 +3,6 @@ pkgname=btrfs-backup
 version=0.3.1
 revision=2
 wrksrc="${pkgname/-/_}-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="${pkgname/-/_}"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bucklespring/template b/srcpkgs/bucklespring/template
index ac9bfd3b499..1edf3c6af4c 100644
--- a/srcpkgs/bucklespring/template
+++ b/srcpkgs/bucklespring/template
@@ -27,7 +27,6 @@ do_install() {
 
 bucklespring-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/buildbot-slave/template b/srcpkgs/buildbot-slave/template
index 976fd7e689f..8437af6f6da 100644
--- a/srcpkgs/buildbot-slave/template
+++ b/srcpkgs/buildbot-slave/template
@@ -2,7 +2,6 @@
 pkgname=buildbot-slave
 version=0.8.14
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="buildslave"
 hostmakedepends="python"
diff --git a/srcpkgs/buildbot/template b/srcpkgs/buildbot/template
index 9bee50ec737..d687c8ad989 100644
--- a/srcpkgs/buildbot/template
+++ b/srcpkgs/buildbot/template
@@ -3,7 +3,6 @@ pkgname=buildbot
 reverts="2.4.1_1"
 version=0.8.14
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="buildbot"
 pycompile_dirs="usr/share/buildbot/contrib"
diff --git a/srcpkgs/buku/template b/srcpkgs/buku/template
index 5a5be1e8d2c..276f227bcf1 100644
--- a/srcpkgs/buku/template
+++ b/srcpkgs/buku/template
@@ -2,7 +2,6 @@
 pkgname=buku
 version=4.3
 revision=1
-archs=noarch
 depends="python3-urllib3 python3-BeautifulSoup4 python3-cryptography python3-html5lib"
 short_desc="Cmdline bookmark management utility"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/buku_run/template b/srcpkgs/buku_run/template
index a353c85bcd3..4f73ddec5f6 100644
--- a/srcpkgs/buku_run/template
+++ b/srcpkgs/buku_run/template
@@ -2,7 +2,6 @@
 pkgname=buku_run
 version=0.1.1
 revision=1
-archs=noarch
 conf_files="/etc/buku_run.config"
 depends="rofi gawk sed buku bash"
 short_desc="Rofi frontend for buku bookmarks manager"
diff --git a/srcpkgs/bum/template b/srcpkgs/bum/template
index 20f200e74d6..fecc2f4a967 100644
--- a/srcpkgs/bum/template
+++ b/srcpkgs/bum/template
@@ -2,7 +2,6 @@
 pkgname=bum
 version=0.1.3
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="bum"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/bumblebee-status/template b/srcpkgs/bumblebee-status/template
index 48cc3d02b04..51c9ded64da 100644
--- a/srcpkgs/bumblebee-status/template
+++ b/srcpkgs/bumblebee-status/template
@@ -2,7 +2,6 @@
 pkgname=bumblebee-status
 version=1.9.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}/bumblebee"
 depends="python-netifaces python-psutil python-requests"
 short_desc="Modular, theme-able status line generator for the i3 window manager"
diff --git a/srcpkgs/burp2-server/template b/srcpkgs/burp2-server/template
index 9845f6afe9e..1c48742389a 100644
--- a/srcpkgs/burp2-server/template
+++ b/srcpkgs/burp2-server/template
@@ -79,7 +79,6 @@ burp2-client_package() {
 
 burp2-doc_package() {
 	short_desc="${_desc} - Doc and examples"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/burp
 		vmove usr/share/examples
diff --git a/srcpkgs/bwidget/template b/srcpkgs/bwidget/template
index b6c57fccb25..8ddb29704a1 100644
--- a/srcpkgs/bwidget/template
+++ b/srcpkgs/bwidget/template
@@ -2,7 +2,6 @@
 pkgname=bwidget
 version=1.9.14
 revision=1
-archs=noarch
 makedepends="tk"
 depends="tk"
 short_desc="Set of extension widgets for Tcl/Tk"
diff --git a/srcpkgs/byobu/template b/srcpkgs/byobu/template
index 29c355cb943..869573ebd2d 100644
--- a/srcpkgs/byobu/template
+++ b/srcpkgs/byobu/template
@@ -2,7 +2,6 @@
 pkgname=byobu
 version=5.133
 revision=1
-archs=noarch
 build_style=gnu-configure
 depends="tmux"
 short_desc="Open source text-based window manager and terminal multiplexer"
diff --git a/srcpkgs/bzrtools/template b/srcpkgs/bzrtools/template
index 0c31b0fa84e..410a040f186 100644
--- a/srcpkgs/bzrtools/template
+++ b/srcpkgs/bzrtools/template
@@ -2,7 +2,6 @@
 pkgname=bzrtools
 version=2.6.0
 revision=3
-archs=noarch
 wrksrc=bzrtools
 build_style=python2-module
 pycompile_module="bzrlib/plugins/bzrtools"
diff --git a/srcpkgs/c/template b/srcpkgs/c/template
index 47c95d3060e..b6109733e43 100644
--- a/srcpkgs/c/template
+++ b/srcpkgs/c/template
@@ -2,7 +2,6 @@
 pkgname=c
 version=0.14
 revision=1
-archs=noarch
 depends="bash"
 short_desc="Compile and execute C scripts in one go!"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ca-certificates/template b/srcpkgs/ca-certificates/template
index 9d20f346e84..dcacb5c773e 100644
--- a/srcpkgs/ca-certificates/template
+++ b/srcpkgs/ca-certificates/template
@@ -3,7 +3,6 @@ pkgname=ca-certificates
 version=20200601
 revision=1
 bootstrap=yes
-archs=noarch
 conf_files="/etc/ca-certificates.conf"
 wrksrc="work"
 hostmakedepends="libressl"
diff --git a/srcpkgs/caffeine-ng/template b/srcpkgs/caffeine-ng/template
index 455b2f225c4..6e3786c57c5 100644
--- a/srcpkgs/caffeine-ng/template
+++ b/srcpkgs/caffeine-ng/template
@@ -2,7 +2,6 @@
 pkgname=caffeine-ng
 version=3.4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="caffeine"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/calligra/template b/srcpkgs/calligra/template
index d5255ff73ba..d4cb9b6a83f 100644
--- a/srcpkgs/calligra/template
+++ b/srcpkgs/calligra/template
@@ -140,7 +140,6 @@ calligra-words_package() {
 }
 calligra-handbook_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - Documentation (removed temporarily)"
 	#pkg_install() {
 	#	cd ${wrksrc}/build/doc/calligra
diff --git a/srcpkgs/cantarell-fonts/template b/srcpkgs/cantarell-fonts/template
index 8715c4773b3..2c0c2d779a1 100644
--- a/srcpkgs/cantarell-fonts/template
+++ b/srcpkgs/cantarell-fonts/template
@@ -2,7 +2,6 @@
 pkgname=cantarell-fonts
 version=0.201
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dfontsdir=/usr/share/fonts/cantarell -Duseprebuilt=true -Dbuildappstream=true"
 hostmakedepends="gettext pkg-config meson appstream-glib"
diff --git a/srcpkgs/canto-next/template b/srcpkgs/canto-next/template
index fa28bde891b..97506b3ec8f 100644
--- a/srcpkgs/canto-next/template
+++ b/srcpkgs/canto-next/template
@@ -2,7 +2,6 @@
 pkgname=canto-next
 version=0.9.7
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-feedparser"
diff --git a/srcpkgs/carton/template b/srcpkgs/carton/template
index e86b18fdf73..03d59e07782 100644
--- a/srcpkgs/carton/template
+++ b/srcpkgs/carton/template
@@ -3,7 +3,6 @@ pkgname=carton
 version=1.0.34
 revision=1
 wrksrc="Carton-v${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl perl-Class-Tiny perl-JSON perl-Menlo-Legacy
  perl-Module-CPANfile perl-Path-Tiny perl-Try-Tiny"
diff --git a/srcpkgs/castero/template b/srcpkgs/castero/template
index 2d6c421eee3..d387ef06fc7 100644
--- a/srcpkgs/castero/template
+++ b/srcpkgs/castero/template
@@ -2,7 +2,6 @@
 pkgname=castero
 version=0.8.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-cjkwrap
diff --git a/srcpkgs/catch2/template b/srcpkgs/catch2/template
index f8795cb6c77..5db5be90243 100644
--- a/srcpkgs/catch2/template
+++ b/srcpkgs/catch2/template
@@ -2,7 +2,6 @@
 pkgname=catch2
 version=2.11.1
 revision=1
-archs=noarch
 wrksrc="Catch2-${version}"
 build_style=cmake
 configure_args="-DCATCH_USE_VALGRIND=OFF -DCATCH_BUILD_TESTING=ON
diff --git a/srcpkgs/catfish/template b/srcpkgs/catfish/template
index 38df0a0adef..be2df4a62a7 100644
--- a/srcpkgs/catfish/template
+++ b/srcpkgs/catfish/template
@@ -2,7 +2,6 @@
 pkgname=catfish
 version=1.4.13
 revision=2
-archs=noarch
 wrksrc="catfish-catfish-${version}"
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-gobject"
diff --git a/srcpkgs/ccsm/template b/srcpkgs/ccsm/template
index bda81960c5a..45673882a8b 100644
--- a/srcpkgs/ccsm/template
+++ b/srcpkgs/ccsm/template
@@ -2,7 +2,6 @@
 pkgname=ccsm
 version=0.8.18
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="automake intltool libtool pkg-config python3"
 makedepends="compiz-core-devel compizconfig-python python3-cairo-devel pygtk-devel"
diff --git a/srcpkgs/cdemu-client/template b/srcpkgs/cdemu-client/template
index 36d40de4bb5..4b338aa5977 100644
--- a/srcpkgs/cdemu-client/template
+++ b/srcpkgs/cdemu-client/template
@@ -2,7 +2,6 @@
 pkgname=cdemu-client
 version=3.2.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DCMAKE_INSTALL_COMPLETIONSDIR=/usr/share/bash-completion/completions"
 hostmakedepends="python3 intltool pkg-config"
diff --git a/srcpkgs/cdm/template b/srcpkgs/cdm/template
index ae30eaaef91..5cca3eeae03 100644
--- a/srcpkgs/cdm/template
+++ b/srcpkgs/cdm/template
@@ -9,7 +9,6 @@ license="GPL-2.0-or-later"
 homepage="https://github.com/evertiro/cdm"
 distfiles="https://github.com/evertiro/cdm/archive/${version}.tar.gz"
 checksum=530042165ce65cdff3ec62ba9f077d0e8c6744c13f5d449d84fe2506a79d2e56
-archs=noarch
 
 do_install() {
 	sed -i 's| /| $PKGDESTDIR/|g' install.sh
diff --git a/srcpkgs/cdogs-sdl/template b/srcpkgs/cdogs-sdl/template
index 89932232310..3cbdea2430c 100644
--- a/srcpkgs/cdogs-sdl/template
+++ b/srcpkgs/cdogs-sdl/template
@@ -18,7 +18,6 @@ CFLAGS="-Wno-restrict -Wno-format-truncation -Wno-stringop-overflow -Wno-stringo
 
 cdogs-sdl-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cdogs
 	}
diff --git a/srcpkgs/cegui/template b/srcpkgs/cegui/template
index 78f0c103ba7..582040e301e 100644
--- a/srcpkgs/cegui/template
+++ b/srcpkgs/cegui/template
@@ -55,14 +55,12 @@ post_install() {
 }
 cegui-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/cegui-${version%%.*}
 	}
 }
 cegui-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/build/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cegui07/template b/srcpkgs/cegui07/template
index b5d0f735ffb..e9f1849e1fb 100644
--- a/srcpkgs/cegui07/template
+++ b/srcpkgs/cegui07/template
@@ -68,14 +68,12 @@ post_install() {
 
 cegui07-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/CEGUI
 	}
 }
 cegui07-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
 		vcopy ${wrksrc}/doc/doxygen/html usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/cereal/template b/srcpkgs/cereal/template
index c454ed85833..284bffeaeb6 100644
--- a/srcpkgs/cereal/template
+++ b/srcpkgs/cereal/template
@@ -2,7 +2,6 @@
 pkgname=cereal
 version=1.3.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DSKIP_PORTABILITY_TEST=1 -DTHREAD_SAFE=ON -DWITH_WERROR=OFF"
 short_desc="Header-only C++ serialization library"
diff --git a/srcpkgs/certbot/template b/srcpkgs/certbot/template
index 157e67923f6..0d5bb56d508 100644
--- a/srcpkgs/certbot/template
+++ b/srcpkgs/certbot/template
@@ -2,7 +2,6 @@
 pkgname=certbot
 version=1.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-acme python3-ConfigArgParse python3-configobj
diff --git a/srcpkgs/chatty/template b/srcpkgs/chatty/template
index 16bbc44096d..12d262ccabf 100644
--- a/srcpkgs/chatty/template
+++ b/srcpkgs/chatty/template
@@ -2,7 +2,6 @@
 pkgname=chatty
 version=0.12
 revision=1
-archs=noarch
 hostmakedepends="gradle"
 depends="virtual?java-runtime"
 short_desc="Twitch Chat Client for Desktop"
diff --git a/srcpkgs/checkbashisms/template b/srcpkgs/checkbashisms/template
index 88b2877e8a8..d23f71a29f1 100644
--- a/srcpkgs/checkbashisms/template
+++ b/srcpkgs/checkbashisms/template
@@ -2,7 +2,6 @@
 pkgname=checkbashisms
 version=2.20.4
 revision=1
-archs=noarch
 wrksrc="devscripts-${version}"
 depends="perl"
 checkdepends="shunit2 perl"
diff --git a/srcpkgs/checksec/template b/srcpkgs/checksec/template
index 354e288dc80..89a74ccbe62 100644
--- a/srcpkgs/checksec/template
+++ b/srcpkgs/checksec/template
@@ -2,7 +2,6 @@
 pkgname=checksec
 version=2.2.3
 revision=1
-archs=noarch
 wrksrc="checksec.sh-${version}"
 depends="binutils"
 short_desc="Check for protections like RELRO, NoExec, Stack protection, ASLR, PIE"
diff --git a/srcpkgs/cherry-font/template b/srcpkgs/cherry-font/template
index 496d45988d1..fa1aba8854c 100644
--- a/srcpkgs/cherry-font/template
+++ b/srcpkgs/cherry-font/template
@@ -2,7 +2,6 @@
 pkgname=cherry-font
 version=1.4
 revision=1
-archs=noarch
 wrksrc="cherry-${version}"
 hostmakedepends="bdftopcf"
 depends="font-util"
diff --git a/srcpkgs/cherrytree/template b/srcpkgs/cherrytree/template
index dc9530ce871..6e2d3a36ce3 100644
--- a/srcpkgs/cherrytree/template
+++ b/srcpkgs/cherrytree/template
@@ -2,7 +2,6 @@
 pkgname=cherrytree
 version=0.38.9
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_dirs="usr/share/cherrytree/modules"
 hostmakedepends="gettext python-devel desktop-file-utils"
diff --git a/srcpkgs/cinnamon-translations/template b/srcpkgs/cinnamon-translations/template
index e71998a63fb..aa0dab242cb 100644
--- a/srcpkgs/cinnamon-translations/template
+++ b/srcpkgs/cinnamon-translations/template
@@ -2,7 +2,6 @@
 pkgname=cinnamon-translations
 version=4.6.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="gettext"
 short_desc="Translations for Cinnamon and Nemo"
diff --git a/srcpkgs/ckbcomp/template b/srcpkgs/ckbcomp/template
index 225cb9d35dd..ce832e74d67 100644
--- a/srcpkgs/ckbcomp/template
+++ b/srcpkgs/ckbcomp/template
@@ -2,7 +2,6 @@
 pkgname=ckbcomp
 version=1.195
 revision=1
-archs=noarch
 wrksrc="console-setup"
 depends="perl"
 short_desc="Compile a XKB keyboard description to a keymap suitable for loadkeys"
diff --git a/srcpkgs/cldr-emoji-annotation/template b/srcpkgs/cldr-emoji-annotation/template
index 7910b83971b..ec997cbd749 100644
--- a/srcpkgs/cldr-emoji-annotation/template
+++ b/srcpkgs/cldr-emoji-annotation/template
@@ -3,7 +3,6 @@ pkgname=cldr-emoji-annotation
 version=36.12.120191002.0
 revision=1
 _tag=${version%.*}_${version##*.}
-archs=noarch
 wrksrc="${pkgname}-${_tag}"
 build_style=gnu-configure
 short_desc="Emoji annotation files in CLDR"
diff --git a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
index a2d541c8896..aa598cb15b8 100644
--- a/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
+++ b/srcpkgs/clearlooks-phenix-darkpurpy-theme/template
@@ -4,7 +4,6 @@ version=7.0.2
 revision=1
 _devuan_rel="1+devuan2.0"
 build_style=fetch
-archs=noarch
 depends="gnome-themes-standard gtk-engine-murrine gtk2-engines"
 short_desc="Dark-purpified GTK3 port of Clearlooks theme"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/clerk/template b/srcpkgs/clerk/template
index a04c6f2cef6..d365c54ed65 100644
--- a/srcpkgs/clerk/template
+++ b/srcpkgs/clerk/template
@@ -2,7 +2,6 @@
 pkgname=clerk
 version=4.0.5
 revision=1
-archs=noarch
 depends="rofi fzf tmux mpc perl-Net-MPD perl-Data-MessagePack perl-File-Slurper
 perl-Config-Simple perl-Try-Tiny perl-IPC-Run perl-HTTP-Date perl-Data-Section-Simple"
 short_desc="MPD client written in Perl using rofi or fzf"
diff --git a/srcpkgs/clipmenu/template b/srcpkgs/clipmenu/template
index 4176172d179..012affa76b6 100644
--- a/srcpkgs/clipmenu/template
+++ b/srcpkgs/clipmenu/template
@@ -2,7 +2,6 @@
 pkgname=clipmenu
 version=6.1.0
 revision=1
-archs=noarch
 depends="bash dmenu"
 short_desc="Clipboard management using dmenu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cloc/template b/srcpkgs/cloc/template
index 72213537232..efe880ccef1 100644
--- a/srcpkgs/cloc/template
+++ b/srcpkgs/cloc/template
@@ -2,7 +2,6 @@
 pkgname=cloc
 version=1.86
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Count Lines of Code"
diff --git a/srcpkgs/clyrics/template b/srcpkgs/clyrics/template
index 5a0144c5b30..6d9b04e6067 100644
--- a/srcpkgs/clyrics/template
+++ b/srcpkgs/clyrics/template
@@ -2,7 +2,6 @@
 pkgname=clyrics
 version=0.12
 revision=1
-archs=noarch
 depends="perl-LWP-Protocol-https perl-WWW-Mechanize"
 short_desc="Extensible lyrics fetcher, with daemon support for cmus and mocp"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/cmake-vala/template b/srcpkgs/cmake-vala/template
index 94222b5da1a..c263c7a5ad5 100644
--- a/srcpkgs/cmake-vala/template
+++ b/srcpkgs/cmake-vala/template
@@ -2,7 +2,6 @@
 pkgname=cmake-vala
 version=1
 revision=1
-archs=noarch
 wrksrc="cmake-vala-r${version}"
 build_style=cmake
 depends="cmake"
diff --git a/srcpkgs/cmc/template b/srcpkgs/cmc/template
index 34a50561d1d..d834639933b 100644
--- a/srcpkgs/cmc/template
+++ b/srcpkgs/cmc/template
@@ -2,7 +2,6 @@
 pkgname=cmc
 version=1.1.4
 revision=1
-archs=noarch
 short_desc="SSH ControlMaster Controller"
 maintainer="Daniel A. Maierhofer <git@damadmai.at>"
 license="MIT"
diff --git a/srcpkgs/coccigrep/template b/srcpkgs/coccigrep/template
index 8c45bc12fa4..abef9a7f6a8 100644
--- a/srcpkgs/coccigrep/template
+++ b/srcpkgs/coccigrep/template
@@ -2,7 +2,6 @@
 pkgname=coccigrep
 version=1.20
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="coccinelle python3-Pygments"
diff --git a/srcpkgs/coin3/template b/srcpkgs/coin3/template
index 4150c863e9f..acb1e4a0b88 100644
--- a/srcpkgs/coin3/template
+++ b/srcpkgs/coin3/template
@@ -67,7 +67,6 @@ coin3-devel_package() {
 
 coin3-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/collectl/template b/srcpkgs/collectl/template
index aec4b83ff46..a3d0ba59310 100644
--- a/srcpkgs/collectl/template
+++ b/srcpkgs/collectl/template
@@ -2,7 +2,6 @@
 pkgname=collectl
 version=4.3.1
 revision=1
-archs=noarch
 conf_files="/etc/collectl.conf"
 depends="perl perl-Term-ReadKey"
 short_desc="Collects data that describes the current system status"
diff --git a/srcpkgs/colordiff/template b/srcpkgs/colordiff/template
index bf7fea1873c..f01e98f5616 100644
--- a/srcpkgs/colordiff/template
+++ b/srcpkgs/colordiff/template
@@ -2,7 +2,6 @@
 pkgname=colordiff
 version=1.0.19
 revision=1
-archs=noarch
 depends="perl"
 conf_files="/etc/colordiffrc /etc/colordiffrc-lightbg /etc/colordiffrc-gitdiff"
 short_desc="Colorizes output of diff"
diff --git a/srcpkgs/compiz-bcop/template b/srcpkgs/compiz-bcop/template
index c1a82cb881b..667863577fb 100644
--- a/srcpkgs/compiz-bcop/template
+++ b/srcpkgs/compiz-bcop/template
@@ -2,7 +2,6 @@
 pkgname=compiz-bcop
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/composer/template b/srcpkgs/composer/template
index 353603a5118..03e0b111389 100644
--- a/srcpkgs/composer/template
+++ b/srcpkgs/composer/template
@@ -2,7 +2,6 @@
 pkgname=composer
 version=1.10.10
 revision=1
-archs=noarch
 build_style=fetch
 depends="php"
 short_desc="Dependency manager for PHP"
diff --git a/srcpkgs/coreboot-utils/template b/srcpkgs/coreboot-utils/template
index e6c57472ea1..47ffc16a9db 100644
--- a/srcpkgs/coreboot-utils/template
+++ b/srcpkgs/coreboot-utils/template
@@ -32,7 +32,6 @@ do_install() {
 }
 
 coreboot-utils-me_cleaner_package() {
-	archs=noarch
 	python_version=3
 	depends="python3"
 	short_desc="Tool for partial deblobbing Intel ME/TXE firmware images"
diff --git a/srcpkgs/couchpotato/template b/srcpkgs/couchpotato/template
index 3d7e27004d1..1e4572fcdac 100644
--- a/srcpkgs/couchpotato/template
+++ b/srcpkgs/couchpotato/template
@@ -2,7 +2,6 @@
 pkgname=couchpotato
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="CouchPotatoServer-build-${version}"
 pycompile_dirs="/usr/share/couchpotato"
 make_dirs="
diff --git a/srcpkgs/coursera-dl/template b/srcpkgs/coursera-dl/template
index 4609573f7f4..fff37f018d4 100644
--- a/srcpkgs/coursera-dl/template
+++ b/srcpkgs/coursera-dl/template
@@ -2,7 +2,6 @@
 pkgname=coursera-dl
 version=0.11.5
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="coursera"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/cowsay-temoc/template b/srcpkgs/cowsay-temoc/template
index f03a4d1775e..efaba0d3fed 100644
--- a/srcpkgs/cowsay-temoc/template
+++ b/srcpkgs/cowsay-temoc/template
@@ -9,7 +9,6 @@ license="GPL-3"
 homepage="https://github.com/kulinacs/cowsay-temoc"
 distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=6667a37a0de41fb46750bce4847fee97da251e9bea4dc5a33b5c0e432b795c8d
-archs=noarch
 
 do_install() {
 	vinstall temoc.cow 644 /usr/share/cows/
diff --git a/srcpkgs/cowsay/template b/srcpkgs/cowsay/template
index efa372b3aa5..97d67b9fd40 100644
--- a/srcpkgs/cowsay/template
+++ b/srcpkgs/cowsay/template
@@ -2,7 +2,6 @@
 pkgname=cowsay
 version=3.04
 revision=2
-archs=noarch
 wrksrc="rank-amateur-cowsay-${pkgname}-${version}"
 depends="perl"
 short_desc="Configurable speaking/thinking cow (and a bit more)"
diff --git a/srcpkgs/cozy/template b/srcpkgs/cozy/template
index fc9bc66212b..f9d769162d5 100644
--- a/srcpkgs/cozy/template
+++ b/srcpkgs/cozy/template
@@ -2,7 +2,6 @@
 pkgname=cozy
 version=0.6.18
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config glib-devel python3 python3-distro python3-peewee
  python3-mutagen python3-gobject-devel"
diff --git a/srcpkgs/cpanminus/template b/srcpkgs/cpanminus/template
index 490ecd111b2..7e385544b1d 100644
--- a/srcpkgs/cpanminus/template
+++ b/srcpkgs/cpanminus/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/App-cpanminus"
 distfiles="${CPAN_SITE}/App/App-${pkgname}-${version}.tar.gz"
 checksum=9b60767fe40752ef7a9d3f13f19060a63389a5c23acc3e9827e19b75500f81f3
-archs=noarch
diff --git a/srcpkgs/cpuset/template b/srcpkgs/cpuset/template
index 12b54631617..dd9b32549b5 100644
--- a/srcpkgs/cpuset/template
+++ b/srcpkgs/cpuset/template
@@ -2,7 +2,6 @@
 pkgname=cpuset
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="cpuset"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/create_ap/template b/srcpkgs/create_ap/template
index 481ba622def..2bb58047096 100644
--- a/srcpkgs/create_ap/template
+++ b/srcpkgs/create_ap/template
@@ -2,7 +2,6 @@
 pkgname=create_ap
 version=0.4.6
 revision=2
-archs=noarch
 conf_files="/etc/create_ap.conf"
 build_style=gnu-makefile
 depends="bash dnsmasq hostapd iproute2 iptables iw procps-ng util-linux"
diff --git a/srcpkgs/criu/template b/srcpkgs/criu/template
index 0f7b55853f3..9d52f8ce024 100644
--- a/srcpkgs/criu/template
+++ b/srcpkgs/criu/template
@@ -37,7 +37,6 @@ criu-devel_package() {
 }
 
 criu-python_package() {
-	archs=noarch
 	depends="python-protobuf python-ipaddr criu-${version}_${revision}"
 	short_desc="Python2 bindings for criu and crit cli util"
 	pkg_install() {
diff --git a/srcpkgs/ctop/template b/srcpkgs/ctop/template
index 5231b4a4cb3..b57e7aa642c 100644
--- a/srcpkgs/ctop/template
+++ b/srcpkgs/ctop/template
@@ -2,7 +2,6 @@
 pkgname=ctop
 version=1.0.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="cgroup_top.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/culmus/template b/srcpkgs/culmus/template
index dc6599990ef..d5cc36e1ef4 100644
--- a/srcpkgs/culmus/template
+++ b/srcpkgs/culmus/template
@@ -2,7 +2,6 @@
 pkgname=culmus
 version=0.133
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="A collection of Type1 and TrueType free Hebrew fonts"
 maintainer="DirectorX <void.directorx@protonmail.com>"
diff --git a/srcpkgs/cura-fdm-materials/template b/srcpkgs/cura-fdm-materials/template
index 111b731f525..14d347d81fd 100644
--- a/srcpkgs/cura-fdm-materials/template
+++ b/srcpkgs/cura-fdm-materials/template
@@ -3,7 +3,6 @@ pkgname=cura-fdm-materials
 reverts="2019.08.21_1"
 version=4.7.0
 revision=1
-archs=noarch
 wrksrc="fdm_materials-${version}"
 build_style=cmake
 short_desc="FDM Material database"
diff --git a/srcpkgs/cura/template b/srcpkgs/cura/template
index f66e02f2d61..ea8e2b52098 100644
--- a/srcpkgs/cura/template
+++ b/srcpkgs/cura/template
@@ -2,7 +2,6 @@
 pkgname=cura
 version=4.7.0
 revision=1
-archs=noarch
 wrksrc="Cura-${version}"
 build_style=cmake
 configure_args="-DCURA_VERSION=${version}
diff --git a/srcpkgs/curseradio/template b/srcpkgs/curseradio/template
index f5afe3bba34..518da660991 100644
--- a/srcpkgs/curseradio/template
+++ b/srcpkgs/curseradio/template
@@ -2,7 +2,6 @@
 pkgname=curseradio
 version=0.0.20171017
 revision=4
-archs=noarch
 _commit=1bd4bd0faeec675e0647bac9a100b526cba19f8d
 wrksrc="curseradio-${_commit}"
 build_style=python3-module
diff --git a/srcpkgs/cvs2svn/template b/srcpkgs/cvs2svn/template
index 55e679f2abe..f8b13d2ac0b 100644
--- a/srcpkgs/cvs2svn/template
+++ b/srcpkgs/cvs2svn/template
@@ -2,7 +2,6 @@
 pkgname=cvs2svn
 version=2.5.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_build_args="man"
 hostmakedepends="python"
diff --git a/srcpkgs/cycle/template b/srcpkgs/cycle/template
index 58649da6482..8affc847c16 100644
--- a/srcpkgs/cycle/template
+++ b/srcpkgs/cycle/template
@@ -2,7 +2,6 @@
 pkgname=cycle
 version=0.3.2
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/cycle"
 hostmakedepends="python"
 depends="wxPython"
diff --git a/srcpkgs/d-feet/template b/srcpkgs/d-feet/template
index beac13b35c3..e984f2af90f 100644
--- a/srcpkgs/d-feet/template
+++ b/srcpkgs/d-feet/template
@@ -2,7 +2,6 @@
 pkgname=d-feet
 version=0.3.15
 revision=3
-archs=noarch
 build_style=meson
 pycompile_module="dfeet"
 hostmakedepends="pkg-config intltool itstool python3-pycodestyle"
diff --git a/srcpkgs/db/template b/srcpkgs/db/template
index b7519609b9e..bdd42a64e9e 100644
--- a/srcpkgs/db/template
+++ b/srcpkgs/db/template
@@ -32,7 +32,6 @@ db-devel_package() {
 }
 db-doc_package() {
 	short_desc+=" - documentation files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/ddclient/template b/srcpkgs/ddclient/template
index 37d85a49f4c..8d3fd068633 100644
--- a/srcpkgs/ddclient/template
+++ b/srcpkgs/ddclient/template
@@ -2,7 +2,6 @@
 pkgname=ddclient
 version=3.9.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="perl-Data-Validate-IP perl-IO-Socket-SSL"
 short_desc="Perl client used to update dynamic DNS"
diff --git a/srcpkgs/ddgr/template b/srcpkgs/ddgr/template
index d4142bb59b9..25ef4695ac8 100644
--- a/srcpkgs/ddgr/template
+++ b/srcpkgs/ddgr/template
@@ -2,7 +2,6 @@
 pkgname=ddgr
 version=1.9
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-requests"
 short_desc="DuckDuckGo from the terminal"
diff --git a/srcpkgs/deepin-gtk-theme/template b/srcpkgs/deepin-gtk-theme/template
index becf7701621..26865e28adb 100644
--- a/srcpkgs/deepin-gtk-theme/template
+++ b/srcpkgs/deepin-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-gtk-theme
 version=17.10.11
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Deepin GTK Theme"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/deepin-icon-theme/template b/srcpkgs/deepin-icon-theme/template
index 60902c27771..ff19188a5a7 100644
--- a/srcpkgs/deepin-icon-theme/template
+++ b/srcpkgs/deepin-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=deepin-icon-theme
 version=2020.04.13
 revision=1
-archs=noarch
 hostmakedepends="xcursorgen"
 depends="papirus-icon-theme"
 short_desc="Deepin Icon Theme"
diff --git a/srcpkgs/deerportal/template b/srcpkgs/deerportal/template
index c027c258e68..ac55e4ee30e 100644
--- a/srcpkgs/deerportal/template
+++ b/srcpkgs/deerportal/template
@@ -14,7 +14,6 @@ checksum=a79a6286c9be1c6073f5d8fe79e45b309425f597d0532d2a042cd8369f57725d
 
 deerportal-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/deheader/template b/srcpkgs/deheader/template
index f3809a35a44..4fa6ef39046 100644
--- a/srcpkgs/deheader/template
+++ b/srcpkgs/deheader/template
@@ -3,7 +3,6 @@ pkgname=deheader
 version=1.6
 revision=3
 create_wrksrc=yes
-archs=noarch
 hostmakedepends="tar"
 depends="python"
 short_desc="C and C++ header analyzer"
diff --git a/srcpkgs/dehydrated/template b/srcpkgs/dehydrated/template
index c7b3ce7abb9..74875e6a3c7 100644
--- a/srcpkgs/dehydrated/template
+++ b/srcpkgs/dehydrated/template
@@ -2,7 +2,6 @@
 pkgname=dehydrated
 version=0.6.5
 revision=1
-archs=noarch
 depends="curl"
 short_desc="Acme client implemented as a shell-script – just add water"
 maintainer="Toyam Cox <Vaelatern@voidlinux.org>"
diff --git a/srcpkgs/dejavu-fonts-ttf/template b/srcpkgs/dejavu-fonts-ttf/template
index 88bc1960c99..ba0a43f8c64 100644
--- a/srcpkgs/dejavu-fonts-ttf/template
+++ b/srcpkgs/dejavu-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=dejavu-fonts-ttf
 version=2.37
 revision=1
-archs=noarch
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
 short_desc="DejaVu family of TrueType fonts"
diff --git a/srcpkgs/deluge/template b/srcpkgs/deluge/template
index bb48e58ef6f..00afd733aec 100644
--- a/srcpkgs/deluge/template
+++ b/srcpkgs/deluge/template
@@ -2,7 +2,6 @@
 pkgname=deluge
 version=2.0.3
 revision=6
-archs=noarch
 build_style=python3-module
 # TODO package python3-slimit to minify javascript
 hostmakedepends="intltool python3-setuptools python3-wheel"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 deluge-gtk_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - GTK+ frontend"
 	depends="${sourcepkg}-${version}_${revision} python3-gobject"
@@ -42,7 +40,6 @@ deluge-gtk_package() {
 	}
 }
 deluge-web_package() {
-	archs=noarch
 	replaces="deluge<1.3.14_1"
 	short_desc+=" - Web frontend"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/devedeng/template b/srcpkgs/devedeng/template
index e3bb19e3fc8..a32f186450f 100644
--- a/srcpkgs/devedeng/template
+++ b/srcpkgs/devedeng/template
@@ -2,7 +2,6 @@
 pkgname=devedeng
 version=4.16.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="devedeng"
 hostmakedepends="gettext python3"
diff --git a/srcpkgs/dex/template b/srcpkgs/dex/template
index 88b5552b070..06af8b30b5d 100644
--- a/srcpkgs/dex/template
+++ b/srcpkgs/dex/template
@@ -2,7 +2,6 @@
 pkgname=dex
 version=0.8.0
 revision=2
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANPREFIX=/usr/share/man"
 hostmakedepends="python3-Sphinx"
diff --git a/srcpkgs/dhcpcd-gtk/template b/srcpkgs/dhcpcd-gtk/template
index af5bddc45c5..62ddaa13e59 100644
--- a/srcpkgs/dhcpcd-gtk/template
+++ b/srcpkgs/dhcpcd-gtk/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 dhcpcd-icons_package() {
-	archs=noarch
 	short_desc+=" - icon set"
 	depends="hicolor-icon-theme"
 	replaces="dhcpcd-gtk<0.7.4"
diff --git a/srcpkgs/diffoscope/template b/srcpkgs/diffoscope/template
index a45bc5d7959..d3f8896c50a 100644
--- a/srcpkgs/diffoscope/template
+++ b/srcpkgs/diffoscope/template
@@ -2,7 +2,6 @@
 pkgname=diffoscope
 version=147
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-magic python3-libarchive-c python3-setuptools
diff --git a/srcpkgs/dina-font/template b/srcpkgs/dina-font/template
index 2d4a740eacc..dcc1660f28e 100644
--- a/srcpkgs/dina-font/template
+++ b/srcpkgs/dina-font/template
@@ -2,7 +2,6 @@
 pkgname=dina-font
 version=2.93
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="bdftopcf font-util unzip"
 depends="font-util"
diff --git a/srcpkgs/ditaa/template b/srcpkgs/ditaa/template
index c7978f18bd4..3734b1316a3 100644
--- a/srcpkgs/ditaa/template
+++ b/srcpkgs/ditaa/template
@@ -2,7 +2,6 @@
 pkgname=ditaa
 version=0.11.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=fetch
 depends="virtual?java-environment"
diff --git a/srcpkgs/dkimproxy/template b/srcpkgs/dkimproxy/template
index de0eec306ba..a31f3a895aa 100644
--- a/srcpkgs/dkimproxy/template
+++ b/srcpkgs/dkimproxy/template
@@ -3,8 +3,6 @@ pkgname=dkimproxy
 version=1.4.1
 revision=1
 build_style=gnu-configure
-# dkimproxy is written in perl, so noarch
-archs=noarch
 hostmakedepends="perl perl-Net-Server perl-Mail-DKIM"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/dnssec-anchors/template b/srcpkgs/dnssec-anchors/template
index 18b24b4f80d..33e43584acd 100644
--- a/srcpkgs/dnssec-anchors/template
+++ b/srcpkgs/dnssec-anchors/template
@@ -8,7 +8,6 @@ short_desc="DNSSEC trust anchors for the root zone"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
 homepage="http://data.iana.org/root-anchors/"
-archs=noarch
 
 do_install() {
 	# Generate using unbound-anchor(1).
diff --git a/srcpkgs/docbook-dsssl/template b/srcpkgs/docbook-dsssl/template
index 2530523b127..e8cbf4a1161 100644
--- a/srcpkgs/docbook-dsssl/template
+++ b/srcpkgs/docbook-dsssl/template
@@ -2,7 +2,6 @@
 pkgname=docbook-dsssl
 version=1.79
 revision=3
-archs=noarch
 makedepends="xmlcatmgr docbook-xml"
 depends="${makedepends}"
 short_desc="DSSSL stylesheets for the DocBook DTD"
diff --git a/srcpkgs/docbook-xml/template b/srcpkgs/docbook-xml/template
index ef5634c0603..9ee76e8cd83 100644
--- a/srcpkgs/docbook-xml/template
+++ b/srcpkgs/docbook-xml/template
@@ -2,7 +2,6 @@
 pkgname=docbook-xml
 version=4.5
 revision=4
-archs=noarch
 wrksrc="docbook"
 hostmakedepends="bsdtar"
 makedepends="xmlcatmgr"
diff --git a/srcpkgs/docbook-xsl-ns/template b/srcpkgs/docbook-xsl-ns/template
index 6c34d9b171b..5e3baf038f8 100644
--- a/srcpkgs/docbook-xsl-ns/template
+++ b/srcpkgs/docbook-xsl-ns/template
@@ -3,7 +3,6 @@ pkgname=docbook-xsl-ns
 # keep in sync with docbook-xsl
 version=1.79.1
 revision=1
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Cameron Nemo <cnemo@tutanota.com>"
diff --git a/srcpkgs/docbook-xsl/template b/srcpkgs/docbook-xsl/template
index 0d63b09dfbe..da08cd74cdb 100644
--- a/srcpkgs/docbook-xsl/template
+++ b/srcpkgs/docbook-xsl/template
@@ -4,7 +4,6 @@ reverts="1.79.2_1"
 # keep in sync with docbook-xsl-ns
 version=1.79.1
 revision=7
-archs=noarch
 depends="xmlcatmgr docbook-xml>=4.2"
 short_desc="Docbook XSL modular stylesheet"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/docbook/template b/srcpkgs/docbook/template
index a36660f122b..710a65e699c 100644
--- a/srcpkgs/docbook/template
+++ b/srcpkgs/docbook/template
@@ -2,7 +2,6 @@
 pkgname=docbook
 version=4.5
 revision=4
-archs=noarch
 hostmakedepends="bsdtar"
 depends="xmlcatmgr ISOEnts"
 short_desc="SGML DTD designed for computer documentation"
diff --git a/srcpkgs/docker-compose/template b/srcpkgs/docker-compose/template
index d381a1091d0..c61787c2473 100644
--- a/srcpkgs/docker-compose/template
+++ b/srcpkgs/docker-compose/template
@@ -2,7 +2,6 @@
 pkgname=docker-compose
 version=1.25.5
 revision=1
-archs=noarch
 wrksrc="compose-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/docx2txt/template b/srcpkgs/docx2txt/template
index 709713d475f..aaea19e0205 100644
--- a/srcpkgs/docx2txt/template
+++ b/srcpkgs/docx2txt/template
@@ -2,7 +2,6 @@
 pkgname=docx2txt
 version=1.4
 revision=2
-archs=noarch
 conf_files="/etc/docx2txt.config"
 depends="perl unzip"
 short_desc="Docx (MS Word) to Text convertor"
diff --git a/srcpkgs/dot-xsession/template b/srcpkgs/dot-xsession/template
index e5fe04677e9..fd21ba7c217 100644
--- a/srcpkgs/dot-xsession/template
+++ b/srcpkgs/dot-xsession/template
@@ -2,7 +2,6 @@
 pkgname=dot-xsession
 version=0.1
 revision=2
-archs=noarch
 depends="xmessage"
 short_desc="XSession file to run the users ~/.xsession"
 maintainer="Florian Wagner <florian@wagner-flo.net>"
diff --git a/srcpkgs/downloader-cli/template b/srcpkgs/downloader-cli/template
index 2e5b1ed2d59..92781e2363b 100644
--- a/srcpkgs/downloader-cli/template
+++ b/srcpkgs/downloader-cli/template
@@ -2,7 +2,6 @@
 pkgname=downloader-cli
 version=0.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-urllib3 python3-downloader-cli"
diff --git a/srcpkgs/dpdk/template b/srcpkgs/dpdk/template
index 0f3b5630b7b..bc6b9148a62 100644
--- a/srcpkgs/dpdk/template
+++ b/srcpkgs/dpdk/template
@@ -33,7 +33,6 @@ post_install() {
 
 dpdk-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/dracut/template b/srcpkgs/dracut/template
index f4f52be097a..68ef7f8e37b 100644
--- a/srcpkgs/dracut/template
+++ b/srcpkgs/dracut/template
@@ -57,7 +57,6 @@ post_install() {
 dracut-network_package() {
 	depends="dhclient ${sourcepkg}-${version}_${revision}"
 	short_desc+=" - network modules"
-	archs=noarch
 	pkg_install() {
 		for f in 40network 90livenet 95fcoe 95iscsi \
 			95nbd 95nfs 95zfcp 95znet; do
diff --git a/srcpkgs/dreampie/template b/srcpkgs/dreampie/template
index edd0f48298b..bf8d07ea53f 100644
--- a/srcpkgs/dreampie/template
+++ b/srcpkgs/dreampie/template
@@ -2,7 +2,6 @@
 pkgname=dreampie
 version=1.2.1
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="dreampielib"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/drist/template b/srcpkgs/drist/template
index 89f39b7eec8..99700b7f90f 100644
--- a/srcpkgs/drist/template
+++ b/srcpkgs/drist/template
@@ -2,7 +2,6 @@
 pkgname=drist
 version=1.04
 revision=1
-archs=noarch
 wrksrc=$pkgname-v$version
 build_style=gnu-makefile
 depends="openssh rsync"
diff --git a/srcpkgs/dstat/template b/srcpkgs/dstat/template
index 3ec983e85db..084d1426889 100644
--- a/srcpkgs/dstat/template
+++ b/srcpkgs/dstat/template
@@ -2,7 +2,6 @@
 pkgname=dstat
 version=0.7.4
 revision=2
-archs=noarch
 makedepends="python3"
 depends="python3-six"
 short_desc="Versatile tool for generating system resource statistics"
diff --git a/srcpkgs/dtrx/template b/srcpkgs/dtrx/template
index 6ccec18f5b2..e7d8af1c2eb 100644
--- a/srcpkgs/dtrx/template
+++ b/srcpkgs/dtrx/template
@@ -2,7 +2,6 @@
 pkgname=dtrx
 version=7.1
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python"
diff --git a/srcpkgs/duiadns/template b/srcpkgs/duiadns/template
index ae34b00cb95..30c1a9ec4e0 100644
--- a/srcpkgs/duiadns/template
+++ b/srcpkgs/duiadns/template
@@ -2,7 +2,6 @@
 pkgname=duiadns
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-netifaces python3-netaddr python3-requests"
diff --git a/srcpkgs/durden/template b/srcpkgs/durden/template
index 54a4bc1759b..c4de0863636 100644
--- a/srcpkgs/durden/template
+++ b/srcpkgs/durden/template
@@ -9,7 +9,6 @@ license="BSD-3-Clause"
 homepage="http://durden.arcan-fe.com/"
 distfiles="https://github.com/letoram/${pkgname}/archive/${version}.tar.gz"
 checksum=f0cb0cdc6d16b4807efab5b6152b9f26813dccd2d66af5f1d80494769f840915
-archs=noarch
 
 do_install() {
 	vbin distr/durden
diff --git a/srcpkgs/easyrsa/template b/srcpkgs/easyrsa/template
index 517dd6ff50b..fb5adbec8db 100644
--- a/srcpkgs/easyrsa/template
+++ b/srcpkgs/easyrsa/template
@@ -2,7 +2,6 @@
 pkgname=easyrsa
 version=3.0.7
 revision=1
-archs="noarch"
 wrksrc="EasyRSA-${version}"
 depends="libressl"
 short_desc="Simple shell based CA utility"
diff --git a/srcpkgs/econnman/template b/srcpkgs/econnman/template
index 9568c2e2adf..f8750ebb914 100644
--- a/srcpkgs/econnman/template
+++ b/srcpkgs/econnman/template
@@ -2,7 +2,6 @@
 pkgname=econnman
 version=1.1.0
 revision=5
-archs=noarch
 _gitrev=18e7be6bf80df6b86965ba93391b205339fc7267
 wrksrc=${pkgname}-${_gitrev}
 build_style=gnu-configure
diff --git a/srcpkgs/edx-dl/template b/srcpkgs/edx-dl/template
index 1ea89343e7a..1f0b0d53010 100644
--- a/srcpkgs/edx-dl/template
+++ b/srcpkgs/edx-dl/template
@@ -2,7 +2,6 @@
 pkgname=edx-dl
 version=0.1.13
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-html5lib python3-setuptools
diff --git a/srcpkgs/eigen/template b/srcpkgs/eigen/template
index 8344fbf98ec..7d283094bf7 100644
--- a/srcpkgs/eigen/template
+++ b/srcpkgs/eigen/template
@@ -2,7 +2,6 @@
 pkgname=eigen
 version=3.3.7
 revision=2
-archs=noarch
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/eigen2/template b/srcpkgs/eigen2/template
index 08087b4900b..dffc3ffe0fa 100644
--- a/srcpkgs/eigen2/template
+++ b/srcpkgs/eigen2/template
@@ -3,7 +3,6 @@ pkgname=eigen2
 reverts="3.2.2_1"
 version=2.0.17
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b23437e61a07"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 2.x)"
diff --git a/srcpkgs/eigen3.2/template b/srcpkgs/eigen3.2/template
index eaedcc6fe2a..5ac0fc384ac 100644
--- a/srcpkgs/eigen3.2/template
+++ b/srcpkgs/eigen3.2/template
@@ -2,7 +2,6 @@
 pkgname=eigen3.2
 version=3.2.10
 revision=2
-archs=noarch
 wrksrc="eigen-eigen-b9cd8366d4e8"
 build_style=cmake
 short_desc="C++ template library for linear algebra (version 3.x)"
diff --git a/srcpkgs/ekushey-fonts-ttf/template b/srcpkgs/ekushey-fonts-ttf/template
index 406a5f88969..3eb10b23313 100644
--- a/srcpkgs/ekushey-fonts-ttf/template
+++ b/srcpkgs/ekushey-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=ekushey-fonts-ttf
 version=20191020
 revision=1
-archs=noarch
 build_style=fetch
 depends="font-util"
 short_desc="Bengali fonts from Ekushey project"
diff --git a/srcpkgs/electrum-ltc/template b/srcpkgs/electrum-ltc/template
index 550fda484e6..0f9ed450bbf 100644
--- a/srcpkgs/electrum-ltc/template
+++ b/srcpkgs/electrum-ltc/template
@@ -2,7 +2,6 @@
 pkgname=electrum-ltc
 version=3.3.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-PyQt5-devel-tools"
 depends="python3-aiohttp python3-aiohttp_socks python3-aiorpcx
diff --git a/srcpkgs/electrum/template b/srcpkgs/electrum/template
index 835fbf25533..839b59a6ba2 100644
--- a/srcpkgs/electrum/template
+++ b/srcpkgs/electrum/template
@@ -2,7 +2,6 @@
 pkgname=electrum
 version=3.3.8
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="electrum electrum_gui electrum_plugins"
 hostmakedepends="python3-PyQt5-devel-tools python3-setuptools"
diff --git a/srcpkgs/emacs-ess/template b/srcpkgs/emacs-ess/template
index 40338f2f137..a03e71623f5 100644
--- a/srcpkgs/emacs-ess/template
+++ b/srcpkgs/emacs-ess/template
@@ -3,7 +3,6 @@ pkgname=emacs-ess
 reverts="18.10r1_1"
 version=18.10.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="ess-${version}"
 makedepends="emacs perl"
diff --git a/srcpkgs/emacs/template b/srcpkgs/emacs/template
index 420ef0fa14f..4e2f9c7fdea 100755
--- a/srcpkgs/emacs/template
+++ b/srcpkgs/emacs/template
@@ -81,7 +81,6 @@ do_install() {
 
 emacs-common_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/emacs
 		vmove usr/share/man
diff --git a/srcpkgs/emerald-themes/template b/srcpkgs/emerald-themes/template
index 7e17b4bfad9..a9e11467bae 100644
--- a/srcpkgs/emerald-themes/template
+++ b/srcpkgs/emerald-themes/template
@@ -2,7 +2,6 @@
 pkgname=emerald-themes
 version=0.8.18
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake intltool libtool pkg-config"
 makedepends="emerald-devel"
diff --git a/srcpkgs/encodings/template b/srcpkgs/encodings/template
index eb2ef08e8e6..f4be9fec9d6 100644
--- a/srcpkgs/encodings/template
+++ b/srcpkgs/encodings/template
@@ -2,7 +2,6 @@
 pkgname=encodings
 version=1.0.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config font-util"
 depends="font-util"
diff --git a/srcpkgs/endless-sky-gl21/template b/srcpkgs/endless-sky-gl21/template
index ead1c34e626..f69b748b665 100644
--- a/srcpkgs/endless-sky-gl21/template
+++ b/srcpkgs/endless-sky-gl21/template
@@ -18,7 +18,6 @@ checksum=46918d0cc35aaeb1219194099223e3338245aa04aa3f29fd76e3376bf5779376
 
 endless-sky-gl21-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/endless-sky/template b/srcpkgs/endless-sky/template
index 829bdf28df7..4aa6fcffc44 100644
--- a/srcpkgs/endless-sky/template
+++ b/srcpkgs/endless-sky/template
@@ -15,7 +15,6 @@ checksum=31f76ac11666415478678d924174d43a620a7fd1093e95131776aed12b912eb4
 
 endless-sky-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games/endless-sky
 	}
diff --git a/srcpkgs/enigma/template b/srcpkgs/enigma/template
index 89f359f80c7..3d11662e5da 100644
--- a/srcpkgs/enigma/template
+++ b/srcpkgs/enigma/template
@@ -31,7 +31,6 @@ post_install() {
 
 enigma-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/enigma
 	}
@@ -39,7 +38,6 @@ enigma-data_package() {
 
 enigma-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/envypn-font/template b/srcpkgs/envypn-font/template
index 9f3d7de3075..146c2b130ce 100644
--- a/srcpkgs/envypn-font/template
+++ b/srcpkgs/envypn-font/template
@@ -2,7 +2,6 @@
 pkgname=envypn-font
 version=1.7.1
 revision=3
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="Readable bitmap font inspired by Envy Code R"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/erlang/template b/srcpkgs/erlang/template
index 371e9404e69..35c9bed4ee9 100644
--- a/srcpkgs/erlang/template
+++ b/srcpkgs/erlang/template
@@ -59,7 +59,6 @@ post_install() {
 erlang-doc_package() {
 	short_desc="Erlang programming language documentation and examples"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/erlang/doc
 		for i in $(cd ${DESTDIR}; find usr/lib/erlang -type d \( -path '*/examples' -o -path '*/doc/html' \))
diff --git a/srcpkgs/escrotum/template b/srcpkgs/escrotum/template
index 44cec111737..5438e8a4c14 100644
--- a/srcpkgs/escrotum/template
+++ b/srcpkgs/escrotum/template
@@ -2,7 +2,6 @@
 pkgname=escrotum
 version=0.2.1
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="escrotum"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/eselect/template b/srcpkgs/eselect/template
index 04111ebc945..fd987f2c034 100644
--- a/srcpkgs/eselect/template
+++ b/srcpkgs/eselect/template
@@ -2,7 +2,6 @@
 pkgname=eselect
 version=1.4.16
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libtool"
 depends="bash"
diff --git a/srcpkgs/etcetera/template b/srcpkgs/etcetera/template
index d6723467c4b..0af51a75c49 100644
--- a/srcpkgs/etcetera/template
+++ b/srcpkgs/etcetera/template
@@ -2,7 +2,6 @@
 pkgname=etcetera
 version=1.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Config file management with a touch of wisdom"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/etckeeper/template b/srcpkgs/etckeeper/template
index 26cffae3768..210c55a62dd 100644
--- a/srcpkgs/etckeeper/template
+++ b/srcpkgs/etckeeper/template
@@ -2,7 +2,6 @@
 pkgname=etckeeper
 version=1.18.14
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/etckeeper/etckeeper.conf"
 hostmakedepends="perl"
diff --git a/srcpkgs/etesync-dav/template b/srcpkgs/etesync-dav/template
index 03763f96644..3c8b547f230 100644
--- a/srcpkgs/etesync-dav/template
+++ b/srcpkgs/etesync-dav/template
@@ -2,7 +2,6 @@
 pkgname=etesync-dav
 version=0.17.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-etesync radicale2 python3-Flask python3-Flask-WTF"
diff --git a/srcpkgs/etr/template b/srcpkgs/etr/template
index f3af59d2220..6414c6a8c9c 100644
--- a/srcpkgs/etr/template
+++ b/srcpkgs/etr/template
@@ -15,7 +15,6 @@ checksum=4b2899314eda8d0826504ab274acb13ab0dab58b6d0641587749dfa77757da17
 
 etr-data_package() {
  	short_desc+=" - data files"
- 	archs=noarch
  	pkg_install() {
  		vmove usr/share/etr
  	}
diff --git a/srcpkgs/execline/template b/srcpkgs/execline/template
index ad3b509a2f1..4deda1faa19 100644
--- a/srcpkgs/execline/template
+++ b/srcpkgs/execline/template
@@ -35,7 +35,6 @@ post_install() {
 }
 
 execline-doc_package() {
-	archs=noarch
 	short_desc+=" - Documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/exiftool/template b/srcpkgs/exiftool/template
index 1b6d0f51e72..f4f4fb89485 100644
--- a/srcpkgs/exiftool/template
+++ b/srcpkgs/exiftool/template
@@ -2,7 +2,6 @@
 pkgname=exiftool
 version=12.05
 revision=1
-archs=noarch
 wrksrc="Image-ExifTool-${version}"
 build_style=perl-module
 hostmakedepends="perl tar"
diff --git a/srcpkgs/extra-cmake-modules/template b/srcpkgs/extra-cmake-modules/template
index 99601e6ce62..5a958049219 100644
--- a/srcpkgs/extra-cmake-modules/template
+++ b/srcpkgs/extra-cmake-modules/template
@@ -2,7 +2,6 @@
 pkgname=extra-cmake-modules
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_HTML_DOCS=OFF -DBUILD_TESTING=OFF"
 hostmakedepends="python3-Sphinx qt5-tools"
diff --git a/srcpkgs/eyeD3/template b/srcpkgs/eyeD3/template
index ee7f68f9e36..bbdbde91e85 100644
--- a/srcpkgs/eyeD3/template
+++ b/srcpkgs/eyeD3/template
@@ -2,7 +2,6 @@
 pkgname=eyeD3
 version=0.9.5
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-grako python3-pylast python3-setuptools python3-deprecation
diff --git a/srcpkgs/faba-icon-theme/template b/srcpkgs/faba-icon-theme/template
index 7624d10a4db..6fc98c76314 100644
--- a/srcpkgs/faba-icon-theme/template
+++ b/srcpkgs/faba-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faba-icon-theme
 version=4.3
 revision=1
-archs=noarch
 build_style=meson
 short_desc="Sexy, modern FreeDesktop icon set with Tango and elementary influences"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/faenza-icon-theme/template b/srcpkgs/faenza-icon-theme/template
index f05167001e4..447ffeef02e 100644
--- a/srcpkgs/faenza-icon-theme/template
+++ b/srcpkgs/faenza-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faenza-icon-theme
 version=1.3.1
 revision=2
-archs=noarch
 wrksrc="faenza-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme"
 short_desc="Faenza icon theme"
diff --git a/srcpkgs/faience-icon-theme/template b/srcpkgs/faience-icon-theme/template
index 27a4fb5be9a..426205bbf78 100644
--- a/srcpkgs/faience-icon-theme/template
+++ b/srcpkgs/faience-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=faience-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="faience-icon-theme-${version%.*}"
 depends="gtk-update-icon-cache hicolor-icon-theme faenza-icon-theme"
 short_desc="An icon theme based on Faenza"
diff --git a/srcpkgs/fail2ban/template b/srcpkgs/fail2ban/template
index cde2f25630f..3b823a5bc16 100644
--- a/srcpkgs/fail2ban/template
+++ b/srcpkgs/fail2ban/template
@@ -2,7 +2,6 @@
 pkgname=fail2ban
 version=0.11.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config python3"
 depends="python3"
diff --git a/srcpkgs/fake-hwclock/template b/srcpkgs/fake-hwclock/template
index 16731b49dfe..c1f33f221ac 100644
--- a/srcpkgs/fake-hwclock/template
+++ b/srcpkgs/fake-hwclock/template
@@ -2,7 +2,6 @@
 pkgname=fake-hwclock
 version=0.11
 revision=1
-archs=noarch
 wrksrc=git
 short_desc="Save/restore system clock on machines without working RTC hardware"
 maintainer="Ivan Gonzalez Polanco <ivan14polanco@gmail.com>"
diff --git a/srcpkgs/fava/template b/srcpkgs/fava/template
index 44628c261d2..80685a4e52a 100644
--- a/srcpkgs/fava/template
+++ b/srcpkgs/fava/template
@@ -2,7 +2,6 @@
 pkgname=fava
 version=1.15
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-Babel python3-Cheroot python3-Flask-Babel python3-Flask
diff --git a/srcpkgs/fbmenugen/template b/srcpkgs/fbmenugen/template
index 7b7659eb98d..ad03431b85f 100644
--- a/srcpkgs/fbmenugen/template
+++ b/srcpkgs/fbmenugen/template
@@ -2,7 +2,6 @@
 pkgname=fbmenugen
 version=0.84
 revision=1
-archs=noarch
 depends="fluxbox perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Fluxbox menu generator (with support for icons)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ferm/template b/srcpkgs/ferm/template
index 42241669552..1b0c4538c56 100644
--- a/srcpkgs/ferm/template
+++ b/srcpkgs/ferm/template
@@ -2,7 +2,6 @@
 pkgname=ferm
 version=2.5.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl iptables"
 short_desc="Frontend for iptables"
diff --git a/srcpkgs/fff/template b/srcpkgs/fff/template
index 310793c894f..dfe012ccbd1 100644
--- a/srcpkgs/fff/template
+++ b/srcpkgs/fff/template
@@ -2,7 +2,6 @@
 pkgname=fff
 version=2.1
 revision=1
-archs=noarch
 depends="bash coreutils xdg-utils"
 short_desc="Simple file manager written in bash"
 maintainer="shizonic <realtiaz@gmail.com>"
diff --git a/srcpkgs/ffscreencast/template b/srcpkgs/ffscreencast/template
index 10653116d67..76bc9df0078 100644
--- a/srcpkgs/ffscreencast/template
+++ b/srcpkgs/ffscreencast/template
@@ -2,7 +2,6 @@
 pkgname=ffscreencast
 version=0.6.4
 revision=1
-archs=noarch
 depends="alsa-utils bash ffmpeg v4l-utils xdpyinfo"
 maintainer="Orphaned <orphan@voidlinux.org>"
 short_desc="Desktop-recording with video overlay and multi monitor support"
diff --git a/srcpkgs/fgit/template b/srcpkgs/fgit/template
index e298b9f4a71..1b031ec91c3 100644
--- a/srcpkgs/fgit/template
+++ b/srcpkgs/fgit/template
@@ -2,7 +2,6 @@
 pkgname=fgit
 version=1.0.2
 revision=1
-archs=noarch
 checkdepends="git"
 depends="bash git ncurses"
 short_desc="Run a Git command in several repositories"
diff --git a/srcpkgs/fierce/template b/srcpkgs/fierce/template
index 1d395274898..09062d70808 100644
--- a/srcpkgs/fierce/template
+++ b/srcpkgs/fierce/template
@@ -2,7 +2,6 @@
 pkgname=fierce
 version=1.4.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="fierce"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/figlet-fonts/template b/srcpkgs/figlet-fonts/template
index 36746d35612..be340f68c7a 100644
--- a/srcpkgs/figlet-fonts/template
+++ b/srcpkgs/figlet-fonts/template
@@ -2,7 +2,6 @@
 pkgname=figlet-fonts
 version=20150508
 revision=3
-archs=noarch
 create_wrksrc=yes
 depends="figlet perl"
 short_desc="Additional fonts for figlet"
diff --git a/srcpkgs/fillets-ng/template b/srcpkgs/fillets-ng/template
index 65f3ac43898..6b4be8c84e4 100644
--- a/srcpkgs/fillets-ng/template
+++ b/srcpkgs/fillets-ng/template
@@ -19,7 +19,6 @@ build_wrksrc="fillets-ng-${version}"
 
 fillets-ng-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/games
 		mv ${wrksrc}/fillets-ng-data-${version} ${PKGDESTDIR}/usr/share/games/fillets-ng
diff --git a/srcpkgs/flake8/template b/srcpkgs/flake8/template
index 3601b101b66..b0002c69c81 100644
--- a/srcpkgs/flake8/template
+++ b/srcpkgs/flake8/template
@@ -2,7 +2,6 @@
 pkgname=flake8
 version=3.8.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycodestyle>=2.6.0<2.7.0
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-flake8_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="flake8>=${version}_${revision}"
diff --git a/srcpkgs/flare-engine/template b/srcpkgs/flare-engine/template
index 707157f38d9..59244d516f3 100644
--- a/srcpkgs/flare-engine/template
+++ b/srcpkgs/flare-engine/template
@@ -16,7 +16,6 @@ checksum=035ffd936d9e120dc2eb792779a0b7ff64574d4a29a1124946deaf7946d1059d
 
 flare-engine-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/flare
 	}
diff --git a/srcpkgs/flare-game/template b/srcpkgs/flare-game/template
index 9da28107b18..b769140e001 100644
--- a/srcpkgs/flare-game/template
+++ b/srcpkgs/flare-game/template
@@ -2,7 +2,6 @@
 pkgname=flare-game
 version=1.11
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DDATADIR=share/flare"
 depends="flare-engine>=${version}"
diff --git a/srcpkgs/flickcurl/template b/srcpkgs/flickcurl/template
index e1e33187b4c..c0800a39453 100644
--- a/srcpkgs/flickcurl/template
+++ b/srcpkgs/flickcurl/template
@@ -12,7 +12,6 @@ distfiles="http://download.dajobe.org/flickcurl/flickcurl-${version}.tar.gz"
 checksum=ff42a36c7c1c7d368246f6bc9b7d792ed298348e5f0f5d432e49f6803562f5a3
 
 flickcurl-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation (HTML Version)"
 	pkg_install() {
diff --git a/srcpkgs/flightgear/template b/srcpkgs/flightgear/template
index 324a4e3d156..8e4aa89eb5e 100644
--- a/srcpkgs/flightgear/template
+++ b/srcpkgs/flightgear/template
@@ -54,7 +54,6 @@ post_install() {
 
 flightgear-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/flightgear
 		mv ${wrksrc}/fgdata ${PKGDESTDIR}/usr/share/flightgear
diff --git a/srcpkgs/flinks/template b/srcpkgs/flinks/template
index 780aead102c..4fbd59497a1 100644
--- a/srcpkgs/flinks/template
+++ b/srcpkgs/flinks/template
@@ -2,7 +2,6 @@
 pkgname=flinks
 version=0.4.3
 revision=5
-archs=noarch
 build_style=python3-module
 pycompile_module="flinkspkg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/flowblade/template b/srcpkgs/flowblade/template
index c011d7dc115..b22f56309ba 100644
--- a/srcpkgs/flowblade/template
+++ b/srcpkgs/flowblade/template
@@ -2,7 +2,6 @@
 pkgname=flowblade
 version=2.4
 revision=2
-archs=noarch
 build_wrksrc=flowblade-trunk
 build_style=python3-module
 make_install_args="--install-lib=${DESTDIR}/usr/share/pyshared"
diff --git a/srcpkgs/foliate/template b/srcpkgs/foliate/template
index a3fc5ed2fe2..498172d4904 100644
--- a/srcpkgs/foliate/template
+++ b/srcpkgs/foliate/template
@@ -2,7 +2,6 @@
 pkgname=foliate
 version=2.4.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config gettext gjs glib-devel"
 depends="webkit2gtk gjs"
diff --git a/srcpkgs/font-3270/template b/srcpkgs/font-3270/template
index efeaa5497ea..7715170e61c 100644
--- a/srcpkgs/font-3270/template
+++ b/srcpkgs/font-3270/template
@@ -2,7 +2,6 @@
 pkgname=font-3270
 version=2.0.4
 revision=1
-archs=noarch
 wrksrc="3270font-${version}"
 build_style=gnu-makefile
 make_build_target="font"
diff --git a/srcpkgs/font-FixedMisc/template b/srcpkgs/font-FixedMisc/template
index 7f937497043..e4605c4079a 100644
--- a/srcpkgs/font-FixedMisc/template
+++ b/srcpkgs/font-FixedMisc/template
@@ -2,7 +2,6 @@
 pkgname=font-FixedMisc
 version=20200214
 revision=1
-archs=noarch
 wrksrc=FixedMisc
 hostmakedepends="bdftopcf"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Hasklig/template b/srcpkgs/font-Hasklig/template
index 656492ec093..bdd229dc9ec 100644
--- a/srcpkgs/font-Hasklig/template
+++ b/srcpkgs/font-Hasklig/template
@@ -2,7 +2,6 @@
 pkgname=font-Hasklig
 version=1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-Siji/template b/srcpkgs/font-Siji/template
index cfd7e82ad6e..2dd7a1d88de 100644
--- a/srcpkgs/font-Siji/template
+++ b/srcpkgs/font-Siji/template
@@ -2,7 +2,6 @@
 pkgname=font-Siji
 version=0.0.0.20171022
 revision=1
-archs=noarch
 _githash=9d88311bb127b21672b2d4b43eed1ab0e494f143
 wrksrc="siji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/font-adobe-100dpi/template b/srcpkgs/font-adobe-100dpi/template
index 43c280a256a..da546a985b2 100644
--- a/srcpkgs/font-adobe-100dpi/template
+++ b/srcpkgs/font-adobe-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-75dpi/template b/srcpkgs/font-adobe-75dpi/template
index deb1d71ba1d..38965635fea 100644
--- a/srcpkgs/font-adobe-75dpi/template
+++ b/srcpkgs/font-adobe-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-source-code-pro/template b/srcpkgs/font-adobe-source-code-pro/template
index 093d75e286a..527d1f93c7d 100644
--- a/srcpkgs/font-adobe-source-code-pro/template
+++ b/srcpkgs/font-adobe-source-code-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-source-code-pro
 version=2.030R
 revision=2
-archs=noarch
 wrksrc="source-code-pro-${version}-ro-1.050R-it"
 depends="font-util"
 short_desc="Monospaced font family for user interface and coding environments"
@@ -20,7 +19,6 @@ do_install() {
 }
 
 font-sourcecodepro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/font-adobe-utopia-100dpi/template b/srcpkgs/font-adobe-utopia-100dpi/template
index 058691db022..182bd2973fa 100644
--- a/srcpkgs/font-adobe-utopia-100dpi/template
+++ b/srcpkgs/font-adobe-utopia-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-100dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-75dpi/template b/srcpkgs/font-adobe-utopia-75dpi/template
index bce9f9887f6..e5b0fc347e9 100644
--- a/srcpkgs/font-adobe-utopia-75dpi/template
+++ b/srcpkgs/font-adobe-utopia-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-75dpi
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-adobe-utopia-type1/template b/srcpkgs/font-adobe-utopia-type1/template
index 0e7d539142e..5a3b04053e0 100644
--- a/srcpkgs/font-adobe-utopia-type1/template
+++ b/srcpkgs/font-adobe-utopia-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-adobe-utopia-type1
 version=1.0.4
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-alias/template b/srcpkgs/font-alias/template
index 00b414cd72a..6efbc9d553d 100644
--- a/srcpkgs/font-alias/template
+++ b/srcpkgs/font-alias/template
@@ -2,7 +2,6 @@
 pkgname=font-alias
 version=1.0.4
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard aliases for X11 PCF fonts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/font-awesome/template b/srcpkgs/font-awesome/template
index a675bd4ad11..aacc7a44ad3 100644
--- a/srcpkgs/font-awesome/template
+++ b/srcpkgs/font-awesome/template
@@ -3,7 +3,6 @@ pkgname=font-awesome
 reverts="5.0.8_1 5.0.9_1 5.0.10_1"
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc=Font-Awesome-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-awesome5/template b/srcpkgs/font-awesome5/template
index 78cfb9f1146..0fc0a94f97d 100644
--- a/srcpkgs/font-awesome5/template
+++ b/srcpkgs/font-awesome5/template
@@ -2,7 +2,6 @@
 pkgname=font-awesome5
 version=5.14.0
 revision=1
-archs=noarch
 wrksrc="Font-Awesome-${version}"
 depends="font-util"
 short_desc="Iconic font (version 5)"
diff --git a/srcpkgs/font-b612/template b/srcpkgs/font-b612/template
index 0d6d974aa0a..45e731de6a5 100644
--- a/srcpkgs/font-b612/template
+++ b/srcpkgs/font-b612/template
@@ -2,7 +2,6 @@
 pkgname=font-b612
 version=1.008
 revision=1
-archs=noarch
 wrksrc="b612-${version}"
 depends="font-util xbps-triggers"
 short_desc="Highly legible font family designed for aircraft cockpit screens"
diff --git a/srcpkgs/font-bh-100dpi/template b/srcpkgs/font-bh-100dpi/template
index 0eee5166e2f..aa70e1e4597 100644
--- a/srcpkgs/font-bh-100dpi/template
+++ b/srcpkgs/font-bh-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-75dpi/template b/srcpkgs/font-bh-75dpi/template
index 99b51be90b5..291b0eca237 100644
--- a/srcpkgs/font-bh-75dpi/template
+++ b/srcpkgs/font-bh-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-100dpi/template b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
index 3840bad1134..c513a84160d 100644
--- a/srcpkgs/font-bh-lucidatypewriter-100dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-lucidatypewriter-75dpi/template b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
index 6110fa4f547..2bc610d24c0 100644
--- a/srcpkgs/font-bh-lucidatypewriter-75dpi/template
+++ b/srcpkgs/font-bh-lucidatypewriter-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-lucidatypewriter-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-ttf/template b/srcpkgs/font-bh-ttf/template
index 955b9e6f14d..26acfa6544d 100644
--- a/srcpkgs/font-bh-ttf/template
+++ b/srcpkgs/font-bh-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-ttf
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bh-type1/template b/srcpkgs/font-bh-type1/template
index f7135cd6d50..ddd695e5312 100644
--- a/srcpkgs/font-bh-type1/template
+++ b/srcpkgs/font-bh-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bh-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-100dpi/template b/srcpkgs/font-bitstream-100dpi/template
index 08dbeee24a0..a7b0b8dde8f 100644
--- a/srcpkgs/font-bitstream-100dpi/template
+++ b/srcpkgs/font-bitstream-100dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-100dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-75dpi/template b/srcpkgs/font-bitstream-75dpi/template
index c6853fa8cd8..c1f60fb03da 100644
--- a/srcpkgs/font-bitstream-75dpi/template
+++ b/srcpkgs/font-bitstream-75dpi/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-75dpi
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-bitstream-speedo/template b/srcpkgs/font-bitstream-speedo/template
index 96bdb122283..0e0f4880d57 100644
--- a/srcpkgs/font-bitstream-speedo/template
+++ b/srcpkgs/font-bitstream-speedo/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-speedo
 version=1.0.2
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf mkfontscale"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-bitstream-type1/template b/srcpkgs/font-bitstream-type1/template
index d6e4e2f8700..f8ed3355afe 100644
--- a/srcpkgs/font-bitstream-type1/template
+++ b/srcpkgs/font-bitstream-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-bitstream-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-cozette/template b/srcpkgs/font-cozette/template
index fc1118ac3a4..4e3f8553fa0 100644
--- a/srcpkgs/font-cozette/template
+++ b/srcpkgs/font-cozette/template
@@ -2,7 +2,6 @@
 pkgname=font-cozette
 version=1.9.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="font-util"
 depends="font-util"
diff --git a/srcpkgs/font-cursor-misc/template b/srcpkgs/font-cursor-misc/template
index e01946f7dde..0d2d54e4a8e 100644
--- a/srcpkgs/font-cursor-misc/template
+++ b/srcpkgs/font-cursor-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-cursor-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-daewoo-misc/template b/srcpkgs/font-daewoo-misc/template
index da7e8c4ba1e..8dbd3cf7268 100644
--- a/srcpkgs/font-daewoo-misc/template
+++ b/srcpkgs/font-daewoo-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-daewoo-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-dec-misc/template b/srcpkgs/font-dec-misc/template
index a4bfec05b01..afa30bf8715 100644
--- a/srcpkgs/font-dec-misc/template
+++ b/srcpkgs/font-dec-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-dec-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-fantasque-sans-ttf/template b/srcpkgs/font-fantasque-sans-ttf/template
index 3f28af2faa8..3b79bdff398 100644
--- a/srcpkgs/font-fantasque-sans-ttf/template
+++ b/srcpkgs/font-fantasque-sans-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-fantasque-sans-ttf
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Handwriting-like programming typeface"
diff --git a/srcpkgs/font-fira-otf/template b/srcpkgs/font-fira-otf/template
index 921fcb8d30d..afaf098e6b7 100644
--- a/srcpkgs/font-fira-otf/template
+++ b/srcpkgs/font-fira-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-fira-otf
 version=4.202
 revision=3
-archs=noarch
 wrksrc="Fira-${version}"
 depends="font-util xbps-triggers"
 short_desc="Mozilla's new typeface OTF, used in Firefox OS"
@@ -23,7 +22,6 @@ do_install() {
 }
 
 font-fira-ttf_package() {
-	archs=noarch
 	font_dirs="/usr/share/fonts/TTF"
 	depends="font-util xbps-triggers"
 	pkg_install() {
diff --git a/srcpkgs/font-firacode/template b/srcpkgs/font-firacode/template
index 36df04b7ab1..1699c5211ad 100644
--- a/srcpkgs/font-firacode/template
+++ b/srcpkgs/font-firacode/template
@@ -2,7 +2,6 @@
 pkgname=font-firacode
 version=5.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="FiraCode: monospaced font with programming ligatures"
diff --git a/srcpkgs/font-fontin/template b/srcpkgs/font-fontin/template
index e91405490f5..c0ab17f0e66 100644
--- a/srcpkgs/font-fontin/template
+++ b/srcpkgs/font-fontin/template
@@ -2,7 +2,6 @@
 pkgname=font-fontin
 version=0.0.20151027
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hack-ttf/template b/srcpkgs/font-hack-ttf/template
index 2cec70ff0f0..5929977d6e3 100644
--- a/srcpkgs/font-hack-ttf/template
+++ b/srcpkgs/font-hack-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-hack-ttf
 version=3.003
 revision=1
 wrksrc="Hack-${version}"
-archs=noarch
 depends="font-util xbps-triggers"
 short_desc="A typeface designed for source code"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/font-hanazono/template b/srcpkgs/font-hanazono/template
index 0a529e23b0a..cbec1c249ac 100644
--- a/srcpkgs/font-hanazono/template
+++ b/srcpkgs/font-hanazono/template
@@ -3,7 +3,6 @@ pkgname=font-hanazono
 version=20170904
 _revision=68253
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-hermit-otf/template b/srcpkgs/font-hermit-otf/template
index 20b784a8149..f20f2fd0e07 100644
--- a/srcpkgs/font-hermit-otf/template
+++ b/srcpkgs/font-hermit-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-hermit-otf
 version=2.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-ibm-plex-ttf/template b/srcpkgs/font-ibm-plex-ttf/template
index 98c9e838f9f..5cdd47ebd0a 100644
--- a/srcpkgs/font-ibm-plex-ttf/template
+++ b/srcpkgs/font-ibm-plex-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-plex-ttf
 version=5.1.0
 revision=1
-archs=noarch
 wrksrc="plex-${version}"
 depends="font-util"
 short_desc="IBM’s typeface, IBM Plex (TTF variant)"
diff --git a/srcpkgs/font-ibm-type1/template b/srcpkgs/font-ibm-type1/template
index aaa4caaab00..549768b91c5 100644
--- a/srcpkgs/font-ibm-type1/template
+++ b/srcpkgs/font-ibm-type1/template
@@ -2,7 +2,6 @@
 pkgname=font-ibm-type1
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-inconsolata-otf/template b/srcpkgs/font-inconsolata-otf/template
index 566e9b29479..65eff0728b6 100644
--- a/srcpkgs/font-inconsolata-otf/template
+++ b/srcpkgs/font-inconsolata-otf/template
@@ -2,7 +2,6 @@
 pkgname=font-inconsolata-otf
 version=001.010
 revision=3
-archs=noarch
 build_style=fetch
 depends="font-util xbps-triggers"
 short_desc="Sans-serif monotype font designed for code listings"
diff --git a/srcpkgs/font-ionicons-ttf/template b/srcpkgs/font-ionicons-ttf/template
index b4fa51931b7..6ac73c9ebc4 100644
--- a/srcpkgs/font-ionicons-ttf/template
+++ b/srcpkgs/font-ionicons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-ionicons-ttf
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="ionicons-$version"
 depends="font-util"
 short_desc="Icon font from the Ionic Framework"
diff --git a/srcpkgs/font-iosevka/template b/srcpkgs/font-iosevka/template
index 9657e2f30a9..6ae05ed2b45 100644
--- a/srcpkgs/font-iosevka/template
+++ b/srcpkgs/font-iosevka/template
@@ -2,7 +2,6 @@
 pkgname=font-iosevka
 version=3.4.4
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Slender monospace sans-serif and slab-serif typeface"
diff --git a/srcpkgs/font-isas-misc/template b/srcpkgs/font-isas-misc/template
index 033459448c4..81f16f13ba2 100644
--- a/srcpkgs/font-isas-misc/template
+++ b/srcpkgs/font-isas-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-isas-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-jis-misc/template b/srcpkgs/font-jis-misc/template
index 45638227181..ff60c4b7f17 100644
--- a/srcpkgs/font-jis-misc/template
+++ b/srcpkgs/font-jis-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-jis-misc
 version=1.0.3
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-kakwafont/template b/srcpkgs/font-kakwafont/template
index 89859db95b3..525f489efeb 100644
--- a/srcpkgs/font-kakwafont/template
+++ b/srcpkgs/font-kakwafont/template
@@ -2,7 +2,6 @@
 pkgname=font-kakwafont
 version=0.1.1
 revision=3
-archs=noarch
 wrksrc="kakwafont-${version}"
 build_style=gnu-makefile
 make_install_args="INDEX=false"
diff --git a/srcpkgs/font-libertine-ttf/template b/srcpkgs/font-libertine-ttf/template
index b0521e80e57..7197d3e7c9c 100644
--- a/srcpkgs/font-libertine-ttf/template
+++ b/srcpkgs/font-libertine-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-libertine-ttf
 version=5.3.0
 revision=1
 _date=2012_07_02
-archs=noarch
 create_wrksrc=yes
 depends="font-util xbps-triggers"
 short_desc="Libertine TTF Fonts - Libre multilingual font family"
@@ -26,7 +25,6 @@ do_install() {
 }
 
 font-libertine-otf_package() {
-	archs=noarch
 	depends="font-util xbps-triggers"
 	short_desc="Libertine OTF Fonts - Libre multilingual font family"
 	font_dirs="/usr/share/fonts/OTF"
diff --git a/srcpkgs/font-manjari/template b/srcpkgs/font-manjari/template
index 459d5de5210..87745816524 100644
--- a/srcpkgs/font-manjari/template
+++ b/srcpkgs/font-manjari/template
@@ -2,7 +2,6 @@
 pkgname=font-manjari
 version=1.810
 revision=3
-archs="noarch"
 create_wrksrc=yes
 depends="font-util"
 short_desc="Malayalam font with smooth curves"
diff --git a/srcpkgs/font-material-design-icons-ttf/template b/srcpkgs/font-material-design-icons-ttf/template
index 70565c4255b..9e9fb6c2991 100644
--- a/srcpkgs/font-material-design-icons-ttf/template
+++ b/srcpkgs/font-material-design-icons-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-material-design-icons-ttf
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="material-design-icons-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-micro-misc/template b/srcpkgs/font-micro-misc/template
index 9d07f30c819..6c91e2f0558 100644
--- a/srcpkgs/font-micro-misc/template
+++ b/srcpkgs/font-micro-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-micro-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-misc-misc/template b/srcpkgs/font-misc-misc/template
index bb14ad13e66..454fbcb197f 100644
--- a/srcpkgs/font-misc-misc/template
+++ b/srcpkgs/font-misc-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-misc-misc
 version=1.1.2
 revision=6
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-mplus-ttf/template b/srcpkgs/font-mplus-ttf/template
index 102d839baac..880a2a7d01b 100644
--- a/srcpkgs/font-mplus-ttf/template
+++ b/srcpkgs/font-mplus-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-mplus-ttf
 version=063a
 revision=1
-archs=noarch
 wrksrc="mplus-TESTFLIGHT-${version}"
 depends="fontconfig font-util"
 short_desc="M+ Japanese outline fonts"
diff --git a/srcpkgs/font-mutt-misc/template b/srcpkgs/font-mutt-misc/template
index ec6d140c270..abb8702ad6b 100644
--- a/srcpkgs/font-mutt-misc/template
+++ b/srcpkgs/font-mutt-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-mutt-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-open-dyslexic-ttf/template b/srcpkgs/font-open-dyslexic-ttf/template
index 4b2d57d022a..ae5c3307e9c 100644
--- a/srcpkgs/font-open-dyslexic-ttf/template
+++ b/srcpkgs/font-open-dyslexic-ttf/template
@@ -2,7 +2,6 @@
 pkgname=font-open-dyslexic-ttf
 version=20160623
 revision=2
-archs=noarch
 wrksrc="open-dyslexic-${version}-Stable"
 depends="font-util xbps-triggers"
 short_desc="Font created to increase readability for readers with dyslexia"
diff --git a/srcpkgs/font-sarasa-gothic/template b/srcpkgs/font-sarasa-gothic/template
index f2571a381b0..2ea3f935bf6 100644
--- a/srcpkgs/font-sarasa-gothic/template
+++ b/srcpkgs/font-sarasa-gothic/template
@@ -2,7 +2,6 @@
 pkgname=font-sarasa-gothic
 version=0.13.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="CJK programming font based on Iosevka and Source Han Sans"
diff --git a/srcpkgs/font-schumacher-misc/template b/srcpkgs/font-schumacher-misc/template
index e4515207d37..20b0dd7f7dc 100644
--- a/srcpkgs/font-schumacher-misc/template
+++ b/srcpkgs/font-schumacher-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-schumacher-misc
 version=1.1.2
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-sil-abyssinica/template b/srcpkgs/font-sil-abyssinica/template
index 1c48dbfedd6..87bca44c4e4 100644
--- a/srcpkgs/font-sil-abyssinica/template
+++ b/srcpkgs/font-sil-abyssinica/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-abyssinica
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AbyssinicaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-alkalami/template b/srcpkgs/font-sil-alkalami/template
index 684c7b7d0d3..b6638f07c83 100644
--- a/srcpkgs/font-sil-alkalami/template
+++ b/srcpkgs/font-sil-alkalami/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-alkalami
 version=1.100
 revision=1
-archs=noarch
 wrksrc="Alkalami-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-andika/template b/srcpkgs/font-sil-andika/template
index 4b869085776..9cd574eac8e 100644
--- a/srcpkgs/font-sil-andika/template
+++ b/srcpkgs/font-sil-andika/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-andika
 version=5.000
 revision=1
-archs=noarch
 wrksrc="Andika-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-annapurna/template b/srcpkgs/font-sil-annapurna/template
index 388779d980f..0dd4a688a54 100644
--- a/srcpkgs/font-sil-annapurna/template
+++ b/srcpkgs/font-sil-annapurna/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-annapurna
 version=1.204
 revision=1
-archs=noarch
 wrksrc="AnnapurnaSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-awami-nastaliq/template b/srcpkgs/font-sil-awami-nastaliq/template
index f09cd252e08..436b8c16390 100644
--- a/srcpkgs/font-sil-awami-nastaliq/template
+++ b/srcpkgs/font-sil-awami-nastaliq/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-awami-nastaliq
 version=2.000
 revision=1
-archs=noarch
 wrksrc="AwamiNastaliq-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-charis/template b/srcpkgs/font-sil-charis/template
index cdff5cb6265..dc864c2e18b 100644
--- a/srcpkgs/font-sil-charis/template
+++ b/srcpkgs/font-sil-charis/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-charis
 version=5.000
 revision=1
-archs=noarch
 wrksrc="CharisSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-doulos/template b/srcpkgs/font-sil-doulos/template
index 67fd84dd976..557fa77a560 100644
--- a/srcpkgs/font-sil-doulos/template
+++ b/srcpkgs/font-sil-doulos/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-doulos
 version=5.000
 revision=1
-archs=noarch
 wrksrc="DoulosSIL-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-ezra/template b/srcpkgs/font-sil-ezra/template
index 1573ff7d06e..b0879ce22b6 100644
--- a/srcpkgs/font-sil-ezra/template
+++ b/srcpkgs/font-sil-ezra/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-ezra
 version=2.51
 revision=1
-archs=noarch
 wrksrc="EzraSIL${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-galatia/template b/srcpkgs/font-sil-galatia/template
index 06742db160b..217d92847c6 100644
--- a/srcpkgs/font-sil-galatia/template
+++ b/srcpkgs/font-sil-galatia/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-galatia
 version=2.1
 revision=1
-archs=noarch
 wrksrc="GalSIL${version/./}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-gentium/template b/srcpkgs/font-sil-gentium/template
index a06cf2d5a9c..9926b9fd944 100644
--- a/srcpkgs/font-sil-gentium/template
+++ b/srcpkgs/font-sil-gentium/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-gentium
 version=5.000
 revision=1
-archs=noarch
 wrksrc="GentiumPlus-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-harmattan/template b/srcpkgs/font-sil-harmattan/template
index 465b63a7244..fbcc81cadd3 100644
--- a/srcpkgs/font-sil-harmattan/template
+++ b/srcpkgs/font-sil-harmattan/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-harmattan
 version=1.001
 revision=1
-archs=noarch
 wrksrc="Harmattan-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-lateef/template b/srcpkgs/font-sil-lateef/template
index d8ab4d2a7b2..8a91a92737a 100644
--- a/srcpkgs/font-sil-lateef/template
+++ b/srcpkgs/font-sil-lateef/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-lateef
 version=1.200
 revision=1
-archs=noarch
 wrksrc="LateefGR-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mingzat/template b/srcpkgs/font-sil-mingzat/template
index 1e227ee5603..079ca445bec 100644
--- a/srcpkgs/font-sil-mingzat/template
+++ b/srcpkgs/font-sil-mingzat/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mingzat
 version=1.000
 revision=1
-archs=noarch
 wrksrc="Mingzat-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-mondulkiri/template b/srcpkgs/font-sil-mondulkiri/template
index 483056df803..3b8b09c0548 100644
--- a/srcpkgs/font-sil-mondulkiri/template
+++ b/srcpkgs/font-sil-mondulkiri/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-mondulkiri
 version=7.100
 revision=1
-archs=noarch
 wrksrc="Mondulkiri-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-namdhinggo/template b/srcpkgs/font-sil-namdhinggo/template
index 9de1acbc5a7..d353210bf1e 100644
--- a/srcpkgs/font-sil-namdhinggo/template
+++ b/srcpkgs/font-sil-namdhinggo/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-namdhinggo
 version=1.004
 revision=1
-archs=noarch
 wrksrc="NamdhinggoSIL"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-nuosu/template b/srcpkgs/font-sil-nuosu/template
index 0ae86abefaa..1286c1acb86 100644
--- a/srcpkgs/font-sil-nuosu/template
+++ b/srcpkgs/font-sil-nuosu/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-nuosu
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=NuosuSIL
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-padauk/template b/srcpkgs/font-sil-padauk/template
index 8bbb222dff3..21b37341367 100644
--- a/srcpkgs/font-sil-padauk/template
+++ b/srcpkgs/font-sil-padauk/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-padauk
 version=4.000
 revision=1
-archs=noarch
 wrksrc="Padauk-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-scheherazade/template b/srcpkgs/font-sil-scheherazade/template
index 78a2ce6ee96..77e7c97c8da 100644
--- a/srcpkgs/font-sil-scheherazade/template
+++ b/srcpkgs/font-sil-scheherazade/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-scheherazade
 version=2.100
 revision=1
-archs=noarch
 wrksrc="Scheherazade-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-sophia-nubian/template b/srcpkgs/font-sil-sophia-nubian/template
index 2a97740dff3..597002945d8 100644
--- a/srcpkgs/font-sil-sophia-nubian/template
+++ b/srcpkgs/font-sil-sophia-nubian/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-sophia-nubian
 version=1.0
 revision=1
-archs=noarch
 wrksrc="SophiaNubian"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sil-tai-heritage-pro/template b/srcpkgs/font-sil-tai-heritage-pro/template
index 0d7283cd4ea..b94f9fc966a 100644
--- a/srcpkgs/font-sil-tai-heritage-pro/template
+++ b/srcpkgs/font-sil-tai-heritage-pro/template
@@ -2,7 +2,6 @@
 pkgname=font-sil-tai-heritage-pro
 version=2.600
 revision=1
-archs=noarch
 wrksrc="TaiHeritagePro-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-sony-misc/template b/srcpkgs/font-sony-misc/template
index d7ffef11ed0..765bf6e3555 100644
--- a/srcpkgs/font-sony-misc/template
+++ b/srcpkgs/font-sony-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sony-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-spleen/template b/srcpkgs/font-spleen/template
index 8bf3f35a84d..10cd5f4dfd3 100644
--- a/srcpkgs/font-spleen/template
+++ b/srcpkgs/font-spleen/template
@@ -2,7 +2,6 @@
 pkgname=font-spleen
 version=1.8.2
 revision=1
-archs=noarch
 wrksrc="spleen-${version}"
 build_style=gnu-makefile
 make_cmd=bmake
diff --git a/srcpkgs/font-sun-misc/template b/srcpkgs/font-sun-misc/template
index d556d006daa..423c85625a7 100644
--- a/srcpkgs/font-sun-misc/template
+++ b/srcpkgs/font-sun-misc/template
@@ -2,7 +2,6 @@
 pkgname=font-sun-misc
 version=1.0.3
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config bdftopcf font-util"
 makedepends="font-util"
diff --git a/srcpkgs/font-symbola/template b/srcpkgs/font-symbola/template
index 23fa865c2ee..d14241ab6ba 100644
--- a/srcpkgs/font-symbola/template
+++ b/srcpkgs/font-symbola/template
@@ -2,7 +2,6 @@
 pkgname=font-symbola
 version=13.00
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/font-tamsyn/template b/srcpkgs/font-tamsyn/template
index b76186c2128..3c532eba7bb 100644
--- a/srcpkgs/font-tamsyn/template
+++ b/srcpkgs/font-tamsyn/template
@@ -2,7 +2,6 @@
 pkgname=font-tamsyn
 version=1.11
 revision=1
-archs=noarch
 wrksrc=tamsyn-font-${version}
 depends="font-util xbps-triggers"
 short_desc="A monospaced programming font for the console and X11"
diff --git a/srcpkgs/font-tamzen/template b/srcpkgs/font-tamzen/template
index a5621ff3a29..b20f7c77964 100644
--- a/srcpkgs/font-tamzen/template
+++ b/srcpkgs/font-tamzen/template
@@ -2,7 +2,6 @@
 pkgname=font-tamzen
 version=1.11.4
 revision=1
-archs=noarch
 wrksrc="tamzen-font-Tamzen-${version}"
 makedepends="font-util"
 depends="$makedepends"
diff --git a/srcpkgs/font-unifont-bdf/template b/srcpkgs/font-unifont-bdf/template
index 10e92362460..5d2ab7be0d0 100644
--- a/srcpkgs/font-unifont-bdf/template
+++ b/srcpkgs/font-unifont-bdf/template
@@ -2,7 +2,6 @@
 pkgname=font-unifont-bdf
 version=13.0.03
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="GNU Unifont Glyphs"
diff --git a/srcpkgs/font-vazir/template b/srcpkgs/font-vazir/template
index 2c1eb8a10c8..d83ca102c7f 100755
--- a/srcpkgs/font-vazir/template
+++ b/srcpkgs/font-vazir/template
@@ -2,7 +2,6 @@
 pkgname=font-vazir
 version=26.0.2
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="font-util"
 short_desc="Persian (Farsi) Font - قلم (فونت) فارسی وزیر"
diff --git a/srcpkgs/font-vollkorn-ttf/template b/srcpkgs/font-vollkorn-ttf/template
index 43889413a0e..37291fafcd1 100644
--- a/srcpkgs/font-vollkorn-ttf/template
+++ b/srcpkgs/font-vollkorn-ttf/template
@@ -3,7 +3,6 @@ pkgname=font-vollkorn-ttf
 version=4.105
 revision=1
 create_wrksrc=yes
-archs=noarch
 font_dirs="/usr/share/fonts/TTF"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/font-weather-icons/template b/srcpkgs/font-weather-icons/template
index 02b461ad41d..56f10f6b81d 100644
--- a/srcpkgs/font-weather-icons/template
+++ b/srcpkgs/font-weather-icons/template
@@ -2,7 +2,6 @@
 pkgname=font-weather-icons
 version=2.0.10
 revision=1
-archs=noarch
 wrksrc="weather-icons-${version}"
 depends="font-util"
 short_desc="215 Weather Themed Icons"
diff --git a/srcpkgs/fontconfig/template b/srcpkgs/fontconfig/template
index 18504e4503f..a2afdf88d0e 100644
--- a/srcpkgs/fontconfig/template
+++ b/srcpkgs/fontconfig/template
@@ -42,7 +42,6 @@ fontconfig-devel_package() {
 
 fontconfig-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fonts-croscore-ttf/template b/srcpkgs/fonts-croscore-ttf/template
index 2014d2fda6e..0f1bd7ef6ab 100644
--- a/srcpkgs/fonts-croscore-ttf/template
+++ b/srcpkgs/fonts-croscore-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-croscore-ttf
 version=1.31.0
 revision=2
-archs=noarch
 wrksrc="croscorefonts-${version}"
 depends="font-util xbps-triggers"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonts-droid-ttf/template b/srcpkgs/fonts-droid-ttf/template
index cae1c2979c2..90808815e94 100644
--- a/srcpkgs/fonts-droid-ttf/template
+++ b/srcpkgs/fonts-droid-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-droid-ttf
 version=20150613
 revision=1
-archs=noarch
 _githash=f5de525ee3547b8a69a21aec1e1a3175bc06f442
 create_wrksrc=yes
 depends="font-util"
diff --git a/srcpkgs/fonts-nanum-ttf/template b/srcpkgs/fonts-nanum-ttf/template
index 6a2e826673d..0c96fb5aa2b 100644
--- a/srcpkgs/fonts-nanum-ttf/template
+++ b/srcpkgs/fonts-nanum-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-nanum-ttf
 version=20180306
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 depends="font-util"
 short_desc="Nanum Korean fonts"
diff --git a/srcpkgs/fonts-roboto-ttf/template b/srcpkgs/fonts-roboto-ttf/template
index 2a268ab3c74..839ca2eabf7 100644
--- a/srcpkgs/fonts-roboto-ttf/template
+++ b/srcpkgs/fonts-roboto-ttf/template
@@ -2,7 +2,6 @@
 pkgname=fonts-roboto-ttf
 version=2.138
 revision=1
-archs=noarch
 wrksrc=roboto-${version}
 depends="font-util"
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/fonttools/template b/srcpkgs/fonttools/template
index f94f794b2a2..fc25b5b0476 100644
--- a/srcpkgs/fonttools/template
+++ b/srcpkgs/fonttools/template
@@ -2,7 +2,6 @@
 pkgname=fonttools
 version=4.8.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/foomatic-db-nonfree/template b/srcpkgs/foomatic-db-nonfree/template
index bfdbd503f51..d909dcfdb41 100644
--- a/srcpkgs/foomatic-db-nonfree/template
+++ b/srcpkgs/foomatic-db-nonfree/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db-nonfree
 version=20200527
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_style=gnu-configure
 hostmakedepends="tar"
diff --git a/srcpkgs/foomatic-db/template b/srcpkgs/foomatic-db/template
index 07b9adddb78..7035fcc7b0a 100644
--- a/srcpkgs/foomatic-db/template
+++ b/srcpkgs/foomatic-db/template
@@ -3,7 +3,6 @@
 pkgname=foomatic-db
 version=20180118
 revision=1
-archs=noarch
 build_style=gnu-configure
 ceeate_wrksrc=yes
 hostmakedepends="tar"
diff --git a/srcpkgs/foot/template b/srcpkgs/foot/template
index 50991a6d351..f27b2bfaff0 100644
--- a/srcpkgs/foot/template
+++ b/srcpkgs/foot/template
@@ -21,7 +21,6 @@ post_install() {
 
 foot-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/fortune-mod-anarchism/template b/srcpkgs/fortune-mod-anarchism/template
index 6c27b0e9dcb..dba867fd63a 100644
--- a/srcpkgs/fortune-mod-anarchism/template
+++ b/srcpkgs/fortune-mod-anarchism/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-anarchism
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=blag-fortune
 build_style=gnu-makefile
 hostmakedepends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-de/template b/srcpkgs/fortune-mod-de/template
index 5f3d1dec7c7..84ff7076b3b 100644
--- a/srcpkgs/fortune-mod-de/template
+++ b/srcpkgs/fortune-mod-de/template
@@ -3,7 +3,6 @@ pkgname=fortune-mod-de
 reverts="1.0_2"
 version=0.34
 revision=1
-archs=noarch
 wrksrc="fortunes-de-upstream-${version}"
 hostmakedepends="fortune-mod"
 depends="fortune-mod"
diff --git a/srcpkgs/fortune-mod-void/template b/srcpkgs/fortune-mod-void/template
index 55b5faab036..508db37b084 100644
--- a/srcpkgs/fortune-mod-void/template
+++ b/srcpkgs/fortune-mod-void/template
@@ -2,7 +2,6 @@
 pkgname=fortune-mod-void
 version=20200307
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="fortune-mod"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/freedroidRPG/template b/srcpkgs/freedroidRPG/template
index b1cb939802a..a1ecfc60bc3 100644
--- a/srcpkgs/freedroidRPG/template
+++ b/srcpkgs/freedroidRPG/template
@@ -42,7 +42,6 @@ post_install() {
 
 freedroidRPG-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freedroidrpg
 	}
diff --git a/srcpkgs/freefont-ttf/template b/srcpkgs/freefont-ttf/template
index ec248d2f8c7..cae4908ae39 100644
--- a/srcpkgs/freefont-ttf/template
+++ b/srcpkgs/freefont-ttf/template
@@ -2,7 +2,6 @@
 pkgname=freefont-ttf
 version=20120503
 revision=7
-archs=noarch
 wrksrc="freefont-${version}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers>=0.58"
diff --git a/srcpkgs/freeorion/template b/srcpkgs/freeorion/template
index 3078bee0d7b..9960b817536 100644
--- a/srcpkgs/freeorion/template
+++ b/srcpkgs/freeorion/template
@@ -25,7 +25,6 @@ post_extract() {
 freeorion-data_package() {
 	short_desc+=" - data files"
 	license="GPL-2.0-or-later, CC-BY-SA-3.0"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/freeorion
 	}
diff --git a/srcpkgs/freepats/template b/srcpkgs/freepats/template
index a8d1bae328a..c96cdb5f5ee 100644
--- a/srcpkgs/freepats/template
+++ b/srcpkgs/freepats/template
@@ -2,7 +2,6 @@
 pkgname="freepats"
 version=20060219
 revision=5
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Free patch set for MIDI audio synthesis"
 maintainer="David <kalichakra@zoho.com>"
diff --git a/srcpkgs/freeplane/template b/srcpkgs/freeplane/template
index bb5875f7e7e..02f94d50ad1 100644
--- a/srcpkgs/freeplane/template
+++ b/srcpkgs/freeplane/template
@@ -2,7 +2,6 @@
 pkgname=freeplane
 version=1.8.6
 revision=1
-archs=noarch
 hostmakedepends="apache-ant openjdk8 unzip gradle"
 depends="virtual?java-runtime"
 short_desc="Application for Mind Mapping, Knowledge Management, Project Management"
diff --git a/srcpkgs/freerouting/template b/srcpkgs/freerouting/template
index 49af416078a..ae53f2e7e2d 100644
--- a/srcpkgs/freerouting/template
+++ b/srcpkgs/freerouting/template
@@ -2,7 +2,6 @@
 pkgname=freerouting
 version=1.4.4
 revision=1
-archs=noarch
 hostmakedepends="gradle openjdk11"
 depends="openjdk11"
 short_desc="Advanced PCB autorouter"
diff --git a/srcpkgs/freetds/template b/srcpkgs/freetds/template
index 43620742759..3aee702fe80 100644
--- a/srcpkgs/freetds/template
+++ b/srcpkgs/freetds/template
@@ -30,7 +30,6 @@ freetds-devel_package() {
 
 freetds-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/fsharp/template b/srcpkgs/fsharp/template
index ef9f9b4ccbd..89cc3df9291 100644
--- a/srcpkgs/fsharp/template
+++ b/srcpkgs/fsharp/template
@@ -2,7 +2,6 @@
 pkgname=fsharp
 version=10.2.1
 revision=1
-archs=noarch
 lib32disabled=yes
 build_style=gnu-makefile
 hostmakedepends="msbuild-bin"
diff --git a/srcpkgs/gajim/template b/srcpkgs/gajim/template
index 51d5ea67a6c..1d6d1a72386 100644
--- a/srcpkgs/gajim/template
+++ b/srcpkgs/gajim/template
@@ -2,7 +2,6 @@
 pkgname=gajim
 version=1.2.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-gobject python3-nbxmpp python3-pyasn1 python3-setuptools
diff --git a/srcpkgs/gallery-dl/template b/srcpkgs/gallery-dl/template
index 2a361f53274..1d9283c9bf3 100644
--- a/srcpkgs/gallery-dl/template
+++ b/srcpkgs/gallery-dl/template
@@ -2,7 +2,6 @@
 pkgname=gallery-dl
 version=1.14.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-requests python3-setuptools"
diff --git a/srcpkgs/gandi-cli/template b/srcpkgs/gandi-cli/template
index fc6d3ba3320..4102d7fd7a0 100644
--- a/srcpkgs/gandi-cli/template
+++ b/srcpkgs/gandi-cli/template
@@ -2,7 +2,6 @@
 pkgname=gandi-cli
 version=1.5
 revision=2
-archs=noarch
 wrksrc="gandi.cli-${version}"
 build_style=python3-module
 pycompile_module="gandi/cli"
diff --git a/srcpkgs/gccmakedep/template b/srcpkgs/gccmakedep/template
index 29d6fdaafe0..267d448d92d 100644
--- a/srcpkgs/gccmakedep/template
+++ b/srcpkgs/gccmakedep/template
@@ -2,7 +2,6 @@
 pkgname=gccmakedep
 version=1.0.3
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="The gccmakedep program calls 'gcc -M' to output makefile rules"
 maintainer="Markus Berger <pulux@pf4sh.de>"
diff --git a/srcpkgs/gcdemu/template b/srcpkgs/gcdemu/template
index e12b1c932d2..b05436b54e9 100644
--- a/srcpkgs/gcdemu/template
+++ b/srcpkgs/gcdemu/template
@@ -2,7 +2,6 @@
 pkgname=gcdemu
 version=3.2.4
 revision=1
-archs=noarch
 wrksrc="gcdemu-${version}"
 build_style=cmake
 hostmakedepends="python3 intltool"
diff --git a/srcpkgs/gconfmm/template b/srcpkgs/gconfmm/template
index 5122dc300a3..2f96108e38b 100644
--- a/srcpkgs/gconfmm/template
+++ b/srcpkgs/gconfmm/template
@@ -28,7 +28,6 @@ gconfmm-devel_package() {
 if [ -z "$CROSS_BUILD" ]; then
 gconfmm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gcovr/template b/srcpkgs/gcovr/template
index a6b8de8f0cc..28c9f87dcaa 100644
--- a/srcpkgs/gcovr/template
+++ b/srcpkgs/gcovr/template
@@ -2,7 +2,6 @@
 pkgname=gcovr
 version=4.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="gcovr"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gdash/template b/srcpkgs/gdash/template
index 34e8e9afabb..7a566534167 100644
--- a/srcpkgs/gdash/template
+++ b/srcpkgs/gdash/template
@@ -35,7 +35,6 @@ post_install() {
 
 gdash-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/gdash
 	}
diff --git a/srcpkgs/gdown/template b/srcpkgs/gdown/template
index 8365ff593dd..b54b6173ac4 100644
--- a/srcpkgs/gdown/template
+++ b/srcpkgs/gdown/template
@@ -2,7 +2,6 @@
 pkgname=gdown
 version=3.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-filelock python3-requests python3-six python3-tqdm
diff --git a/srcpkgs/geda/template b/srcpkgs/geda/template
index fbce8bbf734..ec733d4f572 100644
--- a/srcpkgs/geda/template
+++ b/srcpkgs/geda/template
@@ -43,7 +43,6 @@ geda-devel_package() {
 	}
 }
 geda-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - documentation and exmaple files"
 	pkg_install() {
@@ -51,7 +50,6 @@ geda-doc_package() {
 	}
 }
 geda-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/gEDA
diff --git a/srcpkgs/gef/template b/srcpkgs/gef/template
index 16af44ee93e..b854e0b45f6 100644
--- a/srcpkgs/gef/template
+++ b/srcpkgs/gef/template
@@ -2,7 +2,6 @@
 pkgname=gef
 version=2020.06
 revision=1
-archs="noarch"
 pycompile_dirs="usr/share/gef"
 depends="keystone-python3 capstone-python3 unicorn-python3 python3-Ropper"
 short_desc="GDB Enhanced Features for exploit devs & reversers"
diff --git a/srcpkgs/geoip-data/template b/srcpkgs/geoip-data/template
index 2a1991ebf9b..dec0162c948 100644
--- a/srcpkgs/geoip-data/template
+++ b/srcpkgs/geoip-data/template
@@ -7,7 +7,6 @@ short_desc="Non-DNS IP-to-country resolver C library and utilities (data files)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="CC-BY-SA-4.0"
 homepage="https://dev.maxmind.com/geoip/legacy/geolite/"
-archs=noarch
 broken="broken URLs, downloads unversioned files that change daily!"
 
 do_fetch() {
diff --git a/srcpkgs/gespeaker/template b/srcpkgs/gespeaker/template
index bf29ef22410..23052bdb887 100644
--- a/srcpkgs/gespeaker/template
+++ b/srcpkgs/gespeaker/template
@@ -2,7 +2,6 @@
 pkgname=gespeaker
 version=0.8.6
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_dirs="/usr/share/gespeaker"
 hostmakedepends="gettext python"
diff --git a/srcpkgs/geteltorito/template b/srcpkgs/geteltorito/template
index c0be0b6e7a1..75ba25e607a 100644
--- a/srcpkgs/geteltorito/template
+++ b/srcpkgs/geteltorito/template
@@ -4,7 +4,6 @@ version=0.6
 revision=1
 wrksrc=${pkgname}
 depends="perl"
-archs=noarch
 short_desc="El Torito boot image extractor"
 maintainer="bra1nwave <brainwave@openmailbox.org>"
 license="GPL-2"
diff --git a/srcpkgs/getmail/template b/srcpkgs/getmail/template
index 51a5c4a109f..9f030553bda 100644
--- a/srcpkgs/getmail/template
+++ b/srcpkgs/getmail/template
@@ -2,7 +2,6 @@
 pkgname=getmail
 version=5.14
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="getmailcore"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/gettext/template b/srcpkgs/gettext/template
index 4495f83401f..7ecc61efe19 100644
--- a/srcpkgs/gettext/template
+++ b/srcpkgs/gettext/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gettext-devel-examples_package() {
-	archs=noarch
 	short_desc+=" - examples for development"
 	pkg_install() {
 		vmove usr/share/doc/gettext
diff --git a/srcpkgs/ghc/template b/srcpkgs/ghc/template
index e81da479cf0..925ad8693ca 100644
--- a/srcpkgs/ghc/template
+++ b/srcpkgs/ghc/template
@@ -86,7 +86,6 @@ post_install() {
 }
 
 ghc-doc_package() {
-	archs=noarch
 	short_desc+=" -- documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/ghi/template b/srcpkgs/ghi/template
index 907f7588841..9c2ab5da38c 100644
--- a/srcpkgs/ghi/template
+++ b/srcpkgs/ghi/template
@@ -2,7 +2,6 @@
 pkgname=ghi
 version=1.2.0
 revision=1
-archs=noarch
 depends="ruby"
 short_desc="GitHub command line interface"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/giac/template b/srcpkgs/giac/template
index 3d4a32c02e6..7247d9a4f27 100644
--- a/srcpkgs/giac/template
+++ b/srcpkgs/giac/template
@@ -38,7 +38,6 @@ giac-devel_package() {
 
 giac-doc_package() {
 	short_desc+=" - Documentation and Examples"
-	archs=noarch
 	pkg_install() {
 		vmove "usr/share/giac/doc"
 		vmove "usr/share/giac/examples"
diff --git a/srcpkgs/gimme/template b/srcpkgs/gimme/template
index 1893b659fae..4feac731cae 100644
--- a/srcpkgs/gimme/template
+++ b/srcpkgs/gimme/template
@@ -2,7 +2,6 @@
 pkgname=gimme
 version=1.5.4
 revision=1
-archs=noarch
 depends="bash curl git"
 short_desc="Shell script that knows how to install Go"
 maintainer="Alif Rachmawadi <arch@subosito.com>"
diff --git a/srcpkgs/gist/template b/srcpkgs/gist/template
index 39759f57e23..84c876b440e 100644
--- a/srcpkgs/gist/template
+++ b/srcpkgs/gist/template
@@ -2,7 +2,6 @@
 pkgname=gist
 version=5.1.0
 revision=1
-archs=noarch
 hostmakedepends="ruby"
 depends="ruby"
 short_desc="Uploads content to gist.github.com"
diff --git a/srcpkgs/git-cal/template b/srcpkgs/git-cal/template
index e05b6da5964..d4bba56af28 100644
--- a/srcpkgs/git-cal/template
+++ b/srcpkgs/git-cal/template
@@ -2,7 +2,6 @@
 pkgname=git-cal
 version=0.9.1
 revision=3
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/git-cola/template b/srcpkgs/git-cola/template
index bddc3f3fabd..9771e35eaab 100644
--- a/srcpkgs/git-cola/template
+++ b/srcpkgs/git-cola/template
@@ -2,7 +2,6 @@
 pkgname=git-cola
 version=3.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/share/git-cola/lib"
 hostmakedepends="python3"
diff --git a/srcpkgs/git-extras/template b/srcpkgs/git-extras/template
index 749b7c1291b..8a19b08ffb7 100644
--- a/srcpkgs/git-extras/template
+++ b/srcpkgs/git-extras/template
@@ -2,7 +2,6 @@
 pkgname=git-extras
 version=6.0.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="util-linux"
 depends="bash git"
diff --git a/srcpkgs/git-filter-repo/template b/srcpkgs/git-filter-repo/template
index 321464c7159..8d8a7b58010 100644
--- a/srcpkgs/git-filter-repo/template
+++ b/srcpkgs/git-filter-repo/template
@@ -2,7 +2,6 @@
 pkgname=git-filter-repo
 version=2.27.0
 revision=1
-archs=noarch
 depends="git python3"
 checkdepends="git python3 perl rsync dos2unix"
 short_desc="Versatile tool for rewriting git history"
diff --git a/srcpkgs/git-review/template b/srcpkgs/git-review/template
index 0ade5e3c4f2..5a8338df4c0 100644
--- a/srcpkgs/git-review/template
+++ b/srcpkgs/git-review/template
@@ -2,7 +2,6 @@
 pkgname=git-review
 version=1.28.0
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-pbr"
 depends="python3-requests"
diff --git a/srcpkgs/git-revise/template b/srcpkgs/git-revise/template
index 6d3071429b9..aa7b45340cf 100644
--- a/srcpkgs/git-revise/template
+++ b/srcpkgs/git-revise/template
@@ -2,7 +2,6 @@
 pkgname=git-revise
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="git python3-setuptools"
diff --git a/srcpkgs/git-secret/template b/srcpkgs/git-secret/template
index 01541c9b061..888033ef4ab 100644
--- a/srcpkgs/git-secret/template
+++ b/srcpkgs/git-secret/template
@@ -2,7 +2,6 @@
 pkgname=git-secret
 version=0.3.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="PREFIX=/usr"
 depends="bash gawk gnupg coreutils"
diff --git a/srcpkgs/git-toolbelt/template b/srcpkgs/git-toolbelt/template
index e79805ad5b0..223c14d450b 100644
--- a/srcpkgs/git-toolbelt/template
+++ b/srcpkgs/git-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=git-toolbelt
 version=1.5.0
 revision=1
-archs=noarch
 depends="git moreutils fzf"
 short_desc="Helper tools to make everyday life with Git much easier"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/git/template b/srcpkgs/git/template
index a5455fb9864..62f96a5f73c 100644
--- a/srcpkgs/git/template
+++ b/srcpkgs/git/template
@@ -63,7 +63,6 @@ post_install() {
 }
 
 git-cvs_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} cvs cvsps2 perl-DBD-SQLite"
 	short_desc+=" - CVS support"
 	pkg_install() {
@@ -89,7 +88,6 @@ git-svn_package() {
 }
 
 gitk_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc="Git repository browser"
 	license="GPL-2.0-or-later"
@@ -101,7 +99,6 @@ gitk_package() {
 }
 
 git-gui_package() {
-	archs=noarch
 	depends="git-${version}_${revision} tk"
 	short_desc+=" - GUI tool"
 	license="GPL-2.0-or-later"
@@ -116,7 +113,6 @@ git-gui_package() {
 
 git-all_package() {
 	build_style=meta
-	archs=noarch
 	depends="${subpackages/git-all/}"
 	short_desc+=" - meta-package for complete Git installation"
 }
@@ -132,7 +128,6 @@ git-libsecret_package() {
 
 git-netrc_package() {
 	depends="git-${version}_${revision}"
-	archs=noarch
 	short_desc+=" - netrc credential helper"
 	pkg_install() {
 		vmove usr/libexec/git-core/git-credential-netrc
diff --git a/srcpkgs/gitflow/template b/srcpkgs/gitflow/template
index 79c4e1adf5c..481ee2eee2e 100644
--- a/srcpkgs/gitflow/template
+++ b/srcpkgs/gitflow/template
@@ -5,7 +5,6 @@ version=20120925
 revision=2
 _commit=15aab26490facf285acef56cb5d61025eacb3a69
 _shflags_commit=2fb06af13de884e9680f14a00c82e52a67c867f1
-archs=noarch
 hostmakedepends="perl"
 depends="git"
 short_desc="Git extensions to provide high-level repository operations"
diff --git a/srcpkgs/gitolite/template b/srcpkgs/gitolite/template
index 0374c3a991c..ad7d25cd8fe 100644
--- a/srcpkgs/gitolite/template
+++ b/srcpkgs/gitolite/template
@@ -2,7 +2,6 @@
 pkgname=gitolite
 version=3.6.11
 revision=2
-archs=noarch
 depends="git perl"
 short_desc="Access control layer on top of git"
 maintainer="Steve Prybylski <sa.prybylx@gmail.com>"
diff --git a/srcpkgs/glances/template b/srcpkgs/glances/template
index daeec2ddd7d..f669611d1a9 100644
--- a/srcpkgs/glances/template
+++ b/srcpkgs/glances/template
@@ -2,7 +2,6 @@
 pkgname=glances
 version=3.1.4.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="${hostmakedepends} python3-future python3-psutil"
diff --git a/srcpkgs/glibc/template b/srcpkgs/glibc/template
index 4ea327aa1fa..f8e03d38093 100644
--- a/srcpkgs/glibc/template
+++ b/srcpkgs/glibc/template
@@ -201,7 +201,6 @@ glibc-devel_package() {
 	}
 }
 glibc-locales_package() {
-	archs="noarch"
 	conf_files="/etc/default/libc-locales"
 	short_desc+=" - locale data files"
 	pkg_install() {
diff --git a/srcpkgs/glibmm/template b/srcpkgs/glibmm/template
index bc373d3a90b..d3ffc563daf 100644
--- a/srcpkgs/glibmm/template
+++ b/srcpkgs/glibmm/template
@@ -18,7 +18,6 @@ post_patch() {
 }
 
 glibmm-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/glm/template b/srcpkgs/glm/template
index ae1a892e664..b978a0b992c 100644
--- a/srcpkgs/glm/template
+++ b/srcpkgs/glm/template
@@ -2,7 +2,6 @@
 pkgname=glm
 version=0.9.9.7
 revision=1
-archs=noarch
 wrksrc=glm
 hostmakedepends="dos2unix unzip"
 short_desc="C++ mathematics library for graphics programming"
diff --git a/srcpkgs/glog/template b/srcpkgs/glog/template
index 080a737fb35..dc33e06913a 100644
--- a/srcpkgs/glog/template
+++ b/srcpkgs/glog/template
@@ -27,7 +27,6 @@ glog-devel_package() {
 
 glog-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gmsh/template b/srcpkgs/gmsh/template
index 5d36aaf6eb6..dfac5740dd1 100644
--- a/srcpkgs/gmsh/template
+++ b/srcpkgs/gmsh/template
@@ -39,7 +39,6 @@ post_install() {
 }
 
 gmsh-doc_package() {
-	archs=noarch
 	short_desc+=" - document and demo files"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/gmsl/template b/srcpkgs/gmsl/template
index 37ec5bcd993..050d9e3af4b 100644
--- a/srcpkgs/gmsl/template
+++ b/srcpkgs/gmsl/template
@@ -2,7 +2,6 @@
 pkgname=gmsl
 version=1.1.8
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="make"
 short_desc="GNU Make Standard Library"
diff --git a/srcpkgs/gmusicbrowser/template b/srcpkgs/gmusicbrowser/template
index a84cce8f01a..55c006dd40d 100644
--- a/srcpkgs/gmusicbrowser/template
+++ b/srcpkgs/gmusicbrowser/template
@@ -2,7 +2,6 @@
 pkgname=gmusicbrowser
 version=1.1.15
 revision=7
-archs=noarch
 hostmakedepends="perl gettext"
 depends="perl-Gtk2 perl-Glib-Object-Introspection gst-plugins-good1
  gst-plugins-bad1 gst-plugins-ugly1"
diff --git a/srcpkgs/gnome-backgrounds/template b/srcpkgs/gnome-backgrounds/template
index 0b1ee427353..67984a56c47 100644
--- a/srcpkgs/gnome-backgrounds/template
+++ b/srcpkgs/gnome-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=gnome-backgrounds
 version=3.36.0
 revision=2
-archs=noarch
 build_style=meson
 hostmakedepends=gettext
 short_desc="Set of background images for the GNOME Desktop"
diff --git a/srcpkgs/gnome-colors-icon-theme/template b/srcpkgs/gnome-colors-icon-theme/template
index 79f36d85e89..02e88ced0a8 100644
--- a/srcpkgs/gnome-colors-icon-theme/template
+++ b/srcpkgs/gnome-colors-icon-theme/template
@@ -1,7 +1,6 @@
 pkgname=gnome-colors-icon-theme
 version=5.5.1
 revision=1
-archs=noarch
 depends="gtk-update-icon-cache hicolor-icon-theme gnome-icon-theme"
 short_desc="GNOME-Colors icon theme"
 maintainer="Peter Bui <pnutzh4x0r@gmail.com>"
diff --git a/srcpkgs/gnome-common/template b/srcpkgs/gnome-common/template
index f8eb31e1333..bf33a8497dd 100644
--- a/srcpkgs/gnome-common/template
+++ b/srcpkgs/gnome-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-common
 version=3.18.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-autoconf-archive"
 hostmakedepends="automake"
diff --git a/srcpkgs/gnome-doc-utils/template b/srcpkgs/gnome-doc-utils/template
index d2fa2e9e4cd..75458a7081b 100644
--- a/srcpkgs/gnome-doc-utils/template
+++ b/srcpkgs/gnome-doc-utils/template
@@ -2,7 +2,6 @@
 pkgname=gnome-doc-utils
 version=0.20.10
 revision=5
-archs=noarch
 build_style=gnu-configure
 configure_args="--disable-scrollkeeper"
 hostmakedepends="pkg-config intltool python3 libxml2-python3 libxslt-python
diff --git a/srcpkgs/gnome-getting-started-docs/template b/srcpkgs/gnome-getting-started-docs/template
index 5bec93490ba..ca718090c24 100644
--- a/srcpkgs/gnome-getting-started-docs/template
+++ b/srcpkgs/gnome-getting-started-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-getting-started-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gnome-doc-utils intltool itstool pkg-config"
 short_desc="Getting Started documentation for GNOME"
diff --git a/srcpkgs/gnome-icon-theme-extras/template b/srcpkgs/gnome-icon-theme-extras/template
index ca52449b6f0..e907872b567 100644
--- a/srcpkgs/gnome-icon-theme-extras/template
+++ b/srcpkgs/gnome-icon-theme-extras/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-extras
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool icon-naming-utils gtk-update-icon-cache"
 makedepends="icon-naming-utils gnome-icon-theme"
diff --git a/srcpkgs/gnome-icon-theme-symbolic/template b/srcpkgs/gnome-icon-theme-symbolic/template
index a76da8de756..ec9d64ae185 100644
--- a/srcpkgs/gnome-icon-theme-symbolic/template
+++ b/srcpkgs/gnome-icon-theme-symbolic/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-symbolic
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="GTK_UPDATE_ICON_CACHE=/bin/true"
 hostmakedepends="pkg-config intltool icon-naming-utils"
diff --git a/srcpkgs/gnome-icon-theme-xfce/template b/srcpkgs/gnome-icon-theme-xfce/template
index 7ef56da2cbd..b08bca158a7 100644
--- a/srcpkgs/gnome-icon-theme-xfce/template
+++ b/srcpkgs/gnome-icon-theme-xfce/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme-xfce
 version=0.6
 revision=2
-archs=noarch
 wrksrc="gnome-icon-theme-xfce"
 short_desc="Theme adding missing icons for Xfce"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/gnome-icon-theme/template b/srcpkgs/gnome-icon-theme/template
index e8a46ea8457..1f31970af43 100644
--- a/srcpkgs/gnome-icon-theme/template
+++ b/srcpkgs/gnome-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=gnome-icon-theme
 version=3.12.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-icon-mapping"
 hostmakedepends="pkg-config intltool librsvg icon-naming-utils gtk-update-icon-cache"
diff --git a/srcpkgs/gnome-js-common/template b/srcpkgs/gnome-js-common/template
index 263813cf2c8..50582aa152a 100644
--- a/srcpkgs/gnome-js-common/template
+++ b/srcpkgs/gnome-js-common/template
@@ -2,7 +2,6 @@
 pkgname=gnome-js-common
 version=0.1.2
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="GNOME JavaScript common modules"
diff --git a/srcpkgs/gnome-mime-data/template b/srcpkgs/gnome-mime-data/template
index e79860e1820..3ca5cd0ab8f 100644
--- a/srcpkgs/gnome-mime-data/template
+++ b/srcpkgs/gnome-mime-data/template
@@ -2,7 +2,6 @@
 pkgname=gnome-mime-data
 version=2.18.0
 revision=4
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool shared-mime-info"
 makedepends="shared-mime-info"
diff --git a/srcpkgs/gnome-passwordsafe/template b/srcpkgs/gnome-passwordsafe/template
index c4609214612..5c2775ffd5d 100644
--- a/srcpkgs/gnome-passwordsafe/template
+++ b/srcpkgs/gnome-passwordsafe/template
@@ -2,7 +2,6 @@
 pkgname=gnome-passwordsafe
 version=3.99.2
 revision=1
-archs=noarch
 wrksrc="PasswordSafe-${version}"
 build_style=meson
 hostmakedepends="gettext glib-devel pkg-config gobject-introspection python3-pykeepass"
diff --git a/srcpkgs/gnome-shell-extensions/template b/srcpkgs/gnome-shell-extensions/template
index 97168b40f66..e6d61b34979 100644
--- a/srcpkgs/gnome-shell-extensions/template
+++ b/srcpkgs/gnome-shell-extensions/template
@@ -2,7 +2,6 @@
 pkgname=gnome-shell-extensions
 version=3.34.1
 revision=1
-archs=noarch
 build_style=meson
 configure_args="-Dextension_set=all"
 hostmakedepends="pkg-config"
diff --git a/srcpkgs/gnome-themes-extra/template b/srcpkgs/gnome-themes-extra/template
index 02ea840e0bc..21981054da4 100644
--- a/srcpkgs/gnome-themes-extra/template
+++ b/srcpkgs/gnome-themes-extra/template
@@ -19,7 +19,6 @@ if [ "$CROSS_BUILD" ]; then
 fi
 
 gnome-themes-standard_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="gnome-themes-extra-${version}_${revision}"
diff --git a/srcpkgs/gnome-tweaks/template b/srcpkgs/gnome-tweaks/template
index 557005fad57..c00e5838422 100644
--- a/srcpkgs/gnome-tweaks/template
+++ b/srcpkgs/gnome-tweaks/template
@@ -2,7 +2,6 @@
 pkgname=gnome-tweaks
 version=3.34.0
 revision=3
-archs=noarch
 build_style=meson
 hostmakedepends="gettext"
 depends="gtk+3 dconf gnome-settings-daemon mutter libnotify python3-gobject libhandy"
@@ -15,7 +14,6 @@ checksum=003326fab46e6faad9485924bca503f0c583e3b4553d6f673406eda396205250
 replaces="gnome-tweak-tool>=0"
 
 gnome-tweak-tool_package() {
-	archs=noarch
 	build_style=meta
 	depends="gnome-tweaks>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
diff --git a/srcpkgs/gnome-user-docs/template b/srcpkgs/gnome-user-docs/template
index 4cb55396e37..90b4044d402 100644
--- a/srcpkgs/gnome-user-docs/template
+++ b/srcpkgs/gnome-user-docs/template
@@ -2,7 +2,6 @@
 pkgname=gnome-user-docs
 version=3.34.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext pkg-config itstool gnome-doc-utils"
 makedepends="yelp"
diff --git a/srcpkgs/gnome-video-effects/template b/srcpkgs/gnome-video-effects/template
index 08320ba36db..fa6bd46b9a7 100644
--- a/srcpkgs/gnome-video-effects/template
+++ b/srcpkgs/gnome-video-effects/template
@@ -2,7 +2,6 @@
 pkgname=gnome-video-effects
 version=0.5.0
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool gettext"
 makedepends="gstreamer1-devel"
diff --git a/srcpkgs/gns3-gui/template b/srcpkgs/gns3-gui/template
index 9ea3c9b78ad..f3c04137a40 100644
--- a/srcpkgs/gns3-gui/template
+++ b/srcpkgs/gns3-gui/template
@@ -2,7 +2,6 @@
 pkgname=gns3-gui
 version=2.2.10
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-psutil python3-jsonschema python3-sentry
diff --git a/srcpkgs/gns3-net-converter/template b/srcpkgs/gns3-net-converter/template
index 70b6c90e8c8..48afd26125b 100644
--- a/srcpkgs/gns3-net-converter/template
+++ b/srcpkgs/gns3-net-converter/template
@@ -2,7 +2,6 @@
 pkgname=gns3-net-converter
 version=1.3.0
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="gns3converter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/gnupod/template b/srcpkgs/gnupod/template
index d4e80ce6c9c..06caedf5738 100644
--- a/srcpkgs/gnupod/template
+++ b/srcpkgs/gnupod/template
@@ -2,7 +2,6 @@
 pkgname=gnupod
 version=0.99.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-Digest-SHA1 perl-XML-Parser perl-Unicode-String perl-MP3-Info perl-TimeDate"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/gnuradio/template b/srcpkgs/gnuradio/template
index 8c7c6e80eee..56969321295 100644
--- a/srcpkgs/gnuradio/template
+++ b/srcpkgs/gnuradio/template
@@ -31,7 +31,6 @@ post_install() {
 
 gnuradio-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/gnustep-gui/template b/srcpkgs/gnustep-gui/template
index c6253ca745d..3c1cdbadfe0 100644
--- a/srcpkgs/gnustep-gui/template
+++ b/srcpkgs/gnustep-gui/template
@@ -18,7 +18,6 @@ nocross="objc doesn't get cross build at present within gcc"
 
 gnustep-gui-data_package() {
 	short_desc+=" - assets"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/GNUstep/Sounds
 		vmove usr/lib/GNUstep/Images
diff --git a/srcpkgs/gohufont/template b/srcpkgs/gohufont/template
index c6e43d9c0d1..3218d1befc3 100644
--- a/srcpkgs/gohufont/template
+++ b/srcpkgs/gohufont/template
@@ -2,7 +2,6 @@
 pkgname=gohufont
 version=2.1
 revision=2
-archs=noarch
 makedepends="font-util xbps-triggers"
 depends="$makedepends"
 short_desc="Programming monospace bitmap"
diff --git a/srcpkgs/google-cloud-sdk/template b/srcpkgs/google-cloud-sdk/template
index 326e81b0def..a38ba727c0f 100644
--- a/srcpkgs/google-cloud-sdk/template
+++ b/srcpkgs/google-cloud-sdk/template
@@ -2,7 +2,6 @@
 pkgname=google-cloud-sdk
 version=307.0.0
 revision=1
-archs=noarch
 wrksrc=$pkgname
 depends="python3"
 short_desc="Command-line interface for Google Cloud Platform products and services"
diff --git a/srcpkgs/google-fonts-ttf/template b/srcpkgs/google-fonts-ttf/template
index 25ac61c5dbe..b5fdf32bd7b 100644
--- a/srcpkgs/google-fonts-ttf/template
+++ b/srcpkgs/google-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=google-fonts-ttf
 version=20190605
 revision=1
-archs=noarch
 _githash=87776223497b72be361b5c08ba16e9c659209f37
 wrksrc="fonts-${_githash}"
 depends="font-util cantarell-fonts noto-fonts-ttf"
diff --git a/srcpkgs/gpodder/template b/srcpkgs/gpodder/template
index 8ce466aaa83..580a64d140d 100644
--- a/srcpkgs/gpodder/template
+++ b/srcpkgs/gpodder/template
@@ -2,7 +2,6 @@
 pkgname=gpodder
 version=3.10.16
 revision=1
-archs=noarch
 wrksrc="gpodder-${version}"
 hostmakedepends="python3 intltool"
 depends="eyeD3 gtk+3 hicolor-icon-theme python3-dbus python3-gobject
diff --git a/srcpkgs/gradle/template b/srcpkgs/gradle/template
index bf4775cd7a7..5d4a15e50a8 100644
--- a/srcpkgs/gradle/template
+++ b/srcpkgs/gradle/template
@@ -2,7 +2,6 @@
 pkgname=gradle
 version=6.4.1
 revision=1
-archs=noarch
 depends="virtual?java-environment"
 short_desc="Build system for Java/C/C++ software"
 maintainer="Adrian Siekierka <kontakt@asie.pl>"
diff --git a/srcpkgs/gramps/template b/srcpkgs/gramps/template
index 35e3245ef62..a24b860e37f 100644
--- a/srcpkgs/gramps/template
+++ b/srcpkgs/gramps/template
@@ -2,7 +2,6 @@
 pkgname=gramps
 version=5.1.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="pkg-config intltool python3"
 depends="gtk+3 python3-gobject python3-bsddb3"
diff --git a/srcpkgs/grc/template b/srcpkgs/grc/template
index 9efca90352e..a59c5e97f14 100644
--- a/srcpkgs/grc/template
+++ b/srcpkgs/grc/template
@@ -2,7 +2,6 @@
 pkgname=grc
 version=1.11.3
 revision=1
-archs=noarch
 depends="python3"
 short_desc="Colouriser for logfiles and output of commands"
 maintainer="Georg Schabel <gescha@posteo.de>"
diff --git a/srcpkgs/greg/template b/srcpkgs/greg/template
index 237e2ac9ae9..ca6c9f42667 100644
--- a/srcpkgs/greg/template
+++ b/srcpkgs/greg/template
@@ -2,7 +2,6 @@
 pkgname=greg
 version=0.4.7
 revision=6
-archs=noarch
 build_style=python3-module
 pycompile_module="greg"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/greybird-themes/template b/srcpkgs/greybird-themes/template
index 1ce9e214cb1..447ad0da879 100644
--- a/srcpkgs/greybird-themes/template
+++ b/srcpkgs/greybird-themes/template
@@ -2,7 +2,6 @@
 pkgname=greybird-themes
 version=3.22.12
 revision=1
-archs=noarch
 wrksrc="Greybird-${version}"
 build_style=meson
 hostmakedepends="sassc ninja glib-devel gdk-pixbuf-devel librsvg-devel"
diff --git a/srcpkgs/grip/template b/srcpkgs/grip/template
index 6acfe00b299..6459d6bb386 100755
--- a/srcpkgs/grip/template
+++ b/srcpkgs/grip/template
@@ -2,7 +2,6 @@
 pkgname=grip
 version=4.5.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-docopt python3-Flask python3-Markdown python3-path-and-address python3-Pygments python3-requests"
diff --git a/srcpkgs/grml-zsh-config/template b/srcpkgs/grml-zsh-config/template
index 1931c4d1f01..8b674961375 100644
--- a/srcpkgs/grml-zsh-config/template
+++ b/srcpkgs/grml-zsh-config/template
@@ -2,7 +2,6 @@
 pkgname=grml-zsh-config
 version=0.17.4
 revision=1
-archs=noarch
 wrksrc="grml-etc-core-${version}"
 short_desc="Grml's zsh setup"
 maintainer="Christian Poulwey <christian.poulwey@t-online.de>"
diff --git a/srcpkgs/groff/template b/srcpkgs/groff/template
index 690b26c94ff..a6c8419d0df 100644
--- a/srcpkgs/groff/template
+++ b/srcpkgs/groff/template
@@ -50,7 +50,6 @@ libgroff_package() {
 
 groff-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/grub-terminus/template b/srcpkgs/grub-terminus/template
index 5f53c77384d..9b5e867d4df 100644
--- a/srcpkgs/grub-terminus/template
+++ b/srcpkgs/grub-terminus/template
@@ -2,7 +2,6 @@
 pkgname=grub-terminus
 version=0.2
 revision=1
-archs=noarch
 hostmakedepends="grub-utils terminus-font"
 short_desc="Terminus bold fonts for GRUB"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/grub/template b/srcpkgs/grub/template
index 77c6cfbff2f..0c4642323d7 100644
--- a/srcpkgs/grub/template
+++ b/srcpkgs/grub/template
@@ -162,7 +162,6 @@ grub-utils_package() {
 	}
 }
 grub-x86_64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - x86_64 EFI support"
 	pkg_install() {
@@ -170,7 +169,6 @@ grub-x86_64-efi_package() {
 	}
 }
 grub-i386-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - i386 EFI support"
 	pkg_install() {
@@ -178,7 +176,6 @@ grub-i386-efi_package() {
 	}
 }
 grub-i386-coreboot_package() {
-	archs=noarch
 	depends="grub>=$version"
 	short_desc+=" - i386 coreboot support"
 	pkg_install() {
@@ -200,7 +197,6 @@ grub-xen_package() {
 	}
 }
 grub-arm64-efi_package() {
-	archs=noarch
 	depends="grub>=$version dosfstools efibootmgr"
 	short_desc+=" - arm64 EFI support"
 	pkg_install() {
@@ -208,7 +204,6 @@ grub-arm64-efi_package() {
 	}
 }
 grub-powerpc-ieee1275_package() {
-	archs=noarch
 	depends="grub>=$version powerpc-utils"
 	short_desc+=" - powerpc Open Firmware support"
 	pkg_install() {
diff --git a/srcpkgs/gscan2pdf/template b/srcpkgs/gscan2pdf/template
index 6e01328a391..201cccf6224 100644
--- a/srcpkgs/gscan2pdf/template
+++ b/srcpkgs/gscan2pdf/template
@@ -2,7 +2,6 @@
 pkgname=gscan2pdf
 version=2.8.2
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl gettext"
 makedepends="ImageMagick djvulibre libmagick-perl perl-Config-General
diff --git a/srcpkgs/gscreenshot/template b/srcpkgs/gscreenshot/template
index 5537910592e..13964d4fbab 100644
--- a/srcpkgs/gscreenshot/template
+++ b/srcpkgs/gscreenshot/template
@@ -2,7 +2,6 @@
 pkgname=gscreenshot
 version=2.12.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="gtk+3 python3-setuptools python3-Pillow python3-gobject scrot"
diff --git a/srcpkgs/gsfonts/template b/srcpkgs/gsfonts/template
index 5d76979e0ed..511a929ceb7 100644
--- a/srcpkgs/gsfonts/template
+++ b/srcpkgs/gsfonts/template
@@ -2,7 +2,6 @@
 pkgname=gsfonts
 version=8.11
 revision=5
-archs=noarch
 wrksrc=fonts
 makedepends="font-util font-misc-misc"
 depends="${makedepends}"
diff --git a/srcpkgs/gtk-doc/template b/srcpkgs/gtk-doc/template
index 439da0d796e..d56054d12f6 100644
--- a/srcpkgs/gtk-doc/template
+++ b/srcpkgs/gtk-doc/template
@@ -2,7 +2,6 @@
 pkgname=gtk-doc
 version=1.32
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="usr/share/gtk-doc/python/gtkdoc"
 hostmakedepends="gettext docbook-xml docbook-xsl itstool libxslt pkg-config python3"
diff --git a/srcpkgs/gtk-theme-united-gnome/template b/srcpkgs/gtk-theme-united-gnome/template
index 3523498a780..355bf483d67 100644
--- a/srcpkgs/gtk-theme-united-gnome/template
+++ b/srcpkgs/gtk-theme-united-gnome/template
@@ -2,7 +2,6 @@
 pkgname=gtk-theme-united-gnome
 version=2.2
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="gnome-themes-standard gtk+3 gtk-engine-murrine"
 short_desc="GTK2/3 + GNOME Shell theme based on a Ubuntu 18.04 design concept"
diff --git a/srcpkgs/guake/template b/srcpkgs/guake/template
index 885fed99f0b..564d719856b 100644
--- a/srcpkgs/guake/template
+++ b/srcpkgs/guake/template
@@ -2,7 +2,6 @@
 pkgname=guake
 version=3.6.3
 revision=3
-archs=noarch
 build_style=python3-module
 wrksrc="Guake-${version}"
 pycompile_module="guake"
diff --git a/srcpkgs/gufw/template b/srcpkgs/gufw/template
index 1b87f809fe9..348c7ca7da8 100644
--- a/srcpkgs/gufw/template
+++ b/srcpkgs/gufw/template
@@ -2,7 +2,6 @@
 pkgname=gufw
 version=20.04.1
 revision=1
-archs=noarch
 wrksrc="gufw-${version}"
 build_style=python3-module
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/guilt/template b/srcpkgs/guilt/template
index 3c17d8cc879..76449857b96 100644
--- a/srcpkgs/guilt/template
+++ b/srcpkgs/guilt/template
@@ -4,7 +4,6 @@ version=0.36
 revision=2
 _githash=22d785dd24329170f66e7696da38b3e90e033d61
 _gitshort="${_githash:0:7}"
-archs=noarch
 wrksrc="guilt-${_gitshort}"
 build_style=gnu-makefile
 make_build_args="-C Documentation"
diff --git a/srcpkgs/gyazo/template b/srcpkgs/gyazo/template
index 3661570514a..261d2f6e175 100644
--- a/srcpkgs/gyazo/template
+++ b/srcpkgs/gyazo/template
@@ -4,7 +4,6 @@ version=1.2.1
 revision=1
 wrksrc="Gyazo-for-Linux-${version}"
 depends="ruby xclip ImageMagick"
-archs=noarch
 short_desc="Seriously Instant Screen-Grabbing"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
 license="GPL-2"
diff --git a/srcpkgs/hamster-applet/template b/srcpkgs/hamster-applet/template
index ce244c38f10..aa6e23f26b3 100644
--- a/srcpkgs/hamster-applet/template
+++ b/srcpkgs/hamster-applet/template
@@ -2,7 +2,6 @@
 pkgname=hamster-applet
 version=2.91.2
 revision=10
-archs=noarch
 build_style=waf
 pycompile_module="hamster"
 hostmakedepends="pkg-config intltool gnome-doc-utils docbook2x"
diff --git a/srcpkgs/hashboot/template b/srcpkgs/hashboot/template
index 67c071e4f9e..49dbe3478f4 100644
--- a/srcpkgs/hashboot/template
+++ b/srcpkgs/hashboot/template
@@ -2,7 +2,6 @@
 pkgname=hashboot
 version=0.9.14
 revision=1
-archs=noarch
 hostmakedepends="asciidoc"
 short_desc="Check integrity of files in /boot, mbr & (mostly) coreboot bios"
 maintainer="teldra <teldra@rotce.de>"
diff --git a/srcpkgs/hedgewars/template b/srcpkgs/hedgewars/template
index 40cdb1086b4..c7418ec778b 100644
--- a/srcpkgs/hedgewars/template
+++ b/srcpkgs/hedgewars/template
@@ -56,7 +56,6 @@ post_install() {
 
 hedgewars-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/hedgewars/Data
 	}
diff --git a/srcpkgs/hg-git/template b/srcpkgs/hg-git/template
index 15f981d8563..4a47998a4a3 100644
--- a/srcpkgs/hg-git/template
+++ b/srcpkgs/hg-git/template
@@ -3,7 +3,6 @@ pkgname=hg-git
 version=0.8.12
 revision=1
 wrksrc="durin42-hg-git-c651bb6fcf33"
-archs=noarch
 build_style=python2-module
 hostmakedepends="python"
 makedepends="python python-dulwich"
diff --git a/srcpkgs/hicolor-icon-theme/template b/srcpkgs/hicolor-icon-theme/template
index 35798239a5e..51d207c4a3c 100644
--- a/srcpkgs/hicolor-icon-theme/template
+++ b/srcpkgs/hicolor-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=hicolor-icon-theme
 version=0.17
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Standard icon theme called hicolor"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/hiera/template b/srcpkgs/hiera/template
index b8cd47376ba..69f4928eff1 100644
--- a/srcpkgs/hiera/template
+++ b/srcpkgs/hiera/template
@@ -2,7 +2,6 @@
 pkgname=hiera
 version=3.6.0
 revision=2
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/hostfw/template b/srcpkgs/hostfw/template
index 445c9bee74e..00484a3f5b9 100644
--- a/srcpkgs/hostfw/template
+++ b/srcpkgs/hostfw/template
@@ -2,7 +2,6 @@
 pkgname=hostfw
 version=0.6.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="iptables"
 short_desc="Simple host-based permit-by-exception iptables generation script"
diff --git a/srcpkgs/hostmux/template b/srcpkgs/hostmux/template
index c261e9487ec..4a7bd2f0dfa 100644
--- a/srcpkgs/hostmux/template
+++ b/srcpkgs/hostmux/template
@@ -2,7 +2,6 @@
 pkgname=hostmux
 version=1.4.0
 revision=1
-archs=noarch
 depends="tmux"
 short_desc="A small wrapper for tmux to easily connect to a series of hosts via ssh"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/hosts-update/template b/srcpkgs/hosts-update/template
index 4dc11da9b3a..12b123f5182 100644
--- a/srcpkgs/hosts-update/template
+++ b/srcpkgs/hosts-update/template
@@ -2,7 +2,6 @@
 pkgname=hosts-update
 version=1.37
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="bash curl"
 short_desc="Updates /etc/hosts with the mvps blocklist"
diff --git a/srcpkgs/httpie/template b/srcpkgs/httpie/template
index 2cb04c88273..6de3cef38ba 100644
--- a/srcpkgs/httpie/template
+++ b/srcpkgs/httpie/template
@@ -2,7 +2,6 @@
 pkgname=httpie
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests python3-Pygments"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-httpie_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" (transitional dummy package)"
 	depends="httpie>=${version}_${revision}"
diff --git a/srcpkgs/hunspell-da_DK/template b/srcpkgs/hunspell-da_DK/template
index 8fffc8f3f32..ebbf69fde46 100644
--- a/srcpkgs/hunspell-da_DK/template
+++ b/srcpkgs/hunspell-da_DK/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-da_DK
 version=2.4
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Danish da_DK dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_CH/template b/srcpkgs/hunspell-de_CH/template
index c23fb3ad0a0..6af64522019 100644
--- a/srcpkgs/hunspell-de_CH/template
+++ b/srcpkgs/hunspell-de_CH/template
@@ -3,7 +3,6 @@ pkgname=hunspell-de_CH
 version=20170112
 revision=1
 _version="${version:0:4}-${version:4:2}.${version:6:2}"
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="German (Switzerland) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-de_DE/template b/srcpkgs/hunspell-de_DE/template
index f7da2d64d4c..94733999f27 100644
--- a/srcpkgs/hunspell-de_DE/template
+++ b/srcpkgs/hunspell-de_DE/template
@@ -11,7 +11,6 @@ short_desc="German (Germany) dictionary for hunspell"
 distfiles="https://extensions.libreoffice.org/extensions/german-de-de-frami-dictionaries/${_version}/@@download/file/dict-de_DE-frami_${_version}.oxt>dict-de.zip"
 checksum=af515015e306c634373b5382808a39691200de3439811d2f1502e9b91c23b46a
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall ${wrksrc}/de_DE_frami/de_DE_frami.aff 644 usr/share/hunspell de_DE.aff
diff --git a/srcpkgs/hunspell-el_GR/template b/srcpkgs/hunspell-el_GR/template
index 698057e616e..aaedf9fe65d 100644
--- a/srcpkgs/hunspell-el_GR/template
+++ b/srcpkgs/hunspell-el_GR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-el_GR
 version=0.4.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Greek el_GR dictionary for hunspell"
 maintainer="Nicholas Christopoulos <nereus@freemail.gr>"
diff --git a/srcpkgs/hunspell-en_AU/template b/srcpkgs/hunspell-en_AU/template
index f8f3b94e6ab..7b11e8840e5 100644
--- a/srcpkgs/hunspell-en_AU/template
+++ b/srcpkgs/hunspell-en_AU/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_AU
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Australian English en_AU dictionary for hunspell"
diff --git a/srcpkgs/hunspell-en_GB-ize/template b/srcpkgs/hunspell-en_GB-ize/template
index 41001a413a8..82b38cb25f3 100644
--- a/srcpkgs/hunspell-en_GB-ize/template
+++ b/srcpkgs/hunspell-en_GB-ize/template
@@ -4,7 +4,6 @@ _variant="ize"
 pkgname=${_vpkgname}-${_variant}
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="English dictionary for hunspell ${_variant} variant"
diff --git a/srcpkgs/hunspell-en_US/template b/srcpkgs/hunspell-en_US/template
index 0d100851774..807577870f1 100644
--- a/srcpkgs/hunspell-en_US/template
+++ b/srcpkgs/hunspell-en_US/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-en_US
 version=2019.10.06
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="American English en_US dictionary for hunspell"
diff --git a/srcpkgs/hunspell-es_ES/template b/srcpkgs/hunspell-es_ES/template
index f24f904620f..b08aaabb2a6 100644
--- a/srcpkgs/hunspell-es_ES/template
+++ b/srcpkgs/hunspell-es_ES/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-es_ES
 version=2.5
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Spanish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-fr_FR/template b/srcpkgs/hunspell-fr_FR/template
index 9ad9c70a087..7cd93fe29c6 100644
--- a/srcpkgs/hunspell-fr_FR/template
+++ b/srcpkgs/hunspell-fr_FR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-fr_FR
 version=6.4.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="French dictionary for hunspell"
@@ -24,7 +23,6 @@ hunspell-fr_FR-moderne_package() {
 	short_desc+=" - Moderne Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -37,7 +35,6 @@ hunspell-fr_FR-reforme1990_package() {
 	short_desc+=" - Reforme 1990 Variant"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
@@ -50,7 +47,6 @@ hunspell-fr_FR-toutesvariantes_package() {
 	short_desc+=" - All variant in one file"
 	provides="${sourcepkg}-${version}_${revision}"
 	replaces="${sourcepkg}>=0"
-	archs=noarch
 	pkg_install() {
 		vinstall ${wrksrc}/fr-${_variant}.aff 644 /usr/share/hunspell fr_FR.aff
 		vinstall ${wrksrc}/fr-${_variant}.dic 644 /usr/share/hunspell fr_FR.dic
diff --git a/srcpkgs/hunspell-hr_HR/template b/srcpkgs/hunspell-hr_HR/template
index a72930fe333..b0ab1484e90 100644
--- a/srcpkgs/hunspell-hr_HR/template
+++ b/srcpkgs/hunspell-hr_HR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-hr_HR
 version=20030928
 revision=2
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Croatian (Croatia) dictionary for hunspell"
diff --git a/srcpkgs/hunspell-it_IT/template b/srcpkgs/hunspell-it_IT/template
index 44d83a79ae6..9d0e0c3186c 100644
--- a/srcpkgs/hunspell-it_IT/template
+++ b/srcpkgs/hunspell-it_IT/template
@@ -3,7 +3,6 @@ pkgname=hunspell-it_IT
 version=4.2
 revision=1
 build_style=fetch
-archs=noarch
 hostmakedepends="unzip"
 short_desc="Italian dictionary for hunspell"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
diff --git a/srcpkgs/hunspell-pl_PL/template b/srcpkgs/hunspell-pl_PL/template
index 31158cc9bec..4cb3ceb10fe 100644
--- a/srcpkgs/hunspell-pl_PL/template
+++ b/srcpkgs/hunspell-pl_PL/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pl_PL
 version=20191005
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Polish dictionary for hunspell"
diff --git a/srcpkgs/hunspell-pt_BR/template b/srcpkgs/hunspell-pt_BR/template
index 4920979d7d3..91b14b275af 100644
--- a/srcpkgs/hunspell-pt_BR/template
+++ b/srcpkgs/hunspell-pt_BR/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-pt_BR
 version=3.2
 revision=2
-archs=noarch
 build_style=fetch
 hostmakedepends="unzip"
 short_desc="Brazillian Portuguese dictionary for hunspell"
diff --git a/srcpkgs/hunspell-ru_RU-ieyo/template b/srcpkgs/hunspell-ru_RU-ieyo/template
index dcc45866c09..82f485a910a 100644
--- a/srcpkgs/hunspell-ru_RU-ieyo/template
+++ b/srcpkgs/hunspell-ru_RU-ieyo/template
@@ -10,7 +10,6 @@ homepage="http://extensions.openoffice.org/en/projectrelease/russkiy-orfografich
 distfiles="${SOURCEFORGE_SITE}/project/aoo-extensions/5149/3/dict_ru_ru-aot-${version}-ieyo.oxt>dict-ru_RU-ieyo.zip"
 checksum=3b374cf18f00fd0a9b6514eb8413438ce5d425a2e04435ffd81d8acc7ee1e578
 create_wrksrc=yes
-archs=noarch
 provides="hunspell-ru_RU-${version}_${revision}"
 conflicts="hunspell-ru_RU"
 
diff --git a/srcpkgs/hunspell-ru_RU/template b/srcpkgs/hunspell-ru_RU/template
index 862bed568c1..ffd028dbcda 100644
--- a/srcpkgs/hunspell-ru_RU/template
+++ b/srcpkgs/hunspell-ru_RU/template
@@ -10,7 +10,6 @@ homepage="https://extensions.libreoffice.org/extensions/russian-spellcheck-dicti
 distfiles="https://extensions.libreoffice.org/extensions/russian-spellcheck-dictionary.-based-on-works-of-aot-group/${version/./-}/@@download/file/dict_ru_ru-aot-${version}.oxt>dict-ru.zip"
 checksum=ee9b0575e9f8caf1d0a948fb644aed864de47aaf3bc24d2b77f288fec7f8d4c4
 create_wrksrc=yes
-archs=noarch
 
 do_install() {
 	vinstall russian-aot.aff 644 usr/share/hunspell ru_RU.aff
diff --git a/srcpkgs/hunspell-sv_SE/template b/srcpkgs/hunspell-sv_SE/template
index d36dd1359fa..991a74da507 100644
--- a/srcpkgs/hunspell-sv_SE/template
+++ b/srcpkgs/hunspell-sv_SE/template
@@ -2,7 +2,6 @@
 pkgname=hunspell-sv_SE
 version=2.41
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 short_desc="Swedish sv_SE dictionary for hunspell"
diff --git a/srcpkgs/hwids/template b/srcpkgs/hwids/template
index 05feaae9dc1..0d99a8f959b 100644
--- a/srcpkgs/hwids/template
+++ b/srcpkgs/hwids/template
@@ -2,7 +2,6 @@
 pkgname=hwids
 version=20200306
 revision=1
-archs=noarch
 wrksrc="hwids-hwids-${version}"
 short_desc="Hardware Identification Databases"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/i3blocks-blocklets/template b/srcpkgs/i3blocks-blocklets/template
index 82d7380e856..b70dabb34c5 100644
--- a/srcpkgs/i3blocks-blocklets/template
+++ b/srcpkgs/i3blocks-blocklets/template
@@ -2,7 +2,6 @@
 pkgname=i3blocks-blocklets
 version=1.4.0
 revision=2
-archs=noarch
 wrksrc="i3blocks-contrib-${version}"
 depends="i3blocks>=1.5"
 short_desc="Flexible scheduler for i3bar"
diff --git a/srcpkgs/i3lock-fancy/template b/srcpkgs/i3lock-fancy/template
index 5bb3502b4ed..4b3e2ed4663 100644
--- a/srcpkgs/i3lock-fancy/template
+++ b/srcpkgs/i3lock-fancy/template
@@ -2,7 +2,6 @@
 pkgname=i3lock-fancy
 version=0.2
 revision=1
-archs=noarch
 depends="util-linux bash ImageMagick i3lock wmctrl gawk"
 short_desc="Fancy lockscreen using i3lock"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iana-etc/template b/srcpkgs/iana-etc/template
index cf2c419b23c..8717a999a08 100644
--- a/srcpkgs/iana-etc/template
+++ b/srcpkgs/iana-etc/template
@@ -3,7 +3,6 @@ pkgname=iana-etc
 version=20190504
 revision=1
 bootstrap=yes
-archs=noarch
 short_desc="Unix /etc/services and /etc/protocols files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 license="Public Domain"
diff --git a/srcpkgs/ibus-avro/template b/srcpkgs/ibus-avro/template
index 78350f5f4df..5ae42e15aa6 100644
--- a/srcpkgs/ibus-avro/template
+++ b/srcpkgs/ibus-avro/template
@@ -2,7 +2,6 @@
 pkgname=ibus-avro
 version=1.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_install_target="installdeb"
 hostmakedepends="automake pkg-config"
diff --git a/srcpkgs/icdiff/template b/srcpkgs/icdiff/template
index 396448b86f4..6dfcb6e3de2 100644
--- a/srcpkgs/icdiff/template
+++ b/srcpkgs/icdiff/template
@@ -3,7 +3,6 @@ pkgname=icdiff
 version=1.9.5
 revision=2
 wrksrc="${pkgname}-release-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="icdiff.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-icdiff_package() {
-	archs=noarch
 	depends="python3 python3-setuptools"
 	pycompile_module="icdiff.py"
 	alternatives="
diff --git a/srcpkgs/ice-ssb/template b/srcpkgs/ice-ssb/template
index c06941257c1..c4c7625a15a 100644
--- a/srcpkgs/ice-ssb/template
+++ b/srcpkgs/ice-ssb/template
@@ -2,7 +2,6 @@
 pkgname=ice-ssb
 version=6.0.8
 revision=1
-archs=noarch
 wrksrc="ice-$version"
 depends="gtk+3 python3-BeautifulSoup4 python3-gobject python3-requests"
 short_desc="Site Specific Browsers (SSBs) manager"
diff --git a/srcpkgs/icecat/template b/srcpkgs/icecat/template
index 2cdfa5dc264..e3271443af8 100644
--- a/srcpkgs/icecat/template
+++ b/srcpkgs/icecat/template
@@ -208,7 +208,6 @@ do_install() {
 icecat-i18n-ach_package() {
 	short_desc+=" - Acholi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -217,7 +216,6 @@ icecat-i18n-ach_package() {
 icecat-i18n-af_package() {
 	short_desc+=" - Afrikaans language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -226,7 +224,6 @@ icecat-i18n-af_package() {
 icecat-i18n-an_package() {
 	short_desc+=" - Aragonese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -235,7 +232,6 @@ icecat-i18n-an_package() {
 icecat-i18n-ar_package() {
 	short_desc+=" - Arabic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -244,7 +240,6 @@ icecat-i18n-ar_package() {
 icecat-i18n-ast_package() {
 	short_desc+=" - Asturian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -253,7 +248,6 @@ icecat-i18n-ast_package() {
 icecat-i18n-az_package() {
 	short_desc+=" - Azerbaijani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -262,7 +256,6 @@ icecat-i18n-az_package() {
 icecat-i18n-be_package() {
 	short_desc+=" - Belarusian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -271,7 +264,6 @@ icecat-i18n-be_package() {
 icecat-i18n-bg_package() {
 	short_desc+=" - Bulgarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -280,7 +272,6 @@ icecat-i18n-bg_package() {
 icecat-i18n-bn_package() {
 	short_desc+=" - Bengali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -289,7 +280,6 @@ icecat-i18n-bn_package() {
 icecat-i18n-br_package() {
 	short_desc+=" - Breton language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -298,7 +288,6 @@ icecat-i18n-br_package() {
 icecat-i18n-bs_package() {
 	short_desc+=" - Bosnian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -307,7 +296,6 @@ icecat-i18n-bs_package() {
 icecat-i18n-ca_package() {
 	short_desc+=" - Catalan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -316,7 +304,6 @@ icecat-i18n-ca_package() {
 icecat-i18n-cak_package() {
 	short_desc+=" - Kaqchikel language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -325,7 +312,6 @@ icecat-i18n-cak_package() {
 icecat-i18n-cs_package() {
 	short_desc+=" - Czech language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -334,7 +320,6 @@ icecat-i18n-cs_package() {
 icecat-i18n-cy_package() {
 	short_desc+=" - Welsh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -343,7 +328,6 @@ icecat-i18n-cy_package() {
 icecat-i18n-da_package() {
 	short_desc+=" - Danish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -352,7 +336,6 @@ icecat-i18n-da_package() {
 icecat-i18n-de_package() {
 	short_desc+=" - German language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -361,7 +344,6 @@ icecat-i18n-de_package() {
 icecat-i18n-dsb_package() {
 	short_desc+=" - Lower Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -370,7 +352,6 @@ icecat-i18n-dsb_package() {
 icecat-i18n-el_package() {
 	short_desc+=" - Greek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -379,7 +360,6 @@ icecat-i18n-el_package() {
 icecat-i18n-en-CA_package() {
 	short_desc+=" - English (Canada) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -388,7 +368,6 @@ icecat-i18n-en-CA_package() {
 icecat-i18n-en-GB_package() {
 	short_desc+=" - English (British) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -397,7 +376,6 @@ icecat-i18n-en-GB_package() {
 icecat-i18n-en-US_package() {
 	short_desc+=" - English (US) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -406,7 +384,6 @@ icecat-i18n-en-US_package() {
 icecat-i18n-eo_package() {
 	short_desc+=" - Esperanto language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -415,7 +392,6 @@ icecat-i18n-eo_package() {
 icecat-i18n-es-AR_package() {
 	short_desc+=" - Spanish (Argentina) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -424,7 +400,6 @@ icecat-i18n-es-AR_package() {
 icecat-i18n-es-CL_package() {
 	short_desc+=" - Spanish (Chile) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -433,7 +408,6 @@ icecat-i18n-es-CL_package() {
 icecat-i18n-es-ES_package() {
 	short_desc+=" - Spanish (Spain) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -442,7 +416,6 @@ icecat-i18n-es-ES_package() {
 icecat-i18n-es-MX_package() {
 	short_desc+=" - Spanish (Mexico) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -451,7 +424,6 @@ icecat-i18n-es-MX_package() {
 icecat-i18n-et_package() {
 	short_desc+=" - Estonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -460,7 +432,6 @@ icecat-i18n-et_package() {
 icecat-i18n-eu_package() {
 	short_desc+=" - Basque language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -469,7 +440,6 @@ icecat-i18n-eu_package() {
 icecat-i18n-fa_package() {
 	short_desc+=" - Persian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -478,7 +448,6 @@ icecat-i18n-fa_package() {
 icecat-i18n-ff_package() {
 	short_desc+=" - Fulah language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -487,7 +456,6 @@ icecat-i18n-ff_package() {
 icecat-i18n-fi_package() {
 	short_desc+=" - Finnish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -496,7 +464,6 @@ icecat-i18n-fi_package() {
 icecat-i18n-fr_package() {
 	short_desc+=" - French language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -505,7 +472,6 @@ icecat-i18n-fr_package() {
 icecat-i18n-fy-NL_package() {
 	short_desc+=" - Frisian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -514,7 +480,6 @@ icecat-i18n-fy-NL_package() {
 icecat-i18n-ga-IE_package() {
 	short_desc+=" - Irish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -523,7 +488,6 @@ icecat-i18n-ga-IE_package() {
 icecat-i18n-gd_package() {
 	short_desc+=" - Gaelic (Scotland) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -532,7 +496,6 @@ icecat-i18n-gd_package() {
 icecat-i18n-gl_package() {
 	short_desc+=" - Galician language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -541,7 +504,6 @@ icecat-i18n-gl_package() {
 icecat-i18n-gn_package() {
 	short_desc+=" - Guarani language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -550,7 +512,6 @@ icecat-i18n-gn_package() {
 icecat-i18n-gu-IN_package() {
 	short_desc+=" - Gujarati (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -559,7 +520,6 @@ icecat-i18n-gu-IN_package() {
 icecat-i18n-he_package() {
 	short_desc+=" - Hebrew language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -568,7 +528,6 @@ icecat-i18n-he_package() {
 icecat-i18n-hi-IN_package() {
 	short_desc+=" - Hindi (India) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -577,7 +536,6 @@ icecat-i18n-hi-IN_package() {
 icecat-i18n-hr_package() {
 	short_desc+=" - Croatian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -586,7 +544,6 @@ icecat-i18n-hr_package() {
 icecat-i18n-hsb_package() {
 	short_desc+=" - Upper Sorbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -595,7 +552,6 @@ icecat-i18n-hsb_package() {
 icecat-i18n-hu_package() {
 	short_desc+=" - Hungarian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -604,7 +560,6 @@ icecat-i18n-hu_package() {
 icecat-i18n-hy-AM_package() {
 	short_desc+=" - Armenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -613,7 +568,6 @@ icecat-i18n-hy-AM_package() {
 icecat-i18n-ia_package() {
 	short_desc+=" - Interlingua language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -622,7 +576,6 @@ icecat-i18n-ia_package() {
 icecat-i18n-id_package() {
 	short_desc+=" - Indonesian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -631,7 +584,6 @@ icecat-i18n-id_package() {
 icecat-i18n-is_package() {
 	short_desc+=" - Icelandic language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -640,7 +592,6 @@ icecat-i18n-is_package() {
 icecat-i18n-it_package() {
 	short_desc+=" - Italian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -649,7 +600,6 @@ icecat-i18n-it_package() {
 icecat-i18n-ja_package() {
 	short_desc+=" - Japanese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -658,7 +608,6 @@ icecat-i18n-ja_package() {
 icecat-i18n-ka_package() {
 	short_desc+=" - Georgian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -667,7 +616,6 @@ icecat-i18n-ka_package() {
 icecat-i18n-kab_package() {
 	short_desc+=" - Kabyle language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -676,7 +624,6 @@ icecat-i18n-kab_package() {
 icecat-i18n-kk_package() {
 	short_desc+=" - Kazakh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -685,7 +632,6 @@ icecat-i18n-kk_package() {
 icecat-i18n-km_package() {
 	short_desc+=" - Khmer language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -694,7 +640,6 @@ icecat-i18n-km_package() {
 icecat-i18n-kn_package() {
 	short_desc+=" - Kannada language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -703,7 +648,6 @@ icecat-i18n-kn_package() {
 icecat-i18n-ko_package() {
 	short_desc+=" - Korean language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -712,7 +656,6 @@ icecat-i18n-ko_package() {
 icecat-i18n-lij_package() {
 	short_desc+=" - Ligurian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -721,7 +664,6 @@ icecat-i18n-lij_package() {
 icecat-i18n-lt_package() {
 	short_desc+=" - Lithuanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -730,7 +672,6 @@ icecat-i18n-lt_package() {
 icecat-i18n-lv_package() {
 	short_desc+=" - Latvian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -739,7 +680,6 @@ icecat-i18n-lv_package() {
 icecat-i18n-mk_package() {
 	short_desc+=" - Macedonian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -748,7 +688,6 @@ icecat-i18n-mk_package() {
 icecat-i18n-mr_package() {
 	short_desc+=" - Marathi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -757,7 +696,6 @@ icecat-i18n-mr_package() {
 icecat-i18n-ms_package() {
 	short_desc+=" - Malay language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -766,7 +704,6 @@ icecat-i18n-ms_package() {
 icecat-i18n-my_package() {
 	short_desc+=" - Burmese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -775,7 +712,6 @@ icecat-i18n-my_package() {
 icecat-i18n-nb-NO_package() {
 	short_desc+=" - Norwegian (Bokmål) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -784,7 +720,6 @@ icecat-i18n-nb-NO_package() {
 icecat-i18n-ne-NP_package() {
 	short_desc+=" - Nepali language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -793,7 +728,6 @@ icecat-i18n-ne-NP_package() {
 icecat-i18n-nl_package() {
 	short_desc+=" - Dutch language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -802,7 +736,6 @@ icecat-i18n-nl_package() {
 icecat-i18n-nn-NO_package() {
 	short_desc+=" - Norwegian (Nynorsk) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -811,7 +744,6 @@ icecat-i18n-nn-NO_package() {
 icecat-i18n-oc_package() {
 	short_desc+=" - Occitan language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -820,7 +752,6 @@ icecat-i18n-oc_package() {
 icecat-i18n-pa-IN_package() {
 	short_desc+=" - Punjabi language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -829,7 +760,6 @@ icecat-i18n-pa-IN_package() {
 icecat-i18n-pl_package() {
 	short_desc+=" - Polish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -838,7 +768,6 @@ icecat-i18n-pl_package() {
 icecat-i18n-pt-BR_package() {
 	short_desc+=" - Portuguese (Brazilian) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -847,7 +776,6 @@ icecat-i18n-pt-BR_package() {
 icecat-i18n-pt-PT_package() {
 	short_desc+=" - Portuguese (Portugal) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -856,7 +784,6 @@ icecat-i18n-pt-PT_package() {
 icecat-i18n-rm_package() {
 	short_desc+=" - Romansh language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -865,7 +792,6 @@ icecat-i18n-rm_package() {
 icecat-i18n-ro_package() {
 	short_desc+=" - Romanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -874,7 +800,6 @@ icecat-i18n-ro_package() {
 icecat-i18n-ru_package() {
 	short_desc+=" - Russian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -883,7 +808,6 @@ icecat-i18n-ru_package() {
 icecat-i18n-si_package() {
 	short_desc+=" - Sinhala language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -892,7 +816,6 @@ icecat-i18n-si_package() {
 icecat-i18n-sk_package() {
 	short_desc+=" - Slovak language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -901,7 +824,6 @@ icecat-i18n-sk_package() {
 icecat-i18n-sl_package() {
 	short_desc+=" - Slovenian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -910,7 +832,6 @@ icecat-i18n-sl_package() {
 icecat-i18n-son_package() {
 	short_desc+=" - Songhai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -919,7 +840,6 @@ icecat-i18n-son_package() {
 icecat-i18n-sq_package() {
 	short_desc+=" - Albanian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -928,7 +848,6 @@ icecat-i18n-sq_package() {
 icecat-i18n-sr_package() {
 	short_desc+=" - Serbian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -937,7 +856,6 @@ icecat-i18n-sr_package() {
 icecat-i18n-sv-SE_package() {
 	short_desc+=" - Swedish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -946,7 +864,6 @@ icecat-i18n-sv-SE_package() {
 icecat-i18n-ta_package() {
 	short_desc+=" - Tamil language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -955,7 +872,6 @@ icecat-i18n-ta_package() {
 icecat-i18n-te_package() {
 	short_desc+=" - Telugu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -964,7 +880,6 @@ icecat-i18n-te_package() {
 icecat-i18n-th_package() {
 	short_desc+=" - Thai language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -973,7 +888,6 @@ icecat-i18n-th_package() {
 icecat-i18n-tr_package() {
 	short_desc+=" - Turkish language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -982,7 +896,6 @@ icecat-i18n-tr_package() {
 icecat-i18n-uk_package() {
 	short_desc+=" - Ukrainian language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -991,7 +904,6 @@ icecat-i18n-uk_package() {
 icecat-i18n-ur_package() {
 	short_desc+=" - Urdu language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1000,7 +912,6 @@ icecat-i18n-ur_package() {
 icecat-i18n-uz_package() {
 	short_desc+=" - Uzbek language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1009,7 +920,6 @@ icecat-i18n-uz_package() {
 icecat-i18n-vi_package() {
 	short_desc+=" - Vietnamese language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1018,7 +928,6 @@ icecat-i18n-vi_package() {
 icecat-i18n-xh_package() {
 	short_desc+=" - Xhosa language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1027,7 +936,6 @@ icecat-i18n-xh_package() {
 icecat-i18n-zh-CN_package() {
 	short_desc+=" - Chinese (simplified) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
@@ -1036,7 +944,6 @@ icecat-i18n-zh-CN_package() {
 icecat-i18n-zh-TW_package() {
 	short_desc+=" - Chinese (traditional) language files"
 	depends="${sourcepkg}-${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		_install_langpack ${pkgname#icecat-i18n-}
 	}
diff --git a/srcpkgs/icedtea-sound/template b/srcpkgs/icedtea-sound/template
index 4ad965c6806..ef2c242eedf 100644
--- a/srcpkgs/icedtea-sound/template
+++ b/srcpkgs/icedtea-sound/template
@@ -15,7 +15,6 @@ checksum=6ff852b82ae7db7a95981271037eb3a3d52c59581e3b27a638a7c6bc8eecb4a3
 
 icedtea-sound-doc_package() {
 	short_desc+=" - docs"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/icon-naming-utils/template b/srcpkgs/icon-naming-utils/template
index f069d604e37..e530a4c40c3 100644
--- a/srcpkgs/icon-naming-utils/template
+++ b/srcpkgs/icon-naming-utils/template
@@ -2,7 +2,6 @@
 pkgname=icon-naming-utils
 version=0.8.90
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Simple"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/imgp/template b/srcpkgs/imgp/template
index 872b3db406c..f7df8788ae5 100644
--- a/srcpkgs/imgp/template
+++ b/srcpkgs/imgp/template
@@ -2,7 +2,6 @@
 pkgname=imgp
 version=2.7
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-Pillow"
 short_desc="Multi-core batch image resizer and rotator"
diff --git a/srcpkgs/indic-otf/template b/srcpkgs/indic-otf/template
index 4f37e66f3ce..a4717a0a1ca 100644
--- a/srcpkgs/indic-otf/template
+++ b/srcpkgs/indic-otf/template
@@ -2,7 +2,6 @@
 pkgname=indic-otf
 version=0.2
 revision=3
-archs=noarch
 wrksrc=indic
 build_wrksrc=OpenType
 makedepends="font-util xbps-triggers"
diff --git a/srcpkgs/indicator-doom-cpu/template b/srcpkgs/indicator-doom-cpu/template
index 33158f90a16..7ebac683ada 100644
--- a/srcpkgs/indicator-doom-cpu/template
+++ b/srcpkgs/indicator-doom-cpu/template
@@ -2,7 +2,6 @@
 pkgname=indicator-doom-cpu
 version=1.0.1
 revision=1
-archs=noarch
 depends="python-gobject"
 short_desc="CPU load indicator showing the dying face from the video game DOOM"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/iniparser/template b/srcpkgs/iniparser/template
index 63eb336c7ea..5cef8a0a774 100644
--- a/srcpkgs/iniparser/template
+++ b/srcpkgs/iniparser/template
@@ -58,14 +58,12 @@ iniparser-devel_package() {
 }
 iniparser-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/iniparser
 	}
 }
 iniparser-example_package() {
 	short_desc+=" - example code"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/iniparser/example
 	}
diff --git a/srcpkgs/intltool/template b/srcpkgs/intltool/template
index 852e1e00ca2..00f0595c822 100644
--- a/srcpkgs/intltool/template
+++ b/srcpkgs/intltool/template
@@ -2,7 +2,6 @@
 pkgname=intltool
 version=0.51.0
 revision=5
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl-XML-Parser"
 makedepends="perl-XML-Parser gettext"
diff --git a/srcpkgs/inxi/template b/srcpkgs/inxi/template
index 4126ef12968..df16132b791 100644
--- a/srcpkgs/inxi/template
+++ b/srcpkgs/inxi/template
@@ -2,7 +2,6 @@
 pkgname=inxi
 version=3.1.04
 revision=1
-archs=noarch
 wrksrc="inxi-${version}-1"
 depends="dmidecode file glxinfo pciutils perl usbutils xdpyinfo xprop xrandr
  procps-ng"
diff --git a/srcpkgs/io.elementary.stylesheet/template b/srcpkgs/io.elementary.stylesheet/template
index 6b40406712d..bf13584ffc7 100644
--- a/srcpkgs/io.elementary.stylesheet/template
+++ b/srcpkgs/io.elementary.stylesheet/template
@@ -2,7 +2,6 @@
 pkgname=io.elementary.stylesheet
 version=5.4.2
 revision=1
-archs=noarch
 wrksrc="stylesheet-${version}"
 build_style=meson
 short_desc="GTK Stylesheet for elementary OS"
diff --git a/srcpkgs/ioprof/template b/srcpkgs/ioprof/template
index 32b327b4677..26c0306eeb1 100644
--- a/srcpkgs/ioprof/template
+++ b/srcpkgs/ioprof/template
@@ -2,7 +2,6 @@
 pkgname=ioprof
 version=2.0.4
 revision=2
-archs=noarch
 build_style=fetch
 depends="perl blktrace"
 short_desc="Linux I/O profiler"
diff --git a/srcpkgs/iotop/template b/srcpkgs/iotop/template
index 522bf32a7c2..1cde442db97 100644
--- a/srcpkgs/iotop/template
+++ b/srcpkgs/iotop/template
@@ -2,7 +2,6 @@
 pkgname=iotop
 version=0.6
 revision=6
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/ipafont-fonts-otf/template b/srcpkgs/ipafont-fonts-otf/template
index cd7a474d169..37223a3949d 100644
--- a/srcpkgs/ipafont-fonts-otf/template
+++ b/srcpkgs/ipafont-fonts-otf/template
@@ -3,7 +3,6 @@ pkgname=ipafont-fonts-otf
 version=003.03
 revision=3
 _pkgver=${version/./}
-archs=noarch
 wrksrc="IPAfont${_pkgver}"
 hostmakedepends="unzip"
 depends="font-util xbps-triggers"
diff --git a/srcpkgs/ipcalc/template b/srcpkgs/ipcalc/template
index 6a35f924f0d..b9d7374e56a 100644
--- a/srcpkgs/ipcalc/template
+++ b/srcpkgs/ipcalc/template
@@ -2,7 +2,6 @@
 pkgname=ipcalc
 version=0.41
 revision=2
-archs=noarch
 depends="perl"
 short_desc="Calculator for IPv4 addresses"
 maintainer="allan <mail@may.mooo.com>"
diff --git a/srcpkgs/ipw2100-firmware/template b/srcpkgs/ipw2100-firmware/template
index 91d72d07724..ea086f6f90f 100644
--- a/srcpkgs/ipw2100-firmware/template
+++ b/srcpkgs/ipw2100-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2100-firmware
 _distname=ipw2100-fw
 version=1.3
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 create_wrksrc=yes
 short_desc="Firmware for the Intel PRO/Wireless 2100 wifi cards"
diff --git a/srcpkgs/ipw2200-firmware/template b/srcpkgs/ipw2200-firmware/template
index f6accfe3dbb..418eb943478 100644
--- a/srcpkgs/ipw2200-firmware/template
+++ b/srcpkgs/ipw2200-firmware/template
@@ -3,7 +3,6 @@ pkgname=ipw2200-firmware
 _distname=ipw2200-fw
 version=3.1
 revision=5
-archs=noarch
 wrksrc="${_distname}-${version}"
 short_desc="Firmware for the Intel PRO/Wireless 2200BG wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/iscan-data/template b/srcpkgs/iscan-data/template
index 2953cb34344..bd5452da2e5 100644
--- a/srcpkgs/iscan-data/template
+++ b/srcpkgs/iscan-data/template
@@ -3,7 +3,6 @@ pkgname=iscan-data
 version=1.39.0
 revision=2
 _srcrev=1
-archs=noarch
 build_style=gnu-configure
 maintainer="Orphaned <orphan@voidlinux.org>"
 hostmakedepends="libxslt"
diff --git a/srcpkgs/iso-codes/template b/srcpkgs/iso-codes/template
index fc7a09d4007..af6c55a68ff 100644
--- a/srcpkgs/iso-codes/template
+++ b/srcpkgs/iso-codes/template
@@ -2,7 +2,6 @@
 pkgname=iso-codes
 version=4.5.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="gettext python3"
 short_desc="List of country, language and currency names"
diff --git a/srcpkgs/itstool/template b/srcpkgs/itstool/template
index a3f124f23d7..9ac9bb0a603 100644
--- a/srcpkgs/itstool/template
+++ b/srcpkgs/itstool/template
@@ -2,7 +2,6 @@
 pkgname=itstool
 version=2.0.6
 revision=3
-archs=noarch
 build_style=gnu-configure
 configure_args="PYTHON=/usr/bin/python3"
 hostmakedepends="python3 libxml2-python3"
diff --git a/srcpkgs/jadx/template b/srcpkgs/jadx/template
index cde9ed2a8d4..fd52cd29d15 100644
--- a/srcpkgs/jadx/template
+++ b/srcpkgs/jadx/template
@@ -2,7 +2,6 @@
 pkgname=jadx
 version=1.1.0
 revision=1
-archs=noarch
 hostmakedepends="openjdk8 gradle"
 short_desc="Decompiler for Dalvik bytecode"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/java-commons-io/template b/srcpkgs/java-commons-io/template
index ffabff135f4..7a7601e085e 100644
--- a/srcpkgs/java-commons-io/template
+++ b/srcpkgs/java-commons-io/template
@@ -3,7 +3,6 @@ _origname=commons-io
 pkgname=java-commons-io
 version=2.6
 revision=1
-archs=noarch
 wrksrc="${_origname}-${version}-src"
 hostmakedepends="openjdk8 apache-maven which"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/javahelp2/template b/srcpkgs/javahelp2/template
index d3f7c69614d..afc69de8a88 100644
--- a/srcpkgs/javahelp2/template
+++ b/srcpkgs/javahelp2/template
@@ -4,7 +4,6 @@ version=2.0.05.20170719
 revision=1
 _gitver=3ca862d8626096770598a3a256886d205246f4a4
 wrksrc=javahelp-${_gitver}
-archs=noarch
 short_desc="Java based help system"
 hostmakedepends="openjdk8 apache-ant unzip which"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
diff --git a/srcpkgs/jrnl/template b/srcpkgs/jrnl/template
index b184ef09508..eb91cd9e2d9 100644
--- a/srcpkgs/jrnl/template
+++ b/srcpkgs/jrnl/template
@@ -2,7 +2,6 @@
 pkgname=jrnl
 version=1.9.8
 revision=4
-archs=noarch
 build_style=python3-module
 pycompile_module="jrnl"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/kadu/template b/srcpkgs/kadu/template
index da8c8c086ff..1e4dc39ce37 100644
--- a/srcpkgs/kadu/template
+++ b/srcpkgs/kadu/template
@@ -55,7 +55,6 @@ pre_configure() {
 
 kadu-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/icons
 		vmove "usr/share/kadu/configuration/*.ui"
diff --git a/srcpkgs/kaitai-struct-compiler/template b/srcpkgs/kaitai-struct-compiler/template
index 011a403ca88..2901be0f58c 100644
--- a/srcpkgs/kaitai-struct-compiler/template
+++ b/srcpkgs/kaitai-struct-compiler/template
@@ -2,7 +2,6 @@
 pkgname=kaitai-struct-compiler
 version=0.8
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 depends="virtual?java-environment"
 short_desc="Compiler for the Kaitai declarative binary format parsing language"
diff --git a/srcpkgs/kapidox/template b/srcpkgs/kapidox/template
index 90b1e006254..6c74bf04220 100644
--- a/srcpkgs/kapidox/template
+++ b/srcpkgs/kapidox/template
@@ -2,7 +2,6 @@
 pkgname=kapidox
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 pycompile_module="kapidox"
 hostmakedepends="kcoreaddons extra-cmake-modules python"
diff --git a/srcpkgs/kbd/template b/srcpkgs/kbd/template
index 2680406aae9..72bc3eab653 100644
--- a/srcpkgs/kbd/template
+++ b/srcpkgs/kbd/template
@@ -53,7 +53,6 @@ post_install() {
 kbd-data_package() {
 	short_desc+=" - keymaps, console fonts and unicode maps"
 	replaces="kbd<2.0.1_1"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kbd/consolefonts
 		vmove usr/share/kbd/consoletrans
diff --git a/srcpkgs/key-mon/template b/srcpkgs/key-mon/template
index b483fd36c03..e42745bcbfb 100644
--- a/srcpkgs/key-mon/template
+++ b/srcpkgs/key-mon/template
@@ -2,7 +2,6 @@
 pkgname=key-mon
 version=1.17
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="keymon"
 hostmakedepends="python"
diff --git a/srcpkgs/keychain/template b/srcpkgs/keychain/template
index 617d205a587..20eaaf9f319 100644
--- a/srcpkgs/keychain/template
+++ b/srcpkgs/keychain/template
@@ -2,7 +2,6 @@
 pkgname=keychain
 version=2.8.5
 revision=1
-archs=noarch
 short_desc="Keychain manager for ssh-agent and gpg-agent"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="http://www.funtoo.org/wiki/Keychain"
diff --git a/srcpkgs/khal/template b/srcpkgs/khal/template
index c5d3a165d1b..55bbcb77001 100644
--- a/srcpkgs/khal/template
+++ b/srcpkgs/khal/template
@@ -2,7 +2,6 @@
 pkgname=khal
 version=0.10.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-click python3-click-log python3-configobj
diff --git a/srcpkgs/khard/template b/srcpkgs/khard/template
index 70f246cfb40..b99a87ae42a 100644
--- a/srcpkgs/khard/template
+++ b/srcpkgs/khard/template
@@ -2,7 +2,6 @@
 pkgname=khard
 version=0.17.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-atomicwrites python3-configobj
diff --git a/srcpkgs/khmer-fonts-ttf/template b/srcpkgs/khmer-fonts-ttf/template
index e1791f740fe..749da440514 100644
--- a/srcpkgs/khmer-fonts-ttf/template
+++ b/srcpkgs/khmer-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=khmer-fonts-ttf
 version=5.0
 revision=1
-archs=noarch
 wrksrc="All_KhmerOS_${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/kicad-footprints/template b/srcpkgs/kicad-footprints/template
index 5beb079dea1..c3ba4a8375c 100644
--- a/srcpkgs/kicad-footprints/template
+++ b/srcpkgs/kicad-footprints/template
@@ -2,7 +2,6 @@
 pkgname=kicad-footprints
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad footprint libraries"
diff --git a/srcpkgs/kicad-i18n/template b/srcpkgs/kicad-i18n/template
index 8e9da8555cd..19b43b59a43 100644
--- a/srcpkgs/kicad-i18n/template
+++ b/srcpkgs/kicad-i18n/template
@@ -3,7 +3,6 @@ pkgname=kicad-i18n
 version=5.1.6
 revision=1
 _commit=5ad171ce5c8d90f4740517c2adecb310d8be51bd
-archs=noarch
 wrksrc="${pkgname}-${version}-${_commit}"
 build_style=cmake
 hostmakedepends="gettext"
diff --git a/srcpkgs/kicad-packages3D/template b/srcpkgs/kicad-packages3D/template
index cf606628cd2..d7e3636491c 100644
--- a/srcpkgs/kicad-packages3D/template
+++ b/srcpkgs/kicad-packages3D/template
@@ -2,7 +2,6 @@
 pkgname=kicad-packages3D
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad 3D model libraries"
diff --git a/srcpkgs/kicad-symbols/template b/srcpkgs/kicad-symbols/template
index 61e9021634b..b37b74386a4 100644
--- a/srcpkgs/kicad-symbols/template
+++ b/srcpkgs/kicad-symbols/template
@@ -2,7 +2,6 @@
 pkgname=kicad-symbols
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad symbol libraries"
diff --git a/srcpkgs/kicad-templates/template b/srcpkgs/kicad-templates/template
index 68412310182..5d4adb6a74f 100644
--- a/srcpkgs/kicad-templates/template
+++ b/srcpkgs/kicad-templates/template
@@ -2,7 +2,6 @@
 pkgname=kicad-templates
 version=5.1.6
 revision=1
-archs=noarch
 build_style=cmake
 depends="kicad"
 short_desc="Kicad templates"
diff --git a/srcpkgs/kickassembler/template b/srcpkgs/kickassembler/template
index 938ec12394b..5b4bafa5fc9 100644
--- a/srcpkgs/kickassembler/template
+++ b/srcpkgs/kickassembler/template
@@ -2,7 +2,6 @@
 pkgname=kickassembler
 version=4.19
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="virtual?java-environment"
 hostmakedepends="unzip"
diff --git a/srcpkgs/kitty/template b/srcpkgs/kitty/template
index 8c672f481b4..51608cf3e53 100644
--- a/srcpkgs/kitty/template
+++ b/srcpkgs/kitty/template
@@ -41,7 +41,6 @@ do_install() {
 
 kitty-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/kobodeluxe/template b/srcpkgs/kobodeluxe/template
index 60539b09390..5a1ee26d3e4 100644
--- a/srcpkgs/kobodeluxe/template
+++ b/srcpkgs/kobodeluxe/template
@@ -29,7 +29,6 @@ post_install() {
 
 kobodeluxe-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/kobo-deluxe
 	}
diff --git a/srcpkgs/kodi-binary-addons/template b/srcpkgs/kodi-binary-addons/template
index 50784a8adcb..f1eefbe8e23 100644
--- a/srcpkgs/kodi-binary-addons/template
+++ b/srcpkgs/kodi-binary-addons/template
@@ -2,7 +2,6 @@
 pkgname=kodi-binary-addons
 version=18.6
 revision=1
-archs=noarch
 build_style=meta
 depends="kodi-addon-pvr-zattoo kodi-addon-game-libretro
  kodi-addon-peripheral-joystick kodi-addon-inputstream-rtmp
diff --git a/srcpkgs/kpcli/template b/srcpkgs/kpcli/template
index 3201920ce88..073b3925444 100644
--- a/srcpkgs/kpcli/template
+++ b/srcpkgs/kpcli/template
@@ -2,7 +2,6 @@
 pkgname=kpcli
 version=3.3
 revision=1
-archs=noarch
 build_style=fetch
 depends="perl perl-Crypt-Rijndael perl-Sort-Naturally perl-Term-ReadKey perl-Term-ShellUI perl-File-KeePass perl-Clone perl-Term-ReadLine-Gnu perl-XML-Parser"
 short_desc="KeePass Command Line Interface"
diff --git a/srcpkgs/kshdb/template b/srcpkgs/kshdb/template
index ee22e70d994..6653ee3de18 100644
--- a/srcpkgs/kshdb/template
+++ b/srcpkgs/kshdb/template
@@ -2,7 +2,6 @@
 pkgname=kshdb
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="automake ksh"
 depends="ksh python3"
diff --git a/srcpkgs/kupfer/template b/srcpkgs/kupfer/template
index 03e80e9fdc9..d351345376d 100644
--- a/srcpkgs/kupfer/template
+++ b/srcpkgs/kupfer/template
@@ -2,7 +2,6 @@
 pkgname=kupfer
 version=319
 revision=2
-archs=noarch
 build_style=waf3
 wrksrc="${pkgname}-v${version}"
 python_version=3
diff --git a/srcpkgs/laditools/template b/srcpkgs/laditools/template
index 88e45ee722c..50199e8646d 100644
--- a/srcpkgs/laditools/template
+++ b/srcpkgs/laditools/template
@@ -2,7 +2,6 @@
 pkgname=laditools
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="laditools"
 hostmakedepends="python-distutils-extra intltool librsvg-utils"
diff --git a/srcpkgs/ladspa-sdk/template b/srcpkgs/ladspa-sdk/template
index 792663a5c1f..9db8572efa5 100644
--- a/srcpkgs/ladspa-sdk/template
+++ b/srcpkgs/ladspa-sdk/template
@@ -2,7 +2,6 @@
 pkgname=ladspa-sdk
 version=1.15
 revision=2
-archs=noarch
 wrksrc="ladspa_sdk_${version}"
 makedepends="libsndfile-progs"
 short_desc="Linux Audio Developer's Simple Plugin API (LADSPA)"
@@ -24,7 +23,6 @@ do_install() {
 ladspa-sdk-doc_package() {
 	depends="ladspa-sdk"
 	short_desc+="- Documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc
 		cd ${wrksrc}/doc
diff --git a/srcpkgs/laptop-mode/template b/srcpkgs/laptop-mode/template
index 5f788f01135..09b790e9351 100644
--- a/srcpkgs/laptop-mode/template
+++ b/srcpkgs/laptop-mode/template
@@ -2,7 +2,6 @@
 pkgname=laptop-mode
 version=1.73.1
 revision=1
-archs=noarch
 wrksrc="${pkgname}-tools_${version}"
 short_desc="Laptop power saving package for Linux systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leiningen/template b/srcpkgs/leiningen/template
index d6ed85040cc..a9451ac81e7 100644
--- a/srcpkgs/leiningen/template
+++ b/srcpkgs/leiningen/template
@@ -2,7 +2,6 @@
 pkgname=leiningen
 version=2.9.3
 revision=1
-archs=noarch
 depends="bash virtual?java-runtime"
 short_desc="Automate Clojure projects without setting your hair on fire"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/leocad/template b/srcpkgs/leocad/template
index 8cc39f9f535..6bcbaf9818d 100644
--- a/srcpkgs/leocad/template
+++ b/srcpkgs/leocad/template
@@ -19,7 +19,6 @@ checksum="b74557e00366f1d3ddc211f9e55c28dba39987d66e5e3106490ab5fb75d25bc0
 leocad-data_package() {
 	short_desc+=" - data files"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vinstall ../library.bin 644 usr/share/leocad/
 	}
diff --git a/srcpkgs/lesspipe/template b/srcpkgs/lesspipe/template
index 40ee9a36cf1..d922e937f7a 100644
--- a/srcpkgs/lesspipe/template
+++ b/srcpkgs/lesspipe/template
@@ -2,7 +2,6 @@
 pkgname=lesspipe
 version=1.84
 revision=1
-archs=noarch
 depends="less"
 short_desc="Input filter for the pager less"
 maintainer="Olga Ustuzhanina <me@laserbat.pw>"
diff --git a/srcpkgs/lfe/template b/srcpkgs/lfe/template
index 9dcca402dc5..9ca2fd95a2f 100644
--- a/srcpkgs/lfe/template
+++ b/srcpkgs/lfe/template
@@ -2,7 +2,6 @@
 pkgname=lfe
 version=1.3
 revision=1
-archs=noarch
 hostmakedepends="erlang"
 depends="erlang"
 short_desc="Lisp flavoured erlang"
diff --git a/srcpkgs/lfm/template b/srcpkgs/lfm/template
index 1e0e7cf29fa..2d6750b9451 100644
--- a/srcpkgs/lfm/template
+++ b/srcpkgs/lfm/template
@@ -2,7 +2,6 @@
 pkgname=lfm
 version=3.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/lftpfs/template b/srcpkgs/lftpfs/template
index f8b75902812..4a3b263c2ba 100644
--- a/srcpkgs/lftpfs/template
+++ b/srcpkgs/lftpfs/template
@@ -2,7 +2,6 @@
 pkgname=lftpfs
 version=0.4.3
 revision=2
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl-Fuse perl-IPC-Run lftp"
diff --git a/srcpkgs/libbytesize/template b/srcpkgs/libbytesize/template
index fb01bd7fb78..db314976891 100644
--- a/srcpkgs/libbytesize/template
+++ b/srcpkgs/libbytesize/template
@@ -32,7 +32,6 @@ libbytesize-devel_package() {
 }
 
 libbytesize-python3_package() {
-	archs=noarch
 	depends="python3-six ${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Python3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/libcap-ng/template b/srcpkgs/libcap-ng/template
index d2bbea8cb94..4ec9317edd5 100644
--- a/srcpkgs/libcap-ng/template
+++ b/srcpkgs/libcap-ng/template
@@ -49,7 +49,6 @@ libcap-ng-python3_package() {
 }
 libcap-ng-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="libcap-ng-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/libchewing/template b/srcpkgs/libchewing/template
index 6518254b11e..7901a9e0f1a 100644
--- a/srcpkgs/libchewing/template
+++ b/srcpkgs/libchewing/template
@@ -27,7 +27,6 @@ libchewing-devel_package() {
 }
 
 libchewing-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/libchewing
diff --git a/srcpkgs/libclc-git/template b/srcpkgs/libclc-git/template
index 748ffe98fc8..e2263c4b0b4 100644
--- a/srcpkgs/libclc-git/template
+++ b/srcpkgs/libclc-git/template
@@ -15,7 +15,6 @@ license="BSD/MIT"
 homepage="http://libclc.llvm.org"
 provides="libclc-${version}_${revision}"
 replaces="libclc>=0"
-archs=noarch
 distfiles="https://github.com/llvm-mirror/libclc/archive/${_git_hash}.tar.gz>${pkgname}-${version}.tar.gz"
 checksum=d9cf73a5d1ab05995086e7a3a0fd6c06172ee59cdd2512c395caae99b9fce453
 
diff --git a/srcpkgs/libcppunit/template b/srcpkgs/libcppunit/template
index 238c6f57017..ca5760cc1ea 100644
--- a/srcpkgs/libcppunit/template
+++ b/srcpkgs/libcppunit/template
@@ -32,7 +32,6 @@ libcppunit-devel_package() {
 }
 
 libcppunit-examples_package() {
-	archs=noarch
 	replaces="cppunit-doc>=0"
 	depends="libcppunit-devel>=${version}_${revision}"
 	short_desc+=" - examples"
diff --git a/srcpkgs/libdwarf/template b/srcpkgs/libdwarf/template
index 5d5539c3ae3..dac373623f8 100644
--- a/srcpkgs/libdwarf/template
+++ b/srcpkgs/libdwarf/template
@@ -33,7 +33,6 @@ libdwarf-devel_package() {
 }
 
 libdwarf-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		for i in README NEWS libdwarf/*.pdf ; do
diff --git a/srcpkgs/libe-book/template b/srcpkgs/libe-book/template
index 89bf62399e3..b112e492171 100644
--- a/srcpkgs/libe-book/template
+++ b/srcpkgs/libe-book/template
@@ -30,7 +30,6 @@ libe-book-devel_package() {
 libe-book-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/liberation-fonts-ttf/template b/srcpkgs/liberation-fonts-ttf/template
index 47663b2b29d..ae6ab901471 100644
--- a/srcpkgs/liberation-fonts-ttf/template
+++ b/srcpkgs/liberation-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=liberation-fonts-ttf
 version=2.1.1
 revision=1
-archs=noarch
 wrksrc=${pkgname%-*}-${version}
 build_style=gnu-makefile
 hostmakedepends="fontforge fonttools"
diff --git a/srcpkgs/libfreehand/template b/srcpkgs/libfreehand/template
index 08aae86bb0f..45c0bdcc5a5 100644
--- a/srcpkgs/libfreehand/template
+++ b/srcpkgs/libfreehand/template
@@ -31,7 +31,6 @@ libfreehand-devel_package() {
 libfreehand-doc_package() {
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libgphoto2/template b/srcpkgs/libgphoto2/template
index 60573643e50..c0ea9d8c4b0 100644
--- a/srcpkgs/libgphoto2/template
+++ b/srcpkgs/libgphoto2/template
@@ -52,7 +52,6 @@ post_install() {
 
 libgphoto2-udev-rules_package() {
 	short_desc+=" - udev rules"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/udev/hwdb.d
 		vmove usr/lib/udev/rules.d
diff --git a/srcpkgs/libinput-gestures/template b/srcpkgs/libinput-gestures/template
index 872e8ad8588..2ee1d82e3e4 100644
--- a/srcpkgs/libinput-gestures/template
+++ b/srcpkgs/libinput-gestures/template
@@ -2,7 +2,6 @@
 pkgname=libinput-gestures
 version=2.50
 revision=1
-archs=noarch
 depends="python3 libinput xdotool wmctrl hicolor-icon-theme"
 short_desc="Action gestures on your touchpad using libinput"
 maintainer="Chinmay Pai <chinmaydpai@gmail.com>"
diff --git a/srcpkgs/libmwaw/template b/srcpkgs/libmwaw/template
index c81f91175d3..7ea5ce0051d 100644
--- a/srcpkgs/libmwaw/template
+++ b/srcpkgs/libmwaw/template
@@ -24,7 +24,6 @@ libmwaw-devel_package() {
 }
 
 libmwaw-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/libosmgpsmap/template b/srcpkgs/libosmgpsmap/template
index 4ab56904f2d..0690f592c42 100644
--- a/srcpkgs/libosmgpsmap/template
+++ b/srcpkgs/libosmgpsmap/template
@@ -19,7 +19,6 @@ build_options="gir"
 build_options_default="gir"
 
 libosmgpsmap-doc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Documentation"
 	pkg_install() {
diff --git a/srcpkgs/libquvi-scripts/template b/srcpkgs/libquvi-scripts/template
index c2d247e52dd..551953eb763 100644
--- a/srcpkgs/libquvi-scripts/template
+++ b/srcpkgs/libquvi-scripts/template
@@ -2,7 +2,6 @@
 pkgname=libquvi-scripts
 version=0.4.21
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config lua53"
 makedepends="lua53"
diff --git a/srcpkgs/libreoffice/template b/srcpkgs/libreoffice/template
index 0eb5941e2ad..d46f4056f05 100644
--- a/srcpkgs/libreoffice/template
+++ b/srcpkgs/libreoffice/template
@@ -297,7 +297,6 @@ _add_lang() {
 	_languages="$_languages ${pkglang//_/-}"
 	eval "libreoffice-i18n-${1}_package() {
 		short_desc+=\"- ${2} language pack\"
-		archs=noarch
 		pkg_install() {
 			_split lang_${pkglang}
 		}
@@ -584,7 +583,6 @@ libreoffice-draw_package() {
 
 libreoffice-fonts_package() {
 	short_desc+=" - Fonts"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/lib/libreoffice/share
 		mv ${DESTDIR}/all/usr/lib/libreoffice/share/fonts \
diff --git a/srcpkgs/libsearpc/template b/srcpkgs/libsearpc/template
index 1aed9159ab9..052d243e477 100644
--- a/srcpkgs/libsearpc/template
+++ b/srcpkgs/libsearpc/template
@@ -39,7 +39,6 @@ libsearpc-codegen_package() {
 	short_desc+=" - code generator"
 	depends="python3"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vdoc AUTHORS
 		vdoc README.markdown
@@ -51,7 +50,6 @@ libsearpc-python3_package() {
 	short_desc+=" - Python3 bindings"
 	pycompile_module="pysearpc"
 	depends="python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
diff --git a/srcpkgs/libsoxr/template b/srcpkgs/libsoxr/template
index ae7c8c7e3f5..0ad80dfb5da 100644
--- a/srcpkgs/libsoxr/template
+++ b/srcpkgs/libsoxr/template
@@ -36,7 +36,6 @@ libsoxr-devel_package() {
 libsoxr-doc_package() {
 	short_desc+=" - documentation and examples"
 	depends="${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/libvpx5/template b/srcpkgs/libvpx5/template
index d6ce843134a..93d9a8866c6 100644
--- a/srcpkgs/libvpx5/template
+++ b/srcpkgs/libvpx5/template
@@ -58,7 +58,6 @@ libvpx5-devel_package() {
 }
 
 libvpx_package() {
-	archs=noarch
 	build_style=meta
 	depends="libvpx5-${version}_${revision}"
 	short_desc+=" (transitional package)"
diff --git a/srcpkgs/libwaylandpp/template b/srcpkgs/libwaylandpp/template
index 44f129f3f89..58a4c2568c9 100644
--- a/srcpkgs/libwaylandpp/template
+++ b/srcpkgs/libwaylandpp/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 libwaylandpp-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/lightdm-webkit2-greeter/template b/srcpkgs/lightdm-webkit2-greeter/template
index 1dd57b859cc..126238441e6 100644
--- a/srcpkgs/lightdm-webkit2-greeter/template
+++ b/srcpkgs/lightdm-webkit2-greeter/template
@@ -22,7 +22,6 @@ post_extract() {
 
 lightdm-webkit-greeter_package() {
 	short_desc+=" - (transitional dummy package)"
-	archs=noarch
 	depends="lightdm-webkit2-greeter>=${version}_${revision}"
 	pkg_install() {
 		vmkdir usr/bin
diff --git a/srcpkgs/lilypond-doc/template b/srcpkgs/lilypond-doc/template
index 1480cfe1d52..a8fe890cf45 100644
--- a/srcpkgs/lilypond-doc/template
+++ b/srcpkgs/lilypond-doc/template
@@ -2,7 +2,6 @@
 pkgname=lilypond-doc
 version=2.21.1.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Documentation for the lilypond music engraving program"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/linux-firmware-dvb/template b/srcpkgs/linux-firmware-dvb/template
index 3109780e132..cf7df793297 100644
--- a/srcpkgs/linux-firmware-dvb/template
+++ b/srcpkgs/linux-firmware-dvb/template
@@ -7,7 +7,6 @@ short_desc="Linux TV firmware package"
 maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
 license="GPL-2 Custom"
 homepage="https://linuxtv.org/"
-archs=noarch
 distfiles="
  https://github.com/OpenELEC/dvb-firmware/archive/${_gitrev}.tar.gz>${pkgname}-${version}.tar.gz
  https://linuxtv.org/downloads/firmware/dvb-firmwares.tar.bz2"
diff --git a/srcpkgs/linux-firmware/template b/srcpkgs/linux-firmware/template
index 9ee05164394..e6d48a6e08f 100644
--- a/srcpkgs/linux-firmware/template
+++ b/srcpkgs/linux-firmware/template
@@ -2,7 +2,6 @@
 pkgname=linux-firmware
 version=20200519
 revision=1
-archs=noarch
 depends="${pkgname}-amd-${version}_${revision} ${pkgname}-network-${version}_${revision}"
 short_desc="Binary firmware blobs for the Linux kernel"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -23,7 +22,6 @@ do_install() {
 
 linux-firmware-amd_package() {
 	short_desc+=" - AMD CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/amd*
 		vmove usr/lib/firmware/radeon
@@ -35,7 +33,6 @@ linux-firmware-amd_package() {
 
 linux-firmware-intel_package() {
 	short_desc+=" - Intel CPU/GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/i915
 		vmove usr/share/licenses/linux-firmware/LICENSE.i915
@@ -44,7 +41,6 @@ linux-firmware-intel_package() {
 
 linux-firmware-nvidia_package() {
 	short_desc+=" NVIDIA GPU microcode"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/nvidia
 		vmove usr/share/licenses/linux-firmware/LICENCE.nvidia*
@@ -53,7 +49,6 @@ linux-firmware-nvidia_package() {
 
 linux-firmware-network_package() {
 	short_desc+=" - network"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/firmware/3com
 		vmove usr/lib/firmware/RTL8192E
diff --git a/srcpkgs/lltag/template b/srcpkgs/lltag/template
index 58fadec2276..8a2e6ac8805 100644
--- a/srcpkgs/lltag/template
+++ b/srcpkgs/lltag/template
@@ -2,7 +2,6 @@
 pkgname=lltag
 version=0.14.6
 revision=2
-archs=noarch
 wrksrc="lltag-lltag-${version}"
 build_style=gnu-makefile
 hostmakedepends="perl"
diff --git a/srcpkgs/llvm10/template b/srcpkgs/llvm10/template
index 9298c68022d..e1ed800e206 100644
--- a/srcpkgs/llvm10/template
+++ b/srcpkgs/llvm10/template
@@ -189,7 +189,6 @@ do_install() {
 }
 
 clang-analyzer_package() {
-	archs=noarch
 	pycompile_dirs="usr/share/scan-view"
 	depends="clang-${version}_${revision} python3"
 	short_desc+=" - A source code analysis framework"
diff --git a/srcpkgs/llvm6.0/template b/srcpkgs/llvm6.0/template
index d620db6415a..b0e518c4028 100644
--- a/srcpkgs/llvm6.0/template
+++ b/srcpkgs/llvm6.0/template
@@ -2,7 +2,6 @@
 pkgname=llvm6.0
 version=6.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (6.0.x series) (removed package)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/llvm7/template b/srcpkgs/llvm7/template
index b06f887c3b7..011d7419a4e 100644
--- a/srcpkgs/llvm7/template
+++ b/srcpkgs/llvm7/template
@@ -2,7 +2,6 @@
 pkgname=llvm7
 version=7.0.1
 revision=9
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm8/template b/srcpkgs/llvm8/template
index 7af4f95fb4e..4eb8e0e4806 100644
--- a/srcpkgs/llvm8/template
+++ b/srcpkgs/llvm8/template
@@ -2,7 +2,6 @@
 pkgname=llvm8
 version=8.0.1
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/llvm9/template b/srcpkgs/llvm9/template
index 951a64e1a87..025c8845257 100644
--- a/srcpkgs/llvm9/template
+++ b/srcpkgs/llvm9/template
@@ -2,7 +2,6 @@
 pkgname=llvm9
 version=9.0.1
 revision=7
-archs=noarch
 build_style=meta
 short_desc="Low Level Virtual Machine (removed package)"
 maintainer="q66 <daniel@octaforge.org>"
diff --git a/srcpkgs/lollypop/template b/srcpkgs/lollypop/template
index ecc645fa92b..14ca3099be1 100644
--- a/srcpkgs/lollypop/template
+++ b/srcpkgs/lollypop/template
@@ -2,7 +2,6 @@
 pkgname=lollypop
 version=1.3.5
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="cmake git glib-devel gobject-introspection intltool itstool pkg-config"
 makedepends="gtk+3-devel libsoup-devel python3-gobject-devel python3-devel"
diff --git a/srcpkgs/lua54-MessagePack/template b/srcpkgs/lua54-MessagePack/template
index 6383677d8ca..d88a720a579 100644
--- a/srcpkgs/lua54-MessagePack/template
+++ b/srcpkgs/lua54-MessagePack/template
@@ -2,7 +2,6 @@
 pkgname=lua54-MessagePack
 version=0.5.2
 revision=2
-archs=noarch
 wrksrc="lua-MessagePack-${version}"
 depends="lua54"
 _desc="Pure Lua implementation of msgpack.org"
diff --git a/srcpkgs/lua54-stdlib-debug/template b/srcpkgs/lua54-stdlib-debug/template
index 1d862bc6726..73f13179fa7 100644
--- a/srcpkgs/lua54-stdlib-debug/template
+++ b/srcpkgs/lua54-stdlib-debug/template
@@ -3,7 +3,6 @@ pkgname=lua54-stdlib-debug
 version=1.0.1
 revision=3
 wrksrc=_debug-${version}
-archs=noarch
 depends="lua54"
 _desc="A debug hints management library for Lua"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/lua54-stdlib-normalize/template b/srcpkgs/lua54-stdlib-normalize/template
index 9a0d6071327..2fa1c7a75f6 100644
--- a/srcpkgs/lua54-stdlib-normalize/template
+++ b/srcpkgs/lua54-stdlib-normalize/template
@@ -2,7 +2,6 @@
 pkgname=lua54-stdlib-normalize
 version=2.0.3
 revision=3
-archs=noarch
 wrksrc=normalize-${version}
 depends="lua54 lua54-stdlib-debug"
 _desc="Collection of normalized Lua functions"
diff --git a/srcpkgs/lua54-vicious/template b/srcpkgs/lua54-vicious/template
index 9da7e6330c5..2a9b7f13f40 100644
--- a/srcpkgs/lua54-vicious/template
+++ b/srcpkgs/lua54-vicious/template
@@ -3,7 +3,6 @@ pkgname=lua54-vicious
 version=2.4.1
 revision=1
 wrksrc=vicious-${version}
-archs=noarch
 depends="lua54"
 _desc="Modular widget library for window managers"
 short_desc="${_desc} (5.4.x)"
diff --git a/srcpkgs/luarocks-lua53/template b/srcpkgs/luarocks-lua53/template
index 5c047f790c0..4480962a81a 100644
--- a/srcpkgs/luarocks-lua53/template
+++ b/srcpkgs/luarocks-lua53/template
@@ -2,7 +2,6 @@
 pkgname=luarocks-lua53
 version=3.3.1
 revision=3
-archs=noarch
 wrksrc=luarocks-${version}
 build_style=configure
 configure_args="
@@ -63,7 +62,6 @@ post_install() {
 }
 
 luarocks-lua54_package() {
-	archs=noarch
 	short_desc="${_desc} (5.4.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua54"
 	conf_files="/etc/luarocks/config-5.4.lua"
@@ -78,7 +76,6 @@ luarocks-lua54_package() {
 }
 
 luarocks-lua52_package() {
-	archs=noarch
 	short_desc="${_desc} (5.2.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua52"
 	conf_files="/etc/luarocks/config-5.2.lua"
@@ -93,7 +90,6 @@ luarocks-lua52_package() {
 }
 
 luarocks-lua51_package() {
-	archs=noarch
 	short_desc="${_desc} (5.1.x)"
 	depends="${sourcepkg}>=${version}_${revision} lua51"
 	conf_files="/etc/luarocks/config-5.1.lua"
diff --git a/srcpkgs/lugaru/template b/srcpkgs/lugaru/template
index 618a3ab5894..2dd39570266 100644
--- a/srcpkgs/lugaru/template
+++ b/srcpkgs/lugaru/template
@@ -19,7 +19,6 @@ checksum=f3ea477caf78911c69939fbdc163f9f6517c7ef2267e716a0e050be1a166ef97
 
 lugaru-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	license="CC-BY-SA-4"
 	pkg_install() {
 		vmove usr/share/lugaru
diff --git a/srcpkgs/lutris/template b/srcpkgs/lutris/template
index 30fbd3ef8d0..28c3119fb47 100644
--- a/srcpkgs/lutris/template
+++ b/srcpkgs/lutris/template
@@ -2,7 +2,6 @@
 pkgname=lutris
 version=0.5.7.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext python3-setuptools python3-gobject gtk+3-devel"
 depends="python3-dbus python3-gobject python3-yaml python3-evdev python3-Pillow
diff --git a/srcpkgs/lxde-common/template b/srcpkgs/lxde-common/template
index 27e853db6e9..e6fef2f7f15 100644
--- a/srcpkgs/lxde-common/template
+++ b/srcpkgs/lxde-common/template
@@ -2,7 +2,6 @@
 pkgname=lxde-common
 version=0.99.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool"
 depends="lxsession gnome-themes-extra lxde-icon-theme"
diff --git a/srcpkgs/lxde-icon-theme/template b/srcpkgs/lxde-icon-theme/template
index 896f177f23f..90fb159959e 100644
--- a/srcpkgs/lxde-icon-theme/template
+++ b/srcpkgs/lxde-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=lxde-icon-theme
 version=0.5.1
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 makedepends="gtk+-devel"
diff --git a/srcpkgs/lxdm-theme-vdojo/template b/srcpkgs/lxdm-theme-vdojo/template
index b41d9c94f6b..a706df6056f 100644
--- a/srcpkgs/lxdm-theme-vdojo/template
+++ b/srcpkgs/lxdm-theme-vdojo/template
@@ -2,7 +2,6 @@
 pkgname=lxdm-theme-vdojo
 version=1.0
 revision=1
-archs=noarch
 wrksrc="vdojo-$version"
 depends="lxdm"
 short_desc="LXDM theme for voidlinux"
diff --git a/srcpkgs/lxmenu-data/template b/srcpkgs/lxmenu-data/template
index 3bbb4b87f76..77d9af9b191 100644
--- a/srcpkgs/lxmenu-data/template
+++ b/srcpkgs/lxmenu-data/template
@@ -2,7 +2,6 @@
 pkgname=lxmenu-data
 version=0.1.5
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="LXDE freedesktop menu required files"
diff --git a/srcpkgs/lxqt-build-tools/template b/srcpkgs/lxqt-build-tools/template
index 335ff770e01..b0f7f26df9a 100644
--- a/srcpkgs/lxqt-build-tools/template
+++ b/srcpkgs/lxqt-build-tools/template
@@ -2,7 +2,6 @@
 pkgname=lxqt-build-tools
 version=0.7.0
 revision=1
-archs=noarch
 build_style=cmake
 hostmakedepends="qt5-host-tools qt5-qmake pkg-config"
 makedepends="qt5-devel"
diff --git a/srcpkgs/magic-wormhole/template b/srcpkgs/magic-wormhole/template
index b3a7bdf27f8..657778c7d83 100644
--- a/srcpkgs/magic-wormhole/template
+++ b/srcpkgs/magic-wormhole/template
@@ -2,7 +2,6 @@
 pkgname=magic-wormhole
 version=0.12.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
 depends="python3-autobahn python3-cffi python3-click python3-humanize
diff --git a/srcpkgs/mailpile/template b/srcpkgs/mailpile/template
index 972c1da3106..e3010566a17 100644
--- a/srcpkgs/mailpile/template
+++ b/srcpkgs/mailpile/template
@@ -2,7 +2,6 @@
 pkgname=mailpile
 version=0.5.2
 revision=3
-archs=noarch
 wrksrc="Mailpile-${version}"
 build_style=python2-module
 pycompile_module="static mailpile"
diff --git a/srcpkgs/make-ca/template b/srcpkgs/make-ca/template
index 5c54e95cdc2..e308fa4f390 100644
--- a/srcpkgs/make-ca/template
+++ b/srcpkgs/make-ca/template
@@ -2,7 +2,6 @@
 pkgname=make-ca
 version=1.7
 revision=1
-archs=noarch
 wrksrc="make-ca-${version}"
 build_style=gnu-makefile
 make_install_args="SBINDIR=/usr/bin"
diff --git a/srcpkgs/makepasswd/template b/srcpkgs/makepasswd/template
index 12814d730d5..e997b1bd0f1 100644
--- a/srcpkgs/makepasswd/template
+++ b/srcpkgs/makepasswd/template
@@ -2,7 +2,6 @@
 pkgname=makepasswd
 version=1.10.9
 revision=2
-archs=noarch
 depends="perl-Crypt-OpenSSL-Random perl-Crypt-PasswdMD5"
 short_desc="Create and/or encrypt true-random-seeded password strings"
 maintainer="Kevin Berry <kevin@opensourcealchemist.com>"
diff --git a/srcpkgs/makeself/template b/srcpkgs/makeself/template
index 2fc0f26fbd5..aaf9bb75883 100644
--- a/srcpkgs/makeself/template
+++ b/srcpkgs/makeself/template
@@ -2,7 +2,6 @@
 pkgname=makeself
 version=2.4.2
 revision=1
-archs=noarch
 wrksrc="makeself-release-${version}"
 short_desc="Make self-extractable archives on Unix"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages-posix/template b/srcpkgs/man-pages-posix/template
index f16421308ae..25f42c2a692 100644
--- a/srcpkgs/man-pages-posix/template
+++ b/srcpkgs/man-pages-posix/template
@@ -4,7 +4,6 @@ _distver=2013
 _revver=a
 version="${_distver}${_revver}"
 revision=4
-archs=noarch
 wrksrc="${pkgname}-${_distver}-${_revver}"
 short_desc="Manual pages about POSIX systems"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/man-pages/template b/srcpkgs/man-pages/template
index c1e38ac3dba..507bbe9f7b3 100644
--- a/srcpkgs/man-pages/template
+++ b/srcpkgs/man-pages/template
@@ -2,7 +2,6 @@
 pkgname=man-pages
 version=5.08
 revision=1
-archs=noarch
 short_desc="Linux Documentation Project (LDP) manual pages"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="GPL-2.0-or-later"
@@ -50,7 +49,6 @@ do_install() {
 }
 
 man-pages-devel_package() {
-	archs=noarch
 	short_desc+=" - development pages"
 	pkg_install() {
 		vmove usr/share/man/man[2-3]
diff --git a/srcpkgs/mantablockscreen/template b/srcpkgs/mantablockscreen/template
index 79b21d96121..80172a917f9 100644
--- a/srcpkgs/mantablockscreen/template
+++ b/srcpkgs/mantablockscreen/template
@@ -2,7 +2,6 @@
 pkgname=mantablockscreen
 version=0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="ImageMagick xrandr i3lock-color compton bash"
 short_desc="Another i3lock-color wrapper that mantab"
diff --git a/srcpkgs/manuskript/template b/srcpkgs/manuskript/template
index c0c3269225c..55a7919c563 100644
--- a/srcpkgs/manuskript/template
+++ b/srcpkgs/manuskript/template
@@ -2,7 +2,6 @@
 pkgname=manuskript
 version=0.11.0
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/${pkgname}"
 hostmakedepends="python3-setuptools"
 depends="python3-enchant python3-lxml python3-Markdown python3-PyQt5 qt5-svg"
diff --git a/srcpkgs/mariadb/template b/srcpkgs/mariadb/template
index 793f3aadf41..c81014b7394 100644
--- a/srcpkgs/mariadb/template
+++ b/srcpkgs/mariadb/template
@@ -134,7 +134,6 @@ mariadb-client_package() {
 	}
 }
 mytop_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} perl-Term-ReadKey perl-DBD-mysql"
 	short_desc="Top-like query monitor for MariaDB"
 	pkg_install() {
diff --git a/srcpkgs/marvin/template b/srcpkgs/marvin/template
index 65580f87728..3eac54a4c1a 100644
--- a/srcpkgs/marvin/template
+++ b/srcpkgs/marvin/template
@@ -2,7 +2,6 @@
 pkgname=marvin
 version=18.20.0
 revision=2
-archs=noarch
 maintainer="Brenton Horne <brentonhorne77@gmail.com>"
 homepage="https://chemaxon.com/products/marvin"
 license="marvin"
diff --git a/srcpkgs/mate-applets/template b/srcpkgs/mate-applets/template
index 8e9a40869f1..88196018390 100644
--- a/srcpkgs/mate-applets/template
+++ b/srcpkgs/mate-applets/template
@@ -25,7 +25,6 @@ case "$XBPS_TARGET_MACHINE" in
 esac
 
 mate-applets-data_package() {
-	archs=noarch
 	short_desc+=" - architecture independent data"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mate-backgrounds/template b/srcpkgs/mate-backgrounds/template
index 1c0b34f110c..31e6c7f094a 100644
--- a/srcpkgs/mate-backgrounds/template
+++ b/srcpkgs/mate-backgrounds/template
@@ -2,7 +2,6 @@
 pkgname=mate-backgrounds
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="Background images and data for MATE"
diff --git a/srcpkgs/mate-common/template b/srcpkgs/mate-common/template
index 17382ebcf1e..4850dbfe064 100644
--- a/srcpkgs/mate-common/template
+++ b/srcpkgs/mate-common/template
@@ -2,7 +2,6 @@
 pkgname=mate-common
 version=1.24.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 depends="automake libtool intltool pkg-config gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mate-icon-theme-faenza/template b/srcpkgs/mate-icon-theme-faenza/template
index 8eaa696d780..80299aa0b61 100644
--- a/srcpkgs/mate-icon-theme-faenza/template
+++ b/srcpkgs/mate-icon-theme-faenza/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme-faenza
 version=1.20.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="mate-common pkg-config intltool itstool icon-naming-utils"
 depends="gtk-update-icon-cache hicolor-icon-theme"
diff --git a/srcpkgs/mate-icon-theme/template b/srcpkgs/mate-icon-theme/template
index f5dfc2932fe..dc3c584cc56 100644
--- a/srcpkgs/mate-icon-theme/template
+++ b/srcpkgs/mate-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=mate-icon-theme
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="icon-naming-utils"
diff --git a/srcpkgs/mate-menu/template b/srcpkgs/mate-menu/template
index 3c59954a4bc..6191d683ce9 100644
--- a/srcpkgs/mate-menu/template
+++ b/srcpkgs/mate-menu/template
@@ -2,7 +2,6 @@
 pkgname=mate-menu
 version=20.04.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_dirs="usr/lib/mate-menu"
 hostmakedepends="intltool python3-distutils-extra python3-setuptools"
diff --git a/srcpkgs/mate-themes/template b/srcpkgs/mate-themes/template
index 577574cedc0..c93250d5589 100644
--- a/srcpkgs/mate-themes/template
+++ b/srcpkgs/mate-themes/template
@@ -2,7 +2,6 @@
 pkgname=mate-themes
 version=3.22.21
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool icon-naming-utils"
 makedepends="gtk+-devel gtk+3-devel"
diff --git a/srcpkgs/mate-tweak/template b/srcpkgs/mate-tweak/template
index a7da4bd36d8..76179410d25 100644
--- a/srcpkgs/mate-tweak/template
+++ b/srcpkgs/mate-tweak/template
@@ -2,7 +2,6 @@
 pkgname=mate-tweak
 version=20.04.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra python3-pbr python3-setuptools"
 depends="mate-panel python3-gobject python3-psutil python3-setproctitle
diff --git a/srcpkgs/mate-user-guide/template b/srcpkgs/mate-user-guide/template
index 7c1363e3ae2..41c477d013c 100644
--- a/srcpkgs/mate-user-guide/template
+++ b/srcpkgs/mate-user-guide/template
@@ -2,7 +2,6 @@
 pkgname=mate-user-guide
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool"
 short_desc="MATE User Guide"
diff --git a/srcpkgs/mathjax/template b/srcpkgs/mathjax/template
index c1088202b51..b86cc52aa5a 100644
--- a/srcpkgs/mathjax/template
+++ b/srcpkgs/mathjax/template
@@ -2,7 +2,6 @@
 pkgname=mathjax
 version=2.7.6
 revision=1
-archs=noarch
 wrksrc="MathJax-${version}"
 depends="font-util"
 short_desc="JavaScript display engine for LaTeX, MathML and AsciiMath"
diff --git a/srcpkgs/maxima/template b/srcpkgs/maxima/template
index 90d2df8667d..8e8fde12aff 100644
--- a/srcpkgs/maxima/template
+++ b/srcpkgs/maxima/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 maxima-src_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision}"
 	short_desc+=" - source files"
 	pkg_install() {
@@ -41,7 +40,6 @@ maxima-src_package() {
 }
 
 maxima-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -50,7 +48,6 @@ maxima-emacs_package() {
 }
 
 xmaxima_package() {
-	archs=noarch
 	short_desc+=" - Tk interface"
 	depends="${sourcepkg}-${version}_${revision} tk"
 	pkg_install() {
diff --git a/srcpkgs/mb2md/template b/srcpkgs/mb2md/template
index 2fc5c5062d8..d226aac792e 100644
--- a/srcpkgs/mb2md/template
+++ b/srcpkgs/mb2md/template
@@ -2,7 +2,6 @@
 pkgname=mb2md
 version=3.20
 revision=2
-archs=noarch
 create_wrksrc=yes
 depends="perl-TimeDate"
 short_desc="Convert mbox mailboxes into maildir mailboxes"
diff --git a/srcpkgs/mcomix/template b/srcpkgs/mcomix/template
index 397fd241c49..15a556ad9f6 100644
--- a/srcpkgs/mcomix/template
+++ b/srcpkgs/mcomix/template
@@ -2,7 +2,6 @@
 pkgname=mcomix
 version=1.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="${pkgname}"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mdds/template b/srcpkgs/mdds/template
index 5530252ec3d..9e497d8f6a4 100644
--- a/srcpkgs/mdds/template
+++ b/srcpkgs/mdds/template
@@ -7,7 +7,6 @@
 pkgname=mdds
 version=1.5.0
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Collection of multi-dimensional data structures and indexing algorithms"
diff --git a/srcpkgs/mdevd/template b/srcpkgs/mdevd/template
index 4dc0d6e1f64..6dd20225c36 100644
--- a/srcpkgs/mdevd/template
+++ b/srcpkgs/mdevd/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 mdevd-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/med/template b/srcpkgs/med/template
index acd79293246..72c81620747 100644
--- a/srcpkgs/med/template
+++ b/srcpkgs/med/template
@@ -36,7 +36,6 @@ libmed_package() {
 
 med-doc_package() {
 	short_desc+=" - Documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc/med
 	}
diff --git a/srcpkgs/media-player-info/template b/srcpkgs/media-player-info/template
index 40f59736d3b..b4b60e3e1b2 100644
--- a/srcpkgs/media-player-info/template
+++ b/srcpkgs/media-player-info/template
@@ -2,7 +2,6 @@
 pkgname=media-player-info
 version=24
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
 makedepends="eudev-libudev-devel"
diff --git a/srcpkgs/meld/template b/srcpkgs/meld/template
index 486d3b7104b..35c53f8b2b9 100644
--- a/srcpkgs/meld/template
+++ b/srcpkgs/meld/template
@@ -2,7 +2,6 @@
 pkgname=meld
 version=3.20.2
 revision=1
-archs=noarch
 build_style=python3-module
 configure_args="--disable-schemas-compile"
 hostmakedepends="pkg-config intltool gnome-doc-utils python3 itstool gtk-update-icon-cache libxml2-python3"
diff --git a/srcpkgs/menulibre/template b/srcpkgs/menulibre/template
index f16c5f64337..d67b6909924 100644
--- a/srcpkgs/menulibre/template
+++ b/srcpkgs/menulibre/template
@@ -2,7 +2,6 @@
 pkgname=menulibre
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="menulibre menulibre_lib"
 hostmakedepends="python3-distutils-extra intltool"
diff --git a/srcpkgs/menumaker/template b/srcpkgs/menumaker/template
index 1e4e3f6fc6b..1b73dd13862 100644
--- a/srcpkgs/menumaker/template
+++ b/srcpkgs/menumaker/template
@@ -2,7 +2,6 @@
 pkgname=menumaker
 version=0.99.11
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/menumaker"
 hostmakedepends="python"
diff --git a/srcpkgs/menutray/template b/srcpkgs/menutray/template
index 6f06e21ff21..3c986f208de 100644
--- a/srcpkgs/menutray/template
+++ b/srcpkgs/menutray/template
@@ -2,7 +2,6 @@
 pkgname=menutray
 version=0.53
 revision=1
-archs=noarch
 depends="perl-Data-Dump perl-Gtk2 perl-Linux-DesktopFiles"
 short_desc="Application menu through a GTK+ tray status icon"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/meson-cmake-wrapper/template b/srcpkgs/meson-cmake-wrapper/template
index b13ca9229dc..e9058501f60 100644
--- a/srcpkgs/meson-cmake-wrapper/template
+++ b/srcpkgs/meson-cmake-wrapper/template
@@ -2,7 +2,6 @@
 pkgname=meson-cmake-wrapper
 version=0.3.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mcw"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/meson/template b/srcpkgs/meson/template
index 8f02d6ba333..a78967b7eae 100644
--- a/srcpkgs/meson/template
+++ b/srcpkgs/meson/template
@@ -2,7 +2,6 @@
 pkgname=meson
 version=0.55.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-devel python3-setuptools"
 depends="ninja python3-setuptools"
diff --git a/srcpkgs/mime-types/template b/srcpkgs/mime-types/template
index 09b3fb9be3c..1f9c9830b9e 100644
--- a/srcpkgs/mime-types/template
+++ b/srcpkgs/mime-types/template
@@ -2,7 +2,6 @@
 pkgname=mime-types
 version=9
 revision=4
-archs=noarch
 conf_files="/etc/mime.types"
 short_desc="Provides a shared /etc/mime.types file"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/mimeo/template b/srcpkgs/mimeo/template
index 66cd1e12539..82cfd4aa6da 100644
--- a/srcpkgs/mimeo/template
+++ b/srcpkgs/mimeo/template
@@ -2,7 +2,6 @@
 pkgname=mimeo
 version=2019.7
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="Mimeo.py"
 hostmakedepends="python3"
diff --git a/srcpkgs/mimms/template b/srcpkgs/mimms/template
index 3c1decf9178..db3c660d808 100644
--- a/srcpkgs/mimms/template
+++ b/srcpkgs/mimms/template
@@ -2,7 +2,6 @@
 pkgname=mimms
 version=3.2.1
 revision=3
-archs=noarch
 build_style=python2-module
 pycompile_module="libmimms"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/minigalaxy/template b/srcpkgs/minigalaxy/template
index 1d2daaea8d0..12f907fc150 100644
--- a/srcpkgs/minigalaxy/template
+++ b/srcpkgs/minigalaxy/template
@@ -2,7 +2,6 @@
 pkgname=minigalaxy
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="hicolor-icon-theme webkit2gtk python3-gobject python3-requests"
diff --git a/srcpkgs/miro-video-converter/template b/srcpkgs/miro-video-converter/template
index c9d0777aea6..00d273e6bdb 100644
--- a/srcpkgs/miro-video-converter/template
+++ b/srcpkgs/miro-video-converter/template
@@ -3,7 +3,6 @@ pkgname=miro-video-converter
 version=3.0.2
 revision=2
 wrksrc=mirovideoconverter3-${version}
-archs=noarch
 build_style=python2-module
 pycompile_module="mvc"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/mkchromecast/template b/srcpkgs/mkchromecast/template
index e5d9626f9dd..fd977f906a3 100644
--- a/srcpkgs/mkchromecast/template
+++ b/srcpkgs/mkchromecast/template
@@ -2,7 +2,6 @@
 pkgname=mkchromecast
 version=0.3.8.1
 revision=2
-archs=noarch
 pycompile_dirs="/usr/share/mkchromecast/mkchromecast"
 depends="python3-Flask python3-netifaces python3-setuptools python3-requests
  python3-mutagen python3-psutil python3-PyQt5 python3-SoCo python3-chromecast
diff --git a/srcpkgs/mkfontscale/template b/srcpkgs/mkfontscale/template
index dafbb915ca8..a1405b8123c 100644
--- a/srcpkgs/mkfontscale/template
+++ b/srcpkgs/mkfontscale/template
@@ -18,7 +18,6 @@ post_install() {
 }
 
 mkfontdir_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}-${version}_${revision}"
 }
diff --git a/srcpkgs/mkinitcpio-encryptssh/template b/srcpkgs/mkinitcpio-encryptssh/template
index 7da6d9e243b..9764febbfeb 100644
--- a/srcpkgs/mkinitcpio-encryptssh/template
+++ b/srcpkgs/mkinitcpio-encryptssh/template
@@ -3,7 +3,6 @@ pkgname=mkinitcpio-encryptssh
 version=0.16
 revision=2
 _version_suffix=1
-archs=noarch
 wrksrc="dropbear_initrd_encrypt-${version}-${_version_suffix}"
 depends="mkinitcpio cryptsetup dropbear mkinitcpio-nfs-utils psmisc iproute2"
 short_desc="Allows for an encrypted root device to be unlocked remotely over SSH"
diff --git a/srcpkgs/mkinitcpio/template b/srcpkgs/mkinitcpio/template
index a0f44360db4..89a6deab1df 100644
--- a/srcpkgs/mkinitcpio/template
+++ b/srcpkgs/mkinitcpio/template
@@ -2,7 +2,6 @@
 pkgname=mkinitcpio
 version=27
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="busybox-static bsdtar bash"
 short_desc="Next generation of initramfs creation"
@@ -30,7 +29,6 @@ post_install() {
 mkinitcpio-udev_package() {
 	depends="${sourcepkg}>=${version}_${revision} eudev"
 	short_desc+=" - udev support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/udev_hook 644 usr/lib/initcpio/hooks udev
 		vinstall ${FILESDIR}/udev_install 644 usr/lib/initcpio/install udev
@@ -40,7 +38,6 @@ mkinitcpio-udev_package() {
 mkinitcpio-lvm2_package() {
 	depends="${sourcepkg}>=${version}_${revision} lvm2 thin-provisioning-tools"
 	short_desc+=" - lvm2 support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/lvm2_hook 644 usr/lib/initcpio/hooks lvm2
 		vinstall ${FILESDIR}/lvm2_install 644 usr/lib/initcpio/install lvm2
@@ -54,7 +51,6 @@ mkinitcpio-encrypt_package() {
 	depends="${sourcepkg}>=${version}_${revision}
 		${sourcepkg}-lvm2>=${version}_${revision} cryptsetup"
 	short_desc+=" - encrypt support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/encrypt_hook 644 usr/lib/initcpio/hooks encrypt
 		vinstall ${FILESDIR}/encrypt_install 644 usr/lib/initcpio/install encrypt
@@ -64,7 +60,6 @@ mkinitcpio-encrypt_package() {
 mkinitcpio-mdadm_package() {
 	depends="${sourcepkg}>=${version}_${revision} mdadm"
 	short_desc+=" - mdadm support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/mdadm_hook 644 usr/lib/initcpio/hooks mdadm
 		vinstall ${FILESDIR}/mdadm_install 644 usr/lib/initcpio/install mdadm
@@ -75,7 +70,6 @@ mkinitcpio-mdadm_package() {
 mkinitcpio-xbps_package() {
 	depends="${sourcepkg}>=${version}_${revision} xbps"
 	short_desc+=" - xbps support"
-	archs=noarch
 	pkg_install() {
 		vinstall ${FILESDIR}/xbps_install 644 usr/lib/initcpio/install xbps
 	}
diff --git a/srcpkgs/mlt/template b/srcpkgs/mlt/template
index 1579a5b21dd..1798e9e7326 100644
--- a/srcpkgs/mlt/template
+++ b/srcpkgs/mlt/template
@@ -57,7 +57,6 @@ post_install() {
 
 mlt-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mlt
 	}
@@ -65,7 +64,6 @@ mlt-data_package() {
 
 mlt-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
@@ -94,7 +92,6 @@ mlt-python3_package() {
 
 mlt-python_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="mlt-python3-${version}_${revision}"
 }
diff --git a/srcpkgs/mm-common/template b/srcpkgs/mm-common/template
index da83e052bd6..5398a1b143e 100644
--- a/srcpkgs/mm-common/template
+++ b/srcpkgs/mm-common/template
@@ -2,7 +2,6 @@
 pkgname=mm-common
 version=1.0.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="pkg-config intltool itstool"
 depends="gtk-doc gettext-devel glib-devel yelp-tools"
diff --git a/srcpkgs/mobile-broadband-provider-info/template b/srcpkgs/mobile-broadband-provider-info/template
index b51be988591..d4986e56405 100644
--- a/srcpkgs/mobile-broadband-provider-info/template
+++ b/srcpkgs/mobile-broadband-provider-info/template
@@ -2,7 +2,6 @@
 pkgname=mobile-broadband-provider-info
 version=20190618
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake libxslt"
 checkdepends="libxml2"
diff --git a/srcpkgs/mog/template b/srcpkgs/mog/template
index 51f76b94dc4..41a9230f6e1 100644
--- a/srcpkgs/mog/template
+++ b/srcpkgs/mog/template
@@ -29,7 +29,6 @@ pre_build() {
 
 mog-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/mog/graphics
 		vmove usr/share/mog/sound
diff --git a/srcpkgs/mongoose/template b/srcpkgs/mongoose/template
index 587b1ff34eb..6de2663d477 100644
--- a/srcpkgs/mongoose/template
+++ b/srcpkgs/mongoose/template
@@ -22,7 +22,6 @@ mongoose-devel_package() {
 }
 
 mongoose-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share
diff --git a/srcpkgs/mons/template b/srcpkgs/mons/template
index d326cc456c5..4353a22fecb 100644
--- a/srcpkgs/mons/template
+++ b/srcpkgs/mons/template
@@ -3,7 +3,6 @@ pkgname=mons
 version=0.8.2
 revision=1
 build_style=gnu-makefile
-archs=noarch
 depends="libXrandr"
 hostmakedepends="help2man"
 short_desc="Quickly manage 2-monitors display using xrandr"
diff --git a/srcpkgs/mopidy-local/template b/srcpkgs/mopidy-local/template
index 53f42032019..9cb909cbd8e 100644
--- a/srcpkgs/mopidy-local/template
+++ b/srcpkgs/mopidy-local/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-local
 version=3.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="mopidy python3-pykka python3-setuptools"
diff --git a/srcpkgs/mopidy-mpd/template b/srcpkgs/mopidy-mpd/template
index db1642166fd..5cd84e87ba2 100644
--- a/srcpkgs/mopidy-mpd/template
+++ b/srcpkgs/mopidy-mpd/template
@@ -2,7 +2,6 @@
 pkgname=mopidy-mpd
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="Mopidy-MPD-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mopidy/template b/srcpkgs/mopidy/template
index c3497f3b88d..db3eca17752 100644
--- a/srcpkgs/mopidy/template
+++ b/srcpkgs/mopidy/template
@@ -2,7 +2,6 @@
 pkgname=mopidy
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="Mopidy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinx_rtd_theme python3-pykka"
diff --git a/srcpkgs/mozo/template b/srcpkgs/mozo/template
index 22bf450556e..d1d4f4b02c1 100644
--- a/srcpkgs/mozo/template
+++ b/srcpkgs/mozo/template
@@ -2,7 +2,6 @@
 pkgname=mozo
 version=1.24.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="glib-devel mate-menus-devel python3-gobject-devel"
diff --git a/srcpkgs/mpd-sima/template b/srcpkgs/mpd-sima/template
index 831fec709b7..0b8e1079760 100644
--- a/srcpkgs/mpd-sima/template
+++ b/srcpkgs/mpd-sima/template
@@ -2,7 +2,6 @@
 pkgname=mpd-sima
 version=0.15.1
 revision=2
-archs=noarch
 wrksrc="MPD_sima-${version}"
 build_style=python3-module
 pycompile_module="sima"
diff --git a/srcpkgs/mps-youtube/template b/srcpkgs/mps-youtube/template
index 2141b3e627d..1ce565e4bc5 100644
--- a/srcpkgs/mps-youtube/template
+++ b/srcpkgs/mps-youtube/template
@@ -2,7 +2,6 @@
 pkgname=mps-youtube
 version=0.2.8
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="mps_youtube"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/msbuild-bin/template b/srcpkgs/msbuild-bin/template
index 58e9bd501b0..ac05eb692b4 100644
--- a/srcpkgs/msbuild-bin/template
+++ b/srcpkgs/msbuild-bin/template
@@ -3,7 +3,6 @@ _xamarin_rel="xamarinxplat.2020.01.10.05.36-0xamarin1+ubuntu1804b1"
 pkgname=msbuild-bin
 version=16.5
 revision=2
-archs=noarch
 build_style=fetch
 depends="mono"
 short_desc="Xamarin/Mono fork of the Microsoft Build system"
diff --git a/srcpkgs/msttcorefonts/template b/srcpkgs/msttcorefonts/template
index 938e03315c1..a253ba88b94 100644
--- a/srcpkgs/msttcorefonts/template
+++ b/srcpkgs/msttcorefonts/template
@@ -45,7 +45,6 @@ restricted=yes
 repository=nonfree
 
 # They're just fonts...
-archs=noarch
 
 # Tell XBPS that these are fonts
 font_dirs="/usr/share/fonts/TTF"
diff --git a/srcpkgs/mtm/template b/srcpkgs/mtm/template
index ed69349285b..81ac285cd77 100644
--- a/srcpkgs/mtm/template
+++ b/srcpkgs/mtm/template
@@ -24,7 +24,6 @@ do_install() {
 
 mtm-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/mu/template b/srcpkgs/mu/template
index c31ee5b5900..2ee0ba83dd9 100644
--- a/srcpkgs/mu/template
+++ b/srcpkgs/mu/template
@@ -26,7 +26,6 @@ pre_configure() {
 
 if [ ! "$CROSS_BUILD" ]; then
 	mu4e_package() {
-		archs=noarch
 		short_desc+=" - Emacs frontend"
 		depends="${sourcepkg}-${version}_${revision} emacs"
 		pkg_install() {
diff --git a/srcpkgs/mugshot/template b/srcpkgs/mugshot/template
index 1e695654a86..3a0c2120a6d 100644
--- a/srcpkgs/mugshot/template
+++ b/srcpkgs/mugshot/template
@@ -2,7 +2,6 @@
 pkgname=mugshot
 version=0.4.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-distutils-extra"
 depends="accountsservice gtk+3 python3-dbus python3-gobject python3-pexpect"
diff --git a/srcpkgs/multibootusb/template b/srcpkgs/multibootusb/template
index c451109bd69..5ec9968ad90 100644
--- a/srcpkgs/multibootusb/template
+++ b/srcpkgs/multibootusb/template
@@ -2,7 +2,6 @@
 pkgname=multibootusb
 version=9.2.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="scripts"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/mutagen/template b/srcpkgs/mutagen/template
index 957ed3ed818..7f75588deec 100644
--- a/srcpkgs/mutagen/template
+++ b/srcpkgs/mutagen/template
@@ -2,7 +2,6 @@
 pkgname=mutagen
 version=1.43.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mutagen"
 hostmakedepends="python-devel python-setuptools python3-devel
@@ -39,7 +38,6 @@ python3-mutagen_package() {
 	 mutagen:moggsplit:/usr/bin/moggsplit3
 	 mutagen:mutagen-inspect:/usr/bin/mutagen-inspect3
 	 mutagen:mutagen-pony:/usr/bin/mutagen-pony3"
-	archs=noarch
 	depends="python3"
 	pycompile_module="mutagen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/mymcplus/template b/srcpkgs/mymcplus/template
index c46fe9b101e..3f3a3ab0a7c 100644
--- a/srcpkgs/mymcplus/template
+++ b/srcpkgs/mymcplus/template
@@ -2,7 +2,6 @@
 pkgname=mymcplus
 version=3.0.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="wxPython4 python3-PyOpenGL"
diff --git a/srcpkgs/mypaint-brushes/template b/srcpkgs/mypaint-brushes/template
index 5226d6f18d6..045d7d6a0dc 100644
--- a/srcpkgs/mypaint-brushes/template
+++ b/srcpkgs/mypaint-brushes/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes
 version=2.0.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="automake"
 short_desc="Brushes used by MyPaint and other software using libmypaint"
diff --git a/srcpkgs/mypaint-brushes1/template b/srcpkgs/mypaint-brushes1/template
index 8622bb46bb8..fe9ad775afd 100644
--- a/srcpkgs/mypaint-brushes1/template
+++ b/srcpkgs/mypaint-brushes1/template
@@ -2,7 +2,6 @@
 pkgname=mypaint-brushes1
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="mypaint-brushes-${version}"
 build_style=gnu-configure
 hostmakedepends="automake"
diff --git a/srcpkgs/myrepos/template b/srcpkgs/myrepos/template
index 2a67216feb7..fb282542f6d 100644
--- a/srcpkgs/myrepos/template
+++ b/srcpkgs/myrepos/template
@@ -2,7 +2,6 @@
 pkgname=myrepos
 version=1.20180726
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="git mercurial perl"
diff --git a/srcpkgs/nagstamon/template b/srcpkgs/nagstamon/template
index 0eb5bc75d27..710d7c861ba 100644
--- a/srcpkgs/nagstamon/template
+++ b/srcpkgs/nagstamon/template
@@ -2,7 +2,6 @@
 pkgname=nagstamon
 version=3.2.1
 revision=2
-archs=noarch
 wrksrc=Nagstamon
 build_style=python3-module
 pycompile_module="Nagstamon"
diff --git a/srcpkgs/nautilus-python/template b/srcpkgs/nautilus-python/template
index 7a32e9e6617..414848a4e8d 100644
--- a/srcpkgs/nautilus-python/template
+++ b/srcpkgs/nautilus-python/template
@@ -2,7 +2,6 @@
 pkgname=nautilus-python
 version=1.2.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-gtk-doc PYTHON=python3"
 hostmakedepends="automake libtool pkg-config which"
diff --git a/srcpkgs/ncurses/template b/srcpkgs/ncurses/template
index d1bb2ae3aa8..bcc9515dfec 100644
--- a/srcpkgs/ncurses/template
+++ b/srcpkgs/ncurses/template
@@ -131,7 +131,6 @@ ncurses-devel_package() {
 }
 ncurses-base_package() {
 	short_desc+=" - base terminfo files"
-	archs=noarch
 	pkg_install() {
 		cat ${FILESDIR}/base-files | while read line; do
 			vmove ${line}
@@ -141,7 +140,6 @@ ncurses-base_package() {
 ncurses-term_package() {
 	depends="ncurses-base-${version}_${revision}"
 	short_desc+=" - full terminal descriptions"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/tabset
 		vmove usr/share/terminfo
diff --git a/srcpkgs/neofetch/template b/srcpkgs/neofetch/template
index 60862481a28..99a5b6fa463 100644
--- a/srcpkgs/neofetch/template
+++ b/srcpkgs/neofetch/template
@@ -2,7 +2,6 @@
 pkgname=neofetch
 version=7.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 short_desc="Simple system information script"
diff --git a/srcpkgs/neovim-remote/template b/srcpkgs/neovim-remote/template
index c826750a004..8b84712d21f 100644
--- a/srcpkgs/neovim-remote/template
+++ b/srcpkgs/neovim-remote/template
@@ -2,7 +2,6 @@
 pkgname=neovim-remote
 version=2.4.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-neovim python3-psutil"
diff --git a/srcpkgs/nerd-fonts/template b/srcpkgs/nerd-fonts/template
index a2f2084738b..16d4b469627 100644
--- a/srcpkgs/nerd-fonts/template
+++ b/srcpkgs/nerd-fonts/template
@@ -2,7 +2,6 @@
 pkgname=nerd-fonts
 version=2.1.0
 revision=2
-archs=noarch
 depends="font-util xbps-triggers nerd-fonts-ttf nerd-fonts-otf"
 short_desc="Iconic font aggregator, collection and patcher"
 maintainer="cinerea0 <cinerea0@protonmail.com>"
@@ -32,7 +31,6 @@ do_install() {
 }
 
 nerd-fonts-otf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - otf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/otf"
 	depends="font-util xbps-triggers"
@@ -42,7 +40,6 @@ nerd-fonts-otf_package() {
 }
 
 nerd-fonts-ttf_package() {
-	archs=noarch
 	short_desc="Iconic font aggregator, collection and patcher - ttf fonts"
 	font_dirs="usr/share/fonts/NerdFonts/ttf"
 	depends="font-util xbps-triggers"
diff --git a/srcpkgs/netbsd-wtf/template b/srcpkgs/netbsd-wtf/template
index 87708e08847..878f674a0af 100644
--- a/srcpkgs/netbsd-wtf/template
+++ b/srcpkgs/netbsd-wtf/template
@@ -3,7 +3,6 @@ pkgname=netbsd-wtf
 version=20180621
 revision=2
 _commit=b1e5be48e340146f63b174cc14fef892a783168b
-archs=noarch
 build_style=gnu-makefile
 short_desc="The NetBSD's wtf(6) utility"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/netdata/template b/srcpkgs/netdata/template
index 205d7985614..8f1f915b8e7 100644
--- a/srcpkgs/netdata/template
+++ b/srcpkgs/netdata/template
@@ -53,7 +53,6 @@ post_install() {
 netdata-plugins-nodejs_package() {
 	short_desc+=" - NodeJS Plugins"
 	depends="${sourcepkg}>=${version}_${revision} virtual?nodejs-runtime"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/node.d.plugin
 		vmove usr/libexec/netdata/node.d
@@ -63,7 +62,6 @@ netdata-plugins-nodejs_package() {
 netdata-plugins-python_package() {
 	short_desc+=" - Python Plugins"
 	depends="${sourcepkg}>=${version}_${revision} python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/libexec/netdata/plugins.d/python.d.plugin
 		vmove usr/libexec/netdata/python.d
diff --git a/srcpkgs/netsurf-buildsystem/template b/srcpkgs/netsurf-buildsystem/template
index b65615497e2..1a8f7dd25bc 100644
--- a/srcpkgs/netsurf-buildsystem/template
+++ b/srcpkgs/netsurf-buildsystem/template
@@ -2,7 +2,6 @@
 pkgname=netsurf-buildsystem
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#netsurf-}-${version}"
 short_desc="Netsurf buildsystem"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/nicotine+/template b/srcpkgs/nicotine+/template
index 6f743890f83..ad57c8a98b0 100644
--- a/srcpkgs/nicotine+/template
+++ b/srcpkgs/nicotine+/template
@@ -2,7 +2,6 @@
 pkgname=nicotine+
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="nicotine-plus-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/nmap/template b/srcpkgs/nmap/template
index 8f036af7fc4..c868f1fd8ac 100644
--- a/srcpkgs/nmap/template
+++ b/srcpkgs/nmap/template
@@ -36,7 +36,6 @@ post_install() {
 }
 
 zenmap_package() {
-	archs=noarch
 	depends="${sourcepkg}-${version}_${revision} pygtk"
 	short_desc+=" - GUI Frontend"
 	pkg_install() {
diff --git a/srcpkgs/notmuch/template b/srcpkgs/notmuch/template
index d9bba6a03b8..8e0fb2a7300 100644
--- a/srcpkgs/notmuch/template
+++ b/srcpkgs/notmuch/template
@@ -91,7 +91,6 @@ libnotmuch-devel_package() {
 }
 
 notmuch-emacs_package() {
-	archs=noarch
 	short_desc+=" - Emacs interface"
 	depends="${sourcepkg}-${version}_${revision} virtual?emacs"
 	pkg_install() {
@@ -104,7 +103,6 @@ notmuch-emacs_package() {
 }
 
 notmuch-mutt_package() {
-	archs=noarch
 	short_desc+=" - Mutt interface"
 	depends="${sourcepkg}-${version}_${revision} perl-Mail-Box perl-MailTools
 	 perl-String-ShellQuote perl-Term-ReadLine-Gnu perl-File-Which"
@@ -115,7 +113,6 @@ notmuch-mutt_package() {
 }
 
 notmuch-python3_package() {
-	archs=noarch
 	depends="libnotmuch-${version}_${revision}"
 	short_desc+=" - Python 3 bindings"
 	pkg_install() {
diff --git a/srcpkgs/noto-fonts-cjk/template b/srcpkgs/noto-fonts-cjk/template
index 8f35b2e9307..1de8196f2a8 100644
--- a/srcpkgs/noto-fonts-cjk/template
+++ b/srcpkgs/noto-fonts-cjk/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-cjk
 version=20190416
 revision=1
-archs=noarch
 _githash=be6c059ac1587e556e2412b27f5155c8eb3ddbe6
 wrksrc="noto-cjk-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-emoji/template b/srcpkgs/noto-fonts-emoji/template
index 5c467f27551..ee804e84650 100644
--- a/srcpkgs/noto-fonts-emoji/template
+++ b/srcpkgs/noto-fonts-emoji/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-emoji
 version=20200722
 revision=1
-archs=noarch
 _githash=d5e261484286d33a1fe8a02676f5907ecc02106f
 wrksrc="noto-emoji-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/noto-fonts-ttf/template b/srcpkgs/noto-fonts-ttf/template
index 59c5f03f8e6..21f2064f3aa 100644
--- a/srcpkgs/noto-fonts-ttf/template
+++ b/srcpkgs/noto-fonts-ttf/template
@@ -2,7 +2,6 @@
 pkgname=noto-fonts-ttf
 version=20190926
 revision=1
-archs=noarch
 _githash=0fa1dfabd6e3746bb7463399e2813f60d3f1b256
 wrksrc="noto-fonts-${_githash}"
 depends="font-util"
diff --git a/srcpkgs/novaboot/template b/srcpkgs/novaboot/template
index f93c1ebe23b..f5f539b55dc 100644
--- a/srcpkgs/novaboot/template
+++ b/srcpkgs/novaboot/template
@@ -2,7 +2,6 @@
 pkgname=novaboot
 version=20191023
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 makedepends="perl"
diff --git a/srcpkgs/nsss/template b/srcpkgs/nsss/template
index 947efc1a496..fafa035d570 100644
--- a/srcpkgs/nsss/template
+++ b/srcpkgs/nsss/template
@@ -24,7 +24,6 @@ post_install() {
 }
 
 nsss-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/ntp/template b/srcpkgs/ntp/template
index c1cd814ea9d..e89fd2f8ae1 100644
--- a/srcpkgs/ntp/template
+++ b/srcpkgs/ntp/template
@@ -42,7 +42,6 @@ post_install() {
 
 ntp-perl_package() {
 	depends="ntp>=$version perl"
-	archs=noarch
 	short_desc+=" - perl scripts"
 	pkg_install() {
 		vmove usr/bin/ntp-wait
diff --git a/srcpkgs/num-utils/template b/srcpkgs/num-utils/template
index d7b542fa7af..ed38c538be1 100644
--- a/srcpkgs/num-utils/template
+++ b/srcpkgs/num-utils/template
@@ -10,7 +10,6 @@ license="GPL-2"
 homepage="http://suso.suso.org/xulu/Num-utils"
 distfiles="http://suso.suso.org/programs/${pkgname}/downloads/${pkgname}-${version}.tar.gz"
 checksum=03592760fc7844492163b14ddc9bb4e4d6526e17b468b5317b4a702ea7f6c64e
-archs=noarch
 
 post_extract() {
 	sed -i 's/\$new_number\^\$1/$new_number**$1/g' numprocess
diff --git a/srcpkgs/numix-themes/template b/srcpkgs/numix-themes/template
index f993b7949a4..78b431f7072 100644
--- a/srcpkgs/numix-themes/template
+++ b/srcpkgs/numix-themes/template
@@ -2,7 +2,6 @@ pkgname=numix-themes
 version=2.6.7
 revision=1
 wrksrc="numix-gtk-theme-${version}"
-archs=noarch
 build_style=gnu-makefile
 short_desc="A modern flat theme with a combination of light and dark elements"
 maintainer="Jakub Skrzypnik <jot.skrzyp@gmail.com>"
diff --git a/srcpkgs/nyx/template b/srcpkgs/nyx/template
index 4b265771793..fe9734dc24d 100644
--- a/srcpkgs/nyx/template
+++ b/srcpkgs/nyx/template
@@ -2,7 +2,6 @@
 pkgname=nyx
 version=2.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="nyx"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/oblogout/template b/srcpkgs/oblogout/template
index 7d7b93a2fd1..70623e2c76a 100644
--- a/srcpkgs/oblogout/template
+++ b/srcpkgs/oblogout/template
@@ -2,7 +2,6 @@
 pkgname=oblogout
 version=0.2
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 build_style=python2-module
 conf_files="/etc/oblogout.conf"
diff --git a/srcpkgs/obmenu-generator/template b/srcpkgs/obmenu-generator/template
index 370c37bec39..35236b5433b 100644
--- a/srcpkgs/obmenu-generator/template
+++ b/srcpkgs/obmenu-generator/template
@@ -2,7 +2,6 @@
 pkgname=obmenu-generator
 version=0.88
 revision=1
-archs=noarch
 depends="perl perl-Linux-DesktopFiles perl-Data-Dump perl-Gtk2"
 short_desc="Perl Script to generate Openbox menu"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/obmenu/template b/srcpkgs/obmenu/template
index 0e72c282bef..7191ad31d54 100644
--- a/srcpkgs/obmenu/template
+++ b/srcpkgs/obmenu/template
@@ -2,7 +2,6 @@
 pkgname=obmenu
 version=1.0
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="obxml.py"
 hostmakedepends="python"
diff --git a/srcpkgs/offlineimap/template b/srcpkgs/offlineimap/template
index c66f7f4581e..95be25f9aeb 100644
--- a/srcpkgs/offlineimap/template
+++ b/srcpkgs/offlineimap/template
@@ -2,7 +2,6 @@
 pkgname=offlineimap
 version=7.3.3
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-six python-rfc6555 asciidoc"
 depends="python-six python-rfc6555"
diff --git a/srcpkgs/ohsnap-font/template b/srcpkgs/ohsnap-font/template
index 2ce38c54ac7..f582d716f0a 100644
--- a/srcpkgs/ohsnap-font/template
+++ b/srcpkgs/ohsnap-font/template
@@ -2,7 +2,6 @@
 pkgname=ohsnap-font
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="ohsnap-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/ok.sh/template b/srcpkgs/ok.sh/template
index ac00f710837..400767cc52b 100644
--- a/srcpkgs/ok.sh/template
+++ b/srcpkgs/ok.sh/template
@@ -2,7 +2,6 @@
 pkgname=ok.sh
 version=0.6.1
 revision=1
-archs=noarch
 depends="curl jq"
 checkdepends="socat ${depends}"
 short_desc="GitHub API client library written in POSIX sh"
diff --git a/srcpkgs/oniguruma/template b/srcpkgs/oniguruma/template
index c017fe458d5..c84b5b51f61 100644
--- a/srcpkgs/oniguruma/template
+++ b/srcpkgs/oniguruma/template
@@ -28,7 +28,6 @@ oniguruma-devel_package() {
 }
 
 oniguruma-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmkdir usr/share/doc/${sourcepkg}
diff --git a/srcpkgs/onionshare/template b/srcpkgs/onionshare/template
index b8df8ae79c7..5fd796c2ebd 100644
--- a/srcpkgs/onionshare/template
+++ b/srcpkgs/onionshare/template
@@ -2,7 +2,6 @@
 pkgname=onionshare
 version=2.2
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_dirs="/usr/share/nautilus-python/extensions"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/opencl-clhpp/template b/srcpkgs/opencl-clhpp/template
index a2d140b5f9b..7ac36210b97 100644
--- a/srcpkgs/opencl-clhpp/template
+++ b/srcpkgs/opencl-clhpp/template
@@ -3,7 +3,6 @@ pkgname=opencl-clhpp
 version=2.0.10
 revision=1
 wrksrc="OpenCL-CLHPP-${version}"
-archs=noarch
 hostmakedepends="python"
 short_desc="OpenCL Host API C++ bindings (cl.hpp and cl2.hpp)"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/opencl2-headers/template b/srcpkgs/opencl2-headers/template
index 4a1ef594025..20b005fccbe 100644
--- a/srcpkgs/opencl2-headers/template
+++ b/srcpkgs/opencl2-headers/template
@@ -2,7 +2,6 @@
 pkgname=opencl2-headers
 version=2020.06.16
 revision=1
-archs=noarch
 wrksrc="OpenCL-Headers-${version}"
 short_desc="OpenCL 2.2 (Open Computing Language) header files"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/openjdk8/template b/srcpkgs/openjdk8/template
index 9f9c5998fdc..a95d647e9f7 100644
--- a/srcpkgs/openjdk8/template
+++ b/srcpkgs/openjdk8/template
@@ -286,28 +286,24 @@ openjdk8-doc_package() {
 }
 
 openjdk_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 openjdk-jre_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-jre>=${version}_${revision}"
 	short_desc+=" - runtime components (transitional dummy package)"
 }
 
 openjdk-src_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-src>=${version}_${revision}"
 	short_desc+=" - source code (transitional dummy package)"
 }
 
 openjdk-doc_package() {
-	archs=noarch
 	build_style=meta
 	depends="openjdk8-doc>=${version}_${revision}"
 	short_desc+=" - documentation (transitional dummy package)"
diff --git a/srcpkgs/openlierox/template b/srcpkgs/openlierox/template
index 33784034232..52e90f4e834 100644
--- a/srcpkgs/openlierox/template
+++ b/srcpkgs/openlierox/template
@@ -42,7 +42,6 @@ do_install() {
 
 openlierox-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/OpenLieroX
 	}
diff --git a/srcpkgs/openra/template b/srcpkgs/openra/template
index f191405c111..afdde5c1125 100644
--- a/srcpkgs/openra/template
+++ b/srcpkgs/openra/template
@@ -2,7 +2,6 @@
 pkgname=openra
 version=20200503
 revision=1
-archs=noarch
 wrksrc="OpenRA-release-${version}"
 build_style="gnu-makefile"
 make_install_target="install install-linux-shortcuts install-linux-mime
diff --git a/srcpkgs/openresolv/template b/srcpkgs/openresolv/template
index c542e9b5310..2eb521564c6 100644
--- a/srcpkgs/openresolv/template
+++ b/srcpkgs/openresolv/template
@@ -2,7 +2,6 @@
 pkgname=openresolv
 version=3.10.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Management framework for resolv.conf"
 maintainer="Andrea Brancaleoni <abc@pompel.me>"
diff --git a/srcpkgs/opensonic/template b/srcpkgs/opensonic/template
index c32bb11cb93..21487454e74 100644
--- a/srcpkgs/opensonic/template
+++ b/srcpkgs/opensonic/template
@@ -38,7 +38,6 @@ post_install() {
 
 opensonic-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/opensonic/config
 		vmove usr/share/opensonic/images
diff --git a/srcpkgs/opensurge/template b/srcpkgs/opensurge/template
index 187cace09e6..a80afb13578 100644
--- a/srcpkgs/opensurge/template
+++ b/srcpkgs/opensurge/template
@@ -15,7 +15,6 @@ checksum=d060e3215231741ce0b4e5b897af52f8755c57660c8a33856bf921c83af18ba2
 
 opensurge-data_package() {
 	short_desc+=" - game data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/games
 	}
diff --git a/srcpkgs/opentmpfiles/template b/srcpkgs/opentmpfiles/template
index 66e3bd34f2f..cec60fef210 100644
--- a/srcpkgs/opentmpfiles/template
+++ b/srcpkgs/opentmpfiles/template
@@ -2,7 +2,6 @@
 pkgname=opentmpfiles
 version=0.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="A standalone utility for handling systemd-style tmpfiles.d settings"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/openttd/template b/srcpkgs/openttd/template
index 47df4a01b56..17c3c6577dd 100644
--- a/srcpkgs/openttd/template
+++ b/srcpkgs/openttd/template
@@ -45,7 +45,6 @@ do_configure() {
 
 openttd-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/openttd
 		vmkdir usr/share/openttd/data
diff --git a/srcpkgs/opentyrian/template b/srcpkgs/opentyrian/template
index 92a1ef220b5..0ec941fd3f5 100644
--- a/srcpkgs/opentyrian/template
+++ b/srcpkgs/opentyrian/template
@@ -37,7 +37,6 @@ EOT
 
 opentyrian-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/${sourcepkg}/data
 		vcopy "${XBPS_BUILDDIR}/tyrian${_dataver}/*" usr/share/${sourcepkg}/data
diff --git a/srcpkgs/orca/template b/srcpkgs/orca/template
index f70202e6d76..18de381eaed 100644
--- a/srcpkgs/orca/template
+++ b/srcpkgs/orca/template
@@ -2,7 +2,6 @@
 pkgname=orca
 version=3.36.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="intltool itstool pkg-config"
 makedepends="at-spi2-atk-devel liblouis-devel python3-gobject-devel"
diff --git a/srcpkgs/orjail/template b/srcpkgs/orjail/template
index 37ae9bbf042..67608de589d 100644
--- a/srcpkgs/orjail/template
+++ b/srcpkgs/orjail/template
@@ -2,7 +2,6 @@
 pkgname=orjail
 version=1.1
 revision=1
-archs=noarch
 hostmakedepends="ruby-ronn"
 depends="bash bc-gh coreutils grep iproute2 ncurses tor util-linux"
 short_desc="Force a program to exclusively use the Tor network"
diff --git a/srcpkgs/osinfo-db/template b/srcpkgs/osinfo-db/template
index cbeb399d412..891add3213e 100644
--- a/srcpkgs/osinfo-db/template
+++ b/srcpkgs/osinfo-db/template
@@ -2,7 +2,6 @@
 pkgname=osinfo-db
 version=20200813
 revision=1
-archs=noarch
 build_style=fetch
 hostmakedepends="osinfo-db-tools"
 short_desc="Osinfo database about operating systems"
diff --git a/srcpkgs/othman/template b/srcpkgs/othman/template
index 7c75a6b04f2..5bbcaed9424 100644
--- a/srcpkgs/othman/template
+++ b/srcpkgs/othman/template
@@ -2,7 +2,6 @@
 pkgname=othman
 version=0.6.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="othman"
 hostmakedepends="python3 ImageMagick sqlite intltool"
diff --git a/srcpkgs/overpass-otf/template b/srcpkgs/overpass-otf/template
index 3f349b80966..b5d2d7cb8e4 100644
--- a/srcpkgs/overpass-otf/template
+++ b/srcpkgs/overpass-otf/template
@@ -2,7 +2,6 @@
 pkgname=overpass-otf
 version=3.0.4
 revision=1
-archs=noarch
 wrksrc="Overpass-${version}"
 depends="font-util xbps-triggers"
 short_desc="Open source font family inspired by Highway Gothic"
diff --git a/srcpkgs/oxygen-icons5/template b/srcpkgs/oxygen-icons5/template
index 583e7880eb6..9a93f760e19 100644
--- a/srcpkgs/oxygen-icons5/template
+++ b/srcpkgs/oxygen-icons5/template
@@ -2,7 +2,6 @@
 pkgname=oxygen-icons5
 version=5.73.0
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="kcoreaddons extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/pam-base/template b/srcpkgs/pam-base/template
index 216cea3679f..dc0de192b4a 100644
--- a/srcpkgs/pam-base/template
+++ b/srcpkgs/pam-base/template
@@ -2,7 +2,6 @@
 pkgname=pam-base
 version=0.3
 revision=5
-archs=noarch
 short_desc="PAM base configuration files"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="public domain"
diff --git a/srcpkgs/pantalaimon/template b/srcpkgs/pantalaimon/template
index 31a1763ab24..4c9523bbc02 100644
--- a/srcpkgs/pantalaimon/template
+++ b/srcpkgs/pantalaimon/template
@@ -2,7 +2,6 @@
 pkgname=pantalaimon
 version=0.6.5
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-attrs python3-aiohttp python3-appdirs python3-click
diff --git a/srcpkgs/paper-gtk-theme/template b/srcpkgs/paper-gtk-theme/template
index a00a0ce1a4c..39d19abbf34 100644
--- a/srcpkgs/paper-gtk-theme/template
+++ b/srcpkgs/paper-gtk-theme/template
@@ -2,7 +2,6 @@
 pkgname=paper-gtk-theme
 version=2.1.0
 revision=1
-archs=noarch
 short_desc="A modern Linux desktop theme suite"
 build_style=gnu-configure
 maintainer="Satoshi Amemiya <amemiya@protonmail.com>"
diff --git a/srcpkgs/paper-icon-theme/template b/srcpkgs/paper-icon-theme/template
index dabaa3d7ec0..c57bb2af7fc 100644
--- a/srcpkgs/paper-icon-theme/template
+++ b/srcpkgs/paper-icon-theme/template
@@ -3,7 +3,6 @@ pkgname=paper-icon-theme
 version=1.5.0
 revision=1
 wrksrc="${pkgname}-v.${version}"
-archs=noarch
 build_style=meson
 short_desc="A modern freedesktop icon theme"
 maintainer="travankor <travankor@tuta.io>"
diff --git a/srcpkgs/papirus-folders/template b/srcpkgs/papirus-folders/template
index 9dd36bdee91..cdcefee2ff2 100644
--- a/srcpkgs/papirus-folders/template
+++ b/srcpkgs/papirus-folders/template
@@ -2,7 +2,6 @@
 pkgname=papirus-folders
 version=1.7.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="papirus-icon-theme"
 short_desc="Allows to change the color of folder"
diff --git a/srcpkgs/papirus-icon-theme/template b/srcpkgs/papirus-icon-theme/template
index 39e5fef6086..929b9486b64 100644
--- a/srcpkgs/papirus-icon-theme/template
+++ b/srcpkgs/papirus-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=papirus-icon-theme
 version=20200801
 revision=1
-archs=noarch
 short_desc="SVG icon theme for Linux, based on Paper Icon Set"
 maintainer="Giuseppe Fierro <gspe@ae-design.ws>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/parallel/template b/srcpkgs/parallel/template
index 0f8e1b1657a..1a6bb1949de 100644
--- a/srcpkgs/parallel/template
+++ b/srcpkgs/parallel/template
@@ -2,7 +2,6 @@
 pkgname=parallel
 version=20200822
 revision=1
-archs="noarch"
 build_style=gnu-configure
 depends="perl"
 checkdepends="perl"
diff --git a/srcpkgs/pass-git-helper/template b/srcpkgs/pass-git-helper/template
index 6d7f25bd8a7..5707c2d6a2d 100644
--- a/srcpkgs/pass-git-helper/template
+++ b/srcpkgs/pass-git-helper/template
@@ -2,7 +2,6 @@
 pkgname=pass-git-helper
 version=1.1.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="pass python3-xdg"
diff --git a/srcpkgs/pass-import/template b/srcpkgs/pass-import/template
index ac7590bea99..3ac75af3910 100644
--- a/srcpkgs/pass-import/template
+++ b/srcpkgs/pass-import/template
@@ -2,7 +2,6 @@
 pkgname=pass-import
 version=3.0
 revision=3
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="python3-setuptools python3-yaml"
 depends="pass>=1.7.0 python3-defusedxml python3-magic
diff --git a/srcpkgs/pass-otp/template b/srcpkgs/pass-otp/template
index a9e3de053ae..9aaf5418b7a 100644
--- a/srcpkgs/pass-otp/template
+++ b/srcpkgs/pass-otp/template
@@ -2,7 +2,6 @@
 pkgname=pass-otp
 version=1.2.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="pass oath-toolkit qrencode"
 short_desc="A pass extension for managing one-time-password (OTP) tokens"
diff --git a/srcpkgs/pass-update/template b/srcpkgs/pass-update/template
index 0265a3aeafd..321a9fb4216 100644
--- a/srcpkgs/pass-update/template
+++ b/srcpkgs/pass-update/template
@@ -2,7 +2,6 @@
 pkgname=pass-update
 version=2.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args=BASHCOMPDIR=/usr/share/bash-completion/completions
 depends="pass"
diff --git a/srcpkgs/pass/template b/srcpkgs/pass/template
index 229bb79c70d..1ca941ac4a5 100644
--- a/srcpkgs/pass/template
+++ b/srcpkgs/pass/template
@@ -2,7 +2,6 @@
 pkgname=pass
 version=1.7.3
 revision=3
-archs=noarch
 wrksrc="password-store-${version}"
 build_style=gnu-makefile
 make_install_args="WITH_BASHCOMP=yes WITH_ZSHCOMP=yes WITH_FISHCOMP=yes"
diff --git a/srcpkgs/pastebinit/template b/srcpkgs/pastebinit/template
index 1fcff9d6e4c..a7a692126a8 100644
--- a/srcpkgs/pastebinit/template
+++ b/srcpkgs/pastebinit/template
@@ -2,7 +2,6 @@
 pkgname=pastebinit
 version=1.5
 revision=3
-archs=noarch
 hostmakedepends="asciidoc gettext"
 depends="python3"
 short_desc="Pastebin command-line client"
diff --git a/srcpkgs/pcb/template b/srcpkgs/pcb/template
index 882fffad2c7..ad749498d5c 100644
--- a/srcpkgs/pcb/template
+++ b/srcpkgs/pcb/template
@@ -18,7 +18,6 @@ distfiles="${SOURCEFORGE_SITE}/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=1ceeaf1bdbe0508b9b140ca421eb600836579114c04dee939341c5d594f36e5d
 
 pcb-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/pcb
diff --git a/srcpkgs/pdd/template b/srcpkgs/pdd/template
index 70deb5a1ae3..6cb6ae2867a 100644
--- a/srcpkgs/pdd/template
+++ b/srcpkgs/pdd/template
@@ -2,7 +2,6 @@
 pkgname=pdd
 version=1.4
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3-dateutil"
 checkdepends="python3-dateutil python3-pytest"
diff --git a/srcpkgs/pdf.js/template b/srcpkgs/pdf.js/template
index fbd2704e5f5..71f2403818f 100644
--- a/srcpkgs/pdf.js/template
+++ b/srcpkgs/pdf.js/template
@@ -2,7 +2,6 @@
 pkgname=pdf.js
 version=2.5.207
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Portable Document Format (PDF) viewer built with HTML5"
 maintainer="Daniel Santana <daniel@santana.tech>"
diff --git a/srcpkgs/peframe/template b/srcpkgs/peframe/template
index 5ecede6cf56..bccb91ce3da 100644
--- a/srcpkgs/peframe/template
+++ b/srcpkgs/peframe/template
@@ -2,7 +2,6 @@
 pkgname=peframe
 version=6.0.3
 revision=2
-archs=noarch
 build_style="python3-module"
 pycompile_module="peframe"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pelican/template b/srcpkgs/pelican/template
index c505227c554..9b390fa7726 100644
--- a/srcpkgs/pelican/template
+++ b/srcpkgs/pelican/template
@@ -2,7 +2,6 @@
 pkgname=pelican
 version=4.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pelican"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/percona-toolkit/template b/srcpkgs/percona-toolkit/template
index 612be5996a6..42cc7d91487 100644
--- a/srcpkgs/percona-toolkit/template
+++ b/srcpkgs/percona-toolkit/template
@@ -2,7 +2,6 @@
 pkgname=percona-toolkit
 version=3.0.13
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-DBD-mysql"
 depends="perl-DBD-mysql perl-Term-ReadKey"
diff --git a/srcpkgs/perl-ACL-Lite/template b/srcpkgs/perl-ACL-Lite/template
index f3ce855be07..3b2240d8650 100644
--- a/srcpkgs/perl-ACL-Lite/template
+++ b/srcpkgs/perl-ACL-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-ACL-Lite
 version=0.0004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AWS-Signature4/template b/srcpkgs/perl-AWS-Signature4/template
index 33844d45194..de5fac2cdb1 100644
--- a/srcpkgs/perl-AWS-Signature4/template
+++ b/srcpkgs/perl-AWS-Signature4/template
@@ -2,7 +2,6 @@
 pkgname=perl-AWS-Signature4
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Algorithm-Diff/template b/srcpkgs/perl-Algorithm-Diff/template
index 9bff5156ed2..08feaa2eb59 100644
--- a/srcpkgs/perl-Algorithm-Diff/template
+++ b/srcpkgs/perl-Algorithm-Diff/template
@@ -2,7 +2,6 @@
 pkgname=perl-Algorithm-Diff
 version=1.1903
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Alien-Build/template b/srcpkgs/perl-Alien-Build/template
index edc1f516035..4de28b0505c 100644
--- a/srcpkgs/perl-Alien-Build/template
+++ b/srcpkgs/perl-Alien-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-Build
 version=2.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-PkgConfig perl-File-Which"
diff --git a/srcpkgs/perl-Alien-wxWidgets/template b/srcpkgs/perl-Alien-wxWidgets/template
index 3c0a7eae5e8..fef3d2e27c0 100644
--- a/srcpkgs/perl-Alien-wxWidgets/template
+++ b/srcpkgs/perl-Alien-wxWidgets/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien-wxWidgets
 version=0.69
 revision=1
-archs=noarch
 wrksrc="Alien-wxWidgets-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Module-Pluggable perl-LWP-Protocol-https"
diff --git a/srcpkgs/perl-Alien/template b/srcpkgs/perl-Alien/template
index 9149deae190..ffb54bc1566 100644
--- a/srcpkgs/perl-Alien/template
+++ b/srcpkgs/perl-Alien/template
@@ -2,7 +2,6 @@
 pkgname=perl-Alien
 version=0.95
 revision=1
-archs=noarch
 wrksrc="Alien-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-AnyEvent-I3/template b/srcpkgs/perl-AnyEvent-I3/template
index 306cf53f404..bc087f6a578 100644
--- a/srcpkgs/perl-AnyEvent-I3/template
+++ b/srcpkgs/perl-AnyEvent-I3/template
@@ -3,7 +3,6 @@ pkgname=perl-AnyEvent-I3
 version=0.17
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-JSON-XS perl-AnyEvent"
 makedepends="${hostmakedepends}"
diff --git a/srcpkgs/perl-AnyEvent/template b/srcpkgs/perl-AnyEvent/template
index 1d938d338c4..415f3eadeff 100644
--- a/srcpkgs/perl-AnyEvent/template
+++ b/srcpkgs/perl-AnyEvent/template
@@ -2,7 +2,6 @@
 pkgname=perl-AnyEvent
 version=7.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Apache-LogFormat-Compiler/template b/srcpkgs/perl-Apache-LogFormat-Compiler/template
index 36136de1a91..6b9aaacd152 100644
--- a/srcpkgs/perl-Apache-LogFormat-Compiler/template
+++ b/srcpkgs/perl-Apache-LogFormat-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Apache-LogFormat-Compiler
 version=0.36
 revision=1
-archs=noarch
 wrksrc="Apache-LogFormat-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-AppConfig/template b/srcpkgs/perl-AppConfig/template
index 02893ec6303..15b76b83b73 100644
--- a/srcpkgs/perl-AppConfig/template
+++ b/srcpkgs/perl-AppConfig/template
@@ -2,7 +2,6 @@
 pkgname=perl-AppConfig
 version=1.71
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Extract/template b/srcpkgs/perl-Archive-Extract/template
index ab0af642e64..89eb8ea79b0 100644
--- a/srcpkgs/perl-Archive-Extract/template
+++ b/srcpkgs/perl-Archive-Extract/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Extract
 version=0.86
 revision=1
-archs=noarch
 wrksrc="Archive-Extract-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Archive-Zip/template b/srcpkgs/perl-Archive-Zip/template
index e06ed44535c..ebc31653704 100644
--- a/srcpkgs/perl-Archive-Zip/template
+++ b/srcpkgs/perl-Archive-Zip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Archive-Zip
 version=1.68
 revision=1
-archs=noarch
 wrksrc="Archive-Zip-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Authen-SASL/template b/srcpkgs/perl-Authen-SASL/template
index 9b31f20e858..55329c9e917 100644
--- a/srcpkgs/perl-Authen-SASL/template
+++ b/srcpkgs/perl-Authen-SASL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Authen-SASL
 version=2.16
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-B-Hooks-EndOfScope/template b/srcpkgs/perl-B-Hooks-EndOfScope/template
index 8d2ec1ee190..6ece75610ba 100644
--- a/srcpkgs/perl-B-Hooks-EndOfScope/template
+++ b/srcpkgs/perl-B-Hooks-EndOfScope/template
@@ -14,4 +14,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/B-Hooks-EndOfScope"
 distfiles="${CPAN_SITE}/B/${pkgname/perl-/}-${version}.tar.gz"
 checksum=03aa3dfe5d0aa6471a96f43fe8318179d19794d4a640708f0288f9216ec7acc6
-archs=noarch
diff --git a/srcpkgs/perl-Business-ISBN-Data/template b/srcpkgs/perl-Business-ISBN-Data/template
index 1e0864d9058..674100474ca 100644
--- a/srcpkgs/perl-Business-ISBN-Data/template
+++ b/srcpkgs/perl-Business-ISBN-Data/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN-Data
 version=20191107
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISBN/template b/srcpkgs/perl-Business-ISBN/template
index 9a3d872045f..79451fa92db 100644
--- a/srcpkgs/perl-Business-ISBN/template
+++ b/srcpkgs/perl-Business-ISBN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISBN
 version=3.005
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISMN/template b/srcpkgs/perl-Business-ISMN/template
index 82b5caa5a85..82f8b48d51d 100644
--- a/srcpkgs/perl-Business-ISMN/template
+++ b/srcpkgs/perl-Business-ISMN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISMN
 version=1.201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Business-ISSN/template b/srcpkgs/perl-Business-ISSN/template
index ba5031a7874..c7c1350016d 100644
--- a/srcpkgs/perl-Business-ISSN/template
+++ b/srcpkgs/perl-Business-ISSN/template
@@ -2,7 +2,6 @@
 pkgname=perl-Business-ISSN
 version=1.004
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CGI/template b/srcpkgs/perl-CGI/template
index 8c04e0a3178..2e7e64657f6 100644
--- a/srcpkgs/perl-CGI/template
+++ b/srcpkgs/perl-CGI/template
@@ -2,7 +2,6 @@
 pkgname=perl-CGI
 version=4.50
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Changes/template b/srcpkgs/perl-CPAN-Changes/template
index 3c4291e8350..e43b9b1aedc 100644
--- a/srcpkgs/perl-CPAN-Changes/template
+++ b/srcpkgs/perl-CPAN-Changes/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Changes
 version=0.400002
 revision=2
-archs=noarch
 wrksrc="CPAN-Changes-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Common-Index/template b/srcpkgs/perl-CPAN-Common-Index/template
index e37b7258507..273a368bbcf 100644
--- a/srcpkgs/perl-CPAN-Common-Index/template
+++ b/srcpkgs/perl-CPAN-Common-Index/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Common-Index
 version=0.010
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-DistnameInfo/template b/srcpkgs/perl-CPAN-DistnameInfo/template
index 16703b14b42..a353e608d67 100644
--- a/srcpkgs/perl-CPAN-DistnameInfo/template
+++ b/srcpkgs/perl-CPAN-DistnameInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-DistnameInfo
 version=0.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-CPAN-Meta-Check/template b/srcpkgs/perl-CPAN-Meta-Check/template
index 1bce3bc0b3f..1ae99ce17b3 100644
--- a/srcpkgs/perl-CPAN-Meta-Check/template
+++ b/srcpkgs/perl-CPAN-Meta-Check/template
@@ -2,7 +2,6 @@
 pkgname=perl-CPAN-Meta-Check
 version=0.014
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Canary-Stability/template b/srcpkgs/perl-Canary-Stability/template
index 75eb874d31e..2bfd0243908 100644
--- a/srcpkgs/perl-Canary-Stability/template
+++ b/srcpkgs/perl-Canary-Stability/template
@@ -2,7 +2,6 @@
 pkgname=perl-Canary-Stability
 version=2013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Capture-Tiny/template b/srcpkgs/perl-Capture-Tiny/template
index 16ed2ed387e..9ac147eed2b 100644
--- a/srcpkgs/perl-Capture-Tiny/template
+++ b/srcpkgs/perl-Capture-Tiny/template
@@ -13,4 +13,3 @@ license="Apache-2.0"
 homepage="https://metacpan.org/release/Capture-Tiny"
 distfiles="${CPAN_SITE}/Mail/DAGOLDEN/Capture-Tiny-${version}.tar.gz"
 checksum=6c23113e87bad393308c90a207013e505f659274736638d8c79bac9c67cc3e19
-archs=noarch
diff --git a/srcpkgs/perl-Carp-Clan/template b/srcpkgs/perl-Carp-Clan/template
index 59704ed94f5..f2d100f73ec 100644
--- a/srcpkgs/perl-Carp-Clan/template
+++ b/srcpkgs/perl-Carp-Clan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Carp-Clan
 version=6.08
 revision=1
-archs=noarch
 wrksrc="Carp-Clan-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Accessor/template b/srcpkgs/perl-Class-Accessor/template
index 7dede179620..bfe3ad483d7 100644
--- a/srcpkgs/perl-Class-Accessor/template
+++ b/srcpkgs/perl-Class-Accessor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Accessor
 version=0.51
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Data-Inheritable/template b/srcpkgs/perl-Class-Data-Inheritable/template
index a7cc019bdae..8c7a6b8e448 100644
--- a/srcpkgs/perl-Class-Data-Inheritable/template
+++ b/srcpkgs/perl-Class-Data-Inheritable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Data-Inheritable
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Factory-Util/template b/srcpkgs/perl-Class-Factory-Util/template
index 92597b7ddd4..784eabeaa30 100644
--- a/srcpkgs/perl-Class-Factory-Util/template
+++ b/srcpkgs/perl-Class-Factory-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Factory-Util
 version=1.7
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Class-Inspector/template b/srcpkgs/perl-Class-Inspector/template
index cf071445c1d..78abb98fd8c 100644
--- a/srcpkgs/perl-Class-Inspector/template
+++ b/srcpkgs/perl-Class-Inspector/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Inspector
 version=1.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Load/template b/srcpkgs/perl-Class-Load/template
index 03f6e1c1a9a..ee0fe237b76 100644
--- a/srcpkgs/perl-Class-Load/template
+++ b/srcpkgs/perl-Class-Load/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Load
 version=0.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Method-Modifiers/template b/srcpkgs/perl-Class-Method-Modifiers/template
index 533720aa724..a255a8047f0 100644
--- a/srcpkgs/perl-Class-Method-Modifiers/template
+++ b/srcpkgs/perl-Class-Method-Modifiers/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Method-Modifiers
 version=2.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Singleton/template b/srcpkgs/perl-Class-Singleton/template
index d3ae0a38c8b..b0339fdbcc3 100644
--- a/srcpkgs/perl-Class-Singleton/template
+++ b/srcpkgs/perl-Class-Singleton/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Singleton
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Class-Tiny/template b/srcpkgs/perl-Class-Tiny/template
index 6aee90c1149..1eeba58dc3c 100644
--- a/srcpkgs/perl-Class-Tiny/template
+++ b/srcpkgs/perl-Class-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Class-Tiny
 version=1.006
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Clipboard/template b/srcpkgs/perl-Clipboard/template
index 36ce5a991c4..3bee57ee587 100644
--- a/srcpkgs/perl-Clipboard/template
+++ b/srcpkgs/perl-Clipboard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clipboard
 version=0.26
 revision=1
-archs=noarch
 wrksrc="Clipboard-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Clone-Choose/template b/srcpkgs/perl-Clone-Choose/template
index d5264c751eb..cabbf1da02e 100644
--- a/srcpkgs/perl-Clone-Choose/template
+++ b/srcpkgs/perl-Clone-Choose/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-Choose
 version=0.010
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Test-Without-Module"
diff --git a/srcpkgs/perl-Clone-PP/template b/srcpkgs/perl-Clone-PP/template
index 81ea599562d..3898d320b82 100644
--- a/srcpkgs/perl-Clone-PP/template
+++ b/srcpkgs/perl-Clone-PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Clone-PP
 version=1.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-AutoConf/template b/srcpkgs/perl-Config-AutoConf/template
index 254014993da..9774e110628 100644
--- a/srcpkgs/perl-Config-AutoConf/template
+++ b/srcpkgs/perl-Config-AutoConf/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-AutoConf
 version=0.318
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Config-General/template b/srcpkgs/perl-Config-General/template
index 3b3490b88b9..edb0b74dd47 100644
--- a/srcpkgs/perl-Config-General/template
+++ b/srcpkgs/perl-Config-General/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-General
 version=2.63
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-INI-Reader-Ordered/template b/srcpkgs/perl-Config-INI-Reader-Ordered/template
index e733962c6d0..924a10df4d6 100644
--- a/srcpkgs/perl-Config-INI-Reader-Ordered/template
+++ b/srcpkgs/perl-Config-INI-Reader-Ordered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI-Reader-Ordered
 version=0.020
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Config-INI"
diff --git a/srcpkgs/perl-Config-INI/template b/srcpkgs/perl-Config-INI/template
index 5d24f752f44..69bb56fed6f 100644
--- a/srcpkgs/perl-Config-INI/template
+++ b/srcpkgs/perl-Config-INI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-INI
 version=0.025
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Mixin-Linewise"
diff --git a/srcpkgs/perl-Config-IniFiles/template b/srcpkgs/perl-Config-IniFiles/template
index 30b71ca775e..0b5b7c67fee 100644
--- a/srcpkgs/perl-Config-IniFiles/template
+++ b/srcpkgs/perl-Config-IniFiles/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-IniFiles
 version=3.000003
 revision=1
-archs=noarch
 wrksrc="Config-IniFiles-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Simple/template b/srcpkgs/perl-Config-Simple/template
index dc86662227a..f89baab02a2 100644
--- a/srcpkgs/perl-Config-Simple/template
+++ b/srcpkgs/perl-Config-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Simple
 version=4.59
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Config-Tiny/template b/srcpkgs/perl-Config-Tiny/template
index e96ba7aeab9..817b36e7fa8 100644
--- a/srcpkgs/perl-Config-Tiny/template
+++ b/srcpkgs/perl-Config-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Config-Tiny
 version=2.24
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Convert-BinHex/template b/srcpkgs/perl-Convert-BinHex/template
index d8ead1e579d..a3d5cee38b8 100644
--- a/srcpkgs/perl-Convert-BinHex/template
+++ b/srcpkgs/perl-Convert-BinHex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Convert-BinHex
 version=1.125
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Cookie-Baker/template b/srcpkgs/perl-Cookie-Baker/template
index ecb7b80e30c..97380da327c 100644
--- a/srcpkgs/perl-Cookie-Baker/template
+++ b/srcpkgs/perl-Cookie-Baker/template
@@ -2,7 +2,6 @@
 pkgname=perl-Cookie-Baker
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Crypt-Blowfish_PP/template b/srcpkgs/perl-Crypt-Blowfish_PP/template
index e2e7680ae52..25e05ae03fb 100644
--- a/srcpkgs/perl-Crypt-Blowfish_PP/template
+++ b/srcpkgs/perl-Crypt-Blowfish_PP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-Blowfish_PP
 version=1.12
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-CBC/template b/srcpkgs/perl-Crypt-CBC/template
index f09b1dc8ba3..9ca4812c589 100644
--- a/srcpkgs/perl-Crypt-CBC/template
+++ b/srcpkgs/perl-Crypt-CBC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-CBC
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DES_EDE3/template b/srcpkgs/perl-Crypt-DES_EDE3/template
index e4a7abc00f3..55c7d689554 100644
--- a/srcpkgs/perl-Crypt-DES_EDE3/template
+++ b/srcpkgs/perl-Crypt-DES_EDE3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DES_EDE3
 version=0.01
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-DH/template b/srcpkgs/perl-Crypt-DH/template
index 07c4dc70d23..ccb82e6d101 100644
--- a/srcpkgs/perl-Crypt-DH/template
+++ b/srcpkgs/perl-Crypt-DH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-DH
 version=0.07
 revision=9
-archs=noarch
 wrksrc="Crypt-DH-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Math-BigInt-GMP perl-Archive-Zip"
diff --git a/srcpkgs/perl-Crypt-OpenSSL-Guess/template b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
index 8c207e50fa0..4c9691ec99c 100644
--- a/srcpkgs/perl-Crypt-OpenSSL-Guess/template
+++ b/srcpkgs/perl-Crypt-OpenSSL-Guess/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-OpenSSL-Guess
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-PasswdMD5/template b/srcpkgs/perl-Crypt-PasswdMD5/template
index a579748e61d..7d1fccac254 100644
--- a/srcpkgs/perl-Crypt-PasswdMD5/template
+++ b/srcpkgs/perl-Crypt-PasswdMD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-PasswdMD5
 version=1.40
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Crypt-RC4/template b/srcpkgs/perl-Crypt-RC4/template
index bb7bb8931ec..04bb549019d 100644
--- a/srcpkgs/perl-Crypt-RC4/template
+++ b/srcpkgs/perl-Crypt-RC4/template
@@ -2,7 +2,6 @@
 pkgname=perl-Crypt-RC4
 version=2.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Danga-Socket/template b/srcpkgs/perl-Danga-Socket/template
index 049159b68a7..6ebc84f42e8 100644
--- a/srcpkgs/perl-Danga-Socket/template
+++ b/srcpkgs/perl-Danga-Socket/template
@@ -2,7 +2,6 @@
 pkgname=perl-Danga-Socket
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Compare/template b/srcpkgs/perl-Data-Compare/template
index c5fb3661f94..b7b42a7c299 100644
--- a/srcpkgs/perl-Data-Compare/template
+++ b/srcpkgs/perl-Data-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Compare
 version=1.27
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-Find-Rule perl-Clone"
diff --git a/srcpkgs/perl-Data-Dump/template b/srcpkgs/perl-Data-Dump/template
index 6ec79b62440..2d1cfd4901a 100644
--- a/srcpkgs/perl-Data-Dump/template
+++ b/srcpkgs/perl-Data-Dump/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dump
 version=1.23
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Dx/template b/srcpkgs/perl-Data-Dx/template
index ea44d272f58..4ad2bec1cc2 100644
--- a/srcpkgs/perl-Data-Dx/template
+++ b/srcpkgs/perl-Data-Dx/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Dx
 version=0.000010
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Data-Dump perl-Keyword-Declare"
diff --git a/srcpkgs/perl-Data-OptList/template b/srcpkgs/perl-Data-OptList/template
index 7ea35f387b1..15c14aaf4a8 100644
--- a/srcpkgs/perl-Data-OptList/template
+++ b/srcpkgs/perl-Data-OptList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-OptList
 version=0.110
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Section-Simple/template b/srcpkgs/perl-Data-Section-Simple/template
index 5148ad90e52..5ac37007280 100644
--- a/srcpkgs/perl-Data-Section-Simple/template
+++ b/srcpkgs/perl-Data-Section-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Section-Simple
 version=0.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Uniqid/template b/srcpkgs/perl-Data-Uniqid/template
index 4005118cf6b..fcfa5baecc9 100644
--- a/srcpkgs/perl-Data-Uniqid/template
+++ b/srcpkgs/perl-Data-Uniqid/template
@@ -2,7 +2,6 @@
 pkgname=perl-Data-Uniqid
 version=0.12
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Data-Validate-IP/template b/srcpkgs/perl-Data-Validate-IP/template
index 5e0fb95de5a..2029d98c4c2 100644
--- a/srcpkgs/perl-Data-Validate-IP/template
+++ b/srcpkgs/perl-Data-Validate-IP/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/Data-Validate-IP"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Data/Data-Validate-IP-${version}.tar.gz"
 checksum=e1aa92235dcb9c6fd9b6c8cda184d1af73537cc77f4f83a0f88207a8bfbfb7d6
-archs=noarch
diff --git a/srcpkgs/perl-Date-Calc/template b/srcpkgs/perl-Date-Calc/template
index 3708c34ce4a..9cf7b813852 100644
--- a/srcpkgs/perl-Date-Calc/template
+++ b/srcpkgs/perl-Date-Calc/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="perl perl-Carp-Clan perl-Bit-Vector"
 depends="${makedepends}"
-archs=noarch
 short_desc="Date::Calc - Gregorian calendar date calculations"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
 homepage="https://metacpan.org/release/Date-Calc"
diff --git a/srcpkgs/perl-Date-Manip/template b/srcpkgs/perl-Date-Manip/template
index 1474cd7aa17..2e19d7bee53 100644
--- a/srcpkgs/perl-Date-Manip/template
+++ b/srcpkgs/perl-Date-Manip/template
@@ -2,7 +2,6 @@
 pkgname=perl-Date-Manip
 version=6.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Calendar-Julian/template b/srcpkgs/perl-DateTime-Calendar-Julian/template
index caf881a51e4..160ee75faf6 100644
--- a/srcpkgs/perl-DateTime-Calendar-Julian/template
+++ b/srcpkgs/perl-DateTime-Calendar-Julian/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Calendar-Julian
 version=0.102
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime"
diff --git a/srcpkgs/perl-DateTime-Format-Builder/template b/srcpkgs/perl-DateTime-Format-Builder/template
index 5ebef529fed..20fadc3ae7b 100644
--- a/srcpkgs/perl-DateTime-Format-Builder/template
+++ b/srcpkgs/perl-DateTime-Format-Builder/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Builder
 version=0.82
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-DateTime perl-Class-Factory-Util perl-DateTime-Format-Strptime perl-Params-Validate"
diff --git a/srcpkgs/perl-DateTime-Format-Strptime/template b/srcpkgs/perl-DateTime-Format-Strptime/template
index 4d4dd839035..0aca7d6b237 100644
--- a/srcpkgs/perl-DateTime-Format-Strptime/template
+++ b/srcpkgs/perl-DateTime-Format-Strptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Format-Strptime
 version=1.77
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-DateTime-Locale/template b/srcpkgs/perl-DateTime-Locale/template
index 1c24fdaecce..6b1208e781b 100644
--- a/srcpkgs/perl-DateTime-Locale/template
+++ b/srcpkgs/perl-DateTime-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-Locale
 version=1.25
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-DateTime-TimeZone/template b/srcpkgs/perl-DateTime-TimeZone/template
index b9c9149fc87..a681fa5c7bd 100644
--- a/srcpkgs/perl-DateTime-TimeZone/template
+++ b/srcpkgs/perl-DateTime-TimeZone/template
@@ -2,7 +2,6 @@
 pkgname=perl-DateTime-TimeZone
 version=2.39
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-CheckLib/template b/srcpkgs/perl-Devel-CheckLib/template
index be4e79419aa..fe9bd2398bc 100644
--- a/srcpkgs/perl-Devel-CheckLib/template
+++ b/srcpkgs/perl-Devel-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-CheckLib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="Devel-CheckLib-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-CaptureOutput"
diff --git a/srcpkgs/perl-Devel-GlobalDestruction/template b/srcpkgs/perl-Devel-GlobalDestruction/template
index 538d06d9e9f..5d971b90606 100644
--- a/srcpkgs/perl-Devel-GlobalDestruction/template
+++ b/srcpkgs/perl-Devel-GlobalDestruction/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-GlobalDestruction
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Sub-Exporter-Progressive"
diff --git a/srcpkgs/perl-Devel-StackTrace-AsHTML/template b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
index 446496001c7..42a8a6102de 100644
--- a/srcpkgs/perl-Devel-StackTrace-AsHTML/template
+++ b/srcpkgs/perl-Devel-StackTrace-AsHTML/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Apache-LogFormat-Compiler"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Devel/Devel-StackTrace-AsHTML-${version}.tar.gz"
 checksum=6283dbe2197e2f20009cc4b449997742169cdd951bfc44cbc6e62c2a962d3147
-archs=noarch
diff --git a/srcpkgs/perl-Devel-StackTrace/template b/srcpkgs/perl-Devel-StackTrace/template
index 45972e75631..318568b9c3f 100644
--- a/srcpkgs/perl-Devel-StackTrace/template
+++ b/srcpkgs/perl-Devel-StackTrace/template
@@ -2,7 +2,6 @@
 pkgname=perl-Devel-StackTrace
 version=2.04
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Devel-Symdump/template b/srcpkgs/perl-Devel-Symdump/template
index d4823034b1f..d63c6e5a9d2 100644
--- a/srcpkgs/perl-Devel-Symdump/template
+++ b/srcpkgs/perl-Devel-Symdump/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Devel-Symdump"
 license="GPL-1, Artistic"
 distfiles="$CPAN_SITE/Devel/Devel-Symdump-${version}.tar.gz"
 checksum=826f81a107f5592a2516766ed43beb47e10cc83edc9ea48090b02a36040776c0
-archs=noarch
diff --git a/srcpkgs/perl-Digest-HMAC/template b/srcpkgs/perl-Digest-HMAC/template
index 5ece091d408..e47d13022ed 100644
--- a/srcpkgs/perl-Digest-HMAC/template
+++ b/srcpkgs/perl-Digest-HMAC/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-HMAC
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Digest-Perl-MD5/template b/srcpkgs/perl-Digest-Perl-MD5/template
index 4ea78427ea5..0785fb4d25a 100644
--- a/srcpkgs/perl-Digest-Perl-MD5/template
+++ b/srcpkgs/perl-Digest-Perl-MD5/template
@@ -2,7 +2,6 @@
 pkgname=perl-Digest-Perl-MD5
 version=1.9
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Dist-CheckConflicts/template b/srcpkgs/perl-Dist-CheckConflicts/template
index 8c1f653ca03..0ae6651298f 100644
--- a/srcpkgs/perl-Dist-CheckConflicts/template
+++ b/srcpkgs/perl-Dist-CheckConflicts/template
@@ -2,7 +2,6 @@
 pkgname=perl-Dist-CheckConflicts
 version=0.11
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Date-Format/template b/srcpkgs/perl-Email-Date-Format/template
index 57781d72c02..aa4db10ad48 100644
--- a/srcpkgs/perl-Email-Date-Format/template
+++ b/srcpkgs/perl-Email-Date-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Date-Format
 version=1.005
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-FolderType/template b/srcpkgs/perl-Email-FolderType/template
index a538f294158..3a57b288169 100644
--- a/srcpkgs/perl-Email-FolderType/template
+++ b/srcpkgs/perl-Email-FolderType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-FolderType
 version=0.814
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-LocalDelivery/template b/srcpkgs/perl-Email-LocalDelivery/template
index 3b2ed70646a..19d61c3f06f 100644
--- a/srcpkgs/perl-Email-LocalDelivery/template
+++ b/srcpkgs/perl-Email-LocalDelivery/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-LocalDelivery
 version=1.200
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-ContentType/template b/srcpkgs/perl-Email-MIME-ContentType/template
index 3131fafdbb4..17108543bde 100644
--- a/srcpkgs/perl-Email-MIME-ContentType/template
+++ b/srcpkgs/perl-Email-MIME-ContentType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-ContentType
 version=1.024
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME-Encodings/template b/srcpkgs/perl-Email-MIME-Encodings/template
index ba28cb0ac78..1141dcb43e3 100644
--- a/srcpkgs/perl-Email-MIME-Encodings/template
+++ b/srcpkgs/perl-Email-MIME-Encodings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME-Encodings
 version=1.315
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MIME/template b/srcpkgs/perl-Email-MIME/template
index 55a6b438578..32573aa6f9b 100644
--- a/srcpkgs/perl-Email-MIME/template
+++ b/srcpkgs/perl-Email-MIME/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MIME
 version=1.949
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-MessageID/template b/srcpkgs/perl-Email-MessageID/template
index 5b52585b5f9..729503da15e 100644
--- a/srcpkgs/perl-Email-MessageID/template
+++ b/srcpkgs/perl-Email-MessageID/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-MessageID
 version=1.406
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Email-Simple/template b/srcpkgs/perl-Email-Simple/template
index 57ccc513dbe..f27eec6ebad 100644
--- a/srcpkgs/perl-Email-Simple/template
+++ b/srcpkgs/perl-Email-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Email-Simple
 version=2.216
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Encode-Locale/template b/srcpkgs/perl-Encode-Locale/template
index 53e09d8a2e7..20371b4daf7 100644
--- a/srcpkgs/perl-Encode-Locale/template
+++ b/srcpkgs/perl-Encode-Locale/template
@@ -2,7 +2,6 @@
 pkgname=perl-Encode-Locale
 version=1.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Eval-Closure/template b/srcpkgs/perl-Eval-Closure/template
index c3301afd97f..0a3a9ba40e0 100644
--- a/srcpkgs/perl-Eval-Closure/template
+++ b/srcpkgs/perl-Eval-Closure/template
@@ -2,7 +2,6 @@
 pkgname=perl-Eval-Closure
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exception-Class/template b/srcpkgs/perl-Exception-Class/template
index 3d0f37bf503..91280322f46 100644
--- a/srcpkgs/perl-Exception-Class/template
+++ b/srcpkgs/perl-Exception-Class/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl-Class-Data-Inheritable perl-Devel-StackTrace"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Allows you to declare real exception classes'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Exception-Class"
diff --git a/srcpkgs/perl-Expect/template b/srcpkgs/perl-Expect/template
index 6ec5f668697..8832c5148ef 100644
--- a/srcpkgs/perl-Expect/template
+++ b/srcpkgs/perl-Expect/template
@@ -2,7 +2,6 @@
 pkgname=perl-Expect
 version=1.35
 revision=1
-archs=noarch
 wrksrc="Expect-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Exporter-Tiny/template b/srcpkgs/perl-Exporter-Tiny/template
index c1d2a7c3f9b..091e19bf774 100644
--- a/srcpkgs/perl-Exporter-Tiny/template
+++ b/srcpkgs/perl-Exporter-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Exporter-Tiny
 version=1.002002
 revision=1
-archs=noarch
 wrksrc="Exporter-Tiny-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Config/template b/srcpkgs/perl-ExtUtils-Config/template
index 5951b92a159..6fcc7265c85 100644
--- a/srcpkgs/perl-ExtUtils-Config/template
+++ b/srcpkgs/perl-ExtUtils-Config/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Config
 version=0.008
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-CppGuess/template b/srcpkgs/perl-ExtUtils-CppGuess/template
index df071fc6b85..b1cdbf48c6e 100644
--- a/srcpkgs/perl-ExtUtils-CppGuess/template
+++ b/srcpkgs/perl-ExtUtils-CppGuess/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-CppGuess
 version=0.21
 revision=1
-archs=noarch
 wrksrc="ExtUtils-CppGuess-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Capture-Tiny perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-Depends/template b/srcpkgs/perl-ExtUtils-Depends/template
index 80ac7515fa1..6b6c52e1d5a 100644
--- a/srcpkgs/perl-ExtUtils-Depends/template
+++ b/srcpkgs/perl-ExtUtils-Depends/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Depends
 version=0.8000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-Helpers/template b/srcpkgs/perl-ExtUtils-Helpers/template
index 5b95d1cdeed..7c44bcad431 100644
--- a/srcpkgs/perl-ExtUtils-Helpers/template
+++ b/srcpkgs/perl-ExtUtils-Helpers/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-Helpers
 version=0.026
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-InstallPaths/template b/srcpkgs/perl-ExtUtils-InstallPaths/template
index 168a4104de6..f9408e37b16 100644
--- a/srcpkgs/perl-ExtUtils-InstallPaths/template
+++ b/srcpkgs/perl-ExtUtils-InstallPaths/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-InstallPaths
 version=0.012
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-LibBuilder/template b/srcpkgs/perl-ExtUtils-LibBuilder/template
index c2c582b0aa2..b3a7082d078 100644
--- a/srcpkgs/perl-ExtUtils-LibBuilder/template
+++ b/srcpkgs/perl-ExtUtils-LibBuilder/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-LibBuilder
 version=0.08
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
index 5a42f6710d4..eb51966421e 100644
--- a/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
+++ b/srcpkgs/perl-ExtUtils-MakeMaker-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-MakeMaker-CPANfile
 version=0.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-ExtUtils-PkgConfig/template b/srcpkgs/perl-ExtUtils-PkgConfig/template
index 72e96b548e5..7b1910322d9 100644
--- a/srcpkgs/perl-ExtUtils-PkgConfig/template
+++ b/srcpkgs/perl-ExtUtils-PkgConfig/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl pkg-config"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="Simplistic perl interface to pkg-config"
 homepage="https://metacpan.org/release/ExtUtils-PkgConfig"
 license="LGPL-2.1"
diff --git a/srcpkgs/perl-ExtUtils-XSpp/template b/srcpkgs/perl-ExtUtils-XSpp/template
index 708071a8279..29bf5791813 100644
--- a/srcpkgs/perl-ExtUtils-XSpp/template
+++ b/srcpkgs/perl-ExtUtils-XSpp/template
@@ -2,7 +2,6 @@
 pkgname=perl-ExtUtils-XSpp
 version=0.18
 revision=1
-archs=noarch
 wrksrc="ExtUtils-XSpp-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Base perl-Test-Differences"
diff --git a/srcpkgs/perl-FFI-CheckLib/template b/srcpkgs/perl-FFI-CheckLib/template
index 3b740cdacf3..cb88b1082d7 100644
--- a/srcpkgs/perl-FFI-CheckLib/template
+++ b/srcpkgs/perl-FFI-CheckLib/template
@@ -2,7 +2,6 @@
 pkgname=perl-FFI-CheckLib
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-BaseDir/template b/srcpkgs/perl-File-BaseDir/template
index ada966fc66f..90b32ebe6e5 100644
--- a/srcpkgs/perl-File-BaseDir/template
+++ b/srcpkgs/perl-File-BaseDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-BaseDir
 version=0.08
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Copy-Recursive/template b/srcpkgs/perl-File-Copy-Recursive/template
index 02d38a02582..a62a14f1614 100644
--- a/srcpkgs/perl-File-Copy-Recursive/template
+++ b/srcpkgs/perl-File-Copy-Recursive/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Copy-Recursive
 version=0.45
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-DesktopEntry/template b/srcpkgs/perl-File-DesktopEntry/template
index 5ce93ef5ff1..3b0baa47c3f 100644
--- a/srcpkgs/perl-File-DesktopEntry/template
+++ b/srcpkgs/perl-File-DesktopEntry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-DesktopEntry
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Find-Rule/template b/srcpkgs/perl-File-Find-Rule/template
index aecdb1ab8d5..82f01d58436 100644
--- a/srcpkgs/perl-File-Find-Rule/template
+++ b/srcpkgs/perl-File-Find-Rule/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Find-Rule
 version=0.34
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Glob perl-Number-Compare"
diff --git a/srcpkgs/perl-File-Flock-Retry/template b/srcpkgs/perl-File-Flock-Retry/template
index 0d7d912386a..c89b100a27f 100644
--- a/srcpkgs/perl-File-Flock-Retry/template
+++ b/srcpkgs/perl-File-Flock-Retry/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Flock-Retry
 version=0.631
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-HomeDir/template b/srcpkgs/perl-File-HomeDir/template
index d318404f3cb..bb719e466f9 100644
--- a/srcpkgs/perl-File-HomeDir/template
+++ b/srcpkgs/perl-File-HomeDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-HomeDir
 version=1.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Which"
diff --git a/srcpkgs/perl-File-KeePass/template b/srcpkgs/perl-File-KeePass/template
index 35ac51656ea..2d8b536cfdd 100644
--- a/srcpkgs/perl-File-KeePass/template
+++ b/srcpkgs/perl-File-KeePass/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-KeePass
 version=2.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Listing/template b/srcpkgs/perl-File-Listing/template
index 88e1782c01a..431be101ddf 100644
--- a/srcpkgs/perl-File-Listing/template
+++ b/srcpkgs/perl-File-Listing/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Listing
 version=6.04
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-MimeInfo/template b/srcpkgs/perl-File-MimeInfo/template
index c9286a3e2be..a35a097b9fa 100644
--- a/srcpkgs/perl-File-MimeInfo/template
+++ b/srcpkgs/perl-File-MimeInfo/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-MimeInfo
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Next/template b/srcpkgs/perl-File-Next/template
index ad618b321f0..10f79dfeea8 100644
--- a/srcpkgs/perl-File-Next/template
+++ b/srcpkgs/perl-File-Next/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Next
 version=1.18
 revision=1
-archs=noarch
 wrksrc="File-Next-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Path-Expand/template b/srcpkgs/perl-File-Path-Expand/template
index a1160ae2bd0..330f3255553 100644
--- a/srcpkgs/perl-File-Path-Expand/template
+++ b/srcpkgs/perl-File-Path-Expand/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Path-Expand
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Remove/template b/srcpkgs/perl-File-Remove/template
index bf19bbe94c6..1d97e011026 100644
--- a/srcpkgs/perl-File-Remove/template
+++ b/srcpkgs/perl-File-Remove/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Remove
 version=1.58
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-Rename/template b/srcpkgs/perl-File-Rename/template
index 5c198686de0..fd7c1000574 100644
--- a/srcpkgs/perl-File-Rename/template
+++ b/srcpkgs/perl-File-Rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Rename
 version=1.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-File-ShareDir-Install/template b/srcpkgs/perl-File-ShareDir-Install/template
index 208a8575079..63c63c755e3 100644
--- a/srcpkgs/perl-File-ShareDir-Install/template
+++ b/srcpkgs/perl-File-ShareDir-Install/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
-archs=noarch
 short_desc="File::ShareDir::Install - Install shared files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/File-ShareDir-Install"
diff --git a/srcpkgs/perl-File-ShareDir/template b/srcpkgs/perl-File-ShareDir/template
index beb7e228afc..6c453f01997 100644
--- a/srcpkgs/perl-File-ShareDir/template
+++ b/srcpkgs/perl-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-ShareDir
 version=1.116
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp-Tiny/template b/srcpkgs/perl-File-Slurp-Tiny/template
index 8a9d8804674..a1dbc242b72 100644
--- a/srcpkgs/perl-File-Slurp-Tiny/template
+++ b/srcpkgs/perl-File-Slurp-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp-Tiny
 version=0.004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurp/template b/srcpkgs/perl-File-Slurp/template
index e80907b93f6..6d6eaf13023 100644
--- a/srcpkgs/perl-File-Slurp/template
+++ b/srcpkgs/perl-File-Slurp/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurp
 version=9999.30
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Slurper/template b/srcpkgs/perl-File-Slurper/template
index 4d863f45594..abad103efaf 100644
--- a/srcpkgs/perl-File-Slurper/template
+++ b/srcpkgs/perl-File-Slurper/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Slurper
 version=0.012
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Which/template b/srcpkgs/perl-File-Which/template
index 3cf781fc48c..dda22972729 100644
--- a/srcpkgs/perl-File-Which/template
+++ b/srcpkgs/perl-File-Which/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Which
 version=1.23
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-Write-Rotate/template b/srcpkgs/perl-File-Write-Rotate/template
index b0cce6f7c18..6f8e780d6f6 100644
--- a/srcpkgs/perl-File-Write-Rotate/template
+++ b/srcpkgs/perl-File-Write-Rotate/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-Write-Rotate
 version=0.321
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-chdir/template b/srcpkgs/perl-File-chdir/template
index af6a761eaf2..6a37200eda4 100644
--- a/srcpkgs/perl-File-chdir/template
+++ b/srcpkgs/perl-File-chdir/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-chdir
 version=0.1011
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-File-pushd/template b/srcpkgs/perl-File-pushd/template
index 1ff8d169a2f..2d94f16b604 100644
--- a/srcpkgs/perl-File-pushd/template
+++ b/srcpkgs/perl-File-pushd/template
@@ -2,7 +2,6 @@
 pkgname=perl-File-pushd
 version=1.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Filesys-Notify-Simple/template b/srcpkgs/perl-Filesys-Notify-Simple/template
index 63162d61a23..4ec2992d5bf 100644
--- a/srcpkgs/perl-Filesys-Notify-Simple/template
+++ b/srcpkgs/perl-Filesys-Notify-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Filesys-Notify-Simple
 version=0.14
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Font-TTF/template b/srcpkgs/perl-Font-TTF/template
index 16637e92dbc..9e521a86ca1 100644
--- a/srcpkgs/perl-Font-TTF/template
+++ b/srcpkgs/perl-Font-TTF/template
@@ -2,7 +2,6 @@
 pkgname=perl-Font-TTF
 version=1.06
 revision=3
-archs=noarch
 wrksrc="Font-TTF-${version}"
 build_style=perl-module
 hostmakedepends="perl-IO-String"
diff --git a/srcpkgs/perl-Getopt-Compact/template b/srcpkgs/perl-Getopt-Compact/template
index 4fd53e9b485..693125559ff 100644
--- a/srcpkgs/perl-Getopt-Compact/template
+++ b/srcpkgs/perl-Getopt-Compact/template
@@ -2,7 +2,6 @@
 pkgname=perl-Getopt-Compact
 version=0.04
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-GooCanvas2/template b/srcpkgs/perl-GooCanvas2/template
index c1236ce2d94..407993e27f5 100644
--- a/srcpkgs/perl-GooCanvas2/template
+++ b/srcpkgs/perl-GooCanvas2/template
@@ -2,7 +2,6 @@
 pkgname=perl-GooCanvas2
 version=0.06
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Graphics-ColorUtils/template b/srcpkgs/perl-Graphics-ColorUtils/template
index eaa71105c53..d11ed93971f 100644
--- a/srcpkgs/perl-Graphics-ColorUtils/template
+++ b/srcpkgs/perl-Graphics-ColorUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-Graphics-ColorUtils
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk2-Ex-Simple-List/template b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
index e07199fd18a..6399c0d906f 100644
--- a/srcpkgs/perl-Gtk2-Ex-Simple-List/template
+++ b/srcpkgs/perl-Gtk2-Ex-Simple-List/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk2-Ex-Simple-List
 version=0.50
 revision=2
-archs=noarch
 wrksrc="Gtk2-Ex-Simple-List-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3-SimpleList/template b/srcpkgs/perl-Gtk3-SimpleList/template
index 5e647b5a737..78e57b052c3 100644
--- a/srcpkgs/perl-Gtk3-SimpleList/template
+++ b/srcpkgs/perl-Gtk3-SimpleList/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3-SimpleList
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Gtk3/template b/srcpkgs/perl-Gtk3/template
index d1ab6cccf8c..b5f50a2f058 100644
--- a/srcpkgs/perl-Gtk3/template
+++ b/srcpkgs/perl-Gtk3/template
@@ -2,7 +2,6 @@
 pkgname=perl-Gtk3
 version=0.037
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Form/template b/srcpkgs/perl-HTML-Form/template
index 0eeb276979c..bf4020cfe3f 100644
--- a/srcpkgs/perl-HTML-Form/template
+++ b/srcpkgs/perl-HTML-Form/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Form
 version=6.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tagset/template b/srcpkgs/perl-HTML-Tagset/template
index 5525e6d93ad..3b8ed139843 100644
--- a/srcpkgs/perl-HTML-Tagset/template
+++ b/srcpkgs/perl-HTML-Tagset/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tagset
 version=3.20
 revision=7
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTML-Tree/template b/srcpkgs/perl-HTML-Tree/template
index b77bf5c83a6..328478a1b15 100644
--- a/srcpkgs/perl-HTML-Tree/template
+++ b/srcpkgs/perl-HTML-Tree/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTML-Tree
 version=5.07
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-HTTP-Cookies/template b/srcpkgs/perl-HTTP-Cookies/template
index b3bf18556b3..06e37f0719e 100644
--- a/srcpkgs/perl-HTTP-Cookies/template
+++ b/srcpkgs/perl-HTTP-Cookies/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Cookies
 version=6.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Daemon/template b/srcpkgs/perl-HTTP-Daemon/template
index 5ca067d49d5..ba5d3f2190a 100644
--- a/srcpkgs/perl-HTTP-Daemon/template
+++ b/srcpkgs/perl-HTTP-Daemon/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Daemon
 version=6.12
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Date/template b/srcpkgs/perl-HTTP-Date/template
index c97750feba0..c193712ee37 100644
--- a/srcpkgs/perl-HTTP-Date/template
+++ b/srcpkgs/perl-HTTP-Date/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Date
 version=6.05
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Entity-Parser/template b/srcpkgs/perl-HTTP-Entity-Parser/template
index 6fcada68323..8886aa27d4b 100644
--- a/srcpkgs/perl-HTTP-Entity-Parser/template
+++ b/srcpkgs/perl-HTTP-Entity-Parser/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Entity-Parser
 version=0.24
 revision=1
-archs=noarch
 wrksrc="HTTP-Entity-Parser-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Headers-Fast/template b/srcpkgs/perl-HTTP-Headers-Fast/template
index 2f263d67329..69876b00abb 100644
--- a/srcpkgs/perl-HTTP-Headers-Fast/template
+++ b/srcpkgs/perl-HTTP-Headers-Fast/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Headers-Fast
 version=0.22
 revision=1
-archs=noarch
 wrksrc="HTTP-Headers-Fast-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-HTTP-Message/template b/srcpkgs/perl-HTTP-Message/template
index 3fb6cd73ecf..d1fa295004e 100644
--- a/srcpkgs/perl-HTTP-Message/template
+++ b/srcpkgs/perl-HTTP-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Message
 version=6.24
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-MultiPartParser/template b/srcpkgs/perl-HTTP-MultiPartParser/template
index 91c07646740..8f0a5ca5c1a 100644
--- a/srcpkgs/perl-HTTP-MultiPartParser/template
+++ b/srcpkgs/perl-HTTP-MultiPartParser/template
@@ -14,4 +14,3 @@ homepage="https://metacpan.org/release/HTTP-MultiPartParser"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/HTTP/HTTP-MultiPartParser-${version}.tar.gz"
 checksum=5eddda159f54d16f868e032440ac2b024e55aac48931871b62627f1a16d00b12
-archs=noarch
diff --git a/srcpkgs/perl-HTTP-Negotiate/template b/srcpkgs/perl-HTTP-Negotiate/template
index 7cdc61fca6c..3fa8d2c8373 100644
--- a/srcpkgs/perl-HTTP-Negotiate/template
+++ b/srcpkgs/perl-HTTP-Negotiate/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Negotiate
 version=6.01
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Response-Encoding/template b/srcpkgs/perl-HTTP-Response-Encoding/template
index 8f2b5d0a854..c21570e1a36 100644
--- a/srcpkgs/perl-HTTP-Response-Encoding/template
+++ b/srcpkgs/perl-HTTP-Response-Encoding/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Response-Encoding
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Server-Simple/template b/srcpkgs/perl-HTTP-Server-Simple/template
index 732f2a05326..a2a50984056 100644
--- a/srcpkgs/perl-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Server-Simple
 version=0.52
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-HTTP-Tinyish/template b/srcpkgs/perl-HTTP-Tinyish/template
index 065830e5d50..fb574fefcca 100644
--- a/srcpkgs/perl-HTTP-Tinyish/template
+++ b/srcpkgs/perl-HTTP-Tinyish/template
@@ -2,7 +2,6 @@
 pkgname=perl-HTTP-Tinyish
 version=0.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-Merge/template b/srcpkgs/perl-Hash-Merge/template
index 8b01ec990ce..935f53319b2 100644
--- a/srcpkgs/perl-Hash-Merge/template
+++ b/srcpkgs/perl-Hash-Merge/template
@@ -2,7 +2,6 @@
 pkgname=perl-Hash-Merge
 version=0.302
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Hash-MultiValue/template b/srcpkgs/perl-Hash-MultiValue/template
index d9be3ac82ab..8624237f1ef 100644
--- a/srcpkgs/perl-Hash-MultiValue/template
+++ b/srcpkgs/perl-Hash-MultiValue/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Hash-MultiValue"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Hash/Hash-MultiValue-${version}.tar.gz"
 checksum=66181df7aa68e2786faf6895c88b18b95c800a8e4e6fb4c07fd176410a3c73f4
-archs=noarch
diff --git a/srcpkgs/perl-IO-CaptureOutput/template b/srcpkgs/perl-IO-CaptureOutput/template
index e2d5f360b38..1ad727f0916 100644
--- a/srcpkgs/perl-IO-CaptureOutput/template
+++ b/srcpkgs/perl-IO-CaptureOutput/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-CaptureOutput
 version=1.1105
 revision=1
-archs=noarch
 wrksrc="IO-CaptureOutput-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-HTML/template b/srcpkgs/perl-IO-HTML/template
index 7fb1ca71ede..2566ea52211 100644
--- a/srcpkgs/perl-IO-HTML/template
+++ b/srcpkgs/perl-IO-HTML/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-HTML
 version=1.001
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-SessionData/template b/srcpkgs/perl-IO-SessionData/template
index 04b7108a4df..0c0f2cefb7c 100644
--- a/srcpkgs/perl-IO-SessionData/template
+++ b/srcpkgs/perl-IO-SessionData/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-SessionData
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-INET6/template b/srcpkgs/perl-IO-Socket-INET6/template
index c94145ca85a..f67537b5b17 100644
--- a/srcpkgs/perl-IO-Socket-INET6/template
+++ b/srcpkgs/perl-IO-Socket-INET6/template
@@ -8,7 +8,6 @@ hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-Socket6"
 checkdepends="perl-Test-Pod perl-Test-Pod-Coverage"
 depends="${makedepends}"
-archs=noarch
 short_desc="IO::Socket::INET6 - Object interface for AF_INET/AF_INET6 domain sockets"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/IO-Socket-INET6"
diff --git a/srcpkgs/perl-IO-Socket-SSL/template b/srcpkgs/perl-IO-Socket-SSL/template
index 70463405a2a..21792ff27ac 100644
--- a/srcpkgs/perl-IO-Socket-SSL/template
+++ b/srcpkgs/perl-IO-Socket-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-SSL
 version=2.068
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Socket-Socks/template b/srcpkgs/perl-IO-Socket-Socks/template
index d37fbcfc55a..8a970ad4a2e 100644
--- a/srcpkgs/perl-IO-Socket-Socks/template
+++ b/srcpkgs/perl-IO-Socket-Socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Socket-Socks
 version=0.74
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-String/template b/srcpkgs/perl-IO-String/template
index 7c0735b6b81..4732a8ee56e 100644
--- a/srcpkgs/perl-IO-String/template
+++ b/srcpkgs/perl-IO-String/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-String
 version=1.08
 revision=2
-archs=noarch
 wrksrc="IO-String-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-Stty/template b/srcpkgs/perl-IO-Stty/template
index a6fdf1c2fe6..cc00d3bc064 100644
--- a/srcpkgs/perl-IO-Stty/template
+++ b/srcpkgs/perl-IO-Stty/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-Stty
 version=0.04
 revision=1
-archs=noarch
 wrksrc="IO-Stty-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IO-stringy/template b/srcpkgs/perl-IO-stringy/template
index 411a8374bcf..ccc92e36fc0 100644
--- a/srcpkgs/perl-IO-stringy/template
+++ b/srcpkgs/perl-IO-stringy/template
@@ -2,7 +2,6 @@
 pkgname=perl-IO-stringy
 version=2.113
 revision=1
-archs=noarch
 wrksrc="IO-Stringy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run/template b/srcpkgs/perl-IPC-Run/template
index ceb5b93652b..dccd5ebcbbb 100644
--- a/srcpkgs/perl-IPC-Run/template
+++ b/srcpkgs/perl-IPC-Run/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run
 version=20200505.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-Run3/template b/srcpkgs/perl-IPC-Run3/template
index 25155d2b8f3..068ec8b309f 100644
--- a/srcpkgs/perl-IPC-Run3/template
+++ b/srcpkgs/perl-IPC-Run3/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-Run3
 version=0.048
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-IPC-System-Simple/template b/srcpkgs/perl-IPC-System-Simple/template
index 29fe8c39e4b..a022bad07c9 100644
--- a/srcpkgs/perl-IPC-System-Simple/template
+++ b/srcpkgs/perl-IPC-System-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-IPC-System-Simple
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Importer/template b/srcpkgs/perl-Importer/template
index 455ee533b1b..2d848054f57 100644
--- a/srcpkgs/perl-Importer/template
+++ b/srcpkgs/perl-Importer/template
@@ -2,7 +2,6 @@
 pkgname=perl-Importer
 version=0.025
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Inline-C/template b/srcpkgs/perl-Inline-C/template
index 1ed461f4ffa..a38df73e0c3 100644
--- a/srcpkgs/perl-Inline-C/template
+++ b/srcpkgs/perl-Inline-C/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline-C
 version=0.81
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Inline/template b/srcpkgs/perl-Inline/template
index 60849405c13..c8099adbad9 100644
--- a/srcpkgs/perl-Inline/template
+++ b/srcpkgs/perl-Inline/template
@@ -2,7 +2,6 @@
 pkgname=perl-Inline
 version=0.86
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON-MaybeXS/template b/srcpkgs/perl-JSON-MaybeXS/template
index 5bde5e5d988..88bf28d7481 100644
--- a/srcpkgs/perl-JSON-MaybeXS/template
+++ b/srcpkgs/perl-JSON-MaybeXS/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON-MaybeXS
 version=1.004002
 revision=1
-archs=noarch
 wrksrc="JSON-MaybeXS-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-JSON/template b/srcpkgs/perl-JSON/template
index 2d3962b3835..a2386e14e2a 100644
--- a/srcpkgs/perl-JSON/template
+++ b/srcpkgs/perl-JSON/template
@@ -2,7 +2,6 @@
 pkgname=perl-JSON
 version=4.02
 revision=1
-archs=noarch
 wrksrc="JSON-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Keyword-Declare/template b/srcpkgs/perl-Keyword-Declare/template
index 67afa378530..54b839a4316 100644
--- a/srcpkgs/perl-Keyword-Declare/template
+++ b/srcpkgs/perl-Keyword-Declare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Declare
 version=0.001017
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope perl-Keyword-Simple perl-PPR"
diff --git a/srcpkgs/perl-Keyword-Simple/template b/srcpkgs/perl-Keyword-Simple/template
index abc491b1a2a..16b0a062a2b 100644
--- a/srcpkgs/perl-Keyword-Simple/template
+++ b/srcpkgs/perl-Keyword-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Keyword-Simple
 version=0.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-MediaTypes/template b/srcpkgs/perl-LWP-MediaTypes/template
index bdb32bcf9ee..a861f096acd 100644
--- a/srcpkgs/perl-LWP-MediaTypes/template
+++ b/srcpkgs/perl-LWP-MediaTypes/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-MediaTypes
 version=6.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-https/template b/srcpkgs/perl-LWP-Protocol-https/template
index a78137a3199..5b64992fb00 100644
--- a/srcpkgs/perl-LWP-Protocol-https/template
+++ b/srcpkgs/perl-LWP-Protocol-https/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-https
 version=6.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP-Protocol-socks/template b/srcpkgs/perl-LWP-Protocol-socks/template
index 15a96605eea..dc2a1b01c58 100644
--- a/srcpkgs/perl-LWP-Protocol-socks/template
+++ b/srcpkgs/perl-LWP-Protocol-socks/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP-Protocol-socks
 version=1.7
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-LWP/template b/srcpkgs/perl-LWP/template
index 52c256e3b80..24238e19363 100644
--- a/srcpkgs/perl-LWP/template
+++ b/srcpkgs/perl-LWP/template
@@ -2,7 +2,6 @@
 pkgname=perl-LWP
 version=6.47
 revision=1
-archs=noarch
 wrksrc="libwww-perl-${version}"
 build_style=perl-module
 hostmakedepends="
diff --git a/srcpkgs/perl-Lingua-Translit/template b/srcpkgs/perl-Lingua-Translit/template
index 075e12b8190..f3caaac516e 100644
--- a/srcpkgs/perl-Lingua-Translit/template
+++ b/srcpkgs/perl-Lingua-Translit/template
@@ -2,7 +2,6 @@
 pkgname=perl-Lingua-Translit
 version=0.28
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Linux-DesktopFiles/template b/srcpkgs/perl-Linux-DesktopFiles/template
index 9d6cda1c3f7..0cde8fbf700 100644
--- a/srcpkgs/perl-Linux-DesktopFiles/template
+++ b/srcpkgs/perl-Linux-DesktopFiles/template
@@ -4,7 +4,6 @@ version=0.25
 revision=1
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${makedepends}"
diff --git a/srcpkgs/perl-Linux-Distribution/template b/srcpkgs/perl-Linux-Distribution/template
index 01a726003d3..9e9ef9c3ac0 100644
--- a/srcpkgs/perl-Linux-Distribution/template
+++ b/srcpkgs/perl-Linux-Distribution/template
@@ -2,7 +2,6 @@
 pkgname=perl-Linux-Distribution
 version=0.23
 revision=2
-archs=noarch
 wrksrc="Linux-Distribution-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-AllUtils/template b/srcpkgs/perl-List-AllUtils/template
index a47d19136ac..2a422e705be 100644
--- a/srcpkgs/perl-List-AllUtils/template
+++ b/srcpkgs/perl-List-AllUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-AllUtils
 version=0.16
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-MoreUtils/template b/srcpkgs/perl-List-MoreUtils/template
index 55467ee119b..d4f371fc627 100644
--- a/srcpkgs/perl-List-MoreUtils/template
+++ b/srcpkgs/perl-List-MoreUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-MoreUtils
 version=0.428
 revision=2
-archs=noarch
 wrksrc="List-MoreUtils-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-SomeUtils/template b/srcpkgs/perl-List-SomeUtils/template
index df6e1570cd0..014fd652caa 100644
--- a/srcpkgs/perl-List-SomeUtils/template
+++ b/srcpkgs/perl-List-SomeUtils/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-SomeUtils
 version=0.58
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-List-UtilsBy/template b/srcpkgs/perl-List-UtilsBy/template
index 7f22975ec4f..359fe5c1a9e 100644
--- a/srcpkgs/perl-List-UtilsBy/template
+++ b/srcpkgs/perl-List-UtilsBy/template
@@ -2,7 +2,6 @@
 pkgname=perl-List-UtilsBy
 version=0.11
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Locale-PO/template b/srcpkgs/perl-Locale-PO/template
index 77341df5cdf..a7efbeec358 100644
--- a/srcpkgs/perl-Locale-PO/template
+++ b/srcpkgs/perl-Locale-PO/template
@@ -2,7 +2,6 @@
 pkgname=perl-Locale-PO
 version=0.27
 revision=3
-archs=noarch
 wrksrc="Locale-PO-${version}"
 build_style="perl-module"
 hostmakedepends="perl perl-File-Slurp"
diff --git a/srcpkgs/perl-Log-Log4perl/template b/srcpkgs/perl-Log-Log4perl/template
index 3af10b95a39..5633665e577 100644
--- a/srcpkgs/perl-Log-Log4perl/template
+++ b/srcpkgs/perl-Log-Log4perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Log-Log4perl
 version=1.50
 revision=1
-archs=noarch
 wrksrc="Log-Log4perl-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Charset/template b/srcpkgs/perl-MIME-Charset/template
index 568dc6d95e1..8aa6b243e7a 100644
--- a/srcpkgs/perl-MIME-Charset/template
+++ b/srcpkgs/perl-MIME-Charset/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Charset
 version=1.012.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-Types/template b/srcpkgs/perl-MIME-Types/template
index 4ce98fe5137..7253144ee47 100644
--- a/srcpkgs/perl-MIME-Types/template
+++ b/srcpkgs/perl-MIME-Types/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-Types
 version=2.17
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MIME-tools/template b/srcpkgs/perl-MIME-tools/template
index e4df2da1748..f12f1e5cc1c 100644
--- a/srcpkgs/perl-MIME-tools/template
+++ b/srcpkgs/perl-MIME-tools/template
@@ -2,7 +2,6 @@
 pkgname=perl-MIME-tools
 version=5.509
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Info/template b/srcpkgs/perl-MP3-Info/template
index 70b84cc316c..9bc827ca727 100644
--- a/srcpkgs/perl-MP3-Info/template
+++ b/srcpkgs/perl-MP3-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Info
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MP3-Tag/template b/srcpkgs/perl-MP3-Tag/template
index 1bff6e2e7b7..62377f0bea1 100644
--- a/srcpkgs/perl-MP3-Tag/template
+++ b/srcpkgs/perl-MP3-Tag/template
@@ -2,7 +2,6 @@
 pkgname=perl-MP3-Tag
 version=1.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl unzip"
diff --git a/srcpkgs/perl-MRO-Compat/template b/srcpkgs/perl-MRO-Compat/template
index bf51f72241c..6c09d01d943 100644
--- a/srcpkgs/perl-MRO-Compat/template
+++ b/srcpkgs/perl-MRO-Compat/template
@@ -2,7 +2,6 @@
 pkgname=perl-MRO-Compat
 version=0.13
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Box/template b/srcpkgs/perl-Mail-Box/template
index f2e68883b5e..c21c166845b 100644
--- a/srcpkgs/perl-Mail-Box/template
+++ b/srcpkgs/perl-Mail-Box/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Box
 version=3.008
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-DKIM/template b/srcpkgs/perl-Mail-DKIM/template
index 5dfd3f9b2f0..30af708ec25 100644
--- a/srcpkgs/perl-Mail-DKIM/template
+++ b/srcpkgs/perl-Mail-DKIM/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-DKIM
 version=1.20200724
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Message/template b/srcpkgs/perl-Mail-Message/template
index 1bf220ad388..76ed0153002 100644
--- a/srcpkgs/perl-Mail-Message/template
+++ b/srcpkgs/perl-Mail-Message/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Message
 version=3.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-POP3Client/template b/srcpkgs/perl-Mail-POP3Client/template
index 5317b8ce273..577dfc1c30c 100644
--- a/srcpkgs/perl-Mail-POP3Client/template
+++ b/srcpkgs/perl-Mail-POP3Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-POP3Client
 version=2.19
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Sendmail/template b/srcpkgs/perl-Mail-Sendmail/template
index 55fdfc7f3ad..b61ecddae98 100644
--- a/srcpkgs/perl-Mail-Sendmail/template
+++ b/srcpkgs/perl-Mail-Sendmail/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Sendmail
 version=0.80
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mail-Transport/template b/srcpkgs/perl-Mail-Transport/template
index 1e1501c286e..f1ec85e7000 100644
--- a/srcpkgs/perl-Mail-Transport/template
+++ b/srcpkgs/perl-Mail-Transport/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mail-Transport
 version=3.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-MailTools/template b/srcpkgs/perl-MailTools/template
index 8687178a114..65911f6edb5 100644
--- a/srcpkgs/perl-MailTools/template
+++ b/srcpkgs/perl-MailTools/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-TimeDate"
 depends="${makedepends}"
-archs=noarch
 short_desc="MailTools -- Various e-mail related modules"
 maintainer="Orphaned <orphan@voidlinux.org>"
 homepage="https://metacpan.org/release/MailTools"
diff --git a/srcpkgs/perl-Menlo-Legacy/template b/srcpkgs/perl-Menlo-Legacy/template
index 217e8836b13..5b285a92548 100644
--- a/srcpkgs/perl-Menlo-Legacy/template
+++ b/srcpkgs/perl-Menlo-Legacy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo-Legacy
 version=1.9022
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Menlo/template b/srcpkgs/perl-Menlo/template
index c16d725e03b..94751be3421 100644
--- a/srcpkgs/perl-Menlo/template
+++ b/srcpkgs/perl-Menlo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Menlo
 version=1.9019
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mixin-Linewise/template b/srcpkgs/perl-Mixin-Linewise/template
index 1f2c66462b7..02573bc745a 100644
--- a/srcpkgs/perl-Mixin-Linewise/template
+++ b/srcpkgs/perl-Mixin-Linewise/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mixin-Linewise
 version=0.108
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-PerlIO-utf8-strict perl-Sub-Exporter"
diff --git a/srcpkgs/perl-Module-Build-Tiny/template b/srcpkgs/perl-Module-Build-Tiny/template
index f1b3c327040..e7c462fe4d6 100644
--- a/srcpkgs/perl-Module-Build-Tiny/template
+++ b/srcpkgs/perl-Module-Build-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build-Tiny
 version=0.039
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-ExtUtils-Config perl-ExtUtils-Helpers perl-ExtUtils-InstallPaths"
diff --git a/srcpkgs/perl-Module-Build/template b/srcpkgs/perl-Module-Build/template
index 654c0dedc6b..251896beee8 100644
--- a/srcpkgs/perl-Module-Build/template
+++ b/srcpkgs/perl-Module-Build/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Build
 version=0.4231
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-CPANfile/template b/srcpkgs/perl-Module-CPANfile/template
index b6c80ffe2d9..6a01786a74a 100644
--- a/srcpkgs/perl-Module-CPANfile/template
+++ b/srcpkgs/perl-Module-CPANfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-CPANfile
 version=1.1004
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Find/template b/srcpkgs/perl-Module-Find/template
index 53aaaf84e0a..80d4c29af95 100644
--- a/srcpkgs/perl-Module-Find/template
+++ b/srcpkgs/perl-Module-Find/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Find
 version=0.15
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Implementation/template b/srcpkgs/perl-Module-Implementation/template
index cd8764774e0..725a6a104cb 100644
--- a/srcpkgs/perl-Module-Implementation/template
+++ b/srcpkgs/perl-Module-Implementation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Implementation
 version=0.09
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Manifest/template b/srcpkgs/perl-Module-Manifest/template
index 1a56b9da224..86674f57437 100644
--- a/srcpkgs/perl-Module-Manifest/template
+++ b/srcpkgs/perl-Module-Manifest/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Module-Manifest"
 license="Artistic, GPL-1"
 distfiles="$CPAN_SITE/Module/Module-Manifest-${version}.tar.gz"
 checksum=a395f80ff15ea0e66fd6c453844b6787ed4a875a3cd8df9f7e29280250bd539b
-archs=noarch
diff --git a/srcpkgs/perl-Module-Pluggable/template b/srcpkgs/perl-Module-Pluggable/template
index 793c7d6c8bd..b66ec862bdc 100644
--- a/srcpkgs/perl-Module-Pluggable/template
+++ b/srcpkgs/perl-Module-Pluggable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Pluggable
 version=5.2
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Module-Runtime/template b/srcpkgs/perl-Module-Runtime/template
index a8e421f60e1..11231dffd67 100644
--- a/srcpkgs/perl-Module-Runtime/template
+++ b/srcpkgs/perl-Module-Runtime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Module-Runtime
 version=0.016
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Mojolicious/template b/srcpkgs/perl-Mojolicious/template
index 14cf2b6160e..46174772c5e 100644
--- a/srcpkgs/perl-Mojolicious/template
+++ b/srcpkgs/perl-Mojolicious/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mojolicious
 version=8.42
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Monkey-Patch-Action/template b/srcpkgs/perl-Monkey-Patch-Action/template
index f13376e85df..2d7bfdf6240 100644
--- a/srcpkgs/perl-Monkey-Patch-Action/template
+++ b/srcpkgs/perl-Monkey-Patch-Action/template
@@ -2,7 +2,6 @@
 pkgname=perl-Monkey-Patch-Action
 version=0.061
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Moo/template b/srcpkgs/perl-Moo/template
index 155a50b3112..ad85f0207cb 100644
--- a/srcpkgs/perl-Moo/template
+++ b/srcpkgs/perl-Moo/template
@@ -2,7 +2,6 @@
 pkgname=perl-Moo
 version=2.004000
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Mozilla-CA/template b/srcpkgs/perl-Mozilla-CA/template
index 3a406de17d2..60e89cd77e6 100644
--- a/srcpkgs/perl-Mozilla-CA/template
+++ b/srcpkgs/perl-Mozilla-CA/template
@@ -2,7 +2,6 @@
 pkgname=perl-Mozilla-CA
 version=20200520
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS-Resolver-Mock/template b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
index 5583cb8138d..b31762710e9 100644
--- a/srcpkgs/perl-Net-DNS-Resolver-Mock/template
+++ b/srcpkgs/perl-Net-DNS-Resolver-Mock/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS-Resolver-Mock
 version=1.20200215
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-DNS/template b/srcpkgs/perl-Net-DNS/template
index efa3b7dd63e..ae5529844fc 100644
--- a/srcpkgs/perl-Net-DNS/template
+++ b/srcpkgs/perl-Net-DNS/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-DNS
 version=1.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-HTTP/template b/srcpkgs/perl-Net-HTTP/template
index 105416774df..0b6d48cc134 100644
--- a/srcpkgs/perl-Net-HTTP/template
+++ b/srcpkgs/perl-Net-HTTP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-HTTP
 version=6.19
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Client/template b/srcpkgs/perl-Net-IMAP-Client/template
index 1e0f579548f..ddb280e9e4e 100644
--- a/srcpkgs/perl-Net-IMAP-Client/template
+++ b/srcpkgs/perl-Net-IMAP-Client/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Client
 version=0.9505
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-IMAP-Simple/template b/srcpkgs/perl-Net-IMAP-Simple/template
index 30d331492fb..70244a0ab64 100644
--- a/srcpkgs/perl-Net-IMAP-Simple/template
+++ b/srcpkgs/perl-Net-IMAP-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-IMAP-Simple
 version=1.2212
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-MPD/template b/srcpkgs/perl-Net-MPD/template
index 38363aa7b48..e69ff0d37cc 100644
--- a/srcpkgs/perl-Net-MPD/template
+++ b/srcpkgs/perl-Net-MPD/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-MPD
 version=0.07
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-//}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Net-OpenSSH/template b/srcpkgs/perl-Net-OpenSSH/template
index 69fc0d570e1..b8e6439ead8 100644
--- a/srcpkgs/perl-Net-OpenSSH/template
+++ b/srcpkgs/perl-Net-OpenSSH/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-OpenSSH
 version=0.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SFTP-Foreign/template b/srcpkgs/perl-Net-SFTP-Foreign/template
index a447269f22a..852d70c9c5d 100644
--- a/srcpkgs/perl-Net-SFTP-Foreign/template
+++ b/srcpkgs/perl-Net-SFTP-Foreign/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SFTP-Foreign
 version=1.91
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-SMTP-SSL/template b/srcpkgs/perl-Net-SMTP-SSL/template
index 4bceff607f7..066b9325ace 100644
--- a/srcpkgs/perl-Net-SMTP-SSL/template
+++ b/srcpkgs/perl-Net-SMTP-SSL/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-SMTP-SSL
 version=1.04
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Net-Server/template b/srcpkgs/perl-Net-Server/template
index d6303b7a70b..663ed0d44de 100644
--- a/srcpkgs/perl-Net-Server/template
+++ b/srcpkgs/perl-Net-Server/template
@@ -2,7 +2,6 @@
 pkgname=perl-Net-Server
 version=2.009
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Compare/template b/srcpkgs/perl-Number-Compare/template
index df4eaca2780..c7a4c986303 100644
--- a/srcpkgs/perl-Number-Compare/template
+++ b/srcpkgs/perl-Number-Compare/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Compare
 version=0.03
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Number-Format/template b/srcpkgs/perl-Number-Format/template
index f0c958a696c..435d082ab86 100644
--- a/srcpkgs/perl-Number-Format/template
+++ b/srcpkgs/perl-Number-Format/template
@@ -2,7 +2,6 @@
 pkgname=perl-Number-Format
 version=1.75
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-OLE-Storage_Lite/template b/srcpkgs/perl-OLE-Storage_Lite/template
index 28db86c8be5..37e893ecfa5 100644
--- a/srcpkgs/perl-OLE-Storage_Lite/template
+++ b/srcpkgs/perl-OLE-Storage_Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-OLE-Storage_Lite
 version=0.20
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-MultiType/template b/srcpkgs/perl-Object-MultiType/template
index 7caf30b452d..0a459d4e712 100644
--- a/srcpkgs/perl-Object-MultiType/template
+++ b/srcpkgs/perl-Object-MultiType/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-MultiType
 version=0.05
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Object-Realize-Later/template b/srcpkgs/perl-Object-Realize-Later/template
index 51682d45083..6aa801950c7 100644
--- a/srcpkgs/perl-Object-Realize-Later/template
+++ b/srcpkgs/perl-Object-Realize-Later/template
@@ -2,7 +2,6 @@
 pkgname=perl-Object-Realize-Later
 version=0.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PDF-API2/template b/srcpkgs/perl-PDF-API2/template
index 076c45b88ec..b8169a27809 100644
--- a/srcpkgs/perl-PDF-API2/template
+++ b/srcpkgs/perl-PDF-API2/template
@@ -2,7 +2,6 @@
 pkgname=perl-PDF-API2
 version=2.037
 revision=1
-archs=noarch
 wrksrc="PDF-API2-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-POSIX-strftime-Compiler/template b/srcpkgs/perl-POSIX-strftime-Compiler/template
index 6b68d220377..5b9eff0e86a 100644
--- a/srcpkgs/perl-POSIX-strftime-Compiler/template
+++ b/srcpkgs/perl-POSIX-strftime-Compiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-POSIX-strftime-Compiler
 version=0.44
 revision=1
-archs=noarch
 wrksrc="POSIX-strftime-Compiler-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-PPR/template b/srcpkgs/perl-PPR/template
index bc7165f468a..2ed7e88c560 100644
--- a/srcpkgs/perl-PPR/template
+++ b/srcpkgs/perl-PPR/template
@@ -2,7 +2,6 @@
 pkgname=perl-PPR
 version=0.000028
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-B-Hooks-EndOfScope"
diff --git a/srcpkgs/perl-Package-DeprecationManager/template b/srcpkgs/perl-Package-DeprecationManager/template
index 9e4cf28789d..6a5d31909f1 100644
--- a/srcpkgs/perl-Package-DeprecationManager/template
+++ b/srcpkgs/perl-Package-DeprecationManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-DeprecationManager
 version=0.17
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Package-Stash/template b/srcpkgs/perl-Package-Stash/template
index 4b021644ae0..9a17b5d6bc0 100644
--- a/srcpkgs/perl-Package-Stash/template
+++ b/srcpkgs/perl-Package-Stash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Package-Stash
 version=0.38
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Dist-CheckConflicts"
diff --git a/srcpkgs/perl-Parallel-ForkManager/template b/srcpkgs/perl-Parallel-ForkManager/template
index ba0d496c36f..e0195f5ddbf 100644
--- a/srcpkgs/perl-Parallel-ForkManager/template
+++ b/srcpkgs/perl-Parallel-ForkManager/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parallel-ForkManager
 version=2.02
 revision=1
-archs=noarch
 wrksrc="Parallel-ForkManager-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Params-ValidationCompiler/template b/srcpkgs/perl-Params-ValidationCompiler/template
index 79331a19c2d..a3e5a189a72 100644
--- a/srcpkgs/perl-Params-ValidationCompiler/template
+++ b/srcpkgs/perl-Params-ValidationCompiler/template
@@ -2,7 +2,6 @@
 pkgname=perl-Params-ValidationCompiler
 version=0.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-CPAN-Meta/template b/srcpkgs/perl-Parse-CPAN-Meta/template
index 7f2a04132a2..0463d20ca47 100644
--- a/srcpkgs/perl-Parse-CPAN-Meta/template
+++ b/srcpkgs/perl-Parse-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-CPAN-Meta
 version=1.4422
 revision=2
-archs=noarch
 wrksrc="Parse-CPAN-Meta-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-PMFile/template b/srcpkgs/perl-Parse-PMFile/template
index 3d406c6d5c3..5090b138072 100644
--- a/srcpkgs/perl-Parse-PMFile/template
+++ b/srcpkgs/perl-Parse-PMFile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-PMFile
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-ExtUtils-MakeMaker-CPANfile perl-Module-CPANfile"
diff --git a/srcpkgs/perl-Parse-RecDescent/template b/srcpkgs/perl-Parse-RecDescent/template
index 272fe0008b6..d8236b57ce9 100644
--- a/srcpkgs/perl-Parse-RecDescent/template
+++ b/srcpkgs/perl-Parse-RecDescent/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-RecDescent
 version=1.967015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Parse-Yapp/template b/srcpkgs/perl-Parse-Yapp/template
index bd200ede930..593310b30cf 100644
--- a/srcpkgs/perl-Parse-Yapp/template
+++ b/srcpkgs/perl-Parse-Yapp/template
@@ -2,7 +2,6 @@
 pkgname=perl-Parse-Yapp
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-PatchReader/template b/srcpkgs/perl-PatchReader/template
index 51cd3172766..f92209bfd06 100644
--- a/srcpkgs/perl-PatchReader/template
+++ b/srcpkgs/perl-PatchReader/template
@@ -2,7 +2,6 @@
 pkgname=perl-PatchReader
 version=0.9.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Path-Tiny/template b/srcpkgs/perl-Path-Tiny/template
index 6db01f7ff4e..c81538f8fbd 100644
--- a/srcpkgs/perl-Path-Tiny/template
+++ b/srcpkgs/perl-Path-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Path-Tiny
 version=0.114
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Pegex/template b/srcpkgs/perl-Pegex/template
index b1ae1eef38f..c6531608145 100644
--- a/srcpkgs/perl-Pegex/template
+++ b/srcpkgs/perl-Pegex/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pegex
 version=0.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-ShareDir-Install"
diff --git a/srcpkgs/perl-Plack-Middleware-Deflater/template b/srcpkgs/perl-Plack-Middleware-Deflater/template
index c18fa1932bd..64e97653d56 100644
--- a/srcpkgs/perl-Plack-Middleware-Deflater/template
+++ b/srcpkgs/perl-Plack-Middleware-Deflater/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Plack-Middleware-Deflater"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-Deflater-${version}.tar.gz"
 checksum=28da95e7da4c8b5591ac454509c92176cd0842960ce074fde30f9a1075dcc275
-archs=noarch
diff --git a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
index 3c120a2ce23..4187eaf1bd3 100644
--- a/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
+++ b/srcpkgs/perl-Plack-Middleware-ReverseProxy/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Plack-Middleware-ReverseProxy"
 distfiles="${CPAN_SITE}/Plack/Plack-Middleware-ReverseProxy-${version}.tar.gz"
 checksum=874931d37d07667ba0d0f37903b94511071f4191feb73fa45765da2b8c15a128
-archs="noarch"
diff --git a/srcpkgs/perl-Plack/template b/srcpkgs/perl-Plack/template
index 6954a1eccc1..b0893d9875d 100644
--- a/srcpkgs/perl-Plack/template
+++ b/srcpkgs/perl-Plack/template
@@ -18,4 +18,3 @@ homepage="https://metacpan.org/release/Plack"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Plack/Plack-${version}.tar.gz"
 checksum=322c93f5acc0a0f0e11fd4a76188f978bdc14338a9f1df3ae535227017046561
-archs=noarch
diff --git a/srcpkgs/perl-Pod-Coverage/template b/srcpkgs/perl-Pod-Coverage/template
index 6202ae090fc..50545eed804 100644
--- a/srcpkgs/perl-Pod-Coverage/template
+++ b/srcpkgs/perl-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Coverage
 version=0.23
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-Symdump"
diff --git a/srcpkgs/perl-Pod-Simple-Text-Termcap/template b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
index 65fcd4aa738..7df35f1e433 100644
--- a/srcpkgs/perl-Pod-Simple-Text-Termcap/template
+++ b/srcpkgs/perl-Pod-Simple-Text-Termcap/template
@@ -2,7 +2,6 @@
 pkgname=perl-Pod-Simple-Text-Termcap
 version=0.01
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Probe-Perl/template b/srcpkgs/perl-Probe-Perl/template
index 673236a744c..cef72577248 100644
--- a/srcpkgs/perl-Probe-Perl/template
+++ b/srcpkgs/perl-Probe-Perl/template
@@ -2,7 +2,6 @@
 pkgname=perl-Probe-Perl
 version=0.03
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Daemontools/template b/srcpkgs/perl-Proc-Daemontools/template
index ded05432e82..c4979387c25 100644
--- a/srcpkgs/perl-Proc-Daemontools/template
+++ b/srcpkgs/perl-Proc-Daemontools/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Daemontools
 version=1.06
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-Govern/template b/srcpkgs/perl-Proc-Govern/template
index 5b999a8099e..910bd8a0be7 100644
--- a/srcpkgs/perl-Proc-Govern/template
+++ b/srcpkgs/perl-Proc-Govern/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-Govern
 version=0.209
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Proc-PID-File/template b/srcpkgs/perl-Proc-PID-File/template
index c0a1929f98c..40b10ab049a 100644
--- a/srcpkgs/perl-Proc-PID-File/template
+++ b/srcpkgs/perl-Proc-PID-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Proc-PID-File
 version=1.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Readonly/template b/srcpkgs/perl-Readonly/template
index fafb9a80950..d6a5e85c73d 100644
--- a/srcpkgs/perl-Readonly/template
+++ b/srcpkgs/perl-Readonly/template
@@ -2,7 +2,6 @@
 pkgname=perl-Readonly
 version=2.05
 revision=2
-archs=noarch
 wrksrc="Readonly-$version"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build-Tiny"
diff --git a/srcpkgs/perl-Ref-Util/template b/srcpkgs/perl-Ref-Util/template
index 2b6acde1820..66a77e571ab 100644
--- a/srcpkgs/perl-Ref-Util/template
+++ b/srcpkgs/perl-Ref-Util/template
@@ -2,7 +2,6 @@
 pkgname=perl-Ref-Util
 version=0.204
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Common/template b/srcpkgs/perl-Regexp-Common/template
index 0a8ef2222cb..6b9d253162b 100644
--- a/srcpkgs/perl-Regexp-Common/template
+++ b/srcpkgs/perl-Regexp-Common/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Common
 version=2017060201
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Regexp-Grammars/template b/srcpkgs/perl-Regexp-Grammars/template
index cae12ff654b..761e58df7ff 100644
--- a/srcpkgs/perl-Regexp-Grammars/template
+++ b/srcpkgs/perl-Regexp-Grammars/template
@@ -2,7 +2,6 @@
 pkgname=perl-Regexp-Grammars
 version=1.057
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Reply/template b/srcpkgs/perl-Reply/template
index 8dc0d7fb756..64a4341d012 100644
--- a/srcpkgs/perl-Reply/template
+++ b/srcpkgs/perl-Reply/template
@@ -2,7 +2,6 @@
 pkgname=perl-Reply
 version=0.42
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Devel-LexAlias perl-Eval-Closure perl-Package-Stash perl-PadWalker perl-Term-ReadLine-Gnu perl-Try-Tiny perl-File-HomeDir perl-Config-INI-Reader-Ordered"
diff --git a/srcpkgs/perl-Role-Tiny/template b/srcpkgs/perl-Role-Tiny/template
index 7eb125fbd4e..a51bd0ec025 100644
--- a/srcpkgs/perl-Role-Tiny/template
+++ b/srcpkgs/perl-Role-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-Role-Tiny
 version=2.001004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SGMLSpm/template b/srcpkgs/perl-SGMLSpm/template
index e1f9ac69878..2ece0a3567e 100644
--- a/srcpkgs/perl-SGMLSpm/template
+++ b/srcpkgs/perl-SGMLSpm/template
@@ -4,7 +4,6 @@ version=1.1
 revision=1
 wrksrc=${pkgname/perl-/}-${version}
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-SOAP-Lite/template b/srcpkgs/perl-SOAP-Lite/template
index e74a27a0497..e0382bf0464 100644
--- a/srcpkgs/perl-SOAP-Lite/template
+++ b/srcpkgs/perl-SOAP-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-SOAP-Lite
 version=1.27
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-SUPER/template b/srcpkgs/perl-SUPER/template
index 1b11e76b38e..89c9f219f55 100644
--- a/srcpkgs/perl-SUPER/template
+++ b/srcpkgs/perl-SUPER/template
@@ -2,7 +2,6 @@
 pkgname=perl-SUPER
 version=1.20190531
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Scope-Guard/template b/srcpkgs/perl-Scope-Guard/template
index f17c470e784..85a5038e0c0 100644
--- a/srcpkgs/perl-Scope-Guard/template
+++ b/srcpkgs/perl-Scope-Guard/template
@@ -2,7 +2,6 @@
 pkgname=perl-Scope-Guard
 version=0.21
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Set-IntSpan/template b/srcpkgs/perl-Set-IntSpan/template
index 681aa0b1386..f6565cf8ce3 100644
--- a/srcpkgs/perl-Set-IntSpan/template
+++ b/srcpkgs/perl-Set-IntSpan/template
@@ -2,7 +2,6 @@
 pkgname=perl-Set-IntSpan
 version=1.19
 revision=2
-archs=noarch
 wrksrc="Set-IntSpan-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Naturally/template b/srcpkgs/perl-Sort-Naturally/template
index 11cfb97cfe4..a621922cdc4 100644
--- a/srcpkgs/perl-Sort-Naturally/template
+++ b/srcpkgs/perl-Sort-Naturally/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Naturally
 version=1.03
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sort-Versions/template b/srcpkgs/perl-Sort-Versions/template
index 292e0def8ea..97efedd9fa6 100644
--- a/srcpkgs/perl-Sort-Versions/template
+++ b/srcpkgs/perl-Sort-Versions/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sort-Versions
 version=1.62
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Specio/template b/srcpkgs/perl-Specio/template
index 22fc22f79e8..353cd58a5fe 100644
--- a/srcpkgs/perl-Specio/template
+++ b/srcpkgs/perl-Specio/template
@@ -2,7 +2,6 @@
 pkgname=perl-Specio
 version=0.46
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spiffy/template b/srcpkgs/perl-Spiffy/template
index 4412ade6858..d2ae23c5386 100644
--- a/srcpkgs/perl-Spiffy/template
+++ b/srcpkgs/perl-Spiffy/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spiffy
 version=0.46
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseExcel/template b/srcpkgs/perl-Spreadsheet-ParseExcel/template
index 748f157113a..c5449492a99 100644
--- a/srcpkgs/perl-Spreadsheet-ParseExcel/template
+++ b/srcpkgs/perl-Spreadsheet-ParseExcel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseExcel
 version=0.65
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Spreadsheet-ParseXLSX/template b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
index 189c47dd66b..da0e9fa9e7f 100644
--- a/srcpkgs/perl-Spreadsheet-ParseXLSX/template
+++ b/srcpkgs/perl-Spreadsheet-ParseXLSX/template
@@ -2,7 +2,6 @@
 pkgname=perl-Spreadsheet-ParseXLSX
 version=0.27
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Stow/template b/srcpkgs/perl-Stow/template
index 9ed2a52ed93..c52f0ec06cd 100644
--- a/srcpkgs/perl-Stow/template
+++ b/srcpkgs/perl-Stow/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stow
 version=2.3.1
 revision=1
-archs=noarch
 wrksrc="Stow-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build perl-Test-Output perl-IO-stringy"
diff --git a/srcpkgs/perl-Stream-Buffered/template b/srcpkgs/perl-Stream-Buffered/template
index d872e01d511..ed0566b75d7 100644
--- a/srcpkgs/perl-Stream-Buffered/template
+++ b/srcpkgs/perl-Stream-Buffered/template
@@ -2,7 +2,6 @@
 pkgname=perl-Stream-Buffered
 version=0.03
 revision=2
-archs=noarch
 wrksrc="Stream-Buffered-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-Escape/template b/srcpkgs/perl-String-Escape/template
index f33bacae2a8..d62b712adf1 100644
--- a/srcpkgs/perl-String-Escape/template
+++ b/srcpkgs/perl-String-Escape/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-Escape
 version=2010.002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-String-ShellQuote/template b/srcpkgs/perl-String-ShellQuote/template
index 7992c6bfd54..0620e27d55e 100644
--- a/srcpkgs/perl-String-ShellQuote/template
+++ b/srcpkgs/perl-String-ShellQuote/template
@@ -2,7 +2,6 @@
 pkgname=perl-String-ShellQuote
 version=1.04
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Delete/template b/srcpkgs/perl-Sub-Delete/template
index f57c5ceee74..b93395a327f 100644
--- a/srcpkgs/perl-Sub-Delete/template
+++ b/srcpkgs/perl-Sub-Delete/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Delete
 version=1.00002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter-Progressive/template b/srcpkgs/perl-Sub-Exporter-Progressive/template
index ba7ff3325fd..ca3735cf30d 100644
--- a/srcpkgs/perl-Sub-Exporter-Progressive/template
+++ b/srcpkgs/perl-Sub-Exporter-Progressive/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter-Progressive
 version=0.001013
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Exporter/template b/srcpkgs/perl-Sub-Exporter/template
index 580e244d5bf..fd7835fa11b 100644
--- a/srcpkgs/perl-Sub-Exporter/template
+++ b/srcpkgs/perl-Sub-Exporter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Exporter
 version=0.987
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Info/template b/srcpkgs/perl-Sub-Info/template
index 6026d8f5bf2..b92e7492406 100644
--- a/srcpkgs/perl-Sub-Info/template
+++ b/srcpkgs/perl-Sub-Info/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Info
 version=0.002
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Install/template b/srcpkgs/perl-Sub-Install/template
index ef853d0d7fd..9515c5147a4 100644
--- a/srcpkgs/perl-Sub-Install/template
+++ b/srcpkgs/perl-Sub-Install/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Install
 version=0.928
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Quote/template b/srcpkgs/perl-Sub-Quote/template
index 1ab6d42ec20..8f0f784f114 100644
--- a/srcpkgs/perl-Sub-Quote/template
+++ b/srcpkgs/perl-Sub-Quote/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Quote
 version=2.006006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sub-Uplevel/template b/srcpkgs/perl-Sub-Uplevel/template
index 5986ba70ba7..eddf582a4e3 100644
--- a/srcpkgs/perl-Sub-Uplevel/template
+++ b/srcpkgs/perl-Sub-Uplevel/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sub-Uplevel
 version=0.2800
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Svsh/template b/srcpkgs/perl-Svsh/template
index 06a7bfa948e..c70cb1572d4 100644
--- a/srcpkgs/perl-Svsh/template
+++ b/srcpkgs/perl-Svsh/template
@@ -2,7 +2,6 @@
 pkgname=perl-Svsh
 version=1.002000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Sys-Syscall/template b/srcpkgs/perl-Sys-Syscall/template
index cdcc58dc479..564b0dab0eb 100644
--- a/srcpkgs/perl-Sys-Syscall/template
+++ b/srcpkgs/perl-Sys-Syscall/template
@@ -2,7 +2,6 @@
 pkgname=perl-Sys-Syscall
 version=0.25
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Animation/template b/srcpkgs/perl-Term-Animation/template
index 3341a3eab6c..bfe5c34c8dc 100644
--- a/srcpkgs/perl-Term-Animation/template
+++ b/srcpkgs/perl-Term-Animation/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Animation
 version=2.6
 revision=2
-archs=noarch
 wrksrc="${pkgname//perl-//}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Curses"
diff --git a/srcpkgs/perl-Term-ExtendedColor/template b/srcpkgs/perl-Term-ExtendedColor/template
index 971fc6ffbd0..b4936d810ce 100644
--- a/srcpkgs/perl-Term-ExtendedColor/template
+++ b/srcpkgs/perl-Term-ExtendedColor/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ExtendedColor
 version=0.504
 revision=1
-archs=noarch
 wrksrc="Term-ExtendedColor-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-ShellUI/template b/srcpkgs/perl-Term-ShellUI/template
index f5d77d801db..dfd12fc0ba4 100644
--- a/srcpkgs/perl-Term-ShellUI/template
+++ b/srcpkgs/perl-Term-ShellUI/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-ShellUI
 version=0.92
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Term-Table/template b/srcpkgs/perl-Term-Table/template
index 0934b654d5a..e2a14a69a6a 100644
--- a/srcpkgs/perl-Term-Table/template
+++ b/srcpkgs/perl-Term-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Term-Table
 version=0.015
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Base/template b/srcpkgs/perl-Test-Base/template
index 9eef8acf384..dd7e15cc716 100644
--- a/srcpkgs/perl-Test-Base/template
+++ b/srcpkgs/perl-Test-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Base
 version=0.89
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-CPAN-Meta/template b/srcpkgs/perl-Test-CPAN-Meta/template
index 3c21325b9e1..694b3b17142 100644
--- a/srcpkgs/perl-Test-CPAN-Meta/template
+++ b/srcpkgs/perl-Test-CPAN-Meta/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-CPAN-Meta
 version=0.25
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Class/template b/srcpkgs/perl-Test-Class/template
index 1b60133766e..aeff642718d 100644
--- a/srcpkgs/perl-Test-Class/template
+++ b/srcpkgs/perl-Test-Class/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Class
 version=0.50
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Cmd/template b/srcpkgs/perl-Test-Cmd/template
index aa4e8c68a7c..b667845728b 100644
--- a/srcpkgs/perl-Test-Cmd/template
+++ b/srcpkgs/perl-Test-Cmd/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Cmd
 version=1.09
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Command/template b/srcpkgs/perl-Test-Command/template
index 2232d4c1d82..3b42a6f14eb 100644
--- a/srcpkgs/perl-Test-Command/template
+++ b/srcpkgs/perl-Test-Command/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Command
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Deep/template b/srcpkgs/perl-Test-Deep/template
index 6bde21fc2ff..a8127d43469 100644
--- a/srcpkgs/perl-Test-Deep/template
+++ b/srcpkgs/perl-Test-Deep/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Deep
 version=1.130
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Differences/template b/srcpkgs/perl-Test-Differences/template
index b65ac242d0c..1fed4aa2222 100644
--- a/srcpkgs/perl-Test-Differences/template
+++ b/srcpkgs/perl-Test-Differences/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Differences
 version=0.67
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Diff"
diff --git a/srcpkgs/perl-Test-DistManifest/template b/srcpkgs/perl-Test-DistManifest/template
index 31d92ee2296..da092b7a3c5 100644
--- a/srcpkgs/perl-Test-DistManifest/template
+++ b/srcpkgs/perl-Test-DistManifest/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-DistManifest
 version=1.014
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Test-NoWarnings perl-Module-Manifest"
diff --git a/srcpkgs/perl-Test-Exception/template b/srcpkgs/perl-Test-Exception/template
index 6fe7eec0c4a..e66c8fc81ac 100644
--- a/srcpkgs/perl-Test-Exception/template
+++ b/srcpkgs/perl-Test-Exception/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Exception
 version=0.43
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Sub-Uplevel"
diff --git a/srcpkgs/perl-Test-FailWarnings/template b/srcpkgs/perl-Test-FailWarnings/template
index e3fdb4ab06e..d585bd9b896 100644
--- a/srcpkgs/perl-Test-FailWarnings/template
+++ b/srcpkgs/perl-Test-FailWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-FailWarnings
 version=0.008
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Fatal/template b/srcpkgs/perl-Test-Fatal/template
index e67737a383d..e467fb12fb2 100644
--- a/srcpkgs/perl-Test-Fatal/template
+++ b/srcpkgs/perl-Test-Fatal/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Fatal
 version=0.016
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File-ShareDir/template b/srcpkgs/perl-Test-File-ShareDir/template
index 6dd421ddbde..75ff5004ffb 100644
--- a/srcpkgs/perl-Test-File-ShareDir/template
+++ b/srcpkgs/perl-Test-File-ShareDir/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File-ShareDir
 version=1.001002
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-File/template b/srcpkgs/perl-Test-File/template
index 08d104ca38a..7206a9d5d8a 100644
--- a/srcpkgs/perl-Test-File/template
+++ b/srcpkgs/perl-Test-File/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-File
 version=1.443
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-HTTP-Server-Simple/template b/srcpkgs/perl-Test-HTTP-Server-Simple/template
index a9ea7150716..215be3be929 100644
--- a/srcpkgs/perl-Test-HTTP-Server-Simple/template
+++ b/srcpkgs/perl-Test-HTTP-Server-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-HTTP-Server-Simple
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Inter/template b/srcpkgs/perl-Test-Inter/template
index 321f710da5f..f43818096b0 100644
--- a/srcpkgs/perl-Test-Inter/template
+++ b/srcpkgs/perl-Test-Inter/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Inter
 version=1.09
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-File-Find-Rule"
diff --git a/srcpkgs/perl-Test-MockModule/template b/srcpkgs/perl-Test-MockModule/template
index 23acd60fdb8..1d7a8e5b1c3 100644
--- a/srcpkgs/perl-Test-MockModule/template
+++ b/srcpkgs/perl-Test-MockModule/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-MockModule
 version=0.172.0
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-v${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/perl-Test-Most/template b/srcpkgs/perl-Test-Most/template
index 6a9db439290..532381fa8ee 100644
--- a/srcpkgs/perl-Test-Most/template
+++ b/srcpkgs/perl-Test-Most/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Most
 version=0.37
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Needs/template b/srcpkgs/perl-Test-Needs/template
index e5c81edc3ac..5e54b40b06c 100644
--- a/srcpkgs/perl-Test-Needs/template
+++ b/srcpkgs/perl-Test-Needs/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Needs
 version=0.002006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-NoWarnings/template b/srcpkgs/perl-Test-NoWarnings/template
index 96e81fec90f..fd15cd958a0 100644
--- a/srcpkgs/perl-Test-NoWarnings/template
+++ b/srcpkgs/perl-Test-NoWarnings/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Test::NoWarnings - Make sure you did not emit warnings while testing.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-NoWarnings"
diff --git a/srcpkgs/perl-Test-Output/template b/srcpkgs/perl-Test-Output/template
index df03ea4add2..5a625bee5f3 100644
--- a/srcpkgs/perl-Test-Output/template
+++ b/srcpkgs/perl-Test-Output/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Output
 version=1.031
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Pod-Coverage/template b/srcpkgs/perl-Test-Pod-Coverage/template
index a752e59d35d..19cb1a8f2f9 100644
--- a/srcpkgs/perl-Test-Pod-Coverage/template
+++ b/srcpkgs/perl-Test-Pod-Coverage/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Pod-Coverage
 version=1.10
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Pod-Coverage"
diff --git a/srcpkgs/perl-Test-Pod/template b/srcpkgs/perl-Test-Pod/template
index c34f8ea27df..cbfd3ff23c2 100644
--- a/srcpkgs/perl-Test-Pod/template
+++ b/srcpkgs/perl-Test-Pod/template
@@ -12,4 +12,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 homepage="https://metacpan.org/release/Test-Pod"
 distfiles="${CPAN_SITE}/Test/Test-Pod-${version}.tar.gz"
 checksum=60a8dbcc60168bf1daa5cc2350236df9343e9878f4ab9830970a5dde6fe8e5fc
-archs=noarch
diff --git a/srcpkgs/perl-Test-Requires/template b/srcpkgs/perl-Test-Requires/template
index 64ffb6664b7..8e8818008b7 100644
--- a/srcpkgs/perl-Test-Requires/template
+++ b/srcpkgs/perl-Test-Requires/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Requires
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-RequiresInternet/template b/srcpkgs/perl-Test-RequiresInternet/template
index 69d8f515348..075072dee81 100644
--- a/srcpkgs/perl-Test-RequiresInternet/template
+++ b/srcpkgs/perl-Test-RequiresInternet/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-RequiresInternet
 version=0.05
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Script/template b/srcpkgs/perl-Test-Script/template
index 3dc87e44f2f..ae1409a00ae 100644
--- a/srcpkgs/perl-Test-Script/template
+++ b/srcpkgs/perl-Test-Script/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Script
 version=1.26
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Probe-Perl perl-Capture-Tiny"
diff --git a/srcpkgs/perl-Test-SharedFork/template b/srcpkgs/perl-Test-SharedFork/template
index b975ff0ecc3..66b02b46b37 100644
--- a/srcpkgs/perl-Test-SharedFork/template
+++ b/srcpkgs/perl-Test-SharedFork/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-SharedFork
 version=0.35
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Simple/template b/srcpkgs/perl-Test-Simple/template
index 963b288dc55..daa105b57de 100644
--- a/srcpkgs/perl-Test-Simple/template
+++ b/srcpkgs/perl-Test-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Simple
 version=1.302175
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Subroutines/template b/srcpkgs/perl-Test-Subroutines/template
index acfd9da0cd8..316a27b3ab7 100644
--- a/srcpkgs/perl-Test-Subroutines/template
+++ b/srcpkgs/perl-Test-Subroutines/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Subroutines
 version=1.113350
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-TCP/template b/srcpkgs/perl-Test-TCP/template
index 31caea2c412..48ff54b37a0 100644
--- a/srcpkgs/perl-Test-TCP/template
+++ b/srcpkgs/perl-Test-TCP/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-TCP
 version=2.22
 revision=1
-archs=noarch
 wrksrc="Test-TCP-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Time/template b/srcpkgs/perl-Test-Time/template
index 5af68205289..7f65a8e54e2 100644
--- a/srcpkgs/perl-Test-Time/template
+++ b/srcpkgs/perl-Test-Time/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Time
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Trap/template b/srcpkgs/perl-Test-Trap/template
index 79e8b842023..108e7c6e2d3 100644
--- a/srcpkgs/perl-Test-Trap/template
+++ b/srcpkgs/perl-Test-Trap/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Data-Dump"
 makedepends="$hostmakedepends"
 depends="$hostmakedepends"
-archs=noarch
 short_desc='Test::Trap - Trap exit codes, exceptions, output, etc.'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Test-Trap"
diff --git a/srcpkgs/perl-Test-UseAllModules/template b/srcpkgs/perl-Test-UseAllModules/template
index 1205fc0be5d..003c510ec78 100644
--- a/srcpkgs/perl-Test-UseAllModules/template
+++ b/srcpkgs/perl-Test-UseAllModules/template
@@ -13,4 +13,3 @@ homepage="https://metacpan.org/release/Test-UseAllModules"
 license="Artistic-1.0-Perl, GPL-1.0-or-later"
 distfiles="${CPAN_SITE}/Test/Test-UseAllModules-${version}.tar.gz"
 checksum=a71f2fe8b96ab8bfc2760aa1d3135ea049a5b20dcb105457b769a1195c7a2509
-archs=noarch
diff --git a/srcpkgs/perl-Test-Warn/template b/srcpkgs/perl-Test-Warn/template
index 174a5303531..a643e723110 100644
--- a/srcpkgs/perl-Test-Warn/template
+++ b/srcpkgs/perl-Test-Warn/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warn
 version=0.36
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Warnings/template b/srcpkgs/perl-Test-Warnings/template
index 465830261d6..988e26c5ae4 100644
--- a/srcpkgs/perl-Test-Warnings/template
+++ b/srcpkgs/perl-Test-Warnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Warnings
 version=0.030
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Weaken/template b/srcpkgs/perl-Test-Weaken/template
index f336b5a09b6..6cfef3bf09a 100644
--- a/srcpkgs/perl-Test-Weaken/template
+++ b/srcpkgs/perl-Test-Weaken/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Weaken
 version=3.022000
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-Without-Module/template b/srcpkgs/perl-Test-Without-Module/template
index 662a2293596..f869abe5d61 100644
--- a/srcpkgs/perl-Test-Without-Module/template
+++ b/srcpkgs/perl-Test-Without-Module/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-Without-Module
 version=0.20
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-YAML/template b/srcpkgs/perl-Test-YAML/template
index 21f167214ef..a4c1e3c1389 100644
--- a/srcpkgs/perl-Test-YAML/template
+++ b/srcpkgs/perl-Test-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-YAML
 version=1.07
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test-utf8/template b/srcpkgs/perl-Test-utf8/template
index 3b331fae4ec..56e18704f89 100644
--- a/srcpkgs/perl-Test-utf8/template
+++ b/srcpkgs/perl-Test-utf8/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test-utf8
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Plugin-NoWarnings/template b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
index 45501cb5757..31813c6a98e 100644
--- a/srcpkgs/perl-Test2-Plugin-NoWarnings/template
+++ b/srcpkgs/perl-Test2-Plugin-NoWarnings/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Plugin-NoWarnings
 version=0.08
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Test2-Suite/template b/srcpkgs/perl-Test2-Suite/template
index 57ac88d0ff6..82813453486 100644
--- a/srcpkgs/perl-Test2-Suite/template
+++ b/srcpkgs/perl-Test2-Suite/template
@@ -2,7 +2,6 @@
 pkgname=perl-Test2-Suite
 version=0.000129
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-ASCIITable/template b/srcpkgs/perl-Text-ASCIITable/template
index c9cde14602c..3250aa44596 100644
--- a/srcpkgs/perl-Text-ASCIITable/template
+++ b/srcpkgs/perl-Text-ASCIITable/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-ASCIITable
 version=0.22
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-Text-Aligner/template b/srcpkgs/perl-Text-Aligner/template
index d2c819ffc37..fcecd066492 100644
--- a/srcpkgs/perl-Text-Aligner/template
+++ b/srcpkgs/perl-Text-Aligner/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Aligner
 version=0.16
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Autoformat/template b/srcpkgs/perl-Text-Autoformat/template
index 38486635f16..d154567480e 100644
--- a/srcpkgs/perl-Text-Autoformat/template
+++ b/srcpkgs/perl-Text-Autoformat/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Autoformat
 version=1.75
 revision=1
-archs=noarch
 wrksrc="Text-Autoformat-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-Text-Reform"
diff --git a/srcpkgs/perl-Text-CSV/template b/srcpkgs/perl-Text-CSV/template
index b5a7d98cca5..20fa46051ac 100644
--- a/srcpkgs/perl-Text-CSV/template
+++ b/srcpkgs/perl-Text-CSV/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-CSV
 version=2.00
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Diff/template b/srcpkgs/perl-Text-Diff/template
index 9867a6ea528..73f9054c0d9 100644
--- a/srcpkgs/perl-Text-Diff/template
+++ b/srcpkgs/perl-Text-Diff/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl perl-Algorithm-Diff"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
-archs=noarch
 short_desc='Text::Diff - Perform diffs on files and record sets'
 maintainer="Enguerrand de Rochefort <voidlinux@rochefort.de>"
 homepage="https://metacpan.org/release/Text-Diff"
diff --git a/srcpkgs/perl-Text-Glob/template b/srcpkgs/perl-Text-Glob/template
index cfe57391caf..3d4a030dd06 100644
--- a/srcpkgs/perl-Text-Glob/template
+++ b/srcpkgs/perl-Text-Glob/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Glob
 version=0.11
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Markdown/template b/srcpkgs/perl-Text-Markdown/template
index 753ace32d12..300414f4746 100644
--- a/srcpkgs/perl-Text-Markdown/template
+++ b/srcpkgs/perl-Text-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Markdown
 version=1.000031
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Reform/template b/srcpkgs/perl-Text-Reform/template
index dd1b6b62268..9cd9582f468 100644
--- a/srcpkgs/perl-Text-Reform/template
+++ b/srcpkgs/perl-Text-Reform/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Reform
 version=1.20
 revision=2
-archs=noarch
 wrksrc="Text-Reform-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Roman/template b/srcpkgs/perl-Text-Roman/template
index 80d0865b293..a5d09c1287b 100644
--- a/srcpkgs/perl-Text-Roman/template
+++ b/srcpkgs/perl-Text-Roman/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Roman
 version=3.5
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Table/template b/srcpkgs/perl-Text-Table/template
index 4f74932bfe9..ed02ceae69e 100644
--- a/srcpkgs/perl-Text-Table/template
+++ b/srcpkgs/perl-Text-Table/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Table
 version=1.134
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-Unidecode/template b/srcpkgs/perl-Text-Unidecode/template
index 220aa563058..ed3ecd863ac 100644
--- a/srcpkgs/perl-Text-Unidecode/template
+++ b/srcpkgs/perl-Text-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-Unidecode
 version=1.30
 revision=1
-archs=noarch
 wrksrc="Text-Unidecode-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Text-WrapI18N/template b/srcpkgs/perl-Text-WrapI18N/template
index b356989f72c..89897a18bbe 100644
--- a/srcpkgs/perl-Text-WrapI18N/template
+++ b/srcpkgs/perl-Text-WrapI18N/template
@@ -4,7 +4,6 @@ version=0.06
 revision=1
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
-archs=noarch
 hostmakedepends="perl perl-Text-CharWidth"
 makedepends="${hostmakedepends}"
 depends="${hostmakedepends}"
diff --git a/srcpkgs/perl-Text-XLogfile/template b/srcpkgs/perl-Text-XLogfile/template
index 6cc929a6493..893e5ff0710 100644
--- a/srcpkgs/perl-Text-XLogfile/template
+++ b/srcpkgs/perl-Text-XLogfile/template
@@ -2,7 +2,6 @@
 pkgname=perl-Text-XLogfile
 version=0.06
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Cycle/template b/srcpkgs/perl-Tie-Cycle/template
index 5010b16ec37..35e968852cd 100644
--- a/srcpkgs/perl-Tie-Cycle/template
+++ b/srcpkgs/perl-Tie-Cycle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Cycle
 version=1.225
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-Handle-Offset/template b/srcpkgs/perl-Tie-Handle-Offset/template
index 88e4298951d..fd4aa1745fa 100644
--- a/srcpkgs/perl-Tie-Handle-Offset/template
+++ b/srcpkgs/perl-Tie-Handle-Offset/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-Handle-Offset
 version=0.004
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tie-IxHash/template b/srcpkgs/perl-Tie-IxHash/template
index 9d926ee407e..4fb6114ce42 100644
--- a/srcpkgs/perl-Tie-IxHash/template
+++ b/srcpkgs/perl-Tie-IxHash/template
@@ -2,7 +2,6 @@
 pkgname=perl-Tie-IxHash
 version=1.23
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-Duration/template b/srcpkgs/perl-Time-Duration/template
index 686edca3d76..23fa2c1e0ee 100644
--- a/srcpkgs/perl-Time-Duration/template
+++ b/srcpkgs/perl-Time-Duration/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-Duration
 version=1.21
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Time-modules/template b/srcpkgs/perl-Time-modules/template
index 0bd579a552a..c79a85f112d 100644
--- a/srcpkgs/perl-Time-modules/template
+++ b/srcpkgs/perl-Time-modules/template
@@ -2,7 +2,6 @@
 pkgname=perl-Time-modules
 version=2013.0912
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-TimeDate/template b/srcpkgs/perl-TimeDate/template
index d4614cb2855..ffde91659cd 100644
--- a/srcpkgs/perl-TimeDate/template
+++ b/srcpkgs/perl-TimeDate/template
@@ -2,7 +2,6 @@
 pkgname=perl-TimeDate
 version=2.33
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Tree-DAG_Node/template b/srcpkgs/perl-Tree-DAG_Node/template
index 54039240222..5e269fdb381 100644
--- a/srcpkgs/perl-Tree-DAG_Node/template
+++ b/srcpkgs/perl-Tree-DAG_Node/template
@@ -7,7 +7,6 @@ build_style=perl-module
 hostmakedepends="perl"
 makedepends="${hostmakedepends} perl-File-Slurp-Tiny"
 depends="${makedepends}"
-archs=noarch
 short_desc="Tree::DAG_Node - An N-ary tree"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 homepage="https://metacpan.org/release/Tree-DAG_Node"
diff --git a/srcpkgs/perl-Try-Tiny/template b/srcpkgs/perl-Try-Tiny/template
index 0d80bce773c..3cd203ebb79 100644
--- a/srcpkgs/perl-Try-Tiny/template
+++ b/srcpkgs/perl-Try-Tiny/template
@@ -14,7 +14,6 @@ homepage="https://metacpan.org/release/Try-Tiny"
 license="MIT"
 distfiles="${CPAN_SITE}/XML/ETHER/Try-Tiny-${version}.tar.gz"
 checksum=da5bd0d5c903519bbf10bb9ba0cb7bcac0563882bcfe4503aee3fb143eddef6b
-archs=noarch
 
 post_install() {
 	vlicense LICENCE LICENSE
diff --git a/srcpkgs/perl-Types-Serialiser/template b/srcpkgs/perl-Types-Serialiser/template
index 8946b5040f1..dd496b881ba 100644
--- a/srcpkgs/perl-Types-Serialiser/template
+++ b/srcpkgs/perl-Types-Serialiser/template
@@ -2,7 +2,6 @@
 pkgname=perl-Types-Serialiser
 version=1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-URI/template b/srcpkgs/perl-URI/template
index 825be5c78fd..6cc6fce1a26 100644
--- a/srcpkgs/perl-URI/template
+++ b/srcpkgs/perl-URI/template
@@ -2,7 +2,6 @@
 pkgname=perl-URI
 version=1.76
 revision=1
-archs=noarch
 wrksrc="URI-$version"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unicode-Tussle/template b/srcpkgs/perl-Unicode-Tussle/template
index 69503663e56..883dedfb1d0 100644
--- a/srcpkgs/perl-Unicode-Tussle/template
+++ b/srcpkgs/perl-Unicode-Tussle/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unicode-Tussle
 version=1.111
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-Unix-Uptime/template b/srcpkgs/perl-Unix-Uptime/template
index 0c9454e3374..c522917d6f3 100644
--- a/srcpkgs/perl-Unix-Uptime/template
+++ b/srcpkgs/perl-Unix-Uptime/template
@@ -2,7 +2,6 @@
 pkgname=perl-Unix-Uptime
 version=0.4000
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-User-Identity/template b/srcpkgs/perl-User-Identity/template
index 53b43af710f..7a0e453bfb2 100644
--- a/srcpkgs/perl-User-Identity/template
+++ b/srcpkgs/perl-User-Identity/template
@@ -2,7 +2,6 @@
 pkgname=perl-User-Identity
 version=0.99
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WL/template b/srcpkgs/perl-WL/template
index 0f5fdbfe394..0553c2ea3e8 100644
--- a/srcpkgs/perl-WL/template
+++ b/srcpkgs/perl-WL/template
@@ -2,7 +2,6 @@
 pkgname=perl-WL
 version=0.92
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Form-UrlEncoded/template b/srcpkgs/perl-WWW-Form-UrlEncoded/template
index ccda0fc7384..e49fd8526d2 100644
--- a/srcpkgs/perl-WWW-Form-UrlEncoded/template
+++ b/srcpkgs/perl-WWW-Form-UrlEncoded/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Form-UrlEncoded
 version=0.26
 revision=1
-archs=noarch
 wrksrc="WWW-Form-UrlEncoded-${version}"
 build_style=perl-ModuleBuild
 hostmakedepends="perl perl-Module-Build"
diff --git a/srcpkgs/perl-WWW-Mechanize/template b/srcpkgs/perl-WWW-Mechanize/template
index 6e00152f672..cd39fd9dc92 100644
--- a/srcpkgs/perl-WWW-Mechanize/template
+++ b/srcpkgs/perl-WWW-Mechanize/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-Mechanize
 version=2.00
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-CGI perl-HTML-Form perl-HTML-Tree
diff --git a/srcpkgs/perl-WWW-RobotRules/template b/srcpkgs/perl-WWW-RobotRules/template
index c21656741a3..3c3b3c925e4 100644
--- a/srcpkgs/perl-WWW-RobotRules/template
+++ b/srcpkgs/perl-WWW-RobotRules/template
@@ -2,7 +2,6 @@
 pkgname=perl-WWW-RobotRules
 version=6.02
 revision=5
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-WebService-MusicBrainz/template b/srcpkgs/perl-WebService-MusicBrainz/template
index a4d281f6c13..4755a1d2c6b 100644
--- a/srcpkgs/perl-WebService-MusicBrainz/template
+++ b/srcpkgs/perl-WebService-MusicBrainz/template
@@ -2,7 +2,6 @@
 pkgname=perl-WebService-MusicBrainz
 version=1.0.5
 revision=1
-archs=noarch
 wrksrc="${pkgname//perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol-Other/template b/srcpkgs/perl-X11-Protocol-Other/template
index b076d9786c1..264a518269a 100644
--- a/srcpkgs/perl-X11-Protocol-Other/template
+++ b/srcpkgs/perl-X11-Protocol-Other/template
@@ -2,7 +2,6 @@
 pkgname=perl-X11-Protocol-Other
 version=31
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-X11-Protocol/template b/srcpkgs/perl-X11-Protocol/template
index 5cae4bdc214..a8f979b1f28 100644
--- a/srcpkgs/perl-X11-Protocol/template
+++ b/srcpkgs/perl-X11-Protocol/template
@@ -3,7 +3,6 @@ pkgname=perl-X11-Protocol
 #TODO
 version=0.56
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-PrettyPrint/template b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
index 8e8cc1b013a..741cb36485d 100644
--- a/srcpkgs/perl-XML-LibXML-PrettyPrint/template
+++ b/srcpkgs/perl-XML-LibXML-PrettyPrint/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-PrettyPrint
 version=0.006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-LibXML-Simple/template b/srcpkgs/perl-XML-LibXML-Simple/template
index 1b4fb0e6ff3..7fe3b756c91 100644
--- a/srcpkgs/perl-XML-LibXML-Simple/template
+++ b/srcpkgs/perl-XML-LibXML-Simple/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-LibXML-Simple
 version=1.01
 revision=1
-archs="noarch"
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl-XML-LibXML perl-File-Slurp-Tiny"
diff --git a/srcpkgs/perl-XML-NamespaceSupport/template b/srcpkgs/perl-XML-NamespaceSupport/template
index 4163007fae5..6bd16959aba 100644
--- a/srcpkgs/perl-XML-NamespaceSupport/template
+++ b/srcpkgs/perl-XML-NamespaceSupport/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-NamespaceSupport
 version=1.12
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Parser-Lite/template b/srcpkgs/perl-XML-Parser-Lite/template
index 3f2bea8e8f5..56b5725ab10 100644
--- a/srcpkgs/perl-XML-Parser-Lite/template
+++ b/srcpkgs/perl-XML-Parser-Lite/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Parser-Lite
 version=0.722
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX-Base/template b/srcpkgs/perl-XML-SAX-Base/template
index 4a7baac7fce..f9b270aa02f 100644
--- a/srcpkgs/perl-XML-SAX-Base/template
+++ b/srcpkgs/perl-XML-SAX-Base/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX-Base
 version=1.09
 revision=2
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-SAX/template b/srcpkgs/perl-XML-SAX/template
index 33a0de887bc..973a341ba84 100644
--- a/srcpkgs/perl-XML-SAX/template
+++ b/srcpkgs/perl-XML-SAX/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-SAX
 version=1.02
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Simple/template b/srcpkgs/perl-XML-Simple/template
index 3b8f8c40688..4a0b0f4b6e8 100644
--- a/srcpkgs/perl-XML-Simple/template
+++ b/srcpkgs/perl-XML-Simple/template
@@ -13,4 +13,3 @@ license="Artistic-1.0-Perl, GPL-1.0-or-later"
 maintainer="Orphaned <orphan@voidlinux.org>"
 distfiles="${CPAN_SITE}/XML/XML-Simple-$version.tar.gz"
 checksum=531fddaebea2416743eb5c4fdfab028f502123d9a220405a4100e68fc480dbf8
-archs=noarch
diff --git a/srcpkgs/perl-XML-Smart/template b/srcpkgs/perl-XML-Smart/template
index 622a2ecf1be..1dbe4ced2fc 100644
--- a/srcpkgs/perl-XML-Smart/template
+++ b/srcpkgs/perl-XML-Smart/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Smart
 version=1.79
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Twig/template b/srcpkgs/perl-XML-Twig/template
index 9ec76ea5248..ce3d0458926 100644
--- a/srcpkgs/perl-XML-Twig/template
+++ b/srcpkgs/perl-XML-Twig/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Twig
 version=3.52
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-Writer/template b/srcpkgs/perl-XML-Writer/template
index cde06ed960b..31e76ae5831 100644
--- a/srcpkgs/perl-XML-Writer/template
+++ b/srcpkgs/perl-XML-Writer/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-Writer
 version=0.625
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-XML-XPath/template b/srcpkgs/perl-XML-XPath/template
index 7b7f6bde62b..a709df1ec21 100644
--- a/srcpkgs/perl-XML-XPath/template
+++ b/srcpkgs/perl-XML-XPath/template
@@ -2,7 +2,6 @@
 pkgname=perl-XML-XPath
 version=1.44
 revision=1
-archs=noarch
 wrksrc="XML-XPath-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML-Tiny/template b/srcpkgs/perl-YAML-Tiny/template
index 84a40add1d4..fd6de16f557 100644
--- a/srcpkgs/perl-YAML-Tiny/template
+++ b/srcpkgs/perl-YAML-Tiny/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML-Tiny
 version=1.73
 revision=1
-archs=noarch
 wrksrc="${pkgname#perl-}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-YAML/template b/srcpkgs/perl-YAML/template
index b73e193ed08..7b8cd68384b 100644
--- a/srcpkgs/perl-YAML/template
+++ b/srcpkgs/perl-YAML/template
@@ -2,7 +2,6 @@
 pkgname=perl-YAML
 version=1.30
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-common-sense/template b/srcpkgs/perl-common-sense/template
index 2a2ec4a54ef..d651e673d95 100644
--- a/srcpkgs/perl-common-sense/template
+++ b/srcpkgs/perl-common-sense/template
@@ -2,7 +2,6 @@
 pkgname=perl-common-sense
 version=3.75
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-local-lib/template b/srcpkgs/perl-local-lib/template
index afc54934dcf..1204b0dba79 100644
--- a/srcpkgs/perl-local-lib/template
+++ b/srcpkgs/perl-local-lib/template
@@ -2,7 +2,6 @@
 pkgname=perl-local-lib
 version=2.000024
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-autoclean/template b/srcpkgs/perl-namespace-autoclean/template
index a523c1aba25..210020077ac 100644
--- a/srcpkgs/perl-namespace-autoclean/template
+++ b/srcpkgs/perl-namespace-autoclean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-autoclean
 version=0.29
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-namespace-clean/template b/srcpkgs/perl-namespace-clean/template
index c0a01f76b59..6625382226c 100644
--- a/srcpkgs/perl-namespace-clean/template
+++ b/srcpkgs/perl-namespace-clean/template
@@ -2,7 +2,6 @@
 pkgname=perl-namespace-clean
 version=0.27
 revision=3
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-rename/template b/srcpkgs/perl-rename/template
index 5cd20da30ac..bdd861b7d43 100644
--- a/srcpkgs/perl-rename/template
+++ b/srcpkgs/perl-rename/template
@@ -2,7 +2,6 @@
 pkgname=perl-rename
 version=1.9
 revision=2
-archs=noarch
 wrksrc="rename-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-strictures/template b/srcpkgs/perl-strictures/template
index f682d3b3732..8ecccbe64d6 100644
--- a/srcpkgs/perl-strictures/template
+++ b/srcpkgs/perl-strictures/template
@@ -2,7 +2,6 @@
 pkgname=perl-strictures
 version=2.000006
 revision=1
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perl-tainting/template b/srcpkgs/perl-tainting/template
index f24735ecfba..313f390856c 100644
--- a/srcpkgs/perl-tainting/template
+++ b/srcpkgs/perl-tainting/template
@@ -2,7 +2,6 @@
 pkgname=perl-tainting
 version=0.02
 revision=2
-archs=noarch
 wrksrc="${pkgname/perl-/}-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/perltidy/template b/srcpkgs/perltidy/template
index af2a2350e70..1e03d93eb79 100644
--- a/srcpkgs/perltidy/template
+++ b/srcpkgs/perltidy/template
@@ -2,7 +2,6 @@
 pkgname=perltidy
 version=20200822
 revision=1
-archs=noarch
 wrksrc="Perl-Tidy-${version}"
 build_style=perl-module
 hostmakedepends="perl"
diff --git a/srcpkgs/persepolis/template b/srcpkgs/persepolis/template
index 696afdd62e6..d04d25bca08 100644
--- a/srcpkgs/persepolis/template
+++ b/srcpkgs/persepolis/template
@@ -2,7 +2,6 @@
 pkgname=persepolis
 version=3.2.0
 revision=2
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools python3-setproctitle python3-requests
 	python3-psutil aria2 ffmpeg libnotify pulseaudio youtube-dl sound-theme-freedesktop
diff --git a/srcpkgs/peru/template b/srcpkgs/peru/template
index 6cfdf8170c0..97b33d3071c 100644
--- a/srcpkgs/peru/template
+++ b/srcpkgs/peru/template
@@ -2,7 +2,6 @@
 pkgname=peru
 version=1.2.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="peru"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pex/template b/srcpkgs/pex/template
index 105fb3e896d..544c117a4c1 100644
--- a/srcpkgs/pex/template
+++ b/srcpkgs/pex/template
@@ -2,7 +2,6 @@
 pkgname=pex
 version=2.1.15
 revision=1
-archs=noarch
 wrksrc="pex-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/pfetch/template b/srcpkgs/pfetch/template
index d67c2564bfb..992ed6619a4 100644
--- a/srcpkgs/pfetch/template
+++ b/srcpkgs/pfetch/template
@@ -2,7 +2,6 @@
 pkgname=pfetch
 version=0.6.0
 revision=1
-archs="noarch"
 short_desc="System information tool written in POSIX sh"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
 license="MIT"
diff --git a/srcpkgs/pgcli/template b/srcpkgs/pgcli/template
index 51835304d71..3120ac477fc 100644
--- a/srcpkgs/pgcli/template
+++ b/srcpkgs/pgcli/template
@@ -2,7 +2,6 @@
 pkgname=pgcli
 version=3.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pgspecial python3-click python3-Pygments python3-prompt_toolkit
diff --git a/srcpkgs/phoronix-test-suite/template b/srcpkgs/phoronix-test-suite/template
index 417e31c77bf..fe798298d6e 100644
--- a/srcpkgs/phoronix-test-suite/template
+++ b/srcpkgs/phoronix-test-suite/template
@@ -2,7 +2,6 @@
 pkgname=phoronix-test-suite
 version=9.6.1
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="php"
 short_desc="Comprehensive testing and benchmarking platform for Linux"
diff --git a/srcpkgs/phpMyAdmin/template b/srcpkgs/phpMyAdmin/template
index 8c82cc872b6..9a316fba310 100644
--- a/srcpkgs/phpMyAdmin/template
+++ b/srcpkgs/phpMyAdmin/template
@@ -2,7 +2,6 @@
 pkgname=phpMyAdmin
 version=5.0.2
 revision=1
-archs=noarch
 wrksrc="phpMyAdmin-${version}-all-languages"
 conf_files="/etc/webapps/phpMyAdmin/config.inc.php"
 depends="php mysql"
diff --git a/srcpkgs/picard/template b/srcpkgs/picard/template
index ca1f29c11de..cdd41a84cfd 100644
--- a/srcpkgs/picard/template
+++ b/srcpkgs/picard/template
@@ -2,7 +2,6 @@
 pkgname=picard
 version=2.3.2
 revision=1
-archs=noarch
 wrksrc="${pkgname}-release-${version}"
 build_style=python3-module
 make_install_args="--disable-autoupdate"
diff --git a/srcpkgs/pingus/template b/srcpkgs/pingus/template
index 5551b01171f..b7277d10be3 100644
--- a/srcpkgs/pingus/template
+++ b/srcpkgs/pingus/template
@@ -29,7 +29,6 @@ do_install() {
 
 pingus-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pingus
 	}
diff --git a/srcpkgs/pioneer/template b/srcpkgs/pioneer/template
index b8eb8607375..ce00e4469fa 100644
--- a/srcpkgs/pioneer/template
+++ b/srcpkgs/pioneer/template
@@ -33,7 +33,6 @@ pioneer-modelcompiler_package() {
 
 pioneer-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/pioneer
 	}
diff --git a/srcpkgs/piper/template b/srcpkgs/piper/template
index 0f54fe32153..ac49322856e 100644
--- a/srcpkgs/piper/template
+++ b/srcpkgs/piper/template
@@ -2,7 +2,6 @@
 pkgname=piper
 version=0.5.1
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="gettext libratbag pkg-config glib-devel python3-lxml"
 makedepends="python3-devel python3-gobject-devel"
diff --git a/srcpkgs/pipewire/template b/srcpkgs/pipewire/template
index 494f2296327..d6a31ad764a 100644
--- a/srcpkgs/pipewire/template
+++ b/srcpkgs/pipewire/template
@@ -151,7 +151,6 @@ libjack-pipewire_package() {
 }
 
 pipewire-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/plantuml/template b/srcpkgs/plantuml/template
index a28ec87cf43..fd71dd487f0 100644
--- a/srcpkgs/plantuml/template
+++ b/srcpkgs/plantuml/template
@@ -3,7 +3,6 @@ pkgname=plantuml
 reverts="8047_1 8053_1 8059_1"
 version=1.2020.15
 revision=1
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="unzip"
 depends="virtual?java-environment graphviz"
diff --git a/srcpkgs/plasma-workspace-wallpapers/template b/srcpkgs/plasma-workspace-wallpapers/template
index 03f0cd0aff8..4a7d9c5a3cd 100644
--- a/srcpkgs/plasma-workspace-wallpapers/template
+++ b/srcpkgs/plasma-workspace-wallpapers/template
@@ -2,7 +2,6 @@
 pkgname=plasma-workspace-wallpapers
 version=5.19.4
 revision=1
-archs=noarch
 build_style=cmake
 configure_args="-DBUILD_TESTING=OFF"
 hostmakedepends="extra-cmake-modules qt5-qmake qt5-host-tools"
diff --git a/srcpkgs/plata-theme/template b/srcpkgs/plata-theme/template
index 7701b8598c7..f0da75a1120 100644
--- a/srcpkgs/plata-theme/template
+++ b/srcpkgs/plata-theme/template
@@ -2,7 +2,6 @@
 pkgname=plata-theme
 version=0.9.8
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--enable-parallel --enable-telegram"
 hostmakedepends="automake libtool pkg-config glib-devel libxml2 sassc inkscape
diff --git a/srcpkgs/platformio/template b/srcpkgs/platformio/template
index b8ec9a97db9..6831a5cfab7 100644
--- a/srcpkgs/platformio/template
+++ b/srcpkgs/platformio/template
@@ -2,7 +2,6 @@
 pkgname=platformio
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="platformio-core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/playitslowly/template b/srcpkgs/playitslowly/template
index 6d3483ae251..f5c171ff726 100644
--- a/srcpkgs/playitslowly/template
+++ b/srcpkgs/playitslowly/template
@@ -2,7 +2,6 @@
 pkgname=playitslowly
 version=1.5.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 python3-gobject gtk+3 gstreamer1 gst-plugins-base1 gst-plugins-good1
diff --git a/srcpkgs/plymouth/template b/srcpkgs/plymouth/template
index e60716016a8..bc5466e18c8 100644
--- a/srcpkgs/plymouth/template
+++ b/srcpkgs/plymouth/template
@@ -48,7 +48,6 @@ plymouth-devel_package() {
 
 plymouth-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	depends="void-artwork"
 	pkg_install() {
 		vmove usr/share/plymouth/themes
diff --git a/srcpkgs/pmbootstrap/template b/srcpkgs/pmbootstrap/template
index c2b2d92e87a..c0e4377a1d7 100644
--- a/srcpkgs/pmbootstrap/template
+++ b/srcpkgs/pmbootstrap/template
@@ -2,7 +2,6 @@
 pkgname=pmbootstrap
 version=1.22.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools coreutils procps-ng libressl git"
diff --git a/srcpkgs/po4a/template b/srcpkgs/po4a/template
index afa923f9e3e..9e9a726118e 100644
--- a/srcpkgs/po4a/template
+++ b/srcpkgs/po4a/template
@@ -2,7 +2,6 @@
 pkgname=po4a
 version=0.61
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 _perldeps="perl perl-Text-WrapI18N perl-Term-ReadKey perl-Unicode-LineBreak
  perl-SGMLSpm perl-YAML-Tiny"
diff --git a/srcpkgs/pockyt/template b/srcpkgs/pockyt/template
index eee3691d959..072c9186985 100644
--- a/srcpkgs/pockyt/template
+++ b/srcpkgs/pockyt/template
@@ -2,7 +2,6 @@
 pkgname=pockyt
 version=1.2
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-parse"
diff --git a/srcpkgs/podman-compose/template b/srcpkgs/podman-compose/template
index 4f4467de689..7df91e17cb8 100644
--- a/srcpkgs/podman-compose/template
+++ b/srcpkgs/podman-compose/template
@@ -2,7 +2,6 @@
 pkgname=podman-compose
 version=0.1.5
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-yaml"
 depends="${hostmakedepends} podman"
diff --git a/srcpkgs/polysh/template b/srcpkgs/polysh/template
index 36e743fabbb..a374979aeab 100644
--- a/srcpkgs/polysh/template
+++ b/srcpkgs/polysh/template
@@ -2,7 +2,6 @@
 pkgname=polysh
 version=0.4
 revision=5
-archs=noarch
 build_style=python2-module
 pycompile_module="polysh"
 hostmakedepends="python-devel"
diff --git a/srcpkgs/pony-stable/template b/srcpkgs/pony-stable/template
index 4bd27ef0538..87694cad4ed 100644
--- a/srcpkgs/pony-stable/template
+++ b/srcpkgs/pony-stable/template
@@ -2,7 +2,6 @@
 pkgname=pony-stable
 version=0.2.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Simple dependency manager for the Pony language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponyc/template b/srcpkgs/ponyc/template
index 76f6e23475a..b7a79ce00a1 100644
--- a/srcpkgs/ponyc/template
+++ b/srcpkgs/ponyc/template
@@ -2,7 +2,6 @@
 pkgname=ponyc
 version=0.33.2
 revision=2
-archs=noarch
 build_style=meta
 short_desc="Pony programming language (removed package)"
 maintainer="Brian Mitchell <brian@strmpnk.co>"
diff --git a/srcpkgs/ponysay/template b/srcpkgs/ponysay/template
index 5e916c5d485..ea0e87a5280 100644
--- a/srcpkgs/ponysay/template
+++ b/srcpkgs/ponysay/template
@@ -2,7 +2,6 @@
 pkgname=ponysay
 version=3.0.3
 revision=4
-archs=noarch
 hostmakedepends="python3 texinfo"
 depends="python3"
 short_desc="Pony rewrite of cowsay"
diff --git a/srcpkgs/poppler-data/template b/srcpkgs/poppler-data/template
index a83e7dbcf65..babd5990158 100644
--- a/srcpkgs/poppler-data/template
+++ b/srcpkgs/poppler-data/template
@@ -2,7 +2,6 @@
 pkgname=poppler-data
 version=0.4.9
 revision=1
-archs=noarch
 short_desc="Encoding data for the poppler PDF rendering library"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT, GPL-2.0-or-later, BSD-3-Clause"
diff --git a/srcpkgs/postgresql/template b/srcpkgs/postgresql/template
index 2880d5f673b..b68ff9ca9f0 100644
--- a/srcpkgs/postgresql/template
+++ b/srcpkgs/postgresql/template
@@ -74,7 +74,6 @@ post_install() {
 
 postgresql-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/postgresql12/template b/srcpkgs/postgresql12/template
index 7d724e174e4..86ba8e7e9ff 100644
--- a/srcpkgs/postgresql12/template
+++ b/srcpkgs/postgresql12/template
@@ -104,7 +104,6 @@ _substitute() {
 
 postgresql12-doc_package() {
 	short_desc="PostgreSQL documentation"
-	archs=noarch
 	pkg_install() {
 		vmove ${_prefix}/share/doc
 	}
diff --git a/srcpkgs/printrun/template b/srcpkgs/printrun/template
index 3784d97eaa4..bdc6ce8d85c 100644
--- a/srcpkgs/printrun/template
+++ b/srcpkgs/printrun/template
@@ -2,7 +2,6 @@
 pkgname=printrun
 version=1.6.0
 revision=3
-archs=noarch
 wrksrc="Printrun-printrun-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools python-pyserial"
diff --git a/srcpkgs/pritunl-client/template b/srcpkgs/pritunl-client/template
index d61a2bfc7bc..a184a2f925c 100644
--- a/srcpkgs/pritunl-client/template
+++ b/srcpkgs/pritunl-client/template
@@ -2,7 +2,6 @@
 pkgname=pritunl-client
 version=1.0.1865.25
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="pritunl-client"
 make_install_args="--no-upstart --no-systemd"
diff --git a/srcpkgs/profile-cleaner/template b/srcpkgs/profile-cleaner/template
index 0128620c1af..1d5e7ba2237 100644
--- a/srcpkgs/profile-cleaner/template
+++ b/srcpkgs/profile-cleaner/template
@@ -2,7 +2,6 @@
 pkgname=profile-cleaner
 version=2.37
 revision=1
-archs=noarch
 build_style=gnu-makefile
 short_desc="Reduces profile size by cleaning their sqlite databases"
 depends="bash sqlite bc parallel findutils"
diff --git a/srcpkgs/protonvpn-cli/template b/srcpkgs/protonvpn-cli/template
index fb8ed8e0b57..081cbeea0b1 100644
--- a/srcpkgs/protonvpn-cli/template
+++ b/srcpkgs/protonvpn-cli/template
@@ -2,7 +2,6 @@
 pkgname=protonvpn-cli
 version=2.2.4
 revision=1
-archs=noarch
 wrksrc="linux-cli-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/pslist/template b/srcpkgs/pslist/template
index 52f36b6c129..673b4d932a9 100644
--- a/srcpkgs/pslist/template
+++ b/srcpkgs/pslist/template
@@ -2,7 +2,6 @@
 pkgname=pslist
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="MANDIR=/usr/share/man/man"
 make_check_target="test"
diff --git a/srcpkgs/psuinfo/template b/srcpkgs/psuinfo/template
index ca491f25bef..0705658530b 100644
--- a/srcpkgs/psuinfo/template
+++ b/srcpkgs/psuinfo/template
@@ -2,7 +2,6 @@
 pkgname=psuinfo
 version=1.1
 revision=1
-archs=noarch
 depends="python3>=3.5 python3-psutil"
 short_desc="Script to display customizable system info in Tint2 or other panels"
 maintainer="Piotr Miller <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/public-inbox/template b/srcpkgs/public-inbox/template
index 7a7198e79b5..ab9f82f6a82 100644
--- a/srcpkgs/public-inbox/template
+++ b/srcpkgs/public-inbox/template
@@ -2,7 +2,6 @@
 pkgname=public-inbox
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname}-${version/pre/-pre}"
 build_style=perl-module
 hostmakedepends="git perl perl-DBD-SQLite perl-Danga-Socket
diff --git a/srcpkgs/pulsemixer/template b/srcpkgs/pulsemixer/template
index 918b5af771a..e9f2c4f272d 100644
--- a/srcpkgs/pulsemixer/template
+++ b/srcpkgs/pulsemixer/template
@@ -2,7 +2,6 @@
 pkgname=pulsemixer
 version=1.5.1
 revision=1
-archs=noarch
 depends="python3 libpulseaudio"
 short_desc="CLI and curses mixer for Pulseaudio"
 maintainer="Dean Thomson <mrrobot@fsociety.info>"
diff --git a/srcpkgs/puppet/template b/srcpkgs/puppet/template
index 404319be63e..8156914f5d3 100644
--- a/srcpkgs/puppet/template
+++ b/srcpkgs/puppet/template
@@ -2,7 +2,6 @@
 pkgname=puppet
 version=6.16.0
 revision=1
-archs=noarch
 build_style=ruby-module
 hostmakedepends="ruby facter-devel hiera which"
 makedepends="facter-devel"
diff --git a/srcpkgs/py3status/template b/srcpkgs/py3status/template
index c0becb7bf58..e18b9ae3b5e 100644
--- a/srcpkgs/py3status/template
+++ b/srcpkgs/py3status/template
@@ -2,7 +2,6 @@
 pkgname=py3status
 version=3.28
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pyudev"
diff --git a/srcpkgs/pychess/template b/srcpkgs/pychess/template
index d0594aa77f4..c3113303009 100644
--- a/srcpkgs/pychess/template
+++ b/srcpkgs/pychess/template
@@ -4,7 +4,6 @@ version=0.12.4
 revision=3
 build_style=python3-module
 pycompile_module="pychess"
-archs=noarch
 hostmakedepends="python3-setuptools"
 depends="gobject-introspection gst-plugins-base1 gtksourceview python3-gobject"
 short_desc="A GTK chess client written in Python"
diff --git a/srcpkgs/pycp/template b/srcpkgs/pycp/template
index c9066259862..d4480023613 100644
--- a/srcpkgs/pycp/template
+++ b/srcpkgs/pycp/template
@@ -2,7 +2,6 @@
 pkgname=pycp
 version=8.0.8
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pycp"
 hostmakedepends="help2man python3-setuptools"
diff --git a/srcpkgs/pylint/template b/srcpkgs/pylint/template
index 20f70825470..965e2c65dca 100644
--- a/srcpkgs/pylint/template
+++ b/srcpkgs/pylint/template
@@ -2,7 +2,6 @@
 pkgname=pylint
 version=2.6.0
 revision=1
-archs=noarch
 wrksrc="pylint-${version}"
 build_style=python3-module
 pycompile_module="pylint"
diff --git a/srcpkgs/pyradio/template b/srcpkgs/pyradio/template
index 808c298c7b5..7ed0770161b 100644
--- a/srcpkgs/pyradio/template
+++ b/srcpkgs/pyradio/template
@@ -2,7 +2,6 @@
 pkgname=pyradio
 version=0.8.7.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3"
diff --git a/srcpkgs/pysolfc-cardsets/template b/srcpkgs/pysolfc-cardsets/template
index 2b1786bbce4..19a94b652f6 100644
--- a/srcpkgs/pysolfc-cardsets/template
+++ b/srcpkgs/pysolfc-cardsets/template
@@ -3,7 +3,6 @@ pkgname=pysolfc-cardsets
 version=2.0
 revision=1
 wrksrc="PySolFC-Cardsets-${version}"
-archs=noarch
 build_style=fetch
 short_desc="PySolFC Cardsets"
 maintainer="newbluemoon <blaumolch@mailbox.org>"
diff --git a/srcpkgs/pysolfc/template b/srcpkgs/pysolfc/template
index b634a8da817..9f405513f6c 100644
--- a/srcpkgs/pysolfc/template
+++ b/srcpkgs/pysolfc/template
@@ -2,7 +2,6 @@
 pkgname=pysolfc
 version=2.10.1
 revision=1
-archs="noarch"
 wrksrc="PySolFC-${pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="gettext python3-pygame python3-random2 python3-six
diff --git a/srcpkgs/pystopwatch/template b/srcpkgs/pystopwatch/template
index b10e194b021..1540db0c152 100644
--- a/srcpkgs/pystopwatch/template
+++ b/srcpkgs/pystopwatch/template
@@ -2,7 +2,6 @@
 pkgname=pystopwatch
 version=2019
 revision=1
-archs=noarch
 makedepends="pygtk-devel librsvg-devel"
 depends="python pygtk librsvg"
 short_desc="GTK2+ stopwatch written in Python"
diff --git a/srcpkgs/python-Arrow/template b/srcpkgs/python-Arrow/template
index a8c2e30c74b..471aef78fd3 100644
--- a/srcpkgs/python-Arrow/template
+++ b/srcpkgs/python-Arrow/template
@@ -2,7 +2,6 @@
 pkgname=python-Arrow
 version=0.15.5
 revision=1
-archs=noarch
 wrksrc="arrow-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/a/arrow/arrow-${version}.tar.gz"
 checksum=5390e464e2c5f76971b60ffa7ee29c598c7501a294bc9f5e6dadcb251a5d027b
 
 python3-Arrow_package() {
-	archs=noarch
 	depends="python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Babel/template b/srcpkgs/python-Babel/template
index 2b175b4ecba..d8482560e9d 100644
--- a/srcpkgs/python-Babel/template
+++ b/srcpkgs/python-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Babel
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-pytz"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="babel:pybabel:/usr/bin/pybabel3"
diff --git a/srcpkgs/python-BeautifulSoup4/template b/srcpkgs/python-BeautifulSoup4/template
index 956348442ff..b8f87d432bf 100644
--- a/srcpkgs/python-BeautifulSoup4/template
+++ b/srcpkgs/python-BeautifulSoup4/template
@@ -2,7 +2,6 @@
 pkgname=python-BeautifulSoup4
 version=4.8.2
 revision=1
-archs=noarch
 wrksrc="beautifulsoup4-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-BeautifulSoup4_package() {
-	archs=noarch
 	depends="python3 python3-soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Cheroot/template b/srcpkgs/python-Cheroot/template
index ce0447f4d35..d0f78cc8a5e 100644
--- a/srcpkgs/python-Cheroot/template
+++ b/srcpkgs/python-Cheroot/template
@@ -2,7 +2,6 @@
 pkgname=python-Cheroot
 version=8.3.1
 revision=1
-archs=noarch
 wrksrc="cheroot-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-Cheroot_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-more-itertools
 	 python3-jaraco.functools"
 	alternatives="cheroot:cheroot:/usr/bin/cheroot3"
diff --git a/srcpkgs/python-CherryPy/template b/srcpkgs/python-CherryPy/template
index b1e17cca37a..dc4db21f582 100644
--- a/srcpkgs/python-CherryPy/template
+++ b/srcpkgs/python-CherryPy/template
@@ -3,7 +3,6 @@ pkgname=python-CherryPy
 reverts="18.0.1_1 18.0.0_1"
 version=17.4.2
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python2-module
 pycompile_module="cherrypy"
diff --git a/srcpkgs/python-Django/template b/srcpkgs/python-Django/template
index 6549f5c0fae..e3049bfb0c8 100644
--- a/srcpkgs/python-Django/template
+++ b/srcpkgs/python-Django/template
@@ -2,7 +2,6 @@
 pkgname=python-Django
 version=1.11.29
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Flask-Assets/template b/srcpkgs/python-Flask-Assets/template
index 3ca0de18077..d90c614b497 100644
--- a/srcpkgs/python-Flask-Assets/template
+++ b/srcpkgs/python-Flask-Assets/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Assets
 version=0.12
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_assets.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Assets_package() {
-	archs=noarch
 	depends="python3-Flask python3-webassets"
 	pycompile_module="flask_assets.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Babel/template b/srcpkgs/python-Flask-Babel/template
index e5b600bf922..ec0457edaa8 100644
--- a/srcpkgs/python-Flask-Babel/template
+++ b/srcpkgs/python-Flask-Babel/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Babel
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Babel_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Babel python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-Login/template b/srcpkgs/python-Flask-Login/template
index a9b982bdce6..8ccc741026f 100644
--- a/srcpkgs/python-Flask-Login/template
+++ b/srcpkgs/python-Flask-Login/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Login
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-Login_package() {
-	archs=noarch
 	depends="python3-Flask"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask-OAuthlib/template b/srcpkgs/python-Flask-OAuthlib/template
index edf5c13560e..a5f93f870ae 100644
--- a/srcpkgs/python-Flask-OAuthlib/template
+++ b/srcpkgs/python-Flask-OAuthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-OAuthlib
 version=0.9.5
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-OAuthlib_package() {
-	archs=noarch
 	depends="python3-Flask python3-requests-oauthlib"
 	pycompile_module="flask_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-Script/template b/srcpkgs/python-Flask-Script/template
index ebac828a5b1..66b81795f21 100644
--- a/srcpkgs/python-Flask-Script/template
+++ b/srcpkgs/python-Flask-Script/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-Script
 version=2.0.6
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="flask_script"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Flask-Script_package() {
-	archs=noarch
 	depends="python3-Flask"
 	pycompile_module="flask_script"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Flask-WTF/template b/srcpkgs/python-Flask-WTF/template
index f72307f79be..5fbba684f2d 100644
--- a/srcpkgs/python-Flask-WTF/template
+++ b/srcpkgs/python-Flask-WTF/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask-WTF
 version=0.14.3
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-Flask-WTF_package() {
-	archs=noarch
 	depends="python3-Flask python3-WTForms"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Flask/template b/srcpkgs/python-Flask/template
index 1aa7f5208ed..c408c68feaf 100644
--- a/srcpkgs/python-Flask/template
+++ b/srcpkgs/python-Flask/template
@@ -2,7 +2,6 @@
 pkgname=python-Flask
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-Flask_package() {
-	archs=noarch
 	depends="python3-setuptools python3-Jinja2 python3-Werkzeug python3-itsdangerous python3-click"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="flask:flask:/usr/bin/flask3"
diff --git a/srcpkgs/python-GitPython/template b/srcpkgs/python-GitPython/template
index 232429265f1..d04bb9d9bf6 100644
--- a/srcpkgs/python-GitPython/template
+++ b/srcpkgs/python-GitPython/template
@@ -2,7 +2,6 @@
 pkgname=python-GitPython
 version=2.1.11
 revision=2
-archs=noarch
 wrksrc="GitPython-${version}"
 build_style=python-module
 pycompile_module="git"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-GitPython_package() {
-	archs=noarch
 	depends="python3-gitdb"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-IPy/template b/srcpkgs/python-IPy/template
index aaae9fcd002..57f7d363e0f 100644
--- a/srcpkgs/python-IPy/template
+++ b/srcpkgs/python-IPy/template
@@ -2,7 +2,6 @@
 pkgname=python-IPy
 version=1.00
 revision=2
-archs=noarch
 wrksrc="IPy-${version}"
 build_style=python-module
 pycompile_module="IPy.py"
@@ -21,7 +20,6 @@ post_install() {
 
 python3-IPy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="IPy.py"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-Jinja2/template b/srcpkgs/python-Jinja2/template
index 3fcd44dc198..b7b7acd1086 100644
--- a/srcpkgs/python-Jinja2/template
+++ b/srcpkgs/python-Jinja2/template
@@ -2,7 +2,6 @@
 pkgname=python-Jinja2
 version=2.10.1
 revision=2
-archs=noarch
 wrksrc="Jinja2-${version}"
 build_style=python-module
 pycompile_module="jinja2"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-Jinja2_package() {
-	archs=noarch
 	depends="python3-MarkupSafe"
 	pycompile_module="jinja2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Mako/template b/srcpkgs/python-Mako/template
index 8cfa6722149..58d13c2e9ef 100644
--- a/srcpkgs/python-Mako/template
+++ b/srcpkgs/python-Mako/template
@@ -2,7 +2,6 @@
 pkgname=python-Mako
 version=1.1.3
 revision=1
-archs=noarch
 wrksrc="Mako-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-Mako_package() {
-	archs=noarch
 	depends="python3-setuptools python3-MarkupSafe"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="mako:mako-render:/usr/bin/mako-render3"
diff --git a/srcpkgs/python-Markdown/template b/srcpkgs/python-Markdown/template
index fa75ca590cc..7e426c6463c 100644
--- a/srcpkgs/python-Markdown/template
+++ b/srcpkgs/python-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python-Markdown
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-Markups/template b/srcpkgs/python-Markups/template
index 1eb15b49301..7e120f7f16a 100644
--- a/srcpkgs/python-Markups/template
+++ b/srcpkgs/python-Markups/template
@@ -2,7 +2,6 @@
 pkgname=python-Markups
 version=3.0.0
 revision=3
-archs=noarch
 wrksrc="Markups-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Markups_package() {
-	archs=noarch
 	depends="python3 python3-markdown-math"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-MiniMock/template b/srcpkgs/python-MiniMock/template
index 8b8c4f5f1e6..cfb5ce7ee5e 100644
--- a/srcpkgs/python-MiniMock/template
+++ b/srcpkgs/python-MiniMock/template
@@ -2,7 +2,6 @@
 pkgname=python-MiniMock
 version=1.2.8
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="minimock.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-MiniMock_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="minimock.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyHamcrest/template b/srcpkgs/python-PyHamcrest/template
index 48f001595aa..f105d8557af 100644
--- a/srcpkgs/python-PyHamcrest/template
+++ b/srcpkgs/python-PyHamcrest/template
@@ -2,7 +2,6 @@
 pkgname=python-PyHamcrest
 version=1.9.0
 revision=2
-archs=noarch
 wrksrc="PyHamcrest-${version}"
 build_style=python-module
 pycompile_module="hamcrest"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-PyHamcrest_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="hamcrest"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-PyOpenGL/template b/srcpkgs/python-PyOpenGL/template
index 79709575673..a5afbb8b356 100644
--- a/srcpkgs/python-PyOpenGL/template
+++ b/srcpkgs/python-PyOpenGL/template
@@ -2,7 +2,6 @@
 pkgname=python-PyOpenGL
 version=3.1.5
 revision=1
-archs=noarch
 wrksrc="PyOpenGL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-PyOpenGL_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Pygments/template b/srcpkgs/python-Pygments/template
index d464e59d617..cf6ceb24d86 100644
--- a/srcpkgs/python-Pygments/template
+++ b/srcpkgs/python-Pygments/template
@@ -2,7 +2,6 @@
 pkgname=python-Pygments
 version=2.5.2
 revision=1
-archs=noarch
 wrksrc="Pygments-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-Pygments_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pygments:pygmentize:/usr/bin/pygmentize3"
diff --git a/srcpkgs/python-Pyro4/template b/srcpkgs/python-Pyro4/template
index 3eba13d0e9c..2a71b87f354 100644
--- a/srcpkgs/python-Pyro4/template
+++ b/srcpkgs/python-Pyro4/template
@@ -2,7 +2,6 @@
 pkgname=python-Pyro4
 version=4.80
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -34,7 +33,6 @@ python3-Pyro4_package() {
 	 pyro4:pyro4-ns:/usr/bin/pyro4-ns3
 	 pyro4:pyro4-nsc:/usr/bin/pyro4-nsc3
 	 pyro4:pyro4-test-echoserver:/usr/bin/pyro4-test-echoserver3"
-	archs=noarch
 	depends="python3-setuptools python3-serpent"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-SPARQLWrapper/template b/srcpkgs/python-SPARQLWrapper/template
index 8d2db9a02b3..01c58198024 100644
--- a/srcpkgs/python-SPARQLWrapper/template
+++ b/srcpkgs/python-SPARQLWrapper/template
@@ -2,7 +2,6 @@
 pkgname=python-SPARQLWrapper
 version=1.8.4
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="SPARQLWrapper"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/S/SPARQLWrapper/SPARQLWrapper-${version}.tar.gz"
 checksum=21928e7a97f565e772cdeeb0abad428960f4307e3a13dbdd8f6d3da8a6a506c9
 
 python3-SPARQLWrapper_package() {
-	archs=noarch
 	depends="python3-rdflib"
 	pycompile_module="SPARQLWrapper"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Unidecode/template b/srcpkgs/python-Unidecode/template
index 444eb1427d6..244948a7621 100644
--- a/srcpkgs/python-Unidecode/template
+++ b/srcpkgs/python-Unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python-Unidecode
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="Unidecode-${version}"
 build_style=python-module
 pycompile_module="unidecode"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-Unidecode_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="unidecode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-WTForms/template b/srcpkgs/python-WTForms/template
index 33f16940cb8..cdc03a45a1f 100644
--- a/srcpkgs/python-WTForms/template
+++ b/srcpkgs/python-WTForms/template
@@ -2,7 +2,6 @@
 pkgname=python-WTForms
 version=2.2.1
 revision=2
-archs=noarch
 wrksrc="WTForms-${version}"
 build_style=python-module
 pycompile_module="wtforms"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-WTForms_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wtforms"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-Werkzeug/template b/srcpkgs/python-Werkzeug/template
index b4bf1071851..5fcd9781c3d 100644
--- a/srcpkgs/python-Werkzeug/template
+++ b/srcpkgs/python-Werkzeug/template
@@ -2,7 +2,6 @@
 pkgname=python-Werkzeug
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-Werkzeug_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-Whoosh/template b/srcpkgs/python-Whoosh/template
index 66856b206a7..92cb5811a13 100644
--- a/srcpkgs/python-Whoosh/template
+++ b/srcpkgs/python-Whoosh/template
@@ -3,7 +3,6 @@ pkgname=python-Whoosh
 version=2.7.4
 revision=2
 wrksrc="Whoosh-${version}"
-archs=noarch
 build_style=python-module
 pycompile_module="whoosh"
 hostmakedepends="python-devel python3-devel python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 python3-Whoosh_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="whoosh"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-Yapsy/template b/srcpkgs/python-Yapsy/template
index 5ad8b234f5d..bc8e29f99a0 100644
--- a/srcpkgs/python-Yapsy/template
+++ b/srcpkgs/python-Yapsy/template
@@ -2,7 +2,6 @@
 pkgname=python-Yapsy
 version=1.12.2
 revision=2
-archs=noarch
 wrksrc="Yapsy-${version}"
 build_style=python-module
 pycompile_module="yapsy"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-Yapsy_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="yapsy"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-aalib/template b/srcpkgs/python-aalib/template
index f9621a9c8dc..d51c8447d4b 100644
--- a/srcpkgs/python-aalib/template
+++ b/srcpkgs/python-aalib/template
@@ -12,7 +12,6 @@ license="MIT"
 homepage="http://jwilk.net/software/python-aalib"
 distfiles="${PYPI_SITE}/p/python-aalib/python-aalib-${version}.tar.gz"
 checksum=c39071629e7962dcd926faf0135dc73e2a8eb5db9a53bc2ebe5965f8c39165a2
-archs=noarch
 
 post_install() {
 	sed -n '3,21p' < setup.py > LICENSE
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-aalib_package() {
-	archs=noarch
 	pycompile_module="aalib.py"
 	depends="aalib python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alabaster/template b/srcpkgs/python-alabaster/template
index b33009d5efb..5530541c6c4 100644
--- a/srcpkgs/python-alabaster/template
+++ b/srcpkgs/python-alabaster/template
@@ -2,7 +2,6 @@
 pkgname=python-alabaster
 version=0.7.12
 revision=2
-archs=noarch
 wrksrc="alabaster-${version}"
 build_style=python-module
 pycompile_module="alabaster"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-alabaster_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="alabaster"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-alembic/template b/srcpkgs/python-alembic/template
index 06f865c456d..96d77ac6e49 100644
--- a/srcpkgs/python-alembic/template
+++ b/srcpkgs/python-alembic/template
@@ -2,7 +2,6 @@
 pkgname=python-alembic
 version=1.4.2
 revision=2
-archs=noarch
 wrksrc="alembic-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-alembic_package() {
-	archs=noarch
 	depends="python3-Mako python3-SQLAlchemy python3-dateutil python3-editor"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ansicolor/template b/srcpkgs/python-ansicolor/template
index 3663a82f0cc..1756b99acab 100644
--- a/srcpkgs/python-ansicolor/template
+++ b/srcpkgs/python-ansicolor/template
@@ -2,7 +2,6 @@
 pkgname=python-ansicolor
 version=0.2.6
 revision=3
-archs=noarch
 wrksrc="ansicolor-${version}"
 build_style=python-module
 pycompile_module="ansicolor"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/ansicolor/ansicolor-${version}.tar.gz"
 checksum=d17e1b07b9dd7ded31699fbca53ae6cd373584f9b6dcbc124d1f321ebad31f1d
 
 python3-ansicolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ansicolor"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-appdirs/template b/srcpkgs/python-appdirs/template
index 68f8fa5cb4f..bf3b69cce99 100644
--- a/srcpkgs/python-appdirs/template
+++ b/srcpkgs/python-appdirs/template
@@ -2,7 +2,6 @@
 pkgname=python-appdirs
 version=1.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-appdirs_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-argh/template b/srcpkgs/python-argh/template
index 656da441757..1d4aae379bc 100644
--- a/srcpkgs/python-argh/template
+++ b/srcpkgs/python-argh/template
@@ -2,7 +2,6 @@
 pkgname=python-argh
 version=0.26.2
 revision=2
-archs=noarch
 wrksrc="argh-${version}"
 build_style=python-module
 pycompile_module="argh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/a/argh/argh-${version}.tar.gz"
 checksum=e9535b8c84dc9571a48999094fda7f33e63c3f1b74f3e5f3ac0105a58405bb65
 
 python3-argh_package() {
-	archs=noarch
 	pycompile_module="argh"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-arxiv2bib/template b/srcpkgs/python-arxiv2bib/template
index 4f245755dcf..b1d370ba61c 100644
--- a/srcpkgs/python-arxiv2bib/template
+++ b/srcpkgs/python-arxiv2bib/template
@@ -2,7 +2,6 @@
 pkgname=python-arxiv2bib
 version=1.0.8
 revision=3
-archs=noarch
 wrksrc="arxiv2bib-${version}"
 build_style=python-module
 pycompile_module="arxiv2bib"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-arxiv2bib_package() {
-	archs=noarch
 	pycompile_module="arxiv2bib.py"
 	alternatives="arxiv2bib:arxiv2bib:/usr/bin/arxiv2bib3"
 	depends="python3-setuptools"
diff --git a/srcpkgs/python-asn1crypto/template b/srcpkgs/python-asn1crypto/template
index e7ffe7415fc..7cf0624d22e 100644
--- a/srcpkgs/python-asn1crypto/template
+++ b/srcpkgs/python-asn1crypto/template
@@ -2,7 +2,6 @@
 pkgname=python-asn1crypto
 version=0.24.0
 revision=2
-archs=noarch
 wrksrc="asn1crypto-${version}"
 build_style=python-module
 pycompile_module="asn1crypto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-asn1crypto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="asn1crypto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-astroid/template b/srcpkgs/python-astroid/template
index 9da6aebae87..71cb18836cb 100644
--- a/srcpkgs/python-astroid/template
+++ b/srcpkgs/python-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python-astroid
 version=1.6.6
 revision=2
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python2-module
 pycompile_module="astroid"
diff --git a/srcpkgs/python-atomicwrites/template b/srcpkgs/python-atomicwrites/template
index ec411d981d4..5eebc020c12 100644
--- a/srcpkgs/python-atomicwrites/template
+++ b/srcpkgs/python-atomicwrites/template
@@ -2,7 +2,6 @@
 pkgname=python-atomicwrites
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="atomicwrites-${version}"
 build_style=python-module
 pycompile_module="atomicwrites"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-atomicwrites_package() {
-	archs=noarch
 	pycompile_module="atomicwrites"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-atspi/template b/srcpkgs/python-atspi/template
index 0141d97f85d..f7923ca89d1 100644
--- a/srcpkgs/python-atspi/template
+++ b/srcpkgs/python-atspi/template
@@ -3,7 +3,6 @@
 pkgname=python-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python"
diff --git a/srcpkgs/python-attrs/template b/srcpkgs/python-attrs/template
index 6e2297a9553..644601aa77b 100644
--- a/srcpkgs/python-attrs/template
+++ b/srcpkgs/python-attrs/template
@@ -2,7 +2,6 @@
 pkgname=python-attrs
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="attrs-${version}"
 build_style=python-module
 pycompile_module="attr"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-attrs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="attr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-audioread/template b/srcpkgs/python-audioread/template
index bc878d4b82d..55b3fc03ff5 100644
--- a/srcpkgs/python-audioread/template
+++ b/srcpkgs/python-audioread/template
@@ -2,7 +2,6 @@
 pkgname=python-audioread
 version=2.1.8
 revision=2
-archs=noarch
 wrksrc="audioread-${version}"
 build_style=python-module
 pycompile_module="audioread"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-audioread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="audioread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-automat/template b/srcpkgs/python-automat/template
index 66dad2f84bc..a73c9095962 100644
--- a/srcpkgs/python-automat/template
+++ b/srcpkgs/python-automat/template
@@ -2,7 +2,6 @@
 pkgname=python-automat
 version=20.2.0
 revision=1
-archs=noarch
 wrksrc="Automat-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -32,7 +31,6 @@ post_install() {
 }
 
 python3-automat_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-attrs python3-six"
 	alternatives="automat:automat-visualize:/usr/bin/automat-visualize3"
diff --git a/srcpkgs/python-axolotl/template b/srcpkgs/python-axolotl/template
index 74480b5a9fe..9ab879f9e87 100644
--- a/srcpkgs/python-axolotl/template
+++ b/srcpkgs/python-axolotl/template
@@ -2,7 +2,6 @@
 pkgname=python-axolotl
 version=0.2.3
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="axolotl"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/${pkgname}/${pkgname}-${version}.tar.gz"
 checksum=fe0e8147423f8dc4ec1077ea18ca5a54091366d22faa903a772ee6ea88b88daf
 
 python3-axolotl_package() {
-	archs=noarch
 	depends="python3-axolotl-curve25519 python3-cryptography python3-protobuf"
 	pycompile_module="axolotl"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-b2sdk/template b/srcpkgs/python-b2sdk/template
index 8c51c62d603..5ea032ed0dc 100644
--- a/srcpkgs/python-b2sdk/template
+++ b/srcpkgs/python-b2sdk/template
@@ -3,7 +3,6 @@
 pkgname=python-b2sdk
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc="b2sdk-${version}"
 build_style=python3-module
 pycompile_module="b2sdk"
diff --git a/srcpkgs/python-babelfish/template b/srcpkgs/python-babelfish/template
index 47d5bb176cc..6de0b031414 100644
--- a/srcpkgs/python-babelfish/template
+++ b/srcpkgs/python-babelfish/template
@@ -2,7 +2,6 @@
 pkgname=python-babelfish
 version=0.5.5
 revision=2
-archs=noarch
 wrksrc="babelfish-${version}"
 build_style=python-module
 pycompile_module="babelfish"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-babelfish_package() {
-	archs=noarch
 	pycompile_module="babelfish"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backcall/template b/srcpkgs/python-backcall/template
index a55af727ab6..d43ccd1d1c7 100644
--- a/srcpkgs/python-backcall/template
+++ b/srcpkgs/python-backcall/template
@@ -2,7 +2,6 @@
 pkgname=python-backcall
 version=0.1.0
 revision=2
-archs=noarch
 wrksrc="backcall-${version}"
 build_style=python-module
 pycompile_module="backcall"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/backcall/backcall-${version}.tar.gz"
 checksum=38ecd85be2c1e78f77fd91700c76e14667dc21e2713b63876c0eb901196e01e4
 
 python3-backcall_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="backcall"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-backports.configparser/template b/srcpkgs/python-backports.configparser/template
index 8a641320820..91d60205364 100644
--- a/srcpkgs/python-backports.configparser/template
+++ b/srcpkgs/python-backports.configparser/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.configparser
 version=3.5.0
 revision=1
-archs=noarch
 wrksrc="configparser-${version}"
 build_style=python2-module
 pycompile_module="backports configparser.py"
diff --git a/srcpkgs/python-backports.functools_lru_cache/template b/srcpkgs/python-backports.functools_lru_cache/template
index 0d268c9efa6..4829107b32d 100644
--- a/srcpkgs/python-backports.functools_lru_cache/template
+++ b/srcpkgs/python-backports.functools_lru_cache/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.functools_lru_cache
 version=1.5
 revision=1
-archs=noarch
 wrksrc="backports.functools_lru_cache-${version}"
 build_style=python2-module
 pycompile_module="backports/functools_lru_cache.py"
diff --git a/srcpkgs/python-backports.shutil_get_terminal_size/template b/srcpkgs/python-backports.shutil_get_terminal_size/template
index 2e9a5af7f52..8d0923ea0d1 100644
--- a/srcpkgs/python-backports.shutil_get_terminal_size/template
+++ b/srcpkgs/python-backports.shutil_get_terminal_size/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.shutil_get_terminal_size
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="backports.shutil_get_terminal_size-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports.ssl_match_hostname/template b/srcpkgs/python-backports.ssl_match_hostname/template
index dd4d76b47db..cd15b2c217c 100644
--- a/srcpkgs/python-backports.ssl_match_hostname/template
+++ b/srcpkgs/python-backports.ssl_match_hostname/template
@@ -2,7 +2,6 @@
 pkgname=python-backports.ssl_match_hostname
 version=3.5.0.1
 revision=3
-archs=noarch
 wrksrc="backports.ssl_match_hostname-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports/template b/srcpkgs/python-backports/template
index eec822727a8..ab40751073d 100644
--- a/srcpkgs/python-backports/template
+++ b/srcpkgs/python-backports/template
@@ -2,7 +2,6 @@
 pkgname=python-backports
 version=1.0
 revision=3
-archs=noarch
 wrksrc="backports-${version}"
 build_style=python2-module
 pycompile_module="backports"
diff --git a/srcpkgs/python-backports_abc/template b/srcpkgs/python-backports_abc/template
index 9d2e5565f02..0d23f9bd983 100644
--- a/srcpkgs/python-backports_abc/template
+++ b/srcpkgs/python-backports_abc/template
@@ -2,7 +2,6 @@
 pkgname=python-backports_abc
 version=0.5
 revision=1
-archs=noarch
 wrksrc="backports_abc-${version}"
 build_style=python2-module
 pycompile_module="backports_abc.py"
diff --git a/srcpkgs/python-bibtexparser/template b/srcpkgs/python-bibtexparser/template
index c40115c9fb8..ae63106cf4b 100644
--- a/srcpkgs/python-bibtexparser/template
+++ b/srcpkgs/python-bibtexparser/template
@@ -2,7 +2,6 @@
 pkgname=python-bibtexparser
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="bibtexparser-${version}"
 build_style=python-module
 pycompile_module="bibtexparser"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bibtexparser/bibtexparser-${version}.tar.gz"
 checksum=df8966ea752db6d74657a69b9d684a61aa33457ad6d9d50e41c50ef7f374907f
 
 python3-bibtexparser_package() {
-	archs=noarch
 	pycompile_module="bibtexparser"
 	depends="python3-parsing python3-future"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bitbucket-api/template b/srcpkgs/python-bitbucket-api/template
index 448ea60d53d..6e70a5976c1 100644
--- a/srcpkgs/python-bitbucket-api/template
+++ b/srcpkgs/python-bitbucket-api/template
@@ -2,7 +2,6 @@
 pkgname=python-bitbucket-api
 version=0.5.0
 revision=4
-archs=noarch
 wrksrc="bitbucket-api-${version}"
 build_style=python-module
 pycompile_module="bitbucket"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-bitbucket-api_package() {
-	archs=noarch
 	depends="python3-requests-oauthlib python3-sh"
 	pycompile_module="bitbucket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-bleach/template b/srcpkgs/python-bleach/template
index 84b0f132eba..e298a86007b 100644
--- a/srcpkgs/python-bleach/template
+++ b/srcpkgs/python-bleach/template
@@ -2,7 +2,6 @@
 pkgname=python-bleach
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="bleach-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/b/bleach/bleach-${version}.tar.gz"
 checksum=aa8b870d0f46965bac2c073a93444636b0e1ca74e9777e34f03dd494b8a59d48
 
 python3-bleach_package() {
-	archs=noarch
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-blessings/template b/srcpkgs/python-blessings/template
index baa4938c328..314dda27c56 100644
--- a/srcpkgs/python-blessings/template
+++ b/srcpkgs/python-blessings/template
@@ -2,7 +2,6 @@
 pkgname=python-blessings
 version=1.7
 revision=2
-archs=noarch
 wrksrc="blessings-${version}"
 build_style=python-module
 pycompile_module="blessings"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-blessings_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="blessings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-blinker/template b/srcpkgs/python-blinker/template
index b6d1d63d19a..d1df76cb181 100644
--- a/srcpkgs/python-blinker/template
+++ b/srcpkgs/python-blinker/template
@@ -2,7 +2,6 @@
 pkgname=python-blinker
 version=1.4
 revision=4
-archs=noarch
 wrksrc="blinker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-blinker_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="blinker"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-boto/template b/srcpkgs/python-boto/template
index 684c00feee0..583c1b3c3b2 100644
--- a/srcpkgs/python-boto/template
+++ b/srcpkgs/python-boto/template
@@ -2,7 +2,6 @@
 pkgname=python-boto
 version=2.49.0
 revision=2
-archs=noarch
 wrksrc="boto-${version}"
 build_style=python-module
 pycompile_module="boto"
@@ -41,7 +40,6 @@ post_install() {
 }
 
 python3-boto_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="boto"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-botocore/template b/srcpkgs/python-botocore/template
index 600559839d2..5430a3ed15f 100644
--- a/srcpkgs/python-botocore/template
+++ b/srcpkgs/python-botocore/template
@@ -2,7 +2,6 @@
 pkgname=python-botocore
 version=1.17.28
 revision=1
-archs=noarch
 wrksrc="botocore-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/botocore/archive/${version}.tar.gz"
 checksum=c9a4b4ffedeff89848a899bd4634be46a21a190690b505c2050888c0a5447936
 
 python3-botocore_package() {
-	archs=noarch
 	depends="python3-dateutil python3-docutils python3-jmespath python3-urllib3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-bottle/template b/srcpkgs/python-bottle/template
index 0ffc8adfec7..67ce25c0e25 100644
--- a/srcpkgs/python-bottle/template
+++ b/srcpkgs/python-bottle/template
@@ -2,7 +2,6 @@
 pkgname=python-bottle
 version=0.12.17
 revision=2
-archs=noarch
 wrksrc="bottle-${version}"
 build_style=python-module
 pycompile_module="bottle"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-bottle_package() {
-	archs=noarch
 	pycompile_module="bottle"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-cached-property/template b/srcpkgs/python-cached-property/template
index 16c89346565..101466a7524 100644
--- a/srcpkgs/python-cached-property/template
+++ b/srcpkgs/python-cached-property/template
@@ -2,7 +2,6 @@
 pkgname=python-cached-property
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="cached-property-${version}"
 build_style=python-module
 pycompile_module="cached_property.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cached-property_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cached_property.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cairocffi/template b/srcpkgs/python-cairocffi/template
index c057739b03d..b505bb1b258 100644
--- a/srcpkgs/python-cairocffi/template
+++ b/srcpkgs/python-cairocffi/template
@@ -2,7 +2,6 @@
 pkgname=python-cairocffi
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="cairocffi-${version}"
 build_style=python-module
 pycompile_module="cairocffi"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cairocffi_package() {
-	archs=noarch
 	depends="python3-cffi"
 	pycompile_module="cairocffi"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chardet/template b/srcpkgs/python-chardet/template
index bd502bbbddf..8874a5e3dd6 100644
--- a/srcpkgs/python-chardet/template
+++ b/srcpkgs/python-chardet/template
@@ -2,7 +2,6 @@
 pkgname=python-chardet
 version=3.0.4
 revision=3
-archs=noarch
 wrksrc="chardet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae
 alternatives="chardet:chardetect:/usr/bin/chardetect2"
 
 python3-chardet_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="chardet"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-chroot/template b/srcpkgs/python-chroot/template
index 7faa0f4cce9..e93599c9a9c 100644
--- a/srcpkgs/python-chroot/template
+++ b/srcpkgs/python-chroot/template
@@ -2,7 +2,6 @@
 pkgname=python-chroot
 version=0.9.18
 revision=2
-archs=noarch
 wrksrc="pychroot-${version}"
 build_style=python-module
 pycompile_module="pychroot"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-chroot_package() {
-	archs=noarch
 	depends="python3-snakeoil"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="chroot:pychroot:/usr/bin/pychroot3"
diff --git a/srcpkgs/python-cliapp/template b/srcpkgs/python-cliapp/template
index fd2c8cc4d13..c79ac262aa5 100644
--- a/srcpkgs/python-cliapp/template
+++ b/srcpkgs/python-cliapp/template
@@ -2,7 +2,6 @@
 pkgname=python-cliapp
 version=1.20180121
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="cliapp"
 hostmakedepends="python-setuptools python-yaml"
diff --git a/srcpkgs/python-click-log/template b/srcpkgs/python-click-log/template
index b57a7a74b4a..663e72fc0b0 100644
--- a/srcpkgs/python-click-log/template
+++ b/srcpkgs/python-click-log/template
@@ -2,7 +2,6 @@
 pkgname=python-click-log
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="click-log-${version}"
 build_style="python-module"
 pycompile_module="click_log"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-log_package() {
-	archs=noarch
 	pycompile_module="click_log"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click-threading/template b/srcpkgs/python-click-threading/template
index 49b4a4a9aae..39de1538611 100644
--- a/srcpkgs/python-click-threading/template
+++ b/srcpkgs/python-click-threading/template
@@ -2,7 +2,6 @@
 pkgname=python-click-threading
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="click-threading-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-click-threading_package() {
-	archs=noarch
 	pycompile_module="click_threading"
 	depends="python3-click"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-click/template b/srcpkgs/python-click/template
index 40d1b25a7ab..4f6444c307c 100644
--- a/srcpkgs/python-click/template
+++ b/srcpkgs/python-click/template
@@ -2,7 +2,6 @@
 pkgname=python-click
 version=7.1.2
 revision=1
-archs=noarch
 wrksrc="click-${version}"
 build_style="python-module"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-click_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-codespell/template b/srcpkgs/python-codespell/template
index 9ae2e19435c..13fdb17246b 100644
--- a/srcpkgs/python-codespell/template
+++ b/srcpkgs/python-codespell/template
@@ -2,7 +2,6 @@
 pkgname=python-codespell
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="codespell-${version}"
 build_style=python-module
 pycompile_module="codespell_lib"
@@ -17,7 +16,6 @@ checksum=53d22aefa1daf3365ca4625877271d23d143c0a92c16e55daf5cd14b6494b8f4
 alternatives="python-codespell:codespell:/usr/bin/codespell2"
 
 python3-codespell_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="codespell_lib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-colorama/template b/srcpkgs/python-colorama/template
index 09562385243..db815379183 100644
--- a/srcpkgs/python-colorama/template
+++ b/srcpkgs/python-colorama/template
@@ -2,7 +2,6 @@
 pkgname=python-colorama
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="colorama-${version}"
 build_style=python-module
 pycompile_module="colorama"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-colorama_package() {
-	archs=noarch
 	pycompile_module="colorama"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-configobj/template b/srcpkgs/python-configobj/template
index a8cb5d5d34e..3848feac2d6 100644
--- a/srcpkgs/python-configobj/template
+++ b/srcpkgs/python-configobj/template
@@ -2,7 +2,6 @@
 pkgname=python-configobj
 version=5.0.6
 revision=6
-archs=noarch
 wrksrc="configobj-${version}"
 build_style=python-module
 pycompile_module="_version.py configobj.py validate.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-configobj_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="_version.py configobj.py validate.py"
 	depends="python3-six"
diff --git a/srcpkgs/python-constantly/template b/srcpkgs/python-constantly/template
index 9160aec9edd..34edf105840 100644
--- a/srcpkgs/python-constantly/template
+++ b/srcpkgs/python-constantly/template
@@ -2,7 +2,6 @@
 pkgname=python-constantly
 version=15.1.0
 revision=3
-archs=noarch
 wrksrc="constantly-${version}"
 build_style=python-module
 pycompile_module="constantly"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-constantly_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="constantly"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-construct/template b/srcpkgs/python-construct/template
index d6d0b8010e2..5297e842c14 100644
--- a/srcpkgs/python-construct/template
+++ b/srcpkgs/python-construct/template
@@ -2,7 +2,6 @@
 pkgname=python-construct
 version=2.9.45
 revision=3
-archs=noarch
 wrksrc="construct-${version}"
 build_style=python-module
 pycompile_module="construct"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-construct_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="construct"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-contextlib2/template b/srcpkgs/python-contextlib2/template
index 97ef11550c8..6bd95147447 100644
--- a/srcpkgs/python-contextlib2/template
+++ b/srcpkgs/python-contextlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-contextlib2
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="contextlib2-${version}"
 build_style=python2-module
 pycompile_module="contextlib2.py"
diff --git a/srcpkgs/python-cram/template b/srcpkgs/python-cram/template
index 8c5d65fe260..132980d887a 100644
--- a/srcpkgs/python-cram/template
+++ b/srcpkgs/python-cram/template
@@ -2,7 +2,6 @@
 pkgname=python-cram
 version=0.7
 revision=3
-archs=noarch
 wrksrc="cram-${version}"
 build_style=python-module
 pycompile_module="cram"
@@ -17,7 +16,6 @@ checksum=7da7445af2ce15b90aad5ec4792f857cef5786d71f14377e9eb994d8b8337f2f
 alternatives="cram:cram:/usr/bin/cram2"
 
 python3-cram_package() {
-	archs=noarch
 	pycompile_module="cram"
 	alternatives="cram:cram:/usr/bin/cram3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cryptography_vectors/template b/srcpkgs/python-cryptography_vectors/template
index 3eee49a6dbf..d375016bc91 100644
--- a/srcpkgs/python-cryptography_vectors/template
+++ b/srcpkgs/python-cryptography_vectors/template
@@ -2,7 +2,6 @@
 pkgname=python-cryptography_vectors
 version=3.0
 revision=1
-archs=noarch
 wrksrc="cryptography_vectors-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
diff --git a/srcpkgs/python-css-parser/template b/srcpkgs/python-css-parser/template
index f6d2d0cbf8b..f4e95f73e48 100644
--- a/srcpkgs/python-css-parser/template
+++ b/srcpkgs/python-css-parser/template
@@ -2,7 +2,6 @@
 pkgname=python-css-parser
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="css-parser-${version}"
 build_style=python-module
 pycompile_module="css_parser"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-css-parser_package() {
-	archs=noarch
 	pycompile_module="css_parser"
 	depends="python3"
 	short_desc="${short_desc/2/3}"
diff --git a/srcpkgs/python-cssselect/template b/srcpkgs/python-cssselect/template
index c7f43ebca9f..81f28f8d682 100644
--- a/srcpkgs/python-cssselect/template
+++ b/srcpkgs/python-cssselect/template
@@ -2,7 +2,6 @@
 pkgname=python-cssselect
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="cssselect"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cssselect_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="cssselect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cssutils/template b/srcpkgs/python-cssutils/template
index 5f08903b9a0..2f023f342b0 100644
--- a/srcpkgs/python-cssutils/template
+++ b/srcpkgs/python-cssutils/template
@@ -2,7 +2,6 @@
 pkgname=python-cssutils
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="cssutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ python3-cssutils_package() {
 	 cssutils:csscapture:/usr/bin/csscapture3
 	 cssutils:csscombine:/usr/bin/csscombine3
 	 cssutils:cssparse:/usr/bin/cssparse3"
-	archs=noarch
 	pycompile_module="cssutils encutils"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-curtsies/template b/srcpkgs/python-curtsies/template
index 6126a11e9b4..c07d2d0270b 100644
--- a/srcpkgs/python-curtsies/template
+++ b/srcpkgs/python-curtsies/template
@@ -2,7 +2,6 @@
 pkgname=python-curtsies
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="curtsies-${version}"
 build_style=python-module
 pycompile_module="curtsies"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-curtsies_package() {
-	archs=noarch
 	pycompile_module="curtsies"
 	depends="python3-blessings python3-wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-cycler/template b/srcpkgs/python-cycler/template
index 0b53c195dae..1d6b1ec2bf2 100644
--- a/srcpkgs/python-cycler/template
+++ b/srcpkgs/python-cycler/template
@@ -2,7 +2,6 @@
 pkgname=python-cycler
 version=0.10.0
 revision=5
-archs=noarch
 wrksrc="cycler-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-cycler_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="cycler.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-daemonize/template b/srcpkgs/python-daemonize/template
index efaf163e573..51740f1ee4c 100644
--- a/srcpkgs/python-daemonize/template
+++ b/srcpkgs/python-daemonize/template
@@ -2,7 +2,6 @@
 pkgname=python-daemonize
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="daemonize-${version}"
 build_style=python-module
 pycompile_module="daemonize.py"
@@ -20,7 +19,6 @@ post_Install() {
 }
 
 python3-daemonize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="daemonize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dateutil/template b/srcpkgs/python-dateutil/template
index 7675b8f9447..ecedb52ebbd 100644
--- a/srcpkgs/python-dateutil/template
+++ b/srcpkgs/python-dateutil/template
@@ -2,7 +2,6 @@
 pkgname=python-dateutil
 version=2.8.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="dateutil"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-dateutil_package() {
-	archs=noarch
 	depends="python3-six tzdata"
 	pycompile_module="dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-decorator/template b/srcpkgs/python-decorator/template
index 7f14fef90a6..8ef89843121 100644
--- a/srcpkgs/python-decorator/template
+++ b/srcpkgs/python-decorator/template
@@ -2,7 +2,6 @@
 pkgname=python-decorator
 version=4.4.0
 revision=2
-archs=noarch
 wrksrc="decorator-${version}"
 build_style=python-module
 pycompile_module="decorator.py"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-decorator_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="decorator.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-defusedxml/template b/srcpkgs/python-defusedxml/template
index 96234eb18c7..a0cf9f80b07 100644
--- a/srcpkgs/python-defusedxml/template
+++ b/srcpkgs/python-defusedxml/template
@@ -2,7 +2,6 @@
 pkgname=python-defusedxml
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="defusedxml-${version}"
 build_style=python-module
 pycompile_module="defusedxml"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-defusedxml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="defusedxml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-discogs_client/template b/srcpkgs/python-discogs_client/template
index 5af18eda664..990062e8ffe 100644
--- a/srcpkgs/python-discogs_client/template
+++ b/srcpkgs/python-discogs_client/template
@@ -2,7 +2,6 @@
 pkgname=python-discogs_client
 version=2.2.2
 revision=2
-archs=noarch
 wrksrc="discogs-client-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-discogs_client_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-oauthlib"
 	pycompile_module="discogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-distutils-extra/template b/srcpkgs/python-distutils-extra/template
index 46bb0cccc31..9e5b8cafc56 100644
--- a/srcpkgs/python-distutils-extra/template
+++ b/srcpkgs/python-distutils-extra/template
@@ -2,7 +2,6 @@
 pkgname=python-distutils-extra
 version=2.39
 revision=4
-archs=noarch
 build_style=python-module
 pycompile_module="DistUtilsExtra"
 hostmakedepends="intltool python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://launchpad.net/${pkgname}/trunk/${version}/+download/${pkgname}
 checksum=723f24f4d65fc8d99b33a002fbbb3771d4cc9d664c97085bf37f3997ae8063af
 
 python3-distutils-extra_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="DistUtilsExtra"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-dnspython/template b/srcpkgs/python-dnspython/template
index 66d237e89ee..2ee14846431 100644
--- a/srcpkgs/python-dnspython/template
+++ b/srcpkgs/python-dnspython/template
@@ -2,7 +2,6 @@
 pkgname=python-dnspython
 version=1.16.0
 revision=2
-archs=noarch
 wrksrc="dnspython-${version}"
 build_style=python-module
 pycompile_module="dns"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-dnspython_package() {
-	archs=noarch
 	pycompile_module="dns"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker-pycreds/template b/srcpkgs/python-docker-pycreds/template
index 2224be0d21d..4d743effbe2 100644
--- a/srcpkgs/python-docker-pycreds/template
+++ b/srcpkgs/python-docker-pycreds/template
@@ -2,7 +2,6 @@
 pkgname=python-docker-pycreds
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="docker-pycreds-${version}"
 build_style=python-module
 pycompile_module="dockerpycreds"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker-pycreds/docker-pycreds-${version}.tar.gz"
 checksum=6ce3270bcaf404cc4c3e27e4b6c70d3521deae82fb508767870fdbf772d584d4
 
 python3-docker-pycreds_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="dockerpycreds"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docker/template b/srcpkgs/python-docker/template
index 1a325bd6c46..8156dac04c2 100644
--- a/srcpkgs/python-docker/template
+++ b/srcpkgs/python-docker/template
@@ -2,7 +2,6 @@
 pkgname=python-docker
 version=4.2.0
 revision=1
-archs=noarch
 wrksrc="docker-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/docker/docker-${version}.tar.gz"
 checksum=ddae66620ab5f4bce769f64bcd7934f880c8abe6aa50986298db56735d0f722e
 
 python3-docker_package() {
-	archs=noarch
 	depends="python3-requests python3-six python3-websocket-client python3-docker-pycreds"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dockerpty/template b/srcpkgs/python-dockerpty/template
index 4a0b3a7a33f..f3f10985243 100644
--- a/srcpkgs/python-dockerpty/template
+++ b/srcpkgs/python-dockerpty/template
@@ -2,7 +2,6 @@
 pkgname=python-dockerpty
 version=0.4.1
 revision=4
-archs=noarch
 wrksrc="dockerpty-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/d/dockerpty/dockerpty-${version}.tar.gz"
 checksum=69a9d69d573a0daa31bcd1c0774eeed5c15c295fe719c61aca550ed1393156ce
 
 python3-dockerpty_package() {
-	archs=noarch
 	depends="python3-six python3-docker"
 	pycompile_module="dockerpty"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docopt/template b/srcpkgs/python-docopt/template
index 48e5f86c1e0..911a684ac8c 100644
--- a/srcpkgs/python-docopt/template
+++ b/srcpkgs/python-docopt/template
@@ -2,7 +2,6 @@
 pkgname=python-docopt
 version=0.6.2
 revision=5
-archs=noarch
 wrksrc="docopt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-docopt_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="docopt.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-docutils/template b/srcpkgs/python-docutils/template
index 99e74968ddd..b818198b077 100644
--- a/srcpkgs/python-docutils/template
+++ b/srcpkgs/python-docutils/template
@@ -2,7 +2,6 @@
 pkgname=python-docutils
 version=0.16
 revision=1
-archs=noarch
 wrksrc="docutils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -53,7 +52,6 @@ python3-docutils_package() {
 	 docutils:rst2xetex:/usr/bin/rst2xetex.py3
 	 docutils:rst2xml:/usr/bin/rst2xml.py3
 	 docutils:rstpep2html:/usr/bin/rstpep2html.py3"
-	archs=noarch
 	depends="python3 python3-Pygments"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dogpile.cache/template b/srcpkgs/python-dogpile.cache/template
index 0978b7e168c..0c967a1e546 100644
--- a/srcpkgs/python-dogpile.cache/template
+++ b/srcpkgs/python-dogpile.cache/template
@@ -2,7 +2,6 @@
 pkgname=python-dogpile.cache
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="dogpile.cache-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-dogpile.cache_package() {
-	archs=noarch
 	depends="python3 python3-decorator"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-dominate/template b/srcpkgs/python-dominate/template
index 77fa674d156..f58f749178f 100644
--- a/srcpkgs/python-dominate/template
+++ b/srcpkgs/python-dominate/template
@@ -2,7 +2,6 @@
 pkgname=python-dominate
 version=2.5.2
 revision=1
-archs=noarch
 wrksrc="dominate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -14,7 +13,6 @@ distfiles="https://github.com/Knio/dominate/archive/${version}.tar.gz"
 checksum=a184e19ca36646a85ec40b83fe3762c08834ffe51499ec436eeb6646edde36ac
 
 python3-dominate_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-ecdsa/template b/srcpkgs/python-ecdsa/template
index 9e1108b28eb..f7854dad45d 100644
--- a/srcpkgs/python-ecdsa/template
+++ b/srcpkgs/python-ecdsa/template
@@ -2,7 +2,6 @@
 pkgname=python-ecdsa
 version=0.14.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 pycompile_module="ecdsa"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-ecdsa_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="ecdsa"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-editor/template b/srcpkgs/python-editor/template
index 3594e407205..0cc765fc3ea 100644
--- a/srcpkgs/python-editor/template
+++ b/srcpkgs/python-editor/template
@@ -2,7 +2,6 @@
 pkgname=python-editor
 version=1.0.4
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="editor"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/python-editor/python-editor-${version}.tar.gz"
 checksum=51fda6bcc5ddbbb7063b2af7509e43bd84bfc32a4ff71349ec7847713882327b
 
 python3-editor_package() {
-	archs=noarch
 	pycompile_module="editor"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-empy/template b/srcpkgs/python-empy/template
index 4668a9cc814..944d9424edd 100644
--- a/srcpkgs/python-empy/template
+++ b/srcpkgs/python-empy/template
@@ -2,7 +2,6 @@
 pkgname=python-empy
 version=3.3.4
 revision=2
-archs=noarch
 wrksrc="empy-${version}"
 build_style=python-module
 pycompile_module="EmPy"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-empy_package() {
-	archs=noarch
 	pycompile_module="EmPy"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enchant/template b/srcpkgs/python-enchant/template
index 68d35c0e13a..3a9f8f9235e 100644
--- a/srcpkgs/python-enchant/template
+++ b/srcpkgs/python-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python-enchant
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools enchant-devel"
diff --git a/srcpkgs/python-entrypoints/template b/srcpkgs/python-entrypoints/template
index 6070650f35d..846be545b54 100644
--- a/srcpkgs/python-entrypoints/template
+++ b/srcpkgs/python-entrypoints/template
@@ -2,7 +2,6 @@
 pkgname=python-entrypoints
 version=0.3
 revision=2
-archs=noarch
 wrksrc="entrypoints-${version}"
 build_style=python-module
 pycompile_module="entrypoints.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-entrypoints_package() {
-	archs=noarch
 	pycompile_module="entrypoints.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enum34/template b/srcpkgs/python-enum34/template
index 9bd644fe47d..849d37e119d 100644
--- a/srcpkgs/python-enum34/template
+++ b/srcpkgs/python-enum34/template
@@ -2,7 +2,6 @@
 pkgname=python-enum34
 version=1.1.6
 revision=1
-archs=noarch
 wrksrc="enum34-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-envdir/template b/srcpkgs/python-envdir/template
index b8cccad60ac..e00112ebce3 100644
--- a/srcpkgs/python-envdir/template
+++ b/srcpkgs/python-envdir/template
@@ -2,7 +2,6 @@
 pkgname=python-envdir
 version=1.0.1
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="envdir"
@@ -26,7 +25,6 @@ python3-envdir_package() {
 	alternatives="
 	 envdir:envdir:/usr/bin/envdir3
 	 envdir:envshell:/usr/bin/envshell3"
-	archs=noarch
 	pycompile_module="envdir"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-enzyme/template b/srcpkgs/python-enzyme/template
index f28f40b0319..14cac54c7ea 100644
--- a/srcpkgs/python-enzyme/template
+++ b/srcpkgs/python-enzyme/template
@@ -2,7 +2,6 @@
 pkgname=python-enzyme
 version=0.4.1
 revision=2
-archs=noarch
 wrksrc="enzyme-${version}"
 build_style=python-module
 pycompile_module="enzyme"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/enzyme/enzyme-${version}.tar.gz"
 checksum=f2167fa97c24d1103a94d4bf4eb20f00ca76c38a37499821049253b2059c62bb
 
 python3-enzyme_package() {
-	archs=noarch
 	pycompile_module="enzyme"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ewmh/template b/srcpkgs/python-ewmh/template
index a96490fb56d..bbd1a376d97 100644
--- a/srcpkgs/python-ewmh/template
+++ b/srcpkgs/python-ewmh/template
@@ -2,7 +2,6 @@
 pkgname=python-ewmh
 version=0.1.6
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="ewmh"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/e/ewmh/ewmh-${version}.tar.gz"
 checksum=c56b093f7d575181e979bb3a7d15c34065755f811c351ff0a31fede12b09343d
 
 python3-ewmh_package() {
-	archs=noarch
 	depends="python3-xlib"
 	pycompile_module="ewmh"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-exifread/template b/srcpkgs/python-exifread/template
index 834aa7730ee..842bc1534cb 100644
--- a/srcpkgs/python-exifread/template
+++ b/srcpkgs/python-exifread/template
@@ -2,7 +2,6 @@
 pkgname=python-exifread
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="exif-py-${version}"
 build_style="python-module"
 pycompile_module="exifread"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-exifread_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="exifread"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-fasteners/template b/srcpkgs/python-fasteners/template
index 24d2ec0611f..ae213f138ad 100644
--- a/srcpkgs/python-fasteners/template
+++ b/srcpkgs/python-fasteners/template
@@ -2,7 +2,6 @@
 pkgname=python-fasteners
 version=0.15
 revision=2
-archs=noarch
 wrksrc="fasteners-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/fasteners/fasteners-${version}.tar.gz"
 checksum=3a176da6b70df9bb88498e1a18a9e4a8579ed5b9141207762368a1017bf8f5ef
 
 python3-fasteners_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="fasteners"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-feedgenerator/template b/srcpkgs/python-feedgenerator/template
index 24d5317b1e9..e2cc73a0da7 100644
--- a/srcpkgs/python-feedgenerator/template
+++ b/srcpkgs/python-feedgenerator/template
@@ -2,7 +2,6 @@
 pkgname=python-feedgenerator
 version=1.9.1
 revision=1
-archs=noarch
 wrksrc="feedgenerator-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/feedgenerator/feedgenerator-${version}.tar.gz"
 checksum=a28a5add781509390d1a6a52d017829853ee4bef1d2e7b4d5da0e9d1b395ce54
 
 python3-feedgenerator_package() {
-	archs=noarch
 	depends="python3-pytz python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-feedparser/template b/srcpkgs/python-feedparser/template
index 94f0a58ec88..e803b2d67d8 100644
--- a/srcpkgs/python-feedparser/template
+++ b/srcpkgs/python-feedparser/template
@@ -2,7 +2,6 @@
 pkgname=python-feedparser
 version=5.2.1
 revision=6
-archs=noarch
 wrksrc="feedparser-${version}"
 build_style=python-module
 pycompile_module="feedparser.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-feedparser_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="feedparser.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-filetype/template b/srcpkgs/python-filetype/template
index 10b974794b5..5951e1658ba 100644
--- a/srcpkgs/python-filetype/template
+++ b/srcpkgs/python-filetype/template
@@ -2,7 +2,6 @@
 pkgname=python-filetype
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="filetype-${version}"
 build_style=python-module
 pycompile_module="filetype"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-filetype_package() {
-	archs=noarch
 	pycompile_module="filetype"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-flaky/template b/srcpkgs/python-flaky/template
index e8e681421f7..07a57e6a816 100644
--- a/srcpkgs/python-flaky/template
+++ b/srcpkgs/python-flaky/template
@@ -2,7 +2,6 @@
 pkgname=python-flaky
 version=3.6.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="flaky"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/f/flaky/flaky-${version}.tar.gz"
 checksum=8cd5455bb00c677f787da424eaf8c4a58a922d0e97126d3085db5b279a98b698
 
 python3-flaky_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="flaky"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-funcsigs/template b/srcpkgs/python-funcsigs/template
index 26f14b0ca3c..627e54dbebb 100644
--- a/srcpkgs/python-funcsigs/template
+++ b/srcpkgs/python-funcsigs/template
@@ -2,7 +2,6 @@
 pkgname=python-funcsigs
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="funcsigs-${version}"
 build_style=python2-module
 pycompile_module="funcsigs"
diff --git a/srcpkgs/python-functools32/template b/srcpkgs/python-functools32/template
index 53f9d69a576..4d553cfc1a0 100644
--- a/srcpkgs/python-functools32/template
+++ b/srcpkgs/python-functools32/template
@@ -2,7 +2,6 @@
 pkgname=python-functools32
 version=3.2.3.post2
 revision=1
-archs=noarch
 wrksrc="functools32-${version/.post/-}"
 build_style=python2-module
 pycompile_module="functools32"
diff --git a/srcpkgs/python-future/template b/srcpkgs/python-future/template
index 88b09a1944f..bdca44ab56f 100644
--- a/srcpkgs/python-future/template
+++ b/srcpkgs/python-future/template
@@ -2,7 +2,6 @@
 pkgname=python-future
 version=0.18.2
 revision=1
-archs=noarch
 wrksrc="future-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ python3-future_package() {
 	alternatives="
 	 future:futurize:/usr/bin/futurize3
 	 future:pasteurize:/usr/bin/pasteurize3"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-futures/template b/srcpkgs/python-futures/template
index 12d1f4ae71f..3657171b7c9 100644
--- a/srcpkgs/python-futures/template
+++ b/srcpkgs/python-futures/template
@@ -2,7 +2,6 @@
 pkgname=python-futures
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="futures-${version}"
 build_style=python2-module
 pycompile_module="concurrent"
diff --git a/srcpkgs/python-gitdb/template b/srcpkgs/python-gitdb/template
index 253ddaa07bd..be12400dee5 100644
--- a/srcpkgs/python-gitdb/template
+++ b/srcpkgs/python-gitdb/template
@@ -2,7 +2,6 @@
 pkgname=python-gitdb
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="gitdb2-${version}"
 build_style=python-module
 pycompile_module="gitdb"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-gitdb_package() {
-	archs=noarch
 	depends="python3-smmap"
 	pycompile_module="gitdb"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-github3/template b/srcpkgs/python-github3/template
index 425fe1b7362..25a6dfa5265 100644
--- a/srcpkgs/python-github3/template
+++ b/srcpkgs/python-github3/template
@@ -2,7 +2,6 @@
 pkgname=python-github3
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="github3.py-${version}"
 build_style=python-module
 pycompile_module="github3"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-github3_package() {
-	archs=noarch
 	depends="python3-requests python3-uritemplate"
 	pycompile_module="github3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gitlab/template b/srcpkgs/python-gitlab/template
index 0f71b4c7153..b7d621f71f9 100644
--- a/srcpkgs/python-gitlab/template
+++ b/srcpkgs/python-gitlab/template
@@ -2,7 +2,6 @@
 pkgname=python-gitlab
 version=1.12.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="gitlab"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-gitlab_package() {
-	archs=noarch
 	depends="python3-setuptools python3-requests python3-six"
 	pycompile_module="gitlab"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gntp/template b/srcpkgs/python-gntp/template
index 7b3bb5a7bb7..2b05b8facce 100644
--- a/srcpkgs/python-gntp/template
+++ b/srcpkgs/python-gntp/template
@@ -2,7 +2,6 @@
 pkgname=python-gntp
 version=1.0.3
 revision=5
-archs=noarch
 wrksrc="gntp-${version}"
 build_style=python-module
 pycompile_module="gntp"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-gntp_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="gntp"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-gnupg/template b/srcpkgs/python-gnupg/template
index b5dd94bf8e1..d3be663d966 100644
--- a/srcpkgs/python-gnupg/template
+++ b/srcpkgs/python-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=python-gnupg
 version=0.4.6
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python gnupg"
@@ -20,7 +19,6 @@ post_install() {
 python3-gnupg_package() {
 	depends="python3 gnupg"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 		vlicense LICENSE.txt
diff --git a/srcpkgs/python-gogs-client/template b/srcpkgs/python-gogs-client/template
index 027135d430c..348c347a094 100644
--- a/srcpkgs/python-gogs-client/template
+++ b/srcpkgs/python-gogs-client/template
@@ -2,7 +2,6 @@
 pkgname=python-gogs-client
 version=1.0.6
 revision=4
-archs=noarch
 wrksrc="gogs_client-${version}"
 build_style=python-module
 pycompile_module="gogs_client"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-gogs-client_package() {
-	archs=noarch
 	depends="python3-future python3-requests python3-attrs"
 	pycompile_module="gogs_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-guessit/template b/srcpkgs/python-guessit/template
index a962f14522f..acf0b08270c 100644
--- a/srcpkgs/python-guessit/template
+++ b/srcpkgs/python-guessit/template
@@ -2,7 +2,6 @@
 pkgname=python-guessit
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="guessit-${version}"
 build_style=python-module
 pycompile_module="guessit"
@@ -17,7 +16,6 @@ checksum=2dcd3f2acaf6c1a864f903f084ddd6a6b753f3107ae864355d7c8c1e9cb205b2
 alternatives="guessit:guessit:/usr/bin/guessit2"
 
 python3-guessit_package() {
-	archs=noarch
 	pycompile_module="guessit"
 	depends="python3 python3-rebulk python3-babelfish python3-dateutil"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-h11/template b/srcpkgs/python-h11/template
index 7f2d2c5fa8a..c078bb1edda 100644
--- a/srcpkgs/python-h11/template
+++ b/srcpkgs/python-h11/template
@@ -2,7 +2,6 @@
 pkgname=python-h11
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc=h11-${version}
 build_style=python-module
 pycompile_module="h11"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-h11_package() {
-	archs=noarch
 	pycompile_module="h11"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-habanero/template b/srcpkgs/python-habanero/template
index a914f21ecb7..13f16c5495c 100644
--- a/srcpkgs/python-habanero/template
+++ b/srcpkgs/python-habanero/template
@@ -2,7 +2,6 @@
 pkgname=python-habanero
 version=0.6.2
 revision=2
-archs=noarch
 wrksrc="habanero-${version}"
 build_style=python-module
 pycompile_module="habanero"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-habanero_package() {
-	archs=noarch
 	pycompile_module="habanero"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hpack/template b/srcpkgs/python-hpack/template
index ffbac313103..2855219bb2a 100644
--- a/srcpkgs/python-hpack/template
+++ b/srcpkgs/python-hpack/template
@@ -2,7 +2,6 @@
 pkgname=python-hpack
 version=3.0.0
 revision=2
-archs=noarch
 wrksrc=hpack-${version}
 build_style=python-module
 pycompile_module="hpack"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hpack_package() {
-	archs=noarch
 	pycompile_module="hpack"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-html2text/template b/srcpkgs/python-html2text/template
index f83a3a4c020..5b4e911b0a3 100644
--- a/srcpkgs/python-html2text/template
+++ b/srcpkgs/python-html2text/template
@@ -3,7 +3,6 @@
 pkgname=python-html2text
 version=2019.8.11
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python-html5lib/template b/srcpkgs/python-html5lib/template
index 2565de64fd2..9740f92e0f7 100644
--- a/srcpkgs/python-html5lib/template
+++ b/srcpkgs/python-html5lib/template
@@ -2,7 +2,6 @@
 pkgname=python-html5lib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="html5lib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-html5lib_package() {
-	archs=noarch
 	pycompile_module="html5lib"
 	depends="python3-six python3-webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httmock/template b/srcpkgs/python-httmock/template
index e798b4fc1b3..7d9e0b7e45f 100644
--- a/srcpkgs/python-httmock/template
+++ b/srcpkgs/python-httmock/template
@@ -2,7 +2,6 @@
 pkgname=python-httmock
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="httmock-${version}"
 build_style=python-module
 pycompile_module="httmock.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-httmock_package() {
-	archs=noarch
 	pycompile_module="httmock.py"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-httplib2/template b/srcpkgs/python-httplib2/template
index 3a31c396621..0b52b6a8c0e 100644
--- a/srcpkgs/python-httplib2/template
+++ b/srcpkgs/python-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python-httplib2
 version=0.14.0
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="httplib2-${version}"
 build_style=python-module
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-httplib2_package() {
-	archs=noarch
 	depends="python3 ca-certificates"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-hyper-h2/template b/srcpkgs/python-hyper-h2/template
index 2c6942ac329..c31e3301020 100644
--- a/srcpkgs/python-hyper-h2/template
+++ b/srcpkgs/python-hyper-h2/template
@@ -2,7 +2,6 @@
 pkgname=python-hyper-h2
 version=3.1.1
 revision=3
-archs=noarch
 wrksrc="hyper-h2-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-hyper-h2_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3 python3-hpack python3-hyperframe"
 	pkg_install() {
diff --git a/srcpkgs/python-hyperframe/template b/srcpkgs/python-hyperframe/template
index 6b544c2061c..3e097830d29 100644
--- a/srcpkgs/python-hyperframe/template
+++ b/srcpkgs/python-hyperframe/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperframe
 version=5.2.0
 revision=2
-archs=noarch
 wrksrc=hyperframe-${version}
 build_style=python-module
 pycompile_module="hyperframe"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperframe_package() {
-	archs=noarch
 	pycompile_module="hyperframe"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hyperlink/template b/srcpkgs/python-hyperlink/template
index 945bf72ee59..8f09927f274 100644
--- a/srcpkgs/python-hyperlink/template
+++ b/srcpkgs/python-hyperlink/template
@@ -2,7 +2,6 @@
 pkgname=python-hyperlink
 version=19.0.0
 revision=2
-archs=noarch
 wrksrc="hyperlink-${version}"
 build_style=python-module
 pycompile_module="hyperlink"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-hyperlink_package() {
-	archs=noarch
 	depends="python3-idna"
 	pycompile_module="hyperlink"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-hypothesis/template b/srcpkgs/python-hypothesis/template
index de55593fc02..abbb225b87b 100644
--- a/srcpkgs/python-hypothesis/template
+++ b/srcpkgs/python-hypothesis/template
@@ -2,7 +2,6 @@
 pkgname=python-hypothesis
 version=4.38.2
 revision=2
-archs=noarch
 wrksrc="hypothesis-hypothesis-python-${version}"
 build_wrksrc=hypothesis-python
 build_style=python-module
@@ -35,7 +34,6 @@ do_check() {
 }
 
 python3-hypothesis_package() {
-	archs=noarch
 	pycompile_module="hypothesis"
 	depends="python3-attrs python3-coverage"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-icalendar/template b/srcpkgs/python-icalendar/template
index dbb7ddb8fd3..f0a50b1a760 100644
--- a/srcpkgs/python-icalendar/template
+++ b/srcpkgs/python-icalendar/template
@@ -2,7 +2,6 @@
 pkgname=python-icalendar
 version=4.0.6
 revision=1
-archs=noarch
 wrksrc="icalendar-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-icalendar_package() {
-	archs=noarch
 	depends="python3-setuptools python3-dateutil python3-pytz"
 	alternatives="icalendar:icalendar:/usr/bin/icalendar3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-idna/template b/srcpkgs/python-idna/template
index 9de25fa6392..74896b4e4c5 100644
--- a/srcpkgs/python-idna/template
+++ b/srcpkgs/python-idna/template
@@ -2,7 +2,6 @@
 pkgname=python-idna
 version=2.9
 revision=1
-archs=noarch
 wrksrc="idna-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-idna_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-imagesize/template b/srcpkgs/python-imagesize/template
index f64c86812b5..e65fa624fb8 100644
--- a/srcpkgs/python-imagesize/template
+++ b/srcpkgs/python-imagesize/template
@@ -2,7 +2,6 @@
 pkgname=python-imagesize
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="imagesize-${version}"
 build_style=python-module
 pycompile_module="imagesize.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-imagesize_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="imagesize.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-importlib_metadata/template b/srcpkgs/python-importlib_metadata/template
index 227e67ed565..f4a2e9438d0 100644
--- a/srcpkgs/python-importlib_metadata/template
+++ b/srcpkgs/python-importlib_metadata/template
@@ -2,7 +2,6 @@
 pkgname=python-importlib_metadata
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="importlib_metadata-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-incremental/template b/srcpkgs/python-incremental/template
index 70477e26866..70c332e0274 100644
--- a/srcpkgs/python-incremental/template
+++ b/srcpkgs/python-incremental/template
@@ -2,7 +2,6 @@
 pkgname=python-incremental
 version=17.5.0
 revision=3
-archs=noarch
 wrksrc="incremental-${version}"
 build_style=python-module
 pycompile_module="incremental"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-incremental_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="incremental"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-inotify/template b/srcpkgs/python-inotify/template
index 64e48fd9330..02f724b4bdf 100644
--- a/srcpkgs/python-inotify/template
+++ b/srcpkgs/python-inotify/template
@@ -2,7 +2,6 @@
 pkgname=python-inotify
 version=0.9.6
 revision=4
-archs=noarch
 wrksrc="pyinotify-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-inotify_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyinotify.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ipaddr/template b/srcpkgs/python-ipaddr/template
index 9bd50773ae6..f17949a1822 100644
--- a/srcpkgs/python-ipaddr/template
+++ b/srcpkgs/python-ipaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddr
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="ipaddr-${version}"
 build_style=python2-module
 pycompile_module="ipaddr.py"
diff --git a/srcpkgs/python-ipaddress/template b/srcpkgs/python-ipaddress/template
index 8a2d6c80b31..4d598e1146a 100644
--- a/srcpkgs/python-ipaddress/template
+++ b/srcpkgs/python-ipaddress/template
@@ -2,7 +2,6 @@
 pkgname=python-ipaddress
 version=1.0.23
 revision=1
-archs=noarch
 wrksrc="ipaddress-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-iptools/template b/srcpkgs/python-iptools/template
index 3c53013fb9d..f44d919759b 100644
--- a/srcpkgs/python-iptools/template
+++ b/srcpkgs/python-iptools/template
@@ -2,7 +2,6 @@
 pkgname=python-iptools
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="iptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-iptools_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="iptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isbnlib/template b/srcpkgs/python-isbnlib/template
index 1cc46a060d6..92d61d8166b 100644
--- a/srcpkgs/python-isbnlib/template
+++ b/srcpkgs/python-isbnlib/template
@@ -2,7 +2,6 @@
 pkgname=python-isbnlib
 version=3.9.6
 revision=2
-archs=noarch
 wrksrc="isbnlib-${version}"
 build_style=python-module
 pycompile_module="isbnlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-isbnlib_package() {
-	archs=noarch
 	pycompile_module="isbnlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-iso-8601/template b/srcpkgs/python-iso-8601/template
index a841866d439..4e59ea10e12 100644
--- a/srcpkgs/python-iso-8601/template
+++ b/srcpkgs/python-iso-8601/template
@@ -2,7 +2,6 @@
 pkgname=python-iso-8601
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="iso-8601-${version}"
 build_style=python-module
 pycompile_module="iso8601"
diff --git a/srcpkgs/python-isodate/template b/srcpkgs/python-isodate/template
index 74e4e813e64..bb5115ef04e 100644
--- a/srcpkgs/python-isodate/template
+++ b/srcpkgs/python-isodate/template
@@ -2,7 +2,6 @@
 pkgname=python-isodate
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="isodate-${version}"
 build_style=python-module
 pycompile_module="isodate"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-isodate_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="isodate"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-isort/template b/srcpkgs/python-isort/template
index cd8e43b69ea..bcc48aa6abd 100644
--- a/srcpkgs/python-isort/template
+++ b/srcpkgs/python-isort/template
@@ -2,7 +2,6 @@
 pkgname=python-isort
 version=4.3.21
 revision=2
-archs=noarch
 wrksrc="isort-${version}"
 build_style=python-module
 pycompile_module="isort"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-isort_package() {
-	archs=noarch
 	pycompile_module="isort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-itsdangerous/template b/srcpkgs/python-itsdangerous/template
index fe51cc78a9b..b02eeabc46a 100644
--- a/srcpkgs/python-itsdangerous/template
+++ b/srcpkgs/python-itsdangerous/template
@@ -2,7 +2,6 @@
 pkgname=python-itsdangerous
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-itsdangerous_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jaraco.functools/template b/srcpkgs/python-jaraco.functools/template
index 55c82a8101a..84aaea71b7e 100644
--- a/srcpkgs/python-jaraco.functools/template
+++ b/srcpkgs/python-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python-jaraco.functools
 version=2.0
 revision=3
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-jedi/template b/srcpkgs/python-jedi/template
index 0799a69c69f..5c0437ae78d 100644
--- a/srcpkgs/python-jedi/template
+++ b/srcpkgs/python-jedi/template
@@ -2,7 +2,6 @@
 pkgname=python-jedi
 version=0.17.2
 revision=2
-archs=noarch
 wrksrc="jedi-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jedi_package() {
-	archs=noarch
 	depends="python3-parso"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jmespath/template b/srcpkgs/python-jmespath/template
index 6f1dfcecf0f..5716281b7fd 100644
--- a/srcpkgs/python-jmespath/template
+++ b/srcpkgs/python-jmespath/template
@@ -2,7 +2,6 @@
 pkgname=python-jmespath
 version=0.10.0
 revision=1
-archs=noarch
 wrksrc="jmespath.py-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-jmespath_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="jmespath:jp.py:/usr/bin/jp.py3"
diff --git a/srcpkgs/python-jsonpointer/template b/srcpkgs/python-jsonpointer/template
index fd103d123aa..c7e06343501 100644
--- a/srcpkgs/python-jsonpointer/template
+++ b/srcpkgs/python-jsonpointer/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonpointer
 version=2.0
 revision=2
-archs=noarch
 wrksrc="jsonpointer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-jsonpointer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="jsonpointer.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-jsonrpclib/template b/srcpkgs/python-jsonrpclib/template
index a245168a824..d70336fef15 100644
--- a/srcpkgs/python-jsonrpclib/template
+++ b/srcpkgs/python-jsonrpclib/template
@@ -2,7 +2,6 @@
 pkgname=python-jsonrpclib
 version=0.4.0
 revision=2
-archs=noarch
 wrksrc="jsonrpclib-pelix-${version}"
 build_style=python-module
 pycompile_module="jsonrpclib"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/j/jsonrpclib-pelix/jsonrpclib-pelix-${version}.tar.gz"
 checksum=19c558e169a51480b39548783067ca55046b62b2409ab4559931255e12f635de
 
 python3-jsonrpclib_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-jsonschema/template b/srcpkgs/python-jsonschema/template
index 326b5609d36..f62b9a370a1 100644
--- a/srcpkgs/python-jsonschema/template
+++ b/srcpkgs/python-jsonschema/template
@@ -3,7 +3,6 @@ pkgname=python-jsonschema
 reverts="3.0.2_1"
 version=2.6.0
 revision=4
-archs=noarch
 wrksrc="jsonschema-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -29,7 +28,6 @@ post_install() {
 }
 
 python3-jsonschema_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="jsonschema"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kaptan/template b/srcpkgs/python-kaptan/template
index 6668b240008..a1a5ba3cb30 100644
--- a/srcpkgs/python-kaptan/template
+++ b/srcpkgs/python-kaptan/template
@@ -2,7 +2,6 @@
 pkgname=python-kaptan
 version=0.5.12
 revision=2
-archs=noarch
 wrksrc="kaptan-${version}"
 build_style=python-module
 pycompile_module="kaptan"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-kaptan_package() {
-	archs=noarch
 	pycompile_module="kaptan"
 	depends="python3 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-keepalive/template b/srcpkgs/python-keepalive/template
index 50e1d7e6e78..c9ed9368215 100644
--- a/srcpkgs/python-keepalive/template
+++ b/srcpkgs/python-keepalive/template
@@ -2,7 +2,6 @@
 pkgname=python-keepalive
 version=0.5
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/k/keepalive/keepalive-${version}.tar.gz"
 checksum=3c6b96f9062a5a76022f0c9d41e9ef5552d80b1cadd4fccc1bf8f183ba1d1ec1
 
 python3-keepalive_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="keepalive"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-kitchen/template b/srcpkgs/python-kitchen/template
index 917131d6d93..96ea9ebf05b 100644
--- a/srcpkgs/python-kitchen/template
+++ b/srcpkgs/python-kitchen/template
@@ -2,7 +2,6 @@
 pkgname=python-kitchen
 version=1.2.6
 revision=3
-archs=noarch
 wrksrc="kitchen-${version}"
 build_style=python-module
 pycompile_module="kitchen"
@@ -16,7 +15,6 @@ distfiles="https://github.com/fedora-infra/kitchen/archive/${version}.tar.gz"
 checksum=6963dd84819713aafdd55e5314dcce6df5a37430b62fd9c48770e9f1a467b2b0
 
 python3-kitchen_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="kitchen"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-larch/template b/srcpkgs/python-larch/template
index 7b9fb4a1e5e..9cdece3c5a1 100644
--- a/srcpkgs/python-larch/template
+++ b/srcpkgs/python-larch/template
@@ -2,7 +2,6 @@
 pkgname=python-larch
 version=1.20151025
 revision=1
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools python-tracing"
 makedepends="python-devel python-tracing"
diff --git a/srcpkgs/python-ldap3/template b/srcpkgs/python-ldap3/template
index 39fcc264979..9ab0a38ac90 100644
--- a/srcpkgs/python-ldap3/template
+++ b/srcpkgs/python-ldap3/template
@@ -2,7 +2,6 @@
 pkgname=python-ldap3
 version=2.6.1
 revision=2
-archs=noarch
 wrksrc="ldap3-${version}"
 build_style=python-module
 pycompile_module="ldap3"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=f21d1a65e19ed5a691d7cf30af375e84663254e800ddc950bd7b6f9bb15d2c19
 
 python3-ldap3_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="ldap3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-libtmux/template b/srcpkgs/python-libtmux/template
index 20f43af5f7d..6e155bae91b 100644
--- a/srcpkgs/python-libtmux/template
+++ b/srcpkgs/python-libtmux/template
@@ -2,7 +2,6 @@
 pkgname=python-libtmux
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="libtmux-${version}"
 build_style=python-module
 pycompile_module="libtmux"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-libtmux_package() {
-	archs=noarch
 	pycompile_module="libtmux"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-lockfile/template b/srcpkgs/python-lockfile/template
index 778cecba7e9..c03de4dada8 100644
--- a/srcpkgs/python-lockfile/template
+++ b/srcpkgs/python-lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-lockfile
 version=0.12.2
 revision=4
-archs=noarch
 wrksrc="lockfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools python-pbr python3-pbr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-lockfile_package() {
-	archs=noarch
 	pycompile_module="lockfile"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-logfury/template b/srcpkgs/python-logfury/template
index c190d529bfe..13d75a8a077 100644
--- a/srcpkgs/python-logfury/template
+++ b/srcpkgs/python-logfury/template
@@ -2,7 +2,6 @@
 pkgname=python-logfury
 version=0.1.2
 revision=5
-archs=noarch
 wrksrc="logfury-${version}"
 build_style=python-module
 pycompile_module="logfury"
@@ -29,7 +28,6 @@ do_check() {
 }
 
 python3-logfury_package() {
-	archs=noarch
 	pycompile_module="logfury"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-magic/template b/srcpkgs/python-magic/template
index 6bb26bb6cd2..2265a60b796 100644
--- a/srcpkgs/python-magic/template
+++ b/srcpkgs/python-magic/template
@@ -2,7 +2,6 @@
 pkgname=python-magic
 version=0.4.18
 revision=2
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 makedepends="python libmagic"
@@ -18,7 +17,6 @@ post_install() {
 }
 
 python3-magic_package() {
-	archs=noarch
 	depends="python3 libmagic"
 	# Beware: not an alternative
 	conflicts="python3-file-magic>=0"
diff --git a/srcpkgs/python-markdown2/template b/srcpkgs/python-markdown2/template
index e9068f64202..88f400e3d29 100644
--- a/srcpkgs/python-markdown2/template
+++ b/srcpkgs/python-markdown2/template
@@ -2,7 +2,6 @@
 pkgname=python-markdown2
 version=2.3.8
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="markdown2"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-markdown2_package() {
-	archs=noarch
 	pycompile_module="markdown2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-matplotlib/template b/srcpkgs/python-matplotlib/template
index b155d980569..421a1930bda 100644
--- a/srcpkgs/python-matplotlib/template
+++ b/srcpkgs/python-matplotlib/template
@@ -41,7 +41,6 @@ post_install() {
 }
 
 python-matplotlib-data_package() {
-	archs=noarch
 	conf_files="/etc/matplotlibrc"
 	short_desc+=" - data files"
 	pkg_install() {
diff --git a/srcpkgs/python-mccabe/template b/srcpkgs/python-mccabe/template
index 1e2ed6328b8..d20b004b852 100644
--- a/srcpkgs/python-mccabe/template
+++ b/srcpkgs/python-mccabe/template
@@ -2,7 +2,6 @@
 pkgname=python-mccabe
 version=0.6.1
 revision=3
-archs=noarch
 replaces="mccabe>=0"
 wrksrc="mccabe-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-mccabe_package() {
-	archs=noarch
 	pycompile_module="mccabe.py"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mechanize/template b/srcpkgs/python-mechanize/template
index ca29bbd0d23..a9be9b7ff2f 100644
--- a/srcpkgs/python-mechanize/template
+++ b/srcpkgs/python-mechanize/template
@@ -2,7 +2,6 @@
 pkgname=python-mechanize
 version=0.4.3
 revision=3
-archs=noarch
 wrksrc="mechanize-${version}"
 build_style=python-module
 pycompile_module="mechanize"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mechanize_package() {
-	archs=noarch
 	depends="python3 python3-html5lib"
 	pycompile_module="mechanize"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mistune/template b/srcpkgs/python-mistune/template
index ef5c054ba75..56e75385714 100644
--- a/srcpkgs/python-mistune/template
+++ b/srcpkgs/python-mistune/template
@@ -2,7 +2,6 @@
 pkgname=python-mistune
 version=0.8.4
 revision=2
-archs=noarch
 wrksrc="mistune-${version}"
 build_style=python-module
 pycompile_module="mistune.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mistune_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mistune.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mock/template b/srcpkgs/python-mock/template
index 8392c6e2a93..2690cb1b98f 100644
--- a/srcpkgs/python-mock/template
+++ b/srcpkgs/python-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-mock
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="mock"
diff --git a/srcpkgs/python-monotonic/template b/srcpkgs/python-monotonic/template
index 2c1e997bea1..d291dc8b5bb 100644
--- a/srcpkgs/python-monotonic/template
+++ b/srcpkgs/python-monotonic/template
@@ -2,7 +2,6 @@
 pkgname=python-monotonic
 version=1.5
 revision=1
-archs=noarch
 wrksrc="monotonic-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-more-itertools/template b/srcpkgs/python-more-itertools/template
index 8b77456eed7..598f5e643b9 100644
--- a/srcpkgs/python-more-itertools/template
+++ b/srcpkgs/python-more-itertools/template
@@ -3,7 +3,6 @@ pkgname=python-more-itertools
 reverts="6.0.0_1"
 version=5.0.0
 revision=2
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python2-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python-mpd2/template b/srcpkgs/python-mpd2/template
index 0389f8c2a28..2bb2a79ee73 100644
--- a/srcpkgs/python-mpd2/template
+++ b/srcpkgs/python-mpd2/template
@@ -2,7 +2,6 @@
 pkgname=python-mpd2
 version=1.0.0
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="mpd"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-mpd2_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpd"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mpmath/template b/srcpkgs/python-mpmath/template
index 8fd4873dd62..ef9609f1eac 100644
--- a/srcpkgs/python-mpmath/template
+++ b/srcpkgs/python-mpmath/template
@@ -2,7 +2,6 @@
 pkgname=python-mpmath
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="mpmath-${version}"
 build_style=python-module
 pycompile_module="mpmath"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mpmath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="mpmath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-msp430-tools/template b/srcpkgs/python-msp430-tools/template
index 84c0fd78cb8..af7413be891 100644
--- a/srcpkgs/python-msp430-tools/template
+++ b/srcpkgs/python-msp430-tools/template
@@ -2,7 +2,6 @@
 pkgname=python-msp430-tools
 version=0.9.2
 revision=1
-archs=noarch
 build_style=python2-module
 pycompile_module="msp430"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-mtranslate/template b/srcpkgs/python-mtranslate/template
index 992c7b76fe9..524ccf0cf27 100644
--- a/srcpkgs/python-mtranslate/template
+++ b/srcpkgs/python-mtranslate/template
@@ -2,7 +2,6 @@
 pkgname=python-mtranslate
 version=1.6
 revision=2
-archs=noarch
 wrksrc="mtranslate-${version}"
 build_style=python-module
 pycompile_module="mtranslate"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-mtranslate_package() {
-	archs=noarch
 	pycompile_module="mtranslate"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-munkres/template b/srcpkgs/python-munkres/template
index 97694aeac84..a0d670f74a1 100644
--- a/srcpkgs/python-munkres/template
+++ b/srcpkgs/python-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python-munkres
 version=1.0.12
 revision=1
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python2-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python-musicbrainzngs/template b/srcpkgs/python-musicbrainzngs/template
index a17ca953a3a..69ddaaa6924 100644
--- a/srcpkgs/python-musicbrainzngs/template
+++ b/srcpkgs/python-musicbrainzngs/template
@@ -2,7 +2,6 @@
 pkgname=python-musicbrainzngs
 version=0.6
 revision=4
-archs=noarch
 wrksrc="musicbrainzngs-${version}"
 build_style="python-module"
 pycompile_module="musicbrainzngs"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-musicbrainzngs_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="musicbrainzngs"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-mygpoclient/template b/srcpkgs/python-mygpoclient/template
index ffad63a70a1..638453e695e 100644
--- a/srcpkgs/python-mygpoclient/template
+++ b/srcpkgs/python-mygpoclient/template
@@ -2,7 +2,6 @@
 pkgname=python-mygpoclient
 version=1.8
 revision=3
-archs=noarch
 wrksrc="mygpoclient-${version}"
 build_style=python-module
 pycompile_module="mygpoclient"
@@ -30,7 +29,6 @@ python3-mygpoclient_package() {
 	 mygpoclient:mygpo-simple-client:/usr/bin/mygpo-simple-client3"
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="mygpoclient"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-namedlist/template b/srcpkgs/python-namedlist/template
index 75626b9f6d5..21d4346f554 100644
--- a/srcpkgs/python-namedlist/template
+++ b/srcpkgs/python-namedlist/template
@@ -2,7 +2,6 @@
 pkgname=python-namedlist
 version=1.7
 revision=6
-archs=noarch
 wrksrc="namedlist-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/namedlist/namedlist-${version}.tar.gz"
 checksum=190b39ceaf1d6b59999811259e61beb1b26aaa482fb8c95538294d551461c986
 
 python3-namedlist_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="namedlist.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-natsort/template b/srcpkgs/python-natsort/template
index 7101e297aad..ec6df73b102 100644
--- a/srcpkgs/python-natsort/template
+++ b/srcpkgs/python-natsort/template
@@ -2,7 +2,6 @@
 pkgname=python-natsort
 version=6.0.0
 revision=2
-archs=noarch
 wrksrc="natsort-${version}"
 build_style=python-module
 pycompile_module="natsort"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-natsort_package() {
-	archs=noarch
 	pycompile_module="natsort"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ndg_httpsclient/template b/srcpkgs/python-ndg_httpsclient/template
index 54b653f68a9..ddf490888c6 100644
--- a/srcpkgs/python-ndg_httpsclient/template
+++ b/srcpkgs/python-ndg_httpsclient/template
@@ -2,7 +2,6 @@
 pkgname=python-ndg_httpsclient
 version=0.5.1
 revision=2
-archs=noarch
 wrksrc="ndg_httpsclient-${version}"
 build_style=python-module
 pycompile_module="ndg/httpsclient"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ndg_httpsclient_package() {
-	archs=noarch
 	depends="python3-openssl python3-pyasn1"
 	pycompile_module="ndg/httpsclient"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-netaddr/template b/srcpkgs/python-netaddr/template
index 20cc1c93134..69fa4080f1c 100644
--- a/srcpkgs/python-netaddr/template
+++ b/srcpkgs/python-netaddr/template
@@ -2,7 +2,6 @@
 pkgname=python-netaddr
 version=0.7.19
 revision=3
-archs=noarch
 wrksrc="netaddr-${version}"
 build_style=python-module
 pycompile_module="netaddr"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-netaddr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="netaddr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose/template b/srcpkgs/python-nose/template
index f2cd7fe5c3f..2ad6f5bb304 100644
--- a/srcpkgs/python-nose/template
+++ b/srcpkgs/python-nose/template
@@ -2,7 +2,6 @@
 pkgname=python-nose
 version=1.3.7
 revision=4
-archs=noarch
 wrksrc="nose-${version}"
 build_style=python-module
 pycompile_module="nose"
@@ -18,7 +17,6 @@ checksum=f1bffef9cbc82628f6e7d7b40d7e255aefaa1adb6a1b1d26c69a8b79e6208a98
 alternatives="nose:nosetests:/usr/bin/nosetests2"
 
 python3-nose_package() {
-	archs=noarch
 	pycompile_module="nose"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-nose2/template b/srcpkgs/python-nose2/template
index 058abbd4253..de6db0c3cac 100644
--- a/srcpkgs/python-nose2/template
+++ b/srcpkgs/python-nose2/template
@@ -2,7 +2,6 @@
 pkgname=python-nose2
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="nose2"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-nose2_package() {
-	archs=noarch
 	pycompile_module="nose2"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-setuptools python3-coverage python3-six"
diff --git a/srcpkgs/python-npyscreen/template b/srcpkgs/python-npyscreen/template
index 2223850f22e..1e47ceb7e75 100644
--- a/srcpkgs/python-npyscreen/template
+++ b/srcpkgs/python-npyscreen/template
@@ -13,14 +13,12 @@ license="BSD-2-Clause"
 homepage="https://github.com/bad-day/npyscreen"
 distfiles="https://github.com/bad-day/npyscreen/archive/${version}.tar.gz"
 checksum=6703c22d6bad3131b075d7d242c611a3c7ba8eae03f6d3cb414e3d35dae94b29
-archs=noarch
 
 post_install() {
 	vlicense LICENCE
 }
 
 python3-npyscreen_package() {
-	archs=noarch
 	pycompile_module="npyscreen"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-ntplib/template b/srcpkgs/python-ntplib/template
index 0582fb326c1..7bb1ee3effe 100644
--- a/srcpkgs/python-ntplib/template
+++ b/srcpkgs/python-ntplib/template
@@ -2,7 +2,6 @@
 pkgname=python-ntplib
 version=0.3.3
 revision=4
-archs=noarch
 build_style=python-module
 wrksrc="ntplib-${version}"
 pycompile_module="ntplib.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/n/ntplib/ntplib-${version}.tar.gz"
 checksum="c4621b64d50be9461d9bd9a71ba0b4af06fbbf818bbd483752d95c1a4e273ede"
 
 python3-ntplib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ntplib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-oauth2client/template b/srcpkgs/python-oauth2client/template
index 2398adba276..9469fb2411e 100644
--- a/srcpkgs/python-oauth2client/template
+++ b/srcpkgs/python-oauth2client/template
@@ -2,7 +2,6 @@
 pkgname=python-oauth2client
 version=4.1.3
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauth2client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/o/oauth2client/oauth2client-${version}.tar.gz"
 checksum=d486741e451287f69568a4d26d70d9acd73a2bbfa275746c535b4209891cccc6
 
 python3-oauth2client_package() {
-	archs=noarch
 	depends="python3-httplib2 python3-pyasn1 python3-pyasn1-modules
 	 python3-rsa python3-six"
 	pycompile_module="oauth2client"
diff --git a/srcpkgs/python-oauthlib/template b/srcpkgs/python-oauthlib/template
index 036f1b31c92..ba8887bb647 100644
--- a/srcpkgs/python-oauthlib/template
+++ b/srcpkgs/python-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-oauthlib
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="oauthlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-oauthlib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-olefile/template b/srcpkgs/python-olefile/template
index 803d7b67cd8..8d57d382f61 100644
--- a/srcpkgs/python-olefile/template
+++ b/srcpkgs/python-olefile/template
@@ -2,7 +2,6 @@
 pkgname=python-olefile
 version=0.46
 revision=2
-archs=noarch
 wrksrc="olefile-${version}"
 build_style=python-module
 pycompile_module="olefile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-olefile_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="olefile"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-openssl/template b/srcpkgs/python-openssl/template
index d7ab230194d..92d746abf01 100644
--- a/srcpkgs/python-openssl/template
+++ b/srcpkgs/python-openssl/template
@@ -2,7 +2,6 @@
 pkgname=python-openssl
 version=19.1.0
 revision=1
-archs=noarch
 wrksrc="pyOpenSSL-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pyOpenSSL/pyOpenSSL-${version}.tar.gz"
 checksum=9a24494b2602aaf402be5c9e30a0b82d4a5c67528fe8fb475e3f3bc00dd69507
 
 python3-openssl_package() {
-	archs=noarch
 	depends="python3-cryptography python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-packaging/template b/srcpkgs/python-packaging/template
index 06042d12b90..3aff25e48ab 100644
--- a/srcpkgs/python-packaging/template
+++ b/srcpkgs/python-packaging/template
@@ -2,7 +2,6 @@
 pkgname=python-packaging
 version=19.1
 revision=3
-archs=noarch
 wrksrc="packaging-${version}"
 build_style=python-module
 pycompile_module="packaging"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-packaging_package() {
-	archs=noarch
 	pycompile_module="packaging"
 	depends="python3-attrs python3-parsing python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pam/template b/srcpkgs/python-pam/template
index 780e9008ea7..91331977858 100644
--- a/srcpkgs/python-pam/template
+++ b/srcpkgs/python-pam/template
@@ -2,7 +2,6 @@
 pkgname=python-pam
 version=1.8.4
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="pam.py"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pam_package() {
-	archs=noarch
 	depends="python3 pam"
 	pycompile_module="pam.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pandocfilters/template b/srcpkgs/python-pandocfilters/template
index 8650d20256f..119156c8578 100644
--- a/srcpkgs/python-pandocfilters/template
+++ b/srcpkgs/python-pandocfilters/template
@@ -2,7 +2,6 @@
 pkgname=python-pandocfilters
 version=1.4.2
 revision=3
-archs=noarch
 wrksrc="pandocfilters-${version}"
 build_style=python-module
 pycompile_module="pandocfilters.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pandocfilters_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pandocfilters.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-paramiko/template b/srcpkgs/python-paramiko/template
index f1bca0aea24..54447c2eb96 100644
--- a/srcpkgs/python-paramiko/template
+++ b/srcpkgs/python-paramiko/template
@@ -2,7 +2,6 @@
 pkgname=python-paramiko
 version=2.7.1
 revision=1
-archs=noarch
 wrksrc="${pkgname/python-/}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/paramiko/paramiko-${version}.tar.gz"
 checksum=920492895db8013f6cc0179293147f830b8c7b21fdfc839b6bad760c27459d9f
 
 python3-paramiko_package() {
-	archs=noarch
 	depends="python3-cryptography python3-pyasn1 python3-bcrypt python3-pynacl"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parse/template b/srcpkgs/python-parse/template
index 9ccdc26d51e..0eda1fafae5 100644
--- a/srcpkgs/python-parse/template
+++ b/srcpkgs/python-parse/template
@@ -2,7 +2,6 @@
 pkgname=python-parse
 version=1.12.0
 revision=2
-archs=noarch
 wrksrc="parse-${version}"
 build_style=python-module
 pycompile_module="parse.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-parse_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="parse.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-parsing/template b/srcpkgs/python-parsing/template
index 56d64c7cbaa..db4b7f35583 100644
--- a/srcpkgs/python-parsing/template
+++ b/srcpkgs/python-parsing/template
@@ -2,7 +2,6 @@
 pkgname=python-parsing
 version=2.4.6
 revision=1
-archs=noarch
 wrksrc="pyparsing-pyparsing_${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-parsing_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-parso/template b/srcpkgs/python-parso/template
index 49ed2fbdf20..93cbe8ef17d 100644
--- a/srcpkgs/python-parso/template
+++ b/srcpkgs/python-parso/template
@@ -2,7 +2,6 @@
 pkgname=python-parso
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-passlib/template b/srcpkgs/python-passlib/template
index f46a3e92642..805563fc9a6 100644
--- a/srcpkgs/python-passlib/template
+++ b/srcpkgs/python-passlib/template
@@ -2,7 +2,6 @@
 pkgname=python-passlib
 version=1.7.1
 revision=3
-archs=noarch
 wrksrc="passlib-${version}"
 build_style=python-module
 pycompile_module="passlib"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-passlib_package() {
-	archs=noarch
 	pycompile_module="passlib"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathlib/template b/srcpkgs/python-pathlib/template
index 65704965145..b71e822c2e8 100644
--- a/srcpkgs/python-pathlib/template
+++ b/srcpkgs/python-pathlib/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="pathlib-${version}"
 build_style=python2-module
 pycompile_module="pathlib.py"
diff --git a/srcpkgs/python-pathlib2/template b/srcpkgs/python-pathlib2/template
index fa600b78fbe..d879dbb709c 100644
--- a/srcpkgs/python-pathlib2/template
+++ b/srcpkgs/python-pathlib2/template
@@ -2,7 +2,6 @@
 pkgname=python-pathlib2
 version=2.3.4
 revision=3
-archs=noarch
 wrksrc="pathlib2-${version}"
 build_style=python-module
 pycompile_module="pathlib2"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/pathlib2/pathlib2-${version}.tar.gz"
 checksum=446014523bb9be5c28128c4d2a10ad6bb60769e78bd85658fe44a450674e0ef8
 
 python3-pathlib2_package() {
-	archs=noarch
 	depends="python3-six python3-scandir"
 	pycompile_module="pathlib2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathspec/template b/srcpkgs/python-pathspec/template
index bd4736ec45d..33d17e59452 100644
--- a/srcpkgs/python-pathspec/template
+++ b/srcpkgs/python-pathspec/template
@@ -2,7 +2,6 @@
 pkgname=python-pathspec
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="pathspec-${version}"
 build_style=python-module
 pycompile_module="pathspec"
@@ -20,7 +19,6 @@ do_check() {
 }
 
 python3-pathspec_package() {
-	archs=noarch
 	pycompile_module="pathspec"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pathtools/template b/srcpkgs/python-pathtools/template
index 47dc6ef6a71..d8785d20444 100644
--- a/srcpkgs/python-pathtools/template
+++ b/srcpkgs/python-pathtools/template
@@ -2,7 +2,6 @@
 pkgname=python-pathtools
 version=0.1.2
 revision=2
-archs=noarch
 wrksrc="pathtools-${version}"
 build_style=python-module
 pycompile_module="pathtools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pathtools_package() {
-	archs=noarch
 	pycompile_module="pathtools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pbkdf2/template b/srcpkgs/python-pbkdf2/template
index 956d0b4cad9..218cf6e1bae 100644
--- a/srcpkgs/python-pbkdf2/template
+++ b/srcpkgs/python-pbkdf2/template
@@ -2,7 +2,6 @@
 pkgname=python-pbkdf2
 version=1.3
 revision=4
-archs=noarch
 wrksrc="pbkdf2-${version}"
 build_style=python-module
 pycompile_module="pbkdf2"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pbkdf2_package() {
-	archs=noarch
 	pycompile_module="pbkdf2"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pbr/template b/srcpkgs/python-pbr/template
index 9c7216056fe..fca5c38e134 100644
--- a/srcpkgs/python-pbr/template
+++ b/srcpkgs/python-pbr/template
@@ -2,7 +2,6 @@
 pkgname=python-pbr
 version=5.4.3
 revision=2
-archs=noarch
 wrksrc="pbr-${version}"
 build_style=python-module
 pycompile_module="pbr"
@@ -17,7 +16,6 @@ checksum=2c8e420cd4ed4cec4e7999ee47409e876af575d4c35a45840d59e8b5f3155ab8
 alternatives="pbr:pbr:/usr/bin/pbr2"
 
 python3-pbr_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pbr"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pdfrw/template b/srcpkgs/python-pdfrw/template
index ef7db98e491..ae37b56cb7c 100644
--- a/srcpkgs/python-pdfrw/template
+++ b/srcpkgs/python-pdfrw/template
@@ -2,7 +2,6 @@
 pkgname=python-pdfrw
 version=0.4
 revision=3
-archs=noarch
 replaces="python-pdfrw-example<${version}_${revision}"
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
@@ -24,7 +23,6 @@ post_install() {
 
 python3-pdfrw_package() {
 	replaces="python-pdfrw-example<${version}_${revision}"
-	archs=noarch
 	pycompile_module="pdfrw"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pexpect/template b/srcpkgs/python-pexpect/template
index 03102c3d294..c17f54ee717 100644
--- a/srcpkgs/python-pexpect/template
+++ b/srcpkgs/python-pexpect/template
@@ -2,7 +2,6 @@
 pkgname=python-pexpect
 version=4.7.0
 revision=2
-archs=noarch
 wrksrc="pexpect-${version}"
 build_style=python-module
 pycompile_module="pexpect"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-pexpect_package() {
-	archs=noarch
 	depends="python3-ptyprocess"
 	pycompile_module="pexpect"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pgmigrate/template b/srcpkgs/python-pgmigrate/template
index f98052f4151..a0120b06438 100644
--- a/srcpkgs/python-pgmigrate/template
+++ b/srcpkgs/python-pgmigrate/template
@@ -2,7 +2,6 @@
 pkgname=python-pgmigrate
 version=1.0.5
 revision=2
-archs=noarch
 wrksrc="pgmigrate-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pgmigrate_package() {
-	archs=noarch
 	depends="python3 python3-sqlparse python3-psycopg2 python3-yaml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pgpdump/template b/srcpkgs/python-pgpdump/template
index a28b6e209e7..86291588854 100644
--- a/srcpkgs/python-pgpdump/template
+++ b/srcpkgs/python-pgpdump/template
@@ -2,7 +2,6 @@
 pkgname=python-pgpdump
 version=1.5
 revision=6
-archs=noarch
 build_style=python-module
 pycompile_module="pgpdump"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/toofishes/python-pgpdump/archive/${version}.tar.gz
 checksum=05383f66e467e855299d1ed51161c6038ac338d9d10bd33476b574dc3bef64ff
 
 python3-pgpdump_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pgpdump"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-picamera/template b/srcpkgs/python-picamera/template
index e3c9a17bfdc..dd4753a52af 100644
--- a/srcpkgs/python-picamera/template
+++ b/srcpkgs/python-picamera/template
@@ -2,7 +2,6 @@
 pkgname=python-picamera
 version=1.13
 revision=2
-archs=noarch
 wrksrc="picamera-${version}"
 build_style=python-module
 pycompile_module="picamera"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-picamera_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="picamera"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pickleshare/template b/srcpkgs/python-pickleshare/template
index c1d86826c15..2cbddcf65af 100644
--- a/srcpkgs/python-pickleshare/template
+++ b/srcpkgs/python-pickleshare/template
@@ -2,7 +2,6 @@
 pkgname=python-pickleshare
 version=0.7.5
 revision=2
-archs=noarch
 wrksrc="pickleshare-${version}"
 build_style=python-module
 pycompile_module="pickleshare.py"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pickleshare_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pickleshare.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pip/template b/srcpkgs/python-pip/template
index d44215124f4..58b3e982ca7 100644
--- a/srcpkgs/python-pip/template
+++ b/srcpkgs/python-pip/template
@@ -2,7 +2,6 @@
 pkgname=python-pip
 version=20.0.2
 revision=1
-archs=noarch
 wrksrc="pip-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pip_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pip:pip:/usr/bin/pip3"
diff --git a/srcpkgs/python-pipenv/template b/srcpkgs/python-pipenv/template
index 69490a04324..b5c3c76ad0f 100644
--- a/srcpkgs/python-pipenv/template
+++ b/srcpkgs/python-pipenv/template
@@ -2,7 +2,6 @@
 pkgname=python-pipenv
 version=2020.8.13
 revision=1
-archs=noarch
 wrksrc="pipenv-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ post_install() {
 }
 
 python3-pipenv_package() {
-	archs=noarch
 	depends="python3 python3-pip python3-virtualenv python3-virtualenv-clone"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="
diff --git a/srcpkgs/python-pkgconfig/template b/srcpkgs/python-pkgconfig/template
index e9e5480907d..9a423f67e48 100644
--- a/srcpkgs/python-pkgconfig/template
+++ b/srcpkgs/python-pkgconfig/template
@@ -2,7 +2,6 @@
 pkgname=python-pkgconfig
 version=1.5.1
 revision=2
-archs=noarch
 wrksrc="pkgconfig-${version}"
 build_style=python-module
 pycompile_module="pkgconfig"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pkgconfig_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pkgconfig"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pluggy/template b/srcpkgs/python-pluggy/template
index e52dee341ec..89bedfb33d4 100644
--- a/srcpkgs/python-pluggy/template
+++ b/srcpkgs/python-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python-pluggy
 version=0.13.1
 revision=1
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-ply/template b/srcpkgs/python-ply/template
index 04a3defa6aa..0ea8ca0f182 100644
--- a/srcpkgs/python-ply/template
+++ b/srcpkgs/python-ply/template
@@ -2,7 +2,6 @@
 pkgname=python-ply
 version=3.11
 revision=2
-archs=noarch
 wrksrc="ply-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-ply_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ply"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-podcastparser/template b/srcpkgs/python-podcastparser/template
index 58fd20d3f73..6edc83ab027 100644
--- a/srcpkgs/python-podcastparser/template
+++ b/srcpkgs/python-podcastparser/template
@@ -2,7 +2,6 @@
 pkgname=python-podcastparser
 version=0.6.5
 revision=1
-archs=noarch
 wrksrc="podcastparser-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -25,7 +24,6 @@ post_install() {
 
 python3-podcastparser_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove "usr/lib/python3*"
diff --git a/srcpkgs/python-polib/template b/srcpkgs/python-polib/template
index 8b8d4b66c68..67e81743db3 100644
--- a/srcpkgs/python-polib/template
+++ b/srcpkgs/python-polib/template
@@ -2,7 +2,6 @@
 pkgname=python-polib
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="polib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-polib_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="polib.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-portend/template b/srcpkgs/python-portend/template
index 455051f5a50..88fa8a98417 100644
--- a/srcpkgs/python-portend/template
+++ b/srcpkgs/python-portend/template
@@ -2,7 +2,6 @@
 pkgname=python-portend
 version=2.5
 revision=2
-archs=noarch
 wrksrc="portend-${version}"
 build_style=python-module
 pycompile_module="portend.py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-portend_package() {
-	archs=noarch
 	depends="python3-tempora"
 	pycompile_module="portend.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pretend/template b/srcpkgs/python-pretend/template
index 6d8063fc43a..8cd4d8943da 100644
--- a/srcpkgs/python-pretend/template
+++ b/srcpkgs/python-pretend/template
@@ -2,7 +2,6 @@
 pkgname=python-pretend
 version=1.0.9
 revision=2
-archs=noarch
 wrksrc="pretend-${version}"
 build_style=python-module
 pycompile_module="pretend"
diff --git a/srcpkgs/python-progress/template b/srcpkgs/python-progress/template
index 0d6bd1db69d..80371bed0fa 100644
--- a/srcpkgs/python-progress/template
+++ b/srcpkgs/python-progress/template
@@ -2,7 +2,6 @@
 pkgname=python-progress
 version=1.5
 revision=2
-archs=noarch
 wrksrc="progress-${version}"
 build_style=python-module
 pycompile_module="progress"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-progress_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="progress"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prometheus_client/template b/srcpkgs/python-prometheus_client/template
index 7b71fbeffc2..ee3bd9aafad 100644
--- a/srcpkgs/python-prometheus_client/template
+++ b/srcpkgs/python-prometheus_client/template
@@ -2,7 +2,6 @@
 pkgname=python-prometheus_client
 version=0.7.1
 revision=2
-archs=noarch
 wrksrc="prometheus_client-${version}"
 build_style=python-module
 pycompile_module="prometheus_client"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/p/prometheus_client/prometheus_client-${version}.tar.gz"
 checksum=71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da
 
 python3-prometheus_client_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="prometheus_client"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-prompt_toolkit1/template b/srcpkgs/python-prompt_toolkit1/template
index 70516738c27..614745d925b 100644
--- a/srcpkgs/python-prompt_toolkit1/template
+++ b/srcpkgs/python-prompt_toolkit1/template
@@ -3,7 +3,6 @@ pkgname=python-prompt_toolkit1
 reverts="2.0.9_1"
 version=1.0.18
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-prompt_toolkit2/template b/srcpkgs/python-prompt_toolkit2/template
index e0f00f41668..1d93496f287 100644
--- a/srcpkgs/python-prompt_toolkit2/template
+++ b/srcpkgs/python-prompt_toolkit2/template
@@ -2,7 +2,6 @@
 pkgname=python-prompt_toolkit2
 version=2.0.9
 revision=5
-archs=noarch
 build_style=meta
 short_desc="Python2 library for building command lines (removed package)"
 maintainer="Alessio Sergi <al3hex@gmail.com>"
diff --git a/srcpkgs/python-proselint/template b/srcpkgs/python-proselint/template
index b1da90de474..b4e6f91a33f 100644
--- a/srcpkgs/python-proselint/template
+++ b/srcpkgs/python-proselint/template
@@ -2,7 +2,6 @@
 pkgname=python-proselint
 version=0.10.2
 revision=2
-archs=noarch
 wrksrc="proselint-${version}"
 build_style=python-module
 pycompile_module="proselint"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-proselint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-click python3-future python3-six"
 	pycompile_module="proselint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-protobuf/template b/srcpkgs/python-protobuf/template
index 0485f0d930d..816bddbb2c0 100644
--- a/srcpkgs/python-protobuf/template
+++ b/srcpkgs/python-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python-protobuf
 version=3.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-protobuf_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ptyprocess/template b/srcpkgs/python-ptyprocess/template
index fd2e51fa3ac..961bbff5e30 100644
--- a/srcpkgs/python-ptyprocess/template
+++ b/srcpkgs/python-ptyprocess/template
@@ -2,7 +2,6 @@
 pkgname=python-ptyprocess
 version=0.6.0
 revision=2
-archs=noarch
 wrksrc="ptyprocess-${version}"
 build_style=python-module
 pycompile_module="ptyprocess"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-ptyprocess_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ptyprocess"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-py/template b/srcpkgs/python-py/template
index 2a0559b4dc3..1256aeab468 100644
--- a/srcpkgs/python-py/template
+++ b/srcpkgs/python-py/template
@@ -2,7 +2,6 @@
 pkgname=python-py
 version=1.8.0
 revision=2
-archs=noarch
 wrksrc="py-${version}"
 build_style=python-module
 pycompile_module="py"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-py_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyPEG2/template b/srcpkgs/python-pyPEG2/template
index e9a10e88c15..8c54b620b8a 100644
--- a/srcpkgs/python-pyPEG2/template
+++ b/srcpkgs/python-pyPEG2/template
@@ -2,7 +2,6 @@
 pkgname=python-pyPEG2
 version=2.15.2
 revision=5
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/${pkgname#*-}/${pkgname#*-}-${version}.tar.gz"
 checksum=2b2d4f80d8e1a9370b2a91f4a25f4abf7f69b85c8da84cd23ec36451958a1f6d
 
 python3-pyPEG2_package() {
-	archs=noarch
 	depends="python3-lxml"
 	pycompile_module="pypeg2"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyacoustid/template b/srcpkgs/python-pyacoustid/template
index d5b2d967f4e..d3524454dbe 100644
--- a/srcpkgs/python-pyacoustid/template
+++ b/srcpkgs/python-pyacoustid/template
@@ -2,7 +2,6 @@
 pkgname=python-pyacoustid
 version=1.1.5
 revision=3
-archs=noarch
 wrksrc="pyacoustid-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyacoustid_package() {
-	archs=noarch
 	pycompile_module="acoustid.py chromaprint.py"
 	depends="chromaprint python3-audioread python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyaes/template b/srcpkgs/python-pyaes/template
index f45976e5b0b..3a4cfe7f541 100644
--- a/srcpkgs/python-pyaes/template
+++ b/srcpkgs/python-pyaes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyaes
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="pyaes-${version}"
 build_style=python-module
 pycompile_module="pyaes"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyaes_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="pyaes"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1-modules/template b/srcpkgs/python-pyasn1-modules/template
index b180252b96d..20626d431c6 100644
--- a/srcpkgs/python-pyasn1-modules/template
+++ b/srcpkgs/python-pyasn1-modules/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1-modules
 version=0.2.8
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyasn1_modules"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-pyasn1-modules_package() {
-	archs=noarch
 	depends="python3-pyasn1"
 	pycompile_module="pyasn1_modules"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyasn1/template b/srcpkgs/python-pyasn1/template
index 7f50c81b281..bb3e06272af 100644
--- a/srcpkgs/python-pyasn1/template
+++ b/srcpkgs/python-pyasn1/template
@@ -2,7 +2,6 @@
 pkgname=python-pyasn1
 version=0.4.8
 revision=1
-archs=noarch
 wrksrc="pyasn1-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyasn1_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycodestyle/template b/srcpkgs/python-pycodestyle/template
index 04e85465121..647bd2d58d3 100644
--- a/srcpkgs/python-pycodestyle/template
+++ b/srcpkgs/python-pycodestyle/template
@@ -2,7 +2,6 @@
 pkgname=python-pycodestyle
 version=2.6.0
 revision=1
-archs=noarch
 wrksrc="pycodestyle-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pycodestyle_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pycodestyle:pycodestyle:/usr/bin/pycodestyle3"
diff --git a/srcpkgs/python-pycountry/template b/srcpkgs/python-pycountry/template
index c4a4c9cafbd..a7cf612255f 100644
--- a/srcpkgs/python-pycountry/template
+++ b/srcpkgs/python-pycountry/template
@@ -2,7 +2,6 @@
 pkgname=python-pycountry
 version=19.8.18
 revision=1
-archs=noarch
 wrksrc="pycountry-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/p/pycountry/pycountry-${version}.tar.gz"
 checksum=3c57aa40adcf293d59bebaffbe60d8c39976fba78d846a018dc0c2ec9c6cb3cb
 
 python3-pycountry_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pycparser/template b/srcpkgs/python-pycparser/template
index d2e83aa79b2..b833ec6e2d2 100644
--- a/srcpkgs/python-pycparser/template
+++ b/srcpkgs/python-pycparser/template
@@ -2,7 +2,6 @@
 pkgname=python-pycparser
 version=2.19
 revision=2
-archs=noarch
 wrksrc="pycparser-${version}"
 build_style=python-module
 pycompile_module="pycparser"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pycparser_package() {
-	archs=noarch
 	depends="python3-ply"
 	pycompile_module="pycparser"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pydns/template b/srcpkgs/python-pydns/template
index 50f97da8ede..5d0027f9eee 100644
--- a/srcpkgs/python-pydns/template
+++ b/srcpkgs/python-pydns/template
@@ -2,7 +2,6 @@
 pkgname=python-pydns
 version=2.3.6
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="DNS"
diff --git a/srcpkgs/python-pyelftools/template b/srcpkgs/python-pyelftools/template
index 193650442fc..694e8598c45 100644
--- a/srcpkgs/python-pyelftools/template
+++ b/srcpkgs/python-pyelftools/template
@@ -2,7 +2,6 @@
 pkgname=python-pyelftools
 version=0.25
 revision=2
-archs=noarch
 wrksrc="pyelftools-${version}"
 build_style=python-module
 pycompile_module="elftools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyelftools_package() {
-	archs=noarch
 	pycompile_module="elftools"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyflakes/template b/srcpkgs/python-pyflakes/template
index 586cba32b89..97d5c43a109 100644
--- a/srcpkgs/python-pyflakes/template
+++ b/srcpkgs/python-pyflakes/template
@@ -2,7 +2,6 @@
 pkgname=python-pyflakes
 version=2.2.0
 revision=1
-archs=noarch
 wrksrc="pyflakes-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-pyflakes_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="pyflakes:pyflakes:/usr/bin/pyflakes3"
diff --git a/srcpkgs/python-pyglet/template b/srcpkgs/python-pyglet/template
index 397103c49f7..084f261cdf7 100644
--- a/srcpkgs/python-pyglet/template
+++ b/srcpkgs/python-pyglet/template
@@ -2,7 +2,6 @@
 pkgname=python-pyglet
 version=1.4.10
 revision=1
-archs=noarch
 wrksrc="pyglet-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools unzip"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pyglet_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pykka/template b/srcpkgs/python-pykka/template
index 512639c69c3..9c668bc01e2 100644
--- a/srcpkgs/python-pykka/template
+++ b/srcpkgs/python-pykka/template
@@ -2,7 +2,6 @@
 pkgname=python-pykka
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="Pykka-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/P/Pykka/Pykka-${version}.tar.gz"
 checksum=895cc2ed8779b65dd14a90ba3f4b8cb0f7904c7bf0710fe96a923019f8e82a39
 
 python3-pykka_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyotp/template b/srcpkgs/python-pyotp/template
index b70bd73d4aa..34131d837e6 100644
--- a/srcpkgs/python-pyotp/template
+++ b/srcpkgs/python-pyotp/template
@@ -2,7 +2,6 @@
 pkgname=python-pyotp
 version=2.3.0
 revision=2
-archs=noarch
 wrksrc="pyotp-${version}"
 build_style=python-module
 pycompile_module="pyotp"
@@ -26,7 +25,6 @@ post_install() {
 
 python3-pyotp_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="pyotp"
 	depends="python3"
 	pkg_install() {
diff --git a/srcpkgs/python-pypcapfile/template b/srcpkgs/python-pypcapfile/template
index 73b767f61c2..ef4d475ff13 100644
--- a/srcpkgs/python-pypcapfile/template
+++ b/srcpkgs/python-pypcapfile/template
@@ -3,7 +3,6 @@ pkgname=python-pypcapfile
 version=0.12.0
 revision=1
 wrksrc="pypcapfile-${version}"
-archs=noarch
 build_style=python2-module
 pycompile_module="pcapfile"
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pyperclip/template b/srcpkgs/python-pyperclip/template
index 1286923b906..302c6765857 100644
--- a/srcpkgs/python-pyperclip/template
+++ b/srcpkgs/python-pyperclip/template
@@ -2,7 +2,6 @@
 pkgname=python-pyperclip
 version=1.8.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 build_wrksrc=pyperclip-${version}
 build_style=python-module
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-pyperclip_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pyqtgraph/template b/srcpkgs/python-pyqtgraph/template
index 1bea9c2ffdf..8ff86f6f711 100644
--- a/srcpkgs/python-pyqtgraph/template
+++ b/srcpkgs/python-pyqtgraph/template
@@ -2,7 +2,6 @@
 pkgname=python-pyqtgraph
 version=0.10.0
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="pyqtgraph"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyqtgraph_package() {
-	archs=noarch
 	depends="python3-PyQt5 python3-numpy python3-PyOpenGL"
 	pycompile_module="pyqtgraph"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyrfc3339/template b/srcpkgs/python-pyrfc3339/template
index cd81c4d0624..18387d894a8 100644
--- a/srcpkgs/python-pyrfc3339/template
+++ b/srcpkgs/python-pyrfc3339/template
@@ -2,7 +2,6 @@
 pkgname=python-pyrfc3339
 version=1.1
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="pyrfc3339"
 wrksrc="pyRFC3339-${version}"
@@ -23,7 +22,6 @@ python3-pyrfc3339_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-pytz"
 	pycompile_module="pyrfc3339"
-	archs=noarch
 	pkg_install() {
 		vlicense LICENSE.txt LICENSE
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-pyserial/template b/srcpkgs/python-pyserial/template
index 354be493b16..ea2ba7123ee 100644
--- a/srcpkgs/python-pyserial/template
+++ b/srcpkgs/python-pyserial/template
@@ -2,7 +2,6 @@
 pkgname=python-pyserial
 version=3.4
 revision=3
-archs=noarch
 wrksrc="pyserial-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-pyserial_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="serial"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pysocks/template b/srcpkgs/python-pysocks/template
index ca508a4a7cc..1396099515a 100644
--- a/srcpkgs/python-pysocks/template
+++ b/srcpkgs/python-pysocks/template
@@ -2,7 +2,6 @@
 pkgname=python-pysocks
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="PySocks-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-pysocks_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-pysrt/template b/srcpkgs/python-pysrt/template
index be742c08ce4..42a6719080a 100644
--- a/srcpkgs/python-pysrt/template
+++ b/srcpkgs/python-pysrt/template
@@ -2,7 +2,6 @@
 pkgname=python-pysrt
 version=1.1.2
 revision=1
-archs=noarch
 wrksrc="pysrt-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=b4f844ba33e4e7743e9db746492f3a193dc0bc112b153914698e7c1cdeb9b0b9
 alternatives="srt:srt:/usr/bin/srt2"
 
 python3-pysrt_package() {
-	archs=noarch
 	depends="python3 python3-chardet"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="srt:srt:/usr/bin/srt3"
diff --git a/srcpkgs/python-pystache/template b/srcpkgs/python-pystache/template
index 893045b8998..26c053a1158 100644
--- a/srcpkgs/python-pystache/template
+++ b/srcpkgs/python-pystache/template
@@ -2,7 +2,6 @@
 pkgname=python-pystache
 version=0.5.4
 revision=3
-archs=noarch
 wrksrc="pystache-${version}"
 build_style=python-module
 pycompile_module="pystache"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pystache_package() {
-	archs=noarch
 	pycompile_module="pystache"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyte/template b/srcpkgs/python-pyte/template
index 1efc2f9a488..86bcd331228 100644
--- a/srcpkgs/python-pyte/template
+++ b/srcpkgs/python-pyte/template
@@ -2,7 +2,6 @@
 pkgname=python-pyte
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyte-${version}"
 build_style=python-module
 pycompile_module="pyte"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-pyte_package() {
-	archs=noarch
 	pycompile_module="pyte"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3-wcwidth"
diff --git a/srcpkgs/python-pytest-fixture-config/template b/srcpkgs/python-pytest-fixture-config/template
index 14255af8a35..3dd87c592dd 100644
--- a/srcpkgs/python-pytest-fixture-config/template
+++ b/srcpkgs/python-pytest-fixture-config/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-fixture-config
 version=1.3.0
 revision=3
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_fixture_config.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-fixture-config_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_fixture_config.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest-mock/template b/srcpkgs/python-pytest-mock/template
index 240e8773aaa..d963da9fb14 100644
--- a/srcpkgs/python-pytest-mock/template
+++ b/srcpkgs/python-pytest-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest-mock
 version=1.10.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="pytest_mock.py _pytest_mock_version.py"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-pytest-mock_package() {
-	archs=noarch
 	depends="python3-pytest"
 	pycompile_module="pytest_mock.py _pytest_mock_version.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pytest/template b/srcpkgs/python-pytest/template
index 5e2ffe71b6e..3c205b971de 100644
--- a/srcpkgs/python-pytest/template
+++ b/srcpkgs/python-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python-pytest
 version=4.6.9
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-pytz/template b/srcpkgs/python-pytz/template
index 40f582962c8..81df887b425 100644
--- a/srcpkgs/python-pytz/template
+++ b/srcpkgs/python-pytz/template
@@ -2,7 +2,6 @@
 pkgname=python-pytz
 version=2019.3
 revision=2
-archs=noarch
 wrksrc="pytz-${version}"
 build_style=python-module
 pycompile_module="pytz"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-pytz_package() {
-	archs=noarch
 	depends="python3 tzdata"
 	pycompile_module="pytz"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-pyudev/template b/srcpkgs/python-pyudev/template
index 2ec53088636..bc6fb1ba8a5 100644
--- a/srcpkgs/python-pyudev/template
+++ b/srcpkgs/python-pyudev/template
@@ -2,7 +2,6 @@
 pkgname=python-pyudev
 version=0.21.0
 revision=3
-archs=noarch
 wrksrc="pyudev-${version}"
 build_style=python-module
 pycompile_module="pyudev"
@@ -16,7 +15,6 @@ distfiles="${homepage}/archive/v${version}.tar.gz"
 checksum=5f4625f89347e465731866ddbe042a055bbc5092577356aa3d089ac5fb8efd94
 
 python3-pyudev_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 
diff --git a/srcpkgs/python-pyx/template b/srcpkgs/python-pyx/template
index 1ece52764ab..24a8edae5fb 100644
--- a/srcpkgs/python-pyx/template
+++ b/srcpkgs/python-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python-pyx
 version=0.12.1
 revision=4
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python2-module
 pycompile_module="pyx"
diff --git a/srcpkgs/python-pyzbar/template b/srcpkgs/python-pyzbar/template
index 35b568eb4e6..28c0ca61c67 100644
--- a/srcpkgs/python-pyzbar/template
+++ b/srcpkgs/python-pyzbar/template
@@ -2,7 +2,6 @@
 pkgname=python-pyzbar
 version=0.1.8
 revision=2
-archs=noarch
 wrksrc="pyzbar-${version}"
 build_style=python-module
 pycompile_module="pyzbar"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-pyzbar_package() {
-	archs=noarch
 	pycompile_module="pyzbar"
 	depends="libzbar python3"
 	alternatives="pyzbar:read_zbar:/usr/bin/read_zbar.py3"
diff --git a/srcpkgs/python-qrcode/template b/srcpkgs/python-qrcode/template
index bf35c82757e..10f8455d835 100644
--- a/srcpkgs/python-qrcode/template
+++ b/srcpkgs/python-qrcode/template
@@ -2,7 +2,6 @@
 pkgname=python-qrcode
 version=6.1
 revision=2
-archs=noarch
 wrksrc="qrcode-${version}"
 build_style=python-module
 pycompile_module="qrcode"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-qrcode_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="qrcode"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-random2/template b/srcpkgs/python-random2/template
index 2603cae3584..741b7f63a76 100644
--- a/srcpkgs/python-random2/template
+++ b/srcpkgs/python-random2/template
@@ -2,7 +2,6 @@
 pkgname=python-random2
 version=1.0.1
 revision=4
-archs=noarch
 wrksrc="random2-${version}"
 build_style=python-module
 pycompile_module="random2.py"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/random2/random2-${version}.zip"
 checksum=34ad30aac341039872401595df9ab2c9dc36d0b7c077db1cea9ade430ed1c007
 
 python3-random2_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="random2.py"
 	pkg_install() {
diff --git a/srcpkgs/python-rarfile/template b/srcpkgs/python-rarfile/template
index 83ff75c6e03..20e7a42f8d8 100644
--- a/srcpkgs/python-rarfile/template
+++ b/srcpkgs/python-rarfile/template
@@ -2,7 +2,6 @@
 pkgname=python-rarfile
 version=4.0
 revision=1
-archs=noarch
 wrksrc="rarfile-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-rarfile_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-raven/template b/srcpkgs/python-raven/template
index 87382c21602..b7457cfda31 100644
--- a/srcpkgs/python-raven/template
+++ b/srcpkgs/python-raven/template
@@ -2,7 +2,6 @@
 pkgname=python-raven
 version=6.10.0
 revision=2
-archs=noarch
 wrksrc="raven-${version}"
 build_style=python-module
 pycompile_module="raven"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-raven_package() {
-	archs=noarch
 	pycompile_module="raven"
 	depends="ca-certificates python3-setuptools"
 	alternatives="raven:raven:/usr/bin/raven3"
diff --git a/srcpkgs/python-rdflib/template b/srcpkgs/python-rdflib/template
index f676dedfb2f..471a4d5ad1b 100644
--- a/srcpkgs/python-rdflib/template
+++ b/srcpkgs/python-rdflib/template
@@ -2,7 +2,6 @@
 pkgname=python-rdflib
 version=4.2.2
 revision=3
-archs=noarch
 wrksrc="rdflib-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -33,7 +32,6 @@ python3-rdflib_package() {
 	 rdflib:rdfgraphisomorphism:/usr/bin/rdfgraphisomorphism3
 	 rdflib:rdfpipe:/usr/bin/rdfpipe3
 	 rdflib:rdfs2dot:/usr/bin/rdfs2dot3"
-	archs=noarch
 	depends="python3-setuptools python3-isodate python3-parsing"
 	pycompile_module="rdflib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-readability-lxml/template b/srcpkgs/python-readability-lxml/template
index ace92da477b..46caca6191c 100644
--- a/srcpkgs/python-readability-lxml/template
+++ b/srcpkgs/python-readability-lxml/template
@@ -2,7 +2,6 @@
 pkgname=python-readability-lxml
 version=0.8.1
 revision=1
-archs=noarch
 wrksrc="readability-lxml-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="${PYPI_SITE}/r/readability-lxml/readability-lxml-${version}.tar.gz"
 checksum=e51fea56b5909aaf886d307d48e79e096293255afa567b7d08bca94d25b1a4e1
 
 python3-readability-lxml_package() {
-	archs=noarch
 	depends="python3-lxml"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rebulk/template b/srcpkgs/python-rebulk/template
index 3bc58c3a7dd..ed683fde9ef 100644
--- a/srcpkgs/python-rebulk/template
+++ b/srcpkgs/python-rebulk/template
@@ -2,7 +2,6 @@
 pkgname=python-rebulk
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="rebulk-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-rebulk_package() {
-	archs=noarch
 	depends="python3 python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-redis/template b/srcpkgs/python-redis/template
index 68eb4ee09e9..59475277d20 100644
--- a/srcpkgs/python-redis/template
+++ b/srcpkgs/python-redis/template
@@ -2,7 +2,6 @@
 pkgname=python-redis
 version=3.5.3
 revision=1
-archs=noarch
 wrksrc="redis-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-redis_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-requests-mock/template b/srcpkgs/python-requests-mock/template
index 2d1410fcd1b..6c66bce1309 100644
--- a/srcpkgs/python-requests-mock/template
+++ b/srcpkgs/python-requests-mock/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-mock
 version=1.5.2
 revision=3
-archs=noarch
 wrksrc="requests-mock-${version}"
 build_style=python-module
 pycompile_module="requests_mock"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-mock/requests-mock-${version}.tar.gz"
 checksum=7a5fa99db5e3a2a961b6f20ed40ee6baeff73503cf0a553cc4d679409e6170fb
 
 python3-requests-mock_package() {
-	archs=noarch
 	pycompile_module="requests_mock"
 	depends="python3-requests python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-oauthlib/template b/srcpkgs/python-requests-oauthlib/template
index e3e824b35b1..84cf752dcb0 100644
--- a/srcpkgs/python-requests-oauthlib/template
+++ b/srcpkgs/python-requests-oauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-oauthlib
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_oauthlib"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-requests-oauthlib_package() {
-	archs=noarch
 	depends="python3-requests python3-oauthlib"
 	pycompile_module="requests_oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests-toolbelt/template b/srcpkgs/python-requests-toolbelt/template
index 13a81586221..62d763b2b5d 100644
--- a/srcpkgs/python-requests-toolbelt/template
+++ b/srcpkgs/python-requests-toolbelt/template
@@ -2,7 +2,6 @@
 pkgname=python-requests-toolbelt
 version=0.9.1
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="requests_toolbelt"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/requests-toolbelt/requests-toolbelt-${version}.tar.gz"
 checksum=968089d4584ad4ad7c171454f0a5c6dac23971e9472521ea3b6d49d610aa6fc0
 
 python3-requests-toolbelt_package() {
-	archs=noarch
 	pycompile_module="requests_toolbelt"
 	depends="python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-requests/template b/srcpkgs/python-requests/template
index 1bd9f51333c..a2c68c7452a 100644
--- a/srcpkgs/python-requests/template
+++ b/srcpkgs/python-requests/template
@@ -2,7 +2,6 @@
 pkgname=python-requests
 version=2.23.0
 revision=1
-archs=noarch
 wrksrc="requests-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ pre_build() {
 }
 
 python3-requests_package() {
-	archs=noarch
 	depends="ca-certificates python3-chardet python3-urllib3 python3-idna"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rfc6555/template b/srcpkgs/python-rfc6555/template
index 2522872cc32..4543670a319 100644
--- a/srcpkgs/python-rfc6555/template
+++ b/srcpkgs/python-rfc6555/template
@@ -2,7 +2,6 @@
 pkgname=python-rfc6555
 version=0.0.0
 revision=2
-archs=noarch
 wrksrc="rfc6555-${version}"
 build_style=python-module
 pycompile_module="rfc6555"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/r/rfc6555/rfc6555-${version}.tar.gz"
 checksum=191cbba0315b53654155321e56a93466f42cd0a474b4f341df4d03264dcb5217
 
 python3-rfc6555_package() {
-	archs=noarch
 	pycompile_module="rfc6555"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-cousteau/template b/srcpkgs/python-ripe-atlas-cousteau/template
index 72f32a9da0d..f9a3dbd72ad 100644
--- a/srcpkgs/python-ripe-atlas-cousteau/template
+++ b/srcpkgs/python-ripe-atlas-cousteau/template
@@ -3,7 +3,6 @@ pkgname=python-ripe-atlas-cousteau
 version=1.4.2
 revision=2
 build_style=python-module
-archs=noarch
 pycompile_module="ripe/atlas/cousteau"
 wrksrc="ripe-atlas-cousteau-${version}"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ checksum=91bfaaafe7561ccc7b91f555a5004c467d615b9f404739496a4ed6a22fcb07b7
 
 python3-ripe-atlas-cousteau_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="ripe/atlas/cousteau"
 	depends="python3-dateutil python3-socketIO-client"
 	pkg_install() {
diff --git a/srcpkgs/python-ripe-atlas-sagan/template b/srcpkgs/python-ripe-atlas-sagan/template
index 22abb48af46..3e9b273ed72 100644
--- a/srcpkgs/python-ripe-atlas-sagan/template
+++ b/srcpkgs/python-ripe-atlas-sagan/template
@@ -2,7 +2,6 @@
 pkgname=python-ripe-atlas-sagan
 version=1.3.0
 revision=2
-archs=noarch
 wrksrc="ripe.atlas.sagan-${version}"
 build_style=python-module
 pycompile_module="ripe/atlas/sagan"
@@ -17,7 +16,6 @@ checksum=39d8c0864ec8d790fe46f45cb55020d8603fceb374c77cda46f96b71279af016
 
 python3-ripe-atlas-sagan_package() {
 	depends="python3-dateutil python3-pytz python3-cryptography"
-	archs=noarch
 	pycompile_module="ripe/atlas/sagan"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-rsa/template b/srcpkgs/python-rsa/template
index 11e9bf2c60d..17e034b0edc 100644
--- a/srcpkgs/python-rsa/template
+++ b/srcpkgs/python-rsa/template
@@ -2,7 +2,6 @@
 pkgname=python-rsa
 version=4.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="rsa"
@@ -31,7 +30,6 @@ python3-rsa_package() {
 	 rsa:pyrsa-priv2pub:/usr/bin/pyrsa-priv2pub3
 	 rsa:pyrsa-sign:/usr/bin/pyrsa-sign3
 	 rsa:pyrsa-verify:/usr/bin/pyrsa-verify3"
-	archs=noarch
 	pycompile_module="rsa"
 	depends="python3-setuptools python3-pyasn1"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-s3transfer/template b/srcpkgs/python-s3transfer/template
index 29aba6cc68b..70f276e67d2 100644
--- a/srcpkgs/python-s3transfer/template
+++ b/srcpkgs/python-s3transfer/template
@@ -2,7 +2,6 @@
 pkgname=python-s3transfer
 version=0.3.3
 revision=1
-archs=noarch
 wrksrc="s3transfer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="https://github.com/boto/s3transfer/archive/${version}.tar.gz"
 checksum=0c8b0f7aaf32173d1475df0a453bfdc37be8207ea15c1d8415a590ef3986fc51
 
 python3-s3transfer_package() {
-	archs=noarch
 	depends="python3-botocore"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-scour/template b/srcpkgs/python-scour/template
index 0db5b157ce1..49654ed01ce 100644
--- a/srcpkgs/python-scour/template
+++ b/srcpkgs/python-scour/template
@@ -2,7 +2,6 @@
 pkgname=python-scour
 version=0.37
 revision=2
-archs=noarch
 wrksrc="scour-${version}"
 build_style=python-module
 pycompile_module="scour"
@@ -23,7 +22,6 @@ do_check() {
 }
 
 python3-scour_package() {
-	archs=noarch
 	pycompile_module="scour"
 	depends="python3-setuptools python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-selectors2/template b/srcpkgs/python-selectors2/template
index 1ad45d8e7d3..c73fcb17309 100644
--- a/srcpkgs/python-selectors2/template
+++ b/srcpkgs/python-selectors2/template
@@ -2,7 +2,6 @@
 pkgname=python-selectors2
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="selectors2-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-send2trash/template b/srcpkgs/python-send2trash/template
index 94f56545695..68a97a3aa47 100644
--- a/srcpkgs/python-send2trash/template
+++ b/srcpkgs/python-send2trash/template
@@ -2,7 +2,6 @@
 pkgname=python-send2trash
 version=1.5.0
 revision=2
-archs=noarch
 wrksrc="send2trash-${version}"
 build_style=python-module
 pycompile_module="send2trash"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-send2trash_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="send2trash"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-serpent/template b/srcpkgs/python-serpent/template
index 658802bef0d..59083a2af5c 100644
--- a/srcpkgs/python-serpent/template
+++ b/srcpkgs/python-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python-serpent
 version=1.28
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-service_identity/template b/srcpkgs/python-service_identity/template
index e21a1520a75..d4957063827 100644
--- a/srcpkgs/python-service_identity/template
+++ b/srcpkgs/python-service_identity/template
@@ -2,7 +2,6 @@
 pkgname=python-service_identity
 version=18.1.0
 revision=2
-archs=noarch
 wrksrc="service_identity-${version}"
 build_style=python-module
 pycompile_module="service_identity"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-service_identity_package() {
-	archs=noarch
 	depends="python3-attrs python3-pyasn1-modules python3-cryptography"
 	pycompile_module="service_identity"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-setuptools/template b/srcpkgs/python-setuptools/template
index d71e746e12e..3e3aeaa589c 100644
--- a/srcpkgs/python-setuptools/template
+++ b/srcpkgs/python-setuptools/template
@@ -4,7 +4,6 @@ pkgname=python-setuptools
 # python2 support for setuptools ended at 44.0.0
 version=44.0.0
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python2-module
 hostmakedepends="python-devel"
diff --git a/srcpkgs/python-sh/template b/srcpkgs/python-sh/template
index 16de6daf662..67cd0c68998 100644
--- a/srcpkgs/python-sh/template
+++ b/srcpkgs/python-sh/template
@@ -2,7 +2,6 @@
 pkgname=python-sh
 version=1.13.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-sh_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-simplebayes/template b/srcpkgs/python-simplebayes/template
index 6c95222fa7e..cbd435e04e5 100644
--- a/srcpkgs/python-simplebayes/template
+++ b/srcpkgs/python-simplebayes/template
@@ -2,7 +2,6 @@
 pkgname=python-simplebayes
 version=1.5.8
 revision=2
-archs=noarch
 wrksrc="simplebayes-${version}"
 build_style=python-module
 pycompile_module="simplebayes"
@@ -22,7 +21,6 @@ post_install() {
 python3-simplebayes_package() {
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="simplebayes"
-	archs=noarch
 	depends="python3"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-simplegeneric/template b/srcpkgs/python-simplegeneric/template
index f352387fa1f..483244ed30f 100644
--- a/srcpkgs/python-simplegeneric/template
+++ b/srcpkgs/python-simplegeneric/template
@@ -2,7 +2,6 @@
 pkgname=python-simplegeneric
 version=0.8.1
 revision=4
-archs=noarch
 wrksrc="simplegeneric-${version}"
 build_style=python-module
 hostmakedepends="unzip python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/simplegeneric/simplegeneric-${version}.zip"
 checksum=dc972e06094b9af5b855b3df4a646395e43d1c9d0d39ed345b7393560d0b9173
 
 python3-simplegeneric_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="simplegeneric.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-singledispatch/template b/srcpkgs/python-singledispatch/template
index 9da989105f8..cc5f1468f5b 100644
--- a/srcpkgs/python-singledispatch/template
+++ b/srcpkgs/python-singledispatch/template
@@ -2,7 +2,6 @@
 pkgname=python-singledispatch
 version=3.4.0.3
 revision=1
-archs=noarch
 wrksrc="singledispatch-${version}"
 build_style=python2-module
 pycompile_module="singledispatch.py singledispatch_helpers.py"
diff --git a/srcpkgs/python-six/template b/srcpkgs/python-six/template
index 7fde8bc856b..d69f387b1dd 100644
--- a/srcpkgs/python-six/template
+++ b/srcpkgs/python-six/template
@@ -2,7 +2,6 @@
 pkgname=python-six
 version=1.15.0
 revision=1
-archs=noarch
 wrksrc="six-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ do_check() {
 }
 
 python3-six_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-smmap/template b/srcpkgs/python-smmap/template
index 8c8ea952285..5de11eb3f6b 100644
--- a/srcpkgs/python-smmap/template
+++ b/srcpkgs/python-smmap/template
@@ -2,7 +2,6 @@
 pkgname=python-smmap
 version=2.0.5
 revision=2
-archs=noarch
 wrksrc="smmap-${version}"
 build_style=python-module
 pycompile_module="smmap"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-smmap_package() {
-	archs=noarch
 	pycompile_module="smmap"
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-snowballstemmer/template b/srcpkgs/python-snowballstemmer/template
index 221478860e5..a3059e544d9 100644
--- a/srcpkgs/python-snowballstemmer/template
+++ b/srcpkgs/python-snowballstemmer/template
@@ -2,7 +2,6 @@
 pkgname=python-snowballstemmer
 version=1.2.1
 revision=4
-archs=noarch
 wrksrc="snowballstemmer-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/s/snowballstemmer/snowballstemmer-${version}.tar.gz"
 checksum=919f26a68b2c17a7634da993d91339e288964f93c274f1343e3bbbe2096e1128
 
 python3-snowballstemmer_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="snowballstemmer"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-socketIO-client/template b/srcpkgs/python-socketIO-client/template
index 9495d7cf40b..7924c6d0cf4 100644
--- a/srcpkgs/python-socketIO-client/template
+++ b/srcpkgs/python-socketIO-client/template
@@ -2,7 +2,6 @@
 pkgname=python-socketIO-client
 version=0.7.2
 revision=3
-archs=noarch
 build_style=python-module
 pycompile_module="socketIO_client"
 wrksrc="socketIO-client-${version}"
@@ -22,7 +21,6 @@ post_install() {
 python3-socketIO-client_package() {
 	depends="python3-requests python3-six python3-websocket-client"
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="socketIO_client"
 	pkg_install() {
 		vmove usr/lib/python3*
diff --git a/srcpkgs/python-soupsieve/template b/srcpkgs/python-soupsieve/template
index 062cc3e6a8a..f412d7e4b4e 100644
--- a/srcpkgs/python-soupsieve/template
+++ b/srcpkgs/python-soupsieve/template
@@ -2,7 +2,6 @@
 pkgname=python-soupsieve
 version=1.9.5
 revision=2
-archs=noarch
 wrksrc="soupsieve-${version}"
 build_style=python-module
 pycompile_module="soupsieve"
@@ -34,7 +33,6 @@ post_install() {
 }
 
 python3-soupsieve_package() {
-	archs=noarch
 	pycompile_module="soupsieve"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-spambayes/template b/srcpkgs/python-spambayes/template
index 9a85558c1d3..24d92de47dd 100644
--- a/srcpkgs/python-spambayes/template
+++ b/srcpkgs/python-spambayes/template
@@ -3,7 +3,6 @@ pkgname=python-spambayes
 version=1.1b3
 revision=1
 wrksrc=${pkgname#*-}-${version}
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="python-lockfile python-pydns"
diff --git a/srcpkgs/python-sqlalchemy-migrate/template b/srcpkgs/python-sqlalchemy-migrate/template
index bb002660c0f..d9818bc1975 100644
--- a/srcpkgs/python-sqlalchemy-migrate/template
+++ b/srcpkgs/python-sqlalchemy-migrate/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlalchemy-migrate
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="migrate"
@@ -27,7 +26,6 @@ python3-sqlalchemy-migrate_package() {
 	alternatives="
 	 migrate:migrate-repository:/usr/bin/migrate-repository3
 	 migrate:migrate:/usr/bin/migrate3"
-	archs=noarch
 	depends="python3-pbr python3-SQLAlchemy python3-decorator python3-six
 	 python3-sqlparse python3-tempita"
 	pycompile_module="migrate"
diff --git a/srcpkgs/python-sqlparse/template b/srcpkgs/python-sqlparse/template
index 0f8c6f8ea2e..18369a5ab6b 100644
--- a/srcpkgs/python-sqlparse/template
+++ b/srcpkgs/python-sqlparse/template
@@ -2,7 +2,6 @@
 pkgname=python-sqlparse
 version=0.3.0
 revision=2
-archs=noarch
 wrksrc="sqlparse-${version}"
 build_style=python-module
 pycompile_module="sqlparse"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-sqlparse_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="sqlparse"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stem/template b/srcpkgs/python-stem/template
index 97bb4b48cb6..f032c8cb0b0 100644
--- a/srcpkgs/python-stem/template
+++ b/srcpkgs/python-stem/template
@@ -2,7 +2,6 @@
 pkgname=python-stem
 version=1.8.0
 revision=1
-archs=noarch
 wrksrc="stem-${version/b/}"
 build_style=python-module
 pycompile_module="stem"
@@ -18,7 +17,6 @@ checksum=a0b48ea6224e95f22aa34c0bc3415f0eb4667ddeae3dfb5e32a6920c185568c2
 alternatives="stem:tor-prompt:/usr/bin/tor-prompt2"
 
 python3-stem_package() {
-	archs=noarch
 	depends="python3-cryptography"
 	pycompile_module="stem"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stevedore/template b/srcpkgs/python-stevedore/template
index 4f781304d3f..21efeca4d6a 100644
--- a/srcpkgs/python-stevedore/template
+++ b/srcpkgs/python-stevedore/template
@@ -2,7 +2,6 @@
 pkgname=python-stevedore
 version=1.30.1
 revision=2
-archs=noarch
 wrksrc="stevedore-${version}"
 build_style=python-module
 pycompile_module="stevedore"
@@ -21,7 +20,6 @@ pre_build() {
 }
 
 python3-stevedore_package() {
-	archs=noarch
 	depends="python3-six"
 	pycompile_module="stevedore"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-stormssh/template b/srcpkgs/python-stormssh/template
index 11f63f67bba..093db30e6da 100644
--- a/srcpkgs/python-stormssh/template
+++ b/srcpkgs/python-stormssh/template
@@ -2,7 +2,6 @@
 pkgname=python-stormssh
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc=storm-${version}
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-stormssh_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-paramiko python3-termcolor python3-Flask"
 	pycompile_module="storm"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-subliminal/template b/srcpkgs/python-subliminal/template
index 74dcf00ebdd..fe30efae2dc 100644
--- a/srcpkgs/python-subliminal/template
+++ b/srcpkgs/python-subliminal/template
@@ -2,7 +2,6 @@
 pkgname=python-subliminal
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="subliminal-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-subliminal_package() {
-	archs=noarch
 	depends="python3 python3-guessit python3-babelfish python3-enzyme
 	 python3-BeautifulSoup4 python3-requests python3-click python3-dogpile.cache
 	 python3-stevedore python3-chardet python3-pysrt python3-six python3-appdirs
diff --git a/srcpkgs/python-tempita/template b/srcpkgs/python-tempita/template
index c1c75ee1cac..1c59ba302bf 100644
--- a/srcpkgs/python-tempita/template
+++ b/srcpkgs/python-tempita/template
@@ -2,7 +2,6 @@
 pkgname=python-tempita
 version=0.5.2
 revision=4
-archs=noarch
 wrksrc="Tempita-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/T/Tempita/Tempita-${version}.tar.gz"
 checksum=cacecf0baa674d356641f1d406b8bff1d756d739c46b869a54de515d08e6fc9c
 
 python3-tempita_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="tempita"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tempora/template b/srcpkgs/python-tempora/template
index 194dc2718e5..166dd7c1157 100644
--- a/srcpkgs/python-tempora/template
+++ b/srcpkgs/python-tempora/template
@@ -2,7 +2,6 @@
 pkgname=python-tempora
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="tempora-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -26,7 +25,6 @@ post_install() {
 }
 
 python3-tempora_package() {
-	archs=noarch
 	depends="python3-setuptools python3-six python3-pytz"
 	alternatives="tempora:calc-prorate:/usr/bin/calc-prorate3"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-termcolor/template b/srcpkgs/python-termcolor/template
index 73c18fc79eb..f68d3be8832 100644
--- a/srcpkgs/python-termcolor/template
+++ b/srcpkgs/python-termcolor/template
@@ -2,7 +2,6 @@
 pkgname=python-termcolor
 version=1.1.0
 revision=6
-archs=noarch
 wrksrc="termcolor-${version}"
 build_style=python-module
 hostmakedepends="python-devel python3-devel"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-termcolor_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="termcolor.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-terminado/template b/srcpkgs/python-terminado/template
index d649364d88d..1777e9906e4 100644
--- a/srcpkgs/python-terminado/template
+++ b/srcpkgs/python-terminado/template
@@ -2,7 +2,6 @@
 pkgname=python-terminado
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc="terminado-${version}"
 build_style=python-module
 pycompile_module="terminado"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-terminado_package() {
-	archs=noarch
 	depends="python3-ptyprocess python3-tornado"
 	pycompile_module="terminado"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-testpath/template b/srcpkgs/python-testpath/template
index abfc59900c0..da250a65f02 100644
--- a/srcpkgs/python-testpath/template
+++ b/srcpkgs/python-testpath/template
@@ -2,7 +2,6 @@
 pkgname=python-testpath
 version=0.4.2
 revision=2
-archs=noarch
 wrksrc="testpath-${version}"
 build_style=python-module
 pycompile_module="testpath"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 python3-testpath_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="testpath"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-texttable/template b/srcpkgs/python-texttable/template
index 24bac87af6a..2e7ca37e415 100644
--- a/srcpkgs/python-texttable/template
+++ b/srcpkgs/python-texttable/template
@@ -2,7 +2,6 @@
 pkgname=python-texttable
 version=1.6.1
 revision=2
-archs=noarch
 wrksrc="texttable-${version}"
 build_style=python-module
 pycompile_module="texttable.py"
@@ -21,7 +20,6 @@ do_check() {
 }
 
 python3-texttable_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="texttable.py"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tkinter/template b/srcpkgs/python-tkinter/template
index f2b6d0bacf1..e9019fbc09c 100644
--- a/srcpkgs/python-tkinter/template
+++ b/srcpkgs/python-tkinter/template
@@ -76,7 +76,6 @@ do_install() {
 }
 
 idle-python_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python2 using Tkinter"
 	pycompile_dirs="usr/lib/python2.7/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python-tmuxp/template b/srcpkgs/python-tmuxp/template
index 812d80343cc..350b4c93b51 100644
--- a/srcpkgs/python-tmuxp/template
+++ b/srcpkgs/python-tmuxp/template
@@ -2,7 +2,6 @@
 pkgname=python-tmuxp
 version=1.5.4
 revision=1
-archs=noarch
 wrksrc="tmuxp-${version}"
 build_style=python-module
 pycompile_module="tmuxp"
@@ -28,7 +27,6 @@ post_install() {
 }
 
 python3-tmuxp_package() {
-	archs=noarch
 	pycompile_module="tmuxp"
 	depends="python3 python3-setuptools python3-colorama python3-click python3-kaptan python3-libtmux"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-toml/template b/srcpkgs/python-toml/template
index 2fd6eaa0cea..d853e4385fd 100644
--- a/srcpkgs/python-toml/template
+++ b/srcpkgs/python-toml/template
@@ -2,7 +2,6 @@
 pkgname=python-toml
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="toml-${version}"
 build_style=python-module
 pycompile_module="toml"
@@ -20,7 +19,6 @@ pkg_install() {
 }
 
 python3-toml_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="toml"
 	short_desc=${short_desc/Python2/Python3}
diff --git a/srcpkgs/python-tqdm/template b/srcpkgs/python-tqdm/template
index f7ee7d037af..3d3c1dafc5a 100644
--- a/srcpkgs/python-tqdm/template
+++ b/srcpkgs/python-tqdm/template
@@ -2,7 +2,6 @@
 pkgname=python-tqdm
 version=4.48.2
 revision=1
-archs=noarch
 wrksrc="tqdm-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -27,7 +26,6 @@ python3-tqdm_package() {
 	alternatives="
 	 tqdm:tqdm:/usr/bin/tqdm3
 	 tqdm:tqdm.1:/usr/share/man/man1/tqdm3.1"
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/2/3}"
 	pkg_install() {
diff --git a/srcpkgs/python-tracing/template b/srcpkgs/python-tracing/template
index 4408f31be9f..7281f1f9ecd 100644
--- a/srcpkgs/python-tracing/template
+++ b/srcpkgs/python-tracing/template
@@ -2,7 +2,6 @@
 pkgname=python-tracing
 version=0.10
 revision=1
-archs=noarch
 wrksrc="python-tracing-tracing-${version}"
 build_style=python2-module
 pycompile_module="tracing"
diff --git a/srcpkgs/python-ttystatus/template b/srcpkgs/python-ttystatus/template
index 2df1a81c9be..4742cade8b8 100644
--- a/srcpkgs/python-ttystatus/template
+++ b/srcpkgs/python-ttystatus/template
@@ -2,7 +2,6 @@
 pkgname=python-ttystatus
 version=0.38
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="ttystatus"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -15,7 +14,6 @@ distfiles="http://code.liw.fi/debian/pool/main/p/${pkgname}/${pkgname}_${version
 checksum=e544dd5b0f77ebc3bb5b4ace34bd3d2751e72956ec096c8ffb34beaead433628
 
 python3-ttystatus_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="ttystatus"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-tweepy/template b/srcpkgs/python-tweepy/template
index 2487511922a..f2a6afd286f 100644
--- a/srcpkgs/python-tweepy/template
+++ b/srcpkgs/python-tweepy/template
@@ -2,7 +2,6 @@
 pkgname=python-tweepy
 version=3.8.0
 revision=2
-archs=noarch
 wrksrc="tweepy-${version}"
 build_style=python-module
 pycompile_module="tweepy"
@@ -30,7 +29,6 @@ post_install() {
 }
 
 python3-tweepy_package() {
-	archs=noarch
 	pycompile_module="tweepy"
 	depends="python3-requests-oauthlib python3-six python3-pysocks"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-twitter/template b/srcpkgs/python-twitter/template
index e5e7194078a..775fbf19426 100644
--- a/srcpkgs/python-twitter/template
+++ b/srcpkgs/python-twitter/template
@@ -2,7 +2,6 @@
 pkgname=python-twitter
 version=3.5
 revision=2
-archs=noarch
 build_style=python-module
 pycompile_module="twitter"
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ pre_build() {
 }
 
 python3-twitter_package() {
-	archs=noarch
 	pycompile_module="twitter"
 	depends="python3-future python3-requests python3-requests-oauthlib"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-txgithub/template b/srcpkgs/python-txgithub/template
index e33466d59e3..ccd5f7b9747 100644
--- a/srcpkgs/python-txgithub/template
+++ b/srcpkgs/python-txgithub/template
@@ -2,7 +2,6 @@
 pkgname=python-txgithub
 version=15.0.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python2-module
 pycompile_module="txgithub"
diff --git a/srcpkgs/python-typing/template b/srcpkgs/python-typing/template
index dce911b6b1a..b5bd5971843 100644
--- a/srcpkgs/python-typing/template
+++ b/srcpkgs/python-typing/template
@@ -2,7 +2,6 @@
 pkgname=python-typing
 version=3.6.6
 revision=1
-archs=noarch
 wrksrc="typing-${version}"
 build_style=python2-module
 pycompile_module="typing.py"
diff --git a/srcpkgs/python-unittest-mixins/template b/srcpkgs/python-unittest-mixins/template
index 2ff5c497523..dfbb1fc9b34 100644
--- a/srcpkgs/python-unittest-mixins/template
+++ b/srcpkgs/python-unittest-mixins/template
@@ -2,7 +2,6 @@
 pkgname=python-unittest-mixins
 version=1.6
 revision=2
-archs=noarch
 wrksrc="${pkgname/python-//}-${version}"
 build_style=python-module
 pycompile_module="unittest_mixins"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/u/unittest-mixins/unittest-mixins-${version}.tar.gz"
 checksum=05363abe099f0724b7bb6d71d0ce1046078c868cb10b3f1ebdf3ca6593c52507
 
 python3-unittest-mixins_package() {
-	archs=noarch
 	pycompile_module="unittest_mixins"
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-urbandict/template b/srcpkgs/python-urbandict/template
index 0808a11e98d..f5ae56e2e2d 100644
--- a/srcpkgs/python-urbandict/template
+++ b/srcpkgs/python-urbandict/template
@@ -2,7 +2,6 @@
 pkgname=python-urbandict
 version=0.6.1
 revision=1
-archs=noarch
 wrksrc="urbandict-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -16,7 +15,6 @@ checksum=a19685ffa2450bea2df9bf328a6ce7c3c1e2213c95171ae2263b987cc54d201b
 alternatives="urbandicli:urbandicli:/usr/bin/urbandicli2"
 
 python3-urbandict_package() {
-	archs=noarch
 	alternatives="urbandicli:urbandicli:/usr/bin/urbandicli3"
 	short_desc="${short_desc/Python2/Python3}"
 	depends="python3"
diff --git a/srcpkgs/python-uritemplate/template b/srcpkgs/python-uritemplate/template
index 5a44f7e24af..7598cdcb114 100644
--- a/srcpkgs/python-uritemplate/template
+++ b/srcpkgs/python-uritemplate/template
@@ -2,7 +2,6 @@
 pkgname=python-uritemplate
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-uritemplate_package() {
-	archs=noarch
 	depends="python3"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urllib3/template b/srcpkgs/python-urllib3/template
index 3f354488f86..fd464147487 100644
--- a/srcpkgs/python-urllib3/template
+++ b/srcpkgs/python-urllib3/template
@@ -2,7 +2,6 @@
 pkgname=python-urllib3
 version=1.25.8
 revision=1
-archs=noarch
 wrksrc="urllib3-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-urllib3_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-urlnorm/template b/srcpkgs/python-urlnorm/template
index ae488dc3179..2a4a1ab6eab 100644
--- a/srcpkgs/python-urlnorm/template
+++ b/srcpkgs/python-urlnorm/template
@@ -2,7 +2,6 @@
 pkgname=python-urlnorm
 version=1.1.4
 revision=2
-archs=noarch
 wrksrc="urlnorm-${version}"
 build_style=python2-module
 pycompile_module="urlnorm"
diff --git a/srcpkgs/python-urwidtrees/template b/srcpkgs/python-urwidtrees/template
index 62d214489e2..86bf7e4fae0 100644
--- a/srcpkgs/python-urwidtrees/template
+++ b/srcpkgs/python-urwidtrees/template
@@ -2,7 +2,6 @@
 pkgname=python-urwidtrees
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="urwidtrees-${version}"
 build_style=python-module
 pycompile_module="urwidtrees"
@@ -16,7 +15,6 @@ distfiles="https://github.com/pazz/urwidtrees/archive/${version}.tar.gz"
 checksum=703f4b161b930a26a461a3e3e695f94237ac75e2a52b87613e49093d9aa76034
 
 python3-urwidtrees_package() {
-	archs=noarch
 	pycompile_module="urwidtrees"
 	depends="python3-urwid"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-utils/template b/srcpkgs/python-utils/template
index 4c7a5ef1bfb..15d10eb36fd 100644
--- a/srcpkgs/python-utils/template
+++ b/srcpkgs/python-utils/template
@@ -2,7 +2,6 @@
 pkgname=python-utils
 version=2.4.0
 revision=1
-archs=noarch
 wrksrc="python-utils-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,7 +18,6 @@ post_install() {
 }
 
 python3-utils_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-vint/template b/srcpkgs/python-vint/template
index 62c663bf18e..2683de6e90b 100644
--- a/srcpkgs/python-vint/template
+++ b/srcpkgs/python-vint/template
@@ -2,7 +2,6 @@
 pkgname=python-vint
 version=0.3.19
 revision=3
-archs=noarch
 wrksrc="vim-vint-${version}"
 build_style=python-module
 pycompile_module="vint"
@@ -22,7 +21,6 @@ post_install() {
 }
 
 python3-vint_package() {
-	archs=noarch
 	depends="python3-setuptools python3-ansicolor python3-chardet python3-yaml"
 	pycompile_module="vint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-vispy/template b/srcpkgs/python-vispy/template
index 624ade6f12b..32154cafe05 100644
--- a/srcpkgs/python-vispy/template
+++ b/srcpkgs/python-vispy/template
@@ -21,7 +21,6 @@ post_install() {
 
 python3-vispy_package() {
 	short_desc="${short_desc/Python2/Python3}"
-	archs=noarch
 	pycompile_module="vispy"
 	depends="python3-numpy"
 	pkg_install() {
diff --git a/srcpkgs/python-vobject/template b/srcpkgs/python-vobject/template
index 2c1c215527c..91bb0d96e17 100644
--- a/srcpkgs/python-vobject/template
+++ b/srcpkgs/python-vobject/template
@@ -2,7 +2,6 @@
 pkgname=python-vobject
 version=0.9.6.1
 revision=2
-archs=noarch
 wrksrc="vobject-${version}"
 build_style=python-module
 pycompile_module="vobject"
@@ -20,7 +19,6 @@ alternatives="
  vobject:ics_diff:/usr/bin/ics_diff2"
 
 python3-vobject_package() {
-	archs=noarch
 	pycompile_module="vobject"
 	depends="python3-setuptools python3-dateutil python3-six"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-voluptuous/template b/srcpkgs/python-voluptuous/template
index 1dd5de27491..cd6da9e8785 100644
--- a/srcpkgs/python-voluptuous/template
+++ b/srcpkgs/python-voluptuous/template
@@ -2,7 +2,6 @@
 pkgname=python-voluptuous
 version=0.11.5
 revision=3
-archs=noarch
 wrksrc="voluptuous-${version}"
 build_style=python-module
 pycompile_module="voluptuous"
diff --git a/srcpkgs/python-watchdog/template b/srcpkgs/python-watchdog/template
index 2eea6397f00..839e4edc91e 100644
--- a/srcpkgs/python-watchdog/template
+++ b/srcpkgs/python-watchdog/template
@@ -2,7 +2,6 @@
 pkgname=python-watchdog
 version=0.9.0
 revision=2
-archs=noarch
 wrksrc="watchdog-${version}"
 build_style=python-module
 pycompile_module="watchdog"
@@ -17,7 +16,6 @@ checksum=965f658d0732de3188211932aeb0bb457587f04f63ab4c1e33eab878e9de961d
 alternatives="watchdog:watchmedo:/usr/bin/watchmedo2"
 
 python3-watchdog_package() {
-	archs=noarch
 	pycompile_module="watchdog"
 	alternatives="watchdog:watchmedo:/usr/bin/watchmedo3"
 	depends="python3-setuptools python3-yaml python3-argh python3-pathtools"
diff --git a/srcpkgs/python-wcwidth/template b/srcpkgs/python-wcwidth/template
index 8ec6d17450c..e043794dc2d 100644
--- a/srcpkgs/python-wcwidth/template
+++ b/srcpkgs/python-wcwidth/template
@@ -2,7 +2,6 @@
 pkgname=python-wcwidth
 version=0.1.7
 revision=3
-archs=noarch
 wrksrc="wcwidth-${version}"
 build_style=python-module
 pycompile_module="wcwidth"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wcwidth_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="wcwidth"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webassets/template b/srcpkgs/python-webassets/template
index 7ed3cfd1b4c..5e6673ed205 100644
--- a/srcpkgs/python-webassets/template
+++ b/srcpkgs/python-webassets/template
@@ -2,7 +2,6 @@
 pkgname=python-webassets
 version=0.12.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="webassets"
@@ -21,7 +20,6 @@ post_install() {
 }
 
 python3-webassets_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	pycompile_module="webassets"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-webencodings/template b/srcpkgs/python-webencodings/template
index f047a9e3c52..048c9bb5d3a 100644
--- a/srcpkgs/python-webencodings/template
+++ b/srcpkgs/python-webencodings/template
@@ -2,7 +2,6 @@
 pkgname=python-webencodings
 version=0.5.1
 revision=3
-archs=noarch
 wrksrc="webencodings-${version}"
 build_style=python-module
 pycompile_module="webencodings"
@@ -16,7 +15,6 @@ distfiles="${PYPI_SITE}/w/webencodings/webencodings-${version}.tar.gz"
 checksum=b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923
 
 python3-webencodings_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="webencodings"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-websocket-client/template b/srcpkgs/python-websocket-client/template
index 3df8ab42b36..68773ce04ab 100644
--- a/srcpkgs/python-websocket-client/template
+++ b/srcpkgs/python-websocket-client/template
@@ -2,7 +2,6 @@
 pkgname=python-websocket-client
 version=0.56.0
 revision=2
-archs=noarch
 wrksrc="websocket_client-${version}"
 build_style=python-module
 pycompile_module="websocket"
@@ -24,7 +23,6 @@ post_install() {
 }
 
 python3-websocket-client_package() {
-	archs=noarch
 	depends="python3-six ca-certificates"
 	pycompile_module="websocket"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wheel/template b/srcpkgs/python-wheel/template
index 05fc8d1cc06..d3a346aa67e 100644
--- a/srcpkgs/python-wheel/template
+++ b/srcpkgs/python-wheel/template
@@ -2,7 +2,6 @@
 pkgname=python-wheel
 version=0.34.2
 revision=1
-archs=noarch
 wrksrc="wheel-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wheel_package() {
-	archs=noarch
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="wheel:wheel:usr/bin/wheel3"
diff --git a/srcpkgs/python-wikipedia/template b/srcpkgs/python-wikipedia/template
index f8a69755b74..82b835789b0 100644
--- a/srcpkgs/python-wikipedia/template
+++ b/srcpkgs/python-wikipedia/template
@@ -2,7 +2,6 @@
 pkgname=python-wikipedia
 version=1.4.0
 revision=3
-archs=noarch
 wrksrc="wikipedia-${version}"
 build_style=python-module
 pycompile_module="wikipedia"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wikipedia_package() {
-	archs=noarch
 	pycompile_module="wikipedia"
 	depends="python3-BeautifulSoup4 python3-requests"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-wsproto/template b/srcpkgs/python-wsproto/template
index f8b131104e6..aab4fcc6e05 100644
--- a/srcpkgs/python-wsproto/template
+++ b/srcpkgs/python-wsproto/template
@@ -2,7 +2,6 @@
 pkgname=python-wsproto
 version=0.15.0
 revision=2
-archs=noarch
 wrksrc="wsproto-${version}"
 build_style=python-module
 pycompile_module="wsproto"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-wsproto_package() {
-	archs=noarch
 	pycompile_module="wsproto"
 	depends="python3 python3-h11"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xdg/template b/srcpkgs/python-xdg/template
index 4e819c8bec7..b75ee56b800 100644
--- a/srcpkgs/python-xdg/template
+++ b/srcpkgs/python-xdg/template
@@ -2,7 +2,6 @@
 pkgname=python-xdg
 version=0.26
 revision=2
-archs=noarch
 wrksrc="pyxdg-${version}"
 build_style=python-module
 hostmakedepends="python python3"
@@ -17,7 +16,6 @@ distfiles="${PYPI_SITE}/p/pyxdg/pyxdg-${version}.tar.gz"
 checksum=fe2928d3f532ed32b39c32a482b54136fe766d19936afc96c8f00645f9da1a06
 
 python3-xdg_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="xdg"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-xlib/template b/srcpkgs/python-xlib/template
index 8c409c7f8c4..24933a8ee2e 100644
--- a/srcpkgs/python-xlib/template
+++ b/srcpkgs/python-xlib/template
@@ -2,7 +2,6 @@
 pkgname=python-xlib
 version=0.27
 revision=1
-archs=noarch
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
 depends="python-six"
@@ -18,7 +17,6 @@ pre_build() {
 }
 
 python3-xlib_package() {
-	archs=noarch
 	depends="python3-six"
 	short_desc="${short_desc/Python2/Python3}"
 	pkg_install() {
diff --git a/srcpkgs/python-xmldiff/template b/srcpkgs/python-xmldiff/template
index b8f25af9575..6991a03edaf 100644
--- a/srcpkgs/python-xmldiff/template
+++ b/srcpkgs/python-xmldiff/template
@@ -2,7 +2,6 @@
 pkgname=python-xmldiff
 version=2.4
 revision=1
-archs=noarch
 wrksrc="xmldiff-${version}"
 build_style=python-module
 hostmakedepends="python-setuptools python3-setuptools"
@@ -19,14 +18,12 @@ alternatives="xmldiff:xmldiff:/usr/bin/xmldiff2"
 replaces="xmldiff>=0"
 
 xmldiff_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
 }
 
 python3-xmldiff_package() {
-	archs=noarch
 	depends="python3-lxml python3-six python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
 	alternatives="xmldiff:xmldiff:/usr/bin/xmldiff3"
diff --git a/srcpkgs/python-xmltodict/template b/srcpkgs/python-xmltodict/template
index b3d7ef042e8..925469ed211 100644
--- a/srcpkgs/python-xmltodict/template
+++ b/srcpkgs/python-xmltodict/template
@@ -2,7 +2,6 @@
 pkgname=python-xmltodict
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc="xmltodict-${version}"
 build_style=python-module
 pycompile_module="xmltodict.py"
@@ -25,7 +24,6 @@ post_install() {
 }
 
 python3-xmltodict_package() {
-	archs=noarch
 	short_desc="${short_desc/Python2/Python3}"
 	pycompile_module="xmltodict.py"
 	depends="python3"
diff --git a/srcpkgs/python-yamllint/template b/srcpkgs/python-yamllint/template
index d0b51ba637a..3ec999d2d8c 100644
--- a/srcpkgs/python-yamllint/template
+++ b/srcpkgs/python-yamllint/template
@@ -2,7 +2,6 @@
 pkgname=python-yamllint
 version=1.15.0
 revision=2
-archs=noarch
 wrksrc="yamllint-${version}"
 build_style=python-module
 pycompile_module="yamllint"
@@ -22,7 +21,6 @@ do_check() {
 }
 
 python3-yamllint_package() {
-	archs=noarch
 	depends="python3-pathspec python3-setuptools python3-yaml"
 	pycompile_module="yamllint"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zc.lockfile/template b/srcpkgs/python-zc.lockfile/template
index 4a44b0c926e..a254226ce8c 100644
--- a/srcpkgs/python-zc.lockfile/template
+++ b/srcpkgs/python-zc.lockfile/template
@@ -2,7 +2,6 @@
 pkgname=python-zc.lockfile
 version=2.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python-module
 pycompile_module="zc/lockfile"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 python3-zc.lockfile_package() {
-	archs=noarch
 	pycompile_module="zc/lockfile"
 	depends="python3-setuptools"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python-zipp/template b/srcpkgs/python-zipp/template
index c58f294006f..16c30842069 100644
--- a/srcpkgs/python-zipp/template
+++ b/srcpkgs/python-zipp/template
@@ -2,7 +2,6 @@
 pkgname=python-zipp
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="zipp-${version}"
 build_style=python2-module
 hostmakedepends="python-setuptools"
diff --git a/srcpkgs/python-zipstream/template b/srcpkgs/python-zipstream/template
index 2c7390127ac..cdc08a374f0 100644
--- a/srcpkgs/python-zipstream/template
+++ b/srcpkgs/python-zipstream/template
@@ -2,7 +2,6 @@
 pkgname=python-zipstream
 version=1.1.4
 revision=4
-archs=noarch
 wrksrc="python-zipstream-${version}"
 build_style=python-module
 pycompile_module="zipstream"
@@ -16,7 +15,6 @@ distfiles="https://github.com/allanlei/python-zipstream/archive/v${version}.tar.
 checksum=32a7a4bdb786914445589595273beffbbf9b6a0a3a3dc2cf19ea96114bd2abd7
 
 python3-zipstream_package() {
-	archs=noarch
 	depends="python3"
 	pycompile_module="zipstream"
 	short_desc="${short_desc/Python2/Python3}"
diff --git a/srcpkgs/python3-3to2/template b/srcpkgs/python3-3to2/template
index 38558f1fcff..99e585a0a63 100644
--- a/srcpkgs/python3-3to2/template
+++ b/srcpkgs/python3-3to2/template
@@ -2,7 +2,6 @@
 pkgname=python3-3to2
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="3to2-${version}"
 build_style=python3-module
 pycompile_module="lib3to2"
diff --git a/srcpkgs/python3-CherryPy/template b/srcpkgs/python3-CherryPy/template
index 2b5fa77a786..b57d61c44db 100644
--- a/srcpkgs/python3-CherryPy/template
+++ b/srcpkgs/python3-CherryPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-CherryPy
 version=18.6.0
 revision=1
-archs=noarch
 wrksrc="CherryPy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ConfigArgParse/template b/srcpkgs/python3-ConfigArgParse/template
index ae8d5820cc8..793005a680f 100644
--- a/srcpkgs/python3-ConfigArgParse/template
+++ b/srcpkgs/python3-ConfigArgParse/template
@@ -2,7 +2,6 @@
 pkgname=python3-ConfigArgParse
 version=1.1
 revision=1
-archs=noarch
 wrksrc="ConfigArgParse-${version}"
 build_style=python3-module
 pycompile_module="configargparse.py"
diff --git a/srcpkgs/python3-Django/template b/srcpkgs/python3-Django/template
index 9f1a08f968d..5d9a26ba6c3 100644
--- a/srcpkgs/python3-Django/template
+++ b/srcpkgs/python3-Django/template
@@ -2,7 +2,6 @@
 pkgname=python3-Django
 version=3.0.7
 revision=1
-archs=noarch
 wrksrc="Django-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-EasyProcess/template b/srcpkgs/python3-EasyProcess/template
index 725467884d4..bc740b46c59 100644
--- a/srcpkgs/python3-EasyProcess/template
+++ b/srcpkgs/python3-EasyProcess/template
@@ -2,7 +2,6 @@
 pkgname=python3-EasyProcess
 version=0.3
 revision=1
-archs=noarch
 wrksrc=EasyProcess-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-Mail/template b/srcpkgs/python3-Flask-Mail/template
index f1e31e984d0..01e568eacdf 100644
--- a/srcpkgs/python3-Flask-Mail/template
+++ b/srcpkgs/python3-Flask-Mail/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-Mail
 version=0.9.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-RESTful/template b/srcpkgs/python3-Flask-RESTful/template
index 74f5be02359..5900fc17409 100644
--- a/srcpkgs/python3-Flask-RESTful/template
+++ b/srcpkgs/python3-Flask-RESTful/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-RESTful
 version=0.3.8
 revision=1
-archs=noarch
 wrksrc="flask-restful-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-SQLAlchemy/template b/srcpkgs/python3-Flask-SQLAlchemy/template
index 392425b0610..65d9a9da023 100644
--- a/srcpkgs/python3-Flask-SQLAlchemy/template
+++ b/srcpkgs/python3-Flask-SQLAlchemy/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-SQLAlchemy
 version=2.4.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Flask-User/template b/srcpkgs/python3-Flask-User/template
index 1de87f20bf4..cae7df2f916 100644
--- a/srcpkgs/python3-Flask-User/template
+++ b/srcpkgs/python3-Flask-User/template
@@ -2,7 +2,6 @@
 pkgname=python3-Flask-User
 version=1.0.2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Inflector/template b/srcpkgs/python3-Inflector/template
index e890c1ad256..2e777e3d1e2 100644
--- a/srcpkgs/python3-Inflector/template
+++ b/srcpkgs/python3-Inflector/template
@@ -2,7 +2,6 @@
 pkgname=python3-Inflector
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="Inflector-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Markdown/template b/srcpkgs/python3-Markdown/template
index 3c2e12cbe8d..6373522906b 100644
--- a/srcpkgs/python3-Markdown/template
+++ b/srcpkgs/python3-Markdown/template
@@ -2,7 +2,6 @@
 pkgname=python3-Markdown
 version=3.2.2
 revision=1
-archs=noarch
 wrksrc="Markdown-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-MechanicalSoup/template b/srcpkgs/python3-MechanicalSoup/template
index 5a3b0b3eb03..379cfad07b1 100644
--- a/srcpkgs/python3-MechanicalSoup/template
+++ b/srcpkgs/python3-MechanicalSoup/template
@@ -2,7 +2,6 @@
 pkgname=python3-MechanicalSoup
 version=0.12.0
 revision=2
-archs=noarch
 wrksrc=MechanicalSoup-${version}
 build_style=python3-module
 pycompile_module="mechanicalsoup"
diff --git a/srcpkgs/python3-Pebble/template b/srcpkgs/python3-Pebble/template
index 0d91d52c6d1..b000c3120ae 100644
--- a/srcpkgs/python3-Pebble/template
+++ b/srcpkgs/python3-Pebble/template
@@ -2,7 +2,6 @@
 pkgname=python3-Pebble
 version=4.5.3
 revision=1
-archs=noarch
 wrksrc=Pebble-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyBrowserID/template b/srcpkgs/python3-PyBrowserID/template
index eefd0175f1b..a67482469c2 100644
--- a/srcpkgs/python3-PyBrowserID/template
+++ b/srcpkgs/python3-PyBrowserID/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyBrowserID
 version=0.14.0
 revision=3
-archs=noarch
 wrksrc="PyBrowserID-${version}"
 build_style=python3-module
 pycompile_module="browserid"
diff --git a/srcpkgs/python3-PyFxA/template b/srcpkgs/python3-PyFxA/template
index 6fc6791efdd..47f332200e4 100644
--- a/srcpkgs/python3-PyFxA/template
+++ b/srcpkgs/python3-PyFxA/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyFxA
 version=0.7.3
 revision=2
-archs=noarch
 wrksrc="PyFxA-${version}"
 build_style=python3-module
 pycompile_module="fxa"
diff --git a/srcpkgs/python3-PyPDF2/template b/srcpkgs/python3-PyPDF2/template
index 75289b4f3ca..bb9b668ba1b 100644
--- a/srcpkgs/python3-PyPDF2/template
+++ b/srcpkgs/python3-PyPDF2/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyPDF2
 version=1.26.0
 revision=1
-archs=noarch
 wrksrc="PyPDF2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-PyVirtualDisplay/template b/srcpkgs/python3-PyVirtualDisplay/template
index e7c42f99c4e..589e669a917 100644
--- a/srcpkgs/python3-PyVirtualDisplay/template
+++ b/srcpkgs/python3-PyVirtualDisplay/template
@@ -2,7 +2,6 @@
 pkgname=python3-PyVirtualDisplay
 version=1.3.2
 revision=1
-archs=noarch
 wrksrc=PyVirtualDisplay-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-QtPy/template b/srcpkgs/python3-QtPy/template
index 2ddc8b313ee..6a32de69c52 100644
--- a/srcpkgs/python3-QtPy/template
+++ b/srcpkgs/python3-QtPy/template
@@ -2,7 +2,6 @@
 pkgname=python3-QtPy
 version=1.9.0
 revision=1
-archs=noarch
 wrksrc=QtPy-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ReParser/template b/srcpkgs/python3-ReParser/template
index 5959de9d0e3..8de97219a45 100644
--- a/srcpkgs/python3-ReParser/template
+++ b/srcpkgs/python3-ReParser/template
@@ -2,7 +2,6 @@
 pkgname=python3-ReParser
 version=1.4.3
 revision=2
-archs=noarch
 wrksrc=ReParser-${version}
 build_style=python3-module
 pycompile_module="reparser.py"
diff --git a/srcpkgs/python3-Ropper/template b/srcpkgs/python3-Ropper/template
index 6cf233bd99a..ea8c89c4de8 100644
--- a/srcpkgs/python3-Ropper/template
+++ b/srcpkgs/python3-Ropper/template
@@ -2,7 +2,6 @@
 pkgname=python3-Ropper
 version=1.13.5
 revision=1
-archs="noarch"
 wrksrc="Ropper-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-SecretStorage/template b/srcpkgs/python3-SecretStorage/template
index 864d1385411..1944bf60a4f 100644
--- a/srcpkgs/python3-SecretStorage/template
+++ b/srcpkgs/python3-SecretStorage/template
@@ -2,7 +2,6 @@
 pkgname=python3-SecretStorage
 version=3.1.2
 revision=1
-archs=noarch
 wrksrc="SecretStorage-${version}"
 build_style=python3-module
 pycompile_module="secretstorage"
diff --git a/srcpkgs/python3-SoCo/template b/srcpkgs/python3-SoCo/template
index 9a27dcdb264..b25879f7b83 100644
--- a/srcpkgs/python3-SoCo/template
+++ b/srcpkgs/python3-SoCo/template
@@ -2,7 +2,6 @@
 pkgname=python3-SoCo
 version=0.18.1
 revision=2
-archs=noarch
 wrksrc="SoCo-${version}"
 build_style=python3-module
 pycompile_module="soco"
diff --git a/srcpkgs/python3-Sphinx/template b/srcpkgs/python3-Sphinx/template
index df1eba9e438..b0b889a79ac 100644
--- a/srcpkgs/python3-Sphinx/template
+++ b/srcpkgs/python3-Sphinx/template
@@ -2,7 +2,6 @@
 pkgname=python3-Sphinx
 version=3.2.1
 revision=1
-archs=noarch
 wrksrc=Sphinx-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-Telethon/template b/srcpkgs/python3-Telethon/template
index 25ccd5200e5..008835cd554 100644
--- a/srcpkgs/python3-Telethon/template
+++ b/srcpkgs/python3-Telethon/template
@@ -2,7 +2,6 @@
 pkgname=python3-Telethon
 version=1.13.0
 revision=2
-archs=noarch
 wrksrc="Telethon-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-TxSNI/template b/srcpkgs/python3-TxSNI/template
index 22b38d1d3cf..a24785ee8f5 100644
--- a/srcpkgs/python3-TxSNI/template
+++ b/srcpkgs/python3-TxSNI/template
@@ -2,7 +2,6 @@
 pkgname=python3-TxSNI
 version=0.1.9
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="TxSNI-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-WebOb/template b/srcpkgs/python3-WebOb/template
index 53e63879f2c..51d94de11ce 100644
--- a/srcpkgs/python3-WebOb/template
+++ b/srcpkgs/python3-WebOb/template
@@ -2,7 +2,6 @@
 pkgname=python3-WebOb
 version=1.8.5
 revision=2
-archs=noarch
 wrksrc="WebOb-${version}"
 build_style=python3-module
 pycompile_module="webob"
diff --git a/srcpkgs/python3-XlsxWriter/template b/srcpkgs/python3-XlsxWriter/template
index b991457e01e..d8ed07a40e2 100644
--- a/srcpkgs/python3-XlsxWriter/template
+++ b/srcpkgs/python3-XlsxWriter/template
@@ -2,7 +2,6 @@
 pkgname=python3-XlsxWriter
 version=1.1.8
 revision=2
-archs="noarch"
 wrksrc="XlsxWriter-RELEASE_${version}"
 build_style=python3-module
 pycompile_module="XlsxWriter"
diff --git a/srcpkgs/python3-acme/template b/srcpkgs/python3-acme/template
index b8a0c7888c2..601c681e15a 100644
--- a/srcpkgs/python3-acme/template
+++ b/srcpkgs/python3-acme/template
@@ -2,7 +2,6 @@
 pkgname=python3-acme
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc="acme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioamqp/template b/srcpkgs/python3-aioamqp/template
index 861cec8f543..cbe7c34a0f4 100644
--- a/srcpkgs/python3-aioamqp/template
+++ b/srcpkgs/python3-aioamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioamqp
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="aioamqp-aioamqp-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiodns/template b/srcpkgs/python3-aiodns/template
index bca5802ef69..147fc1a5591 100644
--- a/srcpkgs/python3-aiodns/template
+++ b/srcpkgs/python3-aiodns/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiodns
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="aiodns-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiofiles/template b/srcpkgs/python3-aiofiles/template
index 61d4d081821..b588a2b1583 100644
--- a/srcpkgs/python3-aiofiles/template
+++ b/srcpkgs/python3-aiofiles/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiofiles
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp-cors/template b/srcpkgs/python3-aiohttp-cors/template
index b621716e3cd..ee29a0ee68e 100644
--- a/srcpkgs/python3-aiohttp-cors/template
+++ b/srcpkgs/python3-aiohttp-cors/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-cors2/template b/srcpkgs/python3-aiohttp-cors2/template
index f13b0598456..326c17ce4e5 100644
--- a/srcpkgs/python3-aiohttp-cors2/template
+++ b/srcpkgs/python3-aiohttp-cors2/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-cors2
 version=0.7.0
 revision=2
-archs=noarch
 wrksrc="aiohttp-cors-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_cors"
diff --git a/srcpkgs/python3-aiohttp-sse-client/template b/srcpkgs/python3-aiohttp-sse-client/template
index 6599b036e97..b5e1aa5e3ca 100644
--- a/srcpkgs/python3-aiohttp-sse-client/template
+++ b/srcpkgs/python3-aiohttp-sse-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp-sse-client
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiohttp_socks/template b/srcpkgs/python3-aiohttp_socks/template
index 10ab967ef76..572903c6752 100644
--- a/srcpkgs/python3-aiohttp_socks/template
+++ b/srcpkgs/python3-aiohttp_socks/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiohttp_socks
 version=0.2.2
 revision=2
-archs=noarch
 wrksrc="aiohttp_socks-${version}"
 build_style=python3-module
 pycompile_module="aiohttp_socks"
diff --git a/srcpkgs/python3-aioinflux/template b/srcpkgs/python3-aioinflux/template
index d63da0c2ccc..08a7bfe251b 100644
--- a/srcpkgs/python3-aioinflux/template
+++ b/srcpkgs/python3-aioinflux/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioinflux
 version=0.9.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aionotify/template b/srcpkgs/python3-aionotify/template
index 93d857f71b6..15e147e5f99 100644
--- a/srcpkgs/python3-aionotify/template
+++ b/srcpkgs/python3-aionotify/template
@@ -2,7 +2,6 @@
 pkgname=python3-aionotify
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="aionotify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aioredis/template b/srcpkgs/python3-aioredis/template
index c93ad443386..d6d1143b616 100644
--- a/srcpkgs/python3-aioredis/template
+++ b/srcpkgs/python3-aioredis/template
@@ -2,7 +2,6 @@
 pkgname=python3-aioredis
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-aiorpcx/template b/srcpkgs/python3-aiorpcx/template
index 3e25da6752f..e78840575e7 100644
--- a/srcpkgs/python3-aiorpcx/template
+++ b/srcpkgs/python3-aiorpcx/template
@@ -2,7 +2,6 @@
 pkgname=python3-aiorpcx
 version=0.18.4
 revision=1
-archs=noarch
 wrksrc="aiorpcX-${version}"
 build_style=python3-module
 pycompile_module="aiorpcx"
diff --git a/srcpkgs/python3-altgraph/template b/srcpkgs/python3-altgraph/template
index 2bf433edb6e..76f7663a6e6 100644
--- a/srcpkgs/python3-altgraph/template
+++ b/srcpkgs/python3-altgraph/template
@@ -2,7 +2,6 @@
 pkgname=python3-altgraph
 version=0.16.1
 revision=2
-archs=noarch
 wrksrc="altgraph-${version}"
 build_style=python3-module
 pycompile_module="altgraph"
diff --git a/srcpkgs/python3-aniso8601/template b/srcpkgs/python3-aniso8601/template
index 0253b89b5a3..667b0b101b7 100644
--- a/srcpkgs/python3-aniso8601/template
+++ b/srcpkgs/python3-aniso8601/template
@@ -2,7 +2,6 @@
 pkgname=python3-aniso8601
 version=8.0.0
 revision=2
-archs=noarch
 _gitver=0ec13b9d81c9
 wrksrc="nielsenb-aniso8601-${_gitver}"
 build_style=python3-module
diff --git a/srcpkgs/python3-ansible-lint/template b/srcpkgs/python3-ansible-lint/template
index cb3832799a1..723e1bacaa5 100644
--- a/srcpkgs/python3-ansible-lint/template
+++ b/srcpkgs/python3-ansible-lint/template
@@ -2,7 +2,6 @@
 pkgname=python3-ansible-lint
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="ansible-lint-${version}"
 build_style=python3-module
 pycompile_module="ansiblelint"
diff --git a/srcpkgs/python3-anytree/template b/srcpkgs/python3-anytree/template
index 5bd9b407017..1406d04febc 100644
--- a/srcpkgs/python3-anytree/template
+++ b/srcpkgs/python3-anytree/template
@@ -2,7 +2,6 @@
 pkgname=python3-anytree
 version=2.8.0
 revision=1
-archs=noarch
 wrksrc="anytree-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-applib/template b/srcpkgs/python3-applib/template
index 3a5a4ed5d40..717849c614f 100644
--- a/srcpkgs/python3-applib/template
+++ b/srcpkgs/python3-applib/template
@@ -2,7 +2,6 @@
 pkgname=python3-applib
 version=1.2
 revision=3
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="applib-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-argcomplete/template b/srcpkgs/python3-argcomplete/template
index 8b7a61dc11a..c637a4aedbc 100644
--- a/srcpkgs/python3-argcomplete/template
+++ b/srcpkgs/python3-argcomplete/template
@@ -3,7 +3,6 @@ pkgname=python3-argcomplete
 version=1.12.0
 revision=1
 wrksrc="argcomplete-${version}"
-archs=noarch
 build_style=python3-module
 pycompile_module="argcomplete"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-astral/template b/srcpkgs/python3-astral/template
index d290eee7806..9553913111e 100644
--- a/srcpkgs/python3-astral/template
+++ b/srcpkgs/python3-astral/template
@@ -2,7 +2,6 @@
 pkgname=python3-astral
 version=2.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-astroid/template b/srcpkgs/python3-astroid/template
index ff4a857e214..878560346af 100644
--- a/srcpkgs/python3-astroid/template
+++ b/srcpkgs/python3-astroid/template
@@ -2,7 +2,6 @@
 pkgname=python3-astroid
 version=2.4.2
 revision=1
-archs=noarch
 wrksrc="astroid-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-async-timeout/template b/srcpkgs/python3-async-timeout/template
index 854584fb5b2..729fe1b46c7 100644
--- a/srcpkgs/python3-async-timeout/template
+++ b/srcpkgs/python3-async-timeout/template
@@ -2,7 +2,6 @@
 pkgname=python3-async-timeout
 version=3.0.1
 revision=2
-archs=noarch
 wrksrc="async-timeout-${version}"
 build_style=python3-module
 pycompile_module="async_timeout"
diff --git a/srcpkgs/python3-async_generator/template b/srcpkgs/python3-async_generator/template
index 20d9f7ea0d1..16d43ef99cf 100644
--- a/srcpkgs/python3-async_generator/template
+++ b/srcpkgs/python3-async_generator/template
@@ -2,7 +2,6 @@
 pkgname=python3-async_generator
 version=1.10
 revision=2
-archs=noarch
 wrksrc="async_generator-${version}"
 build_style=python3-module
 pycompile_module="async_generator"
diff --git a/srcpkgs/python3-atspi/template b/srcpkgs/python3-atspi/template
index a33a374fe18..f3024c4ceb5 100644
--- a/srcpkgs/python3-atspi/template
+++ b/srcpkgs/python3-atspi/template
@@ -2,7 +2,6 @@
 pkgname=python3-atspi
 version=2.32.1
 revision=4
-archs=noarch
 wrksrc="pyatspi-${version}"
 build_style=gnu-configure
 hostmakedepends="pkg-config python3"
diff --git a/srcpkgs/python3-authres/template b/srcpkgs/python3-authres/template
index 27f543c33ba..666a0fb7c06 100644
--- a/srcpkgs/python3-authres/template
+++ b/srcpkgs/python3-authres/template
@@ -2,7 +2,6 @@
 pkgname=python3-authres
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="authres-${version}"
 build_style=python3-module
 pycompile_module=authres
diff --git a/srcpkgs/python3-autobahn/template b/srcpkgs/python3-autobahn/template
index fb3c80d8bb7..69d75e9178a 100644
--- a/srcpkgs/python3-autobahn/template
+++ b/srcpkgs/python3-autobahn/template
@@ -2,7 +2,6 @@
 pkgname=python3-autobahn
 version=20.7.1
 revision=1
-archs=noarch
 wrksrc="autobahn-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-blessed/template b/srcpkgs/python3-blessed/template
index a4a2274bd89..abdd6bb18a5 100644
--- a/srcpkgs/python3-blessed/template
+++ b/srcpkgs/python3-blessed/template
@@ -2,7 +2,6 @@
 pkgname=python3-blessed
 version=1.17.9
 revision=1
-archs=noarch
 wrksrc="blessed-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-boltons/template b/srcpkgs/python3-boltons/template
index 78f0f03a762..4921021252a 100644
--- a/srcpkgs/python3-boltons/template
+++ b/srcpkgs/python3-boltons/template
@@ -2,7 +2,6 @@
 pkgname=python3-boltons
 version=19.3.0
 revision=2
-archs=noarch
 wrksrc="boltons-${version}"
 build_style=python3-module
 pycompile_module="boltons"
diff --git a/srcpkgs/python3-boto3/template b/srcpkgs/python3-boto3/template
index 92126db33d7..44665c3e1e6 100644
--- a/srcpkgs/python3-boto3/template
+++ b/srcpkgs/python3-boto3/template
@@ -2,7 +2,6 @@
 pkgname=python3-boto3
 version=1.14.47
 revision=1
-archs=noarch
 wrksrc="boto3-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-breathe/template b/srcpkgs/python3-breathe/template
index 8e27f9397f4..49a45b25ad8 100644
--- a/srcpkgs/python3-breathe/template
+++ b/srcpkgs/python3-breathe/template
@@ -2,7 +2,6 @@
 pkgname=python3-breathe
 version=4.20.0
 revision=1
-archs=noarch
 wrksrc="breathe-${version}"
 build_style=python3-module
 _pyreqs="python3-Sphinx python3-docutils python3-six"
diff --git a/srcpkgs/python3-cachetools/template b/srcpkgs/python3-cachetools/template
index 6b14d89eff2..7220d8cdb09 100644
--- a/srcpkgs/python3-cachetools/template
+++ b/srcpkgs/python3-cachetools/template
@@ -2,7 +2,6 @@
 pkgname=python3-cachetools
 version=4.1.0
 revision=1
-archs=noarch
 wrksrc="cachetools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-canonicaljson/template b/srcpkgs/python3-canonicaljson/template
index 87b7c8cc8e3..663ab617acc 100644
--- a/srcpkgs/python3-canonicaljson/template
+++ b/srcpkgs/python3-canonicaljson/template
@@ -2,7 +2,6 @@
 pkgname=python3-canonicaljson
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="canonicaljson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-casttube/template b/srcpkgs/python3-casttube/template
index 9e5544b0101..9d6798ee872 100644
--- a/srcpkgs/python3-casttube/template
+++ b/srcpkgs/python3-casttube/template
@@ -2,7 +2,6 @@
 pkgname=python3-casttube
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="casttube-${version}"
 build_style=python3-module
 pycompile_module="casttube"
diff --git a/srcpkgs/python3-certifi/template b/srcpkgs/python3-certifi/template
index 35807ad3642..185bf0b31ab 100644
--- a/srcpkgs/python3-certifi/template
+++ b/srcpkgs/python3-certifi/template
@@ -2,7 +2,6 @@
 pkgname=python3-certifi
 version=2020.06.20
 revision=1
-archs=noarch
 wrksrc="python-certifi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-changelogs/template b/srcpkgs/python3-changelogs/template
index d9a7784cf3b..8f4cb4a66b1 100644
--- a/srcpkgs/python3-changelogs/template
+++ b/srcpkgs/python3-changelogs/template
@@ -2,7 +2,6 @@
 pkgname=python3-changelogs
 version=0.14.0
 revision=2
-archs=noarch
 wrksrc="changelogs-${version}"
 build_style=python3-module
 pycompile_module="changelogs"
diff --git a/srcpkgs/python3-chess/template b/srcpkgs/python3-chess/template
index 3bf7847302e..82abdbe0fc6 100644
--- a/srcpkgs/python3-chess/template
+++ b/srcpkgs/python3-chess/template
@@ -2,7 +2,6 @@
 pkgname=python3-chess
 version=0.30.1
 revision=1
-archs=noarch
 wrksrc="python-chess-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-chromecast/template b/srcpkgs/python3-chromecast/template
index e83286d30ce..1f581a88eb8 100644
--- a/srcpkgs/python3-chromecast/template
+++ b/srcpkgs/python3-chromecast/template
@@ -2,7 +2,6 @@
 pkgname=python3-chromecast
 version=4.1.0
 revision=2
-archs=noarch
 wrksrc="pychromecast-${version}"
 build_style=python3-module
 pycompile_module="pychromecast"
diff --git a/srcpkgs/python3-cjkwrap/template b/srcpkgs/python3-cjkwrap/template
index fa951f26223..04fbf1440af 100644
--- a/srcpkgs/python3-cjkwrap/template
+++ b/srcpkgs/python3-cjkwrap/template
@@ -2,7 +2,6 @@
 pkgname=python3-cjkwrap
 version=2.2
 revision=2
-archs=noarch
 wrksrc="cjkwrap-v${version}"
 build_style=python3-module
 pycompile_module="cjkwrap.py"
diff --git a/srcpkgs/python3-cli-ui/template b/srcpkgs/python3-cli-ui/template
index b8e8c97d96f..47ed99e080f 100644
--- a/srcpkgs/python3-cli-ui/template
+++ b/srcpkgs/python3-cli-ui/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli-ui
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="python-cli-ui-${version}"
 build_style=python3-module
 pycompile_module="cli_ui"
diff --git a/srcpkgs/python3-cli_helpers/template b/srcpkgs/python3-cli_helpers/template
index 87b284e3cb5..d576e3f3e11 100644
--- a/srcpkgs/python3-cli_helpers/template
+++ b/srcpkgs/python3-cli_helpers/template
@@ -2,7 +2,6 @@
 pkgname=python3-cli_helpers
 version=1.2.1
 revision=2
-archs=noarch
 wrksrc="cli_helpers-${version}"
 build_style=python3-module
 pycompile_module="cli_helpers"
diff --git a/srcpkgs/python3-click-plugins/template b/srcpkgs/python3-click-plugins/template
index 0ef6ce6b248..54b2de90f7d 100644
--- a/srcpkgs/python3-click-plugins/template
+++ b/srcpkgs/python3-click-plugins/template
@@ -2,7 +2,6 @@
 pkgname=python3-click-plugins
 version=1.1.1
 revision=2
-archs=noarch
 wrksrc="click-plugins-${version}"
 build_style=python3-module
 pycompile_module="click-plugins"
diff --git a/srcpkgs/python3-cloudscraper/template b/srcpkgs/python3-cloudscraper/template
index 01cac007c83..57575537070 100644
--- a/srcpkgs/python3-cloudscraper/template
+++ b/srcpkgs/python3-cloudscraper/template
@@ -2,7 +2,6 @@
 pkgname=python3-cloudscraper
 version=1.2.40
 revision=1
-archs=noarch
 wrksrc=cloudscraper-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-cmdln/template b/srcpkgs/python3-cmdln/template
index 2b7e21f3980..d0f84304fca 100644
--- a/srcpkgs/python3-cmdln/template
+++ b/srcpkgs/python3-cmdln/template
@@ -2,7 +2,6 @@
 pkgname=python3-cmdln
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc="cmdln-${version}"
 build_style=python3-module
 pycompile_module="cmdln.py"
diff --git a/srcpkgs/python3-colorclass/template b/srcpkgs/python3-colorclass/template
index ed8d2d2ea02..3874e6504d5 100644
--- a/srcpkgs/python3-colorclass/template
+++ b/srcpkgs/python3-colorclass/template
@@ -2,7 +2,6 @@
 pkgname=python3-colorclass
 version=2.2.0
 revision=2
-archs=noarch
 wrksrc="colorclass-${version}"
 build_style=python3-module
 pycompile_module="colorclass"
diff --git a/srcpkgs/python3-crccheck/template b/srcpkgs/python3-crccheck/template
index a0a86e0ae2c..31d05495d2d 100644
--- a/srcpkgs/python3-crccheck/template
+++ b/srcpkgs/python3-crccheck/template
@@ -2,7 +2,6 @@
 pkgname=python3-crccheck
 version=0.6
 revision=2
-archs=noarch
 wrksrc="crccheck-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dateparser/template b/srcpkgs/python3-dateparser/template
index e36395eea8a..16257fd04ed 100644
--- a/srcpkgs/python3-dateparser/template
+++ b/srcpkgs/python3-dateparser/template
@@ -2,7 +2,6 @@
 pkgname=python3-dateparser
 version=0.7.6
 revision=1
-archs=noarch
 wrksrc=dateparser-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dbusmock/template b/srcpkgs/python3-dbusmock/template
index d8330a210c0..aa46bf5ad74 100644
--- a/srcpkgs/python3-dbusmock/template
+++ b/srcpkgs/python3-dbusmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-dbusmock
 version=0.19
 revision=1
-archs=noarch
 wrksrc="python-dbusmock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-deprecation/template b/srcpkgs/python3-deprecation/template
index 5983a0aadbf..0c87034caf2 100644
--- a/srcpkgs/python3-deprecation/template
+++ b/srcpkgs/python3-deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-deprecation
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-discid/template b/srcpkgs/python3-discid/template
index de3f5e571db..981445e5136 100644
--- a/srcpkgs/python3-discid/template
+++ b/srcpkgs/python3-discid/template
@@ -2,7 +2,6 @@
 pkgname=python3-discid
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="discid-${version}"
 build_style=python3-module
 pycompile_module=discid
diff --git a/srcpkgs/python3-distlib/template b/srcpkgs/python3-distlib/template
index ff983ca9b6d..36186ff0700 100644
--- a/srcpkgs/python3-distlib/template
+++ b/srcpkgs/python3-distlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-distlib
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="distlib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dkimpy/template b/srcpkgs/python3-dkimpy/template
index 836f46d7aec..c334ec70bf6 100644
--- a/srcpkgs/python3-dkimpy/template
+++ b/srcpkgs/python3-dkimpy/template
@@ -2,7 +2,6 @@
 pkgname=python3-dkimpy
 version=1.0.0
 revision=2
-archs=noarch
 wrksrc="dkimpy-${version}"
 build_style=python3-module
 pycompile_module="dkim"
@@ -30,7 +29,6 @@ post_install() {
 
 python-dkimpy_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-dkimpy"
 	short_desc+=" - transitional dummy package"
 }
diff --git a/srcpkgs/python3-doi/template b/srcpkgs/python3-doi/template
index 29b9036922c..04c80853ecc 100644
--- a/srcpkgs/python3-doi/template
+++ b/srcpkgs/python3-doi/template
@@ -2,7 +2,6 @@
 pkgname=python3-doi
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="python-doi-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-dpkt/template b/srcpkgs/python3-dpkt/template
index 5ca1a6b1dbb..8045291e788 100644
--- a/srcpkgs/python3-dpkt/template
+++ b/srcpkgs/python3-dpkt/template
@@ -2,7 +2,6 @@
 pkgname=python3-dpkt
 version=1.9.2
 revision=1
-archs=noarch
 wrksrc="dpkt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-easygui/template b/srcpkgs/python3-easygui/template
index a9a2f66d865..82e665df9b6 100644
--- a/srcpkgs/python3-easygui/template
+++ b/srcpkgs/python3-easygui/template
@@ -2,7 +2,6 @@
 pkgname=python3-easygui
 version=0.98.1
 revision=2
-archs=noarch
 wrksrc="easygui-${version}"
 build_style=python3-module
 pycompile_module="easygui"
diff --git a/srcpkgs/python3-elementpath/template b/srcpkgs/python3-elementpath/template
index 9f1a1fe1a8e..ad5f0f92564 100644
--- a/srcpkgs/python3-elementpath/template
+++ b/srcpkgs/python3-elementpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-elementpath
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=elementpath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-eliot/template b/srcpkgs/python3-eliot/template
index eca2c769d45..e139012e680 100644
--- a/srcpkgs/python3-eliot/template
+++ b/srcpkgs/python3-eliot/template
@@ -2,7 +2,6 @@
 pkgname=python3-eliot
 version=1.12.0
 revision=1
-archs=noarch
 wrksrc="eliot-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-enchant/template b/srcpkgs/python3-enchant/template
index 1540cc34bc8..6c7f5a8837d 100644
--- a/srcpkgs/python3-enchant/template
+++ b/srcpkgs/python3-enchant/template
@@ -2,7 +2,6 @@
 pkgname=python3-enchant
 version=3.1.1
 revision=1
-archs=noarch
 wrksrc="pyenchant-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools enchant-devel"
diff --git a/srcpkgs/python3-etesync/template b/srcpkgs/python3-etesync/template
index c0822245056..6c2218c4732 100644
--- a/srcpkgs/python3-etesync/template
+++ b/srcpkgs/python3-etesync/template
@@ -2,7 +2,6 @@
 pkgname=python3-etesync
 version=0.11.1
 revision=1
-archs=noarch
 wrksrc="etesync-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ffmpeg-python/template b/srcpkgs/python3-ffmpeg-python/template
index 137a864711f..ba0c070ffe5 100644
--- a/srcpkgs/python3-ffmpeg-python/template
+++ b/srcpkgs/python3-ffmpeg-python/template
@@ -2,7 +2,6 @@
 pkgname=python3-ffmpeg-python
 version=0.2.0
 revision=1
-archs=noarch
 wrksrc="ffmpeg-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fido2/template b/srcpkgs/python3-fido2/template
index fcf8a219ca2..bf76019c3a6 100644
--- a/srcpkgs/python3-fido2/template
+++ b/srcpkgs/python3-fido2/template
@@ -3,7 +3,6 @@ pkgname=python3-fido2
 _pkgname=fido2
 version=0.8.1
 revision=2
-archs=noarch
 wrksrc="${_pkgname}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-filebytes/template b/srcpkgs/python3-filebytes/template
index 8a7236c705a..1953ab8b4b5 100644
--- a/srcpkgs/python3-filebytes/template
+++ b/srcpkgs/python3-filebytes/template
@@ -2,7 +2,6 @@
 pkgname=python3-filebytes
 version=0.10.2
 revision=1
-archs="noarch"
 wrksrc="filebytes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-fishnet/template b/srcpkgs/python3-fishnet/template
index 6280ae8e966..f49689f6843 100644
--- a/srcpkgs/python3-fishnet/template
+++ b/srcpkgs/python3-fishnet/template
@@ -2,7 +2,6 @@
 pkgname=python3-fishnet
 version=1.15.18
 revision=2
-archs=noarch
 wrksrc="fishnet-${version}"
 build_style=python3-module
 pycompile_module="fishnet.py"
diff --git a/srcpkgs/python3-flexmock/template b/srcpkgs/python3-flexmock/template
index 8a7c9a2894d..39e01adee6c 100644
--- a/srcpkgs/python3-flexmock/template
+++ b/srcpkgs/python3-flexmock/template
@@ -2,7 +2,6 @@
 pkgname=python3-flexmock
 version=0.10.4
 revision=2
-archs=noarch
 wrksrc="flexmock-${version}"
 build_style=python3-module
 pycompile_module="flexmock.py"
diff --git a/srcpkgs/python3-freezegun/template b/srcpkgs/python3-freezegun/template
index d8c96e1f1c6..465965a5489 100644
--- a/srcpkgs/python3-freezegun/template
+++ b/srcpkgs/python3-freezegun/template
@@ -2,7 +2,6 @@
 pkgname=python3-freezegun
 version=0.3.15
 revision=1
-archs=noarch
 wrksrc="freezegun-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-frozendict/template b/srcpkgs/python3-frozendict/template
index 739000a887c..73280ccab1a 100644
--- a/srcpkgs/python3-frozendict/template
+++ b/srcpkgs/python3-frozendict/template
@@ -2,7 +2,6 @@
 pkgname=python3-frozendict
 version=1.2
 revision=2
-archs=noarch
 wrksrc="frozendict-${version}"
 build_style=python3-module
 pycompile_module="frozendict"
diff --git a/srcpkgs/python3-furl/template b/srcpkgs/python3-furl/template
index 5fc53ba21de..71ae4e650d8 100644
--- a/srcpkgs/python3-furl/template
+++ b/srcpkgs/python3-furl/template
@@ -2,7 +2,6 @@
 pkgname=python3-furl
 version=2.1.0
 revision=1
-archs=noarch
 wrksrc="furl-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-geojson/template b/srcpkgs/python3-geojson/template
index 90e7d5a0e60..01bd91ec9ab 100644
--- a/srcpkgs/python3-geojson/template
+++ b/srcpkgs/python3-geojson/template
@@ -2,7 +2,6 @@
 pkgname=python3-geojson
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="geojson-${version}"
 build_style=python3-module
 pycompile_module="geojson"
diff --git a/srcpkgs/python3-gitchangelog/template b/srcpkgs/python3-gitchangelog/template
index cc1945f2623..d8ea98a34a5 100644
--- a/srcpkgs/python3-gitchangelog/template
+++ b/srcpkgs/python3-gitchangelog/template
@@ -2,7 +2,6 @@
 pkgname=python3-gitchangelog
 version=3.0.4
 revision=2
-archs=noarch
 wrksrc="gitchangelog-${version}"
 build_style=python3-module
 pycompile_module="gitchangelog"
diff --git a/srcpkgs/python3-google-api-core/template b/srcpkgs/python3-google-api-core/template
index e2f78f172cb..bcfa3fa83b4 100644
--- a/srcpkgs/python3-google-api-core/template
+++ b/srcpkgs/python3-google-api-core/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-core
 version=1.17.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-api-python-client/template b/srcpkgs/python3-google-api-python-client/template
index 12859dd49ec..34000c8412f 100644
--- a/srcpkgs/python3-google-api-python-client/template
+++ b/srcpkgs/python3-google-api-python-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-api-python-client
 version=1.8.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-google-auth-httplib2/template b/srcpkgs/python3-google-auth-httplib2/template
index 230494ba905..7cade87f4ca 100644
--- a/srcpkgs/python3-google-auth-httplib2/template
+++ b/srcpkgs/python3-google-auth-httplib2/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth-httplib2
 version=0.0.3
 revision=4
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-google-auth/template b/srcpkgs/python3-google-auth/template
index 8e18145cda9..7067d8daeb5 100644
--- a/srcpkgs/python3-google-auth/template
+++ b/srcpkgs/python3-google-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-google-auth
 version=1.16.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-setuptools"
diff --git a/srcpkgs/python3-googleapis-common-protos/template b/srcpkgs/python3-googleapis-common-protos/template
index 1b0747910e0..326f783ddab 100644
--- a/srcpkgs/python3-googleapis-common-protos/template
+++ b/srcpkgs/python3-googleapis-common-protos/template
@@ -2,7 +2,6 @@
 pkgname=python3-googleapis-common-protos
 version=1.51.0
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-graphviz/template b/srcpkgs/python3-graphviz/template
index 2e7ec3bd76a..f1282e5d36c 100644
--- a/srcpkgs/python3-graphviz/template
+++ b/srcpkgs/python3-graphviz/template
@@ -2,7 +2,6 @@
 pkgname=python3-graphviz
 version=0.13.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="graphviz"
diff --git a/srcpkgs/python3-hawkauthlib/template b/srcpkgs/python3-hawkauthlib/template
index 1456fa7d814..4fc1166f99c 100644
--- a/srcpkgs/python3-hawkauthlib/template
+++ b/srcpkgs/python3-hawkauthlib/template
@@ -2,7 +2,6 @@
 pkgname=python3-hawkauthlib
 version=2.0.0
 revision=3
-archs=noarch
 wrksrc="hawkauthlib-${version}"
 build_style=python3-module
 pycompile_module="hawkauthlib"
diff --git a/srcpkgs/python3-hjson/template b/srcpkgs/python3-hjson/template
index 9cd01b86f08..c4d60a580a8 100644
--- a/srcpkgs/python3-hjson/template
+++ b/srcpkgs/python3-hjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-hjson
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="hjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hkdf/template b/srcpkgs/python3-hkdf/template
index 0faaf05b5fe..fef3e6d4dc7 100644
--- a/srcpkgs/python3-hkdf/template
+++ b/srcpkgs/python3-hkdf/template
@@ -2,7 +2,6 @@
 pkgname=python3-hkdf
 version=0.0.3
 revision=2
-archs=noarch
 wrksrc="hkdf-${version}"
 build_style=python3-module
 pycompile_module="hkdf.py"
diff --git a/srcpkgs/python3-html2text/template b/srcpkgs/python3-html2text/template
index 54e9dab354b..e06075d34be 100644
--- a/srcpkgs/python3-html2text/template
+++ b/srcpkgs/python3-html2text/template
@@ -2,7 +2,6 @@
 pkgname=python3-html2text
 version=2020.1.16
 revision=2
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="html2text"
diff --git a/srcpkgs/python3-humanize/template b/srcpkgs/python3-humanize/template
index cbf4398d976..7062c5589b8 100644
--- a/srcpkgs/python3-humanize/template
+++ b/srcpkgs/python3-humanize/template
@@ -2,7 +2,6 @@
 pkgname=python3-humanize
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc="humanize-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-hypercorn/template b/srcpkgs/python3-hypercorn/template
index a2280eba7fd..c2eabe98d17 100644
--- a/srcpkgs/python3-hypercorn/template
+++ b/srcpkgs/python3-hypercorn/template
@@ -2,7 +2,6 @@
 pkgname=python3-hypercorn
 version=0.10.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-i3ipc/template b/srcpkgs/python3-i3ipc/template
index df0c16a161b..72518ad93a3 100644
--- a/srcpkgs/python3-i3ipc/template
+++ b/srcpkgs/python3-i3ipc/template
@@ -2,7 +2,6 @@
 pkgname=python3-i3ipc
 version=2.2.1
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-idna-ssl/template b/srcpkgs/python3-idna-ssl/template
index 0608fb7278c..75126a355ca 100644
--- a/srcpkgs/python3-idna-ssl/template
+++ b/srcpkgs/python3-idna-ssl/template
@@ -2,7 +2,6 @@
 pkgname=python3-idna-ssl
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="idna-ssl-${version}"
 build_style=python3-module
 pycompile_module="idna_ssl.py"
diff --git a/srcpkgs/python3-ifaddr/template b/srcpkgs/python3-ifaddr/template
index 803404735be..e1e78db4e0a 100644
--- a/srcpkgs/python3-ifaddr/template
+++ b/srcpkgs/python3-ifaddr/template
@@ -2,7 +2,6 @@
 pkgname=python3-ifaddr
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="ifaddr-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-influxdb/template b/srcpkgs/python3-influxdb/template
index 366eea281af..62b135c20b7 100644
--- a/srcpkgs/python3-influxdb/template
+++ b/srcpkgs/python3-influxdb/template
@@ -2,7 +2,6 @@
 pkgname=python3-influxdb
 version=5.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python-setuptools"
diff --git a/srcpkgs/python3-ipython/template b/srcpkgs/python3-ipython/template
index f40bfc437bb..6343085ce87 100644
--- a/srcpkgs/python3-ipython/template
+++ b/srcpkgs/python3-ipython/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython
 version=7.17.0
 revision=1
-archs=noarch
 wrksrc="ipython-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_genutils/template b/srcpkgs/python3-ipython_genutils/template
index b2754424178..190fa6f9b5f 100644
--- a/srcpkgs/python3-ipython_genutils/template
+++ b/srcpkgs/python3-ipython_genutils/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_genutils
 version=0.2.0
 revision=4
-archs=noarch
 wrksrc="ipython_genutils-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-ipython_ipykernel/template b/srcpkgs/python3-ipython_ipykernel/template
index c3c0232c14a..19864960761 100644
--- a/srcpkgs/python3-ipython_ipykernel/template
+++ b/srcpkgs/python3-ipython_ipykernel/template
@@ -2,7 +2,6 @@
 pkgname=python3-ipython_ipykernel
 version=5.2.0
 revision=1
-archs=noarch
 wrksrc="ipykernel-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-ipython
diff --git a/srcpkgs/python3-irc/template b/srcpkgs/python3-irc/template
index 714c11dc943..5e4f518e5c3 100644
--- a/srcpkgs/python3-irc/template
+++ b/srcpkgs/python3-irc/template
@@ -2,7 +2,6 @@
 pkgname=python3-irc
 version=17.1
 revision=2
-archs=noarch
 wrksrc="irc-${version}"
 build_style=python3-module
 pycompile_module="irc"
diff --git a/srcpkgs/python3-itunespy/template b/srcpkgs/python3-itunespy/template
index 7a04a945dbd..6ef6b151473 100644
--- a/srcpkgs/python3-itunespy/template
+++ b/srcpkgs/python3-itunespy/template
@@ -2,7 +2,6 @@
 pkgname=python3-itunespy
 version=1.6
 revision=1
-archs=noarch
 wrksrc="itunespy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-janus/template b/srcpkgs/python3-janus/template
index b7388d96975..e7ca53a5773 100644
--- a/srcpkgs/python3-janus/template
+++ b/srcpkgs/python3-janus/template
@@ -2,7 +2,6 @@
 pkgname=python3-janus
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="janus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.classes/template b/srcpkgs/python3-jaraco.classes/template
index 6dbe89cb7f9..15e4996dedc 100644
--- a/srcpkgs/python3-jaraco.classes/template
+++ b/srcpkgs/python3-jaraco.classes/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.classes
 version=3.1.0
 revision=1
-archs=noarch
 wrksrc="jaraco.classes-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.collections/template b/srcpkgs/python3-jaraco.collections/template
index 64f78eb4300..0a29387cf13 100644
--- a/srcpkgs/python3-jaraco.collections/template
+++ b/srcpkgs/python3-jaraco.collections/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.collections
 version=3.0.0
 revision=1
-archs=noarch
 wrksrc="jaraco.collections-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.functools/template b/srcpkgs/python3-jaraco.functools/template
index ca1ebb066d5..31a7711c5a7 100644
--- a/srcpkgs/python3-jaraco.functools/template
+++ b/srcpkgs/python3-jaraco.functools/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.functools
 version=3.0.1
 revision=1
-archs=noarch
 wrksrc="jaraco.functools-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco.text/template b/srcpkgs/python3-jaraco.text/template
index a64ba0db7cb..f971a0326a7 100644
--- a/srcpkgs/python3-jaraco.text/template
+++ b/srcpkgs/python3-jaraco.text/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco.text
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="jaraco.text-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jaraco/template b/srcpkgs/python3-jaraco/template
index d6ab6b23228..a718dfc9736 100644
--- a/srcpkgs/python3-jaraco/template
+++ b/srcpkgs/python3-jaraco/template
@@ -2,7 +2,6 @@
 pkgname=python3-jaraco
 version=1.0
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Namespace package declaration for jaraco (Python3)"
 maintainer="bra1nwave <bra1nwave@protonmail.com>"
diff --git a/srcpkgs/python3-jeepney/template b/srcpkgs/python3-jeepney/template
index 6654f4a7c97..691180ca473 100644
--- a/srcpkgs/python3-jeepney/template
+++ b/srcpkgs/python3-jeepney/template
@@ -2,7 +2,6 @@
 pkgname=python3-jeepney
 version=0.4.3
 revision=1
-archs=noarch
 wrksrc="jeepney-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-josepy/template b/srcpkgs/python3-josepy/template
index 903bd7028ed..cff1341c508 100644
--- a/srcpkgs/python3-josepy/template
+++ b/srcpkgs/python3-josepy/template
@@ -2,7 +2,6 @@
 pkgname=python3-josepy
 version=1.2.0
 revision=2
-archs=noarch
 wrksrc="josepy-${version}"
 build_style=python3-module
 pycompile_module="josepy"
diff --git a/srcpkgs/python3-jsondiff/template b/srcpkgs/python3-jsondiff/template
index 9e22f1dc42b..f196830147b 100644
--- a/srcpkgs/python3-jsondiff/template
+++ b/srcpkgs/python3-jsondiff/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsondiff
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="jsondiff-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jsonrpc-server/template b/srcpkgs/python3-jsonrpc-server/template
index b51e185efe9..a259f1f9a37 100644
--- a/srcpkgs/python3-jsonrpc-server/template
+++ b/srcpkgs/python3-jsonrpc-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-jsonrpc-server
 version=0.3.4
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_client/template b/srcpkgs/python3-jupyter_client/template
index 6cba34ab0b8..8291700d9ae 100644
--- a/srcpkgs/python3-jupyter_client/template
+++ b/srcpkgs/python3-jupyter_client/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_client
 version=6.1.0
 revision=1
-archs=noarch
 wrksrc="jupyter_client-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_console/template b/srcpkgs/python3-jupyter_console/template
index 4b404987cd8..9d03069b213 100644
--- a/srcpkgs/python3-jupyter_console/template
+++ b/srcpkgs/python3-jupyter_console/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_console
 version=6.1.0
 revision=4
-archs=noarch
 wrksrc="jupyter_console-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_core/template b/srcpkgs/python3-jupyter_core/template
index ea75fa510a7..5ab8150f31a 100644
--- a/srcpkgs/python3-jupyter_core/template
+++ b/srcpkgs/python3-jupyter_core/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_core
 version=4.6.3
 revision=1
-archs=noarch
 wrksrc="jupyter_core-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 
 python3-jupyter_package() {
 	build_style=meta
-	archs=noarch
 	depends="python3-jupyter_notebook python3-jupyter_console
 	 python3-jupyter_ipywidgets"
 	short_desc="Jupyter metapackage for Void Linux"
diff --git a/srcpkgs/python3-jupyter_ipywidgets/template b/srcpkgs/python3-jupyter_ipywidgets/template
index 7e64279aeec..17b0445e2c8 100644
--- a/srcpkgs/python3-jupyter_ipywidgets/template
+++ b/srcpkgs/python3-jupyter_ipywidgets/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_ipywidgets
 version=7.5.1
 revision=1
-archs=noarch
 _widgetsnbextver=3.5.0
 wrksrc="ipywidgets-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-jupyter_nbconvert/template b/srcpkgs/python3-jupyter_nbconvert/template
index dba1d5a980e..b2c31bbf512 100644
--- a/srcpkgs/python3-jupyter_nbconvert/template
+++ b/srcpkgs/python3-jupyter_nbconvert/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbconvert
 version=5.6.1
 revision=1
-archs=noarch
 wrksrc="nbconvert-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_nbformat/template b/srcpkgs/python3-jupyter_nbformat/template
index a46c5697212..8c0e41c0e77 100644
--- a/srcpkgs/python3-jupyter_nbformat/template
+++ b/srcpkgs/python3-jupyter_nbformat/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_nbformat
 version=5.0.4
 revision=1
-archs=noarch
 wrksrc="nbformat-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_notebook/template b/srcpkgs/python3-jupyter_notebook/template
index cc1727d2ee0..37a127cea7a 100644
--- a/srcpkgs/python3-jupyter_notebook/template
+++ b/srcpkgs/python3-jupyter_notebook/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_notebook
 version=6.0.3
 revision=1
-archs=noarch
 wrksrc="notebook-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_qtconsole/template b/srcpkgs/python3-jupyter_qtconsole/template
index 0c062662763..65a3a05c1ec 100644
--- a/srcpkgs/python3-jupyter_qtconsole/template
+++ b/srcpkgs/python3-jupyter_qtconsole/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_qtconsole
 version=4.7.1
 revision=1
-archs=noarch
 wrksrc="qtconsole-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-jupyter_widgetsnbextension/template b/srcpkgs/python3-jupyter_widgetsnbextension/template
index e1fe046894c..f64149d86f6 100644
--- a/srcpkgs/python3-jupyter_widgetsnbextension/template
+++ b/srcpkgs/python3-jupyter_widgetsnbextension/template
@@ -2,7 +2,6 @@
 pkgname=python3-jupyter_widgetsnbextension
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="widgetsnbextension-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyring/template b/srcpkgs/python3-keyring/template
index 97e10618eee..0585163b07e 100644
--- a/srcpkgs/python3-keyring/template
+++ b/srcpkgs/python3-keyring/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyring
 version=21.2.1
 revision=1
-archs=noarch
 wrksrc="keyring-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-keyrings-alt/template b/srcpkgs/python3-keyrings-alt/template
index 3052d257d1c..1ac1a6331ee 100644
--- a/srcpkgs/python3-keyrings-alt/template
+++ b/srcpkgs/python3-keyrings-alt/template
@@ -2,7 +2,6 @@
 pkgname=python3-keyrings-alt
 version=3.4.0
 revision=2
-archs=noarch
 wrksrc="keyrings.alt-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-language-server/template b/srcpkgs/python3-language-server/template
index 8ac0842f3b9..333431b4280 100644
--- a/srcpkgs/python3-language-server/template
+++ b/srcpkgs/python3-language-server/template
@@ -2,7 +2,6 @@
 pkgname=python3-language-server
 version=0.34.1
 revision=2
-archs=noarch
 wrksrc="${pkgname/3}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macaroons/template b/srcpkgs/python3-macaroons/template
index 7dfb4f3f588..542ba921643 100644
--- a/srcpkgs/python3-macaroons/template
+++ b/srcpkgs/python3-macaroons/template
@@ -2,7 +2,6 @@
 pkgname=python3-macaroons
 version=0.13.0
 revision=3
-archs=noarch
 wrksrc="pymacaroons-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-macholib/template b/srcpkgs/python3-macholib/template
index 5e65f7993dd..7d966f69d09 100644
--- a/srcpkgs/python3-macholib/template
+++ b/srcpkgs/python3-macholib/template
@@ -2,7 +2,6 @@
 pkgname=python3-macholib
 version=1.14
 revision=1
-archs=noarch
 wrksrc="macholib-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-markdown-math/template b/srcpkgs/python3-markdown-math/template
index b49d58dd79c..b54cf2cd2fc 100644
--- a/srcpkgs/python3-markdown-math/template
+++ b/srcpkgs/python3-markdown-math/template
@@ -2,7 +2,6 @@
 pkgname=python3-markdown-math
 version=0.7
 revision=1
-archs=noarch
 wrksrc=python-markdown-math-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-marshmallow/template b/srcpkgs/python3-marshmallow/template
index 2a3b2329389..7eaba150dd1 100644
--- a/srcpkgs/python3-marshmallow/template
+++ b/srcpkgs/python3-marshmallow/template
@@ -2,7 +2,6 @@
 pkgname=python3-marshmallow
 version=3.7.0
 revision=1
-archs=noarch
 wrksrc="marshmallow-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-matplotlib/template b/srcpkgs/python3-matplotlib/template
index 25e008c920a..f828d3e11b3 100644
--- a/srcpkgs/python3-matplotlib/template
+++ b/srcpkgs/python3-matplotlib/template
@@ -32,7 +32,6 @@ post_install() {
 }
 
 python3-matplotlib-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove "${py3_sitelib}/matplotlib/mpl-data"
diff --git a/srcpkgs/python3-matrix-nio/template b/srcpkgs/python3-matrix-nio/template
index fe28e1596f8..a8d00ffa34e 100644
--- a/srcpkgs/python3-matrix-nio/template
+++ b/srcpkgs/python3-matrix-nio/template
@@ -2,7 +2,6 @@
 pkgname=python3-matrix-nio
 version=0.14.1
 revision=1
-archs=noarch
 wrksrc="matrix-nio-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-minidb/template b/srcpkgs/python3-minidb/template
index 140964b7a8a..540527fe2c6 100644
--- a/srcpkgs/python3-minidb/template
+++ b/srcpkgs/python3-minidb/template
@@ -2,7 +2,6 @@
 pkgname=python3-minidb
 version=2.0.2
 revision=3
-archs=noarch
 wrksrc="minidb-${version}"
 build_style=python3-module
 pycompile_module="minidb.py"
diff --git a/srcpkgs/python3-mock/template b/srcpkgs/python3-mock/template
index 5506d4a70c2..134b61f8bad 100644
--- a/srcpkgs/python3-mock/template
+++ b/srcpkgs/python3-mock/template
@@ -2,7 +2,6 @@
 pkgname=python3-mock
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="mock-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-more-itertools/template b/srcpkgs/python3-more-itertools/template
index 113e728c9d8..32d046f3c80 100644
--- a/srcpkgs/python3-more-itertools/template
+++ b/srcpkgs/python3-more-itertools/template
@@ -2,7 +2,6 @@
 pkgname=python3-more-itertools
 version=8.0.2
 revision=1
-archs=noarch
 wrksrc="more-itertools-${version}"
 build_style=python3-module
 pycompile_module="more_itertools"
diff --git a/srcpkgs/python3-mpv/template b/srcpkgs/python3-mpv/template
index 984b7baa224..88d23b1690e 100644
--- a/srcpkgs/python3-mpv/template
+++ b/srcpkgs/python3-mpv/template
@@ -2,7 +2,6 @@
 pkgname=python3-mpv
 version=0.4.5
 revision=1
-archs=noarch
 wrksrc="python-mpv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-msoffcrypto-tool/template b/srcpkgs/python3-msoffcrypto-tool/template
index 6ae64cb2b1d..943bee51b52 100644
--- a/srcpkgs/python3-msoffcrypto-tool/template
+++ b/srcpkgs/python3-msoffcrypto-tool/template
@@ -2,7 +2,6 @@
 pkgname=python3-msoffcrypto-tool
 version=4.10.2
 revision=2
-archs=noarch
 wrksrc="msoffcrypto-tool-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-munkres/template b/srcpkgs/python3-munkres/template
index d0d0a013e80..3a0291a6d93 100644
--- a/srcpkgs/python3-munkres/template
+++ b/srcpkgs/python3-munkres/template
@@ -2,7 +2,6 @@
 pkgname=python3-munkres
 version=1.1.2
 revision=2
-archs=noarch
 wrksrc="munkres-release-${version}"
 build_style=python3-module
 pycompile_module="munkres.py"
diff --git a/srcpkgs/python3-musicpd/template b/srcpkgs/python3-musicpd/template
index 8c6ba2fb451..6808849a0e6 100644
--- a/srcpkgs/python3-musicpd/template
+++ b/srcpkgs/python3-musicpd/template
@@ -2,7 +2,6 @@
 pkgname=python3-musicpd
 version=0.4.4
 revision=2
-archs=noarch
 wrksrc="python-musicpd-${version}"
 build_style=python3-module
 pycompile_module="musicpd.py"
diff --git a/srcpkgs/python3-mypy/template b/srcpkgs/python3-mypy/template
index 5d7f93d5772..32a13b25d45 100644
--- a/srcpkgs/python3-mypy/template
+++ b/srcpkgs/python3-mypy/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy
 version=0.761
 revision=1
-archs=noarch
 wrksrc="mypy-${version}"
 build_style=python3-module
 pycompile_module="mypy"
diff --git a/srcpkgs/python3-mypy_extensions/template b/srcpkgs/python3-mypy_extensions/template
index e2d12256de5..4112db6fb62 100644
--- a/srcpkgs/python3-mypy_extensions/template
+++ b/srcpkgs/python3-mypy_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-mypy_extensions
 version=0.4.3
 revision=2
-archs=noarch
 wrksrc="mypy_extensions-${version}"
 build_style=python3-module
 pycompile_module="mypy_extensions.py"
diff --git a/srcpkgs/python3-nbxmpp/template b/srcpkgs/python3-nbxmpp/template
index b73a21dfe39..f739c098e51 100644
--- a/srcpkgs/python3-nbxmpp/template
+++ b/srcpkgs/python3-nbxmpp/template
@@ -2,7 +2,6 @@
 pkgname=python3-nbxmpp
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -17,7 +16,6 @@ checksum=ca60c9bd1527fbeac305df90c670f11f2fe79f1304dad1efa0315f7484a34d43
 
 python-nbxmpp_package() {
 	build_style=meta
-	archs=noarch
 	# Someone bumped this package to 1.0.0, which doesn't support Python 2
 	short_desc+=" - Python 2 - removed package"
 }
diff --git a/srcpkgs/python3-neovim/template b/srcpkgs/python3-neovim/template
index b5c705bbafd..cb61c800dac 100644
--- a/srcpkgs/python3-neovim/template
+++ b/srcpkgs/python3-neovim/template
@@ -2,7 +2,6 @@
 pkgname=python3-neovim
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pynvim-${version}"
 build_style="python3-module"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-networkx/template b/srcpkgs/python3-networkx/template
index b993e4427c3..8fdaa74adb4 100644
--- a/srcpkgs/python3-networkx/template
+++ b/srcpkgs/python3-networkx/template
@@ -2,7 +2,6 @@
 pkgname=python3-networkx
 version=2.4
 revision=1
-archs=noarch
 wrksrc="networkx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools unzip"
diff --git a/srcpkgs/python3-nose-random/template b/srcpkgs/python3-nose-random/template
index 868d57cd494..e0b97430a9e 100644
--- a/srcpkgs/python3-nose-random/template
+++ b/srcpkgs/python3-nose-random/template
@@ -2,7 +2,6 @@
 pkgname=python3-nose-random
 version=1.0.0
 revision=1
-archs=noarch
 wrksrc="nose-random-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-notify2/template b/srcpkgs/python3-notify2/template
index 8416e98cc32..80cc7a2b5a2 100644
--- a/srcpkgs/python3-notify2/template
+++ b/srcpkgs/python3-notify2/template
@@ -2,7 +2,6 @@
 pkgname=python3-notify2
 version=0.3.1
 revision=1
-archs=noarch
 wrksrc="notify2-${version}"
 build_style=python3-module
 hostmakedepends="python3"
diff --git a/srcpkgs/python3-ntlm-auth/template b/srcpkgs/python3-ntlm-auth/template
index fc9746b14aa..0b02fa3b67a 100644
--- a/srcpkgs/python3-ntlm-auth/template
+++ b/srcpkgs/python3-ntlm-auth/template
@@ -2,7 +2,6 @@
 pkgname=python3-ntlm-auth
 version=1.5.0
 revision=1
-archs=noarch
 wrksrc="ntlm-auth-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-oletools/template b/srcpkgs/python3-oletools/template
index 68a14274ad2..327895d5394 100644
--- a/srcpkgs/python3-oletools/template
+++ b/srcpkgs/python3-oletools/template
@@ -2,7 +2,6 @@
 pkgname=python3-oletools
 version=0.55
 revision=2
-archs=noarch
 wrksrc="oletools-${version}"
 build_style=python3-module
 pycompile_module="oletools"
diff --git a/srcpkgs/python3-opcua/template b/srcpkgs/python3-opcua/template
index 16583e68089..872986836b8 100644
--- a/srcpkgs/python3-opcua/template
+++ b/srcpkgs/python3-opcua/template
@@ -2,7 +2,6 @@
 pkgname=python3-opcua
 version=0.98.11
 revision=1
-archs=noarch
 wrksrc="opcua-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-orderedmultidict/template b/srcpkgs/python3-orderedmultidict/template
index e6df82104cd..74d1a68bf9d 100644
--- a/srcpkgs/python3-orderedmultidict/template
+++ b/srcpkgs/python3-orderedmultidict/template
@@ -2,7 +2,6 @@
 pkgname=python3-orderedmultidict
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc="orderedmultidict-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pafy/template b/srcpkgs/python3-pafy/template
index 8d3fafaf789..d6086f4a59a 100644
--- a/srcpkgs/python3-pafy/template
+++ b/srcpkgs/python3-pafy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pafy
 version=0.5.5
 revision=1
-archs=noarch
 wrksrc="pafy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools youtube-dl"
diff --git a/srcpkgs/python3-pamqp/template b/srcpkgs/python3-pamqp/template
index 8c66eb482de..a3e7ab9c06b 100644
--- a/srcpkgs/python3-pamqp/template
+++ b/srcpkgs/python3-pamqp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pamqp
 version=2.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parsedatetime/template b/srcpkgs/python3-parsedatetime/template
index 71855b7c3ff..a77e82725e6 100644
--- a/srcpkgs/python3-parsedatetime/template
+++ b/srcpkgs/python3-parsedatetime/template
@@ -2,7 +2,6 @@
 pkgname=python3-parsedatetime
 version=2.6
 revision=1
-archs=noarch
 wrksrc="parsedatetime-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-parso/template b/srcpkgs/python3-parso/template
index 5fed4bfb7ee..6c5b0e5f653 100644
--- a/srcpkgs/python3-parso/template
+++ b/srcpkgs/python3-parso/template
@@ -2,7 +2,6 @@
 pkgname=python3-parso
 version=0.8.0
 revision=1
-archs=noarch
 wrksrc="parso-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-path-and-address/template b/srcpkgs/python3-path-and-address/template
index 5c6825009ec..64d7a075e84 100644
--- a/srcpkgs/python3-path-and-address/template
+++ b/srcpkgs/python3-path-and-address/template
@@ -2,7 +2,6 @@
 pkgname=python3-path-and-address
 version=2.0.1
 revision=1
-archs=noarch
 wrksrc="path-and-address-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pcodedmp/template b/srcpkgs/python3-pcodedmp/template
index eb52c809fae..27f4310bf93 100644
--- a/srcpkgs/python3-pcodedmp/template
+++ b/srcpkgs/python3-pcodedmp/template
@@ -2,7 +2,6 @@
 pkgname=python3-pcodedmp
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="pcodedmp-${version}"
 build_style=python3-module
 pycompile_module="pcodedmp"
diff --git a/srcpkgs/python3-pefile/template b/srcpkgs/python3-pefile/template
index 8791f06640b..ed3c2befb4e 100644
--- a/srcpkgs/python3-pefile/template
+++ b/srcpkgs/python3-pefile/template
@@ -2,7 +2,6 @@
 pkgname=python3-pefile
 version=2019.4.18
 revision=2
-archs=noarch
 wrksrc="pefile-${version}"
 build_style=python3-module
 pycompile_module="pefile.py peutils.py ordlookup"
diff --git a/srcpkgs/python3-pem/template b/srcpkgs/python3-pem/template
index ad51601c006..ce1123185ad 100644
--- a/srcpkgs/python3-pem/template
+++ b/srcpkgs/python3-pem/template
@@ -2,7 +2,6 @@
 pkgname=python3-pem
 version=19.3.0
 revision=1
-archs=noarch
 wrksrc="pem-${version}"
 build_style=python3-module
 pycompile_module="pem"
diff --git a/srcpkgs/python3-perf/template b/srcpkgs/python3-perf/template
index dff80be01bc..8b82eaf55cc 100644
--- a/srcpkgs/python3-perf/template
+++ b/srcpkgs/python3-perf/template
@@ -2,7 +2,6 @@
 pkgname=python3-perf
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc="pyperf-${version}"
 build_style=python3-module
 pycompile_module="pyperf"
diff --git a/srcpkgs/python3-pgspecial/template b/srcpkgs/python3-pgspecial/template
index 34b660dfc07..4bfc6073872 100644
--- a/srcpkgs/python3-pgspecial/template
+++ b/srcpkgs/python3-pgspecial/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgspecial
 version=1.11.9
 revision=2
-archs=noarch
 wrksrc="pgspecial-${version}"
 build_style=python3-module
 pycompile_module="pgspecial"
diff --git a/srcpkgs/python3-pgzero/template b/srcpkgs/python3-pgzero/template
index 8b8f477112d..d8ab268d5e7 100644
--- a/srcpkgs/python3-pgzero/template
+++ b/srcpkgs/python3-pgzero/template
@@ -2,7 +2,6 @@
 pkgname=python3-pgzero
 version=1.2
 revision=2
-archs=noarch
 wrksrc="pgzero-${version}"
 build_style=python3-module
 pycompile_module="pgzero pgzrun.py"
diff --git a/srcpkgs/python3-phonenumbers/template b/srcpkgs/python3-phonenumbers/template
index dd96963adfe..83671f70f6c 100644
--- a/srcpkgs/python3-phonenumbers/template
+++ b/srcpkgs/python3-phonenumbers/template
@@ -2,7 +2,6 @@
 pkgname=python3-phonenumbers
 version=8.11.5
 revision=1
-archs=noarch
 wrksrc="phonenumbers-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pipx/template b/srcpkgs/python3-pipx/template
index f0c90c15ba3..df7fb708637 100644
--- a/srcpkgs/python3-pipx/template
+++ b/srcpkgs/python3-pipx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pipx
 version=0.15.5.0
 revision=1
-archs=noarch
 wrksrc="pipx-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pkginfo/template b/srcpkgs/python3-pkginfo/template
index b7cb5ec9165..1cdddd5d541 100644
--- a/srcpkgs/python3-pkginfo/template
+++ b/srcpkgs/python3-pkginfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-pkginfo
 version=1.5.0.1
 revision=2
-archs=noarch
 wrksrc=pkginfo-${version}
 build_style=python3-module
 depends="python3"
diff --git a/srcpkgs/python3-plotly/template b/srcpkgs/python3-plotly/template
index 9cefb0a2702..02bbccfb709 100644
--- a/srcpkgs/python3-plotly/template
+++ b/srcpkgs/python3-plotly/template
@@ -2,7 +2,6 @@
 pkgname=python3-plotly
 version=4.9.0
 revision=1
-archs=noarch
 wrksrc="plotly-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pluggy/template b/srcpkgs/python3-pluggy/template
index d5baa4e7406..b65f092ed16 100644
--- a/srcpkgs/python3-pluggy/template
+++ b/srcpkgs/python3-pluggy/template
@@ -2,7 +2,6 @@
 pkgname=python3-pluggy
 version=0.13.1
 revision=3
-archs=noarch
 wrksrc="pluggy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pmw/template b/srcpkgs/python3-pmw/template
index 289b5ef1d0d..bcc1167153f 100644
--- a/srcpkgs/python3-pmw/template
+++ b/srcpkgs/python3-pmw/template
@@ -2,7 +2,6 @@
 pkgname=python3-pmw
 version=2.0.1
 revision=2
-archs=noarch
 short_desc="Python 3 Tkinter widget toolkit"
 homepage="http://pmw.sourceforge.net/"
 license="MIT"
diff --git a/srcpkgs/python3-precis-i18n/template b/srcpkgs/python3-precis-i18n/template
index be7bb0b0b56..1faac093297 100644
--- a/srcpkgs/python3-precis-i18n/template
+++ b/srcpkgs/python3-precis-i18n/template
@@ -2,7 +2,6 @@
 pkgname=python3-precis-i18n
 version=1.0.1
 revision=2
-archs=noarch
 wrksrc="precis_i18n-${version}"
 build_style=python3-module
 pycompile_module="precis_i18n"
diff --git a/srcpkgs/python3-priority/template b/srcpkgs/python3-priority/template
index 177129a7a42..3be207c7132 100644
--- a/srcpkgs/python3-priority/template
+++ b/srcpkgs/python3-priority/template
@@ -2,7 +2,6 @@
 pkgname=python3-priority
 version=1.3.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-prompt_toolkit/template b/srcpkgs/python3-prompt_toolkit/template
index fc95924342e..9c4ad5e64ca 100644
--- a/srcpkgs/python3-prompt_toolkit/template
+++ b/srcpkgs/python3-prompt_toolkit/template
@@ -2,7 +2,6 @@
 pkgname=python3-prompt_toolkit
 version=3.0.6
 revision=1
-archs=noarch
 wrksrc="prompt_toolkit-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pulsectl/template b/srcpkgs/python3-pulsectl/template
index 5dd314d56ab..69b7ccc34f1 100644
--- a/srcpkgs/python3-pulsectl/template
+++ b/srcpkgs/python3-pulsectl/template
@@ -2,7 +2,6 @@
 pkgname=python3-pulsectl
 version=19.10.4
 revision=1
-archs=noarch
 wrksrc="pulsectl-${version}"
 build_style=python3-module
 pycompile_module="pulsectl"
diff --git a/srcpkgs/python3-pure-protobuf/template b/srcpkgs/python3-pure-protobuf/template
index 2c23b4204f7..47058bbe288 100644
--- a/srcpkgs/python3-pure-protobuf/template
+++ b/srcpkgs/python3-pure-protobuf/template
@@ -2,7 +2,6 @@
 pkgname=python3-pure-protobuf
 version=2.0.0
 revision=2
-archs=noarch
 wrksrc=protobuf-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-py-cpuinfo/template b/srcpkgs/python3-py-cpuinfo/template
index c9b1a5211c1..e240b6a329a 100644
--- a/srcpkgs/python3-py-cpuinfo/template
+++ b/srcpkgs/python3-py-cpuinfo/template
@@ -2,7 +2,6 @@
 pkgname=python3-py-cpuinfo
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc="py-cpuinfo-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-pybind11/template b/srcpkgs/python3-pybind11/template
index adbe4c10dbd..27d9c341d35 100644
--- a/srcpkgs/python3-pybind11/template
+++ b/srcpkgs/python3-pybind11/template
@@ -2,7 +2,6 @@
 pkgname=python3-pybind11
 version=2.5.0
 revision=2
-archs=noarch
 wrksrc="pybind11-${version}"
 build_style=python3-module
 make_install_args="--install-headers=/usr/include/pybind11"
diff --git a/srcpkgs/python3-pycollada/template b/srcpkgs/python3-pycollada/template
index 54dfc922374..4a154752348 100644
--- a/srcpkgs/python3-pycollada/template
+++ b/srcpkgs/python3-pycollada/template
@@ -2,7 +2,6 @@
 pkgname=python3-pycollada
 version=0.7.1
 revision=1
-archs=noarch
 wrksrc="pycollada-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pydbus/template b/srcpkgs/python3-pydbus/template
index 5ecd28aca88..e36bcde8126 100644
--- a/srcpkgs/python3-pydbus/template
+++ b/srcpkgs/python3-pydbus/template
@@ -2,7 +2,6 @@
 pkgname=python3-pydbus
 version=0.6.0
 revision=1
-archs=noarch
 wrksrc="pydbus-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyfavicon/template b/srcpkgs/python3-pyfavicon/template
index 720db698879..85321739192 100644
--- a/srcpkgs/python3-pyfavicon/template
+++ b/srcpkgs/python3-pyfavicon/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyfavicon
 version=0.1.1
 revision=1
-archs=noarch
 wrksrc=pyfavicon-$version
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyfiglet/template b/srcpkgs/python3-pyfiglet/template
index a4a67b12d42..a8d61f0516e 100644
--- a/srcpkgs/python3-pyfiglet/template
+++ b/srcpkgs/python3-pyfiglet/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyfiglet
 version=0.8.0
 revision=2
-archs=noarch
 wrksrc="pyfiglet-${version}"
 build_style="python3-module"
 pycompile_module="pyfiglet"
diff --git a/srcpkgs/python3-pyinfra/template b/srcpkgs/python3-pyinfra/template
index dd18497b965..e80407a2bce 100644
--- a/srcpkgs/python3-pyinfra/template
+++ b/srcpkgs/python3-pyinfra/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyinfra
 version=1.0.4
 revision=2
-archs=noarch
 wrksrc="pyinfra-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykeepass/template b/srcpkgs/python3-pykeepass/template
index 96a53ac1ffa..095827914f3 100644
--- a/srcpkgs/python3-pykeepass/template
+++ b/srcpkgs/python3-pykeepass/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykeepass
 version=3.2.0
 revision=1
-archs=noarch
 wrksrc="pykeepass-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pykwalify/template b/srcpkgs/python3-pykwalify/template
index 76398effff3..5eedaefcd74 100644
--- a/srcpkgs/python3-pykwalify/template
+++ b/srcpkgs/python3-pykwalify/template
@@ -2,7 +2,6 @@
 pkgname=python3-pykwalify
 version=1.7.0
 revision=3
-archs=noarch
 wrksrc="pykwalify-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylast/template b/srcpkgs/python3-pylast/template
index 7884038e532..d2067019ef1 100644
--- a/srcpkgs/python3-pylast/template
+++ b/srcpkgs/python3-pylast/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylast
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc="pylast-${version}"
 build_style=python3-module
 pycompile_module="pylast"
diff --git a/srcpkgs/python3-pylibgen/template b/srcpkgs/python3-pylibgen/template
index 30fb465a637..37f2f92e0b1 100644
--- a/srcpkgs/python3-pylibgen/template
+++ b/srcpkgs/python3-pylibgen/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylibgen
 version=2.0.2
 revision=1
-archs=noarch
 wrksrc="pylibgen-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pylru/template b/srcpkgs/python3-pylru/template
index 0329ab72c30..4fefac7f5cb 100644
--- a/srcpkgs/python3-pylru/template
+++ b/srcpkgs/python3-pylru/template
@@ -2,7 +2,6 @@
 pkgname=python3-pylru
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pypandoc/template b/srcpkgs/python3-pypandoc/template
index 928fde01371..560925d21a9 100644
--- a/srcpkgs/python3-pypandoc/template
+++ b/srcpkgs/python3-pypandoc/template
@@ -3,7 +3,6 @@ pkgname=python3-pypandoc
 version=1.5
 revision=1
 wrksrc=pypandoc-$version
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="pandoc python3"
diff --git a/srcpkgs/python3-pysdl2/template b/srcpkgs/python3-pysdl2/template
index 3efdca5b667..cc444a25125 100644
--- a/srcpkgs/python3-pysdl2/template
+++ b/srcpkgs/python3-pysdl2/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysdl2
 version=0.9.6
 revision=2
-archs=noarch
 wrksrc="py-sdl2-rel_${version//./_}"
 build_style=python3-module
 pycompile_module="sdl2"
diff --git a/srcpkgs/python3-pyside2/template b/srcpkgs/python3-pyside2/template
index ee77908b933..6f619aefd13 100644
--- a/srcpkgs/python3-pyside2/template
+++ b/srcpkgs/python3-pyside2/template
@@ -77,23 +77,19 @@ libpyside2-python3_package() {
 libpyside-python3_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyside-phonon_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
 
 python3-pyenet_package() {
 	short_desc+=" - transitional dummy package"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/python3-pysigset/template b/srcpkgs/python3-pysigset/template
index 50d9162ea70..91ba4976691 100644
--- a/srcpkgs/python3-pysigset/template
+++ b/srcpkgs/python3-pysigset/template
@@ -2,7 +2,6 @@
 pkgname=python3-pysigset
 version=0.3.2
 revision=2
-archs=noarch
 wrksrc="pysigset-${version}"
 build_style=python3-module
 pycompile_module="pysigset.py"
diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index 0c90d33a9e5..3830286e059 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-asyncio
 version=0.10.0
 revision=2
-archs=noarch
 wrksrc="pytest-asyncio-${version}"
 build_style=python3-module
 pycompile_module="pytest_asyncio"
diff --git a/srcpkgs/python3-pytest-cov/template b/srcpkgs/python3-pytest-cov/template
index e94daceb8f4..f685f3bc43a 100644
--- a/srcpkgs/python3-pytest-cov/template
+++ b/srcpkgs/python3-pytest-cov/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-cov
 version=2.10.1
 revision=1
-archs=noarch
 wrksrc="pytest-cov-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-qt/template b/srcpkgs/python3-pytest-qt/template
index a15bc15a4f3..2c82b27b522 100644
--- a/srcpkgs/python3-pytest-qt/template
+++ b/srcpkgs/python3-pytest-qt/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-qt
 version=3.3.0
 revision=1
-archs=noarch
 wrksrc=pytest-qt-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest-xvfb/template b/srcpkgs/python3-pytest-xvfb/template
index 9e3aa7822d4..05372f207c1 100644
--- a/srcpkgs/python3-pytest-xvfb/template
+++ b/srcpkgs/python3-pytest-xvfb/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest-xvfb
 version=2.0.0
 revision=1
-archs=noarch
 wrksrc=pytest-xvfb-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytest/template b/srcpkgs/python3-pytest/template
index 3df0405f1e2..69f9b1b53f9 100644
--- a/srcpkgs/python3-pytest/template
+++ b/srcpkgs/python3-pytest/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytest
 version=5.3.5
 revision=2
-archs=noarch
 wrksrc="pytest-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pythondialog/template b/srcpkgs/python3-pythondialog/template
index b55866f51e6..11ac0d5a105 100644
--- a/srcpkgs/python3-pythondialog/template
+++ b/srcpkgs/python3-pythondialog/template
@@ -2,7 +2,6 @@
 pkgname=python3-pythondialog
 version=3.5.1
 revision=1
-archs=noarch
 wrksrc="pythondialog-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pytools/template b/srcpkgs/python3-pytools/template
index 446df179c07..38e39a68179 100644
--- a/srcpkgs/python3-pytools/template
+++ b/srcpkgs/python3-pytools/template
@@ -2,7 +2,6 @@
 pkgname=python3-pytools
 version=2020.4
 revision=1
-archs=noarch
 wrksrc=${pkgname#*-}-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pywinrm/template b/srcpkgs/python3-pywinrm/template
index 7a57b8efcb3..961a9ebacc4 100644
--- a/srcpkgs/python3-pywinrm/template
+++ b/srcpkgs/python3-pywinrm/template
@@ -2,7 +2,6 @@
 pkgname=python3-pywinrm
 version=0.4.1
 revision=1
-archs=noarch
 wrksrc="pywinrm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-pyx/template b/srcpkgs/python3-pyx/template
index f8de127e420..24bd6b68960 100644
--- a/srcpkgs/python3-pyx/template
+++ b/srcpkgs/python3-pyx/template
@@ -2,7 +2,6 @@
 pkgname=python3-pyx
 version=0.15
 revision=1
-archs=noarch
 wrksrc="PyX-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-quart/template b/srcpkgs/python3-quart/template
index 8e0e7d59be7..a465bbf4abf 100644
--- a/srcpkgs/python3-quart/template
+++ b/srcpkgs/python3-quart/template
@@ -2,7 +2,6 @@
 pkgname=python3-quart
 version=0.13.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-readlike/template b/srcpkgs/python3-readlike/template
index 43159962442..a3c5353492f 100644
--- a/srcpkgs/python3-readlike/template
+++ b/srcpkgs/python3-readlike/template
@@ -2,7 +2,6 @@
 pkgname=python3-readlike
 version=0.1.3
 revision=2
-archs=noarch
 wrksrc=readlike-${version}
 build_style=python3-module
 pycompile_module="readlike.py"
diff --git a/srcpkgs/python3-repoze.sphinx.autointerface/template b/srcpkgs/python3-repoze.sphinx.autointerface/template
index 684c7f90d05..7fbafc4e955 100644
--- a/srcpkgs/python3-repoze.sphinx.autointerface/template
+++ b/srcpkgs/python3-repoze.sphinx.autointerface/template
@@ -2,7 +2,6 @@
 pkgname=python3-repoze.sphinx.autointerface
 version=0.8
 revision=3
-archs=noarch
 wrksrc="repoze.sphinx.autointerface-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-file/template b/srcpkgs/python3-requests-file/template
index 1f459fa55ab..e8197152c4a 100644
--- a/srcpkgs/python3-requests-file/template
+++ b/srcpkgs/python3-requests-file/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-file
 version=1.4.3
 revision=1
-archs=noarch
 wrksrc="requests-file-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-ntlm/template b/srcpkgs/python3-requests-ntlm/template
index 7ca189d6abf..8bdf509f291 100644
--- a/srcpkgs/python3-requests-ntlm/template
+++ b/srcpkgs/python3-requests-ntlm/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-ntlm
 version=1.1.0
 revision=1
-archs=noarch
 wrksrc="requests-ntlm-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-requests-unixsocket/template b/srcpkgs/python3-requests-unixsocket/template
index fd389ec2d13..5731168d162 100644
--- a/srcpkgs/python3-requests-unixsocket/template
+++ b/srcpkgs/python3-requests-unixsocket/template
@@ -2,7 +2,6 @@
 pkgname=python3-requests-unixsocket
 version=0.2.0
 revision=2
-archs=noarch
 wrksrc="requests-unixsocket-${version}"
 build_style=python3-module
 pycompile_module="requests_unixsocket"
diff --git a/srcpkgs/python3-rss2email/template b/srcpkgs/python3-rss2email/template
index 69e67d93deb..37634807bee 100644
--- a/srcpkgs/python3-rss2email/template
+++ b/srcpkgs/python3-rss2email/template
@@ -2,7 +2,6 @@
 pkgname=python3-rss2email
 version=3.11
 revision=2
-archs=noarch
 wrksrc="rss2email-${version}"
 build_style=python3-module
 pycompile_module="rss2email"
diff --git a/srcpkgs/python3-rtree/template b/srcpkgs/python3-rtree/template
index 652b840591e..2bb1c135a02 100644
--- a/srcpkgs/python3-rtree/template
+++ b/srcpkgs/python3-rtree/template
@@ -2,7 +2,6 @@
 pkgname=python3-rtree
 version=0.9.4
 revision=1
-archs=noarch
 wrksrc="rtree-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools libspatialindex-devel"
diff --git a/srcpkgs/python3-s-tui/template b/srcpkgs/python3-s-tui/template
index 5864e90c91a..a70b25ef150 100644
--- a/srcpkgs/python3-s-tui/template
+++ b/srcpkgs/python3-s-tui/template
@@ -2,7 +2,6 @@
 pkgname=python3-s-tui
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc="s-tui-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-saml2/template b/srcpkgs/python3-saml2/template
index a8d2798b61c..740d5301c49 100644
--- a/srcpkgs/python3-saml2/template
+++ b/srcpkgs/python3-saml2/template
@@ -2,7 +2,6 @@
 pkgname=python3-saml2
 version=5.0.0
 revision=1
-archs=noarch
 wrksrc="pysaml2-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-scruffy/template b/srcpkgs/python3-scruffy/template
index 62a21a74eca..b10f0b25cad 100644
--- a/srcpkgs/python3-scruffy/template
+++ b/srcpkgs/python3-scruffy/template
@@ -2,7 +2,6 @@
 pkgname=python3-scruffy
 version=0.3.8.1
 revision=2
-archs=noarch
 wrksrc="scruffy-${version}"
 build_style=python3-module
 pycompile_module="scruffy"
diff --git a/srcpkgs/python3-semanticversion/template b/srcpkgs/python3-semanticversion/template
index 766eeb160f8..2a0ad41ef16 100644
--- a/srcpkgs/python3-semanticversion/template
+++ b/srcpkgs/python3-semanticversion/template
@@ -2,7 +2,6 @@
 pkgname=python3-semanticversion
 version=2.8.5
 revision=1
-archs=noarch
 wrksrc="semantic_version-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sentry/template b/srcpkgs/python3-sentry/template
index c340cbb7820..5f0bdb07a64 100644
--- a/srcpkgs/python3-sentry/template
+++ b/srcpkgs/python3-sentry/template
@@ -2,7 +2,6 @@
 pkgname=python3-sentry
 version=0.15.1
 revision=1
-archs=noarch
 wrksrc="sentry-python-${version}"
 build_style=python3-module
 hostmakedepends=python3-setuptools
diff --git a/srcpkgs/python3-serpent/template b/srcpkgs/python3-serpent/template
index 538bfcd1786..8776d167bfc 100644
--- a/srcpkgs/python3-serpent/template
+++ b/srcpkgs/python3-serpent/template
@@ -2,7 +2,6 @@
 pkgname=python3-serpent
 version=1.30.2
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-setuptools/template b/srcpkgs/python3-setuptools/template
index 9bf5b316e66..15654c0c639 100644
--- a/srcpkgs/python3-setuptools/template
+++ b/srcpkgs/python3-setuptools/template
@@ -2,7 +2,6 @@
 pkgname=python3-setuptools
 version=49.2.1
 revision=1
-archs=noarch
 wrksrc="setuptools-${version}"
 build_style=python3-module
 hostmakedepends="python3-devel"
diff --git a/srcpkgs/python3-shodan/template b/srcpkgs/python3-shodan/template
index 390f9d79322..b5324dac9ac 100644
--- a/srcpkgs/python3-shodan/template
+++ b/srcpkgs/python3-shodan/template
@@ -2,7 +2,6 @@
 pkgname=python3-shodan
 version=1.23.0
 revision=1
-archs=noarch
 wrksrc="shodan-python-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-signedjson/template b/srcpkgs/python3-signedjson/template
index 5002ade8f79..744a1f36a5b 100644
--- a/srcpkgs/python3-signedjson/template
+++ b/srcpkgs/python3-signedjson/template
@@ -2,7 +2,6 @@
 pkgname=python3-signedjson
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-signedjson-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-slugify/template b/srcpkgs/python3-slugify/template
index 012bb98f063..7a6a44e664d 100644
--- a/srcpkgs/python3-slugify/template
+++ b/srcpkgs/python3-slugify/template
@@ -4,7 +4,6 @@ pkgname=python3-slugify
 # doesn't work with newer versions
 version=1.2.6
 revision=2
-archs=noarch
 wrksrc="python-slugify-${version}"
 build_style=python3-module
 pycompile_module="slugify"
diff --git a/srcpkgs/python3-sortedcontainers/template b/srcpkgs/python3-sortedcontainers/template
index 41d87d4ebd0..df9e9d97a2c 100644
--- a/srcpkgs/python3-sortedcontainers/template
+++ b/srcpkgs/python3-sortedcontainers/template
@@ -2,7 +2,6 @@
 pkgname=python3-sortedcontainers
 version=2.1.0
 revision=2
-archs=noarch
 wrksrc="sortedcontainers-${version}"
 build_style=python3-module
 pycompile_module="sortedcontainers"
diff --git a/srcpkgs/python3-spake2/template b/srcpkgs/python3-spake2/template
index dc0cdced747..7f34a47eb26 100644
--- a/srcpkgs/python3-spake2/template
+++ b/srcpkgs/python3-spake2/template
@@ -2,7 +2,6 @@
 pkgname=python3-spake2
 version=0.8
 revision=2
-archs=noarch
 wrksrc="python-spake2-${version}"
 build_style=python3-module
 pycompile_module="spake2"
diff --git a/srcpkgs/python3-sphinx_rtd_theme/template b/srcpkgs/python3-sphinx_rtd_theme/template
index 8447a451a74..93e6cb4a4dd 100644
--- a/srcpkgs/python3-sphinx_rtd_theme/template
+++ b/srcpkgs/python3-sphinx_rtd_theme/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinx_rtd_theme
 version=0.5.0
 revision=1
-archs=noarch
 wrksrc="sphinx_rtd_theme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-applehelp/template b/srcpkgs/python3-sphinxcontrib-applehelp/template
index 90bfc78adf8..30948b589f8 100644
--- a/srcpkgs/python3-sphinxcontrib-applehelp/template
+++ b/srcpkgs/python3-sphinxcontrib-applehelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-applehelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-applehelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-devhelp/template b/srcpkgs/python3-sphinxcontrib-devhelp/template
index 0244d826d17..f670cfdf187 100644
--- a/srcpkgs/python3-sphinxcontrib-devhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-devhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-devhelp
 version=1.0.2
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-devhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-htmlhelp/template b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
index 33dac6dbfad..582aefdf76e 100644
--- a/srcpkgs/python3-sphinxcontrib-htmlhelp/template
+++ b/srcpkgs/python3-sphinxcontrib-htmlhelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-htmlhelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-htmlhelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-jsmath/template b/srcpkgs/python3-sphinxcontrib-jsmath/template
index 266ff00b88b..ce87ffcd71b 100644
--- a/srcpkgs/python3-sphinxcontrib-jsmath/template
+++ b/srcpkgs/python3-sphinxcontrib-jsmath/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-jsmath
 version=1.0.1
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-jsmath-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-qthelp/template b/srcpkgs/python3-sphinxcontrib-qthelp/template
index 2335cb13cb8..b324a4bce8b 100644
--- a/srcpkgs/python3-sphinxcontrib-qthelp/template
+++ b/srcpkgs/python3-sphinxcontrib-qthelp/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-qthelp
 version=1.0.3
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-qthelp-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib-serializinghtml/template b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
index 82ddabe65ed..6b2d69ee7ca 100644
--- a/srcpkgs/python3-sphinxcontrib-serializinghtml/template
+++ b/srcpkgs/python3-sphinxcontrib-serializinghtml/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib-serializinghtml
 version=1.1.4
 revision=1
-archs=noarch
 wrksrc=sphinxcontrib-serializinghtml-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sphinxcontrib/template b/srcpkgs/python3-sphinxcontrib/template
index d52fd02ab76..ef3686233a6 100644
--- a/srcpkgs/python3-sphinxcontrib/template
+++ b/srcpkgs/python3-sphinxcontrib/template
@@ -2,7 +2,6 @@
 pkgname=python3-sphinxcontrib
 version=1.0
 revision=4
-archs=noarch
 create_wrksrc=yes
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools"
diff --git a/srcpkgs/python3-subunit/template b/srcpkgs/python3-subunit/template
index a617b3db63a..7609e9fea85 100644
--- a/srcpkgs/python3-subunit/template
+++ b/srcpkgs/python3-subunit/template
@@ -2,7 +2,6 @@
 pkgname=python3-subunit
 version=1.4.0
 revision=1
-archs=noarch
 wrksrc=subunit-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-svg.path/template b/srcpkgs/python3-svg.path/template
index 473fc38dcc4..f85d0a22e0c 100644
--- a/srcpkgs/python3-svg.path/template
+++ b/srcpkgs/python3-svg.path/template
@@ -2,7 +2,6 @@
 pkgname=python3-svg.path
 version=4.0.2
 revision=1
-archs=noarch
 wrksrc="svg.path-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-sympy/template b/srcpkgs/python3-sympy/template
index 77f7747a999..3546c85c48c 100644
--- a/srcpkgs/python3-sympy/template
+++ b/srcpkgs/python3-sympy/template
@@ -2,7 +2,6 @@
 pkgname=python3-sympy
 version=1.6.1
 revision=1
-archs=noarch
 wrksrc="sympy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tabulate/template b/srcpkgs/python3-tabulate/template
index 16956529913..1fba151f70d 100644
--- a/srcpkgs/python3-tabulate/template
+++ b/srcpkgs/python3-tabulate/template
@@ -2,7 +2,6 @@
 pkgname=python3-tabulate
 version=0.8.6
 revision=1
-archs=noarch
 wrksrc="tabulate-${version}"
 build_style=python3-module
 pycompile_module="tabulate.py"
diff --git a/srcpkgs/python3-terminaltables/template b/srcpkgs/python3-terminaltables/template
index 4f781eab76d..151d95641b1 100644
--- a/srcpkgs/python3-terminaltables/template
+++ b/srcpkgs/python3-terminaltables/template
@@ -2,7 +2,6 @@
 pkgname=python3-terminaltables
 version=3.1.0
 revision=2
-archs=noarch
 wrksrc="terminaltables-${version}"
 build_style=python3-module
 pycompile_module="terminaltables"
diff --git a/srcpkgs/python3-text-unidecode/template b/srcpkgs/python3-text-unidecode/template
index b3b5aa95575..6219e336eb5 100644
--- a/srcpkgs/python3-text-unidecode/template
+++ b/srcpkgs/python3-text-unidecode/template
@@ -2,7 +2,6 @@
 pkgname=python3-text-unidecode
 version=1.2
 revision=2
-archs=noarch
 wrksrc="text-unidecode-${version}"
 build_style=python3-module
 pycompile_module="text_unidecode"
diff --git a/srcpkgs/python3-tinycss/template b/srcpkgs/python3-tinycss/template
index 3b4717c234e..7ca826988cd 100644
--- a/srcpkgs/python3-tinycss/template
+++ b/srcpkgs/python3-tinycss/template
@@ -2,7 +2,6 @@
 pkgname=python3-tinycss
 version=0.4
 revision=2
-archs=noarch
 wrksrc=tinycss-${version}
 build_style=python3-module
 pycompile_module="tinycss"
diff --git a/srcpkgs/python3-tkinter/template b/srcpkgs/python3-tkinter/template
index f77446c5e61..ff6bb2699e5 100644
--- a/srcpkgs/python3-tkinter/template
+++ b/srcpkgs/python3-tkinter/template
@@ -77,7 +77,6 @@ do_install() {
 }
 
 idle-python3_package() {
-	archs=noarch
 	short_desc="${_desc} - IDE for Python3 using Tkinter"
 	pycompile_dirs="usr/lib/python${version%.*}/idlelib"
 	depends="${sourcepkg}-${version}_${revision}"
diff --git a/srcpkgs/python3-tldextract/template b/srcpkgs/python3-tldextract/template
index 2a9392a5dcc..57ea2de0c41 100644
--- a/srcpkgs/python3-tldextract/template
+++ b/srcpkgs/python3-tldextract/template
@@ -2,7 +2,6 @@
 pkgname=python3-tldextract
 version=2.2.2
 revision=1
-archs=noarch
 wrksrc="tldextract-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template
index 92a11a42629..c352f646664 100644
--- a/srcpkgs/python3-traitlets/template
+++ b/srcpkgs/python3-traitlets/template
@@ -2,7 +2,6 @@
 pkgname=python3-traitlets
 version=4.3.3
 revision=3
-archs=noarch
 wrksrc="traitlets-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-transifex-client/template b/srcpkgs/python3-transifex-client/template
index 5ea767b5a7d..a307014e474 100644
--- a/srcpkgs/python3-transifex-client/template
+++ b/srcpkgs/python3-transifex-client/template
@@ -2,7 +2,6 @@
 pkgname=python3-transifex-client
 version=0.13.6
 revision=2
-archs=noarch
 wrksrc="transifex-client-${version}"
 build_style=python3-module
 pycompile_module="txclib"
diff --git a/srcpkgs/python3-treq/template b/srcpkgs/python3-treq/template
index 075f90e49ef..c87126db99f 100644
--- a/srcpkgs/python3-treq/template
+++ b/srcpkgs/python3-treq/template
@@ -2,7 +2,6 @@
 pkgname=python3-treq
 version=20.3.0
 revision=1
-archs=noarch
 wrksrc="treq-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-trimesh/template b/srcpkgs/python3-trimesh/template
index d1397443726..cc78c69a205 100644
--- a/srcpkgs/python3-trimesh/template
+++ b/srcpkgs/python3-trimesh/template
@@ -2,7 +2,6 @@
 pkgname=python3-trimesh
 version=3.8.1
 revision=1
-archs=noarch
 wrksrc="trimesh-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txacme/template b/srcpkgs/python3-txacme/template
index bd1c82d0611..917fdb2e038 100644
--- a/srcpkgs/python3-txacme/template
+++ b/srcpkgs/python3-txacme/template
@@ -2,7 +2,6 @@
 pkgname=python3-txacme
 version=0.9.3
 revision=1
-archs=noarch
 wrksrc="txacme-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-txaio/template b/srcpkgs/python3-txaio/template
index d9ee273d235..f686ef8848c 100644
--- a/srcpkgs/python3-txaio/template
+++ b/srcpkgs/python3-txaio/template
@@ -2,7 +2,6 @@
 pkgname=python3-txaio
 version=20.4.1
 revision=1
-archs=noarch
 wrksrc="txaio-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-txtorcon/template b/srcpkgs/python3-txtorcon/template
index d2ad88b06d1..8ad2b861ca9 100644
--- a/srcpkgs/python3-txtorcon/template
+++ b/srcpkgs/python3-txtorcon/template
@@ -2,7 +2,6 @@
 pkgname=python3-txtorcon
 version=20.0.0
 revision=1
-archs=noarch
 wrksrc="txtorcon-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/python3-typing_extensions/template b/srcpkgs/python3-typing_extensions/template
index 57405689d4e..d9beffc7950 100644
--- a/srcpkgs/python3-typing_extensions/template
+++ b/srcpkgs/python3-typing_extensions/template
@@ -2,7 +2,6 @@
 pkgname=python3-typing_extensions
 version=3.7.4.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#python3-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-tzlocal/template b/srcpkgs/python3-tzlocal/template
index 7ea15464075..c78db3d0b47 100644
--- a/srcpkgs/python3-tzlocal/template
+++ b/srcpkgs/python3-tzlocal/template
@@ -2,7 +2,6 @@
 pkgname=python3-tzlocal
 version=2.1
 revision=2
-archs=noarch
 wrksrc="tzlocal-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-unpaddedbase64/template b/srcpkgs/python3-unpaddedbase64/template
index 06a47db3b64..2cb5d9b8c2b 100644
--- a/srcpkgs/python3-unpaddedbase64/template
+++ b/srcpkgs/python3-unpaddedbase64/template
@@ -2,7 +2,6 @@
 pkgname=python3-unpaddedbase64
 version=1.1.0
 revision=2
-archs=noarch
 wrksrc="python-unpaddedbase64-${version}"
 build_style=python3-module
 pycompile_module="unpaddedbase64.py"
diff --git a/srcpkgs/python3-urlgrabber/template b/srcpkgs/python3-urlgrabber/template
index eef67c8e13c..6d19cd95f28 100644
--- a/srcpkgs/python3-urlgrabber/template
+++ b/srcpkgs/python3-urlgrabber/template
@@ -2,7 +2,6 @@
 pkgname=python3-urlgrabber
 version=4.0.0
 revision=2
-archs=noarch
 wrksrc="urlgrabber-${version}"
 build_style=python3-module
 pycompile_module="urlgrabber"
diff --git a/srcpkgs/python3-usb/template b/srcpkgs/python3-usb/template
index 1e27b46961b..fe8676e84bf 100644
--- a/srcpkgs/python3-usb/template
+++ b/srcpkgs/python3-usb/template
@@ -2,7 +2,6 @@
 pkgname=python3-usb
 version=1.0.2
 revision=3
-archs=noarch
 wrksrc="pyusb-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-userpath/template b/srcpkgs/python3-userpath/template
index 4d53e7b5dea..5d5b22e7774 100644
--- a/srcpkgs/python3-userpath/template
+++ b/srcpkgs/python3-userpath/template
@@ -2,7 +2,6 @@
 pkgname=python3-userpath
 version=1.4.1
 revision=1
-archs=noarch
 wrksrc="userpath-${version}"
 build_style=python3-module
 pycompile_module="userpath"
diff --git a/srcpkgs/python3-validators/template b/srcpkgs/python3-validators/template
index 2d790254c96..cfaf8b9e8e9 100644
--- a/srcpkgs/python3-validators/template
+++ b/srcpkgs/python3-validators/template
@@ -2,7 +2,6 @@
 pkgname=python3-validators
 version=0.14.2
 revision=1
-archs=noarch
 wrksrc="validators-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virtualenv-clone/template b/srcpkgs/python3-virtualenv-clone/template
index 508e855b9cd..92e27a1cd3a 100644
--- a/srcpkgs/python3-virtualenv-clone/template
+++ b/srcpkgs/python3-virtualenv-clone/template
@@ -2,7 +2,6 @@
 pkgname=python3-virtualenv-clone
 version=0.5.4
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virtualenv/template b/srcpkgs/python3-virtualenv/template
index 7f9f71fccc5..d0b81cc453a 100644
--- a/srcpkgs/python3-virtualenv/template
+++ b/srcpkgs/python3-virtualenv/template
@@ -2,7 +2,6 @@
 pkgname=python3-virtualenv
 version=20.0.20
 revision=2
-archs=noarch
 wrksrc="virtualenv-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-virustotal-api/template b/srcpkgs/python3-virustotal-api/template
index fc362c03b39..016265c95e4 100644
--- a/srcpkgs/python3-virustotal-api/template
+++ b/srcpkgs/python3-virustotal-api/template
@@ -2,7 +2,6 @@
 pkgname=python3-virustotal-api
 version=1.1.11
 revision=2
-archs=noarch
 wrksrc="virustotal-api-${version}"
 build_style=python3-module
 pycompile_module="virus_total_apis"
diff --git a/srcpkgs/python3-xapp/template b/srcpkgs/python3-xapp/template
index 6e746704ad8..4a914d36443 100644
--- a/srcpkgs/python3-xapp/template
+++ b/srcpkgs/python3-xapp/template
@@ -2,7 +2,6 @@
 pkgname=python3-xapp
 version=2.0.1
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="xapp"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xdg-variables/template b/srcpkgs/python3-xdg-variables/template
index 589302d33bc..836f8b61878 100644
--- a/srcpkgs/python3-xdg-variables/template
+++ b/srcpkgs/python3-xdg-variables/template
@@ -2,7 +2,6 @@
 pkgname=python3-xdg-variables
 version=4.0.1
 revision=1
-archs=noarch
 wrksrc="xdg-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xlrd/template b/srcpkgs/python3-xlrd/template
index 9f7b29580e4..4a8b4fb520e 100644
--- a/srcpkgs/python3-xlrd/template
+++ b/srcpkgs/python3-xlrd/template
@@ -2,7 +2,6 @@
 pkgname=python3-xlrd
 version=1.2.0
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-xmlschema/template b/srcpkgs/python3-xmlschema/template
index 939c7ef6fca..d4311a18d9d 100644
--- a/srcpkgs/python3-xmlschema/template
+++ b/srcpkgs/python3-xmlschema/template
@@ -2,7 +2,6 @@
 pkgname=python3-xmlschema
 version=1.2.3
 revision=1
-archs=noarch
 wrksrc=xmlschema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-elementpath"
diff --git a/srcpkgs/python3-yapf/template b/srcpkgs/python3-yapf/template
index 33111cd732d..482acbbe0f5 100644
--- a/srcpkgs/python3-yapf/template
+++ b/srcpkgs/python3-yapf/template
@@ -2,7 +2,6 @@
 pkgname=python3-yapf
 version=0.29.0
 revision=1
-archs=noarch
 wrksrc="yapf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-youtube-search/template b/srcpkgs/python3-youtube-search/template
index 0c6ec393a37..96a1ca19dce 100644
--- a/srcpkgs/python3-youtube-search/template
+++ b/srcpkgs/python3-youtube-search/template
@@ -3,7 +3,6 @@ pkgname=python3-youtube-search
 version=1.1.0
 revision=1
 _gitver=86af3e73bd340f37be56f2be6a5ff706b16e454e
-archs=noarch
 create_wrksrc=yes
 build_wrksrc="youtube-search-${version}"
 build_style=python3-module
diff --git a/srcpkgs/python3-yoyo-migrations/template b/srcpkgs/python3-yoyo-migrations/template
index 9e481e153f4..244bcfa73d0 100644
--- a/srcpkgs/python3-yoyo-migrations/template
+++ b/srcpkgs/python3-yoyo-migrations/template
@@ -2,7 +2,6 @@
 pkgname=python3-yoyo-migrations
 version=7.2.0
 revision=1
-archs=noarch
 wrksrc=yoyo-migrations-$version
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zeroconf/template b/srcpkgs/python3-zeroconf/template
index b480d60b684..6c1f33e1444 100644
--- a/srcpkgs/python3-zeroconf/template
+++ b/srcpkgs/python3-zeroconf/template
@@ -2,7 +2,6 @@
 pkgname=python3-zeroconf
 version=0.28.1
 revision=1
-archs=noarch
 wrksrc="python-zeroconf-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.cachedescriptors/template b/srcpkgs/python3-zope.cachedescriptors/template
index 1f1fae5b27b..c0a56526d58 100644
--- a/srcpkgs/python3-zope.cachedescriptors/template
+++ b/srcpkgs/python3-zope.cachedescriptors/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.cachedescriptors
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.cachedescriptors-${version}"
 build_style=python3-module
 pycompile_module="zope/cachedescriptors"
diff --git a/srcpkgs/python3-zope.component/template b/srcpkgs/python3-zope.component/template
index 5dddba61bb3..eee2bb67f5c 100644
--- a/srcpkgs/python3-zope.component/template
+++ b/srcpkgs/python3-zope.component/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.component
 version=4.6.1
 revision=1
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.configuration/template b/srcpkgs/python3-zope.configuration/template
index a18339a5d7a..859ea5a13e3 100644
--- a/srcpkgs/python3-zope.configuration/template
+++ b/srcpkgs/python3-zope.configuration/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.configuration
 version=4.4.0
 revision=1
-archs=noarch
 wrksrc="zope.configuration-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
diff --git a/srcpkgs/python3-zope.copy/template b/srcpkgs/python3-zope.copy/template
index 7007acb96b4..2872fc4446a 100644
--- a/srcpkgs/python3-zope.copy/template
+++ b/srcpkgs/python3-zope.copy/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.copy
 version=4.2
 revision=2
-archs=noarch
 wrksrc="zope.copy-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deferredimport/template b/srcpkgs/python3-zope.deferredimport/template
index 7e8ff8fca5c..d2baacf3065 100644
--- a/srcpkgs/python3-zope.deferredimport/template
+++ b/srcpkgs/python3-zope.deferredimport/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deferredimport
 version=4.3.1
 revision=2
-archs=noarch
 wrksrc="zope.deferredimport-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.deprecation/template b/srcpkgs/python3-zope.deprecation/template
index 854c67dfa8a..5939729f835 100644
--- a/srcpkgs/python3-zope.deprecation/template
+++ b/srcpkgs/python3-zope.deprecation/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.deprecation
 version=4.4.0
 revision=3
-archs=noarch
 wrksrc="zope.deprecation-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.event/template b/srcpkgs/python3-zope.event/template
index 0ca1af6cfc4..222189cc613 100644
--- a/srcpkgs/python3-zope.event/template
+++ b/srcpkgs/python3-zope.event/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.event
 version=4.4
 revision=3
-archs=noarch
 wrksrc="${pkgname#*-}-${version}"
 build_style=python3-module
 pycompile_module="zope/event"
diff --git a/srcpkgs/python3-zope.exceptions/template b/srcpkgs/python3-zope.exceptions/template
index e918cea8c7e..8719bd54a11 100644
--- a/srcpkgs/python3-zope.exceptions/template
+++ b/srcpkgs/python3-zope.exceptions/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.exceptions
 version=4.3
 revision=2
-archs=noarch
 wrksrc="zope.exceptions-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.hookable/template b/srcpkgs/python3-zope.hookable/template
index 774cf286c8e..e721baf6117 100644
--- a/srcpkgs/python3-zope.hookable/template
+++ b/srcpkgs/python3-zope.hookable/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.hookable
 version=5.0.1
 revision=1
-archs=noarch
 wrksrc="zope.hookable-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.location/template b/srcpkgs/python3-zope.location/template
index c2d6435dcf4..425cc0c04a1 100644
--- a/srcpkgs/python3-zope.location/template
+++ b/srcpkgs/python3-zope.location/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.location
 version=4.2
 revision=3
-archs=noarch
 wrksrc="zope.location-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-repoze.sphinx.autointerface
diff --git a/srcpkgs/python3-zope.schema/template b/srcpkgs/python3-zope.schema/template
index 7c45510564d..82d51060bc5 100644
--- a/srcpkgs/python3-zope.schema/template
+++ b/srcpkgs/python3-zope.schema/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.schema
 version=6.0.0
 revision=1
-archs=noarch
 wrksrc=zope.schema-${version}
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testing/template b/srcpkgs/python3-zope.testing/template
index 9fd4dd19dcd..7c547615b68 100644
--- a/srcpkgs/python3-zope.testing/template
+++ b/srcpkgs/python3-zope.testing/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testing
 version=4.7
 revision=2
-archs=noarch
 wrksrc="zope.testing-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/python3-zope.testrunner/template b/srcpkgs/python3-zope.testrunner/template
index 85413372686..80cf55a1715 100644
--- a/srcpkgs/python3-zope.testrunner/template
+++ b/srcpkgs/python3-zope.testrunner/template
@@ -2,7 +2,6 @@
 pkgname=python3-zope.testrunner
 version=5.1
 revision=2
-archs=noarch
 wrksrc="zope.testrunner-${version}"
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx python3-sphinxcontrib"
diff --git a/srcpkgs/pywal/template b/srcpkgs/pywal/template
index 98c4e1581e4..613217153a3 100644
--- a/srcpkgs/pywal/template
+++ b/srcpkgs/pywal/template
@@ -2,7 +2,6 @@
 pkgname=pywal
 version=3.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="pywal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/qalculate/template b/srcpkgs/qalculate/template
index c5d041892f4..dbd193635bb 100644
--- a/srcpkgs/qalculate/template
+++ b/srcpkgs/qalculate/template
@@ -16,7 +16,6 @@ distfiles="https://github.com/Qalculate/libqalculate/releases/download/v${versio
 checksum=28c46dc8dd975f253627d80c55a6feab7c44d965dce3ceffefc3cafc9a97c457
 
 libqalculate-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/qalculate
diff --git a/srcpkgs/qdirstat/template b/srcpkgs/qdirstat/template
index 40be76ac8ef..4490a4e1272 100644
--- a/srcpkgs/qdirstat/template
+++ b/srcpkgs/qdirstat/template
@@ -23,7 +23,6 @@ post_install() {
 qdirstat-cache-writer_package() {
 	short_desc+=" - headless scanner"
 	depends="perl"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/qdirstat-cache-writer
 		vman man/qdirstat-cache-writer.1
diff --git a/srcpkgs/qmc2-flyers/template b/srcpkgs/qmc2-flyers/template
index 91f26dd0a18..bd62c4093a5 100644
--- a/srcpkgs/qmc2-flyers/template
+++ b/srcpkgs/qmc2-flyers/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="599660060753ce7118d9abc4b77f4644985d1341e1f3ca7c1f34d1a7a2e8030d"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2-snapshots/template b/srcpkgs/qmc2-snapshots/template
index fee8f052012..df2fcbc12c8 100644
--- a/srcpkgs/qmc2-snapshots/template
+++ b/srcpkgs/qmc2-snapshots/template
@@ -9,7 +9,6 @@ license="GPL-2"
 homepage="http://qmc2.arcadehits.net/wordpress/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum="97684b11d4811ca1c3c24d31c359b7ac6ac90436e3fbce9e4966670697516d4f"
-archs=noarch
 
 do_install() {
 	mkdir -p ${DESTDIR}/usr/share/qmc2
diff --git a/srcpkgs/qmc2/template b/srcpkgs/qmc2/template
index f362582dff5..1f72e9dd200 100644
--- a/srcpkgs/qmc2/template
+++ b/srcpkgs/qmc2/template
@@ -81,7 +81,6 @@ do_install() {
 		> ${DESTDIR}/usr/share/applications/qchdman.desktop
 }
 qmc2-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		local _ddir
diff --git a/srcpkgs/qmk/template b/srcpkgs/qmk/template
index bd991d71e04..f999b249f94 100644
--- a/srcpkgs/qmk/template
+++ b/srcpkgs/qmk/template
@@ -2,7 +2,6 @@
 pkgname=qmk
 version=0.0.35
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-appdirs
diff --git a/srcpkgs/qomui/template b/srcpkgs/qomui/template
index 8063350ba06..4a3c282d40f 100644
--- a/srcpkgs/qomui/template
+++ b/srcpkgs/qomui/template
@@ -2,7 +2,6 @@
 pkgname=qomui
 version=0.8.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="qomui"
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/qrintf/template b/srcpkgs/qrintf/template
index 8b4ae6e9f0c..cd4cd8bee34 100644
--- a/srcpkgs/qrintf/template
+++ b/srcpkgs/qrintf/template
@@ -2,7 +2,6 @@
 pkgname=qrintf
 version=0.9.2
 revision=2
-archs=noarch
 depends="perl"
 short_desc="A sprintf accelerator for GCC and Clang"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/qtcreator/template b/srcpkgs/qtcreator/template
index e8cc8990fe0..23e69c35eed 100644
--- a/srcpkgs/qtcreator/template
+++ b/srcpkgs/qtcreator/template
@@ -71,7 +71,6 @@ qtcreator-full_package() {
 
 qtcreator-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share
 	}
diff --git a/srcpkgs/quixand/template b/srcpkgs/quixand/template
index 0574f90aa7e..2c6bd03be74 100644
--- a/srcpkgs/quixand/template
+++ b/srcpkgs/quixand/template
@@ -2,7 +2,6 @@
 pkgname=quixand
 version=2020
 revision=1
-archs=noarch
 depends="bash encfs"
 short_desc="Tool for creating single-use unrecoverable encrypted sandboxes"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/quodlibet/template b/srcpkgs/quodlibet/template
index ba19de245ad..177ad99b74c 100644
--- a/srcpkgs/quodlibet/template
+++ b/srcpkgs/quodlibet/template
@@ -2,7 +2,6 @@
 pkgname=quodlibet
 version=4.3.0
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="quodlibet"
 hostmakedepends="intltool python3-devel"
diff --git a/srcpkgs/qytdl/template b/srcpkgs/qytdl/template
index b620c498a25..2733e6726e8 100644
--- a/srcpkgs/qytdl/template
+++ b/srcpkgs/qytdl/template
@@ -2,7 +2,6 @@
 pkgname=qytdl
 version=1.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/share/qytdl/src"
 depends="desktop-file-utils python3-PyQt5 python3-youtube-dl"
diff --git a/srcpkgs/racket/template b/srcpkgs/racket/template
index dab6e5ec43c..41c9537b0e8 100644
--- a/srcpkgs/racket/template
+++ b/srcpkgs/racket/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 racket-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="racket>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/radicale/template b/srcpkgs/radicale/template
index 5cf0cc8da0d..30c1b9bfb8a 100644
--- a/srcpkgs/radicale/template
+++ b/srcpkgs/radicale/template
@@ -2,7 +2,6 @@
 pkgname=radicale
 version=1.1.6
 revision=4
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 pycompile_module="radicale"
diff --git a/srcpkgs/radicale2/template b/srcpkgs/radicale2/template
index 6fd785c5484..a762f1e41dd 100644
--- a/srcpkgs/radicale2/template
+++ b/srcpkgs/radicale2/template
@@ -2,7 +2,6 @@
 pkgname=radicale2
 version=2.1.12
 revision=1
-archs=noarch
 wrksrc="Radicale-${version}"
 build_style=python3-module
 hostmakedepends="python3 python3-setuptools"
diff --git a/srcpkgs/ranger/template b/srcpkgs/ranger/template
index d88da9b1ee1..33ecef3a239 100644
--- a/srcpkgs/ranger/template
+++ b/srcpkgs/ranger/template
@@ -2,7 +2,6 @@
 pkgname=ranger
 version=1.9.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="ranger"
 hostmakedepends="python3"
diff --git a/srcpkgs/rapidjson/template b/srcpkgs/rapidjson/template
index c1f3f32ba6d..0f8553674cb 100644
--- a/srcpkgs/rapidjson/template
+++ b/srcpkgs/rapidjson/template
@@ -3,7 +3,6 @@ pkgname=rapidjson
 version=1.1.0
 revision=2
 build_style=cmake
-archs=noarch
 short_desc="A fast JSON parser/generator for C++ with both SAX/DOM style API"
 maintainer="Alexander Egorenkov <egorenar-dev@posteo.net>"
 license="BSD, MIT"
diff --git a/srcpkgs/rapidxml/template b/srcpkgs/rapidxml/template
index 35418273bb4..6a19d381165 100644
--- a/srcpkgs/rapidxml/template
+++ b/srcpkgs/rapidxml/template
@@ -2,7 +2,6 @@
 pkgname=rapidxml
 version=1.13
 revision=1
-archs=noarch
 hostmakedepends="unzip"
 short_desc="XML parser written in C++"
 maintainer="Helmut Pozimski <helmut@pozimski.eu>"
diff --git a/srcpkgs/rapydscript-ng/template b/srcpkgs/rapydscript-ng/template
index 681fe9781cc..92101d56f44 100644
--- a/srcpkgs/rapydscript-ng/template
+++ b/srcpkgs/rapydscript-ng/template
@@ -2,7 +2,6 @@
 pkgname=rapydscript-ng
 version=0.7.20
 revision=2
-archs=noarch
 hostmakedepends="nodejs"
 depends="nodejs"
 short_desc="Transpiler for a Python like language to JavaScript"
diff --git a/srcpkgs/rcm/template b/srcpkgs/rcm/template
index 2f84ba88ad3..9f7e44a091c 100644
--- a/srcpkgs/rcm/template
+++ b/srcpkgs/rcm/template
@@ -2,7 +2,6 @@
 pkgname=rcm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 checkdepends="python3-cram"
 depends="perl"
diff --git a/srcpkgs/rdumpfs/template b/srcpkgs/rdumpfs/template
index 12d80550d06..20709eb0c20 100644
--- a/srcpkgs/rdumpfs/template
+++ b/srcpkgs/rdumpfs/template
@@ -2,7 +2,6 @@
 pkgname=rdumpfs
 version=0.1
 revision=3
-archs=noarch
 depends="rsync bash"
 short_desc="A rsync-based dump file system backup tool"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/rebar3/template b/srcpkgs/rebar3/template
index 5243045ee94..f3cd96fead5 100644
--- a/srcpkgs/rebar3/template
+++ b/srcpkgs/rebar3/template
@@ -2,7 +2,6 @@
 pkgname=rebar3
 version=3.13.2
 revision=1
-archs=noarch
 hostmakedepends=erlang
 depends="erlang>=22"
 short_desc="Erlang build tool to compile, test, and release applications"
diff --git a/srcpkgs/rednotebook/template b/srcpkgs/rednotebook/template
index fa2cb9cf445..14ddd26a73e 100644
--- a/srcpkgs/rednotebook/template
+++ b/srcpkgs/rednotebook/template
@@ -2,7 +2,6 @@
 pkgname=rednotebook
 version=2.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="desktop-file-utils gtksourceview hicolor-icon-theme python3-enchant
diff --git a/srcpkgs/remhind/template b/srcpkgs/remhind/template
index 0f4e4047520..c9d037f10cb 100644
--- a/srcpkgs/remhind/template
+++ b/srcpkgs/remhind/template
@@ -2,7 +2,6 @@
 pkgname=remhind
 version=0.1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-gobject-devel python3-cairo-devel"
 depends="python3-icalendar python3-dateutil python3-gobject python3-toml
diff --git a/srcpkgs/rex/template b/srcpkgs/rex/template
index 0f294444ade..908ce0c2060 100644
--- a/srcpkgs/rex/template
+++ b/srcpkgs/rex/template
@@ -2,7 +2,6 @@
 pkgname=rex
 version=1.12.1
 revision=1
-archs=noarch
 wrksrc="Rex-${version}"
 build_style=perl-module
 hostmakedepends="perl perl-AWS-Signature4 perl-Clone-Choose
diff --git a/srcpkgs/rinse/template b/srcpkgs/rinse/template
index 289fb177632..f626b75ad7a 100644
--- a/srcpkgs/rinse/template
+++ b/srcpkgs/rinse/template
@@ -2,7 +2,6 @@
 pkgname=rinse
 version=3.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_check_target=test
 hostmakedepends="dpkg"
diff --git a/srcpkgs/ripe-atlas-tools/template b/srcpkgs/ripe-atlas-tools/template
index c5e21c4b8dc..07bf1dceef1 100644
--- a/srcpkgs/ripe-atlas-tools/template
+++ b/srcpkgs/ripe-atlas-tools/template
@@ -2,7 +2,6 @@
 pkgname=ripe-atlas-tools
 version=2.3.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="ripe/atlas/tools"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/rkhunter/template b/srcpkgs/rkhunter/template
index 743af812a78..968cad3cc7b 100644
--- a/srcpkgs/rkhunter/template
+++ b/srcpkgs/rkhunter/template
@@ -2,7 +2,6 @@
 pkgname=rkhunter
 version=1.4.6
 revision=1
-archs=noarch
 conf_files="/etc/rkhunter.conf"
 make_dirs="/var/lib/rkhunter/tmp 0750 root root"
 makedepends="curl"
diff --git a/srcpkgs/rocksndiamonds/template b/srcpkgs/rocksndiamonds/template
index 480aefff57f..55622087988 100644
--- a/srcpkgs/rocksndiamonds/template
+++ b/srcpkgs/rocksndiamonds/template
@@ -34,7 +34,6 @@ do_install() {
 
 rocksndiamonds-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/rocksndiamonds
 	}
diff --git a/srcpkgs/rpi-firmware/template b/srcpkgs/rpi-firmware/template
index faa8fa28222..45b6d58bc23 100644
--- a/srcpkgs/rpi-firmware/template
+++ b/srcpkgs/rpi-firmware/template
@@ -5,7 +5,6 @@ _gitshort="${_githash:0:7}"
 pkgname=rpi-firmware
 version=20200326
 revision=1
-archs=noarch
 wrksrc="firmware-${_githash}"
 short_desc="Firmware files for the Raspberry Pi (git ${_gitshort})"
 maintainer="Peter Bui <pbui@github.bx612.space>"
diff --git a/srcpkgs/rpmextract/template b/srcpkgs/rpmextract/template
index e1e325f7a6c..5b568f72ba8 100644
--- a/srcpkgs/rpmextract/template
+++ b/srcpkgs/rpmextract/template
@@ -2,7 +2,6 @@
 pkgname=rpmextract
 version=1.1
 revision=3
-archs=noarch
 depends="bsdtar coreutils"
 short_desc="Script to convert or extract RPM archives (contains rpm2cpio)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/rsnapshot/template b/srcpkgs/rsnapshot/template
index 8dafcc87bcd..cb86ba6e78b 100644
--- a/srcpkgs/rsnapshot/template
+++ b/srcpkgs/rsnapshot/template
@@ -2,7 +2,6 @@
 pkgname=rsnapshot
 version=1.4.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="perl rsync openssh"
 makedepends="perl-Lchown"
diff --git a/srcpkgs/rtl8812au-dkms/template b/srcpkgs/rtl8812au-dkms/template
index 49548f69a76..7fb637158b4 100644
--- a/srcpkgs/rtl8812au-dkms/template
+++ b/srcpkgs/rtl8812au-dkms/template
@@ -4,7 +4,6 @@ version=20200702
 revision=1
 _modver=5.6.4.2
 _gitrev=3110ad65d0f03532bd97b1017cae67ca86dd34f6
-archs=noarch
 wrksrc="rtl8812au-${_modver}-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8812AU/8821AU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rtl8822bu-dkms/template b/srcpkgs/rtl8822bu-dkms/template
index 9f87620427d..1db7fe4eef0 100644
--- a/srcpkgs/rtl8822bu-dkms/template
+++ b/srcpkgs/rtl8822bu-dkms/template
@@ -3,7 +3,6 @@ pkgname=rtl8822bu-dkms
 version=20200407
 revision=1
 _gitrev=9438d453ec5b4878b7d4a2b4bcf87b37df09c3fb
-archs=noarch
 wrksrc="rtl8822bu-${_gitrev}"
 depends="dkms"
 short_desc="Realtek 8822BU USB WiFi driver (DKMS)"
diff --git a/srcpkgs/rubber/template b/srcpkgs/rubber/template
index de6652231aa..dec05bd21d0 100644
--- a/srcpkgs/rubber/template
+++ b/srcpkgs/rubber/template
@@ -2,7 +2,6 @@
 pkgname=rubber
 version=1.5.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="python3 virtual?tex"
diff --git a/srcpkgs/ruby-addressable/template b/srcpkgs/ruby-addressable/template
index 0495e0176ec..0cc0fcd7a3d 100644
--- a/srcpkgs/ruby-addressable/template
+++ b/srcpkgs/ruby-addressable/template
@@ -2,7 +2,6 @@
 pkgname=ruby-addressable
 version=2.7.0
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-public_suffix>=2.0.2 ruby-public_suffix<5.0"
 short_desc="Replacement for Ruby's standard library URI implementation"
diff --git a/srcpkgs/ruby-asciidoctor/template b/srcpkgs/ruby-asciidoctor/template
index f70d94c165d..dba6815ad74 100644
--- a/srcpkgs/ruby-asciidoctor/template
+++ b/srcpkgs/ruby-asciidoctor/template
@@ -2,7 +2,6 @@
 pkgname=ruby-asciidoctor
 version=2.0.10
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Ruby implementation of AsciiDoc"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-concurrent-ruby/template b/srcpkgs/ruby-concurrent-ruby/template
index f702b3a2c09..c19d4a72091 100644
--- a/srcpkgs/ruby-concurrent-ruby/template
+++ b/srcpkgs/ruby-concurrent-ruby/template
@@ -2,7 +2,6 @@
 pkgname=ruby-concurrent-ruby
 version=1.1.5
 revision=3
-archs="noarch"
 build_style=gem
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-connection_pool/template b/srcpkgs/ruby-connection_pool/template
index 0ef9ffee343..4bde99058f1 100644
--- a/srcpkgs/ruby-connection_pool/template
+++ b/srcpkgs/ruby-connection_pool/template
@@ -2,7 +2,6 @@
 pkgname=ruby-connection_pool
 version=2.2.2
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Generic connection pool for Ruby"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-deep_merge/template b/srcpkgs/ruby-deep_merge/template
index 851a1fd4901..fe8fa774354 100644
--- a/srcpkgs/ruby-deep_merge/template
+++ b/srcpkgs/ruby-deep_merge/template
@@ -2,7 +2,6 @@
 pkgname=ruby-deep_merge
 version=1.2.1
 revision=2
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-ethon/template b/srcpkgs/ruby-ethon/template
index 6e19f1641e3..47c14e97059 100644
--- a/srcpkgs/ruby-ethon/template
+++ b/srcpkgs/ruby-ethon/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ethon
 version=0.12.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-ffi>=1.3.0"
 short_desc="Lightweight wrapper around libcurl"
diff --git a/srcpkgs/ruby-faraday/template b/srcpkgs/ruby-faraday/template
index 517f7afa39e..cb902fa55de 100644
--- a/srcpkgs/ruby-faraday/template
+++ b/srcpkgs/ruby-faraday/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday
 version=1.0.1
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-multipart-post>=1.2 ruby-multipart-post<3"
 short_desc="HTTP/REST API client library"
diff --git a/srcpkgs/ruby-faraday_middleware/template b/srcpkgs/ruby-faraday_middleware/template
index c300a0b5f86..869d7ca04ac 100644
--- a/srcpkgs/ruby-faraday_middleware/template
+++ b/srcpkgs/ruby-faraday_middleware/template
@@ -2,7 +2,6 @@
 pkgname=ruby-faraday_middleware
 version=1.0.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-faraday>=1.0"
 short_desc="Various middleware for Faraday"
diff --git a/srcpkgs/ruby-filesize/template b/srcpkgs/ruby-filesize/template
index dad1a39f098..32284c510a6 100644
--- a/srcpkgs/ruby-filesize/template
+++ b/srcpkgs/ruby-filesize/template
@@ -2,7 +2,6 @@
 pkgname=ruby-filesize
 version=0.2.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Small class for handling filesizes"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-gh/template b/srcpkgs/ruby-gh/template
index 0a9899994f1..2972f27ff15 100644
--- a/srcpkgs/ruby-gh/template
+++ b/srcpkgs/ruby-gh/template
@@ -2,7 +2,6 @@
 pkgname=ruby-gh
 version=0.15.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.4.0 ruby-backports ruby-faraday>=0.8
  ruby-multi_json>=1.0 ruby-net-http-persistent>=2.9 ruby-net-http-pipeline"
diff --git a/srcpkgs/ruby-highline/template b/srcpkgs/ruby-highline/template
index 5064e4167c3..c21e6f4b1c6 100644
--- a/srcpkgs/ruby-highline/template
+++ b/srcpkgs/ruby-highline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-highline
 version=2.0.3
 revision=2
-archs=noarch
 build_style=gem
 short_desc="High-level IO library for comamndline interfaces"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-httparty/template b/srcpkgs/ruby-httparty/template
index 7a26fe321e7..fb88f3ae633 100644
--- a/srcpkgs/ruby-httparty/template
+++ b/srcpkgs/ruby-httparty/template
@@ -2,7 +2,6 @@
 pkgname=ruby-httparty
 version=0.17.1
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types>=3.0 ruby-multi_xml>=0.5.2"
 short_desc="Makes http fun! Also, makes consuming restful web services dead easy"
diff --git a/srcpkgs/ruby-launchy/template b/srcpkgs/ruby-launchy/template
index 1586ac19625..fd42c758b4e 100644
--- a/srcpkgs/ruby-launchy/template
+++ b/srcpkgs/ruby-launchy/template
@@ -2,7 +2,6 @@
 pkgname=ruby-launchy
 version=2.4.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-addressable>=2.3 ruby-addressable<3.0"
 short_desc="Helper class for launching cross-platform applications"
diff --git a/srcpkgs/ruby-manpages/template b/srcpkgs/ruby-manpages/template
index 2521b71af56..491ed093d46 100644
--- a/srcpkgs/ruby-manpages/template
+++ b/srcpkgs/ruby-manpages/template
@@ -2,7 +2,6 @@
 pkgname=ruby-manpages
 version=0.6.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Gem to add man pages support to ruby gems"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-mime-types-data/template b/srcpkgs/ruby-mime-types-data/template
index d8b3958fc44..3da961f2eaa 100644
--- a/srcpkgs/ruby-mime-types-data/template
+++ b/srcpkgs/ruby-mime-types-data/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types-data
 version=3.2019.1009
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Registry for MIME media type definitions"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mime-types/template b/srcpkgs/ruby-mime-types/template
index 1512f5f9a6c..aef14485633 100644
--- a/srcpkgs/ruby-mime-types/template
+++ b/srcpkgs/ruby-mime-types/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mime-types
 version=3.3
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-mime-types-data>=3.2015"
 short_desc="Library for registry and information about MIME types"
diff --git a/srcpkgs/ruby-multi_json/template b/srcpkgs/ruby-multi_json/template
index 71c3623f0fb..cff882e742c 100644
--- a/srcpkgs/ruby-multi_json/template
+++ b/srcpkgs/ruby-multi_json/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_json
 version=1.14.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Common interface for multiple JSON parsing libraries"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multi_xml/template b/srcpkgs/ruby-multi_xml/template
index 3a4628c9e29..a8d30d74535 100644
--- a/srcpkgs/ruby-multi_xml/template
+++ b/srcpkgs/ruby-multi_xml/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multi_xml
 version=0.6.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Swappable XML backends utilizing LibXML, Nokogiri, Ox, or REXML"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-multipart-post/template b/srcpkgs/ruby-multipart-post/template
index a2b21ce7627..44c2119aa04 100644
--- a/srcpkgs/ruby-multipart-post/template
+++ b/srcpkgs/ruby-multipart-post/template
@@ -2,7 +2,6 @@
 pkgname=ruby-multipart-post
 version=2.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Use with Net::HTTP to do multipart form posts"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-mustache/template b/srcpkgs/ruby-mustache/template
index 96ebfb59b27..b7d9bf4f416 100644
--- a/srcpkgs/ruby-mustache/template
+++ b/srcpkgs/ruby-mustache/template
@@ -2,7 +2,6 @@
 pkgname=ruby-mustache
 version=1.1.1
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Framework-agnostic way to render logic-free views"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-net-http-persistent/template b/srcpkgs/ruby-net-http-persistent/template
index afae4ea0308..bd3dc9240a3 100644
--- a/srcpkgs/ruby-net-http-persistent/template
+++ b/srcpkgs/ruby-net-http-persistent/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-persistent
 version=3.1.0
 revision=2
-archs=noarch
 build_style=gem
 depends="ruby-connection_pool>=2.2 ruby-connection_pool<3.0"
 short_desc="Manages persistent connections using Net::HTTP"
diff --git a/srcpkgs/ruby-net-http-pipeline/template b/srcpkgs/ruby-net-http-pipeline/template
index 0cb6aa687ff..8b7762613ea 100644
--- a/srcpkgs/ruby-net-http-pipeline/template
+++ b/srcpkgs/ruby-net-http-pipeline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-net-http-pipeline
 version=1.0.1
 revision=3
-archs=noarch
 build_style=gem
 short_desc="HTTP/1.1 pipelining implementation atop Net::HTTP"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-public_suffix/template b/srcpkgs/ruby-public_suffix/template
index ec94bd34ca3..d588f22de24 100644
--- a/srcpkgs/ruby-public_suffix/template
+++ b/srcpkgs/ruby-public_suffix/template
@@ -2,7 +2,6 @@
 pkgname=ruby-public_suffix
 version=4.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Parse domain names into top level domain, domain and subdomains"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby-pusher-client/template b/srcpkgs/ruby-pusher-client/template
index 9b41bbf12ef..fac92ca2968 100644
--- a/srcpkgs/ruby-pusher-client/template
+++ b/srcpkgs/ruby-pusher-client/template
@@ -2,7 +2,6 @@
 pkgname=ruby-pusher-client
 version=0.6.2
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-websocket>=1.0 ruby-websocket<2.0"
 short_desc="Client for consuming WebSockets from http://pusher.com"
diff --git a/srcpkgs/ruby-rainbow/template b/srcpkgs/ruby-rainbow/template
index dc2c03331d4..96fc7360c7c 100644
--- a/srcpkgs/ruby-rainbow/template
+++ b/srcpkgs/ruby-rainbow/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rainbow
 version=3.0.0
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Colorize printed text on ANSI terminals"
 maintainer="Frank Steinborn <steinex@nognu.de>"
diff --git a/srcpkgs/ruby-rb-readline/template b/srcpkgs/ruby-rb-readline/template
index 5457b9cd5d1..2d78ead9d50 100644
--- a/srcpkgs/ruby-rb-readline/template
+++ b/srcpkgs/ruby-rb-readline/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rb-readline
 version=0.5.5
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby"
 short_desc="Pure Ruby implementation of GNU readline library"
diff --git a/srcpkgs/ruby-ronn/template b/srcpkgs/ruby-ronn/template
index cada3abd52d..01515c05e6a 100644
--- a/srcpkgs/ruby-ronn/template
+++ b/srcpkgs/ruby-ronn/template
@@ -2,7 +2,6 @@
 pkgname=ruby-ronn
 version=0.7.3
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-hpricot ruby-mustache ruby-rdiscount groff"
 short_desc="Strick markdown-like format for manpages"
diff --git a/srcpkgs/ruby-rubysl-singleton/template b/srcpkgs/ruby-rubysl-singleton/template
index a2b64a23ca4..184f71f3375 100644
--- a/srcpkgs/ruby-rubysl-singleton/template
+++ b/srcpkgs/ruby-rubysl-singleton/template
@@ -2,7 +2,6 @@
 pkgname=ruby-rubysl-singleton
 version=2.0.0
 revision=2
-archs="noarch"
 build_style=gemspec
 hostmakedepends="ruby"
 depends="ruby"
diff --git a/srcpkgs/ruby-semantic_puppet/template b/srcpkgs/ruby-semantic_puppet/template
index e7af95f9e7a..758c6cef565 100644
--- a/srcpkgs/ruby-semantic_puppet/template
+++ b/srcpkgs/ruby-semantic_puppet/template
@@ -2,7 +2,6 @@
 pkgname=ruby-semantic_puppet
 version=1.0.2
 revision=2
-archs=noarch
 build_style=gem
 short_desc="Tools for working with Semantic Versions"
 maintainer="eater <=@eater.me>"
diff --git a/srcpkgs/ruby-sync/template b/srcpkgs/ruby-sync/template
index 20771ee9b5e..5155a3e1359 100644
--- a/srcpkgs/ruby-sync/template
+++ b/srcpkgs/ruby-sync/template
@@ -2,7 +2,6 @@
 pkgname=ruby-sync
 version=0.5.0
 revision=1
-archs="noarch"
 wrksrc="${pkgname#ruby-}-${version}"
 build_style=gemspec
 hostmakedepends="ruby"
diff --git a/srcpkgs/ruby-travis/template b/srcpkgs/ruby-travis/template
index 2eaa35cad8e..3e236aa25b4 100644
--- a/srcpkgs/ruby-travis/template
+++ b/srcpkgs/ruby-travis/template
@@ -2,7 +2,6 @@
 pkgname=ruby-travis
 version=1.9.0
 revision=1
-archs=noarch
 build_style=gem
 depends="ruby-backports ruby-faraday>=1.0 ruby-faraday_middleware>=1.0
  ruby-gh>=0.13 ruby-highline>=2.0 ruby-launchy>=2.1 ruby-pusher-client>=0.4
diff --git a/srcpkgs/ruby-typhoeus/template b/srcpkgs/ruby-typhoeus/template
index 33447f4b2bf..f6945c9fd7e 100644
--- a/srcpkgs/ruby-typhoeus/template
+++ b/srcpkgs/ruby-typhoeus/template
@@ -2,7 +2,6 @@
 pkgname=ruby-typhoeus
 version=1.3.1
 revision=3
-archs=noarch
 build_style=gem
 depends="ruby-ethon>=0.9.0"
 short_desc="Parallel HTTP requests runner"
diff --git a/srcpkgs/ruby-websocket/template b/srcpkgs/ruby-websocket/template
index 83c913113f1..56ee82430b9 100644
--- a/srcpkgs/ruby-websocket/template
+++ b/srcpkgs/ruby-websocket/template
@@ -2,7 +2,6 @@
 pkgname=ruby-websocket
 version=1.2.8
 revision=3
-archs=noarch
 build_style=gem
 short_desc="Universal Ruby library to handle WebSocket protocol"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ruby/template b/srcpkgs/ruby/template
index 5159f3c3b88..1cd48b464d7 100644
--- a/srcpkgs/ruby/template
+++ b/srcpkgs/ruby/template
@@ -105,7 +105,6 @@ post_install() {
 
 ruby-devel-doc_package() {
 	short_desc+=" - HTML C API documentation files"
-	archs=noarch
 	pkg_install() {
 		if [ -d "${DESTDIR}/usr/share/doc" ]; then
 			vmove usr/share/doc
@@ -133,7 +132,6 @@ ruby-devel_package() {
 ruby-ri_package() {
 	depends="ruby-${version}_${revision}"
 	short_desc="Ruby Interactive reference"
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/ri
 		if [ -d "${DESTDIR}/usr/share/ri" ]; then
diff --git a/srcpkgs/run-mailcap/template b/srcpkgs/run-mailcap/template
index a09c1f8ef01..4947cf0d13c 100644
--- a/srcpkgs/run-mailcap/template
+++ b/srcpkgs/run-mailcap/template
@@ -2,7 +2,6 @@
 pkgname=run-mailcap
 version=3.64
 revision=1
-archs=noarch
 wrksrc="mime-support-${version}ubuntu1"
 depends="perl"
 short_desc="Execute programs via entries in the mailcap file"
diff --git a/srcpkgs/runelite-launcher/template b/srcpkgs/runelite-launcher/template
index f4717951c59..f2bd9af220c 100644
--- a/srcpkgs/runelite-launcher/template
+++ b/srcpkgs/runelite-launcher/template
@@ -2,7 +2,6 @@
 pkgname=runelite-launcher
 version=2.1.3
 revision=1
-archs=noarch
 wrksrc="launcher-${version}"
 hostmakedepends="apache-maven-bin"
 depends="virtual?java-runtime"
diff --git a/srcpkgs/runit-iptables/template b/srcpkgs/runit-iptables/template
index c35cdc4738f..4761418d8a3 100644
--- a/srcpkgs/runit-iptables/template
+++ b/srcpkgs/runit-iptables/template
@@ -2,7 +2,6 @@
 pkgname=runit-iptables
 version=20180616
 revision=1
-archs=noarch
 depends="runit-void iptables"
 short_desc="Restore iptables rules on boot"
 maintainer="Nicolas Porcel <nicolasporcel06@gmail.com>"
diff --git a/srcpkgs/runit-kdump/template b/srcpkgs/runit-kdump/template
index 0c7f8ea464d..c220d4215ee 100644
--- a/srcpkgs/runit-kdump/template
+++ b/srcpkgs/runit-kdump/template
@@ -2,7 +2,6 @@
 pkgname=runit-kdump
 version=20150226
 revision=4
-archs=noarch
 make_dirs="/var/crash 0755 root root"
 depends="runit-void makedumpfile kexec-tools"
 short_desc="Crashkernel/kdump support for runit to save vmcore to disk"
diff --git a/srcpkgs/runit-nftables/template b/srcpkgs/runit-nftables/template
index d07cb42cae5..4ca82522948 100644
--- a/srcpkgs/runit-nftables/template
+++ b/srcpkgs/runit-nftables/template
@@ -2,7 +2,6 @@
 pkgname=runit-nftables
 version=20200123
 revision=1
-archs=noarch
 depends="runit-void nftables"
 short_desc="Restore nftables rules on boot"
 maintainer="Andrew J. Hesford <ajh@sideband.org>"
diff --git a/srcpkgs/runit-swap/template b/srcpkgs/runit-swap/template
index 20147c8555d..f0a8416d38f 100644
--- a/srcpkgs/runit-swap/template
+++ b/srcpkgs/runit-swap/template
@@ -10,7 +10,6 @@ maintainer="Andrea Brancaleoni <abc@pompel.me>"
 license="GPL-3"
 homepage="https://github.com/thypon/runit-swap"
 conf_files="/etc/runit/swap.conf"
-archs=noarch
 distfiles="$homepage/archive/v$version.tar.gz"
 checksum=a66730777fb084564e7fae67f2017d775b757b6b6c0c319802f71bed2184e958
 
diff --git a/srcpkgs/rust/template b/srcpkgs/rust/template
index cba2feba4d2..942457e523c 100644
--- a/srcpkgs/rust/template
+++ b/srcpkgs/rust/template
@@ -298,7 +298,6 @@ do_install() {
 
 rust-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/rxvt-unicode/template b/srcpkgs/rxvt-unicode/template
index d07e838a818..5360b4486be 100644
--- a/srcpkgs/rxvt-unicode/template
+++ b/srcpkgs/rxvt-unicode/template
@@ -77,7 +77,6 @@ post_install() {
 
 rxvt-unicode-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/s3cmd/template b/srcpkgs/s3cmd/template
index 8043233efb5..5b3527c19a4 100644
--- a/srcpkgs/s3cmd/template
+++ b/srcpkgs/s3cmd/template
@@ -2,7 +2,6 @@
 pkgname=s3cmd
 version=2.1.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-dateutil"
diff --git a/srcpkgs/s6-dns/template b/srcpkgs/s6-dns/template
index 9a0227f2806..fa8a6f34c9c 100644
--- a/srcpkgs/s6-dns/template
+++ b/srcpkgs/s6-dns/template
@@ -21,7 +21,6 @@ post_install() {
 }
 
 s6-dns-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-linux-utils/template b/srcpkgs/s6-linux-utils/template
index 224125b1117..e84aa08fc56 100644
--- a/srcpkgs/s6-linux-utils/template
+++ b/srcpkgs/s6-linux-utils/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-linux-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-networking/template b/srcpkgs/s6-networking/template
index 832b56ba251..2d08e3a7964 100644
--- a/srcpkgs/s6-networking/template
+++ b/srcpkgs/s6-networking/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 s6-networking-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-portable-utils/template b/srcpkgs/s6-portable-utils/template
index c163ea31eae..a9fa76d8e25 100644
--- a/srcpkgs/s6-portable-utils/template
+++ b/srcpkgs/s6-portable-utils/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 s6-portable-utils-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6-rc/template b/srcpkgs/s6-rc/template
index 4296af454a2..108f89faa9f 100644
--- a/srcpkgs/s6-rc/template
+++ b/srcpkgs/s6-rc/template
@@ -34,7 +34,6 @@ s6-rc-devel_package() {
 }
 
 s6-rc-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/s6/template b/srcpkgs/s6/template
index baecf1ee007..f54f828e685 100644
--- a/srcpkgs/s6/template
+++ b/srcpkgs/s6/template
@@ -27,7 +27,6 @@ post_install() {
 }
 
 s6-doc_package() {
-	archs=noarch
 	short_desc="Documentation for s6"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/sabnzbd/template b/srcpkgs/sabnzbd/template
index a45b6535c33..e0364e3e746 100644
--- a/srcpkgs/sabnzbd/template
+++ b/srcpkgs/sabnzbd/template
@@ -2,7 +2,6 @@
 pkgname=sabnzbd
 version=2.3.9
 revision=1
-archs=noarch
 wrksrc="SABnzbd-${version}"
 pycompile_dirs="/usr/share/sabnzbd"
 depends="par2cmdline python-cheetah python-configobj python-feedparser
diff --git a/srcpkgs/safeeyes/template b/srcpkgs/safeeyes/template
index c237bc503d8..6b7c5f51007 100644
--- a/srcpkgs/safeeyes/template
+++ b/srcpkgs/safeeyes/template
@@ -2,7 +2,6 @@
 pkgname=safeeyes
 version=2.0.9
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="safeeyes"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/salt/template b/srcpkgs/salt/template
index 80525f92686..7472d3975a8 100644
--- a/srcpkgs/salt/template
+++ b/srcpkgs/salt/template
@@ -2,7 +2,6 @@
 pkgname=salt
 version=3001.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-yaml python3-Jinja2 python3-requests python3-pyzmq
diff --git a/srcpkgs/sandfox/template b/srcpkgs/sandfox/template
index 36bd2571bd6..24e20f3c806 100644
--- a/srcpkgs/sandfox/template
+++ b/srcpkgs/sandfox/template
@@ -2,7 +2,6 @@
 pkgname=sandfox
 version=1.1.4
 revision=2
-archs=noarch
 depends="bash inotify-tools lsof"
 short_desc="Runs Firefox and other apps in a filesystem sandbox"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/sauerbraten/template b/srcpkgs/sauerbraten/template
index bb0c9b8acb9..636a3b446ba 100644
--- a/srcpkgs/sauerbraten/template
+++ b/srcpkgs/sauerbraten/template
@@ -26,7 +26,6 @@ post_install() {
 }
 
 sauerbraten-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmkdir usr/share/$sourcepkg
diff --git a/srcpkgs/sbcl/template b/srcpkgs/sbcl/template
index 2f58d4153f8..6eee1a27abe 100644
--- a/srcpkgs/sbcl/template
+++ b/srcpkgs/sbcl/template
@@ -56,7 +56,6 @@ do_install() {
 }
 
 sbcl-source_package() {
-	archs="noarch"
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" -- source files"
 	pkg_install() {
diff --git a/srcpkgs/sbt/template b/srcpkgs/sbt/template
index df79423b267..c2e90eb2d97 100644
--- a/srcpkgs/sbt/template
+++ b/srcpkgs/sbt/template
@@ -2,7 +2,6 @@
 pkgname=sbt
 version=1.3.10
 revision=1
-archs=noarch
 wrksrc="$pkgname"
 depends="virtual?java-environment"
 short_desc="Interactive build tool for Scala and Java"
diff --git a/srcpkgs/scanmem/template b/srcpkgs/scanmem/template
index b9bbb2f89fc..0cdd4271f7b 100644
--- a/srcpkgs/scanmem/template
+++ b/srcpkgs/scanmem/template
@@ -41,7 +41,6 @@ libscanmem-devel_package() {
 gameconqueror_package() {
 	short_desc="GameConqueror is a GUI front-end for scanmem, providing more features"
 	depends="polkit gtk+3 python3-gobject lib${sourcepkg}>=${version}_${revision}"
-	archs=noarch
 	python_version=3
 	pkg_install() {
 		cd $DESTDIR
diff --git a/srcpkgs/scapy/template b/srcpkgs/scapy/template
index 36972bfd461..45bec58f751 100644
--- a/srcpkgs/scapy/template
+++ b/srcpkgs/scapy/template
@@ -2,7 +2,6 @@
 pkgname=scapy
 version=2.4.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="scapy"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/schedule/template b/srcpkgs/schedule/template
index 0a5b7c03d6b..4348334a32b 100644
--- a/srcpkgs/schedule/template
+++ b/srcpkgs/schedule/template
@@ -2,7 +2,6 @@
 pkgname=schedule
 version=8.0.1
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl"
 short_desc="Framework to schedule jobs in a multiuser multitasking environment"
diff --git a/srcpkgs/screenFetch/template b/srcpkgs/screenFetch/template
index 4a3d5a9dcaa..6b98d688755 100644
--- a/srcpkgs/screenFetch/template
+++ b/srcpkgs/screenFetch/template
@@ -2,7 +2,6 @@
 pkgname=screenFetch
 version=3.9.1
 revision=1
-archs=noarch
 depends="bash bc xdpyinfo"
 short_desc="Bash screenshot information tool"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/screenkey/template b/srcpkgs/screenkey/template
index b4feb736b89..8205bff7a23 100644
--- a/srcpkgs/screenkey/template
+++ b/srcpkgs/screenkey/template
@@ -2,7 +2,6 @@
 pkgname=screenkey
 version=1.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-setuptools python3-distutils-extra"
 depends="python3-gobject"
diff --git a/srcpkgs/screenplain/template b/srcpkgs/screenplain/template
index e3ce1bc7ff2..10f41dd685b 100644
--- a/srcpkgs/screenplain/template
+++ b/srcpkgs/screenplain/template
@@ -2,7 +2,6 @@
 pkgname=screenplain
 version=0.9.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-reportlab"
diff --git a/srcpkgs/seafile-libclient/template b/srcpkgs/seafile-libclient/template
index 4db42506d81..1b25ea59255 100644
--- a/srcpkgs/seafile-libclient/template
+++ b/srcpkgs/seafile-libclient/template
@@ -39,7 +39,6 @@ seafile-libclient-devel_package() {
 seafile-libclient-python3_package() {
 	short_desc="Cloud storage system - Python3 bindings"
 	depends="libsearpc-python3"
-	archs=noarch
 	pkg_install() {
 		vmove usr/lib/python3*
 	}
@@ -49,7 +48,6 @@ seafile-cli_package() {
 	short_desc="Cloud storage system - client CLI"
 	depends="seafile-libclient-python3 ${sourcepkg}>=${version}_${revision}"
 	python_version=3
-	archs=noarch
 	pkg_install() {
 		vmove usr/bin/seaf-cli
 		vmove usr/share/man/man1/seaf-cli.1
diff --git a/srcpkgs/sendEmail/template b/srcpkgs/sendEmail/template
index a60e0941572..508aca8aeeb 100644
--- a/srcpkgs/sendEmail/template
+++ b/srcpkgs/sendEmail/template
@@ -2,7 +2,6 @@
 pkgname=sendEmail
 version=1.56
 revision=1
-archs=noarch
 wrksrc="${pkgname}-v${version}"
 depends="perl-Net-SSLeay"
 short_desc="Lightweight, command line SMTP email client"
diff --git a/srcpkgs/setconf/template b/srcpkgs/setconf/template
index 8191947a20b..d7b357a5940 100644
--- a/srcpkgs/setconf/template
+++ b/srcpkgs/setconf/template
@@ -2,7 +2,6 @@
 pkgname=setconf
 version=0.7.7
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="setconf.py"
 hostmakedepends="python3-setuptools"
@@ -27,7 +26,6 @@ post_install() {
 }
 
 python3-setconf_package() {
-	archs=noarch
 	build_style=meta
 	short_desc+=" - transitional dummy package"
 	depends="setconf"
diff --git a/srcpkgs/shared-color-targets/template b/srcpkgs/shared-color-targets/template
index 45b350d0b63..4b7f7dfab0a 100644
--- a/srcpkgs/shared-color-targets/template
+++ b/srcpkgs/shared-color-targets/template
@@ -2,7 +2,6 @@
 pkgname=shared-color-targets
 version=0.1.7
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Shared color targets for creating color profiles"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shared-desktop-ontologies/template b/srcpkgs/shared-desktop-ontologies/template
index d8ac5283177..6260f372e5e 100644
--- a/srcpkgs/shared-desktop-ontologies/template
+++ b/srcpkgs/shared-desktop-ontologies/template
@@ -2,7 +2,6 @@
 pkgname=shared-desktop-ontologies
 version=0.11.0
 revision=3
-archs=noarch
 build_style=cmake
 short_desc="Provide RDF vocabularies for the Semantic Desktop"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/shiboken2/template b/srcpkgs/shiboken2/template
index 4cd7da661b0..5b204fff7e9 100644
--- a/srcpkgs/shiboken2/template
+++ b/srcpkgs/shiboken2/template
@@ -55,12 +55,10 @@ python3-shiboken_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
 
 libshiboken-python3_package() {
 	short_desc="Python3 shiboken2 bindings - tranditional dummy pkg"
 	depends="python3-shiboken2-${version}_${revision}"
 	build_style=meta
-	archs=noarch
 }
diff --git a/srcpkgs/shorewall/template b/srcpkgs/shorewall/template
index 30efdba8869..e0d82656e85 100644
--- a/srcpkgs/shorewall/template
+++ b/srcpkgs/shorewall/template
@@ -2,7 +2,6 @@
 pkgname=shorewall
 version=5.2.7
 revision=1
-archs=noarch
 create_wrksrc=yes
 depends="shorewall-core perl"
 short_desc="Iptables-based firewall for Linux systems"
@@ -37,7 +36,6 @@ do_install() {
 }
 
 shorewall-core_package() {
-	archs=noarch
 	depends="iptables iproute2"
 	short_desc+=" - Core Shorewall files"
 	pkg_install() {
@@ -47,7 +45,6 @@ shorewall-core_package() {
 }
 
 shorewall6_package() {
-	archs=noarch
 	depends="shorewall"
 	conf_files="/etc/$pkgname/*"
 	short_desc+=" - IPv6 support"
diff --git a/srcpkgs/shunit2/template b/srcpkgs/shunit2/template
index f909503b0f6..77babcece07 100644
--- a/srcpkgs/shunit2/template
+++ b/srcpkgs/shunit2/template
@@ -2,7 +2,6 @@
 pkgname=shunit2
 version=2.1.8
 revision=1
-archs=noarch
 depends="bash"
 checkdepends="zsh ksh"
 short_desc="Unit testing framework for Unix shell scripts based on xUnit"
diff --git a/srcpkgs/sickbeard/template b/srcpkgs/sickbeard/template
index a056d33f0b9..8499ed6ea0a 100644
--- a/srcpkgs/sickbeard/template
+++ b/srcpkgs/sickbeard/template
@@ -2,7 +2,6 @@
 pkgname=sickbeard
 version=507
 revision=3
-archs=noarch
 wrksrc="Sick-Beard-build-${version}"
 pycompile_dirs="/usr/share/${pkgname}"
 depends="python-cheetah"
diff --git a/srcpkgs/signond/template b/srcpkgs/signond/template
index fc1bdebe712..c72b3932ea6 100644
--- a/srcpkgs/signond/template
+++ b/srcpkgs/signond/template
@@ -25,7 +25,6 @@ pre_configure() {
 }
 
 signond-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/sigrok-firmware-fx2lafw/template b/srcpkgs/sigrok-firmware-fx2lafw/template
index 5c92bc1c0ac..7f9a574fa2d 100644
--- a/srcpkgs/sigrok-firmware-fx2lafw/template
+++ b/srcpkgs/sigrok-firmware-fx2lafw/template
@@ -2,7 +2,6 @@
 pkgname=sigrok-firmware-fx2lafw
 version=0.1.7
 revision=1
-archs=noarch
 wrksrc="${pkgname}-bin-${version}"
 short_desc="Sigrok fx2lafw Firmware files"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
diff --git a/srcpkgs/skalibs/template b/srcpkgs/skalibs/template
index 7b838abda1b..05dbcc04fa1 100644
--- a/srcpkgs/skalibs/template
+++ b/srcpkgs/skalibs/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 skalibs-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	depends="${sourcepkg}>=${version}_${revision}"
 	pkg_install() {
diff --git a/srcpkgs/slim-void-theme/template b/srcpkgs/slim-void-theme/template
index 373d6b644e4..8598b5cc0bc 100644
--- a/srcpkgs/slim-void-theme/template
+++ b/srcpkgs/slim-void-theme/template
@@ -2,7 +2,6 @@
 pkgname=slim-void-theme
 version=1.0.0
 revision=1
-archs=noarch
 depends="slim"
 short_desc="Fancy SLiM theme for Void Linux"
 maintainer="DirectorX <DirectorX@users.noreply.github.com>"
diff --git a/srcpkgs/snazzer/template b/srcpkgs/snazzer/template
index 40828a47362..a42c9a541bd 100644
--- a/srcpkgs/snazzer/template
+++ b/srcpkgs/snazzer/template
@@ -2,7 +2,6 @@
 pkgname=snazzer
 version=0.0.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl pod2mdoc"
 depends="sudo btrfs-progs"
diff --git a/srcpkgs/sonata/template b/srcpkgs/sonata/template
index 3a88e08a988..8ae8caf4337 100644
--- a/srcpkgs/sonata/template
+++ b/srcpkgs/sonata/template
@@ -2,7 +2,6 @@
 pkgname=sonata
 version=1.7b1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-mpd2 python3-gobject gtk+3 ${hostmakedepends}"
diff --git a/srcpkgs/sound-icons/template b/srcpkgs/sound-icons/template
index ee30809549f..84a4de4011d 100644
--- a/srcpkgs/sound-icons/template
+++ b/srcpkgs/sound-icons/template
@@ -2,7 +2,6 @@
 pkgname=sound-icons
 version=0.1
 revision=1
-archs=noarch
 short_desc="Sounds for speech enabled applications"
 maintainer="Alain Kalker <a.c.kalker@gmail.com>"
 license="GPL-2"
diff --git a/srcpkgs/sound-theme-freedesktop/template b/srcpkgs/sound-theme-freedesktop/template
index 5edc5cb8440..b2147d82046 100644
--- a/srcpkgs/sound-theme-freedesktop/template
+++ b/srcpkgs/sound-theme-freedesktop/template
@@ -2,7 +2,6 @@
 pkgname=sound-theme-freedesktop
 version=0.8
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool"
 short_desc="Freedesktop sound theme"
diff --git a/srcpkgs/soundconverter/template b/srcpkgs/soundconverter/template
index 1bda4743513..2dfe30d25e3 100644
--- a/srcpkgs/soundconverter/template
+++ b/srcpkgs/soundconverter/template
@@ -2,7 +2,6 @@
 pkgname=soundconverter
 version=3.0.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 pycompile_dirs="/usr/lib/${pkgname}/python/${pkgname}"
 hostmakedepends="glib intltool pkg-config python3-gobject"
diff --git a/srcpkgs/soundfont-fluid/template b/srcpkgs/soundfont-fluid/template
index dfbe2f089a7..96318df36e2 100644
--- a/srcpkgs/soundfont-fluid/template
+++ b/srcpkgs/soundfont-fluid/template
@@ -2,7 +2,6 @@
 pkgname=soundfont-fluid
 version=3.1
 revision=3
-archs=noarch
 wrksrc="fluid-soundfont-${version}"
 short_desc="FluidR3 Soundfont"
 maintainer="Nick Hahn <nick.hahn@hotmail.de>"
diff --git a/srcpkgs/source-sans-pro/template b/srcpkgs/source-sans-pro/template
index 510f5a74e91..059f669b8bb 100644
--- a/srcpkgs/source-sans-pro/template
+++ b/srcpkgs/source-sans-pro/template
@@ -3,7 +3,6 @@ pkgname=source-sans-pro
 version=3.006
 revision=1
 _relver="3.006R"
-archs=noarch
 wrksrc="source-sans-pro-${_relver/\//-}"
 depends="font-util"
 short_desc="Sans serif font family for user interface environments"
diff --git a/srcpkgs/spampd/template b/srcpkgs/spampd/template
index 69d884a75df..1058d4bb5a7 100644
--- a/srcpkgs/spampd/template
+++ b/srcpkgs/spampd/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="http://www.worlddesign.com/index.cfm/page/software/open-source/spampd.htm"
 distfiles="https://github.com/downloads/mpaperno/$pkgname/$pkgname-$version.tar.gz"
 checksum=c980e55f46c7757fd45294e5268766253123490d0158d2ee36ad5700ddf823bb
-archs=noarch
 system_accounts="_spampd"
 _spampd_homedir="/var/lib/spampd"
 
diff --git a/srcpkgs/sparsehash/template b/srcpkgs/sparsehash/template
index b6e1725d3a3..919e516f4d8 100644
--- a/srcpkgs/sparsehash/template
+++ b/srcpkgs/sparsehash/template
@@ -2,7 +2,6 @@
 pkgname=sparsehash
 version=2.0.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 short_desc="Library that contains several hash-map implementations"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/spdx-licenses-list/template b/srcpkgs/spdx-licenses-list/template
index 98b05b520d8..c12a3616660 100644
--- a/srcpkgs/spdx-licenses-list/template
+++ b/srcpkgs/spdx-licenses-list/template
@@ -4,7 +4,6 @@
 pkgname=spdx-licenses-list
 version=3.10
 revision=1
-archs=noarch
 wrksrc="license-list-data-${version}"
 short_desc="SPDX License List"
 maintainer="mobinmob <mobinmob@disroot.org>"
@@ -22,7 +21,6 @@ do_install() {
 }
 
 spdx-licenses-text_package() {
-	archs=noarch
 	short_desc="SPDX licenses in plain text"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -31,7 +29,6 @@ spdx-licenses-text_package() {
 }
 
 spdx-licenses-json_package() {
-	archs=noarch
 	short_desc="SPDX licenses in JSON"
 	pkg_install() {
 		vmkdir usr/share/spdx
@@ -40,7 +37,6 @@ spdx-licenses-json_package() {
 }
 
 spdx-licenses-html_package() {
-	archs=noarch
 	short_desc="SPDX licenses in HTML"
 	pkg_install() {
 		vmkdir usr/share/spdx
diff --git a/srcpkgs/spectre-meltdown-checker/template b/srcpkgs/spectre-meltdown-checker/template
index ba940726dc1..4873a59248e 100644
--- a/srcpkgs/spectre-meltdown-checker/template
+++ b/srcpkgs/spectre-meltdown-checker/template
@@ -2,7 +2,6 @@
 pkgname=spectre-meltdown-checker
 version=0.43
 revision=1
-archs=noarch
 short_desc="Spectre & Meltdown vulnerability/mitigation checker for Linux"
 depends="binutils"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/speed-dreams/template b/srcpkgs/speed-dreams/template
index 6a32ccc1b49..f269e718af2 100644
--- a/srcpkgs/speed-dreams/template
+++ b/srcpkgs/speed-dreams/template
@@ -34,7 +34,6 @@ esac
 
 speed-dreams-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/speed-dreams-2
 	}
diff --git a/srcpkgs/speedometer/template b/srcpkgs/speedometer/template
index 3c287fcdca7..12c6f43a0e2 100644
--- a/srcpkgs/speedometer/template
+++ b/srcpkgs/speedometer/template
@@ -2,7 +2,6 @@
 pkgname=speedometer
 version=2.8
 revision=3
-archs=noarch
 wrksrc="speedometer-release-${version}"
 depends="python-urwid"
 short_desc="Monitor network traffic or speed/progress of a file transfer"
diff --git a/srcpkgs/speedtest-cli/template b/srcpkgs/speedtest-cli/template
index c65d9fd631d..04b63b8f57a 100644
--- a/srcpkgs/speedtest-cli/template
+++ b/srcpkgs/speedtest-cli/template
@@ -2,7 +2,6 @@
 pkgname=speedtest-cli
 version=2.1.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="speedtest.py"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/spice-protocol/template b/srcpkgs/spice-protocol/template
index 819c2977712..f4b952ce5df 100644
--- a/srcpkgs/spice-protocol/template
+++ b/srcpkgs/spice-protocol/template
@@ -2,7 +2,6 @@
 pkgname=spice-protocol
 version=0.14.0
 revision=1
-archs=noarch
 wrksrc="spice-protocol-v${version}"
 build_style=meson
 short_desc="SPICE protocol headers"
diff --git a/srcpkgs/sqlmap/template b/srcpkgs/sqlmap/template
index e7a76a818bf..31842d87272 100644
--- a/srcpkgs/sqlmap/template
+++ b/srcpkgs/sqlmap/template
@@ -2,7 +2,6 @@
 pkgname=sqlmap
 version=1.4.8
 revision=1
-archs=noarch
 pycompile_dirs="usr/share/sqlmap"
 depends="python3"
 short_desc="Automatic SQL injection and database takeover tool"
diff --git a/srcpkgs/ssh-audit/template b/srcpkgs/ssh-audit/template
index b9d1f6f8054..3c549b131da 100644
--- a/srcpkgs/ssh-audit/template
+++ b/srcpkgs/ssh-audit/template
@@ -2,7 +2,6 @@
 pkgname=ssh-audit
 version=2.2.0
 revision=1
-archs=noarch
 depends="python3"
 short_desc="SSH server auditing"
 maintainer="Andrew Benson <abenson+void@gmail.com>"
diff --git a/srcpkgs/sshuttle/template b/srcpkgs/sshuttle/template
index c642a07cd37..8ac71be47e8 100644
--- a/srcpkgs/sshuttle/template
+++ b/srcpkgs/sshuttle/template
@@ -2,7 +2,6 @@
 pkgname=sshuttle
 version=1.0.4
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools python3-Sphinx"
 depends="python3-setuptools iptables"
diff --git a/srcpkgs/ssoma/template b/srcpkgs/ssoma/template
index e2ea3eb961c..d618cba28ac 100644
--- a/srcpkgs/ssoma/template
+++ b/srcpkgs/ssoma/template
@@ -2,7 +2,6 @@
 pkgname=ssoma
 version=0.2.0
 revision=2
-archs=noarch
 make_install_target="install install-man prefix=/usr"
 build_style=perl-module
 depends="perl perl-Email-LocalDelivery perl-Email-MIME perl-File-Path-Expand
diff --git a/srcpkgs/st/template b/srcpkgs/st/template
index c1ff40e2496..4c3281adff6 100644
--- a/srcpkgs/st/template
+++ b/srcpkgs/st/template
@@ -29,7 +29,6 @@ post_install() {
 
 st-terminfo_package() {
 	short_desc+=" - terminfo data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/terminfo
 	}
diff --git a/srcpkgs/starfighter/template b/srcpkgs/starfighter/template
index 1b357256b2f..d465bacc52a 100644
--- a/srcpkgs/starfighter/template
+++ b/srcpkgs/starfighter/template
@@ -21,7 +21,6 @@ pre_configure() {
 
 starfighter-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/starfighter
 	}
diff --git a/srcpkgs/startup/template b/srcpkgs/startup/template
index 4a163d65afc..9180c0b7962 100644
--- a/srcpkgs/startup/template
+++ b/srcpkgs/startup/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 startup-tools_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision} python3-dbus python3-gobject"
 	short_desc+=" - monitoring and analysis tools"
 	pkg_install() {
diff --git a/srcpkgs/statnot/template b/srcpkgs/statnot/template
index e1817d8f43a..e5bfff9f5e3 100644
--- a/srcpkgs/statnot/template
+++ b/srcpkgs/statnot/template
@@ -2,7 +2,6 @@
 pkgname=statnot
 version=0.0.4
 revision=3
-archs=noarch
 build_style=gnu-makefile
 depends="pygtk python3-dbus xsetroot"
 short_desc="Notification system for lightweight window managers"
diff --git a/srcpkgs/stcgal/template b/srcpkgs/stcgal/template
index d75e88837cc..b3d4de94217 100644
--- a/srcpkgs/stcgal/template
+++ b/srcpkgs/stcgal/template
@@ -2,7 +2,6 @@
 pkgname=stcgal
 version=1.6
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="stcgal"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/steam-fonts/template b/srcpkgs/steam-fonts/template
index b0f2aa192b5..fe6f3074b6f 100644
--- a/srcpkgs/steam-fonts/template
+++ b/srcpkgs/steam-fonts/template
@@ -2,7 +2,6 @@
 pkgname=steam-fonts
 version=1.0.0
 revision=3
-archs=noarch
 hostmakedepends="unzip"
 depends="font-util"
 short_desc="Fonts to fix scrambled or missing text in steam menus"
diff --git a/srcpkgs/stellarium/template b/srcpkgs/stellarium/template
index f3d91387947..38d1518ad50 100644
--- a/srcpkgs/stellarium/template
+++ b/srcpkgs/stellarium/template
@@ -16,7 +16,6 @@ checksum=400ef964c2a1612157a4b219464ea919b4e330322a0db894835b6e11c4af5e9b
 
 stellarium-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stellarium
 	}
diff --git a/srcpkgs/stig/template b/srcpkgs/stig/template
index abe5f3b563c..4c507387804 100644
--- a/srcpkgs/stig/template
+++ b/srcpkgs/stig/template
@@ -2,7 +2,6 @@
 pkgname=stig
 version=0.10.1a
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-devel"
diff --git a/srcpkgs/stk/template b/srcpkgs/stk/template
index 8df159eb8a9..30029aa02bd 100644
--- a/srcpkgs/stk/template
+++ b/srcpkgs/stk/template
@@ -66,7 +66,6 @@ post_install() {
 
 stk-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/stk
 	}
diff --git a/srcpkgs/stlarch-font/template b/srcpkgs/stlarch-font/template
index 1c123b7cf0e..ab9e37e4ed1 100644
--- a/srcpkgs/stlarch-font/template
+++ b/srcpkgs/stlarch-font/template
@@ -2,7 +2,6 @@
 pkgname=stlarch-font
 version=1.5
 revision=2
-archs=noarch
 wrksrc="stlarch_font-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/stow/template b/srcpkgs/stow/template
index 4fc87c43888..e3c02065e3c 100644
--- a/srcpkgs/stow/template
+++ b/srcpkgs/stow/template
@@ -2,7 +2,6 @@
 pkgname=stow
 version=2.3.1
 revision=1
-archs=noarch
 build_style=gnu-configure
 make_check_target="test"
 hostmakedepends="perl"
diff --git a/srcpkgs/straw-viewer/template b/srcpkgs/straw-viewer/template
index fc327f581ab..22c8507b358 100644
--- a/srcpkgs/straw-viewer/template
+++ b/srcpkgs/straw-viewer/template
@@ -2,7 +2,6 @@
 pkgname=straw-viewer
 version=0.0.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/streamlink/template b/srcpkgs/streamlink/template
index 44de1bc6fbb..d40a2a23262 100644
--- a/srcpkgs/streamlink/template
+++ b/srcpkgs/streamlink/template
@@ -2,7 +2,6 @@
 pkgname=streamlink
 version=1.5.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-pycryptodome python3-pycountry
diff --git a/srcpkgs/strip-nondeterminism/template b/srcpkgs/strip-nondeterminism/template
index 5065be2d273..a3129bf6856 100644
--- a/srcpkgs/strip-nondeterminism/template
+++ b/srcpkgs/strip-nondeterminism/template
@@ -2,7 +2,6 @@
 pkgname=strip-nondeterminism
 version=1.6.3
 revision=1
-archs=noarch
 build_style=perl-module
 hostmakedepends="perl-Archive-Zip"
 makedepends="$hostmakedepends"
diff --git a/srcpkgs/supertux2/template b/srcpkgs/supertux2/template
index 4b7053c6b95..0678b74eeb4 100644
--- a/srcpkgs/supertux2/template
+++ b/srcpkgs/supertux2/template
@@ -22,7 +22,6 @@ checksum=26a9e56ea2d284148849f3239177d777dda5b675a10ab2d76ee65854c91ff598
 
 supertux2-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/supertux2
 	}
diff --git a/srcpkgs/supertuxkart/template b/srcpkgs/supertuxkart/template
index 664c79b2529..89985781f68 100644
--- a/srcpkgs/supertuxkart/template
+++ b/srcpkgs/supertuxkart/template
@@ -20,7 +20,6 @@ checksum=e9b02b0b11ab68aacaec38306903feffe59a501224805cd3645cebf10e880ae8
 
 supertuxkart-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		# these script only serve a prupose for developing, not to the package
 		rm "${DESTDIR}/usr/share/supertuxkart/data/po/extract_strings_from_XML.py"
diff --git a/srcpkgs/surfraw/template b/srcpkgs/surfraw/template
index eb49d652edf..3229c598c11 100644
--- a/srcpkgs/surfraw/template
+++ b/srcpkgs/surfraw/template
@@ -8,7 +8,6 @@ build_style=gnu-configure
 short_desc="Command line interface to variety of search engines"
 maintainer="Evan Deaubl <evan@deaubl.name>"
 license="Public Domain"
-archs=noarch
 hostmakedepends="automake perl"
 depends="perl"
 homepage="https://gitlab.com/surfraw/Surfraw"
diff --git a/srcpkgs/sv-helper/template b/srcpkgs/sv-helper/template
index 183ceb72944..74d90c83601 100644
--- a/srcpkgs/sv-helper/template
+++ b/srcpkgs/sv-helper/template
@@ -2,7 +2,6 @@
 pkgname=sv-helper
 version=2.0.2
 revision=1
-archs=noarch
 depends="runit"
 short_desc="Utilities to help administer a runit-as-pid1 system"
 maintainer="bougyman <tj@rubyists.com>"
diff --git a/srcpkgs/swaks/template b/srcpkgs/swaks/template
index e9394bf0b20..3cc608976cf 100644
--- a/srcpkgs/swaks/template
+++ b/srcpkgs/swaks/template
@@ -2,7 +2,6 @@
 pkgname=swaks
 version=20190914.0
 revision=1
-archs=noarch
 hostmakedepends="perl"
 depends="perl perl-IO-Socket-INET6 perl-Net-DNS"
 short_desc="Swiss Army Knife for SMTP"
diff --git a/srcpkgs/sway/template b/srcpkgs/sway/template
index fa8e1850c50..2cf0434b1fc 100644
--- a/srcpkgs/sway/template
+++ b/srcpkgs/sway/template
@@ -34,7 +34,6 @@ post_install() {
 grimshot_package() {
 	short_desc="Helper for screenshots within sway"
 	depends="grim slurp sway wl-clipboard jq libnotify"
-	archs="noarch"
 	pkg_install() {
 		vmove usr/bin/grimshot
 		vmove usr/share/man/man1/grimshot.1
diff --git a/srcpkgs/synapse/template b/srcpkgs/synapse/template
index 2f42b235c06..fea97464d88 100644
--- a/srcpkgs/synapse/template
+++ b/srcpkgs/synapse/template
@@ -2,7 +2,6 @@
 pkgname=synapse
 version=1.19.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-jsonschema python3-frozendict python3-canonicaljson>=1.2.0
diff --git a/srcpkgs/syncplay/template b/srcpkgs/syncplay/template
index 83accc1983a..7c3239a484d 100644
--- a/srcpkgs/syncplay/template
+++ b/srcpkgs/syncplay/template
@@ -2,7 +2,6 @@
 pkgname=syncplay
 version=1.6.5
 revision=1
-archs=noarch
 build_style=gnu-makefile
 pycompile_dirs="usr/lib/syncplay/syncplay"
 depends="desktop-file-utils python3-pyside2 python3-Twisted
diff --git a/srcpkgs/syncthing-gtk/template b/srcpkgs/syncthing-gtk/template
index aaaa57a1c9e..f50ef18abb8 100644
--- a/srcpkgs/syncthing-gtk/template
+++ b/srcpkgs/syncthing-gtk/template
@@ -3,7 +3,6 @@ pkgname=syncthing-gtk
 reverts="0.14.36_1"
 version=0.9.4.4
 revision=2
-archs=noarch
 build_style=python2-module
 hostmakedepends="python-setuptools"
 depends="syncthing python-dateutil libnotify librsvg python-bcrypt
diff --git a/srcpkgs/system-config-printer/template b/srcpkgs/system-config-printer/template
index c9fd88c7344..400e213b05e 100644
--- a/srcpkgs/system-config-printer/template
+++ b/srcpkgs/system-config-printer/template
@@ -20,7 +20,6 @@ distfiles="${homepage}/releases/download/${version}/system-config-printer-${vers
 checksum=ab4a4553f536487bf2be1143529749ed9926edd84bd97c2b42666a7111d60b7f
 
 python3-cupshelpers_package() {
-	archs=noarch
 	depends="python3-cups python3-dbus python3-requests"
 	short_desc="Python utility modules around the CUPS printing system"
 	pycompile_module="cupshelpers"
diff --git a/srcpkgs/t-prot/template b/srcpkgs/t-prot/template
index 96c7b10b41f..56123e4c6ba 100644
--- a/srcpkgs/t-prot/template
+++ b/srcpkgs/t-prot/template
@@ -5,7 +5,6 @@ revision=2
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="BSD"
 depends="perl perl-Locale-gettext"
-archs=noarch
 homepage="http://www.escape.de/~tolot/mutt/"
 short_desc="TOFU protection - display filter for RFC822 messages"
 distfiles="http://www.escape.de/~tolot/mutt/t-prot/downloads/${pkgname}-${version}.tar.gz"
diff --git a/srcpkgs/t2ec/template b/srcpkgs/t2ec/template
index f90c7b2898c..5ad009c76ed 100644
--- a/srcpkgs/t2ec/template
+++ b/srcpkgs/t2ec/template
@@ -2,7 +2,6 @@
 pkgname=t2ec
 version=1.3
 revision=1
-archs=noarch
 depends="python3 acpi xbacklight alsa-utils wireless_tools wget jgmenu"
 short_desc="Scripts to display info icons and controls in Tint2 or other panels"
 maintainer="nwg-piotr <nwg.piotr@gmail.com>"
diff --git a/srcpkgs/taisei/template b/srcpkgs/taisei/template
index e99bbc6f538..543044d052e 100644
--- a/srcpkgs/taisei/template
+++ b/srcpkgs/taisei/template
@@ -20,7 +20,6 @@ post_install() {
 
 taisei-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/taisei
 	}
diff --git a/srcpkgs/tango-icon-theme/template b/srcpkgs/tango-icon-theme/template
index 666bb9a533f..b0cc8257bc6 100644
--- a/srcpkgs/tango-icon-theme/template
+++ b/srcpkgs/tango-icon-theme/template
@@ -2,7 +2,6 @@
 pkgname=tango-icon-theme
 version=0.8.90
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="ImageMagick icon-naming-utils intltool pkg-config"
 makedepends="icon-naming-utils libmagick-devel"
diff --git a/srcpkgs/tcllib/template b/srcpkgs/tcllib/template
index a06f1295075..089c9fb4715 100644
--- a/srcpkgs/tcllib/template
+++ b/srcpkgs/tcllib/template
@@ -2,7 +2,6 @@
 pkgname=tcllib
 version=1.20
 revision=1
-archs=noarch
 wrksrc="tcllib-tcllib-${version/./-}"
 build_style=gnu-configure
 hostmakedepends="pkg-config tcl"
diff --git a/srcpkgs/tdrop/template b/srcpkgs/tdrop/template
index 9d454df944a..eccfdbef043 100644
--- a/srcpkgs/tdrop/template
+++ b/srcpkgs/tdrop/template
@@ -2,7 +2,6 @@
 pkgname=tdrop
 version=0.3.0
 revision=1
-archs=noarch
 depends="bash xdotool xprop xwininfo"
 short_desc="Turn terminal emulator or any program into dropdown window"
 maintainer="Daniel Lewan <vision360.daniel@gmail.com>"
diff --git a/srcpkgs/tegaki-zinnia-japanese/template b/srcpkgs/tegaki-zinnia-japanese/template
index c6e9c64cef8..83766bce8d7 100644
--- a/srcpkgs/tegaki-zinnia-japanese/template
+++ b/srcpkgs/tegaki-zinnia-japanese/template
@@ -9,7 +9,6 @@ license="GPL-2"
 hostmakedepends="unzip"
 distfiles="https://github.com/tegaki/tegaki/releases/download/v0.3/${pkgname}-${version}.zip"
 checksum=07861bbb5440d74e705864721f12a5ce1c7f21a869f9c95ff21433d8994aafda
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/tegaki/models/zinnia
diff --git a/srcpkgs/tekaim/template b/srcpkgs/tekaim/template
index bd60dcc57a6..1d3f6602f83 100644
--- a/srcpkgs/tekaim/template
+++ b/srcpkgs/tekaim/template
@@ -2,7 +2,6 @@
 pkgname=tekaim
 version=1.6.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3"
 depends="curl maim python3 xclip"
diff --git a/srcpkgs/telepathy-python/template b/srcpkgs/telepathy-python/template
index 41a0e0d03cb..f5e41c305e8 100644
--- a/srcpkgs/telepathy-python/template
+++ b/srcpkgs/telepathy-python/template
@@ -2,7 +2,6 @@
 pkgname=telepathy-python
 version=0.15.19
 revision=7
-archs=noarch
 build_style=gnu-configure
 pycompile_module="telepathy"
 hostmakedepends="automake python libxslt"
diff --git a/srcpkgs/telepresence/template b/srcpkgs/telepresence/template
index 83b1bca4edd..a7508ab0d78 100644
--- a/srcpkgs/telepresence/template
+++ b/srcpkgs/telepresence/template
@@ -2,7 +2,6 @@
 pkgname=telepresence
 version=0.105
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-pip python3-setuptools git"
 depends="kubectl fuse-sshfs torsocks openssh conntrack-tools iptables"
diff --git a/srcpkgs/termdown/template b/srcpkgs/termdown/template
index d9efe27f2db..1431154fd64 100644
--- a/srcpkgs/termdown/template
+++ b/srcpkgs/termdown/template
@@ -2,7 +2,6 @@
 pkgname=termdown
 version=1.17.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-dateutil python3-click python3-pyfiglet"
diff --git a/srcpkgs/terminal_markdown_viewer/template b/srcpkgs/terminal_markdown_viewer/template
index ba3fcfdc8d6..7867869fda7 100644
--- a/srcpkgs/terminal_markdown_viewer/template
+++ b/srcpkgs/terminal_markdown_viewer/template
@@ -2,7 +2,6 @@
 pkgname=terminal_markdown_viewer
 version=1.6.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="mdv"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/terminator/template b/srcpkgs/terminator/template
index bc95ee7924b..1e0b9517f25 100644
--- a/srcpkgs/terminator/template
+++ b/srcpkgs/terminator/template
@@ -2,7 +2,6 @@
 pkgname=terminator
 version=1.91
 revision=2
-archs=noarch
 build_style=python2-module
 pycompile_module="terminatorlib"
 hostmakedepends="intltool python"
diff --git a/srcpkgs/terminus-font/template b/srcpkgs/terminus-font/template
index 4a296a8f0ce..8efc808c4b2 100644
--- a/srcpkgs/terminus-font/template
+++ b/srcpkgs/terminus-font/template
@@ -2,7 +2,6 @@
 pkgname=terminus-font
 version=4.48
 revision=2
-archs=noarch
 build_style=gnu-configure
 configure_args="--x11dir=/usr/share/fonts/X11/misc
  --psfdir=/usr/share/kbd/consolefonts"
diff --git a/srcpkgs/termsyn-font/template b/srcpkgs/termsyn-font/template
index 2d6f574bda5..f59be231eb7 100644
--- a/srcpkgs/termsyn-font/template
+++ b/srcpkgs/termsyn-font/template
@@ -2,7 +2,6 @@
 pkgname=termsyn-font
 version=1.8.7
 revision=2
-archs=noarch
 wrksrc="termsyn-${version}"
 makedepends="font-util"
 depends="${makedepends}"
diff --git a/srcpkgs/termtosvg/template b/srcpkgs/termtosvg/template
index 431d0945140..6c60000ecbe 100644
--- a/srcpkgs/termtosvg/template
+++ b/srcpkgs/termtosvg/template
@@ -2,7 +2,6 @@
 pkgname=termtosvg
 version=1.1.0
 revision=1
-archs="noarch"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pyte python3-lxml python3-wcwidth"
diff --git a/srcpkgs/tesseract-ocr/template b/srcpkgs/tesseract-ocr/template
index f0313da0ce6..8aa75de7ac9 100644
--- a/srcpkgs/tesseract-ocr/template
+++ b/srcpkgs/tesseract-ocr/template
@@ -108,7 +108,6 @@ tesseract-ocr-devel_package() {
 }
 tesseract-ocr-basic_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-all>=0"
@@ -120,7 +119,6 @@ tesseract-ocr-basic_package() {
 }
 tesseract-ocr-all_package() {
 	local lang
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	conflicts="tesseract-ocr-basic>=0"
@@ -143,7 +141,6 @@ tesseract-ocr-all_package() {
 	done
 }
 tesseract-ocr-afr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Afrikaans language data"
 	pkg_install() {
@@ -151,7 +148,6 @@ tesseract-ocr-afr_package() {
 	}
 }
 tesseract-ocr-amh_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Amharic language data"
 	pkg_install() {
@@ -159,7 +155,6 @@ tesseract-ocr-amh_package() {
 	}
 }
 tesseract-ocr-ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic language data"
 	pkg_install() {
@@ -167,7 +162,6 @@ tesseract-ocr-ara_package() {
 	}
 }
 tesseract-ocr-asm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Assamese language data"
 	pkg_install() {
@@ -175,7 +169,6 @@ tesseract-ocr-asm_package() {
 	}
 }
 tesseract-ocr-aze_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani language data"
 	pkg_install() {
@@ -183,7 +176,6 @@ tesseract-ocr-aze_package() {
 	}
 }
 tesseract-ocr-aze_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Azerbaijani (cyrillic) language data"
 	pkg_install() {
@@ -191,7 +183,6 @@ tesseract-ocr-aze_cyrl_package() {
 	}
 }
 tesseract-ocr-bel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Belarusian language data"
 	pkg_install() {
@@ -199,7 +190,6 @@ tesseract-ocr-bel_package() {
 	}
 }
 tesseract-ocr-ben_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali language data"
 	pkg_install() {
@@ -207,7 +197,6 @@ tesseract-ocr-ben_package() {
 	}
 }
 tesseract-ocr-bod_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan language data"
 	pkg_install() {
@@ -215,7 +204,6 @@ tesseract-ocr-bod_package() {
 	}
 }
 tesseract-ocr-bos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bosnian language data"
 	pkg_install() {
@@ -223,7 +211,6 @@ tesseract-ocr-bos_package() {
 	}
 }
 tesseract-ocr-bre_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Breton language data"
 	pkg_install() {
@@ -231,7 +218,6 @@ tesseract-ocr-bre_package() {
 	}
 }
 tesseract-ocr-bul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bulgarian language data"
 	pkg_install() {
@@ -239,7 +225,6 @@ tesseract-ocr-bul_package() {
 	}
 }
 tesseract-ocr-cat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Catalan language data"
 	pkg_install() {
@@ -247,7 +232,6 @@ tesseract-ocr-cat_package() {
 	}
 }
 tesseract-ocr-ceb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cebuano language data"
 	pkg_install() {
@@ -255,7 +239,6 @@ tesseract-ocr-ceb_package() {
 	}
 }
 tesseract-ocr-ces_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Czech language data"
 	pkg_install() {
@@ -263,7 +246,6 @@ tesseract-ocr-ces_package() {
 	}
 }
 tesseract-ocr-chi_sim_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Simplified) language data"
 	pkg_install() {
@@ -271,7 +253,6 @@ tesseract-ocr-chi_sim_package() {
 	}
 }
 tesseract-ocr-chi_tra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Chinese (Traditional) language data"
 	pkg_install() {
@@ -279,7 +260,6 @@ tesseract-ocr-chi_tra_package() {
 	}
 }
 tesseract-ocr-chr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee language data"
 	pkg_install() {
@@ -287,7 +267,6 @@ tesseract-ocr-chr_package() {
 	}
 }
 tesseract-ocr-cos_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Corsican language data"
 	pkg_install() {
@@ -295,7 +274,6 @@ tesseract-ocr-cos_package() {
 	}
 }
 tesseract-ocr-cym_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Welsh language data"
 	pkg_install() {
@@ -303,7 +281,6 @@ tesseract-ocr-cym_package() {
 	}
 }
 tesseract-ocr-dan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Danish language data"
 	pkg_install() {
@@ -311,7 +288,6 @@ tesseract-ocr-dan_package() {
 	}
 }
 tesseract-ocr-deu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - German language data"
 	pkg_install() {
@@ -319,7 +295,6 @@ tesseract-ocr-deu_package() {
 	}
 }
 tesseract-ocr-div_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dhivehi language data"
 	pkg_install() {
@@ -327,7 +302,6 @@ tesseract-ocr-div_package() {
 	}
 }
 tesseract-ocr-dzo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dzongkha language data"
 	pkg_install() {
@@ -335,7 +309,6 @@ tesseract-ocr-dzo_package() {
 	}
 }
 tesseract-ocr-ell_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek language data"
 	pkg_install() {
@@ -343,7 +316,6 @@ tesseract-ocr-ell_package() {
 	}
 }
 tesseract-ocr-eng_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - English language data"
 	pkg_install() {
@@ -351,7 +323,6 @@ tesseract-ocr-eng_package() {
 	}
 }
 tesseract-ocr-enm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle English (1100-1500) language data"
 	pkg_install() {
@@ -359,7 +330,6 @@ tesseract-ocr-enm_package() {
 	}
 }
 tesseract-ocr-epo_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Esperanto language data"
 	pkg_install() {
@@ -367,7 +337,6 @@ tesseract-ocr-epo_package() {
 	}
 }
 tesseract-ocr-est_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Estonian language data"
 	pkg_install() {
@@ -375,7 +344,6 @@ tesseract-ocr-est_package() {
 	}
 }
 tesseract-ocr-eus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Basque language data"
 	pkg_install() {
@@ -383,7 +351,6 @@ tesseract-ocr-eus_package() {
 	}
 }
 tesseract-ocr-fao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Faroese language data"
 	pkg_install() {
@@ -391,7 +358,6 @@ tesseract-ocr-fao_package() {
 	}
 }
 tesseract-ocr-fas_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Persian language data"
 	pkg_install() {
@@ -399,7 +365,6 @@ tesseract-ocr-fas_package() {
 	}
 }
 tesseract-ocr-fil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Filipino language data"
 	pkg_install() {
@@ -407,7 +372,6 @@ tesseract-ocr-fil_package() {
 	}
 }
 tesseract-ocr-fin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Finnish language data"
 	pkg_install() {
@@ -415,7 +379,6 @@ tesseract-ocr-fin_package() {
 	}
 }
 tesseract-ocr-fra_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - French language data"
 	pkg_install() {
@@ -423,7 +386,6 @@ tesseract-ocr-fra_package() {
 	}
 }
 tesseract-ocr-frk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frankish language data"
 	pkg_install() {
@@ -431,7 +393,6 @@ tesseract-ocr-frk_package() {
 	}
 }
 tesseract-ocr-frm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Middle French (ca. 1400-1600) language data"
 	pkg_install() {
@@ -439,7 +400,6 @@ tesseract-ocr-frm_package() {
 	}
 }
 tesseract-ocr-fry_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Frisian language data"
 	pkg_install() {
@@ -447,7 +407,6 @@ tesseract-ocr-fry_package() {
 	}
 }
 tesseract-ocr-gla_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Scottish Gaelic language data"
 	pkg_install() {
@@ -455,7 +414,6 @@ tesseract-ocr-gla_package() {
 	}
 }
 tesseract-ocr-gle_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Irish language data"
 	pkg_install() {
@@ -463,7 +421,6 @@ tesseract-ocr-gle_package() {
 	}
 }
 tesseract-ocr-glg_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Galician language data"
 	pkg_install() {
@@ -471,7 +428,6 @@ tesseract-ocr-glg_package() {
 	}
 }
 tesseract-ocr-grc_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ancient Greek Language data"
 	pkg_install() {
@@ -479,7 +435,6 @@ tesseract-ocr-grc_package() {
 	}
 }
 tesseract-ocr-guj_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati Language data"
 	pkg_install() {
@@ -487,7 +442,6 @@ tesseract-ocr-guj_package() {
 	}
 }
 tesseract-ocr-hat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Haitian language data"
 	pkg_install() {
@@ -495,7 +449,6 @@ tesseract-ocr-hat_package() {
 	}
 }
 tesseract-ocr-heb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew language data"
 	pkg_install() {
@@ -503,7 +456,6 @@ tesseract-ocr-heb_package() {
 	}
 }
 tesseract-ocr-hin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hindi language data"
 	pkg_install() {
@@ -511,7 +463,6 @@ tesseract-ocr-hin_package() {
 	}
 }
 tesseract-ocr-hrv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Croatian language data"
 	pkg_install() {
@@ -519,7 +470,6 @@ tesseract-ocr-hrv_package() {
 	}
 }
 tesseract-ocr-hun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hungarian language data"
 	pkg_install() {
@@ -527,7 +477,6 @@ tesseract-ocr-hun_package() {
 	}
 }
 tesseract-ocr-hye_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian language data"
 	pkg_install() {
@@ -535,7 +484,6 @@ tesseract-ocr-hye_package() {
 	}
 }
 tesseract-ocr-iku_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Inuktitut language data"
 	pkg_install() {
@@ -543,7 +491,6 @@ tesseract-ocr-iku_package() {
 	}
 }
 tesseract-ocr-ind_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Indonesian language data"
 	pkg_install() {
@@ -551,7 +498,6 @@ tesseract-ocr-ind_package() {
 	}
 }
 tesseract-ocr-isl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Icelandic language data"
 	pkg_install() {
@@ -559,7 +505,6 @@ tesseract-ocr-isl_package() {
 	}
 }
 tesseract-ocr-ita_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian language data"
 	pkg_install() {
@@ -567,7 +512,6 @@ tesseract-ocr-ita_package() {
 	}
 }
 tesseract-ocr-ita_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Italian (Old) language data"
 	pkg_install() {
@@ -575,7 +519,6 @@ tesseract-ocr-ita_old_package() {
 	}
 }
 tesseract-ocr-jav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Javanese language data"
 	pkg_install() {
@@ -583,7 +526,6 @@ tesseract-ocr-jav_package() {
 	}
 }
 tesseract-ocr-jpn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese language data"
 	pkg_install() {
@@ -591,7 +533,6 @@ tesseract-ocr-jpn_package() {
 	}
 }
 tesseract-ocr-kan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada language data"
 	pkg_install() {
@@ -599,7 +540,6 @@ tesseract-ocr-kan_package() {
 	}
 }
 tesseract-ocr-kat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian language data"
 	pkg_install() {
@@ -607,7 +547,6 @@ tesseract-ocr-kat_package() {
 	}
 }
 tesseract-ocr-kat_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian (old) language data"
 	pkg_install() {
@@ -615,7 +554,6 @@ tesseract-ocr-kat_old_package() {
 	}
 }
 tesseract-ocr-kaz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kazakh language data"
 	pkg_install() {
@@ -623,7 +561,6 @@ tesseract-ocr-kaz_package() {
 	}
 }
 tesseract-ocr-khm_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Central Khmer language data"
 	pkg_install() {
@@ -631,7 +568,6 @@ tesseract-ocr-khm_package() {
 	}
 }
 tesseract-ocr-kir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kirghiz language data"
 	pkg_install() {
@@ -639,7 +575,6 @@ tesseract-ocr-kir_package() {
 	}
 }
 tesseract-ocr-kor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Korean language data"
 	pkg_install() {
@@ -647,7 +582,6 @@ tesseract-ocr-kor_package() {
 	}
 }
 tesseract-ocr-kur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish language data"
 	pkg_install() {
@@ -655,7 +589,6 @@ tesseract-ocr-kur_package() {
 	}
 }
 tesseract-ocr-kur_ara_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kurdish (Arabic) language data"
 	pkg_install() {
@@ -663,7 +596,6 @@ tesseract-ocr-kur_ara_package() {
 	}
 }
 tesseract-ocr-lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao language data"
 	pkg_install() {
@@ -671,7 +603,6 @@ tesseract-ocr-lao_package() {
 	}
 }
 tesseract-ocr-lat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin language data"
 	pkg_install() {
@@ -679,7 +610,6 @@ tesseract-ocr-lat_package() {
 	}
 }
 tesseract-ocr-lav_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latvian language data"
 	pkg_install() {
@@ -687,7 +617,6 @@ tesseract-ocr-lav_package() {
 	}
 }
 tesseract-ocr-lit_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lithuanian language data"
 	pkg_install() {
@@ -695,7 +624,6 @@ tesseract-ocr-lit_package() {
 	}
 }
 tesseract-ocr-ltz_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Luxembourgish language data"
 	pkg_install() {
@@ -703,7 +631,6 @@ tesseract-ocr-ltz_package() {
 	}
 }
 tesseract-ocr-mal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam language data"
 	pkg_install() {
@@ -711,7 +638,6 @@ tesseract-ocr-mal_package() {
 	}
 }
 tesseract-ocr-mar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Marathi language data"
 	pkg_install() {
@@ -719,7 +645,6 @@ tesseract-ocr-mar_package() {
 	}
 }
 tesseract-ocr-mkd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Macedonian language data"
 	pkg_install() {
@@ -727,7 +652,6 @@ tesseract-ocr-mkd_package() {
 	}
 }
 tesseract-ocr-mlt_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maltese language data"
 	pkg_install() {
@@ -735,7 +659,6 @@ tesseract-ocr-mlt_package() {
 	}
 }
 tesseract-ocr-mon_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Mongolian language data"
 	pkg_install() {
@@ -743,7 +666,6 @@ tesseract-ocr-mon_package() {
 	}
 }
 tesseract-ocr-mri_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Maori language data"
 	pkg_install() {
@@ -751,7 +673,6 @@ tesseract-ocr-mri_package() {
 	}
 }
 tesseract-ocr-msa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malay language data"
 	pkg_install() {
@@ -759,7 +680,6 @@ tesseract-ocr-msa_package() {
 	}
 }
 tesseract-ocr-mya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Burmese language data"
 	pkg_install() {
@@ -767,7 +687,6 @@ tesseract-ocr-mya_package() {
 	}
 }
 tesseract-ocr-nep_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Nepalese language data"
 	pkg_install() {
@@ -775,7 +694,6 @@ tesseract-ocr-nep_package() {
 	}
 }
 tesseract-ocr-nld_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Dutch language data"
 	pkg_install() {
@@ -783,7 +701,6 @@ tesseract-ocr-nld_package() {
 	}
 }
 tesseract-ocr-nor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Norwegian language data"
 	pkg_install() {
@@ -791,7 +708,6 @@ tesseract-ocr-nor_package() {
 	}
 }
 tesseract-ocr-oci_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Occitan (post 1500) language data"
 	pkg_install() {
@@ -799,7 +715,6 @@ tesseract-ocr-oci_package() {
 	}
 }
 tesseract-ocr-ori_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya language data"
 	pkg_install() {
@@ -807,7 +722,6 @@ tesseract-ocr-ori_package() {
 	}
 }
 tesseract-ocr-pan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Panjabi language data"
 	pkg_install() {
@@ -815,7 +729,6 @@ tesseract-ocr-pan_package() {
 	}
 }
 tesseract-ocr-pol_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Polish language data"
 	pkg_install() {
@@ -823,7 +736,6 @@ tesseract-ocr-pol_package() {
 	}
 }
 tesseract-ocr-por_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Portuguese language data"
 	pkg_install() {
@@ -831,7 +743,6 @@ tesseract-ocr-por_package() {
 	}
 }
 tesseract-ocr-pus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Pushto language data"
 	pkg_install() {
@@ -839,7 +750,6 @@ tesseract-ocr-pus_package() {
 	}
 }
 tesseract-ocr-que_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Quechua language data"
 	pkg_install() {
@@ -847,7 +757,6 @@ tesseract-ocr-que_package() {
 	}
 }
 tesseract-ocr-ron_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Romanian language data"
 	pkg_install() {
@@ -855,7 +764,6 @@ tesseract-ocr-ron_package() {
 	}
 }
 tesseract-ocr-rus_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Russian language data"
 	pkg_install() {
@@ -863,7 +771,6 @@ tesseract-ocr-rus_package() {
 	}
 }
 tesseract-ocr-san_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sanskrit language data"
 	pkg_install() {
@@ -871,7 +778,6 @@ tesseract-ocr-san_package() {
 	}
 }
 tesseract-ocr-sin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala language data"
 	pkg_install() {
@@ -879,7 +785,6 @@ tesseract-ocr-sin_package() {
 	}
 }
 tesseract-ocr-slk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovakian language data"
 	pkg_install() {
@@ -887,7 +792,6 @@ tesseract-ocr-slk_package() {
 	}
 }
 tesseract-ocr-slv_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Slovenian language data"
 	pkg_install() {
@@ -895,7 +799,6 @@ tesseract-ocr-slv_package() {
 	}
 }
 tesseract-ocr-snd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sindhi language data"
 	pkg_install() {
@@ -903,7 +806,6 @@ tesseract-ocr-snd_package() {
 	}
 }
 tesseract-ocr-spa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish language data"
 	pkg_install() {
@@ -911,7 +813,6 @@ tesseract-ocr-spa_package() {
 	}
 }
 tesseract-ocr-spa_old_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Spanish (Old) language data"
 	pkg_install() {
@@ -919,7 +820,6 @@ tesseract-ocr-spa_old_package() {
 	}
 }
 tesseract-ocr-sqi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Albanian language data"
 	pkg_install() {
@@ -927,7 +827,6 @@ tesseract-ocr-sqi_package() {
 	}
 }
 tesseract-ocr-srp_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian language data"
 	pkg_install() {
@@ -935,7 +834,6 @@ tesseract-ocr-srp_package() {
 	}
 }
 tesseract-ocr-srp_latn_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Serbian (Latin) language data"
 	pkg_install() {
@@ -943,7 +841,6 @@ tesseract-ocr-srp_latn_package() {
 	}
 }
 tesseract-ocr-sun_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sundanese language data"
 	pkg_install() {
@@ -951,7 +848,6 @@ tesseract-ocr-sun_package() {
 	}
 }
 tesseract-ocr-swa_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swahili language data"
 	pkg_install() {
@@ -959,7 +855,6 @@ tesseract-ocr-swa_package() {
 	}
 }
 tesseract-ocr-swe_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Swedish language data"
 	pkg_install() {
@@ -967,7 +862,6 @@ tesseract-ocr-swe_package() {
 	}
 }
 tesseract-ocr-syr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac language data"
 	pkg_install() {
@@ -975,7 +869,6 @@ tesseract-ocr-syr_package() {
 	}
 }
 tesseract-ocr-tam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil language data"
 	pkg_install() {
@@ -983,7 +876,6 @@ tesseract-ocr-tam_package() {
 	}
 }
 tesseract-ocr-tat_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tatar language data"
 	pkg_install() {
@@ -991,7 +883,6 @@ tesseract-ocr-tat_package() {
 	}
 }
 tesseract-ocr-tel_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu language data"
 	pkg_install() {
@@ -999,7 +890,6 @@ tesseract-ocr-tel_package() {
 	}
 }
 tesseract-ocr-tgk_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tajik language data"
 	pkg_install() {
@@ -1007,7 +897,6 @@ tesseract-ocr-tgk_package() {
 	}
 }
 tesseract-ocr-tgl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tagalog language data"
 	pkg_install() {
@@ -1015,7 +904,6 @@ tesseract-ocr-tgl_package() {
 	}
 }
 tesseract-ocr-tha_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai language data"
 	pkg_install() {
@@ -1023,7 +911,6 @@ tesseract-ocr-tha_package() {
 	}
 }
 tesseract-ocr-tir_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tigrinya language data"
 	pkg_install() {
@@ -1031,7 +918,6 @@ tesseract-ocr-tir_package() {
 	}
 }
 tesseract-ocr-ton_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tonga language data"
 	pkg_install() {
@@ -1039,7 +925,6 @@ tesseract-ocr-ton_package() {
 	}
 }
 tesseract-ocr-tur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Turkish language data"
 	pkg_install() {
@@ -1047,7 +932,6 @@ tesseract-ocr-tur_package() {
 	}
 }
 tesseract-ocr-uig_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uighur language data"
 	pkg_install() {
@@ -1055,7 +939,6 @@ tesseract-ocr-uig_package() {
 	}
 }
 tesseract-ocr-ukr_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ukrainian language data"
 	pkg_install() {
@@ -1063,7 +946,6 @@ tesseract-ocr-ukr_package() {
 	}
 }
 tesseract-ocr-urd_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Urdu language data"
 	pkg_install() {
@@ -1071,7 +953,6 @@ tesseract-ocr-urd_package() {
 	}
 }
 tesseract-ocr-uzb_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek language data"
 	pkg_install() {
@@ -1079,7 +960,6 @@ tesseract-ocr-uzb_package() {
 	}
 }
 tesseract-ocr-uzb_cyrl_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Uzbek (Cyrillic) language data"
 	pkg_install() {
@@ -1087,7 +967,6 @@ tesseract-ocr-uzb_cyrl_package() {
 	}
 }
 tesseract-ocr-vie_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese language data"
 	pkg_install() {
@@ -1095,7 +974,6 @@ tesseract-ocr-vie_package() {
 	}
 }
 tesseract-ocr-yid_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yiddish language data"
 	pkg_install() {
@@ -1103,7 +981,6 @@ tesseract-ocr-yid_package() {
 	}
 }
 tesseract-ocr-yor_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Yoruba language data"
 	pkg_install() {
@@ -1111,7 +988,6 @@ tesseract-ocr-yor_package() {
 	}
 }
 tesseract-ocr-script-Arabic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Arabic script data"
 	pkg_install() {
@@ -1119,7 +995,6 @@ tesseract-ocr-script-Arabic_package() {
 	}
 }
 tesseract-ocr-script-Armenian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Armenian script data"
 	pkg_install() {
@@ -1127,7 +1002,6 @@ tesseract-ocr-script-Armenian_package() {
 	}
 }
 tesseract-ocr-script-Bengali_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Bengali script data"
 	pkg_install() {
@@ -1135,7 +1009,6 @@ tesseract-ocr-script-Bengali_package() {
 	}
 }
 tesseract-ocr-script-Canadian_Aboriginal_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Canadian Aboriginal script data"
 	pkg_install() {
@@ -1143,7 +1016,6 @@ tesseract-ocr-script-Canadian_Aboriginal_package() {
 	}
 }
 tesseract-ocr-script-Cherokee_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cherokee script data"
 	pkg_install() {
@@ -1151,7 +1023,6 @@ tesseract-ocr-script-Cherokee_package() {
 	}
 }
 tesseract-ocr-script-Cyrillic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Cyrillic script data"
 	pkg_install() {
@@ -1159,7 +1030,6 @@ tesseract-ocr-script-Cyrillic_package() {
 	}
 }
 tesseract-ocr-script-Devanagari_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Devanagari script data"
 	pkg_install() {
@@ -1167,7 +1037,6 @@ tesseract-ocr-script-Devanagari_package() {
 	}
 }
 tesseract-ocr-script-Ethiopic_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Ethiopic script data"
 	pkg_install() {
@@ -1175,7 +1044,6 @@ tesseract-ocr-script-Ethiopic_package() {
 	}
 }
 tesseract-ocr-script-Fraktur_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Fraktur script data"
 	pkg_install() {
@@ -1183,7 +1051,6 @@ tesseract-ocr-script-Fraktur_package() {
 	}
 }
 tesseract-ocr-script-Georgian_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Georgian script data"
 	pkg_install() {
@@ -1191,7 +1058,6 @@ tesseract-ocr-script-Georgian_package() {
 	}
 }
 tesseract-ocr-script-Greek_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Greek script data"
 	pkg_install() {
@@ -1199,7 +1065,6 @@ tesseract-ocr-script-Greek_package() {
 	}
 }
 tesseract-ocr-script-Gujarati_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gujarati script data"
 	pkg_install() {
@@ -1207,7 +1072,6 @@ tesseract-ocr-script-Gujarati_package() {
 	}
 }
 tesseract-ocr-script-Gurmukhi_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Gurmukhi script data"
 	pkg_install() {
@@ -1215,7 +1079,6 @@ tesseract-ocr-script-Gurmukhi_package() {
 	}
 }
 tesseract-ocr-script-HanS_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanS script data"
 	pkg_install() {
@@ -1223,7 +1086,6 @@ tesseract-ocr-script-HanS_package() {
 	}
 }
 tesseract-ocr-script-HanT_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - HanT script data"
 	pkg_install() {
@@ -1231,7 +1093,6 @@ tesseract-ocr-script-HanT_package() {
 	}
 }
 tesseract-ocr-script-Hangul_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hangul script data"
 	pkg_install() {
@@ -1239,7 +1100,6 @@ tesseract-ocr-script-Hangul_package() {
 	}
 }
 tesseract-ocr-script-Hebrew_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Hebrew script data"
 	pkg_install() {
@@ -1247,7 +1107,6 @@ tesseract-ocr-script-Hebrew_package() {
 	}
 }
 tesseract-ocr-script-Japanese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Japanese script data"
 	pkg_install() {
@@ -1255,7 +1114,6 @@ tesseract-ocr-script-Japanese_package() {
 	}
 }
 tesseract-ocr-script-Kannada_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Kannada script data"
 	pkg_install() {
@@ -1263,7 +1121,6 @@ tesseract-ocr-script-Kannada_package() {
 	}
 }
 tesseract-ocr-script-Khmer_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Khmer script data"
 	pkg_install() {
@@ -1271,7 +1128,6 @@ tesseract-ocr-script-Khmer_package() {
 	}
 }
 tesseract-ocr-script-Lao_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Lao script data"
 	pkg_install() {
@@ -1279,7 +1135,6 @@ tesseract-ocr-script-Lao_package() {
 	}
 }
 tesseract-ocr-script-Latin_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Latin script data"
 	pkg_install() {
@@ -1287,7 +1142,6 @@ tesseract-ocr-script-Latin_package() {
 	}
 }
 tesseract-ocr-script-Malayalam_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Malayalam script data"
 	pkg_install() {
@@ -1295,7 +1149,6 @@ tesseract-ocr-script-Malayalam_package() {
 	}
 }
 tesseract-ocr-script-Myanmar_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Myanmar script data"
 	pkg_install() {
@@ -1303,7 +1156,6 @@ tesseract-ocr-script-Myanmar_package() {
 	}
 }
 tesseract-ocr-script-Oriya_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Oriya script data"
 	pkg_install() {
@@ -1311,7 +1163,6 @@ tesseract-ocr-script-Oriya_package() {
 	}
 }
 tesseract-ocr-script-Sinhala_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Sinhala script data"
 	pkg_install() {
@@ -1319,7 +1170,6 @@ tesseract-ocr-script-Sinhala_package() {
 	}
 }
 tesseract-ocr-script-Syriac_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Syriac script data"
 	pkg_install() {
@@ -1327,7 +1177,6 @@ tesseract-ocr-script-Syriac_package() {
 	}
 }
 tesseract-ocr-script-Tamil_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tamil script data"
 	pkg_install() {
@@ -1335,7 +1184,6 @@ tesseract-ocr-script-Tamil_package() {
 	}
 }
 tesseract-ocr-script-Telugu_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Telugu script data"
 	pkg_install() {
@@ -1343,7 +1191,6 @@ tesseract-ocr-script-Telugu_package() {
 	}
 }
 tesseract-ocr-script-Thaana_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thaana script data"
 	pkg_install() {
@@ -1351,7 +1198,6 @@ tesseract-ocr-script-Thaana_package() {
 	}
 }
 tesseract-ocr-script-Thai_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Thai script data"
 	pkg_install() {
@@ -1359,7 +1205,6 @@ tesseract-ocr-script-Thai_package() {
 	}
 }
 tesseract-ocr-script-Tibetan_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Tibetan script data"
 	pkg_install() {
@@ -1367,7 +1212,6 @@ tesseract-ocr-script-Tibetan_package() {
 	}
 }
 tesseract-ocr-script-Vietnamese_package() {
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - Vietnamese script data"
 	pkg_install() {
diff --git a/srcpkgs/testssl.sh/template b/srcpkgs/testssl.sh/template
index 2480aa2bce2..493fac73a21 100644
--- a/srcpkgs/testssl.sh/template
+++ b/srcpkgs/testssl.sh/template
@@ -2,7 +2,6 @@
 pkgname=testssl.sh
 version=3.0.2
 revision=1
-archs=noarch
 depends="libressl bind-utils"
 short_desc="Command line tool which checks a server for the support of TLS/SSL"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/tewi-font/template b/srcpkgs/tewi-font/template
index 49e301745d3..4ce6b7c79a1 100644
--- a/srcpkgs/tewi-font/template
+++ b/srcpkgs/tewi-font/template
@@ -2,7 +2,6 @@
 pkgname=tewi-font
 version=2.0.2
 revision=2
-archs=noarch
 hostmakedepends="bdftopcf python3"
 depends="font-util xbps-triggers"
 short_desc="Programming monospace bitmap font"
diff --git a/srcpkgs/texi2html/template b/srcpkgs/texi2html/template
index 9726abd7e4d..7fb2c48e317 100644
--- a/srcpkgs/texi2html/template
+++ b/srcpkgs/texi2html/template
@@ -2,7 +2,6 @@
 pkgname=texi2html
 version=5.0
 revision=1
-archs=noarch
 build_style="gnu-configure"
 hostmakedepends="perl"
 depends="perl"
diff --git a/srcpkgs/texlive-basic/template b/srcpkgs/texlive-basic/template
index 52fbfee52a3..e04c946eb94 100644
--- a/srcpkgs/texlive-basic/template
+++ b/srcpkgs/texlive-basic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-basic
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-bibtexextra/template b/srcpkgs/texlive-bibtexextra/template
index e5954e1c364..1f159c9846c 100644
--- a/srcpkgs/texlive-bibtexextra/template
+++ b/srcpkgs/texlive-bibtexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-bibtexextra
 version=2020.55376
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional BibTeX styles and bibliography databases"
diff --git a/srcpkgs/texlive-core/template b/srcpkgs/texlive-core/template
index 694c8bcb3d0..d5d5c0fa530 100644
--- a/srcpkgs/texlive-core/template
+++ b/srcpkgs/texlive-core/template
@@ -2,7 +2,6 @@
 pkgname=texlive-core
 version=2020.55416
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - core texmf distribution"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-fontsextra/template b/srcpkgs/texlive-fontsextra/template
index a80ea7cd234..f7df53cab6f 100644
--- a/srcpkgs/texlive-fontsextra/template
+++ b/srcpkgs/texlive-fontsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-fontsextra
 version=2020.55407
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - All sorts of extra fonts"
diff --git a/srcpkgs/texlive-formatsextra/template b/srcpkgs/texlive-formatsextra/template
index 85704c43687..d38d08aa8c4 100644
--- a/srcpkgs/texlive-formatsextra/template
+++ b/srcpkgs/texlive-formatsextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-formatsextra
 version=2020.54498
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Collection of extra TeX 'formats'"
diff --git a/srcpkgs/texlive-full/template b/srcpkgs/texlive-full/template
index d6e1c127e0c..249f34ffc48 100644
--- a/srcpkgs/texlive-full/template
+++ b/srcpkgs/texlive-full/template
@@ -2,7 +2,6 @@
 pkgname=texlive-full
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-most>=2020
  texlive-lang>=2020"
diff --git a/srcpkgs/texlive-games/template b/srcpkgs/texlive-games/template
index d5a8209c893..463ef3f8267 100644
--- a/srcpkgs/texlive-games/template
+++ b/srcpkgs/texlive-games/template
@@ -2,7 +2,6 @@
 pkgname=texlive-games
 version=2020.55271
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting board games"
diff --git a/srcpkgs/texlive-humanities/template b/srcpkgs/texlive-humanities/template
index e1b06eacfd4..9c08fa051d8 100644
--- a/srcpkgs/texlive-humanities/template
+++ b/srcpkgs/texlive-humanities/template
@@ -2,7 +2,6 @@
 pkgname=texlive-humanities
 version=2020.55389
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra texlive-pictures"
 short_desc="TeX Live - Packages for humanities, law, linguistics, etc"
diff --git a/srcpkgs/texlive-lang/template b/srcpkgs/texlive-lang/template
index 11469a71bf2..5a33e9cb289 100644
--- a/srcpkgs/texlive-lang/template
+++ b/srcpkgs/texlive-lang/template
@@ -2,7 +2,6 @@
 pkgname=texlive-lang
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive-core>=2020.55416
  texlive-langchinese>=2020.55162
diff --git a/srcpkgs/texlive-langchinese/template b/srcpkgs/texlive-langchinese/template
index 4fa5ee940eb..81301b1aa92 100644
--- a/srcpkgs/texlive-langchinese/template
+++ b/srcpkgs/texlive-langchinese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langchinese
 version=2020.55162
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Chinese"
diff --git a/srcpkgs/texlive-langcyrillic/template b/srcpkgs/texlive-langcyrillic/template
index 80b953954c5..6e351e93600 100644
--- a/srcpkgs/texlive-langcyrillic/template
+++ b/srcpkgs/texlive-langcyrillic/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langcyrillic
 version=2020.54594
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Cyrillic text"
diff --git a/srcpkgs/texlive-langextra/template b/srcpkgs/texlive-langextra/template
index ac20ff46333..2cfe79bdcb5 100644
--- a/srcpkgs/texlive-langextra/template
+++ b/srcpkgs/texlive-langextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langextra
 version=2020.55417
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core texlive-latexextra"
 short_desc="TeX Live - Packages for a bunch of extra languages"
diff --git a/srcpkgs/texlive-langgreek/template b/srcpkgs/texlive-langgreek/template
index fe279f6ea13..9c45215780f 100644
--- a/srcpkgs/texlive-langgreek/template
+++ b/srcpkgs/texlive-langgreek/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langgreek
 version=2020.54512
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Greek"
diff --git a/srcpkgs/texlive-langjapanese/template b/srcpkgs/texlive-langjapanese/template
index cd10461aea0..3beac842576 100644
--- a/srcpkgs/texlive-langjapanese/template
+++ b/srcpkgs/texlive-langjapanese/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langjapanese
 version=2020.55320
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Japanese"
diff --git a/srcpkgs/texlive-langkorean/template b/srcpkgs/texlive-langkorean/template
index 281ac6c1864..cec6361c8f7 100644
--- a/srcpkgs/texlive-langkorean/template
+++ b/srcpkgs/texlive-langkorean/template
@@ -2,7 +2,6 @@
 pkgname=texlive-langkorean
 version=2020.54519
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Fonts and macro packages for typesetting Korean"
diff --git a/srcpkgs/texlive-latexextra/template b/srcpkgs/texlive-latexextra/template
index 6e393f78f8d..d7b9bc0dd5c 100644
--- a/srcpkgs/texlive-latexextra/template
+++ b/srcpkgs/texlive-latexextra/template
@@ -2,7 +2,6 @@
 pkgname=texlive-latexextra
 version=2020.55418
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="perl-File-Which python3-Pygments texlive-core texlive-pictures"
 short_desc="TeX Live - Collection of LaTeX addon packages"
diff --git a/srcpkgs/texlive-minimal/template b/srcpkgs/texlive-minimal/template
index c71ac097c6a..62dca76c0de 100644
--- a/srcpkgs/texlive-minimal/template
+++ b/srcpkgs/texlive-minimal/template
@@ -2,7 +2,6 @@
 pkgname=texlive-minimal
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-core>=2020.55416"
diff --git a/srcpkgs/texlive-most/template b/srcpkgs/texlive-most/template
index 408fe2f9de5..bc62b2a5667 100644
--- a/srcpkgs/texlive-most/template
+++ b/srcpkgs/texlive-most/template
@@ -2,7 +2,6 @@
 pkgname=texlive-most
 version=2020
 revision=1
-archs=noarch
 build_style=meta
 depends="texlive>=20200406
  texlive-BibTeX>=20200406
diff --git a/srcpkgs/texlive-music/template b/srcpkgs/texlive-music/template
index b8a2488a15d..b0f8c9f7546 100644
--- a/srcpkgs/texlive-music/template
+++ b/srcpkgs/texlive-music/template
@@ -2,7 +2,6 @@
 pkgname=texlive-music
 version=2020.54758
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="fontforge python3 texlive-core"
 short_desc="TeX Live - Music typesetting packages"
diff --git a/srcpkgs/texlive-pictures/template b/srcpkgs/texlive-pictures/template
index dee8054f190..24da6c2ea0a 100644
--- a/srcpkgs/texlive-pictures/template
+++ b/srcpkgs/texlive-pictures/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pictures
 version=2020.55342
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Packages for drawing graphics"
diff --git a/srcpkgs/texlive-pstricks/template b/srcpkgs/texlive-pstricks/template
index c76855241de..71103d1b1ee 100644
--- a/srcpkgs/texlive-pstricks/template
+++ b/srcpkgs/texlive-pstricks/template
@@ -2,7 +2,6 @@
 pkgname=texlive-pstricks
 version=2020.55289
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Additional PSTricks packages"
diff --git a/srcpkgs/texlive-publishers/template b/srcpkgs/texlive-publishers/template
index 1e5f646ccf7..cd2e983a9ca 100644
--- a/srcpkgs/texlive-publishers/template
+++ b/srcpkgs/texlive-publishers/template
@@ -2,7 +2,6 @@
 pkgname=texlive-publishers
 version=2020.55415
 revision=1
-archs="noarch"
 build_style="texmf"
 short_desc="TeX Live - Classes and packages for certain publishers"
 maintainer="fosslinux <fosslinux@aussies.space>"
diff --git a/srcpkgs/texlive-science/template b/srcpkgs/texlive-science/template
index 68f358537f7..093e2564709 100644
--- a/srcpkgs/texlive-science/template
+++ b/srcpkgs/texlive-science/template
@@ -2,7 +2,6 @@
 pkgname=texlive-science
 version=2020.55390
 revision=1
-archs="noarch"
 build_style="texmf"
 depends="texlive-core"
 short_desc="TeX Live - Typesetting for mathematatics and science disciplines"
diff --git a/srcpkgs/thefuck/template b/srcpkgs/thefuck/template
index 708971811d3..5dc0263184b 100644
--- a/srcpkgs/thefuck/template
+++ b/srcpkgs/thefuck/template
@@ -2,7 +2,6 @@
 pkgname=thefuck
 version=3.29
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="thefuck"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/thinkpad-scripts/template b/srcpkgs/thinkpad-scripts/template
index 855d42492fb..9d283afe28a 100644
--- a/srcpkgs/thinkpad-scripts/template
+++ b/srcpkgs/thinkpad-scripts/template
@@ -2,7 +2,6 @@
 pkgname=thinkpad-scripts
 version=4.12.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="tps"
 hostmakedepends="gettext python3-setuptools"
diff --git a/srcpkgs/tlp/template b/srcpkgs/tlp/template
index 5b2496afefe..b9ccfcb4614 100644
--- a/srcpkgs/tlp/template
+++ b/srcpkgs/tlp/template
@@ -2,7 +2,6 @@
 pkgname=tlp
 version=1.3.1
 revision=1
-archs=noarch
 wrksrc="TLP-${version}"
 depends="hdparm bash iw util-linux ethtool perl"
 short_desc="Advanced power management tool for Linux"
@@ -39,7 +38,6 @@ do_install() {
 
 tlp-rdw_package() {
 	short_desc="Control the radio device wizard"
-	archs=noarch
 	depends="tlp NetworkManager"
 	pkg_install() {
 		vmove usr/bin/tlp-rdw
diff --git a/srcpkgs/tmux-xpanes/template b/srcpkgs/tmux-xpanes/template
index b01bffc32c6..1499c4eca3a 100644
--- a/srcpkgs/tmux-xpanes/template
+++ b/srcpkgs/tmux-xpanes/template
@@ -2,7 +2,6 @@
 pkgname=tmux-xpanes
 version=4.1.2
 revision=1
-archs=noarch
 short_desc="Awesome way to create multiple tmux panes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="MIT"
diff --git a/srcpkgs/tmuxc/template b/srcpkgs/tmuxc/template
index 7eeffc8c64c..b18a9446d7f 100644
--- a/srcpkgs/tmuxc/template
+++ b/srcpkgs/tmuxc/template
@@ -2,7 +2,6 @@
 pkgname=tmuxc
 version=1.7.1
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Local and remote tmux window manager"
 maintainer="Zach Dykstra <dykstra.zachary@gmail.com>"
diff --git a/srcpkgs/todoman/template b/srcpkgs/todoman/template
index 676412b8d0b..8903b8ad3d6 100644
--- a/srcpkgs/todoman/template
+++ b/srcpkgs/todoman/template
@@ -2,7 +2,6 @@
 pkgname=todoman
 version=3.5.0
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="todoman"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/toot/template b/srcpkgs/toot/template
index e3754e566d1..b614799e0ab 100644
--- a/srcpkgs/toot/template
+++ b/srcpkgs/toot/template
@@ -2,7 +2,6 @@
 pkgname=toot
 version=0.27.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-BeautifulSoup4 python3-requests python3-setuptools python3-wcwidth
diff --git a/srcpkgs/tpm/template b/srcpkgs/tpm/template
index f3c68898e70..7e2ad566087 100644
--- a/srcpkgs/tpm/template
+++ b/srcpkgs/tpm/template
@@ -2,7 +2,6 @@
 pkgname=tpm
 version=1.3.3
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="perl"
 depends="gnupg2"
diff --git a/srcpkgs/trackma/template b/srcpkgs/trackma/template
index 32f4977ac46..967f7ffc3a6 100644
--- a/srcpkgs/trackma/template
+++ b/srcpkgs/trackma/template
@@ -2,7 +2,6 @@
 pkgname=trackma
 version=0.8.2
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-urwid python3-gobject"
diff --git a/srcpkgs/treeline/template b/srcpkgs/treeline/template
index f8830179127..d7ec815d9c9 100644
--- a/srcpkgs/treeline/template
+++ b/srcpkgs/treeline/template
@@ -2,7 +2,6 @@
 pkgname=treeline
 version=3.1.3
 revision=1
-archs=noarch
 wrksrc="TreeLine-${version}"
 pycompile_dirs="usr/share/treeline"
 hostmakedepends="python3"
diff --git a/srcpkgs/tremc/template b/srcpkgs/tremc/template
index 8bba9b83fd1..a47e023c000 100644
--- a/srcpkgs/tremc/template
+++ b/srcpkgs/tremc/template
@@ -2,7 +2,6 @@
 pkgname=tremc
 version=0.9.2
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="python3"
 short_desc="Console client for the BitTorrent client Transmission"
diff --git a/srcpkgs/trident-icons/template b/srcpkgs/trident-icons/template
index a446b5418f1..236c488866f 100644
--- a/srcpkgs/trident-icons/template
+++ b/srcpkgs/trident-icons/template
@@ -2,7 +2,6 @@
 pkgname=trident-icons
 version=2020.03.27
 revision=1
-archs=noarch
 short_desc="Icon themes from Project Trident"
 maintainer="Ken Moore <ken@project-trident.org>"
 license="MIT,GPL-3.0-only"
diff --git a/srcpkgs/triehash/template b/srcpkgs/triehash/template
index 0c7ea1ae50e..6de5e09ced8 100644
--- a/srcpkgs/triehash/template
+++ b/srcpkgs/triehash/template
@@ -2,7 +2,6 @@
 pkgname=triehash
 version=0.3
 revision=1
-archs=noarch
 depends="perl"
 short_desc="Generator for order-preserving minimal perfect hash functions"
 maintainer="mobinmob <mobinmob@disroot.org>"
diff --git a/srcpkgs/tryton/template b/srcpkgs/tryton/template
index cd18ec521b8..605e8ab747c 100644
--- a/srcpkgs/tryton/template
+++ b/srcpkgs/tryton/template
@@ -2,7 +2,6 @@
 pkgname=tryton
 version=5.4.2
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="tryton"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/ttf-bitstream-vera/template b/srcpkgs/ttf-bitstream-vera/template
index 5e97f056bd0..bcd09ea572b 100644
--- a/srcpkgs/ttf-bitstream-vera/template
+++ b/srcpkgs/ttf-bitstream-vera/template
@@ -2,7 +2,6 @@
 pkgname=ttf-bitstream-vera
 version=1.10
 revision=1
-archs=noarch
 depends="font-util"
 short_desc="Bitstream Vera fonts"
 maintainer="human <human@neet.fi>"
diff --git a/srcpkgs/ttf-material-icons/template b/srcpkgs/ttf-material-icons/template
index 51a2409a66d..aa9610410ce 100644
--- a/srcpkgs/ttf-material-icons/template
+++ b/srcpkgs/ttf-material-icons/template
@@ -3,7 +3,6 @@ pkgname=ttf-material-icons
 version=3.0.1
 revision=2
 wrksrc=material-design-icons-${version}
-archs=noarch
 short_desc="Material Design icons by Google"
 maintainer="Michael Carlberg <c@rlberg.se>"
 license=CC
diff --git a/srcpkgs/ttf-ubuntu-font-family/template b/srcpkgs/ttf-ubuntu-font-family/template
index 75d5ac88c83..e5af168fe51 100644
--- a/srcpkgs/ttf-ubuntu-font-family/template
+++ b/srcpkgs/ttf-ubuntu-font-family/template
@@ -2,7 +2,6 @@
 pkgname=ttf-ubuntu-font-family
 version=0.83
 revision=2
-archs=noarch
 wrksrc="ubuntu-font-family-${version}"
 hostmakedepends="unzip"
 depends="font-util"
diff --git a/srcpkgs/tuimoji/template b/srcpkgs/tuimoji/template
index 132d5a5cd3c..2340955960e 100644
--- a/srcpkgs/tuimoji/template
+++ b/srcpkgs/tuimoji/template
@@ -2,7 +2,6 @@
 pkgname=tuimoji
 version=1.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="tuimoji"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/tuir/template b/srcpkgs/tuir/template
index 5d45f9f647c..edc2a9ca22b 100644
--- a/srcpkgs/tuir/template
+++ b/srcpkgs/tuir/template
@@ -2,7 +2,6 @@
 pkgname=tuir
 version=1.29.0
 revision=2
-archs=noarch
 wrksrc="$pkgname-v$version"
 build_style=python3-module
 hostmakedepends="python3-setuptools"
@@ -20,7 +19,6 @@ post_install() {
 }
 
 rtv_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc="Simple terminal viewer for Reddit (transitional dummy package)"
diff --git a/srcpkgs/turses/template b/srcpkgs/turses/template
index e5d2e11c97a..4fb893c86a7 100644
--- a/srcpkgs/turses/template
+++ b/srcpkgs/turses/template
@@ -11,7 +11,6 @@ license="GPL-3"
 homepage="https://pypi.org/project/turses/"
 distfiles="${PYPI_SITE}/t/turses/turses-${version}.tar.gz"
 checksum=46a61541d1acd1338561a198b3011081b91f118415c08b111444cdb24685b396
-archs=noarch
 
 pre_build() {
 	# The package isn't updated for a time and the dependencies have been updated
diff --git a/srcpkgs/tuxpaint-stamps/template b/srcpkgs/tuxpaint-stamps/template
index 2602dfbc666..ae5188f0d6c 100644
--- a/srcpkgs/tuxpaint-stamps/template
+++ b/srcpkgs/tuxpaint-stamps/template
@@ -2,7 +2,6 @@
 pkgname=tuxpaint-stamps
 version=2020.05.29
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_target="install-all"
 short_desc="Stamps set for tuxpaint"
diff --git a/srcpkgs/tuxpaint/template b/srcpkgs/tuxpaint/template
index 6613a1191f3..3ef250ee0e0 100644
--- a/srcpkgs/tuxpaint/template
+++ b/srcpkgs/tuxpaint/template
@@ -25,7 +25,6 @@ post_install() {
 }
 
 tuxpaint-data_package() {
-	archs=noarch
 	short_desc="${short_desc} - data and docs"
 	python_version=2
 	pkg_install() {
diff --git a/srcpkgs/tvbrowser/template b/srcpkgs/tvbrowser/template
index ebe21cc5a34..6f88a7f919b 100644
--- a/srcpkgs/tvbrowser/template
+++ b/srcpkgs/tvbrowser/template
@@ -2,7 +2,6 @@
 pkgname=tvbrowser
 version=4.2.1
 revision=1
-archs=noarch
 depends="java-runtime>=11 hicolor-icon-theme bash"
 short_desc="Ad free open source TV guide for more than 1000 channels"
 maintainer="Stefan Mühlinghaus <jazzman@alphabreed.com>"
diff --git a/srcpkgs/twaindsm/template b/srcpkgs/twaindsm/template
index 15292267fec..f9d5e082692 100644
--- a/srcpkgs/twaindsm/template
+++ b/srcpkgs/twaindsm/template
@@ -39,7 +39,6 @@ twaindsm-devel_package() {
 
 twaindsm-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmkdir usr/share/doc/${pkgname}
 		mv ${wrksrc}/TWAIN_DSM/doc/html ${PKGDESTDIR}/usr/share/doc/${pkgname}
diff --git a/srcpkgs/twemoji/template b/srcpkgs/twemoji/template
index e0201e88a96..c6b9e888ff9 100644
--- a/srcpkgs/twemoji/template
+++ b/srcpkgs/twemoji/template
@@ -2,7 +2,6 @@
 pkgname=twemoji
 version=12.0.1
 revision=1
-archs=noarch
 wrksrc="TwitterColorEmoji-SVGinOT-Linux-${version}"
 depends="font-util"
 short_desc="Twitter emoji font set in color and b&w"
diff --git a/srcpkgs/txt2man/template b/srcpkgs/txt2man/template
index edb10e56599..c385f2411ea 100644
--- a/srcpkgs/txt2man/template
+++ b/srcpkgs/txt2man/template
@@ -2,7 +2,6 @@
 pkgname=txt2man
 version=1.7.0
 revision=1
-archs=noarch
 wrksrc=${pkgname}-${pkgname}-${version}
 short_desc="Converts text to man page"
 maintainer="Diogo Leal <diogo@diogoleal.com>"
diff --git a/srcpkgs/tzdata/template b/srcpkgs/tzdata/template
index 74d2f335c61..2f68c5040b0 100644
--- a/srcpkgs/tzdata/template
+++ b/srcpkgs/tzdata/template
@@ -2,7 +2,6 @@
 pkgname=tzdata
 version=2020a
 revision=1
-archs=noarch
 wrksrc=tzdata
 create_wrksrc=yes
 hostmakedepends="tzutils"
diff --git a/srcpkgs/tzupdate/template b/srcpkgs/tzupdate/template
index 382a653d9d4..b5a025a8a4c 100644
--- a/srcpkgs/tzupdate/template
+++ b/srcpkgs/tzupdate/template
@@ -2,7 +2,6 @@
 pkgname=tzupdate
 version=2.0.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-setuptools python3-requests"
diff --git a/srcpkgs/u-boot-menu/template b/srcpkgs/u-boot-menu/template
index f080279af82..d6524f0d859 100644
--- a/srcpkgs/u-boot-menu/template
+++ b/srcpkgs/u-boot-menu/template
@@ -2,7 +2,6 @@
 pkgname=u-boot-menu
 version=0.1
 revision=1
-archs=noarch
 conf_files="/etc/default/extlinux"
 short_desc="Create an u-boot menu with currently available kernels"
 maintainer="Remi Pommarel <repk@triplefau.lt>"
diff --git a/srcpkgs/uberwriter/template b/srcpkgs/uberwriter/template
index a02b4dc992e..35ab2e2acd2 100644
--- a/srcpkgs/uberwriter/template
+++ b/srcpkgs/uberwriter/template
@@ -4,7 +4,6 @@ pkgname=uberwriter
 version=12.11.02
 revision=2
 build_style=meta
-archs=noarch
 depends="apostrophe"
 short_desc="Original fork of apostrophe"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/udiskie/template b/srcpkgs/udiskie/template
index 36515e7f3f7..98a5d43d727 100644
--- a/srcpkgs/udiskie/template
+++ b/srcpkgs/udiskie/template
@@ -2,7 +2,6 @@
 pkgname=udiskie
 version=2.2.0
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools python3-gobject"
 depends="gtk+3 libnotify python3-docopt python3-gobject python3-keyutils
diff --git a/srcpkgs/ufetch/template b/srcpkgs/ufetch/template
index 1303de65884..c62d05690ba 100644
--- a/srcpkgs/ufetch/template
+++ b/srcpkgs/ufetch/template
@@ -2,7 +2,6 @@
 pkgname=ufetch
 version=0.2
 revision=1
-archs=noarch
 wrksrc="ufetch-v${version}"
 depends="xbps coreutils ncurses"
 short_desc="Tiny system info for Void"
diff --git a/srcpkgs/ufoai/template b/srcpkgs/ufoai/template
index 6463d2c47c6..e98c615766f 100644
--- a/srcpkgs/ufoai/template
+++ b/srcpkgs/ufoai/template
@@ -69,7 +69,6 @@ post_install() {
 
 ufoai-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/ufoai/base/*.pk3
 		vmove usr/share/ufoai/base/i18n
diff --git a/srcpkgs/ufw-extras/template b/srcpkgs/ufw-extras/template
index 0054a0ac19e..eba36a4314d 100644
--- a/srcpkgs/ufw-extras/template
+++ b/srcpkgs/ufw-extras/template
@@ -2,7 +2,6 @@
 pkgname=ufw-extras
 version=0.5
 revision=1
-archs=noarch
 depends="ufw"
 short_desc="Extra configuration files for Uncomplicated Firewall (ufw)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/ufw/template b/srcpkgs/ufw/template
index 0bf2a3a0b76..b8d8bb58c80 100644
--- a/srcpkgs/ufw/template
+++ b/srcpkgs/ufw/template
@@ -2,7 +2,6 @@
 pkgname=ufw
 version=0.36
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="ufw"
 conf_files="
diff --git a/srcpkgs/uhd/template b/srcpkgs/uhd/template
index b0484732ea9..e6d1ea9cbb1 100644
--- a/srcpkgs/uhd/template
+++ b/srcpkgs/uhd/template
@@ -39,7 +39,6 @@ uhd-devel_package() {
 
 uhd-doc_package() {
 	short_desc+=" - doc files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/unicode-emoji/template b/srcpkgs/unicode-emoji/template
index bc674e3aa54..17d2be29376 100644
--- a/srcpkgs/unicode-emoji/template
+++ b/srcpkgs/unicode-emoji/template
@@ -2,7 +2,6 @@
 pkgname=unicode-emoji
 version=12.1
 revision=1
-archs=noarch
 create_wrksrc=yes
 short_desc="Unicode Emoji Data Files"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/unknown-horizons/template b/srcpkgs/unknown-horizons/template
index 6e81970800d..0a320f621e8 100644
--- a/srcpkgs/unknown-horizons/template
+++ b/srcpkgs/unknown-horizons/template
@@ -2,7 +2,6 @@
 pkgname=unknown-horizons
 version=2019.1
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3 intltool git python3-Pillow"
 depends="python3 fifengine python3-yaml"
diff --git a/srcpkgs/unoconv/template b/srcpkgs/unoconv/template
index 1a6c2c913e9..2015cb36e57 100644
--- a/srcpkgs/unoconv/template
+++ b/srcpkgs/unoconv/template
@@ -2,7 +2,6 @@
 pkgname=unoconv
 version=0.9.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 hostmakedepends="asciidoc git"
 depends="python"
diff --git a/srcpkgs/unp/template b/srcpkgs/unp/template
index ba43e043502..eb2f0624d42 100644
--- a/srcpkgs/unp/template
+++ b/srcpkgs/unp/template
@@ -2,7 +2,6 @@
 pkgname=unp
 version="2.0~pre7+nmu1"
 revision=2
-archs=noarch
 hostmakedepends="gettext"
 makedepends="perl"
 depends="perl"
diff --git a/srcpkgs/urbanterror-data/template b/srcpkgs/urbanterror-data/template
index 987dca0e366..e0e08224843 100644
--- a/srcpkgs/urbanterror-data/template
+++ b/srcpkgs/urbanterror-data/template
@@ -2,7 +2,6 @@
 pkgname=urbanterror-data
 version=4.3.4
 revision=1
-archs=noarch
 wrksrc="UrbanTerror43"
 hostmakedepends="unzip"
 short_desc="Urbanterror data files"
diff --git a/srcpkgs/urlscan/template b/srcpkgs/urlscan/template
index 2bb1688dad7..c13e6dafaba 100644
--- a/srcpkgs/urlscan/template
+++ b/srcpkgs/urlscan/template
@@ -2,7 +2,6 @@
 pkgname=urlscan
 version=0.9.4
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlscan"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urlwatch/template b/srcpkgs/urlwatch/template
index ee56c05689f..dc4a775cf9b 100644
--- a/srcpkgs/urlwatch/template
+++ b/srcpkgs/urlwatch/template
@@ -2,7 +2,6 @@
 pkgname=urlwatch
 version=2.17
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="urlwatch"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/urxvt-perls/template b/srcpkgs/urxvt-perls/template
index 8a62a338283..7ee582152ed 100644
--- a/srcpkgs/urxvt-perls/template
+++ b/srcpkgs/urxvt-perls/template
@@ -2,7 +2,6 @@
 pkgname=urxvt-perls
 version=2.3
 revision=1
-archs=noarch
 depends="rxvt-unicode perl"
 short_desc="Perl extensions for the rxvt-unicode terminal emulator"
 maintainer="nem <nem@posteo.net>"
diff --git a/srcpkgs/usb-modeswitch-data/template b/srcpkgs/usb-modeswitch-data/template
index b23431f54f1..51b3c653b76 100644
--- a/srcpkgs/usb-modeswitch-data/template
+++ b/srcpkgs/usb-modeswitch-data/template
@@ -2,7 +2,6 @@
 pkgname=usb-modeswitch-data
 version=20191128
 revision=1
-archs=noarch
 build_style=gnu-makefile
 make_install_args="RULESDIR=/usr/lib/udev/rules.d"
 short_desc="Mode switching tool for controlling 'multi-mode' USB devices (data files)"
diff --git a/srcpkgs/vala-panel-appmenu/template b/srcpkgs/vala-panel-appmenu/template
index 0913a270047..83f9d0ed72e 100644
--- a/srcpkgs/vala-panel-appmenu/template
+++ b/srcpkgs/vala-panel-appmenu/template
@@ -86,7 +86,6 @@ mate-panel-appmenu_package() {
 
 vala-panel-appmenu-data_package() {
 	short_desc+=" - common files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/locale
 		vmove usr/share/glib-2.0/schemas/org.valapanel.appmenu.gschema.xml
diff --git a/srcpkgs/vala/template b/srcpkgs/vala/template
index e958825f196..25da83cf23d 100644
--- a/srcpkgs/vala/template
+++ b/srcpkgs/vala/template
@@ -46,7 +46,6 @@ vala-devel_package() {
 }
 
 vala-doc_package() {
-	archs=noarch
 	depends="vala-${version}_${revision}"
 	short_desc+=" - devhelp documentation"
 	pkg_install() {
diff --git a/srcpkgs/variety/template b/srcpkgs/variety/template
index 651d1c87641..20a00f3549d 100644
--- a/srcpkgs/variety/template
+++ b/srcpkgs/variety/template
@@ -2,7 +2,6 @@
 pkgname=variety
 version=0.8.3
 revision=1
-archs=noarch
 build_style=python3-module
 pycompile_module="jumble variety variety_lib"
 pycompile_dirs="usr/share/variety/plugins"
diff --git a/srcpkgs/vdirsyncer/template b/srcpkgs/vdirsyncer/template
index 13b20f5d8c0..9b15a76a963 100644
--- a/srcpkgs/vdirsyncer/template
+++ b/srcpkgs/vdirsyncer/template
@@ -2,7 +2,6 @@
 pkgname=vdirsyncer
 version=0.16.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-atomicwrites python3-click python3-click-log
diff --git a/srcpkgs/vdrift/template b/srcpkgs/vdrift/template
index 290288696f6..900d01481d9 100644
--- a/srcpkgs/vdrift/template
+++ b/srcpkgs/vdrift/template
@@ -35,7 +35,6 @@ post_install() {
 
 vdrift-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/vdrift
 	}
diff --git a/srcpkgs/vidcutter/template b/srcpkgs/vidcutter/template
index 6ca85d4e766..54065817a84 100644
--- a/srcpkgs/vidcutter/template
+++ b/srcpkgs/vidcutter/template
@@ -2,7 +2,6 @@
 pkgname=vidcutter
 version=6.0.0
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="vidcutter"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/vigra/template b/srcpkgs/vigra/template
index 09ffcff4f2a..ac7a79db23e 100644
--- a/srcpkgs/vigra/template
+++ b/srcpkgs/vigra/template
@@ -31,7 +31,6 @@ post_install() {
 }
 
 vigra-doc_package() {
-	archs=noarch
 	depends="vigra>=${version}_${revision}"
 	short_desc+=" - documentation"
 	pkg_install() {
diff --git a/srcpkgs/vim-colorschemes/template b/srcpkgs/vim-colorschemes/template
index a018fc4d501..01683376b04 100644
--- a/srcpkgs/vim-colorschemes/template
+++ b/srcpkgs/vim-colorschemes/template
@@ -3,7 +3,6 @@ pkgname=vim-colorschemes
 version=20170822
 revision=1
 _commit=eab315701f4627967fd62582eefc4e37a3745786
-archs=noarch
 short_desc="Vim colorschemes"
 maintainer="lemmi <lemmi@nerd2nerd.org>"
 license="GPL-3"
diff --git a/srcpkgs/vim-gnupg/template b/srcpkgs/vim-gnupg/template
index 9cb1d79f000..903af68738d 100644
--- a/srcpkgs/vim-gnupg/template
+++ b/srcpkgs/vim-gnupg/template
@@ -2,7 +2,6 @@
 pkgname=vim-gnupg
 version=2.6.1
 revision=1
-archs=noarch
 depends="vim-common gnupg"
 short_desc="Plugin for transparent editing of gpg encrypted files"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/vim/template b/srcpkgs/vim/template
index 4585d99624f..e0becffaea6 100644
--- a/srcpkgs/vim/template
+++ b/srcpkgs/vim/template
@@ -112,7 +112,6 @@ do_install() {
 vim-common_package() {
 	short_desc+=" - common files"
 	depends="xxd"
-	archs=noarch
 	alternatives="
 	 vi:ex:/usr/bin/vim
 	 vi:ex.1:/usr/share/man/man1/vim.1
diff --git a/srcpkgs/vips/template b/srcpkgs/vips/template
index 5639fbcb01f..cc50b2ac39f 100644
--- a/srcpkgs/vips/template
+++ b/srcpkgs/vips/template
@@ -69,7 +69,6 @@ libvips-devel_package() {
 }
 
 libvips-doc_package() {
-	archs=noarch
 	short_desc+=" - documentation"
 	pkg_install() {
 		vmove usr/share/gtk-doc
diff --git a/srcpkgs/virt-manager/template b/srcpkgs/virt-manager/template
index db7734b6812..1920a937ab3 100644
--- a/srcpkgs/virt-manager/template
+++ b/srcpkgs/virt-manager/template
@@ -2,7 +2,6 @@
 pkgname=virt-manager
 version=2.2.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="intltool python3-devel glib-devel gtk-update-icon-cache
  python3-gobject libosinfo libvirt-python3 libxml2-python3 python3-requests"
@@ -23,7 +22,6 @@ post_install() {
 }
 
 virt-manager-tools_package() {
-	archs=noarch
 	short_desc="Programs to create and clone virtual machines"
 	depends="libosinfo python3-gobject libvirt-python3 python3-urllib3 libxml2-python3 python3-requests"
 	pycompile_dirs="/usr/share/${sourcepkg}"
diff --git a/srcpkgs/virtme/template b/srcpkgs/virtme/template
index ebf37c59c6c..8a658600f70 100644
--- a/srcpkgs/virtme/template
+++ b/srcpkgs/virtme/template
@@ -2,7 +2,6 @@
 pkgname=virtme
 version=0.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="virtme"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/virtualbox-ose/template b/srcpkgs/virtualbox-ose/template
index f1184e6a6fc..ef5aed6c95e 100644
--- a/srcpkgs/virtualbox-ose/template
+++ b/srcpkgs/virtualbox-ose/template
@@ -121,7 +121,6 @@ virtualbox-ose-dkms_package() {
 	short_desc+=" - kernel module sources for dkms"
 	dkms_modules="virtualbox-ose ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
@@ -169,7 +168,6 @@ virtualbox-ose-guest-dkms_package() {
 	short_desc+=" - guest addition module source for dkms"
 	dkms_modules="virtualbox-ose-guest ${version}"
 	depends="dkms"
-	archs=noarch
 
 	pkg_install() {
 		source ${wrksrc}/env.sh
diff --git a/srcpkgs/virtualenvwrapper/template b/srcpkgs/virtualenvwrapper/template
index 55846f10531..af8e7bb15a9 100644
--- a/srcpkgs/virtualenvwrapper/template
+++ b/srcpkgs/virtualenvwrapper/template
@@ -2,7 +2,6 @@
 pkgname=virtualenvwrapper
 version=4.8.4
 revision=3
-archs=noarch
 build_style=python3-module
 pycompile_module="virtualenvwrapper"
 hostmakedepends="python3-setuptools python3-pbr"
diff --git a/srcpkgs/visidata/template b/srcpkgs/visidata/template
index c5c3ae7c82e..9a57496edc3 100644
--- a/srcpkgs/visidata/template
+++ b/srcpkgs/visidata/template
@@ -2,7 +2,6 @@
 pkgname=visidata
 version=1.5.2
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="visidata"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/void-artwork/template b/srcpkgs/void-artwork/template
index ecfc2b9b5e6..dc9f08cc3cc 100644
--- a/srcpkgs/void-artwork/template
+++ b/srcpkgs/void-artwork/template
@@ -2,7 +2,6 @@
 pkgname=void-artwork
 version=20170517
 revision=2
-archs=noarch
 short_desc="Void Linux artwork"
 maintainer="Enno Boland <gottox@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-docs/template b/srcpkgs/void-docs/template
index 1e9845a8621..00601b87a54 100644
--- a/srcpkgs/void-docs/template
+++ b/srcpkgs/void-docs/template
@@ -2,7 +2,6 @@
 pkgname=void-docs
 version=2020.08.18
 revision=2
-archs=noarch
 hostmakedepends="mdBook fd pandoc texlive perl perl-JSON"
 short_desc="Documentation for Void Linux"
 maintainer="Érico Nogueira <ericonr@disroot.org>"
diff --git a/srcpkgs/void-release-keys/template b/srcpkgs/void-release-keys/template
index f9451a73b7b..f0c7a46f354 100644
--- a/srcpkgs/void-release-keys/template
+++ b/srcpkgs/void-release-keys/template
@@ -2,7 +2,6 @@
 pkgname=void-release-keys
 version=1
 revision=1
-archs=noarch
 short_desc="Void Linux Release Keys"
 maintainer="Void Release Engineering <releases@voidlinux.org>"
 license="Public domain"
diff --git a/srcpkgs/void-repo-nonfree/template b/srcpkgs/void-repo-nonfree/template
index 02410a5b72a..98706c49041 100644
--- a/srcpkgs/void-repo-nonfree/template
+++ b/srcpkgs/void-repo-nonfree/template
@@ -2,7 +2,6 @@
 pkgname=void-repo-nonfree
 version=9
 revision=4
-archs=noarch
 build_style=meta
 short_desc="Void Linux drop-in file for the nonfree repository"
 maintainer="Orphaned <orphan@voidlinux.org>"
@@ -34,7 +33,6 @@ do_install() {
 }
 
 void-repo-debug_package() {
-	archs=noarch
 	short_desc="${short_desc/nonfree/debug}"
 	pkg_install() {
 		vmove usr/share/xbps.d/20-repository-debug.conf
diff --git a/srcpkgs/void-updates/template b/srcpkgs/void-updates/template
index 97236f068c8..d90cbfb3ca5 100644
--- a/srcpkgs/void-updates/template
+++ b/srcpkgs/void-updates/template
@@ -2,7 +2,6 @@
 pkgname=void-updates
 version=20190330
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="git curl"
 short_desc="Void Linux package updates"
diff --git a/srcpkgs/volctl/template b/srcpkgs/volctl/template
index 3280a8ed5d0..420db91ddcb 100644
--- a/srcpkgs/volctl/template
+++ b/srcpkgs/volctl/template
@@ -2,7 +2,6 @@
 pkgname=volctl
 version=0.7.8
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject pulseaudio desktop-file-utils"
diff --git a/srcpkgs/voltron/template b/srcpkgs/voltron/template
index 23731b3e01d..501df81b4fc 100644
--- a/srcpkgs/voltron/template
+++ b/srcpkgs/voltron/template
@@ -2,7 +2,6 @@
 pkgname=voltron
 version=0.1.7
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-blessed python3-Flask python3-Pygments python3-pysigset
diff --git a/srcpkgs/vpm/template b/srcpkgs/vpm/template
index a1b826c402f..daf0db65ffc 100644
--- a/srcpkgs/vpm/template
+++ b/srcpkgs/vpm/template
@@ -2,7 +2,6 @@
 pkgname=vpm
 version=1.3
 revision=1
-archs=noarch
 short_desc="XBPS package management helper for VoidLinux"
 maintainer="Armin Jenewein <github@m2m.pm>"
 license="GPL-3.0-or-later"
diff --git a/srcpkgs/vpnc-scripts/template b/srcpkgs/vpnc-scripts/template
index 811bd9a3d95..dd58c857083 100644
--- a/srcpkgs/vpnc-scripts/template
+++ b/srcpkgs/vpnc-scripts/template
@@ -2,7 +2,6 @@
 pkgname=vpnc-scripts
 version=20190611
 revision=1
-archs=noarch
 short_desc="Network configuration scripts for VPNC and OpenConnect"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="GPL-2.0-or-later"
diff --git a/srcpkgs/vpnd/template b/srcpkgs/vpnd/template
index fa4222ae372..9f062291564 100644
--- a/srcpkgs/vpnd/template
+++ b/srcpkgs/vpnd/template
@@ -2,7 +2,6 @@
 pkgname=vpnd
 version=0.1.3
 revision=1
-archs=noarch
 depends="bash"
 conf_files="/etc/vpnd.conf"
 short_desc="Package update notifier daemon for Void Linux"
diff --git a/srcpkgs/vsv/template b/srcpkgs/vsv/template
index 0144340eb46..230f5b52ff5 100644
--- a/srcpkgs/vsv/template
+++ b/srcpkgs/vsv/template
@@ -2,7 +2,6 @@
 pkgname=vsv
 version=1.3.4
 revision=1
-archs=noarch
 depends="bash coreutils psmisc"
 short_desc="Manage and view runit services"
 maintainer="Dave Eddy <dave@daveeddy.com>"
diff --git a/srcpkgs/warsow-data/template b/srcpkgs/warsow-data/template
index c9c80e71f84..01e9a2e71ef 100644
--- a/srcpkgs/warsow-data/template
+++ b/srcpkgs/warsow-data/template
@@ -2,7 +2,6 @@
 pkgname=warsow-data
 version=2.1
 revision=1
-archs=noarch
 wrksrc="warsow_${version/./}"
 short_desc="Free online multiplayer competitive FPS (data files)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/warzone2100/template b/srcpkgs/warzone2100/template
index cc425c6072a..7f0319dfcd8 100644
--- a/srcpkgs/warzone2100/template
+++ b/srcpkgs/warzone2100/template
@@ -19,7 +19,6 @@ checksum=ea2cd7f016118a89244ebef8ce9424f71c060bcd5895b791d3e1cec02b555b69
 nocross="fails to detect SDL2 when cross-compiling"
 
 warzone2100-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/doc
diff --git a/srcpkgs/wayland-protocols/template b/srcpkgs/wayland-protocols/template
index 353d3f3d7f7..160dae706f9 100644
--- a/srcpkgs/wayland-protocols/template
+++ b/srcpkgs/wayland-protocols/template
@@ -2,7 +2,6 @@
 pkgname=wayland-protocols
 version=1.20
 revision=3
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config wayland-devel automake"
 depends="libffi-devel"
diff --git a/srcpkgs/weather/template b/srcpkgs/weather/template
index 5676d81988e..978b31053fb 100644
--- a/srcpkgs/weather/template
+++ b/srcpkgs/weather/template
@@ -2,7 +2,6 @@
 pkgname=weather
 version=2.4
 revision=1
-archs=noarch
 depends="python3"
 conf_files="/etc/weatherrc"
 short_desc="CLI utility for current (METAR) weather conditions and forecasts"
diff --git a/srcpkgs/wee-slack/template b/srcpkgs/wee-slack/template
index 95487cde249..9d083c4dc73 100644
--- a/srcpkgs/wee-slack/template
+++ b/srcpkgs/wee-slack/template
@@ -2,7 +2,6 @@
 pkgname=wee-slack
 version=2.6.0
 revision=1
-archs=noarch
 depends="weechat weechat-python python3-websocket-client"
 short_desc="WeeChat plugin for Slack.com"
 maintainer="Renato Aguiar <renato@renatoaguiar.net>"
diff --git a/srcpkgs/wesnoth/template b/srcpkgs/wesnoth/template
index 92921f571fe..39b4751be6f 100644
--- a/srcpkgs/wesnoth/template
+++ b/srcpkgs/wesnoth/template
@@ -22,7 +22,6 @@ post_install() {
 }
 
 wesnoth-data_package() {
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/wesnoth
 	}
diff --git a/srcpkgs/wfuzz/template b/srcpkgs/wfuzz/template
index 3d086157137..33bd15c4dd9 100644
--- a/srcpkgs/wfuzz/template
+++ b/srcpkgs/wfuzz/template
@@ -2,7 +2,6 @@
 pkgname=wfuzz
 version=2.4.7
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-chardet python3-curl python3-future python3-lxml python3-parse
diff --git a/srcpkgs/wgetpaste/template b/srcpkgs/wgetpaste/template
index 94cb687eedc..56eed95485a 100644
--- a/srcpkgs/wgetpaste/template
+++ b/srcpkgs/wgetpaste/template
@@ -2,7 +2,6 @@
 pkgname=wgetpaste
 version=2.29
 revision=1
-archs=noarch
 depends="bash wget"
 short_desc="Script that automates pasting to a number of pastebin services"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/when/template b/srcpkgs/when/template
index eb7f52f0996..5da95abdee0 100644
--- a/srcpkgs/when/template
+++ b/srcpkgs/when/template
@@ -2,7 +2,6 @@
 pkgname=when
 version=1.1.39
 revision=1
-archs=noarch
 wrksrc=when_dist
 depends="perl"
 short_desc="Minimalistic personal calendar program"
diff --git a/srcpkgs/wicd/template b/srcpkgs/wicd/template
index fe0fe79d3c8..c32f08c91aa 100644
--- a/srcpkgs/wicd/template
+++ b/srcpkgs/wicd/template
@@ -2,7 +2,6 @@
 pkgname=wicd
 version=1.7.4
 revision=4
-archs=noarch
 pycompile_module="wicd"
 pycompile_dirs="usr/lib/wicd usr/share/wicd"
 hostmakedepends="python python-setuptools python-Babel"
@@ -43,7 +42,6 @@ do_install() {
 }
 
 wicd-gtk_package() {
-	archs=noarch
 	depends="wicd>=${version} pygtk python-notify shared-mime-info desktop-file-utils hicolor-icon-theme"
 	short_desc+=" - GTK UI"
 	pycompile_dirs="usr/share/wicd/gtk"
diff --git a/srcpkgs/widelands-maps/template b/srcpkgs/widelands-maps/template
index 5f856fd6089..f375a49f63d 100644
--- a/srcpkgs/widelands-maps/template
+++ b/srcpkgs/widelands-maps/template
@@ -8,7 +8,6 @@ license="GPL-2"
 homepage="http://wl.widelands.org/maps/"
 distfiles="http://distfiles.voidlinux.de/${pkgname}-${version}/${pkgname}-${version}.tar.xz"
 checksum=2029d8e72efedaa2f81f3b99d2d14f732964ac71bf5d563ae18321ace5ddf531
-archs=noarch
 
 do_install() {
 	vmkdir usr/share/widelands
diff --git a/srcpkgs/widelands/template b/srcpkgs/widelands/template
index 061040d9ae4..d2c65c04fda 100644
--- a/srcpkgs/widelands/template
+++ b/srcpkgs/widelands/template
@@ -43,7 +43,6 @@ post_install() {
 }
 
 widelands-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/widelands
diff --git a/srcpkgs/wifi-firmware/template b/srcpkgs/wifi-firmware/template
index d48d21b3aec..c044014a7f0 100644
--- a/srcpkgs/wifi-firmware/template
+++ b/srcpkgs/wifi-firmware/template
@@ -2,7 +2,6 @@
 pkgname=wifi-firmware
 version=1.3
 revision=3
-archs=noarch
 build_style=meta
 depends="ipw2100-firmware ipw2200-firmware zd1211-firmware"
 short_desc="WiFi firmware meta-package"
diff --git a/srcpkgs/wifish/template b/srcpkgs/wifish/template
index 64252790947..b8c4067ddee 100644
--- a/srcpkgs/wifish/template
+++ b/srcpkgs/wifish/template
@@ -5,7 +5,6 @@ revision=1
 depends="wpa_supplicant gawk"
 short_desc="Simple wifi tool"
 maintainer="bougyman <bougyman@rubyists.com>"
-archs=noarch
 license="wtfpl"
 homepage="http://github.com/bougyman/wifish"
 distfiles="https://github.com/bougyman/wifish/archive/${version}.tar.gz"
diff --git a/srcpkgs/wine-gecko/template b/srcpkgs/wine-gecko/template
index 6216c6c8dff..fd0988a88c8 100644
--- a/srcpkgs/wine-gecko/template
+++ b/srcpkgs/wine-gecko/template
@@ -2,7 +2,6 @@
 pkgname=wine-gecko
 version=2.47.1
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mozilla Gecko Layout Engine for WINE (32bit)"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine-mono/template b/srcpkgs/wine-mono/template
index 02072ab807b..e74c5ed0166 100644
--- a/srcpkgs/wine-mono/template
+++ b/srcpkgs/wine-mono/template
@@ -2,7 +2,6 @@
 pkgname=wine-mono
 version=5.1.0
 revision=1
-archs=noarch
 build_style=fetch
 short_desc="Mono built for running .NET applications with WINE"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/wine/template b/srcpkgs/wine/template
index 7dbe6bcf9ef..3038037adcb 100644
--- a/srcpkgs/wine/template
+++ b/srcpkgs/wine/template
@@ -89,7 +89,6 @@ wine-devel_package() {
 }
 
 wine-common_package() {
-	archs="noarch"
 	short_desc+=" - common files"
 	binfmts="/usr/bin/wine --magic MZ"
 	pkg_install() {
diff --git a/srcpkgs/winetricks/template b/srcpkgs/winetricks/template
index 57358041ee6..a352cfb6092 100644
--- a/srcpkgs/winetricks/template
+++ b/srcpkgs/winetricks/template
@@ -2,7 +2,6 @@
 pkgname=winetricks
 version=20200412
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="cabextract unzip xmessage" # actually it depends on wine
 short_desc="Script to install various redistributable runtime libraries in Wine"
diff --git a/srcpkgs/wok/template b/srcpkgs/wok/template
index bd1b6278e8c..42beab7a00b 100644
--- a/srcpkgs/wok/template
+++ b/srcpkgs/wok/template
@@ -2,7 +2,6 @@
 pkgname=wok
 version=1.1.1
 revision=4
-archs=noarch
 build_style=python2-module
 pycompile_module="wok"
 hostmakedepends="python-devel python-setuptools"
diff --git a/srcpkgs/words-mnemonic/template b/srcpkgs/words-mnemonic/template
index 65fd6f5b177..41ac40b25e5 100644
--- a/srcpkgs/words-mnemonic/template
+++ b/srcpkgs/words-mnemonic/template
@@ -3,7 +3,6 @@ pkgname=words-mnemonic
 version=20150217
 revision=3
 build_style=fetch
-archs=noarch
 short_desc="Word list from the Mnemonic encoder project"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
 # see https://github.com/singpolyma/mnemonicode/blob/master/mn_wordlist.c
diff --git a/srcpkgs/words-web2/template b/srcpkgs/words-web2/template
index 262f92db486..8865f605e81 100644
--- a/srcpkgs/words-web2/template
+++ b/srcpkgs/words-web2/template
@@ -13,7 +13,6 @@ distfiles="https://svnweb.freebsd.org/base/head/share/dict/README?revision=25790
 checksum="0bebe63be8ea1263c04c9ef40fbb1a88c242b0b53db32bd6c8d27ad5afffb183
  a80b7cac20dff2fd92e59bb58d2d581efa9b965756a8c8f03f754d3d98e92723
  9313e251fee3e56204db2b284346d61c3a80ce613d7a077c5674f15f9cb33ab3"
-archs=noarch
 
 do_install() {
 	vinstall web2 0644 /usr/share/dict
diff --git a/srcpkgs/wpgtk/template b/srcpkgs/wpgtk/template
index 4692074cd04..d63a74663f6 100644
--- a/srcpkgs/wpgtk/template
+++ b/srcpkgs/wpgtk/template
@@ -2,7 +2,6 @@
 pkgname=wpgtk
 version=6.1.3
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-gobject python3-Pillow pywal libxslt"
diff --git a/srcpkgs/wpull/template b/srcpkgs/wpull/template
index 621e1c85428..8e5e71f1505 100644
--- a/srcpkgs/wpull/template
+++ b/srcpkgs/wpull/template
@@ -2,7 +2,6 @@
 pkgname=wpull
 version=2.0.3
 revision=2
-archs=noarch
 build_style=python3-module
 pycompile_module="wpull"
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/wqy-microhei/template b/srcpkgs/wqy-microhei/template
index 77071b31ae5..9e517eb721a 100644
--- a/srcpkgs/wqy-microhei/template
+++ b/srcpkgs/wqy-microhei/template
@@ -2,7 +2,6 @@
 pkgname=wqy-microhei
 version=0.2.0.beta
 revision=2
-archs=noarch
 wrksrc=wqy-microhei
 depends="font-util"
 short_desc="A Sans-Serif style high quality CJK outline font"
diff --git a/srcpkgs/xapian-core/template b/srcpkgs/xapian-core/template
index 1b9cf9e8837..429bead39c0 100644
--- a/srcpkgs/xapian-core/template
+++ b/srcpkgs/xapian-core/template
@@ -31,7 +31,6 @@ xapian-core-devel_package() {
 }
 xapian-core-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/doc
 	}
diff --git a/srcpkgs/xbitmaps/template b/srcpkgs/xbitmaps/template
index 7cb547e43a1..9a0dcef9d50 100644
--- a/srcpkgs/xbitmaps/template
+++ b/srcpkgs/xbitmaps/template
@@ -2,7 +2,6 @@
 pkgname=xbitmaps
 version=1.1.2
 revision=2
-archs=noarch
 build_style=gnu-configure
 short_desc="Common X11 bitmaps"
 license="MIT"
diff --git a/srcpkgs/xbps-triggers/template b/srcpkgs/xbps-triggers/template
index b28d198b1ce..a40698e1f8e 100644
--- a/srcpkgs/xbps-triggers/template
+++ b/srcpkgs/xbps-triggers/template
@@ -2,7 +2,6 @@
 pkgname=xbps-triggers
 version=0.116
 revision=1
-archs=noarch
 bootstrap=yes
 short_desc="XBPS triggers for Void Linux"
 maintainer="Enno Boland <gottox@voidlinux.org>"
diff --git a/srcpkgs/xcb-proto/template b/srcpkgs/xcb-proto/template
index afc0d260a23..a3d18c56f59 100644
--- a/srcpkgs/xcb-proto/template
+++ b/srcpkgs/xcb-proto/template
@@ -2,7 +2,6 @@
 pkgname=xcb-proto
 version=1.14
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="python3"
 makedepends="libxml2"
diff --git a/srcpkgs/xcursor-themes/template b/srcpkgs/xcursor-themes/template
index 4c70ce9ef0e..2ff2cc9a9aa 100644
--- a/srcpkgs/xcursor-themes/template
+++ b/srcpkgs/xcursor-themes/template
@@ -2,7 +2,6 @@
 pkgname=xcursor-themes
 version=1.0.6
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config xcursorgen xorg-util-macros"
 makedepends="libXcursor-devel libXrender-devel"
diff --git a/srcpkgs/xcursor-vanilla-dmz/template b/srcpkgs/xcursor-vanilla-dmz/template
index 30f2bf17cd6..8c6ebd634a7 100644
--- a/srcpkgs/xcursor-vanilla-dmz/template
+++ b/srcpkgs/xcursor-vanilla-dmz/template
@@ -3,7 +3,6 @@ pkgname=xcursor-vanilla-dmz
 version=0.4.5
 revision=1
 wrksrc="dmz-cursor-theme-${version}"
-archs=noarch
 hostmakedepends="xcursorgen"
 short_desc="Vanilla DMZ cursor theme (White)"
 maintainer="Jerry Tegno <jerrytegno@gmail.com>"
diff --git a/srcpkgs/xdg-utils/template b/srcpkgs/xdg-utils/template
index 9a235ca2f69..164dbf476d4 100644
--- a/srcpkgs/xdg-utils/template
+++ b/srcpkgs/xdg-utils/template
@@ -2,7 +2,6 @@
 pkgname=xdg-utils
 version=1.1.3
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="xmlto lynx"
 short_desc="Tools to assist applications with various desktop integration tasks"
diff --git a/srcpkgs/xdgmenumaker/template b/srcpkgs/xdgmenumaker/template
index c9ee447c743..7a28d5f39eb 100644
--- a/srcpkgs/xdgmenumaker/template
+++ b/srcpkgs/xdgmenumaker/template
@@ -2,7 +2,6 @@
 pkgname=xdgmenumaker
 version=1.5
 revision=2
-archs=noarch
 build_style=gnu-makefile
 depends="python3-xdg python3-gobject gobject-introspection python3-Pillow"
 short_desc="Automatic menu generator for WMs, such as, fluxbox, icewm, jwm, pekwm"
diff --git a/srcpkgs/xdot/template b/srcpkgs/xdot/template
index 85b33af2222..b5c76c4af46 100644
--- a/srcpkgs/xdot/template
+++ b/srcpkgs/xdot/template
@@ -2,7 +2,6 @@
 pkgname=xdot
 version=1.1
 revision=3
-archs=noarch
 wrksrc="xdot.py-${version}"
 build_style=python3-module
 pycompile_module="xdot"
diff --git a/srcpkgs/xed/template b/srcpkgs/xed/template
index 9754a340873..8c42a2d9d21 100644
--- a/srcpkgs/xed/template
+++ b/srcpkgs/xed/template
@@ -2,7 +2,6 @@
 pkgname=xed
 version=0.9.1
 revision=1
-archs=noarch
 depends="tk"
 short_desc="The standard text editor, for X11"
 maintainer="Leah Neukirchen <leah@vuxu.org>"
diff --git a/srcpkgs/xerces-c/template b/srcpkgs/xerces-c/template
index 100094350f7..c0353e3ee22 100644
--- a/srcpkgs/xerces-c/template
+++ b/srcpkgs/xerces-c/template
@@ -43,7 +43,6 @@ libxerces-c-devel_package() {
 
 xerces-c-doc_package() {
 	short_desc+=" - documentation"
-	archs=noarch
 	pkg_install() {
 		vdoc "CREDITS"
 		vcopy "${wrksrc}/doc"           "/usr/share/doc/${pkgname}"
diff --git a/srcpkgs/xfwm4-themes/template b/srcpkgs/xfwm4-themes/template
index bdfeb031906..3308a5ee525 100644
--- a/srcpkgs/xfwm4-themes/template
+++ b/srcpkgs/xfwm4-themes/template
@@ -2,7 +2,6 @@
 pkgname=xfwm4-themes
 version=4.10.0
 revision=3
-archs=noarch
 build_style=gnu-configure
 short_desc="Themes for the XFCE window manager"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/xkb-qwerty-fr/template b/srcpkgs/xkb-qwerty-fr/template
index 8cd62b9ecdf..5be0f9487ec 100644
--- a/srcpkgs/xkb-qwerty-fr/template
+++ b/srcpkgs/xkb-qwerty-fr/template
@@ -2,7 +2,6 @@
 pkgname=xkb-qwerty-fr
 version=0.5
 revision=1
-archs=noarch
 short_desc="French qwerty X11 keymap"
 maintainer="Franklin Delehelle <franklin.delehelle@odena.eu>"
 license="GPL-2"
diff --git a/srcpkgs/xkcdpass/template b/srcpkgs/xkcdpass/template
index 37fb6872079..5e6e998f14e 100644
--- a/srcpkgs/xkcdpass/template
+++ b/srcpkgs/xkcdpass/template
@@ -2,7 +2,6 @@
 pkgname=xkcdpass
 version=1.17.3
 revision=2
-archs=noarch
 wrksrc="XKCD-password-generator-xkcdpass-${version}"
 build_style=python3-module
 pycompile_module="xkcdpass"
diff --git a/srcpkgs/xkeyboard-config/template b/srcpkgs/xkeyboard-config/template
index afee6371174..0329d0d17c8 100644
--- a/srcpkgs/xkeyboard-config/template
+++ b/srcpkgs/xkeyboard-config/template
@@ -2,7 +2,6 @@
 pkgname=xkeyboard-config
 version=2.30
 revision=1
-archs=noarch
 build_style=gnu-configure
 configure_args="--with-xkb-rules-symlink=xfree86,xorg --enable-compat-rules"
 hostmakedepends="pkg-config libxslt intltool python3"
diff --git a/srcpkgs/xmltoman/template b/srcpkgs/xmltoman/template
index 2f74978bea7..a1d3a628a61 100644
--- a/srcpkgs/xmltoman/template
+++ b/srcpkgs/xmltoman/template
@@ -11,4 +11,3 @@ license="GPL-3"
 homepage="https://sourceforge.net/projects/xmltoman"
 distfiles="https://github.com/Distrotech/xmltoman/archive/${version}.tar.gz"
 checksum=2ab86b74fe364a866d84c14b20cbd42a09fa85c629deeff52376bbf890854feb
-archs=noarch
diff --git a/srcpkgs/xmoto/template b/srcpkgs/xmoto/template
index ae400bdce0a..3c3bde96533 100644
--- a/srcpkgs/xmoto/template
+++ b/srcpkgs/xmoto/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 xmoto-data_package() {
-	archs=noarch
 	short_desc+=" - data files"
 	pkg_install() {
 		vmove usr/share/xmoto
diff --git a/srcpkgs/xonotic-data-low/template b/srcpkgs/xonotic-data-low/template
index ffca0a897af..253b8c407dd 100644
--- a/srcpkgs/xonotic-data-low/template
+++ b/srcpkgs/xonotic-data-low/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data-low
 version=0.8.2
 revision=1
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="A free, fast-paced crossplatform FPS (Lower Quality data files)"
diff --git a/srcpkgs/xonotic-data/template b/srcpkgs/xonotic-data/template
index f274258d867..c604fcd5af0 100644
--- a/srcpkgs/xonotic-data/template
+++ b/srcpkgs/xonotic-data/template
@@ -2,7 +2,6 @@
 pkgname=xonotic-data
 version=0.8.2
 revision=2
-archs=noarch
 wrksrc=Xonotic
 hostmakedepends="unzip"
 short_desc="Free, fast-paced crossplatform first-person shooter (data files)"
diff --git a/srcpkgs/xonsh/template b/srcpkgs/xonsh/template
index 28576175bb7..b1b7bf8ea8c 100644
--- a/srcpkgs/xonsh/template
+++ b/srcpkgs/xonsh/template
@@ -2,7 +2,6 @@
 pkgname=xonsh
 version=0.9.19
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 short_desc="Python-powered, cross-platform, Unix-gazing shell"
diff --git a/srcpkgs/xorg-cf-files/template b/srcpkgs/xorg-cf-files/template
index bdc733ade0a..e1b05da5fcd 100644
--- a/srcpkgs/xorg-cf-files/template
+++ b/srcpkgs/xorg-cf-files/template
@@ -2,7 +2,6 @@
 pkgname=xorg-cf-files
 version=1.0.6
 revision=2
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config automake xorg-util-macros font-util"
 short_desc="X.Org imake program and related utilities"
diff --git a/srcpkgs/xorg-util-macros/template b/srcpkgs/xorg-util-macros/template
index aa98fafc833..987949ce97d 100644
--- a/srcpkgs/xorg-util-macros/template
+++ b/srcpkgs/xorg-util-macros/template
@@ -3,7 +3,6 @@ pkgname=xorg-util-macros
 version=1.19.2
 revision=1
 wrksrc="${pkgname/xorg-/}-${version}"
-archs="noarch"
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="X.org autotool macros"
diff --git a/srcpkgs/xtools/template b/srcpkgs/xtools/template
index d1b5e0fe4f2..82a4e91cacc 100644
--- a/srcpkgs/xtools/template
+++ b/srcpkgs/xtools/template
@@ -2,7 +2,6 @@
 pkgname=xtools
 version=0.61
 revision=1
-archs="noarch"
 build_style=gnu-makefile
 depends="bash curl findutils git make spdx-licenses-list xbps"
 short_desc="Opinionated helpers for working with XBPS"
diff --git a/srcpkgs/xtrans/template b/srcpkgs/xtrans/template
index 77dbb83a9f6..c21c51b6bbc 100644
--- a/srcpkgs/xtrans/template
+++ b/srcpkgs/xtrans/template
@@ -2,7 +2,6 @@
 pkgname=xtrans
 version=1.4.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config"
 short_desc="Network API translation layer to insulate X"
diff --git a/srcpkgs/xye/template b/srcpkgs/xye/template
index 11094ab555b..d58f407d888 100644
--- a/srcpkgs/xye/template
+++ b/srcpkgs/xye/template
@@ -23,7 +23,6 @@ post_install() {
 
 xye-data_package() {
 	short_desc+=" - data files"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/xye
 	}
diff --git a/srcpkgs/yadm/template b/srcpkgs/yadm/template
index 7b5ebbbc028..4db6f2e0035 100644
--- a/srcpkgs/yadm/template
+++ b/srcpkgs/yadm/template
@@ -2,7 +2,6 @@
 pkgname=yadm
 version=2.5.0
 revision=1
-archs=noarch
 depends="bash git gnupg"
 short_desc="Yet Another Dotfiles Manager"
 maintainer="John <me@johnnynator.dev>"
diff --git a/srcpkgs/yaru-plus/template b/srcpkgs/yaru-plus/template
index c4cebdb389e..4a493ddf961 100644
--- a/srcpkgs/yaru-plus/template
+++ b/srcpkgs/yaru-plus/template
@@ -2,7 +2,6 @@
 pkgname=yaru-plus
 version=4.0
 revision=1
-archs=noarch
 depends="yaru"
 short_desc="Elegant Canonical's Yaru-based third-party icons theme"
 maintainer="Gustavo Costa <gusbemacbe@gmail.com>"
diff --git a/srcpkgs/yaru/template b/srcpkgs/yaru/template
index 6d00563b8a6..b084a1e6af5 100644
--- a/srcpkgs/yaru/template
+++ b/srcpkgs/yaru/template
@@ -2,7 +2,6 @@
 pkgname=yaru
 version=20.10.2
 revision=1
-archs=noarch
 build_style=meson
 hostmakedepends="glib-devel sassc pkg-config"
 makedepends="gtk+3-devel libglib-devel"
diff --git a/srcpkgs/yelp-tools/template b/srcpkgs/yelp-tools/template
index 9e8a670e6b0..1403206a26a 100644
--- a/srcpkgs/yelp-tools/template
+++ b/srcpkgs/yelp-tools/template
@@ -2,7 +2,6 @@
 pkgname=yelp-tools
 version=3.32.2
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config itstool libxslt"
 makedepends="yelp-xsl"
diff --git a/srcpkgs/yelp-xsl/template b/srcpkgs/yelp-xsl/template
index f74a7fba67c..152f3f364ae 100644
--- a/srcpkgs/yelp-xsl/template
+++ b/srcpkgs/yelp-xsl/template
@@ -2,7 +2,6 @@
 pkgname=yelp-xsl
 version=3.36.0
 revision=1
-archs=noarch
 build_style=gnu-configure
 hostmakedepends="pkg-config intltool itstool libxslt"
 makedepends="libxslt-devel"
diff --git a/srcpkgs/you-get/template b/srcpkgs/you-get/template
index b0bf348d351..ac69df8355b 100644
--- a/srcpkgs/you-get/template
+++ b/srcpkgs/you-get/template
@@ -2,7 +2,6 @@
 pkgname=you-get
 version=0.4.1456
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="python3-pysocks python3-setuptools"
diff --git a/srcpkgs/youtube-dl/template b/srcpkgs/youtube-dl/template
index 8e35e276ee9..a274d72d5bc 100644
--- a/srcpkgs/youtube-dl/template
+++ b/srcpkgs/youtube-dl/template
@@ -2,7 +2,6 @@
 pkgname=youtube-dl
 version=2020.07.28
 revision=1
-archs=noarch
 wrksrc=youtube-dl
 build_style=python3-module
 hostmakedepends="python3-setuptools"
diff --git a/srcpkgs/youtube-viewer/template b/srcpkgs/youtube-viewer/template
index c05d02ffa15..66eb9b9b46e 100644
--- a/srcpkgs/youtube-viewer/template
+++ b/srcpkgs/youtube-viewer/template
@@ -2,7 +2,6 @@
 pkgname=youtube-viewer
 version=3.7.7
 revision=1
-archs=noarch
 build_style=perl-ModuleBuild
 configure_args="--gtk"
 hostmakedepends="perl-Module-Build"
diff --git a/srcpkgs/yq/template b/srcpkgs/yq/template
index c6bcf76d96f..07a4dc4dc98 100644
--- a/srcpkgs/yq/template
+++ b/srcpkgs/yq/template
@@ -2,7 +2,6 @@
 pkgname=yq
 version=2.10.0
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 makedepends="python3-yaml"
diff --git a/srcpkgs/ytcc/template b/srcpkgs/ytcc/template
index bef3366f910..846f47d53f4 100644
--- a/srcpkgs/ytcc/template
+++ b/srcpkgs/ytcc/template
@@ -2,7 +2,6 @@
 pkgname=ytcc
 version=1.8.2
 revision=3
-archs=noarch
 build_style=python3-module
 hostmakedepends="gettext python3-setuptools"
 depends="python3-SQLAlchemy python3-feedparser python3-lxml python3-youtube-dl
diff --git a/srcpkgs/ytmdl/template b/srcpkgs/ytmdl/template
index 7952b5662cd..132d5d63c9a 100644
--- a/srcpkgs/ytmdl/template
+++ b/srcpkgs/ytmdl/template
@@ -2,7 +2,6 @@
 pkgname=ytmdl
 version=2020.07.26
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="ffmpeg youtube-dl python3-mutagen python3-requests python3-colorama
diff --git a/srcpkgs/yturl/template b/srcpkgs/yturl/template
index bc9e6e418c2..3354bb9b407 100644
--- a/srcpkgs/yturl/template
+++ b/srcpkgs/yturl/template
@@ -2,7 +2,6 @@
 pkgname=yturl
 version=2.0.2
 revision=4
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools texinfo"
 depends="python3-setuptools python3-requests python3-six"
diff --git a/srcpkgs/yubikey-manager/template b/srcpkgs/yubikey-manager/template
index 75886e00e81..04184e8a4c6 100644
--- a/srcpkgs/yubikey-manager/template
+++ b/srcpkgs/yubikey-manager/template
@@ -2,7 +2,6 @@
 pkgname=yubikey-manager
 version=3.1.1
 revision=2
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-setuptools"
 depends="libu2f-host python3-fido2 python3-openssl python3-usb python3-pyscard
diff --git a/srcpkgs/zabbix/template b/srcpkgs/zabbix/template
index ec9f7e7b298..b923a819714 100644
--- a/srcpkgs/zabbix/template
+++ b/srcpkgs/zabbix/template
@@ -95,7 +95,6 @@ zabbix-proxy_package() {
 }
 
 zabbix-frontend-php_package() {
-	archs=noarch
 	depends="zabbix php-gd php-mysql"
 	short_desc="Zabbix Networking Monitoring PHP Frontend"
 	pkg_install() {
diff --git a/srcpkgs/zd1211-firmware/template b/srcpkgs/zd1211-firmware/template
index d53a71b7fde..4cd21ae7995 100644
--- a/srcpkgs/zd1211-firmware/template
+++ b/srcpkgs/zd1211-firmware/template
@@ -2,7 +2,6 @@
 pkgname=zd1211-firmware
 version=1.5
 revision=2
-archs=noarch
 wrksrc="${pkgname}"
 short_desc="Firmware for the Zydas 1211 wifi cards"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zeek/template b/srcpkgs/zeek/template
index 825e56e0fe4..644c3412f0c 100644
--- a/srcpkgs/zeek/template
+++ b/srcpkgs/zeek/template
@@ -65,7 +65,6 @@ zeek-devel_package() {
 }
 
 bro_package() {
-	archs=noarch
 	build_style=meta
 	depends="${sourcepkg}>=${version}_${revision}"
 	short_desc+=" (transitional dummy package)"
@@ -74,13 +73,11 @@ bro_package() {
 binpac_package() {
 	short_desc+=" - protocol parser compiler (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}>=${version}_${revision}"
 }
 
 binpac-devel_package() {
 	short_desc+=" - protocol parser compiler library (transitional)"
 	build_style=meta
-	archs=noarch
 	depends="${sourcepkg}-devel>=${version}_${revision}"
 }
diff --git a/srcpkgs/zeroinstall/template b/srcpkgs/zeroinstall/template
index 3022800b9e2..f46dfcb0362 100644
--- a/srcpkgs/zeroinstall/template
+++ b/srcpkgs/zeroinstall/template
@@ -30,7 +30,6 @@ pre_build() {
 
 zeroinstall-injector_package() {
 	build_style=meta
-	archs=noarch
 	short_desc+=" - transitional dummy pkg"
 	depends="zeroinstall-${version}_${revision}"
 }
diff --git a/srcpkgs/zfs-auto-snapshot/template b/srcpkgs/zfs-auto-snapshot/template
index 113dfd3c30b..0a9d0ea7aeb 100644
--- a/srcpkgs/zfs-auto-snapshot/template
+++ b/srcpkgs/zfs-auto-snapshot/template
@@ -2,7 +2,6 @@
 pkgname=zfs-auto-snapshot
 version=1.2.4
 revision=2
-archs=noarch
 wrksrc="${pkgname}-upstream-${version}"
 build_style=gnu-makefile
 short_desc="ZFS automatic snapshot service"
diff --git a/srcpkgs/zfs-prune-snapshots/template b/srcpkgs/zfs-prune-snapshots/template
index 431c2b71db7..5eaba5c26b3 100644
--- a/srcpkgs/zfs-prune-snapshots/template
+++ b/srcpkgs/zfs-prune-snapshots/template
@@ -2,7 +2,6 @@
 pkgname=zfs-prune-snapshots
 version=1.1.0
 revision=2
-archs="noarch"
 build_style=gnu-makefile
 hostmakedepends="make"
 depends="bash zfs"
diff --git a/srcpkgs/zfsbootmenu/template b/srcpkgs/zfsbootmenu/template
index 88c2543394b..68387f60c3b 100644
--- a/srcpkgs/zfsbootmenu/template
+++ b/srcpkgs/zfsbootmenu/template
@@ -2,7 +2,6 @@
 pkgname=zfsbootmenu
 version=1.4.1
 revision=1
-archs=noarch
 build_style=gnu-makefile
 conf_files="/etc/zfsbootmenu/config.yaml"
 depends="dracut zfs fzf kexec-tools bash pigz mbuffer
diff --git a/srcpkgs/zim/template b/srcpkgs/zim/template
index 993198a9f63..def5a357e83 100644
--- a/srcpkgs/zim/template
+++ b/srcpkgs/zim/template
@@ -2,7 +2,6 @@
 pkgname=zim
 version=0.73.1
 revision=1
-archs=noarch
 build_style=python3-module
 hostmakedepends="python3-gobject python3-xdg gtk+3"
 depends="python3-gobject python3-xdg gtk+3 desktop-file-utils"
diff --git a/srcpkgs/zola/template b/srcpkgs/zola/template
index 23ba73020a2..0e6d2337a88 100644
--- a/srcpkgs/zola/template
+++ b/srcpkgs/zola/template
@@ -29,7 +29,6 @@ post_install() {
 }
 
 gutenberg_package() {
-	archs=noarch
 	depends="zola-${version}_${revision}"
 	short_desc="Transition package for Zola"
 	pkg_install() {
diff --git a/srcpkgs/zookeeper/template b/srcpkgs/zookeeper/template
index fc972d0ab4a..e5ab729f23e 100644
--- a/srcpkgs/zookeeper/template
+++ b/srcpkgs/zookeeper/template
@@ -2,7 +2,6 @@
 pkgname=zookeeper
 version=3.4.13
 revision=1
-archs=noarch
 depends="virtual?java-runtime"
 short_desc="Distributed hierarchical key-value store"
 maintainer="Mickael Fortunato <morsi.morsicus@gmail.com>"
diff --git a/srcpkgs/zramen/template b/srcpkgs/zramen/template
index 8245a3b7c25..1e446d7dfdb 100644
--- a/srcpkgs/zramen/template
+++ b/srcpkgs/zramen/template
@@ -2,7 +2,6 @@
 pkgname=zramen
 version=0.2.1
 revision=1
-archs=noarch
 depends="virtual?awk bash bc coreutils grep kmod util-linux"
 short_desc="Manage zram swap space"
 maintainer="Andy Weidenbaum <atweiden@tutanota.de>"
diff --git a/srcpkgs/zsh-autosuggestions/template b/srcpkgs/zsh-autosuggestions/template
index 5e5b225037c..bccaa490981 100644
--- a/srcpkgs/zsh-autosuggestions/template
+++ b/srcpkgs/zsh-autosuggestions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-autosuggestions
 version=0.6.4
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like autosuggestions for zsh"
 maintainer="vinnyA3 <vincent.aceto@gmail.com>"
diff --git a/srcpkgs/zsh-completions/template b/srcpkgs/zsh-completions/template
index 2256bf9a127..8bc854c48f9 100644
--- a/srcpkgs/zsh-completions/template
+++ b/srcpkgs/zsh-completions/template
@@ -2,7 +2,6 @@
 pkgname=zsh-completions
 version=0.32.0
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Additional completions for Zsh"
 maintainer="Alexander Gehrke <void@qwertyuiop.de>"
diff --git a/srcpkgs/zsh-history-substring-search/template b/srcpkgs/zsh-history-substring-search/template
index 151f412cee2..dc84a8e5192 100644
--- a/srcpkgs/zsh-history-substring-search/template
+++ b/srcpkgs/zsh-history-substring-search/template
@@ -2,7 +2,6 @@
 pkgname=zsh-history-substring-search
 version=1.0.2
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish-like history search feature for zsh"
 maintainer="Young-Jin Park <youngjinpark20@gmail.com>"
diff --git a/srcpkgs/zsh-syntax-highlighting/template b/srcpkgs/zsh-syntax-highlighting/template
index 66b89fedfc8..0e8aabcdf37 100644
--- a/srcpkgs/zsh-syntax-highlighting/template
+++ b/srcpkgs/zsh-syntax-highlighting/template
@@ -2,7 +2,6 @@
 pkgname=zsh-syntax-highlighting
 version=0.7.1
 revision=1
-archs=noarch
 depends="zsh"
 short_desc="Fish shell like syntax highlighting for Zsh"
 maintainer="Orphaned <orphan@voidlinux.org>"
diff --git a/srcpkgs/zynaddsubfx/template b/srcpkgs/zynaddsubfx/template
index 2361d8bd548..26b769db868 100644
--- a/srcpkgs/zynaddsubfx/template
+++ b/srcpkgs/zynaddsubfx/template
@@ -57,7 +57,6 @@ post_install() {
 }
 zynaddsubfx-data_package() {
 	short_desc+=" - data"
-	archs=noarch
 	pkg_install() {
 		vmove usr/share/${sourcepkg}
 	}
diff --git a/srcpkgs/zzz-user-hooks/template b/srcpkgs/zzz-user-hooks/template
index 7301509092f..8d9404e48ec 100644
--- a/srcpkgs/zzz-user-hooks/template
+++ b/srcpkgs/zzz-user-hooks/template
@@ -2,7 +2,6 @@
 pkgname=zzz-user-hooks
 version=1.1.0
 revision=1
-archs=noarch
 build_style=gnu-makefile
 depends="bash"
 checkdepends="shellcheck"

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (46 preceding siblings ...)
  2020-08-27  7:22 ` fosslinux
@ 2020-08-27  7:23 ` fosslinux
  2020-08-27 20:21 ` [PR REVIEW] " Chocimier
                   ` (39 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-27  7:23 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 199 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-681680190

Comment:
@Piraty Can you check if my Manual.md changes are sound.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR REVIEW] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (47 preceding siblings ...)
  2020-08-27  7:23 ` fosslinux
@ 2020-08-27 20:21 ` Chocimier
  2020-08-27 20:28 ` Chocimier
                   ` (38 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: Chocimier @ 2020-08-27 20:21 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 171 bytes --]

New review comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#discussion_r478673301

Comment:
Not removed from code.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (48 preceding siblings ...)
  2020-08-27 20:21 ` [PR REVIEW] " Chocimier
@ 2020-08-27 20:28 ` Chocimier
  2020-08-28  0:41 ` [PR REVIEW] " fosslinux
                   ` (37 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: Chocimier @ 2020-08-27 20:28 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 465 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-682174183

Comment:
I am more concerned of temporary state when same revision is noarch in repo but when rebuild locally not noarch and of losing easy way to see if package was rebuilt than of excessive variable in template.
Rebuilding before dropping support in xbps-src would be cleaner, but if you revbump *directly after* it is fine too.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR REVIEW] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (49 preceding siblings ...)
  2020-08-27 20:28 ` Chocimier
@ 2020-08-28  0:41 ` fosslinux
  2020-08-28  0:43 ` fosslinux
                   ` (36 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-28  0:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 171 bytes --]

New review comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#discussion_r478769163

Comment:
I swear I did this....

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (50 preceding siblings ...)
  2020-08-28  0:41 ` [PR REVIEW] " fosslinux
@ 2020-08-28  0:43 ` fosslinux
  2020-08-28  0:45 ` sgn
                   ` (35 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-28  0:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 502 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-682261591

Comment:
@Chocimier Fair, I get that point. However, I don't believe this will be the state for very long so it should be fine. I don't see people rebuilding a noarch package that much locally without also updating it...

How is rebuilding before dropping support going to work? Rebuilding them will just generate a new noarch package if we don't drop support first.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (51 preceding siblings ...)
  2020-08-28  0:43 ` fosslinux
@ 2020-08-28  0:45 ` sgn
  2020-08-28  1:07 ` fosslinux
                   ` (34 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-08-28  0:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 420 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-682262119

Comment:
On 2020-08-27 17:43:55-0700, fosslinux <notifications@github.com> wrote:
> How is rebuilding before dropping support going to work? Rebuilding
> them will just generate a new noarch package if we don't drop
> support first.

Uhm, by removing "archs=noarch" and revbump for building?


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (52 preceding siblings ...)
  2020-08-28  0:45 ` sgn
@ 2020-08-28  1:07 ` fosslinux
  2020-09-02  0:40 ` fosslinux
                   ` (33 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-08-28  1:07 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 308 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-682267684

Comment:
Oh, I understand now, I was unsure about @Chocimier meant.

I am happy to leave this PR for now and do it in that order instead, if there is appropriate consensus.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (53 preceding siblings ...)
  2020-08-28  1:07 ` fosslinux
@ 2020-09-02  0:40 ` fosslinux
  2020-09-02  0:40 ` fosslinux
                   ` (32 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-02  0:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 519 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-685209245

Comment:
In the process of creating a `noarch` revbump commit, will be included in this PR.

Three-stage process:

1. Merge fixing PRs:
- [ ] #24597
2. Merge this PR which will include two commits, the `srcpkgs: remove noarch` PR which will revbump every noarch package followed by the `common` commit which will disable noarch. Unless it is simpler to split it out into two PRs.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (54 preceding siblings ...)
  2020-09-02  0:40 ` fosslinux
@ 2020-09-02  0:40 ` fosslinux
  2020-09-02  0:40 ` [PR REVIEW] " fosslinux
                   ` (31 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-02  0:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 517 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-685209245

Comment:
In the process of creating a `noarch` revbump commit, will be included in this PR.

Two-stage process:

1. Merge fixing PRs:
- [ ] #24597
2. Merge this PR which will include two commits, the `srcpkgs: remove noarch` PR which will revbump every noarch package followed by the `common` commit which will disable noarch. Unless it is simpler to split it out into two PRs.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR REVIEW] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (55 preceding siblings ...)
  2020-09-02  0:40 ` fosslinux
@ 2020-09-02  0:40 ` fosslinux
  2020-09-03 23:47 ` fosslinux
                   ` (30 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-02  0:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 163 bytes --]

New review comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#discussion_r481508105

Comment:
(in next push)

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (56 preceding siblings ...)
  2020-09-02  0:40 ` [PR REVIEW] " fosslinux
@ 2020-09-03 23:47 ` fosslinux
  2020-09-04 11:41 ` fosslinux
                   ` (29 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-03 23:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 560 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-685209245

Comment:
In the process of creating a `noarch` revbump commit, will be included in this PR.

Two-stage process:

1. Merge fixing PRs:
- [x] #24597
- [ ] #24632 
- [ ] #24633
- [ ] #24651
2. Merge this PR which will include two commits, the `srcpkgs: remove noarch` PR which will revbump every noarch package followed by the `common` commit which will disable noarch. Unless it is simpler to split it out into two PRs.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (57 preceding siblings ...)
  2020-09-03 23:47 ` fosslinux
@ 2020-09-04 11:41 ` fosslinux
  2020-09-04 11:44 ` fosslinux
                   ` (28 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-04 11:41 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 574 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-685209245

Comment:
In the process of creating a `noarch` revbump commit, will be included in this PR.

Two-stage process:

1. Merge fixing PRs:
- [x] #24597
- [ ] #24632 
- [ ] #24633
- [ ] #24651
- [ ] #24658
2. Merge this PR which will include two commits, the `srcpkgs: remove noarch` PR which will revbump every noarch package followed by the `common` commit which will disable noarch. Unless it is simpler to split it out into two PRs.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (58 preceding siblings ...)
  2020-09-04 11:41 ` fosslinux
@ 2020-09-04 11:44 ` fosslinux
  2020-09-04 13:24 ` ahesford
                   ` (27 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-04 11:44 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 541 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-687093383

Comment:
Request: Can we please not accept any new packages with noarch, just not have noarch for any new packages while I prepare the rebuild; it will just make this commit much easier.

Can this be added to the Manual too? Don't really care on the exact wording but something along the lines of:

> We are in the process of transitioning away from noarch. Please no longer use noarch for new packages.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (59 preceding siblings ...)
  2020-09-04 11:44 ` fosslinux
@ 2020-09-04 13:24 ` ahesford
  2020-09-04 22:59 ` fosslinux
                   ` (26 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: ahesford @ 2020-09-04 13:24 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 252 bytes --]

New comment by ahesford on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-687143316

Comment:
If the transition time will be short, maybe now is the time for an `xlint` rule that complains about `noarch`.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (60 preceding siblings ...)
  2020-09-04 13:24 ` ahesford
@ 2020-09-04 22:59 ` fosslinux
  2020-09-04 23:17 ` fosslinux
                   ` (25 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-04 22:59 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 178 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-687450813

Comment:
I agree. Will make a PR for that...

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (61 preceding siblings ...)
  2020-09-04 22:59 ` fosslinux
@ 2020-09-04 23:17 ` fosslinux
  2020-09-04 23:19 ` [PR PATCH] [Updated] " fosslinux
                   ` (24 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-04 23:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 368 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-687460040

Comment:
Am going to remove the noarch rebuild commit from this PR and split it out into various different PRs; doing one massive one is proving to be more trouble than it is worth so I plan to do it in smaller sets of around 100-500.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR PATCH] [Updated] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (62 preceding siblings ...)
  2020-09-04 23:17 ` fosslinux
@ 2020-09-04 23:19 ` fosslinux
  2020-09-04 23:19 ` [PR REVIEW] " fosslinux
                   ` (23 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-04 23:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

There is an updated pull request by fosslinux against master on the void-packages repository

https://github.com/fosslinux/void-packages noarch
https://github.com/void-linux/void-packages/pull/24357

[wip] common: disable creation of noarch packages.
This change disables the creation of noarch packages.

I believe that most package maintainers are of the same opinion that noarch causes far more problems than it solves. For some time on IRC there has been continued discussion about disabling it. This is what this PR attempts to achieve.

This still supports `archs=noarch` but IMO this is misleading if it dosen't actually create a package with the noarch arch. This is why I have made `archs=noarch` just mean `noarch=yes`. This is how I think all future packages should declare noarch: `noarch=yes`. I also considered `data_only=yes` or `arch_independent=yes` but I don't really like either of those.

The reason noarch even still exists is because it is a useful shorthand for `nodebug=yes`, `nostrip=yes`, etc etc.

The removed 32-bit block about noarch is useless because noarch already forces `noshlibprovides`.

NB: Right now, this is a MVP and still needs some more work.

Pinging @q66 @the-maldridge 

A patch file from https://github.com/void-linux/void-packages/pull/24357.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-noarch-24357.patch --]
[-- Type: text/x-diff, Size: 9802 bytes --]

From 44a3b458c354af787eab3d11cf829e32f4d53fa4 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Wed, 19 Aug 2020 16:44:41 +1000
Subject: [PATCH 1/2] common: disable creation of noarch packages.

---
 common/hooks/do-pkg/00-gen-pkg.sh                    |  6 ++----
 common/hooks/post-install/06-strip-and-debug-pkgs.sh |  2 +-
 common/hooks/post-pkg/00-register-pkg.sh             |  6 ++----
 common/hooks/pre-pkg/04-generate-runtime-deps.sh     |  2 +-
 common/hooks/pre-pkg/05-prepare-32bit.sh             | 11 -----------
 common/hooks/pre-pkg/06-shlib-provides.sh            |  2 +-
 common/xbps-src/shutils/common.sh                    |  8 +-------
 common/xbps-src/shutils/pkgtarget.sh                 |  2 +-
 8 files changed, 9 insertions(+), 30 deletions(-)

diff --git a/common/hooks/do-pkg/00-gen-pkg.sh b/common/hooks/do-pkg/00-gen-pkg.sh
index b809a6dc5eb..f0b70c8eebb 100644
--- a/common/hooks/do-pkg/00-gen-pkg.sh
+++ b/common/hooks/do-pkg/00-gen-pkg.sh
@@ -104,14 +104,12 @@ hook() {
 	local arch= binpkg= repo= _pkgver= _desc= _pkgn= _pkgv= _provides= \
 		_replaces= _reverts= f= found_dbg_subpkg=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 
diff --git a/common/hooks/post-install/06-strip-and-debug-pkgs.sh b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
index 44d8a51fe93..b59dde5ab3c 100644
--- a/common/hooks/post-install/06-strip-and-debug-pkgs.sh
+++ b/common/hooks/post-install/06-strip-and-debug-pkgs.sh
@@ -59,7 +59,7 @@ create_debug_pkg() {
 hook() {
 	local fname= x= f= _soname= STRIPCMD=
 
-	if [ -n "$nostrip" -o "${archs// /}" = "noarch" ]; then
+	if [ -n "$nostrip" ]; then
 		return 0
 	fi
 
diff --git a/common/hooks/post-pkg/00-register-pkg.sh b/common/hooks/post-pkg/00-register-pkg.sh
index 5dc28c999c9..ce641cfc850 100644
--- a/common/hooks/post-pkg/00-register-pkg.sh
+++ b/common/hooks/post-pkg/00-register-pkg.sh
@@ -13,14 +13,12 @@ registerpkg() {
 hook() {
 	local arch= binpkg= pkgdir=
 
-	if [ "${archs// /}" = "noarch" ]; then
-		arch=noarch
-	elif [ -n "$XBPS_TARGET_MACHINE" ]; then
+	if [ -n "$XBPS_TARGET_MACHINE" ]; then
 		arch=$XBPS_TARGET_MACHINE
 	else
 		arch=$XBPS_MACHINE
 	fi
-	if [ "${archs// /}" != "noarch" -a -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
+	if [ -z "$XBPS_CROSS_BUILD" -a -n "$XBPS_ARCH" -a "$XBPS_ARCH" != "$XBPS_TARGET_MACHINE" ]; then
 		arch=${XBPS_ARCH}
 	fi
 	if [ -n "$repository" ]; then
diff --git a/common/hooks/pre-pkg/04-generate-runtime-deps.sh b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
index 6e45b7dd3c3..8ffd3a71d8e 100644
--- a/common/hooks/pre-pkg/04-generate-runtime-deps.sh
+++ b/common/hooks/pre-pkg/04-generate-runtime-deps.sh
@@ -56,7 +56,7 @@ hook() {
 
     mapshlibs=$XBPS_COMMONDIR/shlibs
 
-    if [ "${archs// /}" = "noarch" -o -n "$noverifyrdeps" ]; then
+    if [ -n "$noverifyrdeps" ]; then
         store_pkgdestdir_rundeps
         return 0
     fi
diff --git a/common/hooks/pre-pkg/05-prepare-32bit.sh b/common/hooks/pre-pkg/05-prepare-32bit.sh
index fd6fdf88217..f3612959cb5 100644
--- a/common/hooks/pre-pkg/05-prepare-32bit.sh
+++ b/common/hooks/pre-pkg/05-prepare-32bit.sh
@@ -20,10 +20,6 @@ hook() {
 	if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
 		return
 	fi 
-	# Ignore noarch pkgs.
-	if [ "${archs// /}" = "noarch" ]; then
-		return
-	fi
 	if [ -z "$lib32mode" ]; then
 		# Library mode, copy only relevant files to new destdir.
 		#
@@ -106,13 +102,6 @@ hook() {
 				printf "${pkgn}-32bit${pkgv} " >> ${destdir32}/rdeps
 				continue
 			fi
-			# If dependency is noarch do not change it to 32bit.
-			_arch=$($XBPS_QUERY_CMD -R --property=architecture "$f")
-			if [ "${_arch}" = "noarch" ]; then
-				echo "   RDEP: $f -> ${pkgn}${pkgv} (noarch)"
-				printf "${pkgn}${pkgv} " >> ${destdir32}/rdeps
-				continue
-			fi
 			# If dependency does not have "shlib-provides" do not
 			# change it to 32bit.
 			for x in ${subpackages}; do
diff --git a/common/hooks/pre-pkg/06-shlib-provides.sh b/common/hooks/pre-pkg/06-shlib-provides.sh
index cdc94de3bc9..fc39f6bfbe4 100644
--- a/common/hooks/pre-pkg/06-shlib-provides.sh
+++ b/common/hooks/pre-pkg/06-shlib-provides.sh
@@ -45,7 +45,7 @@ collect_sonames() {
 hook() {
 	local _destdir32=${XBPS_DESTDIR}/${pkgname}-32bit-${version}
 
-	if [ -z "$shlib_provides" -a "${archs// /}" = "noarch" -o -n "$noshlibprovides" ]; then
+	if [ -n "$noshlibprovides" ]; then
 		return 0
 	fi
 
diff --git a/common/xbps-src/shutils/common.sh b/common/xbps-src/shutils/common.sh
index e8bcf577c6b..1564a174bf2 100644
--- a/common/xbps-src/shutils/common.sh
+++ b/common/xbps-src/shutils/common.sh
@@ -395,7 +395,6 @@ setup_pkg() {
         source_file ${XBPS_SRCPKGDIR}/${basepkg}/template
     fi
 
-
     # Check if required vars weren't set.
     _vars="pkgname version short_desc revision homepage license"
     for f in ${_vars}; do
@@ -457,12 +456,7 @@ setup_pkg() {
     fi
     makejobs="-j$XBPS_MAKEJOBS"
 
-    # strip whitespaces to make "  noarch  " valid too.
-    if [ "${archs// /}" = "noarch" ]; then
-        arch="noarch"
-    else
-        arch="$XBPS_TARGET_MACHINE"
-    fi
+    arch="$XBPS_TARGET_MACHINE"
     if [ -n "$XBPS_BINPKG_EXISTS" ]; then
         local _binpkgver="$($XBPS_QUERY_XCMD -R -ppkgver $pkgver 2>/dev/null)"
         if [ "$_binpkgver" = "$pkgver" ]; then
diff --git a/common/xbps-src/shutils/pkgtarget.sh b/common/xbps-src/shutils/pkgtarget.sh
index 090ec5c1a3e..fa70816fe24 100644
--- a/common/xbps-src/shutils/pkgtarget.sh
+++ b/common/xbps-src/shutils/pkgtarget.sh
@@ -3,7 +3,7 @@
 check_pkg_arch() {
     local cross="$1" _arch f match nonegation
 
-    if [ -n "$archs" -a "${archs// /}" != "noarch" ]; then
+    if [ -n "$archs" ]; then
         if [ -n "$cross" ]; then
             _arch="$XBPS_TARGET_MACHINE"
         elif [ -n "$XBPS_ARCH" ]; then

From 7101668773f6d5202863af4522a77ca8fdb78881 Mon Sep 17 00:00:00 2001
From: fosslinux <fosslinux@aussies.space>
Date: Thu, 27 Aug 2020 17:17:50 +1000
Subject: [PATCH 2/2] Manual.md: remove mentions of noarch.

---
 Manual.md | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/Manual.md b/Manual.md
index 5502c6e26f8..af5f4019bc3 100644
--- a/Manual.md
+++ b/Manual.md
@@ -711,8 +711,7 @@ used.
 - `fetch_cmd` Executable to be used to fetch URLs in `distfiles` during the `do_fetch` phase.
 
 - `archs` Whitespace separated list of architectures that a package can be
-built for, available architectures can be found under `common/cross-profiles`
-alongside the `noarch` value for packages that do not contain any machine code.
+built for, available architectures can be found under `common/cross-profiles`.
 In general, `archs` should only be set if the upstream software explicitly targets
 certain architectures or there is a compelling reason why the software should not be
 available on some supported architectures.
@@ -725,8 +724,6 @@ Examples:
 	archs="x86_64-musl ~*-musl"
 	# Default value (all arches)
 	archs="*"
-	# Packages that do not depend on architecture-specific objects
-	archs=noarch
 	```
 
 <a id="explain_depends"></a>
@@ -914,8 +911,8 @@ can be used to pass arguments during compilation. If your package does not make
 extensions consider using the `gem` build style instead.
 
 - `gem` For packages that are installed using gems from [RubyGems](https://rubygems.org/).
-The gem command can be overridden by `gem_cmd`. `archs` is set to `noarch` unconditionally
-and `distfiles` is set by the build style if the template does not do so. If your gem
+The gem command can be overridden by `gem_cmd`. 
+`distfiles` is set by the build style if the template does not do so. If your gem
 provides extensions which must be compiled consider using the `gemspec` build style instead.
 
 - `ruby-module` For packages that are ruby modules and are installable via `ruby install.rb`.
@@ -1413,6 +1410,10 @@ destdir (`$DESTDIR`) to the `subpackage` destdir (`$PKGDESTDIR`).
 Subpackages are processed always in alphabetical order; To force a custom order,
 the `subpackages` variable can be declared with the wanted order.
 
+Please note that XBPS makes no distinction between normal packages, and data
+packages. Data packages, documentation packages and binary packages are all
+treated the same way.
+
 <a id="pkgs_development"></a>
 ### Development packages
 
@@ -1451,7 +1452,7 @@ type used to split architecture independent, big(ger) or huge amounts
 of data from a package's main and architecture dependent part. It is up
 to you to decide, if a `-data` subpackage makes sense for your package.
 This type is common for games (graphics, sound and music), part libraries (CAD)
-or card material (maps). Data subpackages are almost always `archs=noarch`.
+or card material (maps).
 The main package must then have `depends="${pkgname}-data-${version}_${revision}"`,
 possibly in addition to other, non-automatic depends.
 
@@ -1589,7 +1590,6 @@ The following variables influence how Haskell packages are built:
 Font packages are very straightforward to write, they are always set with the
 following variables:
 
-- `archs=noarch`: Font packages don't install arch specific files.
 - `depends="font-util"`: because they are required for regenerating the font
 cache during the install/removal of the package
 - `font_dirs`: which should be set to the directory where the package

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR REVIEW] [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (63 preceding siblings ...)
  2020-09-04 23:19 ` [PR PATCH] [Updated] " fosslinux
@ 2020-09-04 23:19 ` fosslinux
  2020-09-05  7:00 ` Chocimier
                   ` (22 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-04 23:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 240 bytes --]

New review comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#discussion_r483878079

Comment:
Actually this will come in the first batch set with revbumps of `build_style=gem` packages.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (64 preceding siblings ...)
  2020-09-04 23:19 ` [PR REVIEW] " fosslinux
@ 2020-09-05  7:00 ` Chocimier
  2020-09-05  7:16 ` fosslinux
                   ` (21 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: Chocimier @ 2020-09-05  7:00 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 449 bytes --]

New comment by Chocimier on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-687563103

Comment:
> Can this be added to the Manual too? Don't really care on the exact wording but something along the lines of:
> 
> > We are in the process of transitioning away from noarch. Please no longer use noarch for new packages.

Changes to manual from this PR could be merged first as sign of decision taken.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (65 preceding siblings ...)
  2020-09-05  7:00 ` Chocimier
@ 2020-09-05  7:16 ` fosslinux
  2020-10-31  6:49 ` fosslinux
                   ` (20 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-09-05  7:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 404 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-687564798

Comment:
I have split out changes to the manual into a separate PR, #24684.

Committers, when pushing anything that updates or revbumps something, or merging a PR, please ensure that if it is `archs=noarch` it is removed. This will expedite the noarch removal process.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (66 preceding siblings ...)
  2020-09-05  7:16 ` fosslinux
@ 2020-10-31  6:49 ` fosslinux
  2020-10-31  6:49 ` fosslinux
                   ` (19 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-10-31  6:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 574 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-685209245

Comment:
In the process of creating a `noarch` revbump commit, will be included in this PR.

Two-stage process:

1. Merge fixing PRs:
- [x] #24597
- [x] #24632 
- [ ] #24633
- [ ] #24651
- [ ] #24658
2. Merge this PR which will include two commits, the `srcpkgs: remove noarch` PR which will revbump every noarch package followed by the `common` commit which will disable noarch. Unless it is simpler to split it out into two PRs.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (67 preceding siblings ...)
  2020-10-31  6:49 ` fosslinux
@ 2020-10-31  6:49 ` fosslinux
  2020-10-31  6:49 ` fosslinux
                   ` (18 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-10-31  6:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 574 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-685209245

Comment:
In the process of creating a `noarch` revbump commit, will be included in this PR.

Two-stage process:

1. Merge fixing PRs:
- [x] #24597
- [x] #24632 
- [ ] #24633
- [ ] #24651
- [x] #24658
2. Merge this PR which will include two commits, the `srcpkgs: remove noarch` PR which will revbump every noarch package followed by the `common` commit which will disable noarch. Unless it is simpler to split it out into two PRs.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (68 preceding siblings ...)
  2020-10-31  6:49 ` fosslinux
@ 2020-10-31  6:49 ` fosslinux
  2020-10-31  6:49 ` fosslinux
                   ` (17 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-10-31  6:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 574 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-685209245

Comment:
In the process of creating a `noarch` revbump commit, will be included in this PR.

Two-stage process:

1. Merge fixing PRs:
- [x] #24597
- [x] #24632 
- [x] #24633
- [ ] #24651
- [x] #24658
2. Merge this PR which will include two commits, the `srcpkgs: remove noarch` PR which will revbump every noarch package followed by the `common` commit which will disable noarch. Unless it is simpler to split it out into two PRs.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (69 preceding siblings ...)
  2020-10-31  6:49 ` fosslinux
@ 2020-10-31  6:49 ` fosslinux
  2020-11-30 14:57 ` sgn
                   ` (16 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-10-31  6:49 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 574 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-685209245

Comment:
In the process of creating a `noarch` revbump commit, will be included in this PR.

Two-stage process:

1. Merge fixing PRs:
- [x] #24597
- [x] #24632 
- [x] #24633
- [x] #24651
- [x] #24658
2. Merge this PR which will include two commits, the `srcpkgs: remove noarch` PR which will revbump every noarch package followed by the `common` commit which will disable noarch. Unless it is simpler to split it out into two PRs.

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (70 preceding siblings ...)
  2020-10-31  6:49 ` fosslinux
@ 2020-11-30 14:57 ` sgn
  2020-11-30 16:37 ` sgn
                   ` (15 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-11-30 14:57 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 348 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [ ] binutils #26502 
- [ ] buildbot-slave
- [ ] buildbot
- [ ] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [ ] rust #26609 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (71 preceding siblings ...)
  2020-11-30 14:57 ` sgn
@ 2020-11-30 16:37 ` sgn
  2020-12-01 12:47 ` sgn
                   ` (14 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-11-30 16:37 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 348 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [ ] binutils #26502 
- [ ] buildbot-slave
- [ ] buildbot
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [ ] rust #26609 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (72 preceding siblings ...)
  2020-11-30 16:37 ` sgn
@ 2020-12-01 12:47 ` sgn
  2020-12-05 10:17 ` sgn
                   ` (13 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-01 12:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [ ] binutils #26502 
- [ ] buildbot-slave #26863
- [ ] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [ ] rust #26609 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (73 preceding siblings ...)
  2020-12-01 12:47 ` sgn
@ 2020-12-05 10:17 ` sgn
  2020-12-05 10:17 ` sgn
                   ` (12 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-05 10:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [ ] binutils #26502 
- [x] buildbot-slave #26863
- [ ] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [ ] rust #26609 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (74 preceding siblings ...)
  2020-12-05 10:17 ` sgn
@ 2020-12-05 10:17 ` sgn
  2020-12-15 11:26 ` fosslinux
                   ` (11 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-05 10:17 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [ ] binutils #26502 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [ ] rust #26609 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (75 preceding siblings ...)
  2020-12-05 10:17 ` sgn
@ 2020-12-15 11:26 ` fosslinux
  2020-12-26  2:47 ` sgn
                   ` (10 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2020-12-15 11:26 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 156 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-745228706

Comment:
rust @ #27119

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (76 preceding siblings ...)
  2020-12-15 11:26 ` fosslinux
@ 2020-12-26  2:47 ` sgn
  2020-12-26  2:48 ` sgn
                   ` (9 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-26  2:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #26502 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [ ] rust #26609 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (77 preceding siblings ...)
  2020-12-26  2:47 ` sgn
@ 2020-12-26  2:48 ` sgn
  2020-12-26  2:48 ` sgn
                   ` (8 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-26  2:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #27397 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [ ] rust #26609 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (78 preceding siblings ...)
  2020-12-26  2:48 ` sgn
@ 2020-12-26  2:48 ` sgn
  2020-12-26  2:48 ` sgn
                   ` (7 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-26  2:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #27397 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [ ] rust #27119 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (79 preceding siblings ...)
  2020-12-26  2:48 ` sgn
@ 2020-12-26  2:48 ` sgn
  2020-12-26  6:34 ` sgn
                   ` (6 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-26  2:48 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 363 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #27397 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [ ] glibc
- [ ] grub #25267 
- [x] rust #27119 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (80 preceding siblings ...)
  2020-12-26  2:48 ` sgn
@ 2020-12-26  6:34 ` sgn
  2020-12-26  6:42 ` sgn
                   ` (5 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-26  6:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 374 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #27397 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc
- [x] glibc a128060e48
- [ ] grub #25267 
- [x] rust #27119 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (81 preceding siblings ...)
  2020-12-26  6:34 ` sgn
@ 2020-12-26  6:42 ` sgn
  2020-12-26 11:04 ` sgn
                   ` (4 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-26  6:42 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 382 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #27397 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data
- [ ] ghc #27441 
- [x] glibc a128060e48
- [ ] grub #25267 
- [x] rust #27119 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (82 preceding siblings ...)
  2020-12-26  6:42 ` sgn
@ 2020-12-26 11:04 ` sgn
  2020-12-26 11:04 ` sgn
                   ` (3 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-26 11:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 390 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #27397 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data #27445 
- [ ] ghc #27441 
- [x] glibc a128060e48
- [ ] grub #25267 
- [x] rust #27119 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (83 preceding siblings ...)
  2020-12-26 11:04 ` sgn
@ 2020-12-26 11:04 ` sgn
  2020-12-27 14:31 ` sgn
                   ` (2 subsequent siblings)
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-26 11:04 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 390 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #27397 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data #27445 
- [x] ghc #27441 
- [x] glibc a128060e48
- [ ] grub #25267 
- [x] rust #27119 
- [ ] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (84 preceding siblings ...)
  2020-12-26 11:04 ` sgn
@ 2020-12-27 14:31 ` sgn
  2021-01-20 12:34 ` [PR PATCH] [Closed]: " q66
  2021-01-20 21:47 ` fosslinux
  87 siblings, 0 replies; 89+ messages in thread
From: sgn @ 2020-12-27 14:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 390 bytes --]

New comment by sgn on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-735836673

Comment:
remaining package:

- [x] binutils #27397 
- [x] buildbot-slave #26863
- [x] buildbot #26863 
- [x] cherrytree #26558 
- [ ] geoip-data #27445 
- [x] ghc #27441 
- [x] glibc a128060e48
- [ ] grub #25267 
- [x] rust #27119 
- [x] uhd #26748 


^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [PR PATCH] [Closed]: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (85 preceding siblings ...)
  2020-12-27 14:31 ` sgn
@ 2021-01-20 12:34 ` q66
  2021-01-20 21:47 ` fosslinux
  87 siblings, 0 replies; 89+ messages in thread
From: q66 @ 2021-01-20 12:34 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1159 bytes --]

There's a closed pull request on the void-packages repository

[wip] common: disable creation of noarch packages.
https://github.com/void-linux/void-packages/pull/24357

Description:
This change disables the creation of noarch packages.

I believe that most package maintainers are of the same opinion that noarch causes far more problems than it solves. For some time on IRC there has been continued discussion about disabling it. This is what this PR attempts to achieve.

This still supports `archs=noarch` but IMO this is misleading if it dosen't actually create a package with the noarch arch. This is why I have made `archs=noarch` just mean `noarch=yes`. This is how I think all future packages should declare noarch: `noarch=yes`. I also considered `data_only=yes` or `arch_independent=yes` but I don't really like either of those.

The reason noarch even still exists is because it is a useful shorthand for `nodebug=yes`, `nostrip=yes`, etc etc.

The removed 32-bit block about noarch is useless because noarch already forces `noshlibprovides`.

NB: Right now, this is a MVP and still needs some more work.

Pinging @q66 @the-maldridge 

^ permalink raw reply	[flat|nested] 89+ messages in thread

* Re: [wip] common: disable creation of noarch packages.
  2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
                   ` (86 preceding siblings ...)
  2021-01-20 12:34 ` [PR PATCH] [Closed]: " q66
@ 2021-01-20 21:47 ` fosslinux
  87 siblings, 0 replies; 89+ messages in thread
From: fosslinux @ 2021-01-20 21:47 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 150 bytes --]

New comment by fosslinux on void-packages repository

https://github.com/void-linux/void-packages/pull/24357#issuecomment-763970410

Comment:
finally

^ permalink raw reply	[flat|nested] 89+ messages in thread

end of thread, other threads:[~2021-01-20 21:47 UTC | newest]

Thread overview: 89+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-19  6:51 [PR PATCH] [wip] common: disable creation of noarch packages fosslinux
2020-08-19 12:23 ` ericonr
2020-08-19 12:38 ` ahesford
2020-08-19 12:46 ` ahesford
2020-08-19 13:03 ` Chocimier
2020-08-19 14:48 ` q66
2020-08-19 15:24 ` ahesford
2020-08-19 15:43 ` q66
2020-08-19 15:45 ` q66
2020-08-19 16:10 ` ahesford
2020-08-19 17:15 ` q66
2020-08-19 17:17 ` ericonr
2020-08-19 17:19 ` q66
2020-08-19 23:05 ` fosslinux
2020-08-19 23:10 ` fosslinux
2020-08-19 23:21 ` the-maldridge
2020-08-19 23:28 ` fosslinux
2020-08-19 23:30 ` the-maldridge
2020-08-20  0:24 ` q66
2020-08-20  0:38 ` fosslinux
2020-08-20  0:44 ` sgn
2020-08-20  0:44 ` sgn
2020-08-20  0:46 ` ericonr
2020-08-20  0:51 ` sgn
2020-08-20  0:56 ` fosslinux
2020-08-20  1:00 ` ahesford
2020-08-20  1:08 ` ericonr
2020-08-20  2:05 ` the-maldridge
2020-08-20  6:29 ` fosslinux
2020-08-20  6:32 ` fosslinux
2020-08-20 12:52 ` ericonr
2020-08-20 17:55 ` the-maldridge
2020-08-20 23:09 ` fosslinux
2020-08-21 22:26 ` [PR PATCH] [Updated] " fosslinux
2020-08-21 22:27 ` fosslinux
2020-08-21 22:29 ` [PR PATCH] [Updated] " fosslinux
2020-08-21 22:29 ` fosslinux
2020-08-24 23:49 ` fosslinux
2020-08-24 23:50 ` fosslinux
2020-08-24 23:50 ` fosslinux
2020-08-25 19:47 ` [PR REVIEW] " Chocimier
2020-08-25 19:49 ` Chocimier
2020-08-25 20:02 ` ericonr
2020-08-25 20:19 ` [PR REVIEW] " Chocimier
2020-08-25 22:55 ` fosslinux
2020-08-25 22:58 ` fosslinux
2020-08-27  7:22 ` [PR PATCH] [Updated] " fosslinux
2020-08-27  7:22 ` fosslinux
2020-08-27  7:23 ` fosslinux
2020-08-27 20:21 ` [PR REVIEW] " Chocimier
2020-08-27 20:28 ` Chocimier
2020-08-28  0:41 ` [PR REVIEW] " fosslinux
2020-08-28  0:43 ` fosslinux
2020-08-28  0:45 ` sgn
2020-08-28  1:07 ` fosslinux
2020-09-02  0:40 ` fosslinux
2020-09-02  0:40 ` fosslinux
2020-09-02  0:40 ` [PR REVIEW] " fosslinux
2020-09-03 23:47 ` fosslinux
2020-09-04 11:41 ` fosslinux
2020-09-04 11:44 ` fosslinux
2020-09-04 13:24 ` ahesford
2020-09-04 22:59 ` fosslinux
2020-09-04 23:17 ` fosslinux
2020-09-04 23:19 ` [PR PATCH] [Updated] " fosslinux
2020-09-04 23:19 ` [PR REVIEW] " fosslinux
2020-09-05  7:00 ` Chocimier
2020-09-05  7:16 ` fosslinux
2020-10-31  6:49 ` fosslinux
2020-10-31  6:49 ` fosslinux
2020-10-31  6:49 ` fosslinux
2020-10-31  6:49 ` fosslinux
2020-11-30 14:57 ` sgn
2020-11-30 16:37 ` sgn
2020-12-01 12:47 ` sgn
2020-12-05 10:17 ` sgn
2020-12-05 10:17 ` sgn
2020-12-15 11:26 ` fosslinux
2020-12-26  2:47 ` sgn
2020-12-26  2:48 ` sgn
2020-12-26  2:48 ` sgn
2020-12-26  2:48 ` sgn
2020-12-26  6:34 ` sgn
2020-12-26  6:42 ` sgn
2020-12-26 11:04 ` sgn
2020-12-26 11:04 ` sgn
2020-12-27 14:31 ` sgn
2021-01-20 12:34 ` [PR PATCH] [Closed]: " q66
2021-01-20 21:47 ` fosslinux

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).