git » libmaxminddb.git » commit e68ebc0

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 a6919b2447ed1e2d9d49bb76f466d11014b0987e

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 99e81c6..134850f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -7,7 +7,7 @@ pkgver=1.3.0
 pkgrel=1
 pkgdesc="MaxMind GeoIP2 database - split package with library and utilities"
 license=('Apache')
-arch=('i686' 'x86_64')
+arch=('x86_64')
 url="http://dev.maxmind.com/geoip/geoip2/downloadable/"
 optdepends=('geoip2-database: IP geolocation databases')
 source=("https://github.com/maxmind/libmaxminddb/releases/download/$pkgver/libmaxminddb-$pkgver.tar.gz")