Date: Tue, 1 Mar 2022 08:47:03 +0800 From: Po-Chuan Hsieh <sunpoet@freebsd.org> To: Muhammad Moinur Rahman <bofh@freebsd.org> Cc: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org, Yasuhiro Kimura <yasu@freebsd.org> Subject: Re: git: 08b5ebce79c5 - main - dns/py-dnspython: Revert 7fc16da Message-ID: <CAMHz58R_8PP-Mkeg_PBD0b==mwDGj%2BvjzHucu3Zy6E_Sf1UK_A@mail.gmail.com> In-Reply-To: <202202282341.21SNf1fw039508@gitrepo.freebsd.org> References: <202202282341.21SNf1fw039508@gitrepo.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
--00000000000012db2205d91d83e9 Content-Type: text/plain; charset="UTF-8" Please revert it. At least it breaks dependent ports now. from poudriere: [00:00:31] [03] [00:00:00] Building dns/py-dnspython@py38 | py38-dnspython-1.16.0,1 [00:00:31] [03] [00:00:00] Finished dns/py-dnspython@py38 | py38-dnspython-1.16.0,1: Ignored: Unknown flavor 'py38', possible flavors: py27 py37 [00:00:31] [03] [00:00:00] Skipping net/py-eventlet | py38-eventlet-0.33.0: Dependent port dns/py-dnspython@py38 | py38-dnspython-1.16.0,1 ignored [00:00:31] [03] [00:00:00] Skipping devel/py-glance-store | py38-glance-store-3.0.0: Dependent port dns/py-dnspython@py38 | py38-dnspython-1.16.0,1 ignored [00:00:31] [03] [00:00:00] Skipping devel/py-os-brick | py38-os-brick-5.2.0: Dependent port dns/py-dnspython@py38 | py38-dnspython-1.16.0,1 ignored [00:00:31] [03] [00:00:00] Skipping devel/py-os-win | py38-os-win-5.6.0: Dependent port dns/py-dnspython@py38 | py38-dnspython-1.16.0,1 ignored [00:00:31] [03] [00:00:00] Skipping devel/py-oslo.privsep | py38-oslo.privsep-2.7.0: Dependent port dns/py-dnspython@py38 | py38-dnspython-1.16.0,1 ignored [00:00:31] [03] [00:00:00] Skipping devel/py-oslo.service | py38-oslo.service-2.8.0: Dependent port dns/py-dnspython@py38 | py38-dnspython-1.16.0,1 ignored [00:00:31] [03] [00:00:00] Skipping devel/py-oslo.vmware | py38-oslo.vmware-3.10.0: Dependent port dns/py-dnspython@py38 | py38-dnspython-1.16.0,1 ignored AFAIK, mail/mailman is the only consumer of dns/py-dnspython@py27. It will be better to: - Add dns/py-dnspython1 (w/ USES=python:2.7) just for mail/mailman. - Update dns/py-dnspython to 2.2.0 (w/ USES=python:3.6+) - Remove dns/py-dnspython2 The reason why I suggest keeping dns/py-dnspython, not your dns/py-dnspython2, is to match upstream naming on PyPI. It helps everyone to find the correct port we want. Thanks, sunpoet On Tue, Mar 1, 2022 at 7:41 AM Muhammad Moinur Rahman <bofh@freebsd.org> wrote: > The branch main has been updated by bofh: > > URL: > https://cgit.FreeBSD.org/ports/commit/?id=08b5ebce79c5923c31b249d37df69b99ddcb843e > > commit 08b5ebce79c5923c31b249d37df69b99ddcb843e > Author: Muhammad Moinur Rahman <bofh@FreeBSD.org> > AuthorDate: 2022-02-28 23:31:02 +0000 > Commit: Muhammad Moinur Rahman <bofh@FreeBSD.org> > CommitDate: 2022-02-28 23:40:41 +0000 > > dns/py-dnspython: Revert 7fc16da > > - Remove duplicate PORTVERSION based on PYTHON_MAJOR_VER > - Add PORTEPOCH as version number going backwards 2.1.0=>1.16.0 > - Restrict python upto 3.7 > - Fix finance/electrum which was changed based on this. > - Fix dns/py-dns-lexicon which was changed based on this. > PR: 261325 > Approved by: portmgr > Fixes: 7fc16da dns/py-dnspython: Update to 2.1.0 for Python 3 > --- > dns/py-dns-lexicon/Makefile | 4 ++-- > dns/py-dnspython/Makefile | 22 ++++++++-------------- > dns/py-dnspython/distinfo | 4 +--- > finance/electrum/Makefile | 4 ++-- > 4 files changed, 13 insertions(+), 21 deletions(-) > > diff --git a/dns/py-dns-lexicon/Makefile b/dns/py-dns-lexicon/Makefile > index f5b1b39ca35d..12f4451fbb78 100644 > --- a/dns/py-dns-lexicon/Makefile > +++ b/dns/py-dns-lexicon/Makefile > @@ -2,7 +2,7 @@ > > PORTNAME= dns-lexicon > PORTVERSION= 3.9.2 > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= dns python > MASTER_SITES= CHEESESHOP > PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > @@ -32,7 +32,7 @@ OCI_DESC= Oracle Cloud Infrastructure (OCI) support > ROUTE53_DESC= Route 53 support > SOFTLAYER_DESC= SoftLayer (IBM Cloud) support > > -DDNS_RUN_DEPENDS= > ${PYTHON_PKGNAMEPREFIX}dnspython>=2:dns/py-dnspython@${PY_FLAVOR} > +DDNS_RUN_DEPENDS= > ${PYTHON_PKGNAMEPREFIX}dnspython2>=2:dns/py-dnspython2@${PY_FLAVOR} > GRANSY_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}zeep>=3:net/py-zeep@ > ${PY_FLAVOR} > LOCALZONE_RUN_DEPENDS= > ${PYTHON_PKGNAMEPREFIX}localzone>=0.9.8:dns/py-localzone@${PY_FLAVOR} > OCI_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}oci>=2:devel/py-oci@ > ${PY_FLAVOR} > diff --git a/dns/py-dnspython/Makefile b/dns/py-dnspython/Makefile > index ba52900816d1..083f98e153a6 100644 > --- a/dns/py-dnspython/Makefile > +++ b/dns/py-dnspython/Makefile > @@ -2,6 +2,7 @@ > > PORTNAME= dnspython > PORTVERSION= 1.16.0 > +PORTEPOCH= 1 > CATEGORIES= dns python > MASTER_SITES= CHEESESHOP > PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > @@ -12,27 +13,20 @@ COMMENT= DNS toolkit for Python > LICENSE= ISCL > LICENSE_FILE= ${WRKSRC}/LICENSE > > -USES= python:2.7+ zip > +USES= python:2.7-3.7 zip > USE_PYTHON= autoplist concurrent cython distutils > > NO_ARCH= yes > > -OPTIONS_DEFINE= EXAMPLES PYCRYPTODOME > -PYCRYPTODOME_DESC= Enable pycryptodome (part of dnssec needs it) > -PYCRYPTODOME_RUN_DEPENDS= > ${PYTHON_PKGNAMEPREFIX}pycryptodome>=0:security/py-pycryptodome@ > ${PY_FLAVOR} > - > -PORTEXAMPLES= ddns.py e164.py mx.py name.py reverse.py reverse_name.py \ > - xfr.py zonediff.py > +PORTEXAMPLES= ddns.py e164.py mx.py name.py reverse.py reverse_name.py > xfr.py \ > + zonediff.py > > -.include <bsd.port.pre.mk> > - > -.if ${PYTHON_MAJOR_VER} == 3 > -PORTVERSION= 2.1.0 > -.endif > +OPTIONS_DEFINE= EXAMPLES PYCRYPTODOME > +PYCRYPTODOME_DESC= Enable pycryptodome (part of dnssec needs > it) > +PYCRYPTODOME_RUN_DEPENDS= > ${PYTHON_PKGNAMEPREFIX}pycryptodome>=0:security/py-pycryptodome@ > ${PY_FLAVOR} > > post-install-EXAMPLES-on: > -# examples > @${MKDIR} ${STAGEDIR}${EXAMPLESDIR} > ${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/examples/,} > ${STAGEDIR}${EXAMPLESDIR} > > -.include <bsd.port.post.mk> > +.include <bsd.port.mk> > diff --git a/dns/py-dnspython/distinfo b/dns/py-dnspython/distinfo > index a4ae58940da3..88b7df39d17d 100644 > --- a/dns/py-dnspython/distinfo > +++ b/dns/py-dnspython/distinfo > @@ -1,5 +1,3 @@ > -TIMESTAMP = 1613064959 > +TIMESTAMP = 1646069762 > SHA256 (dnspython-1.16.0.zip) = > 36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01 > SIZE (dnspython-1.16.0.zip) = 266364 > -SHA256 (dnspython-2.1.0.zip) = > e4a87f0b573201a0f3727fa18a516b055fd1107e0e5477cded4a2de497df1dd4 > -SIZE (dnspython-2.1.0.zip) = 389021 > diff --git a/finance/electrum/Makefile b/finance/electrum/Makefile > index 93d821c7bc2e..901c2d8e96b9 100644 > --- a/finance/electrum/Makefile > +++ b/finance/electrum/Makefile > @@ -2,7 +2,7 @@ > > PORTNAME= electrum > PORTVERSION= 4.1.5 > -PORTREVISION= 1 > +PORTREVISION= 2 > CATEGORIES= finance python > MASTER_SITES= https://download.electrum.org/${PORTVERSION}/ \ > http://download.electrum.org/${PORTVERSION}/ > @@ -23,7 +23,7 @@ RUN_DEPENDS= > ${PYTHON_PKGNAMEPREFIX}aiohttp-socks>=0.3:net/py-aiohttp-socks@${PY > ${PYTHON_PKGNAMEPREFIX}bitstring>0:devel/py-bitstring@${PY_FLAVOR} > \ > ${PYTHON_PKGNAMEPREFIX}certifi>0:security/py-certifi@${PY_FLAVOR} > \ > > ${PYTHON_PKGNAMEPREFIX}cryptography>=2.6:security/py-cryptography@${PY_FLAVOR} > \ > - ${PYTHON_PKGNAMEPREFIX}dnspython>=2.0:dns/py-dnspython@${PY_FLAVOR} > \ > + ${PYTHON_PKGNAMEPREFIX}dnspython2>=2.0:dns/py-dnspython2@${PY_FLAVOR} > \ > ${PYTHON_PKGNAMEPREFIX}httplib2>=0:www/py-httplib2@${PY_FLAVOR} > \ > > ${PYTHON_PKGNAMEPREFIX}jsonrpclib-pelix>0:devel/py-jsonrpclib-pelix@${PY_FLAVOR} > \ > ${PYTHON_PKGNAMEPREFIX}pbkdf2>=1.3:security/py-pbkdf2@${PY_FLAVOR} > \ > --00000000000012db2205d91d83e9 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable <div dir=3D"ltr"><div>Please revert it.<br></div><div>At least it breaks de= pendent ports now.<br></div><div><br></div><div>from poudriere:</div><div>[= 00:00:31] [03] [00:00:00] Building dns/py-dnspython@py38 | py38-dnspython-1= .16.0,1<br>[00:00:31] [03] [00:00:00] Finished dns/py-dnspython@py38 | py38= -dnspython-1.16.0,1: Ignored: Unknown flavor 'py38', possible flavo= rs: py27 py37<br>[00:00:31] [03] [00:00:00] Skipping net/py-eventlet | py38= -eventlet-0.33.0: Dependent port dns/py-dnspython@py38 | py38-dnspython-1.1= 6.0,1 ignored<br>[00:00:31] [03] [00:00:00] Skipping devel/py-glance-store = | py38-glance-store-3.0.0: Dependent port dns/py-dnspython@py38 | py38-dnsp= ython-1.16.0,1 ignored<br>[00:00:31] [03] [00:00:00] Skipping devel/py-os-b= rick | py38-os-brick-5.2.0: Dependent port dns/py-dnspython@py38 | py38-dns= python-1.16.0,1 ignored<br>[00:00:31] [03] [00:00:00] Skipping devel/py-os-= win | py38-os-win-5.6.0: Dependent port dns/py-dnspython@py38 | py38-dnspyt= hon-1.16.0,1 ignored<br>[00:00:31] [03] [00:00:00] Skipping devel/py-oslo.p= rivsep | py38-oslo.privsep-2.7.0: Dependent port dns/py-dnspython@py38 | py= 38-dnspython-1.16.0,1 ignored<br>[00:00:31] [03] [00:00:00] Skipping devel/= py-oslo.service | py38-oslo.service-2.8.0: Dependent port dns/py-dnspython@= py38 | py38-dnspython-1.16.0,1 ignored<br>[00:00:31] [03] [00:00:00] Skippi= ng devel/py-oslo.vmware | py38-oslo.vmware-3.10.0: Dependent port dns/py-dn= spython@py38 | py38-dnspython-1.16.0,1 ignored<br></div><div><br></div><div= >AFAIK, mail/mailman is the only consumer of dns/py-dnspython@py27.</div><d= iv>It will be better to:</div><div>- Add dns/py-dnspython1 (w/ USES=3Dpytho= n:2.7) just for mail/mailman.</div><div>- Update dns/py-dnspython to 2.2.0 = (w/ USES=3Dpython:3.6+)</div><div>- Remove dns/py-dnspython2</div><div><br>= </div><div>The reason why I suggest keeping dns/py-dnspython, not your dns/= py-dnspython2, is to match upstream naming on PyPI.</div><div>It helps ever= yone to find the correct port we want.</div><div><br></div><div>Thanks,</di= v><div>sunpoet</div><div><div><br></div></div><div class=3D"gmail_quote"><d= iv dir=3D"ltr" class=3D"gmail_attr">On Tue, Mar 1, 2022 at 7:41 AM Muhammad= Moinur Rahman <<a href=3D"mailto:bofh@freebsd.org" target=3D"_blank">bo= fh@freebsd.org</a>> wrote:<br></div><blockquote class=3D"gmail_quote" st= yle=3D"margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padd= ing-left:1ex">The branch main has been updated by bofh:<br> <br> URL: <a href=3D"https://cgit.FreeBSD.org/ports/commit/?id=3D08b5ebce79c5923= c31b249d37df69b99ddcb843e" rel=3D"noreferrer" target=3D"_blank">https://cgi= t.FreeBSD.org/ports/commit/?id=3D08b5ebce79c5923c31b249d37df69b99ddcb843e</= a><br> <br> commit 08b5ebce79c5923c31b249d37df69b99ddcb843e<br> Author:=C2=A0 =C2=A0 =C2=A0Muhammad Moinur Rahman <bofh@FreeBSD.org><= br> AuthorDate: 2022-02-28 23:31:02 +0000<br> Commit:=C2=A0 =C2=A0 =C2=A0Muhammad Moinur Rahman <bofh@FreeBSD.org><= br> CommitDate: 2022-02-28 23:40:41 +0000<br> <br> =C2=A0 =C2=A0 dns/py-dnspython: Revert 7fc16da<br> <br> =C2=A0 =C2=A0 - Remove duplicate PORTVERSION based on PYTHON_MAJOR_VER<br> =C2=A0 =C2=A0 - Add PORTEPOCH as version number going backwards 2.1.0=3D>= ;1.16.0<br> =C2=A0 =C2=A0 - Restrict python upto 3.7<br> =C2=A0 =C2=A0 - Fix finance/electrum which was changed based on this.<br> =C2=A0 =C2=A0 - Fix dns/py-dns-lexicon which was changed based on this.<br> =C2=A0 =C2=A0 PR:=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0261325<br> =C2=A0 =C2=A0 Approved by:=C2=A0 =C2=A0 portmgr<br> =C2=A0 =C2=A0 Fixes: 7fc16da dns/py-dnspython: Update to 2.1.0 for Python 3= <br> ---<br> =C2=A0dns/py-dns-lexicon/Makefile |=C2=A0 4 ++--<br> =C2=A0dns/py-dnspython/Makefile=C2=A0 =C2=A0| 22 ++++++++--------------<br> =C2=A0dns/py-dnspython/distinfo=C2=A0 =C2=A0|=C2=A0 4 +---<br> =C2=A0finance/electrum/Makefile=C2=A0 =C2=A0|=C2=A0 4 ++--<br> =C2=A04 files changed, 13 insertions(+), 21 deletions(-)<br> <br> diff --git a/dns/py-dns-lexicon/Makefile b/dns/py-dns-lexicon/Makefile<br> index f5b1b39ca35d..12f4451fbb78 100644<br> --- a/dns/py-dns-lexicon/Makefile<br> +++ b/dns/py-dns-lexicon/Makefile<br> @@ -2,7 +2,7 @@<br> <br> =C2=A0PORTNAME=3D=C2=A0 =C2=A0 =C2=A0 dns-lexicon<br> =C2=A0PORTVERSION=3D=C2=A0 =C2=A03.9.2<br> -PORTREVISION=3D=C2=A0 1<br> +PORTREVISION=3D=C2=A0 2<br> =C2=A0CATEGORIES=3D=C2=A0 =C2=A0 dns python<br> =C2=A0MASTER_SITES=3D=C2=A0 CHEESESHOP<br> =C2=A0PKGNAMEPREFIX=3D ${PYTHON_PKGNAMEPREFIX}<br> @@ -32,7 +32,7 @@ OCI_DESC=3D=C2=A0 =C2=A0 =C2=A0Oracle Cloud Infrastructur= e (OCI) support<br> =C2=A0ROUTE53_DESC=3D=C2=A0 Route 53 support<br> =C2=A0SOFTLAYER_DESC=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0 SoftLayer (IBM Cloud) su= pport<br> <br> -DDNS_RUN_DEPENDS=3D=C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPREFIX}dnspython&g= t;=3D2:dns/py-dnspython@${PY_FLAVOR}<br> +DDNS_RUN_DEPENDS=3D=C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPREFIX}dnspython2&= gt;=3D2:dns/py-dnspython2@${PY_FLAVOR}<br> =C2=A0GRANSY_RUN_DEPENDS=3D=C2=A0 =C2=A0 ${PYTHON_PKGNAMEPREFIX}zeep>=3D= 3:net/py-zeep@${PY_FLAVOR}<br> =C2=A0LOCALZONE_RUN_DEPENDS=3D ${PYTHON_PKGNAMEPREFIX}localzone>=3D0.9.8= :dns/py-localzone@${PY_FLAVOR}<br> =C2=A0OCI_RUN_DEPENDS=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0${PYTHON_PKGNAMEPREFIX}o= ci>=3D2:devel/py-oci@${PY_FLAVOR}<br> diff --git a/dns/py-dnspython/Makefile b/dns/py-dnspython/Makefile<br> index ba52900816d1..083f98e153a6 100644<br> --- a/dns/py-dnspython/Makefile<br> +++ b/dns/py-dnspython/Makefile<br> @@ -2,6 +2,7 @@<br> <br> =C2=A0PORTNAME=3D=C2=A0 =C2=A0 =C2=A0 dnspython<br> =C2=A0PORTVERSION=3D=C2=A0 =C2=A01.16.0<br> +PORTEPOCH=3D=C2=A0 =C2=A0 =C2=A01<br> =C2=A0CATEGORIES=3D=C2=A0 =C2=A0 dns python<br> =C2=A0MASTER_SITES=3D=C2=A0 CHEESESHOP<br> =C2=A0PKGNAMEPREFIX=3D ${PYTHON_PKGNAMEPREFIX}<br> @@ -12,27 +13,20 @@ COMMENT=3D=C2=A0 =C2=A0 DNS toolkit for Python<br> =C2=A0LICENSE=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0ISCL<br> =C2=A0LICENSE_FILE=3D=C2=A0 ${WRKSRC}/LICENSE<br> <br> -USES=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 python:2.7+ zip<br> +USES=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 python:2.7-3.7 zip<br> =C2=A0USE_PYTHON=3D=C2=A0 =C2=A0 autoplist concurrent cython distutils<br> <br> =C2=A0NO_ARCH=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0yes<br> <br> -OPTIONS_DEFINE=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0 EXAMPLES PYCRYPTODOME<br> -PYCRYPTODOME_DESC=3D=C2=A0 =C2=A0 =C2=A0Enable pycryptodome (part of dnsse= c needs it)<br> -PYCRYPTODOME_RUN_DEPENDS=3D=C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPREFIX}pyc= ryptodome>=3D0:security/py-pycryptodome@${PY_FLAVOR}<br> -<br> -PORTEXAMPLES=3D=C2=A0 ddns.py e164.py mx.py name.py reverse.py reverse_nam= e.py \<br> -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0xfr.py zonediff.py<= br> +PORTEXAMPLES=3D=C2=A0 ddns.py e164.py mx.py name.py reverse.py reverse_nam= e.py xfr.py \<br> +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0zonediff.py<br> <br> -.include <<a href=3D"http://bsd.port.pre.mk" rel=3D"noreferrer" target= =3D"_blank">bsd.port.pre.mk</a>><br> -<br> -.if ${PYTHON_MAJOR_VER} =3D=3D 3<br> -PORTVERSION=3D=C2=A0 =C2=A02.1.0<br> -.endif<br> +OPTIONS_DEFINE=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 = =C2=A0 =C2=A0 =C2=A0 =C2=A0 EXAMPLES PYCRYPTODOME<br> +PYCRYPTODOME_DESC=3D=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0Enable= pycryptodome (part of dnssec needs it)<br> +PYCRYPTODOME_RUN_DEPENDS=3D=C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPREFIX}pyc= ryptodome>=3D0:security/py-pycryptodome@${PY_FLAVOR}<br> <br> =C2=A0post-install-EXAMPLES-on:<br> -# examples<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 ${INSTALL_DATA} ${PORTEXAMPLES:S,^,${WRKSRC}/ex= amples/,} ${STAGEDIR}${EXAMPLESDIR}<br> <br> -.include <<a href=3D"http://bsd.port.post.mk" rel=3D"noreferrer" target= =3D"_blank">bsd.port.post.mk</a>><br> +.include <<a href=3D"http://bsd.port.mk" rel=3D"noreferrer" target=3D"_= blank">bsd.port.mk</a>><br> diff --git a/dns/py-dnspython/distinfo b/dns/py-dnspython/distinfo<br> index a4ae58940da3..88b7df39d17d 100644<br> --- a/dns/py-dnspython/distinfo<br> +++ b/dns/py-dnspython/distinfo<br> @@ -1,5 +1,3 @@<br> -TIMESTAMP =3D 1613064959<br> +TIMESTAMP =3D 1646069762<br> =C2=A0SHA256 (dnspython-1.16.0.zip) =3D 36c5e8e38d4369a08b6780b7f27d790a292= b2b08eea01607865bf0936c558e01<br> =C2=A0SIZE (dnspython-1.16.0.zip) =3D 266364<br> -SHA256 (dnspython-2.1.0.zip) =3D e4a87f0b573201a0f3727fa18a516b055fd1107e0= e5477cded4a2de497df1dd4<br> -SIZE (dnspython-2.1.0.zip) =3D 389021<br> diff --git a/finance/electrum/Makefile b/finance/electrum/Makefile<br> index 93d821c7bc2e..901c2d8e96b9 100644<br> --- a/finance/electrum/Makefile<br> +++ b/finance/electrum/Makefile<br> @@ -2,7 +2,7 @@<br> <br> =C2=A0PORTNAME=3D=C2=A0 =C2=A0 =C2=A0 electrum<br> =C2=A0PORTVERSION=3D=C2=A0 =C2=A04.1.5<br> -PORTREVISION=3D=C2=A0 1<br> +PORTREVISION=3D=C2=A0 2<br> =C2=A0CATEGORIES=3D=C2=A0 =C2=A0 finance python<br> =C2=A0MASTER_SITES=3D=C2=A0 <a href=3D"https://download.electrum.org/$%7BPO= RTVERSION%7D/" rel=3D"noreferrer" target=3D"_blank">https://download.electr= um.org/${PORTVERSION}/</a> \<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 <a href=3D"http://d= ownload.electrum.org/$%7BPORTVERSION%7D/" rel=3D"noreferrer" target=3D"_bla= nk">http://download.electrum.org/${PORTVERSION}/</a><br> @@ -23,7 +23,7 @@ RUN_DEPENDS=3D=C2=A0 ${PYTHON_PKGNAMEPREFIX}aiohttp-socks= >=3D0.3:net/py-aiohttp-socks@${PY<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPRE= FIX}bitstring>0:devel/py-bitstring@${PY_FLAVOR} \<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPRE= FIX}certifi>0:security/py-certifi@${PY_FLAVOR} \<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPRE= FIX}cryptography>=3D2.6:security/py-cryptography@${PY_FLAVOR} \<br> -=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0${PYTHON_PKGNAMEPRE= FIX}dnspython>=3D2.0:dns/py-dnspython@${PY_FLAVOR} \<br> +=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0${PYTHON_PKGNAMEPRE= FIX}dnspython2>=3D2.0:dns/py-dnspython2@${PY_FLAVOR} \<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPRE= FIX}httplib2>=3D0:www/py-httplib2@${PY_FLAVOR} \<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPRE= FIX}jsonrpclib-pelix>0:devel/py-jsonrpclib-pelix@${PY_FLAVOR} \<br> =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 ${PYTHON_PKGNAMEPRE= FIX}pbkdf2>=3D1.3:security/py-pbkdf2@${PY_FLAVOR} \<br> </blockquote></div></div> --00000000000012db2205d91d83e9--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAMHz58R_8PP-Mkeg_PBD0b==mwDGj%2BvjzHucu3Zy6E_Sf1UK_A>