email2phonenumber: py3 fix

This commit is contained in:
Guido Kroon 2020-06-02 23:36:57 +02:00
parent d98a562331
commit abb7ed9964
No known key found for this signature in database
GPG key ID: 394C398C531EFAB0
4 changed files with 5 additions and 5 deletions

View file

@ -1 +1 @@
DIST email2phonenumber-20190816.tar.gz 15635 BLAKE2B ad66c5ee3e4b6746db74fc9e0edd335eec11f8de37f2ad9ec8d240184b5815a93d05f191f6073d193df47c8295d600e642d64da8502e6255c61cdcc3afaa6a3f SHA512 0ccbf6790943e9f37a9da9c20b9fd8772c4e7ec5260497c8b263538ce963573a3f5df1ce06657cd5be375e7c399542d6f10e0b205c5632dc1f8b85b3fe3ec6c8
DIST email2phonenumber-20190916.tar.gz 17067 BLAKE2B d30daee8bd7571196d498b8789b27c36c7e92008bc5ae3e141c84fdf057406ebd3bae471a19344fda4e1f5de79b91f4a5229a7f75f7fed2907d57db648f3d649 SHA512 8b3993fe2afa7bf9a0a2d932ea7b234ef9d52ec57903b825ce35d6b4e40b04e0e05af593153378ece0c8118aead42b082c8aa85aa63bf7d76ea7957ad2cb365c

View file

@ -1,9 +1,9 @@
# Copyright 1999-2019 Gentoo Authors
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python2_7 )
PYTHON_COMPAT=( python3_{6,7} )
inherit python-r1
@ -14,8 +14,7 @@ if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/martinvigo/email2phonenumber"
else
HASH_COMMIT="28b83b1994eac1f7eaf18a724e900dd3bc127a96"
HASH_COMMIT="28c277ebb8c1185d639ce21dab897b6300153042"
SRC_URI="https://github.com/martinvigo/email2phonenumber/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${PN}-${HASH_COMMIT}"

View file

@ -0,0 +1 @@
~net-mail/email2phonenumber-20190916