downgrade pyserial-3.1.1 from main repo for acer_projector

This commit is contained in:
Andreas Billmeier 2019-11-22 13:27:27 +01:00
parent c57217661d
commit 61528b406c
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 75 additions and 0 deletions

View File

@ -9,6 +9,7 @@
* fix pyversasense license string
* fix ipify license string
* add rova license string
* downgrade pyserial-3.1.1 from main repo for acer_projector
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0

View File

@ -0,0 +1,4 @@
AUX mapping.patch 495 BLAKE2B f9a2493c2ed0f522000b2ddc774c931138adda0c7d6f8d53875532fed631936436f5ec8cd572e8fc47bf5d9ada2663efdd315d6102cc5ec873d198a53c75a604 SHA512 2a0a86462291ecd78d06c9b88e8971502a58efa61ad9d47f0df2c94240245a41e7bbf9bfbd93e7761560a16fe15203cf8c5c52eaf3eb24e1499b00dfec3808f8
DIST pyserial-3.1.1.tar.gz 147535 BLAKE2B 5e882e2a957b5a14a63787d0490e336ff8ada7b211b611204a1536bfb85701259596c97d583376e42c889e70a22d28b4a606fa2ad261f7202964dd8fe5fcfd7a SHA512 05b6f893454b187757c8d01c8d3951751ba93e87aafd474fa684a24198eed22f892181bcbab40101e74b25dae612116880690e800adedaf56a5c12775ed2b8d8
EBUILD pyserial-3.1.1.ebuild 1116 BLAKE2B 64d1776c61ee456c51cec28befce8530f06b102bb141abbb52c845df294b64bbd1347a379b1438d9ea5d74681b8e52262e57eebcff42067858d8d8873997e570 SHA512 2a5c8a98fc89aff6f46da8cd0145b59458e198dc7113f3cfd861ab0a8152a2fa9b1b87709a5a6ddc968b352c41acff98f0885ef9f25100c6cfa170d620c19be1
MISC metadata.xml 421 BLAKE2B f3c94b0b72c3df17d9c539e8b76e1f644e0b4ae1bb3d905652b568084e449bf11cab07f27e7775031eee857095671debd28bf1d2eb8c1992c6b980620b32109b SHA512 30c1232aed930c665c2603443cbff9efbb843b1866d6a4d034a517e0669f28f1e6e7562103a8badbd8fb1efd9e69b058870b9c4fcea8fa5e74e7a1ec8ba17fde

View File

@ -0,0 +1,13 @@
diff -ur pyserial-2.7.orig/documentation/conf.py pyserial-2.7/documentation/conf.py
--- a/documentation/conf.py 2013-10-18 00:29:53.000000000 +0800
+++ b/documentation/conf.py 2014-03-28 12:41:08.848807687 +0800
@@ -192,9 +192,3 @@
# If false, no module index is generated.
#latex_use_modindex = True
-
-# for external links to standard library
-intersphinx_mapping = {
- #~ 'python': ('http://docs.python.org', None),
- 'py': ('http://docs.python.org', None),
- }

View File

@ -0,0 +1,13 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>python@gentoo.org</email>
<name>Python</name>
</maintainer>
<upstream>
<remote-id type="pypi">pyserial</remote-id>
<remote-id type="sourceforge">pyserial</remote-id>
<remote-id type="github">pyserial/pyserial</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,44 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 python3_{5,6} pypy )
inherit distutils-r1
DESCRIPTION="Python Serial Port extension"
HOMEPAGE="https://github.com/pyserial/pyserial https://pypi.org/project/pyserial/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="PSF-2"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc x86"
IUSE="doc examples"
DEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
"
# Usual avoid d'loading un-needed objects.inv file
PATCHES=( "${FILESDIR}"/mapping.patch )
DOCS=( CHANGES.rst README.rst )
python_compile_all() {
use doc && emake -C documentation html
}
python_test() {
${EPYTHON} test/run_all_tests.py || die "Testing failed with ${EPYTHON}"
}
python_install_all() {
use doc && local HTML_DOCS=( documentation/_build/html/. )
distutils-r1_python_install_all
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}