public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyvirtualdisplay/
Date: Tue, 15 Sep 2020 08:09:35 +0000 (UTC)	[thread overview]
Message-ID: <1600157359.598c34306a37cb0f7ceecf8927b779773dedc575.juippis@gentoo> (raw)

commit:     598c34306a37cb0f7ceecf8927b779773dedc575
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Aug 17 16:49:47 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Tue Sep 15 08:09:19 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=598c3430

dev-python/pyvirtualdisplay: Python wrapper for Xvfb, Xephyr and Xvnc

Package-Manager: Portage-3.0.2, Repoman-2.3.23
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 dev-python/pyvirtualdisplay/Manifest               |  1 +
 dev-python/pyvirtualdisplay/metadata.xml           | 12 +++++
 .../pyvirtualdisplay/pyvirtualdisplay-1.3.2.ebuild | 54 ++++++++++++++++++++++
 3 files changed, 67 insertions(+)

diff --git a/dev-python/pyvirtualdisplay/Manifest b/dev-python/pyvirtualdisplay/Manifest
new file mode 100644
index 00000000000..33557fc07cb
--- /dev/null
+++ b/dev-python/pyvirtualdisplay/Manifest
@@ -0,0 +1 @@
+DIST pyvirtualdisplay-1.3.2.tar.gz 38532 BLAKE2B 2c0cb3af426abc58dc895667c5fecb40ee9aa870dbb08a51ac32fbd5bd3620b97498b3dfc6e7026362604c82f67b60885370f0704a1349a65668628d9a21e80c SHA512 422e1530bb740fc77cc0b7abb73cb8e7326689c80c5f49b58be70b262e8a2c28274d3b83a0ec7753adfbf78b780047f61cf7b18fb14f935d483a5e3d04953210

diff --git a/dev-python/pyvirtualdisplay/metadata.xml b/dev-python/pyvirtualdisplay/metadata.xml
new file mode 100644
index 00000000000..d22e99d7357
--- /dev/null
+++ b/dev-python/pyvirtualdisplay/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<email>andrewammerlaan@riseup.net</email>
+		<name>Andrew Ammerlaan</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+</pkgmetadata>

diff --git a/dev-python/pyvirtualdisplay/pyvirtualdisplay-1.3.2.ebuild b/dev-python/pyvirtualdisplay/pyvirtualdisplay-1.3.2.ebuild
new file mode 100644
index 00000000000..fcb0f048615
--- /dev/null
+++ b/dev-python/pyvirtualdisplay/pyvirtualdisplay-1.3.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python wrapper for Xvfb, Xephyr and Xvnc"
+HOMEPAGE="https://github.com/ponty/PyVirtualDisplay"
+SRC_URI="https://github.com/ponty/PyVirtualDisplay/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="test? (
+	dev-python/backports[${PYTHON_USEDEP}]
+	dev-python/backports-tempfile[${PYTHON_USEDEP}]
+	dev-python/entrypoint2[${PYTHON_USEDEP}]
+	dev-python/path-py[${PYTHON_USEDEP}]
+	dev-python/pillow[${PYTHON_USEDEP}]
+	dev-python/pyscreenshot[${PYTHON_USEDEP}]
+	~dev-python/vncdotool-0.13.0[${PYTHON_USEDEP}]
+	x11-base/xorg-server[xvfb,xephyr]
+	x11-misc/x11vnc
+)"
+
+DEPEND="dev-python/easyprocess[${PYTHON_USEDEP}]"
+
+S="${WORKDIR}/PyVirtualDisplay-${PV}"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+	# all of this fails: AssertionError
+	rm tests/test_examples.py || die
+
+	# Assertion error No such file or directory: 'Xvnc': 'Xvnc'
+	sed -i -e 's:test_race_10_xvnc:_&:' \
+			tests/test_race.py || die
+
+	# No such file or directory: 'Xvnc': 'Xvnc'
+	sed -i -e 's:test_slowshot:_&:' \
+		-e 's:test_slowshot_with:_&:' \
+			tests/test_smart.py || die
+
+	# No such file or directory: 'Xvnc': 'Xvnc'
+	sed -i -e 's:test_double:_&:' \
+			tests/test_smart2.py || die
+
+	distutils-r1_python_prepare_all
+}


             reply	other threads:[~2020-09-15  8:09 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-15  8:09 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-11-12 22:54 [gentoo-commits] repo/gentoo:master commit in: dev-python/pyvirtualdisplay/ Thomas Deutschmann
2020-11-13  8:08 Joonas Niilola
2021-03-03  8:07 Michał Górny
2021-03-03 11:40 Michał Górny
2021-03-11  7:18 Joonas Niilola
2021-04-05  8:08 Michał Górny
2021-04-09 11:49 Joonas Niilola
2021-05-16 23:40 Sam James
2021-05-17  7:01 Michał Górny
2021-06-11 14:32 Andrew Ammerlaan
2021-07-12 22:43 Michał Górny
2021-09-14 13:58 Arthur Zamarin
2021-09-14 13:58 Arthur Zamarin
2021-10-19  0:12 Sam James
2022-02-13  9:29 Michał Górny
2022-02-13 13:00 Michał Górny
2022-03-19  9:36 Michał Górny
2022-06-01 10:55 Andrew Ammerlaan
2022-09-09 22:38 Jakov Smolić
2022-10-29 19:43 Sam James
2023-04-09 20:40 Andrew Ammerlaan
2023-06-18 17:07 Michał Górny
2023-07-23  8:03 Michał Górny
2023-11-24 16:43 Arthur Zamarin
2024-07-07 15:36 Michał Górny

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1600157359.598c34306a37cb0f7ceecf8927b779773dedc575.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox