URI: 
       twine build: try multiple keyservers as in tianon/gosu#35 - electrum - Electrum Bitcoin wallet
  HTML git clone https://git.parazyd.org/electrum
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
       ---
   DIR commit bb8a6120af75a24c5b60e4fe6e41520df301cb58
   DIR parent ff7aab048424b2544a5f20f8f55a5de99ed0dc8d
  HTML Author: SomberNight <somber.night@protonmail.com>
       Date:   Sat, 30 Jun 2018 17:12:34 +0200
       
       wine build: try multiple keyservers as in tianon/gosu#35
       
       Diffstat:
         M contrib/build-wine/prepare-wine.sh  |      10 ++++++++--
       
       1 file changed, 8 insertions(+), 2 deletions(-)
       ---
   DIR diff --git a/contrib/build-wine/prepare-wine.sh b/contrib/build-wine/prepare-wine.sh
       t@@ -93,8 +93,14 @@ cd /tmp/electrum-build
        # keys from https://www.python.org/downloads/#pubkeys
        KEYLIST_PYTHON_DEV="531F072D39700991925FED0C0EDDC5F26A45C816 26DEA9D4613391EF3E25C9FF0A5B101836580288 CBC547978A3964D14B9AB36A6AF053F07D9DC8D2 C01E1CAD5EA2C4F0B8E3571504C367C218ADD4FF 12EF3DC38047DA382D18A5B999CDEA9DA4135B38 8417157EDBE73D9EAC1E539B126EB563A74B06BF DBBF2EEBF925FAADCF1F3FFFD9866941EA5BBD71 2BA0DB82515BBB9EFFAC71C5C9BE28DEE6DF025C 0D96DF4D4110E5C43FBFB17F2D347EA6AA65421D C9B104B3DD3AA72D7CCB1066FB9921286F5E1540 97FC712E4C024BBEA48A61ED3A5CA953F73C700D 7ED10B6531D7C8E1BC296021FC624643487034E5"
        KEYRING_PYTHON_DEV="keyring-electrum-build-python-dev.gpg"
       -KEYSERVER_PYTHON_DEV="hkp://pool.sks-keyservers.net"
       -retry gpg --no-default-keyring --keyring $KEYRING_PYTHON_DEV --keyserver $KEYSERVER_PYTHON_DEV --recv-keys $KEYLIST_PYTHON_DEV
       +for server in $(shuf -e ha.pool.sks-keyservers.net \
       +                        hkp://p80.pool.sks-keyservers.net:80 \
       +                        keyserver.ubuntu.com \
       +                        hkp://keyserver.ubuntu.com:80 \
       +                        pgp.mit.edu) ; do
       +    retry gpg --no-default-keyring --keyring $KEYRING_PYTHON_DEV --keyserver "$server" --recv-keys $KEYLIST_PYTHON_DEV \
       +    && break || : ;
       +done
        for msifile in core dev exe lib pip tools; do
            echo "Installing $msifile..."
            wget -N -c "https://www.python.org/ftp/python/$PYTHON_VERSION/win32/${msifile}.msi"