Compare commits
6 Commits
f383e22965
...
3f541a598b
Author | SHA1 | Date | |
---|---|---|---|
|
3f541a598b | ||
|
bf4ae09f53 | ||
|
9c9cca892e | ||
|
132748f384 | ||
|
bec344d62d | ||
|
9190ecfc53 |
@ -1,4 +1,4 @@
|
|||||||
# Copyright 2020 Gentoo Authors
|
# Copyright 2020-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
|
||||||
@ -41,6 +41,7 @@ src_prepare() {
|
|||||||
|
|
||||||
src_compile() {
|
src_compile() {
|
||||||
cmake_src_compile
|
cmake_src_compile
|
||||||
|
export LIBRARY_PATH=""${S}"/lib64/" # Let python build find the already built libolm
|
||||||
use python && (cd python; distutils-r1_src_compile)
|
use python && (cd python; distutils-r1_src_compile)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Copyright 2020 Gentoo Authors
|
# Copyright 2020-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
|
||||||
@ -48,6 +48,7 @@ src_configure() {
|
|||||||
|
|
||||||
src_compile() {
|
src_compile() {
|
||||||
cmake_src_compile
|
cmake_src_compile
|
||||||
|
export LIBRARY_PATH=""${S}"/lib64/" # Let python build find the already built libolm
|
||||||
use python && (cd python; distutils-r1_src_compile)
|
use python && (cd python; distutils-r1_src_compile)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
1
dev-python/baron/Manifest
Normal file
1
dev-python/baron/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST baron-0.9.tar.gz 835127 BLAKE2B be5aee3b5f7d8c317295cb88429eb2feb45c2fba135ba1a57370a070bd27dd6ee1fea8048201f40d7579bea56c535855a8605d6304f1987f4b138ed5591d0b77 SHA512 ed31bad1442b8d868ab9872f057db31ad8730654a7e8d49119c75d5631c881b074baf5754b0b0b5023dad62eda1f40461e4445321695248cfa3530b608d48c8e
|
17
dev-python/baron/baron-0.9.ebuild
Normal file
17
dev-python/baron/baron-0.9.ebuild
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
# Copyright 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="Full Syntax Tree for python to make writing refactoring code a realist task"
|
||||||
|
HOMEPAGE="http://baron.pycqa.org"
|
||||||
|
SRC_URI="https://github.com/PyCQA/baron/archive/"${PV}".tar.gz -> "${P}".tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-3+"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
RDEPEND="dev-python/rply[${PYTHON_USEDEP}]"
|
11
dev-python/baron/metadata.xml
Normal file
11
dev-python/baron/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>parona@protonmail.com</email>
|
||||||
|
<name>Alfred Wingate</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">PyCQA/baron</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
1
dev-python/hsluv-python/Manifest
Normal file
1
dev-python/hsluv-python/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST hsluv-python-5.0.0.tar.gz 540464 BLAKE2B 1358b26195b4868c438eb90c536814008c2a0922bc1c9205f7cc0853b7c471b18d74cd5d67e0ad7185bf8d9baed55a2e58b467ea6477242175e46910fdb3084a SHA512 01f880c5aebbf3c861b7dd593b0b5c215ca2223e24c80b18efa8c5457caab9fdcddae7462964d7f165bdd676022e0958ee9fc91000ae6c44a7faa0fd916a974d
|
15
dev-python/hsluv-python/hsluv-python-5.0.0.ebuild
Normal file
15
dev-python/hsluv-python/hsluv-python-5.0.0.ebuild
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Copyright 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="Python implementation of HSLuv "
|
||||||
|
HOMEPAGE="http://pypi.org/project/hsluv"
|
||||||
|
SRC_URI="https://github.com/hsluv/hsluv-python/archive/v"${PV}".tar.gz -> "${P}".tar.gz"
|
||||||
|
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
11
dev-python/hsluv-python/metadata.xml
Normal file
11
dev-python/hsluv-python/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>parona@protonmail.com</email>
|
||||||
|
<name>Alfred Wingate</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">hsluv/hsluv-python</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
1
dev-python/redbaron/Manifest
Normal file
1
dev-python/redbaron/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST redbaron-0.9.2.tar.gz 94843 BLAKE2B d46af29a94aa133035d96e8a2a53bb623d6e18630902791084f08139229c43be21884aad3e7c01990741f82dbe8e583136d9b808f8159e1ebec50ec0de8028a9 SHA512 acebde8fcf5fea419960c2647e8251deb6ea9426e886d642d58ee29924f668a8359867cec934aa10a0eeedf511b454a5f9e603458355869989e3b168165d6f6a
|
11
dev-python/redbaron/metadata.xml
Normal file
11
dev-python/redbaron/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>parona@protonmail.com</email>
|
||||||
|
<name>Alfred Wingate</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">PyCQA/redbaron</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
21
dev-python/redbaron/redbaron-0.9.2.ebuild
Normal file
21
dev-python/redbaron/redbaron-0.9.2.ebuild
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Copyright 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="FST for python to make writing refactoring code a realistic task"
|
||||||
|
HOMEPAGE="http://redbaron.pycqa.org"
|
||||||
|
SRC_URI="https://github.com/PyCQA/redbaron/archive/"${PV}".tar.gz -> "${P}".tar.gz"
|
||||||
|
|
||||||
|
LICENSE="LGPL-3+"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
||||||
|
|
||||||
|
RDEPEND="
|
||||||
|
dev-python/baron[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pytest[${PYTHON_USEDEP}]
|
||||||
|
dev-python/pygments[${PYTHON_USEDEP}]
|
||||||
|
"
|
1
dev-python/watchgod/Manifest
Normal file
1
dev-python/watchgod/Manifest
Normal file
@ -0,0 +1 @@
|
|||||||
|
DIST watchgod-0.6.tar.gz 13261 BLAKE2B 6cf32f6ea467fd4cdb3b0da30aa56bfbf3909adb25d2d44621733c665dccf77b203e99049655793a674f688f3adc8519d8e95156932ccfb9dceda28888bac115 SHA512 1eaa0febc4ba8b1e4bbd6e7bae8f2312c2eeaae395ebbf76953fdf937d4eda06bad818574000d6b96abfefe391affb5d007426bbf7867578293729decc6b61fb
|
11
dev-python/watchgod/metadata.xml
Normal file
11
dev-python/watchgod/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>parona@protonmail.com</email>
|
||||||
|
<name>Alfred Wingate</name>
|
||||||
|
</maintainer>
|
||||||
|
<upstream>
|
||||||
|
<remote-id type="github">samuelcolvin/watchgod</remote-id>
|
||||||
|
</upstream>
|
||||||
|
</pkgmetadata>
|
15
dev-python/watchgod/watchgod-0.6.ebuild
Normal file
15
dev-python/watchgod/watchgod-0.6.ebuild
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Copyright 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, modern file watching and code reload in python."
|
||||||
|
HOMEPAGE="https://github.com/samuelcolvin/watchgod"
|
||||||
|
SRC_URI="https://github.com/samuelcolvin/watchgod/archive/v"${PV}".tar.gz -> "${P}".tar.gz"
|
||||||
|
|
||||||
|
LICENSE="MIT"
|
||||||
|
SLOT="0"
|
||||||
|
KEYWORDS="~amd64"
|
@ -1,10 +1,10 @@
|
|||||||
# Copyright 2020 Gentoo Authors
|
# Copyright 2020-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 3.9 is blocked due to dependencies pyotherside and aiofiles missing targets, otherwise python 3.9 should be supported.
|
# Python 3.9 is blocked due to dependencies pyotherside and aiofiles missing targets, otherwise python 3.9 should be supported.
|
||||||
PYTHON_COMPAT=( python3_{6..8} )
|
PYTHON_COMPAT=( python3_{7..8} )
|
||||||
|
|
||||||
inherit qmake-utils python-single-r1 xdg
|
inherit qmake-utils python-single-r1 xdg
|
||||||
|
|
||||||
@ -57,22 +57,20 @@ RDEPEND="
|
|||||||
dev-libs/olm
|
dev-libs/olm
|
||||||
dev-python/pyotherside[${PYTHON_SINGLE_USEDEP}]
|
dev-python/pyotherside[${PYTHON_SINGLE_USEDEP}]
|
||||||
$(python_gen_cond_dep '
|
$(python_gen_cond_dep '
|
||||||
dev-python/matrix-nio[e2e,${PYTHON_USEDEP}]
|
|
||||||
>=dev-python/aiofiles-0.4.0[${PYTHON_USEDEP}]
|
>=dev-python/aiofiles-0.4.0[${PYTHON_USEDEP}]
|
||||||
>=dev-python/appdirs-1.4.4[${PYTHON_USEDEP}]
|
>=dev-python/appdirs-1.4.4[${PYTHON_USEDEP}]
|
||||||
>=dev-python/dbus-python-1.2.16[${PYTHON_USEDEP}]
|
>=dev-python/dbus-python-1.2.16[${PYTHON_USEDEP}]
|
||||||
>=dev-python/filetype-1.0.7[${PYTHON_USEDEP}]
|
>=dev-python/filetype-1.0.7[${PYTHON_USEDEP}]
|
||||||
|
dev-python/hsluv-python[${PYTHON_USEDEP}]
|
||||||
>=dev-python/html_sanitizer-1.9.1[${PYTHON_USEDEP}]
|
>=dev-python/html_sanitizer-1.9.1[${PYTHON_USEDEP}]
|
||||||
>=dev-python/lxml-4.5.1[${PYTHON_USEDEP}]
|
>=dev-python/lxml-4.5.1[${PYTHON_USEDEP}]
|
||||||
|
dev-python/matrix-nio[e2e,${PYTHON_USEDEP}]
|
||||||
>=dev-python/mistune-0.8.4[${PYTHON_USEDEP}]
|
>=dev-python/mistune-0.8.4[${PYTHON_USEDEP}]
|
||||||
>=dev-python/pillow-7.0.0[${PYTHON_USEDEP}]
|
>=dev-python/pillow-7.0.0[${PYTHON_USEDEP}]
|
||||||
>=dev-python/plyer-1.4.3[${PYTHON_USEDEP}]
|
>=dev-python/plyer-1.4.3[${PYTHON_USEDEP}]
|
||||||
>=dev-python/pymediainfo-4.2.1[${PYTHON_USEDEP}]
|
>=dev-python/pymediainfo-4.2.1[${PYTHON_USEDEP}]
|
||||||
>=dev-python/sortedcontainers-2.2.2[${PYTHON_USEDEP}]
|
>=dev-python/sortedcontainers-2.2.2[${PYTHON_USEDEP}]
|
||||||
>=media-gfx/cairosvg-2.4.2[${PYTHON_USEDEP}]
|
>=media-gfx/cairosvg-2.4.2[${PYTHON_USEDEP}]
|
||||||
python_single_target_python3_6? ( >=dev-python/async_generator-1.10[python_targets_python3_6] )
|
|
||||||
python_single_target_python3_6? ( >=dev-python/dataclasses-0.6[python_targets_python3_6] )
|
|
||||||
python_single_target_python3_6? ( >=dev-python/pyfastcopy-1.0.3[python_targets_python3_6] )
|
|
||||||
python_single_target_python3_7? ( >=dev-python/pyfastcopy-1.0.3[python_targets_python3_7] )
|
python_single_target_python3_7? ( >=dev-python/pyfastcopy-1.0.3[python_targets_python3_7] )
|
||||||
|
|
||||||
')
|
')
|
||||||
|
Loading…
Reference in New Issue
Block a user