From e000c7b564a298ba0a21b20d514afb3108387dc0 Mon Sep 17 00:00:00 2001 From: Quetzaly Daniela Solano Gómez Date: Tue, 9 May 2023 07:33:29 -0500 Subject: media-video/streamdeck-ui: Update streamdeck-ui MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Quetzaly Daniela Solano Gómez --- media-video/streamdeck-ui/Manifest | 4 +- .../streamdeck-ui/streamdeck-ui-2.0.15.ebuild | 51 ++++++++++++++++++++++ .../streamdeck-ui/streamdeck-ui-2.0.6.ebuild | 51 ---------------------- 3 files changed, 53 insertions(+), 53 deletions(-) create mode 100644 media-video/streamdeck-ui/streamdeck-ui-2.0.15.ebuild delete mode 100644 media-video/streamdeck-ui/streamdeck-ui-2.0.6.ebuild diff --git a/media-video/streamdeck-ui/Manifest b/media-video/streamdeck-ui/Manifest index e1fce7a..9af8dcc 100644 --- a/media-video/streamdeck-ui/Manifest +++ b/media-video/streamdeck-ui/Manifest @@ -1,3 +1,3 @@ -DIST streamdeck-ui-2.0.6.tar.gz 3902895 BLAKE2B 07a934ed6886d92f93bb17f7194349d9a6775377af5ce253ca8906075faa9275a2802ca78b843fc6e04567f231d08432559ae7bb771795f6dc20bcb8a5d1dbe1 SHA512 1f4f2c30c037d33f2e2e035acaf2d393fb63bb455c9e3192a9393acaffb32ba4e6822a75255203d6e38048b3a5e901ba4555c2f8344f30d6c9f8cb80c296ac4a -EBUILD streamdeck-ui-2.0.6.ebuild 1348 BLAKE2B df06366d77ba1880a4dd295578ead0444644c10c19d7d4bad9de10a14ac576f1fe48e342bafbcdbd06d96a89e36be03d0391595ed531d868f362d40a6954c221 SHA512 55ffbffa2728d852388647efa63dd7b080458a46315dc7d04e04d5187cd0afe0e6a209fed28e66df7382238cae6f6023f06cf9d7d27690de2de01aa9927f69f8 +DIST streamdeck-ui-2.0.15.tar.gz 3919827 BLAKE2B 63bad0042d648ece2dad2946ec475e0875946082a128359331a878dbf52c5b4a15dfb701b074d8b570c4b42b607432ed2165dd145dce04ae777bc3147705b4c4 SHA512 5f931a968c68b88a38fc44c3d2310fa73cb9a01c67f289dea39214e6176aad9b004ad6c87f63da41cccfa9f7f60f2f6022e4376ebe2a4cac7721cf9b55b079e0 +EBUILD streamdeck-ui-2.0.15.ebuild 1348 BLAKE2B 713b33f3d8de97f47bd0ef34d49e53ecbe48773a42b57c08f15e7687102da4e69a372779cf7f8f5ba87bcd6cf01836a94c5750da1b7e1533ba0dea5a39d582e0 SHA512 5d8f69c0688ef23f3d5192e791ab8bf5a3e76bbb31b867445dcc50e7083948d3537628501cc6328b8c5124ef622bebe39a7858955631e8fa1125dff46aa6f712 MISC metadata.xml 340 BLAKE2B 0821dca2b83a5da9b0d87daaa2b3e835439a508a41eaf2adf173a3cca666fa4fa1b49ba0d571f0193c09004ef7fe42565ed75e29946ea08b2a8a5e2bd0835911 SHA512 2d31fac58ef66d6634c562565fa0d17b1c565b3c96fa75f98f86250ea206b7a98856e34ae4915087d6441c3efcd10e9775181b5609aafe5772dd2a863e88d2ea diff --git a/media-video/streamdeck-ui/streamdeck-ui-2.0.15.ebuild b/media-video/streamdeck-ui/streamdeck-ui-2.0.15.ebuild new file mode 100644 index 0000000..cd4c245 --- /dev/null +++ b/media-video/streamdeck-ui/streamdeck-ui-2.0.15.ebuild @@ -0,0 +1,51 @@ +# Copyright 2020-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{9..11} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 + +DESCRIPTION="A Linux compatible UI for the Elgato Stream Deck" +HOMEPAGE="https://github.com/timothycrosley/streamdeck-ui" +if [ "${PV}" = "9999" ]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/timothycrosley/streamdeck-ui.git" +else + SRC_URI="https://github.com/timothycrosley/streamdeck-ui/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + #S="${WORKDIR}/${PN}-${COMMIT}" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="MIT Apache-2.0" +SLOT="0" +IUSE="" + +RESTRICT="test" + +DEPEND="${PYTHON_DEPS} + dev-libs/hidapi + dev-python/filetype[${PYTHON_USEDEP}] + dev-python/pillow[${PYTHON_USEDEP}] + dev-python/pynput[${PYTHON_USEDEP}] + dev-python/pyside2[${PYTHON_USEDEP},designer] + dev-python/python-xlib[${PYTHON_USEDEP}] + media-gfx/cairosvg[${PYTHON_USEDEP}] + media-libs/elgato-streamdeck[${PYTHON_USEDEP}] + " +RDEPEND="${DEPEND}" + +distutils_enable_tests pytest + +src_prepare() { + sed -i "s#os.path.dirname(os.path.abspath(__file__))#'/usr/share/streamdeck-ui'#" streamdeck_ui/config.py + distutils-r1_src_prepare +} + +src_install() { + insinto /usr/share/streamdeck-ui + doins streamdeck_ui/logo.png + doins -r streamdeck_ui/fonts + distutils-r1_src_install +} diff --git a/media-video/streamdeck-ui/streamdeck-ui-2.0.6.ebuild b/media-video/streamdeck-ui/streamdeck-ui-2.0.6.ebuild deleted file mode 100644 index c0de72a..0000000 --- a/media-video/streamdeck-ui/streamdeck-ui-2.0.6.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 2020-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python3_{9..10} ) -DISTUTILS_USE_PEP517=poetry -inherit distutils-r1 - -DESCRIPTION="A Linux compatible UI for the Elgato Stream Deck" -HOMEPAGE="https://github.com/timothycrosley/streamdeck-ui" -if [ "${PV}" = "9999" ]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/timothycrosley/streamdeck-ui.git" -else - SRC_URI="https://github.com/timothycrosley/streamdeck-ui/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" - #S="${WORKDIR}/${PN}-${COMMIT}" - KEYWORDS="~amd64 ~x86" -fi - -LICENSE="MIT Apache-2.0" -SLOT="0" -IUSE="" - -RESTRICT="test" - -DEPEND="${PYTHON_DEPS} - dev-libs/hidapi - dev-python/filetype[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/pynput[${PYTHON_USEDEP}] - dev-python/pyside2[${PYTHON_USEDEP},designer] - dev-python/python-xlib[${PYTHON_USEDEP}] - media-gfx/cairosvg[${PYTHON_USEDEP}] - media-libs/elgato-streamdeck[${PYTHON_USEDEP}] - " -RDEPEND="${DEPEND}" - -distutils_enable_tests pytest - -src_prepare() { - sed -i "s#os.path.dirname(os.path.abspath(__file__))#'/usr/share/streamdeck-ui'#" streamdeck_ui/config.py - distutils-r1_src_prepare -} - -src_install() { - insinto /usr/share/streamdeck-ui - doins streamdeck_ui/logo.png - doins -r streamdeck_ui/fonts - distutils-r1_src_install -} -- cgit v1.2.3-65-gdbad