git » keepassxc.git » commit e1c2db1

Remove i686 from arch=()

author Evangelos Foutras
2017-11-15 14:29:11 UTC
committer Evangelos Foutras
2017-11-15 14:29:11 UTC
parent 94428310d77f16edaa4812645a47e5f235ed4a4e

Remove i686 from arch=()

FTR, commands used to change arch=() and then verify the changes:

$ sed -Ei "/^arch=/{s/ *?['\"]?i686['\"]? *?//;s/ *$//}" */*/PKGBUILD*

$ grep -r i686 * | grep arch= | grep -v repos

$ svn diff | grep -A 1 ^-[^-] | grep -v -- -- | cut -c2- |
  while IFS=$'\n' read -r l1; IFS=$'\n' read -r l2; do
    echo "$l1 -> $l2"
  done | sort -u

PKGBUILD +1 -1

diff --git a/PKGBUILD b/PKGBUILD
index bdffe26..930b521 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@ pkgname=keepassxc
 pkgver=2.2.2
 pkgrel=1
 pkgdesc="Cross-platform community-driven port of Keepass password manager"
-arch=(x86_64 i686)
+arch=(x86_64)
 url="https://keepassxc.org/"
 license=(GPL)
 depends=(hicolor-icon-theme libxtst qt5-x11extras yubikey-personalization)