Compare commits
7 Commits
3a1b73ed75
...
0e88ba7dd9
Author | SHA1 | Date | |
---|---|---|---|
|
0e88ba7dd9 | ||
|
2d3ad33bc3 | ||
|
8d734264d4 | ||
|
27355dfce8 | ||
|
5352db3b9a | ||
|
6971e190ad | ||
|
6d5bcec977 |
1
dev-python/pydes/Manifest
Normal file
1
dev-python/pydes/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST pyDes-2.0.1.tar.gz 9878 BLAKE2B 45a2d0575519afc389abe080f2c3a6751c5ee1f973e9e4370f24c5dbf9d85882e875682005eae3d749a2e11bffc3cd46868f83baa58f9e7e4feb7a25db641a14 SHA512 9d2a048dd6f629713d93d5cfcf5eaccb45a28fd3942f6837baf492bc6d9f0fcd16a1611e467231e9abfa6756d1684b0848c2190195e9e772bed2e6574327885c
|
11
dev-python/pydes/metadata.xml
Normal file
11
dev-python/pydes/metadata.xml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>xgqt@protonmail.com</email>
|
||||||
|
<name>Maciej Barć</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">twhiteman/pyDes</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
22
dev-python/pydes/pydes-2.0.1.ebuild
Normal file
22
dev-python/pydes/pydes-2.0.1.ebuild
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
MY_PN="pyDes"
|
||||||
|
MY_P="${MY_PN}-${PV}"
|
||||||
|
|
||||||
|
DISTUTILS_USE_SETUPTOOLS=no
|
||||||
|
PYTHON_COMPAT=( python3_{7..9} )
|
||||||
|
|
||||||
|
inherit distutils-r1
|
||||||
|
|
||||||
|
DESCRIPTION="Python implementation of DES and TRIPLE DES"
|
||||||
|
HOMEPAGE="https://twhiteman.netfirms.com/des.html"
|
||||||
|
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
S="${WORKDIR}/${MY_P}"
|
1
dev-python/rich/Manifest
Normal file
1
dev-python/rich/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST rich-9.8.2.tar.gz 14022639 BLAKE2B 75acaea11cead614d6d1a5a7e967cb85a0b5b8e28e5373503b97620a11ea51e6059c51efa0d7922812161520f4578ea26509d1717554a00ca07a163845603145 SHA512 cc4f242f29aa45918c8d866c955735127cda20e34c7b03ee2cd889b023c872b672a7034828f4da737ddc7d6a8a5d867bc26dd88c32861af0133043f371b86ff1
|
11
dev-python/rich/metadata.xml
Normal file
11
dev-python/rich/metadata.xml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>xgqt@protonmail.com</email>
|
||||||
|
<name>Maciej Barć</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">willmcgugan/rich</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
32
dev-python/rich/rich-9.8.2.ebuild
Normal file
32
dev-python/rich/rich-9.8.2.ebuild
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
DISTUTILS_USE_SETUPTOOLS="pyproject.toml"
|
||||||
|
PYTHON_COMPAT=( python3_{7..9} )
|
||||||
|
|
||||||
|
inherit distutils-r1 eutils
|
||||||
|
|
||||||
|
DESCRIPTION="Validate configuration and produce human-readable messages"
|
||||||
|
HOMEPAGE="https://github.com/willmcgugan/rich"
|
||||||
|
SRC_URI="https://github.com/willmcgugan/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||||
|
|
||||||
|
RESTRICT="mirror test"
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
>=dev-python/colorama-0.4.0[${PYTHON_USEDEP}]
|
||||||
|
>=dev-python/commonmark-0.9.0[${PYTHON_USEDEP}]
|
||||||
|
>=dev-python/pygments-2.6.0[${PYTHON_USEDEP}]
|
||||||
|
>=dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}]
|
||||||
|
"
|
||||||
|
|
||||||
|
python_prepare_all() {
|
||||||
|
# Build is done with poetry (dev-python/pyproject2setuppy)
|
||||||
|
rm setup.py || die "rm failed"
|
||||||
|
|
||||||
|
distutils-r1_python_prepare_all
|
||||||
|
}
|
1
dev-python/simber/Manifest
Normal file
1
dev-python/simber/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST simber-0.2.1.tar.gz 9864 BLAKE2B 997f0f029d42f9bece488ef3dd364c3404af45aed7d94eea316f25f6f3277812522fd758f5b88d1057e6fa0a76226680a3d5e630c1c992a5bde5f910289ce904 SHA512 8ded82babccd815a8bf26209c3d80a267de53dab036d72667e060e994906bca8090aa5eb234c53529118ad9998617ed845d71d169b36747648a826d5041c0748
|
11
dev-python/simber/metadata.xml
Normal file
11
dev-python/simber/metadata.xml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>xgqt@protonmail.com</email>
|
||||||
|
<name>Maciej Barć</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">deepjyoti30/simber</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
20
dev-python/simber/simber-0.2.1.ebuild
Normal file
20
dev-python/simber/simber-0.2.1.ebuild
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{7..9} )
|
||||||
|
|
||||||
|
inherit distutils-r1
|
||||||
|
|
||||||
|
DESCRIPTION="Simple, minimal and powerful logging library for Python"
|
||||||
|
HOMEPAGE="https://simber.deepjyoti30.dev/"
|
||||||
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
dev-python/colorama[${PYTHON_USEDEP}]
|
||||||
|
"
|
1
dev-python/youtube-search/Manifest
Normal file
1
dev-python/youtube-search/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST youtube-search-1.1.1.tar.gz 2518 BLAKE2B 5479f7aec0a4deeeefc8b77d1acbd822923dd2e12c846ab0aa05dcac60bcbcf0413f63f33d8896b52bdba8ee7e4ba6d5ee5236c92bd296151e556692aaf9c34e SHA512 54a09b17ed59717c522b184e7022f51b497fe9b7a72a8aeb0666939c96ecb3c3a71de6247f22fea6c654c42d8b134b662236d585f922e23784332d8dd83f0dec
|
11
dev-python/youtube-search/metadata.xml
Normal file
11
dev-python/youtube-search/metadata.xml
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
|
<pkgmetadata>
|
||||||
|
<maintainer type="person">
|
||||||
|
<email>xgqt@protonmail.com</email>
|
||||||
|
<name>Maciej Barć</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">joetats/youtube_search</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
24
dev-python/youtube-search/youtube-search-1.1.1.ebuild
Normal file
24
dev-python/youtube-search/youtube-search-1.1.1.ebuild
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=7
|
||||||
|
|
||||||
|
PYTHON_COMPAT=( python3_{7..9} )
|
||||||
|
|
||||||
|
inherit distutils-r1
|
||||||
|
|
||||||
|
DESCRIPTION="Simple, minimal and powerful logging library for Python"
|
||||||
|
HOMEPAGE="https://github.com/joetats/youtube_search"
|
||||||
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
||||||
|
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
dev-python/certifi[${PYTHON_USEDEP}]
|
||||||
|
dev-python/chardet[${PYTHON_USEDEP}]
|
||||||
|
dev-python/idna[${PYTHON_USEDEP}]
|
||||||
|
dev-python/requests[${PYTHON_USEDEP}]
|
||||||
|
dev-python/urllib3[${PYTHON_USEDEP}]
|
||||||
|
"
|
@ -1,3 +1 @@
|
|||||||
DIST ytmdl-2020.05.14.tar.gz 350781 BLAKE2B ceaa14bee8805169b4e015a8d2adaca863d0ea75a26b9ab158f05d0f9736326515d33d9202fa9704beb47adcd841c032493bd0bac80acd7b4de1d6f781d0fa9e SHA512 93b43012d7a6c5ac00755f3b748bf6037e314a73ffbe67ff2fc70b6b708e376446103de6f85e4e82984cff321b7c2a99faefa90f3d3c7bd3b01752a69b11fc7f
|
DIST ytmdl-2021.01.14.tar.gz 2318705 BLAKE2B 9098b3bc96ad7dbe831f03b27887a4319628704331511349014a4700a0ea589717182f0d02dfcd67d8b657485fd10c75a929410278813412880085bbedbd606c SHA512 d00ac433d5ae9fa36fb7283ac404e96184780f0de25073a344b152917a8132949f3baebbf503060e7606ecf5ff7b6f0f5d61539c44016d8aef8a5527cb4da1be
|
||||||
DIST ytmdl-2020.07.09.tar.gz 2209969 BLAKE2B fc758f0968d8165ab354c1aaa4dc1ada50fb6e88854b5db4ed1a7de4a2355796b389568b1f1a2448fa2be24c1fe6197cec509c367bc804c3b243be5268bc634f SHA512 694e801e65820c96291f4e24d3b2505e6c867972fe7b97ddbd3ea442ec5c1d4066f0c7cc7d1fae8a2985b3bdeb7374ea42d7d93dd915973f6abc3412b73223a7
|
|
||||||
DIST ytmdl-2021.01.13.tar.gz 2318711 BLAKE2B ecd9c3b288918e123ff490cfcbcc4171a005e876ff10291d754845c5c7900d11be06b5184c8c79e3aa3007d1080e9e325de3be3c5e48626c39b02a8a38f5782d SHA512 fc1d5a29886dcc84dbc2c163b5ec1ec0bd765f2d243e806965f85e29ebc167ee6663267bf4321ea3f7e6d1e95ae7d7e66119ad1cb9a5a515553860ec29d5f4c5
|
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||||
<pkgmetadata>
|
<pkgmetadata>
|
||||||
<upstream>
|
<maintainer type="person">
|
||||||
<remote-id type="github">deepjyoti30/ytmdl</remote-id>
|
<email>xgqt@protonmail.com</email>
|
||||||
</upstream>
|
<name>Maciej Barć</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">deepjyoti30/ytmdl</remote-id>
|
||||||
|
</upstream>
|
||||||
</pkgmetadata>
|
</pkgmetadata>
|
||||||
|
@ -1,46 +0,0 @@
|
|||||||
# Copyright 1999-2020 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{6,7} )
|
|
||||||
|
|
||||||
inherit distutils-r1
|
|
||||||
|
|
||||||
DESCRIPTION="A simple app to get songs from youtube in mp3 format"
|
|
||||||
HOMEPAGE="https://github.com/deepjyoti30/ytmdl"
|
|
||||||
|
|
||||||
if [[ "${PV}" == *9999* ]]; then
|
|
||||||
inherit git-r3
|
|
||||||
EGIT_REPO_URI="https://github.com/deepjyoti30/${PN}.git"
|
|
||||||
else
|
|
||||||
SRC_URI="https://github.com/deepjyoti30/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
||||||
KEYWORDS="~amd64"
|
|
||||||
fi
|
|
||||||
|
|
||||||
RESTRICT="mirror"
|
|
||||||
LICENSE="MIT"
|
|
||||||
SLOT="0"
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
# Excerpt from https://pypi.org/project/bs4
|
|
||||||
# "The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4.
|
|
||||||
# This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup."
|
|
||||||
# ;-)
|
|
||||||
sed -i 's/bs4/beautifulsoup4/' setup.py
|
|
||||||
distutils-r1_src_prepare
|
|
||||||
}
|
|
||||||
|
|
||||||
RDEPEND="
|
|
||||||
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
|
||||||
dev-python/PySocks[${PYTHON_USEDEP}]
|
|
||||||
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
|
|
||||||
dev-python/colorama[${PYTHON_USEDEP}]
|
|
||||||
dev-python/ffmpeg-python[${PYTHON_USEDEP}]
|
|
||||||
dev-python/itunespy[${PYTHON_USEDEP}]
|
|
||||||
dev-python/lxml[${PYTHON_USEDEP}]
|
|
||||||
dev-python/pyxdg[${PYTHON_USEDEP}]
|
|
||||||
media-libs/mutagen[${PYTHON_USEDEP}]
|
|
||||||
net-misc/downloader-cli[${PYTHON_USEDEP}]
|
|
||||||
net-misc/youtube-dl[${PYTHON_USEDEP}]
|
|
||||||
"
|
|
@ -1,46 +0,0 @@
|
|||||||
# Copyright 1999-2020 Gentoo Authors
|
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
|
||||||
|
|
||||||
EAPI=7
|
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{6,7} )
|
|
||||||
|
|
||||||
inherit distutils-r1
|
|
||||||
|
|
||||||
DESCRIPTION="A simple app to get songs from youtube in mp3 format"
|
|
||||||
HOMEPAGE="https://github.com/deepjyoti30/ytmdl"
|
|
||||||
|
|
||||||
if [[ "${PV}" == *9999* ]]; then
|
|
||||||
inherit git-r3
|
|
||||||
EGIT_REPO_URI="https://github.com/deepjyoti30/${PN}.git"
|
|
||||||
else
|
|
||||||
SRC_URI="https://github.com/deepjyoti30/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
||||||
KEYWORDS="~amd64"
|
|
||||||
fi
|
|
||||||
|
|
||||||
RESTRICT="mirror"
|
|
||||||
LICENSE="MIT"
|
|
||||||
SLOT="0"
|
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
# Excerpt from https://pypi.org/project/bs4
|
|
||||||
# "The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4.
|
|
||||||
# This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup."
|
|
||||||
# ;-)
|
|
||||||
sed -i 's/bs4/beautifulsoup4/' setup.py
|
|
||||||
distutils-r1_src_prepare
|
|
||||||
}
|
|
||||||
|
|
||||||
RDEPEND="
|
|
||||||
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
|
||||||
dev-python/PySocks[${PYTHON_USEDEP}]
|
|
||||||
dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
|
|
||||||
dev-python/colorama[${PYTHON_USEDEP}]
|
|
||||||
dev-python/ffmpeg-python[${PYTHON_USEDEP}]
|
|
||||||
dev-python/itunespy[${PYTHON_USEDEP}]
|
|
||||||
dev-python/lxml[${PYTHON_USEDEP}]
|
|
||||||
dev-python/pyxdg[${PYTHON_USEDEP}]
|
|
||||||
media-libs/mutagen[${PYTHON_USEDEP}]
|
|
||||||
net-misc/downloader-cli[${PYTHON_USEDEP}]
|
|
||||||
net-misc/youtube-dl[${PYTHON_USEDEP}]
|
|
||||||
"
|
|
@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
EAPI=7
|
EAPI=7
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{6,7} )
|
PYTHON_COMPAT=( python3_{7..8} )
|
||||||
|
|
||||||
inherit distutils-r1
|
inherit distutils-r1
|
||||||
|
|
||||||
@ -22,15 +22,6 @@ RESTRICT="mirror"
|
|||||||
LICENSE="MIT"
|
LICENSE="MIT"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
# Excerpt from https://pypi.org/project/bs4
|
|
||||||
# "The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4.
|
|
||||||
# This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup."
|
|
||||||
# ;-)
|
|
||||||
sed -i 's/bs4/beautifulsoup4/' setup.py
|
|
||||||
distutils-r1_src_prepare
|
|
||||||
}
|
|
||||||
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
||||||
dev-python/PySocks[${PYTHON_USEDEP}]
|
dev-python/PySocks[${PYTHON_USEDEP}]
|
||||||
@ -39,8 +30,23 @@ RDEPEND="
|
|||||||
dev-python/ffmpeg-python[${PYTHON_USEDEP}]
|
dev-python/ffmpeg-python[${PYTHON_USEDEP}]
|
||||||
dev-python/itunespy[${PYTHON_USEDEP}]
|
dev-python/itunespy[${PYTHON_USEDEP}]
|
||||||
dev-python/lxml[${PYTHON_USEDEP}]
|
dev-python/lxml[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pycountry[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pydes[${PYTHON_USEDEP}]
|
||||||
|
dev-python/python-musicbrainz-ngs[${PYTHON_USEDEP}]
|
||||||
dev-python/pyxdg[${PYTHON_USEDEP}]
|
dev-python/pyxdg[${PYTHON_USEDEP}]
|
||||||
|
dev-python/rich[${PYTHON_USEDEP}]
|
||||||
|
dev-python/simber[${PYTHON_USEDEP}]
|
||||||
|
dev-python/unidecode[${PYTHON_USEDEP}]
|
||||||
|
dev-python/urllib3[${PYTHON_USEDEP}]
|
||||||
|
dev-python/youtube-search[${PYTHON_USEDEP}]
|
||||||
media-libs/mutagen[${PYTHON_USEDEP}]
|
media-libs/mutagen[${PYTHON_USEDEP}]
|
||||||
net-misc/downloader-cli[${PYTHON_USEDEP}]
|
net-misc/downloader-cli[${PYTHON_USEDEP}]
|
||||||
net-misc/youtube-dl[${PYTHON_USEDEP}]
|
net-misc/youtube-dl[${PYTHON_USEDEP}]
|
||||||
"
|
"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
# https://pypi.org/project/bs4
|
||||||
|
sed -i 's/bs4/beautifulsoup4/' setup.py
|
||||||
|
|
||||||
|
distutils-r1_src_prepare
|
||||||
|
}
|
@ -1,9 +1,9 @@
|
|||||||
# Copyright 1999-2020 Gentoo Authors
|
# Copyright 1999-2021 Gentoo Authors
|
||||||
# Distributed under the terms of the GNU General Public License v2
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
EAPI=7
|
EAPI=7
|
||||||
|
|
||||||
PYTHON_COMPAT=( python3_{6,7} )
|
PYTHON_COMPAT=( python3_{7..8} )
|
||||||
|
|
||||||
inherit distutils-r1
|
inherit distutils-r1
|
||||||
|
|
||||||
@ -22,15 +22,6 @@ RESTRICT="mirror"
|
|||||||
LICENSE="MIT"
|
LICENSE="MIT"
|
||||||
SLOT="0"
|
SLOT="0"
|
||||||
|
|
||||||
src_prepare() {
|
|
||||||
# Excerpt from https://pypi.org/project/bs4
|
|
||||||
# "The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4.
|
|
||||||
# This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup."
|
|
||||||
# ;-)
|
|
||||||
sed -i 's/bs4/beautifulsoup4/' setup.py
|
|
||||||
distutils-r1_src_prepare
|
|
||||||
}
|
|
||||||
|
|
||||||
RDEPEND="
|
RDEPEND="
|
||||||
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
>=dev-python/requests-2.22.0[${PYTHON_USEDEP}]
|
||||||
dev-python/PySocks[${PYTHON_USEDEP}]
|
dev-python/PySocks[${PYTHON_USEDEP}]
|
||||||
@ -39,8 +30,23 @@ RDEPEND="
|
|||||||
dev-python/ffmpeg-python[${PYTHON_USEDEP}]
|
dev-python/ffmpeg-python[${PYTHON_USEDEP}]
|
||||||
dev-python/itunespy[${PYTHON_USEDEP}]
|
dev-python/itunespy[${PYTHON_USEDEP}]
|
||||||
dev-python/lxml[${PYTHON_USEDEP}]
|
dev-python/lxml[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pycountry[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pydes[${PYTHON_USEDEP}]
|
||||||
|
dev-python/python-musicbrainz-ngs[${PYTHON_USEDEP}]
|
||||||
dev-python/pyxdg[${PYTHON_USEDEP}]
|
dev-python/pyxdg[${PYTHON_USEDEP}]
|
||||||
|
dev-python/rich[${PYTHON_USEDEP}]
|
||||||
|
dev-python/simber[${PYTHON_USEDEP}]
|
||||||
|
dev-python/unidecode[${PYTHON_USEDEP}]
|
||||||
|
dev-python/urllib3[${PYTHON_USEDEP}]
|
||||||
|
dev-python/youtube-search[${PYTHON_USEDEP}]
|
||||||
media-libs/mutagen[${PYTHON_USEDEP}]
|
media-libs/mutagen[${PYTHON_USEDEP}]
|
||||||
net-misc/downloader-cli[${PYTHON_USEDEP}]
|
net-misc/downloader-cli[${PYTHON_USEDEP}]
|
||||||
net-misc/youtube-dl[${PYTHON_USEDEP}]
|
net-misc/youtube-dl[${PYTHON_USEDEP}]
|
||||||
"
|
"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
# https://pypi.org/project/bs4
|
||||||
|
sed -i 's/bs4/beautifulsoup4/' setup.py
|
||||||
|
|
||||||
|
distutils-r1_src_prepare
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user