Compare commits
5 Commits
55f6a4d08e
...
b347d85aaa
Author | SHA1 | Date | |
---|---|---|---|
b347d85aaa | |||
dfeec1cc87 | |||
596bf5ba1e | |||
f3bb8a8c1b | |||
1342603369 |
@ -1,4 +1,4 @@
|
||||
DIST hkdf-0.0.3.tar.gz 6727 BLAKE2B b91d8b65929b6d886659cf85ddb294b3399dd90b155fa88fc1125daf1894c65924abdcd20a1b53a60e9e30e371b4ff9160b3d4630cfec741110eb3c0ae86c224 SHA512 abbd779e28c49eae08736089cd14336b4a2004e258c469412b5d9c384fbb1ae1d2cbb3b6397ef0fed6fdbcd82b0ad57207bff655aca3f65e387a1ba825be2562
|
||||
EBUILD hkdf-0.0.3.ebuild 730 BLAKE2B 557ecafa2e59a56793f0c96d7928f8317db258360b9ca4705806f6785dfa2d7b2ec50bc2f040f62269785dfdcb46a2ec3a79cf25ae61eb7f5ec1a7daad944ffa SHA512 b34dd769ca541ee15f0032486086eb2e11898881e87fd2f5c630af743a34addbd6182cd969cf6196c3d9f78938080f6dd412812cecd6d066ad90443c5ec349f2
|
||||
EBUILD hkdf-9999.ebuild 730 BLAKE2B 557ecafa2e59a56793f0c96d7928f8317db258360b9ca4705806f6785dfa2d7b2ec50bc2f040f62269785dfdcb46a2ec3a79cf25ae61eb7f5ec1a7daad944ffa SHA512 b34dd769ca541ee15f0032486086eb2e11898881e87fd2f5c630af743a34addbd6182cd969cf6196c3d9f78938080f6dd412812cecd6d066ad90443c5ec349f2
|
||||
EBUILD hkdf-0.0.3.ebuild 758 BLAKE2B df239a4efbceb0a9731d7039c0c5f495c65e8d14c5b024c05975f3240253446dfc8ff2028d1887d8cb40fad592bba654f889038a22a4d055e95dd77aa08e6651 SHA512 92bf16a9d117aee5c8ba960b4a13f956a045f31ce2905fc4bafbca3657a7be745ef630d76494b1601678ad555a22468d392e8272f868b3aa164b2bf3be2ae5c3
|
||||
EBUILD hkdf-9999.ebuild 758 BLAKE2B df239a4efbceb0a9731d7039c0c5f495c65e8d14c5b024c05975f3240253446dfc8ff2028d1887d8cb40fad592bba654f889038a22a4d055e95dd77aa08e6651 SHA512 92bf16a9d117aee5c8ba960b4a13f956a045f31ce2905fc4bafbca3657a7be745ef630d76494b1601678ad555a22468d392e8272f868b3aa164b2bf3be2ae5c3
|
||||
MISC metadata.xml 369 BLAKE2B c3bc91c2b31cc42d2b8a9d8f7da31e987596eb9ba9563cba4d282ec4f871b4f698eca92d700dc18116f59100e83f33da478c800bfd616c3a3f373b3659735b5e SHA512 e3107e5e2681063887cbc28a2137ccb895f6e2f1187d12b762b9c34f1628faae59de45a8ab26212abcaac64a1d32783060ebcbbcdc1c33bd113ffae1e24eb79a
|
||||
|
@ -1,23 +1,23 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/casebeer/python-hkdf.git"
|
||||
else
|
||||
EGIT_COMMIT="ba0e2eee8f50cc84706f816dbc57897319e2250c"
|
||||
MY_PN="python-${PN}"
|
||||
MY_P="${MY_PN}-${EGIT_COMMIT}"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
SRC_URI="https://github.com/casebeer/python-hkdf/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/casebeer/python-hkdf.git"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Python implementation of HKDF"
|
||||
@ -28,3 +28,5 @@ SLOT="0"
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
distutils_enable_tests nose
|
||||
|
@ -1,23 +1,23 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/casebeer/python-hkdf.git"
|
||||
else
|
||||
EGIT_COMMIT="ba0e2eee8f50cc84706f816dbc57897319e2250c"
|
||||
MY_PN="python-${PN}"
|
||||
MY_P="${MY_PN}-${EGIT_COMMIT}"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
SRC_URI="https://github.com/casebeer/python-hkdf/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/casebeer/python-hkdf.git"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Python implementation of HKDF"
|
||||
@ -28,3 +28,5 @@ SLOT="0"
|
||||
DEPEND=""
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND=""
|
||||
|
||||
distutils_enable_tests nose
|
||||
|
@ -1,4 +1,4 @@
|
||||
DIST spake2-0.8.tar.gz 62425 BLAKE2B 64215362af26fff0785fdabf4282f7111a4cc917750827075b616f009cb1fa6373fc2325382c26b43c051aa5b94e414ca2a5223d9ab666289eb2d04723b15cb5 SHA512 908c377c831f4a11551973ca917b113d51a66c533d35fd19b2692fdb7e575ed2a5045d9b632bc55c37b68ad092f01dff5da191e9dfbfb5599b72844788438d68
|
||||
EBUILD spake2-0.8.ebuild 702 BLAKE2B 9268c6b9a9632bc085089e1c65249ae6a0e005e1cd7d6dac782de0bb6525033271a6b0801f8293d2efe860f2aa939456bdd348ff4ed47dc6b0f31f8bc7b79ea7 SHA512 5fe87b675407d171ba2014ba6947820c42624471c03952e4ffc56bc831c6d0be9ef0c8e5753b9a73cfd64eab1cf3c3c9bad1cf677eb7dbd22fe30ef8802e421f
|
||||
EBUILD spake2-9999.ebuild 702 BLAKE2B 9268c6b9a9632bc085089e1c65249ae6a0e005e1cd7d6dac782de0bb6525033271a6b0801f8293d2efe860f2aa939456bdd348ff4ed47dc6b0f31f8bc7b79ea7 SHA512 5fe87b675407d171ba2014ba6947820c42624471c03952e4ffc56bc831c6d0be9ef0c8e5753b9a73cfd64eab1cf3c3c9bad1cf677eb7dbd22fe30ef8802e421f
|
||||
EBUILD spake2-0.8.ebuild 774 BLAKE2B a18cdaf63edf9368d26c60e90b6472b80ee27559d77b037a22a82ca899a8f3ef3f7d0f4dc25121684cbf4fbca9ae237caf3444fb16263281a3f725d597f5f8df SHA512 f18de4f784ce8fc1dcb273f7a8c38fa42cc37b74ae1927b83f78af2feedb0fa9b4fcaa03a7e3b2b1444db1ed84fd6d3fb74ebf09a926740c8c6c4b627ac34b04
|
||||
EBUILD spake2-9999.ebuild 774 BLAKE2B a18cdaf63edf9368d26c60e90b6472b80ee27559d77b037a22a82ca899a8f3ef3f7d0f4dc25121684cbf4fbca9ae237caf3444fb16263281a3f725d597f5f8df SHA512 f18de4f784ce8fc1dcb273f7a8c38fa42cc37b74ae1927b83f78af2feedb0fa9b4fcaa03a7e3b2b1444db1ed84fd6d3fb74ebf09a926740c8c6c4b627ac34b04
|
||||
MISC metadata.xml 371 BLAKE2B 217e796d2688accc20d1345bcb40a494baa8809e90f1992fc72c5ba01ad240e6c5e651b4f70b2d01569fb74553ce1ac7b596bee58833c0fba5724260418a7539 SHA512 279d4030696b1d4f39bc56921d2c77b5e1544ef96544fe7cdc5ae8817a474377aaf93b6e9a9a1e91bf1cea75df0d22fe4043bce680c8ab0225c824efa786f27a
|
||||
|
@ -1,30 +1,35 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/warner/python-spake2.git"
|
||||
else
|
||||
MY_PN="python-${PN}"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
SRC_URI="https://github.com/warner/python-spake2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/warner/python-spake2.git"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Python implementation of SPAKE2"
|
||||
HOMEPAGE="https://github.com/warner/python-spake2"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="dev-python/hkdf[${PYTHON_USEDEP}]"
|
||||
BDEPEND=""
|
||||
|
||||
distutils_enable_tests pytest
|
||||
python_test() {
|
||||
"${EPYTHON}" setup.py speed || die
|
||||
}
|
||||
|
@ -1,30 +1,35 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/warner/python-spake2.git"
|
||||
else
|
||||
MY_PN="python-${PN}"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
SRC_URI="https://github.com/warner/python-spake2/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/warner/python-spake2.git"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Python implementation of SPAKE2"
|
||||
HOMEPAGE="https://github.com/warner/python-spake2"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="dev-python/hkdf[${PYTHON_USEDEP}]"
|
||||
BDEPEND=""
|
||||
|
||||
distutils_enable_tests pytest
|
||||
python_test() {
|
||||
"${EPYTHON}" setup.py speed || die
|
||||
}
|
||||
|
@ -1,8 +1,4 @@
|
||||
DIST txtorcon-21.0.0.tar.gz 391424 BLAKE2B c28dbd7d460dcabd0dd4935cc3b63a27aaf8c5a6c497b2543f565161084ec67387bd17383dfb01021965a2253360c38fda31527a6103ada7396e59170b502441 SHA512 742bc9eede536f90586cbafd233123d59fda232fbaba8811fc2e6b01f69f3847045c55445c6ab720bbb5d6c265a0905287d4084d31723404facc03aeb4cbb49e
|
||||
DIST txtorcon-21.1.0.tar.gz 392497 BLAKE2B 29c95ce126f87693f3cedb0926bf6a71710b1edd8f876bdb20b822d7fca288ee49803e4f744f2c08555b569dc2d89e0aac47716e738ede5c26e794cb705d9827 SHA512 875c610055ded50ffc6df59a77e23c74e23bc88193262ca4e3678e44b70d32cd9d485820e622d7f4d09d4bfb860c18116057bc710273cd3a9b653bba1e153bdb
|
||||
DIST txtorcon-22.0.0.tar.gz 393090 BLAKE2B 4bc1cfcad3d865e38ec638c63f1291e622f7da63b51003619a9cafebbc3513ec1162bf4b73e8058852d2e494a91fa8bf72d1a4c941d7c16a99989361742a648c SHA512 6303facbebf770373770eda8c03c2deafb70c1673d71322fdff566179a6719b6328521104e6455dcc1b01b9da7509f3b43b88d7fea871c3a3246ab4bd47024e5
|
||||
EBUILD txtorcon-21.0.0.ebuild 799 BLAKE2B 243b2f71a5f1631a0bc0c3ad93afb804d39e2eb1b02741cab0f6a8e4f0c115037344fdc16077a9e919c3fcb46b106047df83e82eff0023d67c1f90321249a56a SHA512 b6333b4fab831f2d74cbdc2066840a838acdb4627eb7061ee267fea52826cc638d5bba1ee7720a17741785cdbe6636e82fe9acf1c8ea39230c62b30ab80308d4
|
||||
EBUILD txtorcon-21.1.0.ebuild 799 BLAKE2B 243b2f71a5f1631a0bc0c3ad93afb804d39e2eb1b02741cab0f6a8e4f0c115037344fdc16077a9e919c3fcb46b106047df83e82eff0023d67c1f90321249a56a SHA512 b6333b4fab831f2d74cbdc2066840a838acdb4627eb7061ee267fea52826cc638d5bba1ee7720a17741785cdbe6636e82fe9acf1c8ea39230c62b30ab80308d4
|
||||
EBUILD txtorcon-22.0.0.ebuild 798 BLAKE2B aebf0e0afcef112e92ddeadec1833609ad17a08c412289ad36a66459629d8b7a98cd8363b3ac6ec9ada7fd86d1f61af34e17c9e61126e4ffdac15125af36deb5 SHA512 8f9c3eec39994590a0399f5f650c044d14b9a47713a8f7acc5a2d8da0dd4d40585614a4d25f35fbed65ad135e3af4ef72803ad30a3ecd379d0c5f3fbbdcfa938
|
||||
EBUILD txtorcon-9999.ebuild 798 BLAKE2B aebf0e0afcef112e92ddeadec1833609ad17a08c412289ad36a66459629d8b7a98cd8363b3ac6ec9ada7fd86d1f61af34e17c9e61126e4ffdac15125af36deb5 SHA512 8f9c3eec39994590a0399f5f650c044d14b9a47713a8f7acc5a2d8da0dd4d40585614a4d25f35fbed65ad135e3af4ef72803ad30a3ecd379d0c5f3fbbdcfa938
|
||||
EBUILD txtorcon-22.0.0.ebuild 972 BLAKE2B 82ee80a4e635a1f5ceb0193b804fcfcc9f1acc33057226c475e2cd8f48e4526b7b29004497353368e49a2322da7871abb0f77022ad82c22b79f78ce289258246 SHA512 9fad17aa0ad72af7bf7099f3be59d2dde92fdfd23a9c510390e0454c9c05e3e2b0e7e5ab93b4fb9cd8d038b9191d810d9825d0943f4e43f0577af62e3a6ea43c
|
||||
EBUILD txtorcon-9999.ebuild 972 BLAKE2B 82ee80a4e635a1f5ceb0193b804fcfcc9f1acc33057226c475e2cd8f48e4526b7b29004497353368e49a2322da7871abb0f77022ad82c22b79f78ce289258246 SHA512 9fad17aa0ad72af7bf7099f3be59d2dde92fdfd23a9c510390e0454c9c05e3e2b0e7e5ab93b4fb9cd8d038b9191d810d9825d0943f4e43f0577af62e3a6ea43c
|
||||
MISC metadata.xml 368 BLAKE2B 984e9ba6f01cb5c6205c1e05f8cbe258e5e7e80803ec745815a05602f2130f441acfe127275a00fa3848c5038d377603672add78a3afab8216b0576cab5d1a1a SHA512 1f8c9d4edc57d9a6ff7758935a12367d667837102378b31f631cfa5c9a08675951d6e7a2708ac99277114890e19360ed00fc250cfcc0c04abc9b71dd4fb9693d
|
||||
|
@ -1,31 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
SRC_URI="https://github.com/meejah/txtorcon/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/meejah/txtorcon.git"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Tor control protocol implementation for Python"
|
||||
HOMEPAGE="https://github.com/meejah/txtorcon"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/twisted-15.5.0[${PYTHON_USEDEP},crypt]
|
||||
>=dev-python/zope-interface-3.6.1[${PYTHON_USEDEP}]
|
||||
dev-python/incremental[${PYTHON_USEDEP}]
|
||||
dev-python/automat[${PYTHON_USEDEP}]
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND=""
|
@ -1,31 +0,0 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
SRC_URI="https://github.com/meejah/txtorcon/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/meejah/txtorcon.git"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Tor control protocol implementation for Python"
|
||||
HOMEPAGE="https://github.com/meejah/txtorcon"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/twisted-15.5.0[${PYTHON_USEDEP},crypt]
|
||||
>=dev-python/zope-interface-3.6.1[${PYTHON_USEDEP}]
|
||||
dev-python/incremental[${PYTHON_USEDEP}]
|
||||
dev-python/automat[${PYTHON_USEDEP}]
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND=""
|
@ -21,11 +21,22 @@ HOMEPAGE="https://github.com/meejah/txtorcon"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
>=dev-python/twisted-15.5.0[${PYTHON_USEDEP},crypt]
|
||||
|| (
|
||||
>=dev-python/twisted-22.4.0-r2[${PYTHON_USEDEP},ssl]
|
||||
>=dev-python/twisted-15.5.0[${PYTHON_USEDEP},crypt]
|
||||
)
|
||||
>=dev-python/zope-interface-3.6.1[${PYTHON_USEDEP}]
|
||||
dev-python/incremental[${PYTHON_USEDEP}]
|
||||
dev-python/automat[${PYTHON_USEDEP}]
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND=""
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
sys-process/lsof
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
@ -21,11 +21,22 @@ HOMEPAGE="https://github.com/meejah/txtorcon"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
>=dev-python/twisted-15.5.0[${PYTHON_USEDEP},crypt]
|
||||
|| (
|
||||
>=dev-python/twisted-22.4.0-r2[${PYTHON_USEDEP},ssl]
|
||||
>=dev-python/twisted-15.5.0[${PYTHON_USEDEP},crypt]
|
||||
)
|
||||
>=dev-python/zope-interface-3.6.1[${PYTHON_USEDEP}]
|
||||
dev-python/incremental[${PYTHON_USEDEP}]
|
||||
dev-python/automat[${PYTHON_USEDEP}]
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND=""
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
sys-process/lsof
|
||||
)
|
||||
"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
@ -1,4 +1,4 @@
|
||||
DIST magic-wormhole-0.12.0.tar.gz 274063 BLAKE2B 6a0cddd285169373926de9da26125b34457c76e456b1bfd910baed74090900a663435b0df78e5521fd91274b111d8fad56e923832cdd430b2eb27c31d8b510e3 SHA512 141244e746b0718f2c9417e8f7de6a714b0feb051aea8c7950ea0d1bc5d2e24e922bed29544fe76aa61b06aa2ce2b5f330824017af8c6030813415e6c004c716
|
||||
EBUILD magic-wormhole-0.12.0.ebuild 1114 BLAKE2B 5328abe6b6f2cd1d6a8e31921468433ee61d8364abeb073fe3e35a8bf96254b73f8338d54f5242e30d6b7cdd7ea0dfef3d11a061c8546e6a2cc41bd0365955e9 SHA512 d6828be81123dd7e3529414656b2ac7c387d1b924cd3b2e5e11b0ac001045fd619be13310abf894c745ba021b0db3df12104710b234f59a8ce5f55f3e444789b
|
||||
EBUILD magic-wormhole-9999.ebuild 1114 BLAKE2B 5328abe6b6f2cd1d6a8e31921468433ee61d8364abeb073fe3e35a8bf96254b73f8338d54f5242e30d6b7cdd7ea0dfef3d11a061c8546e6a2cc41bd0365955e9 SHA512 d6828be81123dd7e3529414656b2ac7c387d1b924cd3b2e5e11b0ac001045fd619be13310abf894c745ba021b0db3df12104710b234f59a8ce5f55f3e444789b
|
||||
EBUILD magic-wormhole-0.12.0.ebuild 1212 BLAKE2B f73072dadd8c34a09148ecd2a9417228f2ef909e094fe2dde19c66a372ff122be8c78c025a9a89e203863d463164497066f2eaeb79f8fd7536e7f0c46c9be559 SHA512 082282e9d217e1a83d5c86102dc2a35a2ae5d882be026ec94ed670ad8c6735047a5e7ed809628cdf89dc6556b04419723b84d4786bb559d5e61bb1bab96ca0ce
|
||||
EBUILD magic-wormhole-9999.ebuild 1212 BLAKE2B f73072dadd8c34a09148ecd2a9417228f2ef909e094fe2dde19c66a372ff122be8c78c025a9a89e203863d463164497066f2eaeb79f8fd7536e7f0c46c9be559 SHA512 082282e9d217e1a83d5c86102dc2a35a2ae5d882be026ec94ed670ad8c6735047a5e7ed809628cdf89dc6556b04419723b84d4786bb559d5e61bb1bab96ca0ce
|
||||
MISC metadata.xml 388 BLAKE2B 0e9ec00a89b6cd31655c524135d7ebf389fc1266a11203ecd785870eb70b1e9d215757032c5b9d71d78b32f7d44b2d5bf245b4f25132f685705ffe0a0da20a43 SHA512 c7714f8539c1c3964e5fa43a01244a9fe894a75606abd7fc527333399a522cc94f9831962b23be3433fe7912782ae77d0ed5e088e618246f70a12cb991b29087
|
||||
|
@ -1,32 +1,37 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{5..9} )
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
SRC_URI="https://github.com/magic-wormhole/magic-wormhole/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/magic-wormhole/magic-wormhole.git"
|
||||
else
|
||||
SRC_URI="https://github.com/magic-wormhole/magic-wormhole/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Safe, simple file sharing"
|
||||
HOMEPAGE="https://github.com/magic-wormhole/magic-wormhole"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
RESTRICT="test" # Requires magic-wormhole-mailbox-server
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
>=dev-python/spake2-0.8[${PYTHON_USEDEP}]
|
||||
dev-python/pynacl[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
>=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/twisted-17.5.0[${PYTHON_USEDEP},crypt]
|
||||
|| (
|
||||
>=dev-python/twisted-22.4.0-r2[${PYTHON_USEDEP},ssl]
|
||||
>=dev-python/twisted-17.5.0[${PYTHON_USEDEP},crypt]
|
||||
)
|
||||
>=dev-python/autobahn-0.14.1[${PYTHON_USEDEP}]
|
||||
dev-python/automat[${PYTHON_USEDEP}]
|
||||
dev-python/hkdf[${PYTHON_USEDEP}]
|
||||
@ -36,5 +41,3 @@ RDEPEND="
|
||||
>=dev-python/txtorcon-18.0.2[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND=""
|
||||
|
||||
distutils_enable_tests setup.py
|
||||
|
@ -1,32 +1,37 @@
|
||||
# Copyright 1999-2021 Gentoo Authors
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{5..9} )
|
||||
PYTHON_COMPAT=( python3_{8..10} )
|
||||
DISTUTILS_USE_SETUPTOOLS=bdepend
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
if [[ ${PV} != *9999* ]]; then
|
||||
SRC_URI="https://github.com/magic-wormhole/magic-wormhole/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
else
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
inherit git-r3
|
||||
EGIT_REPO_URI="https://github.com/magic-wormhole/magic-wormhole.git"
|
||||
else
|
||||
SRC_URI="https://github.com/magic-wormhole/magic-wormhole/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
DESCRIPTION="Safe, simple file sharing"
|
||||
HOMEPAGE="https://github.com/magic-wormhole/magic-wormhole"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
RESTRICT="test" # Requires magic-wormhole-mailbox-server
|
||||
|
||||
DEPEND=""
|
||||
RDEPEND="
|
||||
>=dev-python/spake2-0.8[${PYTHON_USEDEP}]
|
||||
dev-python/pynacl[${PYTHON_USEDEP}]
|
||||
dev-python/six[${PYTHON_USEDEP}]
|
||||
>=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/twisted-17.5.0[${PYTHON_USEDEP},crypt]
|
||||
|| (
|
||||
>=dev-python/twisted-22.4.0-r2[${PYTHON_USEDEP},ssl]
|
||||
>=dev-python/twisted-17.5.0[${PYTHON_USEDEP},crypt]
|
||||
)
|
||||
>=dev-python/autobahn-0.14.1[${PYTHON_USEDEP}]
|
||||
dev-python/automat[${PYTHON_USEDEP}]
|
||||
dev-python/hkdf[${PYTHON_USEDEP}]
|
||||
@ -36,5 +41,3 @@ RDEPEND="
|
||||
>=dev-python/txtorcon-18.0.2[${PYTHON_USEDEP}]
|
||||
"
|
||||
BDEPEND=""
|
||||
|
||||
distutils_enable_tests setup.py
|
||||
|
Loading…
Reference in New Issue
Block a user