mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 12:03:02 -04:00
Merge updates from master
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=poetry
|
||||
PYTHON_COMPAT=( python3_10)
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
|
||||
@@ -2,3 +2,4 @@ DIST fortran-stdlib-0.2.1.tar.gz 323480 BLAKE2B d6d54e38fd8c970168144b011b0df8c8
|
||||
DIST fortran-stdlib-0.3.0.tar.gz 387442 BLAKE2B 8e1dae71a7de763452ac149a21eff0bbd2be93b2addf7c1f44f2e2bf26851d3735dc945b681430e6102fa9bf63f4f4fd91c7e9b437a4cf69697ba7476619be0e SHA512 e2f586dd9cb94abf0094d6ea5cb4dc4ee6ba9afdf2f2bfb8cd8e8ab1a4ea93dd4a5dbec6be70f88edd414fe4ea111f3bb3e4fe0584b156bf7711b8ff83226dcc
|
||||
DIST fortran-stdlib-0.4.0.tar.gz 397196 BLAKE2B 966d791216cf8df9ba388d1fee80acfceb42914617bd16e4da5a4d7de252089175bcc7e4b4369e6d6f9827dda6c3850936ae941d0be85f0bf76df04d21270bb4 SHA512 bab8f462b73dd69f639359751fae89baf6676cf071cd68d53245c5ddc287402237686413b6f772555413437899b6d87453547b9ef32c7deca30abfae09ef0459
|
||||
DIST fortran-stdlib-0.5.0.tar.gz 3618660 BLAKE2B bdba8344ee3daf2e5eb5e055497b394abc9bd9322b2a09ea2d7aef477266f24c48a419c517f21b6c0cd2e8cb4c7360b2216dd9663c150ada74934978c003f6ba SHA512 e89f6c2018541354cc97b911e0af86b16384b5e121a0e1c3460c5eefc685780d1159762a4820418cefce69987f787a4e77e9965d347d5f0d9b2441f135baabd2
|
||||
DIST fortran-stdlib-0.6.1.tar.gz 3634792 BLAKE2B 935100ddc124a2ace1a37ae3083b715ed0b603e9b1fe234b566d38dd44a8e9fa2098f51c0b3a28056a9e3f10e7c2aa5d3a126512e3fba3dcefe885ffbc27729e SHA512 5b32b0881e714e9f184827a977f2a9e204be9de06c086896fdcdc4f4a912fd5c102e6ee269cca1b0aaeca59b0a4dfa43f4d5901f0fda2f2556b4bf8d94999995
|
||||
|
||||
80
dev-libs/fortran-stdlib/fortran-stdlib-0.6.1.ebuild
Normal file
80
dev-libs/fortran-stdlib/fortran-stdlib-0.6.1.ebuild
Normal file
@@ -0,0 +1,80 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
FORTRAN_STANDARD="2003"
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit cmake fortran-2 python-any-r1
|
||||
|
||||
MY_PN="stdlib"
|
||||
|
||||
DESCRIPTION="A community driven standard library for (modern) Fortran"
|
||||
HOMEPAGE="https://stdlib.fortran-lang.org/"
|
||||
SRC_URI="https://github.com/fortran-lang/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="doc test"
|
||||
RESTRICT="mirror !test? ( test )"
|
||||
|
||||
DEPEND="
|
||||
${PYTHON_DEPS}
|
||||
$(python_gen_any_dep '
|
||||
dev-build/fypp[${PYTHON_USEDEP}]
|
||||
')
|
||||
doc? (
|
||||
$(python_gen_any_dep '
|
||||
app-text/ford[${PYTHON_USEDEP}]
|
||||
')
|
||||
)
|
||||
test? ( dev-util/fortran-test-drive )
|
||||
"
|
||||
|
||||
pkg_setup() {
|
||||
fortran-2_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
# Remove Fortran compiler version from paths
|
||||
sed -i -e "s:/\${CMAKE_Fortran_COMPILER_ID}-\${CMAKE_Fortran_COMPILER_VERSION}::" config/CMakeLists.txt || die
|
||||
|
||||
# Use favicon.png instead remote icon
|
||||
sed -i -e 's#https://fortran-lang.org/assets/img/fortran_logo_512x512.png#favicon.png#' API-doc-FORD-file.md || die
|
||||
|
||||
cmake_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
local mycmakeargs+=(
|
||||
-DBUILD_SHARED_LIBS=on
|
||||
-DBUILD_TESTING=$(usex test)
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
cmake_src_compile
|
||||
|
||||
if use doc ; then
|
||||
einfo "Build API documentation:"
|
||||
ford API-doc-FORD-file.md || die
|
||||
fi
|
||||
}
|
||||
|
||||
src_test() {
|
||||
LD_LIBRARY_PATH="${BUILD_DIR}/src:${BUILD_DIR}/src/tests/hash_functions" cmake_src_test
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cmake_src_install
|
||||
|
||||
use doc && HTML_DOCS=( "${WORKDIR}/${MY_PN}-${PV}"/API-doc/. )
|
||||
einstalldocs
|
||||
}
|
||||
@@ -11,6 +11,8 @@ DESCRIPTION="C/C++ library to mainly provide Semantic Versioned implementation"
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-core"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -27,8 +29,6 @@ BDEPEND="
|
||||
>=sys-devel/gcc-8.1
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -11,6 +11,8 @@ DESCRIPTION="C/C++ library to mainly provide Semantic Versioned implementation"
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-core"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -27,8 +29,6 @@ BDEPEND="
|
||||
>=sys-devel/gcc-8.1
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -15,6 +15,8 @@ else
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
@@ -30,8 +32,6 @@ BDEPEND="
|
||||
>=sys-devel/gcc-8.1
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -15,6 +15,8 @@ else
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
@@ -31,8 +33,6 @@ BDEPEND="
|
||||
dev-build/libtool
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -15,6 +15,8 @@ else
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
@@ -31,8 +33,6 @@ BDEPEND="
|
||||
dev-build/libtool
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -15,6 +15,8 @@ else
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
@@ -31,8 +33,6 @@ BDEPEND="
|
||||
dev-build/libtool
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -15,6 +15,8 @@ else
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
@@ -31,8 +33,6 @@ BDEPEND="
|
||||
dev-build/libtool
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -15,6 +15,8 @@ else
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
@@ -31,8 +33,6 @@ BDEPEND="
|
||||
dev-build/libtool
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${PN}-${MYPV}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -13,19 +13,18 @@ DESCRIPTION="API to access database, abstract component."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-db-abstract"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
|
||||
DEPEND="dev-libs/octetos-core"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
!!dev-libs/octetos-db
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -13,19 +13,18 @@ DESCRIPTION="API to access database, abstract component."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-db-abstract"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
|
||||
DEPEND="dev-libs/octetos-core"
|
||||
RDEPEND="
|
||||
${DEPEND}
|
||||
!!dev-libs/octetos-db
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -13,6 +13,8 @@ DESCRIPTION="C++ library for Database Acces."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-db-maria"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -24,8 +26,6 @@ DEPEND="
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -13,6 +13,8 @@ DESCRIPTION="C++ library for Database Acces."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-db-maria"
|
||||
SRC_URI="https://github.com/azaeldevel/${PN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -24,8 +26,6 @@ DEPEND="
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -7,6 +7,7 @@ inherit autotools
|
||||
|
||||
MYPV="${PV/_alpha/-alpha}"
|
||||
MYP="${PN}-${MYPV}"
|
||||
|
||||
DESCRIPTION="C++ library for Database Acces."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-db-maria"
|
||||
if [[ ${PV} == 9999 ]]; then
|
||||
@@ -17,6 +18,8 @@ else
|
||||
KEYWORDS="~amd64"
|
||||
fi
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
@@ -26,8 +29,6 @@ DEPEND="
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -13,16 +13,15 @@ DESCRIPTION="C++ library for Database Acces."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-db"
|
||||
SRC_URI="https://github.com/azaeldevel/${MYPN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
|
||||
DEPEND="dev-libs/octetos-db"
|
||||
RDEPEND="${DEPEND} dev-db/postgresql:*"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -13,16 +13,15 @@ DESCRIPTION="C++ library for Database Acces."
|
||||
HOMEPAGE="https://github.com/azaeldevel/octetos-db"
|
||||
SRC_URI="https://github.com/azaeldevel/${MYPN}/archive/${MYPV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
|
||||
DEPEND="dev-libs/octetos-db dev-db/postgresql:*"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
S="${WORKDIR}/${MYP}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf -fi
|
||||
|
||||
@@ -15,6 +15,8 @@ DESCRIPTION="Simple convenience library for handling properties and signals in C
|
||||
HOMEPAGE="https://launchpad.net/properties-cpp"
|
||||
SRC_URI="https://launchpad.net/ubuntu/+archive/primary/+files/${PN}_${MY_PV}.orig.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
@@ -26,7 +28,6 @@ DEPEND="
|
||||
doc? ( app-text/doxygen )
|
||||
"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
MAKEOPTS="${MAKEOPTS} -j1"
|
||||
|
||||
src_prepare() {
|
||||
|
||||
@@ -9,12 +9,12 @@ DESCRIPTION="Proof of work algorithm based on random code execution"
|
||||
HOMEPAGE="https://github.com/tevador/RandomX"
|
||||
SRC_URI="https://github.com/tevador/RandomX/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}"/RandomX-${PV}
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
|
||||
S="${WORKDIR}"/RandomX-${PV}
|
||||
|
||||
src_configure() {
|
||||
append-ldflags -Wl,-z,noexecstack
|
||||
cmake_src_configure
|
||||
|
||||
@@ -9,12 +9,12 @@ DESCRIPTION="Proof of work algorithm based on random code execution"
|
||||
HOMEPAGE="https://github.com/tevador/RandomX"
|
||||
SRC_URI="https://github.com/tevador/RandomX/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}"/RandomX-${PV}
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
|
||||
S="${WORKDIR}"/RandomX-${PV}
|
||||
|
||||
src_configure() {
|
||||
append-ldflags -Wl,-z,noexecstack
|
||||
cmake_src_configure
|
||||
|
||||
@@ -9,12 +9,12 @@ DESCRIPTION="Proof of work algorithm based on random code execution"
|
||||
HOMEPAGE="https://github.com/tevador/RandomX"
|
||||
SRC_URI="https://github.com/tevador/RandomX/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}"/RandomX-${PV}
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
|
||||
|
||||
S="${WORKDIR}"/RandomX-${PV}
|
||||
|
||||
src_configure() {
|
||||
append-ldflags -Wl,-z,noexecstack
|
||||
cmake_src_configure
|
||||
|
||||
@@ -11,14 +11,14 @@ DESCRIPTION="Fast cryptographic operations for Monero wallets"
|
||||
HOMEPAGE="https://github.com/monero-project/supercop"
|
||||
SRC_URI="https://github.com/monero-project/supercop/archive/${MY_REV}.tar.gz -> ${PN}-${MY_REV}.tar.gz"
|
||||
|
||||
S="${WORKDIR}"/${PN}-${MY_REV}
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
|
||||
DEPEND="dev-lang/nasm"
|
||||
|
||||
S="${WORKDIR}"/${PN}-${MY_REV}
|
||||
|
||||
src_configure() {
|
||||
append-flags -fPIC
|
||||
append-ldflags -Wl,-z,noexecstack
|
||||
|
||||
@@ -9,6 +9,8 @@ DESCRIPTION="An XQuery and XPath 2 library and command line utility written in C
|
||||
HOMEPAGE="https://sourceforge.net/projects/xqilla/"
|
||||
SRC_URI="https://downloads.sourceforge.net/${PN}/XQilla-${PV}.tar.gz"
|
||||
|
||||
S="${WORKDIR}"/XQilla-${PV}
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -19,8 +21,6 @@ RDEPEND="${DEPEND}"
|
||||
|
||||
PATCHES=( "${FILESDIR}"/lib_to_lib64.patch )
|
||||
|
||||
S="${WORKDIR}"/XQilla-${PV}
|
||||
|
||||
src_prepare() {
|
||||
append-cxxflags -std=c++14
|
||||
default
|
||||
|
||||
@@ -7,6 +7,8 @@ DESCRIPTION="An XQuery and XPath 2 library and command line utility written in C
|
||||
HOMEPAGE="https://sourceforge.net/projects/xqilla/"
|
||||
SRC_URI="https://downloads.sourceforge.net/${PN}/XQilla-${PV}.tar.gz"
|
||||
|
||||
S="${WORKDIR}"/XQilla-${PV}
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -19,8 +21,6 @@ PATCHES=(
|
||||
"${FILESDIR}"/lib_to_lib64.patch
|
||||
)
|
||||
|
||||
S="${WORKDIR}"/XQilla-${PV}
|
||||
|
||||
src_prepare() {
|
||||
eapply -p1 "${FILESDIR}/lib_to_lib64.patch"
|
||||
eapply_user
|
||||
|
||||
@@ -10,16 +10,17 @@ PYTHON_COMPAT=( python3_{10..12} )
|
||||
inherit cmake fortran-2 python-single-r1 #docs
|
||||
|
||||
DESCRIPTION="Compressed numerical arrays that support high-speed random access"
|
||||
SRC_URI="https://github.com/LLNL/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
HOMEPAGE="
|
||||
https://computing.llnl.gov/projects/zfp
|
||||
https://zfp.io
|
||||
https://github.com/LLNL/ZFP
|
||||
"
|
||||
SRC_URI="https://github.com/LLNL/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="aligned cfp fasthash examples fortran openmp profile python strided test twoway +utilities" #doc cuda
|
||||
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
@@ -11,7 +11,7 @@ inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Unserializes binary|text|file|memory plist data to Python dict"
|
||||
HOMEPAGE="https://github.com/avibrazil/NSKeyedUnArchiver"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
@@ -13,10 +13,10 @@ HOMEPAGE="https://github.com/ErikBjare/TakeTheTime"
|
||||
|
||||
# pypi doesn't contains the tests
|
||||
SRC_URI="https://github.com/ErikBjare/TakeTheTime/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
LICENSE="MIT"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
distutils_enable_tests unittest
|
||||
|
||||
|
||||
@@ -12,12 +12,12 @@ DESCRIPTION="A Python implementation of ADB with shell and FileSync functionalit
|
||||
HOMEPAGE="https://pypi.org/project/adb-shell/ https://github.com/JeffLIrion/adb_shell"
|
||||
SRC_URI="https://github.com/JeffLIrion/adb_shell/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
S="${WORKDIR}/adb_shell-${PV}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
S="${WORKDIR}/adb_shell-${PV}"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/aiofiles[${PYTHON_USEDEP}]
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
|
||||
@@ -12,12 +12,12 @@ DESCRIPTION="A Python implementation of ADB with shell and FileSync functionalit
|
||||
HOMEPAGE="https://pypi.org/project/adb-shell/ https://github.com/JeffLIrion/adb_shell"
|
||||
SRC_URI="https://github.com/JeffLIrion/adb_shell/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
S="${WORKDIR}/adb_shell-${PV}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
S="${WORKDIR}/adb_shell-${PV}"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/aiofiles[${PYTHON_USEDEP}]
|
||||
dev-python/async-timeout[${PYTHON_USEDEP}]
|
||||
|
||||
@@ -12,12 +12,12 @@ DESCRIPTION="A Python implementation of ADB with shell and FileSync functionalit
|
||||
HOMEPAGE="https://pypi.org/project/adb-shell/ https://github.com/JeffLIrion/adb_shell"
|
||||
SRC_URI="https://github.com/JeffLIrion/adb_shell/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
S="${WORKDIR}/adb_shell-${PV}"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
S="${WORKDIR}/adb_shell-${PV}"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/aiofiles[${PYTHON_USEDEP}]
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
|
||||
@@ -12,7 +12,7 @@ HOMEPAGE="https://github.com/fakefred/ascim"
|
||||
SRC_URI="https://github.com/fakefred/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
distutils_enable_sphinx docs dev-python/sphinx-rtd-theme
|
||||
|
||||
@@ -15,12 +15,12 @@ DESCRIPTION="An async python inotify package"
|
||||
HOMEPAGE="https://gitlab.com/Taywee/asyncinotify"
|
||||
SRC_URI="https://gitlab.com/Taywee/${PN}/-/archive/${MY_PV}/${MY_P}.tar.bz2 -> ${P}.tar.bz2"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
distutils_enable_sphinx docs "dev-python/tomli"
|
||||
|
||||
distutils_enable_tests unittest
|
||||
|
||||
@@ -8,11 +8,15 @@ PYTHON_COMPAT=(python3_{9..12})
|
||||
|
||||
inherit linux-mod-r1 distutils-r1 desktop
|
||||
|
||||
SRC_URI="https://github.com/casualsnek/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DESCRIPTION="Run Windows Applications on Linux as if they are native (Using a VM and FreeRDP)"
|
||||
HOMEPAGE="https://github.com/casualsnek/cassowary"
|
||||
SRC_URI="https://github.com/casualsnek/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="X wayland"
|
||||
|
||||
BDEPEND="dev-python/setuptools
|
||||
dev-python/build
|
||||
@@ -26,10 +30,6 @@ RDEPEND="net-misc/freerdp
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
IUSE="X wayland"
|
||||
|
||||
MODULES_KERNEL_MIN=5.10
|
||||
|
||||
python_compile() {
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
DIST clufter-v0.77.2.tar.gz 302005 BLAKE2B 57bd4ff178e7b0aace6c88a08717b5b3df4717ea688bac777bf320129508d333669df36b9be8fe6989fc2f3cc8ce072a1d26948ffb80d0cf3dc5007bb5362623 SHA512 0f565dea36ccfe84a2a08a71845dae56ccecb6493e4b0bce543fc57b406ea03ed8c219c40a2917b3b53cca004b8b4a234f9e473a4f4ecd7e330a5b2501db1044
|
||||
@@ -1,33 +0,0 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
DISTUTILS_USE_SETUPTOOLS=rdepend
|
||||
PYTHON_COMPAT=( python3_10 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Tool/library for transforming/analyzing cluster configuration formats"
|
||||
HOMEPAGE="https://pagure.io/clufter"
|
||||
SRC_URI="https://pagure.io/${PN}/archive/v${PV}/${PN}-v${PV}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2+"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
DOCS=( __root__/README )
|
||||
|
||||
DEPEND="dev-python/lxml
|
||||
dev-libs/libxml2"
|
||||
|
||||
src_compile() {
|
||||
# Build native extension first
|
||||
pushd "${S}/__root__/ccs-flatten" || die
|
||||
emake
|
||||
popd || die
|
||||
|
||||
distutils-r1_src_compile
|
||||
}
|
||||
@@ -1,11 +0,0 @@
|
||||
<?xml version='1.0' encoding='UTF-8'?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>andrea.postiglione@gmail.com</email>
|
||||
<name>Andrea Postiglione</name>
|
||||
</maintainer>
|
||||
<upstream>
|
||||
<remote-id type="github">jnpkrn/clufter</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +0,0 @@
|
||||
DIST curio-1.6.tar.gz 235660 BLAKE2B b09f0c5cf62a99efefd95727f5547cf4f02a8b921b52f21051acb206098886fec63123772b826efa1c2842291cbcf4225324e5d7a85b103caacf94035be741ec SHA512 480824a50055d170cc01e2ab28dc1b276df9ab8dfbd50f3c70fe6e3fe2a745b636a4717f7886463a1ed38d6fc357098239e1718e00c8f983369b72f4e5d20f17
|
||||
@@ -1,31 +0,0 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Curio is a coroutine-based library for concurrent systems programming"
|
||||
HOMEPAGE="
|
||||
https://github.com/dabeaz/curio
|
||||
https://pypi.org/project/curio/
|
||||
"
|
||||
|
||||
IUSE="examples"
|
||||
|
||||
LICENSE="BSD"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="test? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
|
||||
|
||||
EPYTEST_DESELECT=(
|
||||
# Needs net
|
||||
"tests/test_network.py::test_ssl_outgoing"
|
||||
)
|
||||
|
||||
distutils_enable_sphinx docs --no-autodoc
|
||||
distutils_enable_tests pytest
|
||||
@@ -1,22 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<longdescription lang="en">
|
||||
Curio is a coroutine-based library for concurrent Python systems programming. It provides standard programming abstractions such as as tasks, sockets, files, locks, and queues. It works on Unix and Windows. You'll find it to be familiar, small, fast, and fun
|
||||
Core Features
|
||||
|
||||
Curio supports standard synchronization primitives (events, locks, recursive locks, semaphores, and condition variables), queues, subprocesses, as well as running tasks in threads and processes. The task model fully supports cancellation, task groups, timeouts, monitoring, and other features critical to writing reliable code.
|
||||
</longdescription>
|
||||
<upstream>
|
||||
<maintainer>
|
||||
<name>David Beazley</name>
|
||||
<email>dave@dabeaz.com</email>
|
||||
</maintainer>
|
||||
<remote-id type="github">dabeaz/curio</remote-id>
|
||||
<remote-id type="pypi">curio</remote-id>
|
||||
<bugs-to>https://github.com/dabeaz/curio/issues</bugs-to>
|
||||
<changelog>https://github.com/dabeaz/curio/blob/master/CHANGES</changelog>
|
||||
<doc>https://curio.readthedocs.io/</doc>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1 +0,0 @@
|
||||
DIST cx_Oracle-8.3.0.tar.gz 363886 BLAKE2B a58b9cd201e8bd6038a0f7e50031c76197c1739ac2f022a7f91bd77f44032bc87d551c88e8b54c38dcb6b1fcd565e2220d4115ddd195c5f8b8b390590076fe57 SHA512 9a2f50b929802311271e5270f118c96968886c6fd3c8677d2e08949d61e9d4d26846bc9e44c674e0bd12a7f8b57bcced9b979f3622a37656e0969ad8ea4e7f70
|
||||
@@ -1,37 +0,0 @@
|
||||
# Copyright 1999-2024 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="8"
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
DISTUTILS_EXT=1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
PYPI_PN="cx_Oracle"
|
||||
PYPI_NO_NORMALIZE=1
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Python interface to Oracle"
|
||||
HOMEPAGE="
|
||||
https://oracle.github.io/python-cx_Oracle/
|
||||
https://pypi.org/project/cx-Oracle/
|
||||
"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="examples"
|
||||
|
||||
# Tests require local instance of Oracle DB
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND="dev-db/oracle-instantclient"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
src_prepare() {
|
||||
# do not install LICENSE and README to /usr/
|
||||
sed -i -e '/data_files/d' setup.py || die
|
||||
|
||||
distutils-r1_src_prepare
|
||||
}
|
||||
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<upstream>
|
||||
<doc>https://cx-oracle.readthedocs.io</doc>
|
||||
<changelog>https://cx-oracle.readthedocs.io/en/latest/release_notes.html#releasenotes</changelog>
|
||||
<bugs-to>https://github.com/oracle/python-cx_Oracle/issues</bugs-to>
|
||||
<remote-id type="github">oracle/python-cx_Oracle</remote-id>
|
||||
<remote-id type="pypi">cx-Oracle</remote-id>
|
||||
</upstream>
|
||||
<maintainer type="person">
|
||||
<email>rozstrojenie.jazni@gmail.com</email>
|
||||
<name>Michał Gasewicz</name>
|
||||
</maintainer>
|
||||
</pkgmetadata>
|
||||
@@ -12,8 +12,8 @@ DESCRIPTION="This module simplifies creation of data classes (PEP 557) from dict
|
||||
HOMEPAGE="https://github.com/konradhalas/dacite"
|
||||
SRC_URI="https://github.com/konradhalas/dacite/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="
|
||||
|
||||
@@ -21,11 +21,12 @@ HOMEPAGE="
|
||||
https://pypi.org/project/devtools/
|
||||
https://github.com/samuelcolvin/python-devtools
|
||||
"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/asttokens[${PYTHON_USEDEP}]
|
||||
|
||||
@@ -14,10 +14,10 @@ HOMEPAGE="https://github.com/Feneric/doxypypy"
|
||||
SRC_URI="https://github.com/Feneric/doxypypy/archive/${COMMIT}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
|
||||
RESTRICT="!test? ( test )"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="dev-python/chardet[${PYTHON_USEDEP}]"
|
||||
BDEPEND="test? ( dev-python/zope-interface[${PYTHON_USEDEP}] )"
|
||||
|
||||
@@ -10,10 +10,10 @@ inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Evernote SDK"
|
||||
HOMEPAGE="https://github.com/Evernote/evernote-sdk-python3"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="dev-python/oauth2[${PYTHON_USEDEP}]
|
||||
dev-python/oauthlib[${PYTHON_USEDEP}]
|
||||
|
||||
@@ -7,14 +7,13 @@ DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Read and modify image EXIF metadata using Python."
|
||||
|
||||
HOMEPAGE="https://gitlab.com/TNThieding/exif"
|
||||
SRC_URI="https://gitlab.com/TNThieding/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.bz2"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
|
||||
@@ -25,12 +25,12 @@ SRC_URI="
|
||||
$(submodule_uris)
|
||||
"
|
||||
|
||||
S="${WORKDIR}/cChardet-${PV}"
|
||||
|
||||
LICENSE="MPL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
S="${WORKDIR}/cChardet-${PV}"
|
||||
|
||||
BDEPEND="dev-python/cython"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
@@ -25,12 +25,12 @@ SRC_URI="
|
||||
$(submodule_uris)
|
||||
"
|
||||
|
||||
S="${WORKDIR}/cChardet-${PV}"
|
||||
|
||||
LICENSE="MPL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
S="${WORKDIR}/cChardet-${PV}"
|
||||
|
||||
BDEPEND="dev-python/cython"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
@@ -11,13 +11,13 @@ inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Reads and extracts files from a password-encrypted iOS backup"
|
||||
HOMEPAGE="https://pypi.org/project/iOSbackup/ https://github.com/avibrazil/iOSbackup"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="dev-python/biplist[${PYTHON_USEDEP}]
|
||||
dev-python/pycryptodome[${PYTHON_USEDEP}]
|
||||
dev-python/NSKeyedUnArchiver[${PYTHON_USEDEP}]"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
@@ -14,8 +14,8 @@ SRC_URI="
|
||||
https://github.com/python-injector/${PN}/archive/refs/tags/${PV}.tar.gz
|
||||
-> ${P}.gh.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86 ~x86-linux"
|
||||
|
||||
distutils_enable_sphinx docs
|
||||
|
||||
@@ -3,10 +3,6 @@
|
||||
|
||||
EAPI=8
|
||||
|
||||
EPYTEST_DESELECT=(
|
||||
jsonpath_rw_ext/tests/test_jsonpath_rw_ext.py::TestJsonpath_rw_ext::test_fields_value
|
||||
jsonpath_rw_ext/tests/test_jsonpath_rw_ext.py::TestJsonpath_rw_ext::test_shortcut_functions
|
||||
)
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYPI_NO_NORMALIZE=1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
@@ -19,8 +15,8 @@ HOMEPAGE="
|
||||
https://github.com/sileht/python-jsonpath-rw-ext
|
||||
"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
@@ -36,4 +32,9 @@ BDEPEND="
|
||||
)
|
||||
"
|
||||
|
||||
EPYTEST_DESELECT=(
|
||||
jsonpath_rw_ext/tests/test_jsonpath_rw_ext.py::TestJsonpath_rw_ext::test_fields_value
|
||||
jsonpath_rw_ext/tests/test_jsonpath_rw_ext.py::TestJsonpath_rw_ext::test_shortcut_functions
|
||||
)
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
@@ -7,9 +7,7 @@ DIST indoc-1.0.6.crate 14312 BLAKE2B e4757497450f9c5e854f472e576c0df49f1aecb10e3
|
||||
DIST instant-0.1.9.crate 5213 BLAKE2B fe208faa09852079c603930e88b7d0392a89a55d3b934ad45ffb0c9e44df5ef7e8189ba2fa12452f1c8a6416d6f7c0655365ba959bedf2b78228613944be8278 SHA512 3915f67c3629ec93296d56c4cda0cf97b29b1a70930a9d546abb9518139d4c2f35062563a5094e84841ddb1f00b0f3df9dc00801d96c01994765221edf03ef7c
|
||||
DIST itertools-0.10.3.crate 118661 BLAKE2B 0095d6e7f14ddda69605d09f74e8cc881eec1a1d234f705e667d7f9e738ef157b7ddee066855cbcad7f134bf79b99a4a4c77bff3371397a567cd34d98b68bf97 SHA512 9d17357eb68159edf4f4ccd2eb9895672c7fb633803166d5e24ee12350639eaf66f1c822910518185cd1f1ca5d9c3e228dd37525e6c337ba3fc7ce967f9bfc85
|
||||
DIST kurbo-0.10.4.crate 925388 BLAKE2B 84a7f7021289d131a949d3a21e39a337f7a116956b912955548f2d585cb9ae2ade8b937bf59f2920cdce005e700848c5b29d4b9e6f8104ed88efcabc215e6fcb SHA512 6555f8d5f84aa7c47f02b89dae40779eb84921d2838e3dcfe986dc4e742b871d00f788c840feaf8879d46b58d175b573d4f5befe4c206d112d6d085cff8a7b10
|
||||
DIST kurbo-0.9.0.crate 83811 BLAKE2B 612705495e0a2b658f15362f786d57ab18d83f80146ff8431db00a286e88e79f4df8ab1c506451ba68baa48f9ac7a8c791f6bdbb94e3314662a9beea143f30a7 SHA512 6791dcd9defaa7f815ed02c50c711a57eb25242a83b1a81a56795536b582cf347e2ed91b2f9b8268b97e976e2100e57e880428e62d40eef86e8efe98cfad539d
|
||||
DIST kurbopy-0.10.40.tar.gz 53727 BLAKE2B b347f866964ce92aa18d0af83a64a6494c0035acded7d35cd00ed93154df8f3731c1e2059251c6711e6105616dbbb989012833ecbdf3c43509403eba965c088c SHA512 ce6b68c1500459278874910e50cbfb75af6041f0e6478dabfcfcbf68e7c486e89645d29a602b2ca46dfc6caf52ada220ef3ac4be8455b53bcc1a2d48f304c9c7
|
||||
DIST kurbopy-0.9.0.tar.gz 51061 BLAKE2B fe3d856cf1ae82c546e0f17092c7ea5f948a29678628c3c0f6a05133c0e9b17cecb3933710eacbd04ac3ef4173bc0fca6daa627b107e66c2327a53d6f6e70207 SHA512 10ba2a8bd89877dea1ba6253239786910cd539ab46ec20de17adfd2ab85678361b411e00d285ab19e2d073ba4f378c80e88f3996d6fc7817561ad55254b82579
|
||||
DIST libc-0.2.88.crate 514138 BLAKE2B c9c6cd0b5456ee2706e7b572ba8df644abeb2d1297abe4f5d2b480e7b7b6b1024cfde98adea2822045b605949505c133538c74b0676c3ab5a2db8aed04605b4b SHA512 c1ad5dd0efd8117da798fcff84082e3b831cb1ae04c26ca8d87936057155e2ca08f0a693cf2c79c5db2c2dbe6b64e254328439b303ba952559f4c524466ad243
|
||||
DIST lock_api-0.4.2.crate 20375 BLAKE2B 0b24bdf98aaee9870f558971f437e728c8e52a853cc886a0de30cb9a84c2733175e6152a2d7ff1f28a83df5443091b16ac5410cb67d05ce464e01db64ba98cb0 SHA512 815de5198ba4a952490fbc7e08e899ce855588d794c22890839ad55caa81642745fa6bf81a2a2fc8f6713575f0d1b801a2f2107ed7c405101011927b6b40be31
|
||||
DIST memoffset-0.8.0.crate 8912 BLAKE2B 19ad3abed21fc39461b0382b15a8cc312378aba36f042b1e5335012115d31b350a4e3bc720f1eea300d7d19b9b317f75a28d4ccd78ff3b31defd9e4b3147899c SHA512 47adcae0848ff967035e10543ea599c7af9c5bad387023eb4dc77c9e8d875994ec8139b9941b3ecc4fc17214d80944a47a3be174a45b334661914a5a7382dfbe
|
||||
@@ -26,7 +24,6 @@ DIST quote-1.0.9.crate 25042 BLAKE2B 26ef31e89fd2f0cc21ff65f8072f30c7977ac634d25
|
||||
DIST redox_syscall-0.2.5.crate 23449 BLAKE2B 2d676dfe40f62285463a25f90ecf24ddb8548f91db1dffd779aaf9c1210bf1eb9c7c535b0d04ac7a483e0724d24ac1d1ed6c78884ad2631a53a870488b7578bc SHA512 f1625eaba110129942893e4cae548d22b6892d275124d29540c947d958e5bb7231309fe052cf15bddb23e0e8f0cdaadd002db5bdc3be578e843c46c175526adc
|
||||
DIST scopeguard-1.1.0.crate 11470 BLAKE2B f774eb90b7d3ffb2efba47518e9d1dead4017ab4b38a4bd74914daa84a5af4bf9eb63da0496e3924499d79cd0439c37447aeda4a21226f95645bddcd6becfabe SHA512 368fa5726df8f42b599993681579a9ffd0196480ee3cd0f9f671e8493f3bedd1e1779bdf2beb329e77e0005fa09b816e3385f309490c0f2781568db275d4d17d
|
||||
DIST smallvec-1.11.1.crate 34831 BLAKE2B bad85ddb1d3a1fcec0cb6aba413f90695e0aa0c16b2b231d6d15095bdd6de1731720ea2b394c3f9a444d6d4763bbf44cff389a01aef3488dc599d2ea63ddbc36 SHA512 d4ed45e8867366072e77f23ebe8b31be96be37e5beed30fc2b5ffea81ab04a2ad2aa34fb4f29724b02a5eb90f8b1d8c40b800ee915453947f90758ce999704b5
|
||||
DIST smallvec-1.6.1.crate 26444 BLAKE2B ca6c50a63acdd93a2131654d99e50545a6e2d08eb3e2bd57d4a8ee073d90c08195ee442745a8d62a68179ce7bb8e229b7ff8c6fcf46372a9844bc9280b7c85cb SHA512 9e6061c8211a4485ab54eb541adf40748e1fc3fdfab0849e38e5fd34fc6cc69ae78bd065b788692385a6b8157b031c2fe373900e13d3e56e94fc08d574edaaad
|
||||
DIST syn-1.0.62.crate 231418 BLAKE2B ff264cd80e2107745b22d2febd9e7d3684422e21f382f224c779c7f1e15be1ce8582db1b8b11390131b92991d3fca0c2e521159ddaadce220c035b88eabbc83d SHA512 9b0e2c874eb2f7ff5d752507447713b949ebd157913f7dcdcacc039ea44df0f842a90e9267d2ce5ca39a6bbf3806301374b19c1e6a35f20c7968044c45497b6f
|
||||
DIST target-lexicon-0.12.4.crate 23020 BLAKE2B ad9780b9478b00b4fdcb07bd016d83216695413090ac29cca06388c3790e2832c978b1c7e69f6d34bb6fc9adc39c0a0b6b6636e50a9715a9f5f16445dba22d19 SHA512 194fe1946ad8d9fdb383bf8a65374e24d216382c1ed5379dabc98d58842512624c32838b8d6d0658d866f6559d37f1343a30c5809e8914dd85790399252b3e06
|
||||
DIST unicode-xid-0.2.1.crate 14392 BLAKE2B 7f8f91b9c4df55f2137b754208d4f2997a290acfc9393ee2dcda8195eda25cb342e56ad123f56bb298d93db5248a749c18a982423c9a0e85ce93f7a1eb55d289 SHA512 91e862137e837baea82829431cfed36634fdb05339f00c756eb5a4b429ef0bb871f5133d11adf9a023fa22168c8a0cf194ff3669779f04f219d48fc4fac339d2
|
||||
|
||||
@@ -1,66 +0,0 @@
|
||||
# Copyright 2022-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
DISTUTILS_USE_PEP517=maturin
|
||||
CRATES="
|
||||
arrayvec-0.7.2
|
||||
autocfg-1.1.0
|
||||
bitflags-1.2.1
|
||||
cfg-if-1.0.0
|
||||
either-1.6.1
|
||||
indoc-1.0.6
|
||||
instant-0.1.9
|
||||
itertools-0.10.3
|
||||
kurbo-0.9.0
|
||||
libc-0.2.88
|
||||
lock_api-0.4.2
|
||||
memoffset-0.8.0
|
||||
once_cell-1.8.0
|
||||
parking_lot-0.11.1
|
||||
parking_lot_core-0.8.3
|
||||
proc-macro2-1.0.24
|
||||
pyo3-0.18.1
|
||||
pyo3-build-config-0.18.1
|
||||
pyo3-ffi-0.18.1
|
||||
pyo3-macros-0.18.1
|
||||
pyo3-macros-backend-0.18.1
|
||||
quote-1.0.9
|
||||
redox_syscall-0.2.5
|
||||
scopeguard-1.1.0
|
||||
smallvec-1.6.1
|
||||
syn-1.0.62
|
||||
target-lexicon-0.12.4
|
||||
unicode-xid-0.2.1
|
||||
unindent-0.1.7
|
||||
winapi-0.3.9
|
||||
winapi-i686-pc-windows-gnu-0.4.0
|
||||
winapi-x86_64-pc-windows-gnu-0.4.0
|
||||
"
|
||||
|
||||
inherit distutils-r1 cargo pypi
|
||||
|
||||
DESCRIPTION="Python wrapper around Rust kurbo 2D curves library "
|
||||
HOMEPAGE="https://github.com/simoncozens/kurbopy"
|
||||
SRC_URI+=" $(cargo_crate_uris)"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
src_compile() {
|
||||
distutils-r1_src_compile
|
||||
cargo_src_compile
|
||||
}
|
||||
|
||||
src_install() {
|
||||
distutils-r1_src_install
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
QA_FLAGS_IGNORED="usr/lib/python3\..*/site-packages/kurbopy/kurbopy.*.so"
|
||||
@@ -16,7 +16,7 @@ HOMEPAGE="
|
||||
"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="dev-python/mkdocs[${PYTHON_USEDEP}]"
|
||||
|
||||
@@ -12,19 +12,19 @@ inherit distutils-r1
|
||||
DESCRIPTION="A fully tested, abstract interface to creating OAuth clients and servers."
|
||||
HOMEPAGE="https://github.com/joestump/python-oauth2"
|
||||
SRC_URI="https://github.com/joestump/python-${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
S=${WORKDIR}/python-${P}
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
S="${WORKDIR}"/python-${P}
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}]
|
||||
dev-python/mock[${PYTHON_USEDEP}]
|
||||
dev-python/pycodestyle[${PYTHON_USEDEP}]
|
||||
dev-python/pytest[${PYTHON_USEDEP}]"
|
||||
|
||||
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||
|
||||
src_prepare() {
|
||||
rm -rf "${S}/tests"
|
||||
distutils-r1_src_prepare
|
||||
|
||||
@@ -11,11 +11,10 @@ inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="A thread-safe disk based persistent queue in Python"
|
||||
HOMEPAGE="https://github.com/peter-wangxu/persist-queue"
|
||||
|
||||
LICENSE="BSD"
|
||||
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
# It tries to connect to a local MySQL server
|
||||
RESTRICT="test"
|
||||
@@ -25,7 +24,4 @@ DEPEND="
|
||||
dev-python/msgpack[${PYTHON_USEDEP}]
|
||||
dev-python/pymysql[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
#distutils_enable_tests nose
|
||||
|
||||
@@ -15,8 +15,8 @@ HOMEPAGE="
|
||||
https://pypi.org/project/pg8000/
|
||||
"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
|
||||
@@ -14,8 +14,8 @@ HOMEPAGE="
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
# requires subprocess32
|
||||
RESTRICT="test"
|
||||
|
||||
@@ -12,14 +12,14 @@ DESCRIPTION="Python interface for the GNU scientific library (gsl)"
|
||||
HOMEPAGE="https://github.com/pygsl/pygsl"
|
||||
SRC_URI="https://github.com/pygsl/pygsl/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
IUSE="examples"
|
||||
# Tests are also failing upstream
|
||||
# https://github.com/pygsl/pygsl/issues/15
|
||||
RESTRICT="test"
|
||||
IUSE="examples"
|
||||
|
||||
DEPEND="
|
||||
sci-libs/gsl
|
||||
|
||||
@@ -14,8 +14,8 @@ HOMEPAGE="
|
||||
https://pypi.org/project/rpmautospec-core/
|
||||
"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
|
||||
@@ -13,8 +13,8 @@ HOMEPAGE="
|
||||
https://github.com/tlocke/scramp
|
||||
"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
DIST signalstickers-client-3.2.0.tar.gz 14705 BLAKE2B b2423e96d4cbb9aadd8e1b900dc3c1ba678c619ef964387f937b121b361d341656b764e49d8dcd2d885c4b230f936936ea6487212dee4fce4c2ef40b59eb55e8 SHA512 6820fbb7577ca8ecb63a8fe9b10ad25d7fd510d3ea56bf0a5cd48f8b79595553eece6699308a1ff6d71ae7fecf88a0286d8c2f89a9487af0c7837be3f4436a7e
|
||||
DIST signalstickers-client-3.3.0.tar.gz 15169 BLAKE2B f1437ed60b8d3995f00067bcd54c6f93566c040d46501aebbab8b9f48c1e59e75abd4d49009f6244b1e55923378a1142786fcade366989b27fa65abfd5dea06a SHA512 745e1e6ae29059c08b2f35357cd864884e4f67bef093fc303a5eba8c96bf3f2165267c1725399db23266db021248d351c0085eb5b6b514ba6c504f5e78f84b6a
|
||||
|
||||
@@ -1,25 +0,0 @@
|
||||
# Copyright 2022-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="A Python client for the Signal stickers API"
|
||||
HOMEPAGE="https://github.com/signalstickers/signalstickers-client"
|
||||
|
||||
LICENSE="LGPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/anyio[${PYTHON_USEDEP}]
|
||||
dev-python/httpx[${PYTHON_USEDEP}]
|
||||
dev-python/cryptography[${PYTHON_USEDEP}]
|
||||
dev-python/protobuf-python[${PYTHON_USEDEP}]
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
@@ -15,8 +15,8 @@ HOMEPAGE="
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/sphinx-2.0[${PYTHON_USEDEP}]
|
||||
|
||||
@@ -15,8 +15,8 @@ HOMEPAGE="
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-python/sphinx-2.0[${PYTHON_USEDEP}]
|
||||
|
||||
@@ -8,9 +8,13 @@ PYTHON_COMPAT=( python3_{9..12} )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
SRC_URI="https://github.com/ValvePython/steam/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
DESCRIPTION="Python package for interacting with Steam"
|
||||
HOMEPAGE="https://github.com/ValvePython/steam"
|
||||
SRC_URI="https://github.com/ValvePython/steam/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
DEPEND="dev-python/six
|
||||
dev-python/pycryptodome
|
||||
@@ -20,10 +24,6 @@ DEPEND="dev-python/six
|
||||
dev-python/protobuf-python
|
||||
dev-python/cachetools
|
||||
"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
src_compile() {
|
||||
distutils-r1_src_compile
|
||||
|
||||
@@ -14,10 +14,11 @@ HOMEPAGE="
|
||||
https://pypi.org/project/templated-dictionary/
|
||||
"
|
||||
SRC_URI="https://github.com/xsuchy/templated-dictionary/archive/refs/tags/python-${P}-1.tar.gz -> ${P}.gh.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${PN}-python-${P}-1"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="GPL-2+"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND="dev-python/jinja[${PYTHON_USEDEP}]"
|
||||
|
||||
@@ -10,11 +10,10 @@ inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Time slots/intervals with an arbitrary start and stop"
|
||||
HOMEPAGE="https://github.com/ErikBjare/timeslot"
|
||||
|
||||
LICENSE="MIT"
|
||||
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
# Not available for now
|
||||
RESTRICT="test"
|
||||
|
||||
@@ -1,3 +1 @@
|
||||
DIST tulir-telethon-1.34.0a2.tar.gz 575337 BLAKE2B e76172e38ab22383a584e18ac376cf1aaf5f9ae54428ed09e9cd99f7707b45aa11f5f2da5e601baa998d75e2df6fc036fb03516cf911d80241c3d82f83c439e4 SHA512 bc20db27b4d32675e38386a95b610be21ba83dead18a27907ff0673afc5f2d93002a4e79e62d7ac1f8d18d784c3e0904c760ea9b7fc93f88417c04197d5d7ab6
|
||||
DIST tulir-telethon-1.34.0a3.tar.gz 577740 BLAKE2B 2759d72ff83ee27e7f22b756099d9fd312026e6c28417a3a9243f8be941ff01997a2794324ecee8d71864c240ea7adc9770c04b12b0302c4d3b5a34ec26e3dd5 SHA512 f197a8b6192266da628750776863fda125d29530ce7bdfda1f65845ba8b6bcb95fa32cfb810e4b72b6c1825b20f9e2d794b3b5d2226a91589c4f03493ee3d490
|
||||
DIST tulir-telethon-1.35.0a1.tar.gz 590359 BLAKE2B e145d6c89f7c465c308994c3646fcdd2e99941c37b3ba0be170f8784b0d8e18b5b513fad9b52e8d706532e359649d3368759f6d4676438c200882902a8a5be83 SHA512 17199aea16ede2051583cac857bac65b23301273f64e157c29acca142c7fe4bb9d3ea8d147c121a095b7a30c0bb92eab83aee3946093168ca5096fa84c9d4167
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
# Copyright 2022-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYPI_NO_NORMALIZE=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
MY_PV="${PV/_alph/}"
|
||||
DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
|
||||
HOMEPAGE="https://github.com/tulir/Telethon/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/cryptg[${PYTHON_USEDEP}]
|
||||
dev-python/hachoir[${PYTHON_USEDEP}]
|
||||
dev-python/pillow[${PYTHON_USEDEP}]
|
||||
dev-python/pyaes[${PYTHON_USEDEP}]
|
||||
dev-python/PySocks[${PYTHON_USEDEP}]
|
||||
dev-python/python-socks[${PYTHON_USEDEP}]
|
||||
dev-python/rsa[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
@@ -1,34 +0,0 @@
|
||||
# Copyright 2022-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYPI_NO_NORMALIZE=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
MY_PV="${PV/_alph/}"
|
||||
DESCRIPTION="Pure Python 3 MTProto API Telegram client library, for bots too!"
|
||||
HOMEPAGE="https://github.com/tulir/Telethon/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/cryptg[${PYTHON_USEDEP}]
|
||||
dev-python/hachoir[${PYTHON_USEDEP}]
|
||||
dev-python/pillow[${PYTHON_USEDEP}]
|
||||
dev-python/pyaes[${PYTHON_USEDEP}]
|
||||
dev-python/PySocks[${PYTHON_USEDEP}]
|
||||
dev-python/python-socks[${PYTHON_USEDEP}]
|
||||
dev-python/rsa[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
|
||||
)
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
@@ -5,7 +5,7 @@ EAPI=8
|
||||
|
||||
PYPI_NO_NORMALIZE=1
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{10..11} )
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
|
||||
@@ -12,9 +12,9 @@ DESCRIPTION="An easy-to-use Python library for accessing the Twitter API."
|
||||
HOMEPAGE="https://www.tweepy.org/"
|
||||
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
# dev-python/nose removed from ::gentoo
|
||||
RESTRICT="test"
|
||||
@@ -24,9 +24,7 @@ RDEPEND="
|
||||
dev-python/requests-oauthlib[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
"
|
||||
DEPEND="${RDEPEND}"
|
||||
# test? (
|
||||
# dev-python/aiohttp[${PYTHON_USEDEP}]
|
||||
# dev-python/async-lru[${PYTHON_USEDEP}]
|
||||
|
||||
@@ -15,8 +15,8 @@ HOMEPAGE="
|
||||
https://github.com/python/typeshed/tree/master/stubs/requests
|
||||
"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RDEPEND=">=dev-python/urllib3-2"
|
||||
|
||||
@@ -11,16 +11,20 @@ inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Python interface to the Google WebRTC Voice Activity Detector (VAD)"
|
||||
HOMEPAGE="https://github.com/wiseman/py-webrtcvad"
|
||||
SRC_URI="https://github.com/wiseman/py-${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI+=" https://gentoo.kropotkin.rocks/distfiles/${P}-patches.tar.xz"
|
||||
SRC_URI="https://github.com/wiseman/py-${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
|
||||
https://gentoo.kropotkin.rocks/distfiles/${P}-patches.tar.xz"
|
||||
|
||||
S="${WORKDIR}/py-${P}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
# Depends on a package removed from ::gento (bug #915162)
|
||||
# Depends on a package removed from ::gentoo (bug #915162)
|
||||
RESTRICT="test"
|
||||
|
||||
S="${WORKDIR}/py-${P}"
|
||||
|
||||
PATCHES=( "${WORKDIR}/${PN}-update-webrtc.patch" "${WORKDIR}/${PN}-fix-mem-leak.patch" "${WORKDIR}/${PN}-fix-oob.patch" )
|
||||
PATCHES=(
|
||||
"${WORKDIR}/${PN}-update-webrtc.patch"
|
||||
"${WORKDIR}/${PN}-fix-mem-leak.patch"
|
||||
"${WORKDIR}/${PN}-fix-oob.patch"
|
||||
)
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
DIST wheezy.template-3.1.0.gh.tar.gz 66965 BLAKE2B 6cbaa6e5656a0b3bf417ed500770c97f2207f97822ccdf624c87cb0f3c0d2fa3b1a2269641325c6d6138568aeff3bcc417e6e4896186e2fe7c1b31a15e2d7365 SHA512 f73bb03c6c4d1d34f493ea4e97014a2bd2e14eba3fde5f7fc84a05036a0fdce35ebf4b0ab2ba9ead2a6bec73c416c2f477e44281a437fe776abb009293e1eab3
|
||||
@@ -1,8 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<!-- maintainer-needed -->
|
||||
<upstream>
|
||||
<remote-id type="github">akornatskyy/wheezy.template</remote-id>
|
||||
</upstream>
|
||||
</pkgmetadata>
|
||||
@@ -1,26 +0,0 @@
|
||||
# Copyright 2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
# Tests aren't passing with PEP517
|
||||
#DISTUTILS_USE_PEP517="setuptools"
|
||||
PYTHON_COMPAT=( python3_10 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
MY_PN="wheezy.template"
|
||||
MY_P="${MY_PN}-${PV}"
|
||||
|
||||
DESCRIPTION="lightweight template library"
|
||||
HOMEPAGE="https://github.com/akornatskyy/wheezy.template"
|
||||
# as usual pypi doesn't contains tests
|
||||
SRC_URI="https://github.com/akornatskyy/wheezy.template/archive/refs/tags/${PV}.tar.gz -> ${MY_P}.gh.tar.gz"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
KEYWORDS="~amd64"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
|
||||
DEPEND="dev-python/cython[${PYTHON_USEDEP}]"
|
||||
|
||||
distutils_enable_tests pytest
|
||||
@@ -15,8 +15,8 @@ HOMEPAGE="
|
||||
https://github.com/xattr/xattr
|
||||
"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
BDEPEND="
|
||||
|
||||
@@ -15,8 +15,8 @@ HOMEPAGE="
|
||||
https://github.com/xattr/xattr
|
||||
"
|
||||
|
||||
SLOT="0"
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
BDEPEND="
|
||||
|
||||
@@ -9,6 +9,8 @@ DESCRIPTION="Select colors with proper WCAG color contrast"
|
||||
HOMEPAGE="https://www.ctan.org/pkg/ninecolors/"
|
||||
SRC_URI="https://mirrors.ctan.org/macros/latex/contrib/ninecolors.zip -> ${P}.zip"
|
||||
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
LICENSE="LPPL-1.3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
|
||||
@@ -26,7 +28,6 @@ BDEPEND="
|
||||
"
|
||||
|
||||
TEXMF="/usr/share/texmf-site"
|
||||
S=${WORKDIR}/${PN}
|
||||
|
||||
src_install() {
|
||||
latex-package_src_doinstall styles
|
||||
|
||||
@@ -9,6 +9,8 @@ DESCRIPTION="Typeset tabulars and arrays with LATEX3"
|
||||
HOMEPAGE="https://www.ctan.org/pkg/tabularray/"
|
||||
SRC_URI="https://mirrors.ctan.org/macros/latex/contrib/tabularray.zip -> ${P}.zip"
|
||||
|
||||
S="${WORKDIR}/${PN}"
|
||||
|
||||
LICENSE="LPPL-1.3c"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
|
||||
@@ -27,7 +29,6 @@ BDEPEND="
|
||||
"
|
||||
|
||||
TEXMF="/usr/share/texmf-site"
|
||||
S=${WORKDIR}/${PN}
|
||||
|
||||
src_install() {
|
||||
latex-package_src_doinstall styles
|
||||
|
||||
@@ -14,6 +14,8 @@ HOMEPAGE="
|
||||
"
|
||||
SRC_URI="https://github.com/usebruno/${PN%-*}/releases/download/v${PV}/${PN%-*}_${PV}_amd64_linux.deb"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -56,8 +58,6 @@ QA_PREBUILT="
|
||||
opt/Bruno/libvulkan.so.1
|
||||
"
|
||||
|
||||
S="$WORKDIR"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
rm opt/Bruno/LICENSE* || die
|
||||
|
||||
@@ -14,6 +14,8 @@ HOMEPAGE="
|
||||
"
|
||||
SRC_URI="https://github.com/usebruno/${PN%-*}/releases/download/v${PV}/${PN%-*}_${PV}_amd64_linux.deb"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -57,8 +59,6 @@ QA_PREBUILT="
|
||||
opt/Bruno/libvulkan.so.1
|
||||
"
|
||||
|
||||
S="$WORKDIR"
|
||||
|
||||
src_install() {
|
||||
for size in 16x16 32x32 48x48 128x128 256x256 512x512 1024x1024; do
|
||||
doicon -s "${size}" usr/share/icons/hicolor/"${size}"/apps/bruno.png
|
||||
|
||||
@@ -64,6 +64,8 @@ SRC_URI="https://github.com/${PN}/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
${EGO_SUM_SRC_URI}
|
||||
"
|
||||
|
||||
S="${WORKDIR}/cli-${PV}"
|
||||
|
||||
LICENSE="MIT Apache-2.0 BSD-2 BSD MPL-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -71,8 +73,6 @@ KEYWORDS="~amd64"
|
||||
RDEPEND="sys-libs/glibc"
|
||||
BDEPEND="dev-lang/go"
|
||||
|
||||
S="${WORKDIR}/cli-${PV}"
|
||||
|
||||
src_compile() {
|
||||
ego build -o out/exercism exercism/main.go
|
||||
}
|
||||
|
||||
@@ -64,6 +64,8 @@ SRC_URI="https://github.com/${PN}/cli/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
${EGO_SUM_SRC_URI}
|
||||
"
|
||||
|
||||
S="${WORKDIR}/cli-${PV}"
|
||||
|
||||
LICENSE="MIT Apache-2.0 BSD-2 BSD MPL-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -71,8 +73,6 @@ KEYWORDS="~amd64"
|
||||
RDEPEND="sys-libs/glibc"
|
||||
BDEPEND="dev-lang/go"
|
||||
|
||||
S="${WORKDIR}/cli-${PV}"
|
||||
|
||||
src_compile() {
|
||||
ego build -o out/exercism exercism/main.go
|
||||
}
|
||||
|
||||
@@ -8,20 +8,20 @@ FORTRAN_STANDARD="2003"
|
||||
inherit cmake fortran-2
|
||||
|
||||
MY_PN="test-drive"
|
||||
SRC_URI="https://github.com/fortran-lang/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
DESCRIPTION="The simple testing framework (for Fortran)"
|
||||
HOMEPAGE="https://github.com/fortran-lang/test-drive"
|
||||
SRC_URI="https://github.com/fortran-lang/${MY_PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
LICENSE="MIT Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
IUSE="test"
|
||||
RESTRICT="mirror !test? ( test )"
|
||||
|
||||
S="${WORKDIR}/${MY_PN}-${PV}"
|
||||
|
||||
|
||||
pkg_setup() {
|
||||
fortran-2_pkg_setup
|
||||
}
|
||||
|
||||
@@ -7,15 +7,15 @@ inherit go-module
|
||||
|
||||
DESCRIPTION="distributed, offline-first bug tracker"
|
||||
HOMEPAGE="https://github.com/MichaelMure/git-bug"
|
||||
SRC_URI="https://github.com/MichaelMure/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
|
||||
https://gentoo.kropotkin.rocks/go-pkgs/${P}-vendor.tar.xz"
|
||||
|
||||
SRC_URI="https://github.com/MichaelMure/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
SRC_URI+=" https://gentoo.kropotkin.rocks/go-pkgs/${P}-vendor.tar.xz"
|
||||
|
||||
RESTRICT="strip"
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm64 ~x86"
|
||||
|
||||
RESTRICT="strip"
|
||||
|
||||
src_compile() {
|
||||
ego generate
|
||||
ego build \
|
||||
|
||||
@@ -9,6 +9,8 @@ DESCRIPTION="Run gitlab pipelines locally as shell executor or docker executor"
|
||||
HOMEPAGE="https://github.com/firecow/gitlab-ci-local"
|
||||
SRC_URI="https://github.com/firecow/gitlab-ci-local/releases/download/${PV}/linux.gz -> ${P}.gz"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -17,8 +19,6 @@ KEYWORDS="~amd64"
|
||||
# sort of self-introspection.
|
||||
RESTRICT="strip"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
MY_PN="${PN/-bin/}"
|
||||
|
||||
QA_PREBUILT="usr/bin/gitlab-ci-local"
|
||||
|
||||
@@ -9,6 +9,8 @@ DESCRIPTION="Run gitlab pipelines locally as shell executor or docker executor"
|
||||
HOMEPAGE="https://github.com/firecow/gitlab-ci-local"
|
||||
SRC_URI="https://github.com/firecow/gitlab-ci-local/releases/download/${PV}/linux.gz -> ${P}.gz"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -17,8 +19,6 @@ KEYWORDS="~amd64"
|
||||
# sort of self-introspection.
|
||||
RESTRICT="strip"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
MY_PN="${PN/-bin/}"
|
||||
|
||||
QA_PREBUILT="usr/bin/gitlab-ci-local"
|
||||
|
||||
@@ -11,6 +11,8 @@ DESCRIPTION="HTTP and GraphQL client for developers"
|
||||
HOMEPAGE="https://insomnia.rest"
|
||||
SRC_URI="https://github.com/Kong/${MY_PN}/releases/download/core@${PV}/Insomnia.Core-${PV}.deb"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -48,8 +50,6 @@ RDEPEND="
|
||||
|
||||
QA_PREBUILT="*"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
|
||||
|
||||
@@ -11,6 +11,8 @@ DESCRIPTION="HTTP and GraphQL client for developers"
|
||||
HOMEPAGE="https://insomnia.rest"
|
||||
SRC_URI="https://github.com/Kong/${MY_PN}/releases/download/core@${PV}/Insomnia.Core-${PV}.deb"
|
||||
|
||||
S="$WORKDIR"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
@@ -43,8 +45,6 @@ RDEPEND="
|
||||
accessibility? ( app-accessibility/at-spi2-core )
|
||||
"
|
||||
|
||||
S="$WORKDIR"
|
||||
|
||||
src_install() {
|
||||
for size in 16x16 32x32 48x48 128x128 256x256 512x512 ; do
|
||||
doicon -s "${size}" usr/share/icons/hicolor/"${size}"/apps/insomnia.png
|
||||
|
||||
@@ -9,12 +9,12 @@ DESCRIPTION="Simple lottie (telegram animated sticker) converter."
|
||||
HOMEPAGE="https://github.com/sot-tech/LottieConverter"
|
||||
SRC_URI="https://github.com/sot-tech/${PN}/archive/refs/tags/r${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
S="${WORKDIR}/LottieConverter-r0.2"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc64"
|
||||
|
||||
S="${WORKDIR}/LottieConverter-r0.2"
|
||||
|
||||
DEPEND="media-libs/rlottie media-libs/libpng media-libs/giflib"
|
||||
RDEPEND="${DEPEND}"
|
||||
|
||||
|
||||
@@ -6,22 +6,21 @@ EAPI=7
|
||||
DESCRIPTION="Generate help for Makefile"
|
||||
HOMEPAGE="https://github.com/oz123/mh"
|
||||
SRC_URI="https://github.com/oz123/mh/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT=0
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
IUSE="test"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
BDEPEND="virtual/pkgconfig"
|
||||
|
||||
RDEPEND="dev-libs/libpcre2"
|
||||
|
||||
DEPEND="
|
||||
${RDEPEND}
|
||||
test? ( dev-util/cmocka )
|
||||
"
|
||||
"
|
||||
|
||||
src_compile() {
|
||||
emake mh VERSION="${PV}"
|
||||
|
||||
@@ -10,9 +10,11 @@ MY_PN=${PN%-cli}
|
||||
DESCRIPTION="A command-line tool for Stripe"
|
||||
HOMEPAGE="https://stripe.com/docs/stripe-cli"
|
||||
EGIT_REPO_URI="https://${EGO_PN}.git"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
IUSE="bash-completion"
|
||||
LICENSE="Apache-2.0"
|
||||
|
||||
BDEPEND=">=dev-lang/go-1.18"
|
||||
DEPEND="${BDEPEND}"
|
||||
|
||||
|
||||
@@ -179,6 +179,8 @@ SRC_URI="
|
||||
${CARGO_CRATE_URIS}
|
||||
"
|
||||
|
||||
S="${WORKDIR}/StyLua-${PV}"
|
||||
|
||||
LICENSE="MPL-2.0"
|
||||
# Dependent crate licenses
|
||||
LICENSE+=" Apache-2.0 MIT MPL-2.0 Unicode-DFS-2016"
|
||||
@@ -186,8 +188,6 @@ SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="lua52 lua53 lua54 luau"
|
||||
|
||||
S="${WORKDIR}/StyLua-${PV}"
|
||||
|
||||
QA_FLAGS_IGNORED=".*"
|
||||
|
||||
src_configure() {
|
||||
|
||||
@@ -14,6 +14,8 @@ SRC_URI="
|
||||
-> ${P}.1
|
||||
"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
# Attribution in xxd.c differs from vim.
|
||||
LICENSE="GPL-2 MIT"
|
||||
SLOT="0"
|
||||
@@ -21,8 +23,6 @@ KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="!app-editors/vim-core"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_unpack() {
|
||||
cp "${DISTDIR}"/${P}.c xxd.c || die "cp failed"
|
||||
cp "${DISTDIR}"/${P}.1 xxd.1 || die "cp failed"
|
||||
|
||||
@@ -21,8 +21,9 @@ SRC_URI="
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
RESTRICT="test"
|
||||
|
||||
IUSE="gnome-keyring"
|
||||
RESTRICT="test"
|
||||
|
||||
RDEPEND="
|
||||
app-text/cmark:=
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user