mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-13 17:13:00 -04:00
*/*: Merge branch 'dev'
Pushed directly to master, try to fix this Signed-off-by: Viorel Munteanu <ceamac@gentoo.org>
This commit is contained in:
@@ -24,7 +24,7 @@ HOMEPAGE="
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="0"
|
||||
|
||||
RDEPEND="
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
DIST markdown-include-0.8.1.tar.gz 21873 BLAKE2B 83090f66af6f6b7dfc441bce97a0ca91bed3f94274030297e5f46fe8d42d3b3e83afc9f981941870f5bf361bfb5edd54bdda4c5d85595cc5599375f5a2478490 SHA512 4ae155d7e114de9d8ca32c129fe5778e7fc9516321357d8e4d90fad651a1dcb54b1fb144bc51e981cf728f1632dc293ed8cc1e7d4219154a2350780ea6f9b7b2
|
||||
@@ -1,27 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Syntax which allows for inclusion of contents of other Markdown docs"
|
||||
HOMEPAGE="https://github.com/cmacmackin/markdown-include"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SLOT="0"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND=">=dev-python/markdown-3.4[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
src_prepare() {
|
||||
sed -i "s/description-file/description_file/" setup.cfg || die
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>torokhov-s-a@yandex.ru</email>
|
||||
<name>Sergey Torokhov</name>
|
||||
</maintainer>
|
||||
<longdescription lang="en">
|
||||
An extension to Python-Markdown which provides an "include" function,
|
||||
similar to that found in LaTeX (and also the C pre-processor and Fortran).
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<remote-id type="github">cmacmackin/markdown-include</remote-id>
|
||||
<remote-id type="pypi">markdown-include</remote-id>
|
||||
<maintainer>
|
||||
<name>Chris MacMackin</name>
|
||||
<email>cmacmackin@gmail.com</email>
|
||||
</maintainer>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +1,2 @@
|
||||
DIST restrictedpython-6.0.gh.tar.gz 441665 BLAKE2B 3b3c27c6aa86e7301299fa32eafa571381637ac16551c48c2faf48815fc6d054df94ddfaccacb243e55300358f1c5f726d17342630137c326387db946d00bdf0 SHA512 8f9b53542c0784ac0c9169c4c4252d22f95419c6903ca0e786f44f6fee9303251f3e78ec099f343068c0a7ea7712de52e884aa132dda63ed813e8a17ffe55798
|
||||
DIST restrictedpython-6.1.gh.tar.gz 442293 BLAKE2B 8425c371e84a698f1591735cfa0c77ea716c2b7859addc6a7fb97e68ffd239e1b3aaeb359739ec1dfff551a361a8bd8fd2738007ba5d2557debe9592a144c144 SHA512 fec5bbe301b64236863a72e4b7a9997d04483da6ae5b384ef73a729092b2fc271f6016586a21558cb30f1c2cc9c9f57b8ee2c6c851873bd493b95fd50dccd1f8
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
27
dev-python/restrictedpython/restrictedpython-6.1.ebuild
Normal file
27
dev-python/restrictedpython/restrictedpython-6.1.ebuild
Normal file
@@ -0,0 +1,27 @@
|
||||
# Copyright 2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="A restricted execution environment for Python to run untrusted code"
|
||||
HOMEPAGE="https://github.com/zopefoundation/RestrictedPython"
|
||||
SRC_URI="https://github.com/zopefoundation/RestrictedPython/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}/RestrictedPython-${PV}"
|
||||
|
||||
LICENSE="ZPL"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
doc? ( dev-python/sphinx-rtd-theme[${PYTHON_USEDEP}] )
|
||||
test? ( dev-python/pytest-mock[${PYTHON_USEDEP}] )
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
distutils_enable_sphinx docs
|
||||
distutils_enable_tests pytest
|
||||
@@ -13,12 +13,12 @@ DESCRIPTION="Python package for interacting with Steam"
|
||||
HOMEPAGE="https://github.com/ValvePython/steam"
|
||||
|
||||
DEPEND="dev-python/six
|
||||
dev-python/pycryptodome
|
||||
dev-python/requests
|
||||
dev-python/urllib3
|
||||
dev-python/vdf
|
||||
dev-python/protobuf-python
|
||||
dev-python/cachetools
|
||||
dev-python/pycryptodome
|
||||
dev-python/requests
|
||||
dev-python/urllib3
|
||||
dev-python/vdf
|
||||
dev-python/protobuf-python
|
||||
dev-python/cachetools
|
||||
"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
@@ -26,9 +26,9 @@ SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
src_compile() {
|
||||
distutils-r1_src_compile
|
||||
distutils-r1_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
distutils-r1_src_install
|
||||
}
|
||||
|
||||
@@ -13,20 +13,20 @@ DESCRIPTION="Python package for interacting with Steam"
|
||||
HOMEPAGE="https://github.com/ValvePython/steam"
|
||||
|
||||
DEPEND="dev-python/six
|
||||
dev-python/pycryptodome
|
||||
dev-python/requests
|
||||
dev-python/urllib3
|
||||
dev-python/vdf
|
||||
dev-python/protobuf-python
|
||||
dev-python/cachetools
|
||||
dev-python/pycryptodome
|
||||
dev-python/requests
|
||||
dev-python/urllib3
|
||||
dev-python/vdf
|
||||
dev-python/protobuf-python
|
||||
dev-python/cachetools
|
||||
"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
src_compile() {
|
||||
distutils-r1_src_compile
|
||||
distutils-r1_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
distutils-r1_src_install
|
||||
}
|
||||
|
||||
1
dev-python/undervolt/Manifest
Normal file
1
dev-python/undervolt/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST 0.3.0.tar.gz 9161 BLAKE2B 4e23f591c2c765a996bec6f9d4c17d80a4fa8de96648549522a259c63b455833b46554e33024d19768d161c2000bc6ee01a8d183c742a6c689c05c5fecc263ed SHA512 154590a5172bb305e32d464b340ef8c96fc081464dc1090deda364ad47e4eaba010376ab7cb8d001103b64d44bc38c34aff6f9a1bd6125ce5b149ccb6c96065f
|
||||
7
dev-python/undervolt/metadata.xml
Normal file
7
dev-python/undervolt/metadata.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<remote-id type="github">georgewhewell/undervolt</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
26
dev-python/undervolt/undervolt-0.3.0.ebuild
Normal file
26
dev-python/undervolt/undervolt-0.3.0.ebuild
Normal file
@@ -0,0 +1,26 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{9..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
SRC_URI="https://github.com/georgewhewell/undervolt/archive/refs/tags/${PV}.tar.gz"
|
||||
DESCRIPTION="Undervolt Intel CPUs under Linux"
|
||||
HOMEPAGE="https://github.com/georgewhewell/undervolt"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
src_compile() {
|
||||
distutils-r1_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
}
|
||||
24
dev-python/undervolt/undervolt-9999.ebuild
Normal file
24
dev-python/undervolt/undervolt-9999.ebuild
Normal file
@@ -0,0 +1,24 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{9..12} )
|
||||
|
||||
inherit git-r3 distutils-r1
|
||||
|
||||
EGIT_REPO_URI="https://github.com/georgewhewell/undervolt.git"
|
||||
DESCRIPTION="Undervolt Intel CPUs under Linux"
|
||||
HOMEPAGE="https://github.com/georgewhewell/undervolt"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
|
||||
src_compile() {
|
||||
distutils-r1_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
}
|
||||
Reference in New Issue
Block a user