mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-18 11:33:15 -04:00
Merge updates from master
This commit is contained in:
2
dev-libs/protothreads/Manifest
Normal file
2
dev-libs/protothreads/Manifest
Normal file
@@ -0,0 +1,2 @@
|
||||
DIST graham-pt.h 11519 BLAKE2B 4a3a3be1842b114364f075088c7c0cba3f6ef893b90276e274c5f0f098dc0ea07e8d8fbc02a9393b85a283d745cd32b4352dbc6c228c5e6f0667ac346776a58c SHA512 c49338748c4b88dd2a06f1b569ba506b80864829ee9ae9301b031ba192ddcd60b3a21b3131d6d2a022678f83a0d5398019d1e92032825d37f2ddec1574e4c52c
|
||||
DIST protothreads-1.4.tar 634880 BLAKE2B 8efbbaf5df21aef9416959f9fc307cba88a333495c4c53e60fa47cbb2c2de2d1c793298015c266e8e0a480e0a7569b9c047aa138692b8df8c82b0d3907aeb83e SHA512 8ea2868d3ba7e76ffaab668cbb7c76b13857d9204f88169831f828089e852c7c0928269c3e7e439a5f5cd50fe3c3a9c5cbc0e80cf844bd9757770880065cfba7
|
||||
10
dev-libs/protothreads/metadata.xml
Normal file
10
dev-libs/protothreads/metadata.xml
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="person">
|
||||
<email>lssndrbarbieri@gmail.com</email>
|
||||
<name>Alessandro Barbieri</name>
|
||||
</maintainer>
|
||||
<longdescription>Protothreads are extremely lightweight stackless threads designed for severely memory constrained systems, such as small embedded systems or wireless sensor network nodes. Protothreads provide linear code execution for event-driven systems implemented in C. Protothreads can be used with or without an underlying operating system to provide blocking event-handlers. Protothreads provide sequential flow of control without complex state machines or full multi-threading.
|
||||
</longdescription>
|
||||
</pkgmetadata>
|
||||
57
dev-libs/protothreads/protothreads-1.4.ebuild
Normal file
57
dev-libs/protothreads/protothreads-1.4.ebuild
Normal file
@@ -0,0 +1,57 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
|
||||
DESCRIPTION="Protothreads - Lightweight, Stackless Threads in C"
|
||||
HOMEPAGE="https://web.archive.org/web/20190923093100/http://dunkels.com/adam/pt/"
|
||||
SRC_URI="
|
||||
https://web.archive.org/web/20190518175329/http://dunkels.com/adam/download/pt-${PV}.tar.gz -> ${P}.tar
|
||||
https://web.archive.org/web/20190518175329/http://dunkels.com/adam/download/graham-pt.h
|
||||
"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
IUSE="doc examples"
|
||||
|
||||
BDEPEND="doc? ( app-doc/doxygen )"
|
||||
|
||||
S="${WORKDIR}/pt-${PV}"
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
cp "${DISTDIR}/graham-pt.h" "${S}"
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
sed -i 's/-Werror//g' Makefile
|
||||
sed -i 's/-O//g' Makefile
|
||||
default
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
default
|
||||
use doc && cd doc && emake
|
||||
}
|
||||
|
||||
src_install() {
|
||||
insinto "/usr/include/${PN}"
|
||||
doins *.h
|
||||
if use doc ; then
|
||||
dodoc doc/*.pdf
|
||||
dodoc doc/*.txt
|
||||
dodoc README
|
||||
docinto html
|
||||
dodoc -r doc/html/.
|
||||
|
||||
fi
|
||||
if use examples ; then
|
||||
insinto "/usr/share/${P}/examples"
|
||||
doins *.c
|
||||
exeinto "/usr/libexec/${P}"
|
||||
doexe example-buffer
|
||||
doexe example-codelock
|
||||
doexe example-small
|
||||
fi
|
||||
}
|
||||
1
dev-python/glicko2/Manifest
Normal file
1
dev-python/glicko2/Manifest
Normal file
@@ -0,0 +1 @@
|
||||
DIST glicko2-2019.10.10.tar.gz 4684 BLAKE2B c21e3be87df4b3bff0b1ba6bece96587ad26807beab882c38829b782eb99f1e165013b403c6a690ec591daa1ea9d55bff876eb802af944ee25222e28e787146c SHA512 7665c3b81023a01ba2d835c3a0a4aedf5a6becff909f554a25c69537289f6ea75820d759035d540b297cd6414c6d465f79a7ef21a91f9f7e2cf394241811c89d
|
||||
26
dev-python/glicko2/glicko2-2019.10.10.ebuild
Normal file
26
dev-python/glicko2/glicko2-2019.10.10.ebuild
Normal file
@@ -0,0 +1,26 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI="7"
|
||||
PYTHON_COMPAT=( python3_{6,7} pypy3)
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
COMMIT="99285aa6b5250b91a837b842dc61b2a96007f3c5"
|
||||
|
||||
DESCRIPTION="An implementation of the Glicko-2 rating system for Python"
|
||||
HOMEPAGE="https://github.com/sublee/glicko2"
|
||||
SRC_URI="https://github.com/sublee/glicko2/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64"
|
||||
|
||||
S="${WORKDIR}/${PN}-${COMMIT}"
|
||||
|
||||
distutils_enable_tests setup.py
|
||||
|
||||
src_prepare() {
|
||||
sed -i -e "s/distribute/setuptools/g" setup.py
|
||||
eapply_user
|
||||
}
|
||||
@@ -1,3 +1,3 @@
|
||||
DIST libnbtplusplus-multimc-0.6.1.tar.gz 47171 BLAKE2B e0e4d2593554dc59605114fcae86c59877da67d3f0888145b9ec2fe3d08decec7345a92c7d37310e021b5719f1371a58a22dc796e719028a478877e6d08982ed SHA512 81a1640a069d88df7ba0abf72089aecbe1e9d791c88acaaa7e70c8f0bcd0512cf8698178342657e363524ce8488dd072368a0aa8cc091a24912d6f8b6b0f4f2d
|
||||
DIST multimc-0.6.8.tar.gz 2378673 BLAKE2B 6117559f3f27256958ebb843596ccdd6e5992b491af8c5a035f3dbf7ea0880c62f9e6513e0dee2550f5fa7d17149d9d082fddad4a87c772c13fb512fd4533bc7 SHA512 b1c0243fc7fe5e0be7a3c2301726bfeab47ccd3727fc8d7c0238ca6ad3672770810024c64822d5fd40350be363f4c31c3cc657d0662e361feefc938fcaa9ca79
|
||||
DIST multimc-0.6.11.tar.gz 2379632 BLAKE2B 9d79eaf8211bfc8e89c01726a677a00be7533630cce3723f710ff9531ba854204dee008339422afa0e974ddec1fcddd88eb345b9a89c4f878ea35d014e15be03 SHA512 728eaebc69a9d927945932873f943204574133470e1e042fc71949aa573f1b1de294821df8cdc7a08f75bffd85b21548b314f727b5c9875c5cccf7a207e2afd6
|
||||
DIST quazip-multimc-3.tar.gz 103519 BLAKE2B 7a636f9e76cae61cee42131093b56d2a577814b2eb04bdc3c3a7614cf307bbdabe533c66a9f07848bbd929a62b7043dc53f2f85e2e487bfcc820170112f1114b SHA512 2e9074203c67bc7ad98621c551047e5367f06e54cacfecc755a5bf2c9f99266eab42ad972f86ae28ed7e1507f6d27d8d2680a87ce9fd5b1e93a18bcb627ec3f0
|
||||
|
||||
Reference in New Issue
Block a user