git » python-setproctitle.git » commit f25603f

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 649681527fa100e264803f1a545f46ba3ddaebd2

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 6e73e26..f5a25ab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,7 +8,7 @@ pkgdesc="Allows a python process to change its process title"
 license=("BSD")
 url="https://github.com/dvarrazzo/py-setproctitle"
 makedepends=('python' 'python2')
-arch=('i686' 'x86_64')
+arch=('x86_64')
 source=(https://files.pythonhosted.org/packages/source/s/setproctitle/setproctitle-$pkgver.tar.gz)
 sha256sums=('6283b7a58477dd8478fbb9e76defb37968ee4ba47b05ec1c053cb39638bd7398')