From: "Jian Lin" <jlin.gentoo@outlook.com> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/qliveplayer/ Date: Fri, 9 Jul 2021 02:13:58 +0000 (UTC) [thread overview] Message-ID: <1625796785.1c43f37800eaeb70ac747532c2f2d7ddca02dee3.jian@gentoo> (raw) commit: 1c43f37800eaeb70ac747532c2f2d7ddca02dee3 Author: Jian Lin <jlin.gentoo <AT> outlook <DOT> com> AuthorDate: Fri Jul 9 02:13:05 2021 +0000 Commit: Jian Lin <jlin.gentoo <AT> outlook <DOT> com> CommitDate: Fri Jul 9 02:13:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c43f378 media-video/qliveplayer: bump to 3.22.4 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Jian Lin <jlin.gentoo <AT> outlook.com> media-video/qliveplayer/Manifest | 1 + media-video/qliveplayer/qliveplayer-3.22.4.ebuild | 71 +++++++++++++++++++++++ 2 files changed, 72 insertions(+) diff --git a/media-video/qliveplayer/Manifest b/media-video/qliveplayer/Manifest index 8119f4ddb..2a4e376bf 100644 --- a/media-video/qliveplayer/Manifest +++ b/media-video/qliveplayer/Manifest @@ -1,2 +1,3 @@ DIST QLivePlayer-3.22.1.tar.gz 640838 BLAKE2B 8552eefa4b8510b602e65fa553ba257467aaf5bd73710e90f690bcb19ceabc25dd4ae4f00143233df624f166f8170bf083aafbbec2d42e7988bd705037a9308e SHA512 45ec1f3d4d698a52107d07a7a55d457215d634b8106ac4facb9250960974f1ea683c338cedeb6f66fef428e88e05ef4286b3e95e22d23ed576c4bc69c5c7c50a DIST QLivePlayer-3.22.3.tar.gz 640956 BLAKE2B ed752d7321f90f70f68ab4366217116711b1f656eefc2f40b92572427dc11d168d2e9f88e6b0ba6c9e3024ede32922e06e04a208833858432e7ed923793b708d SHA512 c3ed5c8ffb4fa639132fdb0f42c20120a8e49c3e9135fe1234ec5eb6012e89a2e620ae4a3b669ecf995935c70f03fc154ca15833ff09ef6f83bba885e19e91a9 +DIST QLivePlayer-3.22.4.tar.gz 640975 BLAKE2B 313d6a68d9ab2914680e3c8f3478659fc8cae4e060f2006c0dba4441796c7880611ad1ca9d2d754bacd5cc542774eefcb0e46807b6dacc20a04c1538bda0394f SHA512 08fc3abb7b923baba09c60c86185431fe3754a1e06978247247e1482100e3b41c2a5185bc5fea1270fd2e7e9d90509880ea4ba4e8bb133cc4745f229c93744d3 diff --git a/media-video/qliveplayer/qliveplayer-3.22.4.ebuild b/media-video/qliveplayer/qliveplayer-3.22.4.ebuild new file mode 100644 index 000000000..ecc8b1752 --- /dev/null +++ b/media-video/qliveplayer/qliveplayer-3.22.4.ebuild @@ -0,0 +1,71 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..9} ) + +inherit cmake optfeature python-single-r1 readme.gentoo-r1 xdg + +MY_P="QLivePlayer-${PV}" + +DESCRIPTION="A player and recorder for live streams and videos with danmaku support" +HOMEPAGE="https://github.com/IsoaSFlus/QLivePlayer" +SRC_URI="https://github.com/IsoaSFlus/QLivePlayer/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +COMMON_DEPEND=" + ${PYTHON_DEPS} + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdeclarative-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtnetwork-5.15:5 + >=dev-qt/qtwidgets-5.15:5 +" +RDEPEND=" + ${COMMON_DEPEND} + $(python_gen_cond_dep ' + dev-python/aiohttp[${PYTHON_USEDEP}] + ') + media-video/ffmpeg + media-video/mpv + net-misc/curl + >=dev-qt/qtquickcontrols-5.15:5 + >=dev-qt/qtquickcontrols2-5.15:5 + >=dev-qt/qtsvg-5.15:5 +" +DEPEND=" + ${COMMON_DEPEND} + kde-frameworks/extra-cmake-modules:5 +" + +src_prepare() { + xdg_environment_reset + cmake_src_prepare + # respect PYTHON_SINGLE_TARGET + grep 'p.start("python3", args);' src/qlphelper/bilivideo.cpp >/dev/null || die + sed -i "s/python3/${EPYTHON}/" src/qlphelper/bilivideo.cpp || die + grep 'dmcPyProcess->start("python3", dmcPy);' \ + src/qlphelper/danmakulauncher.cpp >/dev/null || die + sed -i "s/python3/${EPYTHON}/" src/qlphelper/danmakulauncher.cpp || die + grep 'proc->start("python3", args);' \ + src/qlphelper/streamfinder.cpp >/dev/null || die + sed -i "s/python3/${EPYTHON}/" src/qlphelper/streamfinder.cpp || die +} + +src_install() { + cmake_src_install + readme.gentoo_create_doc +} + +pkg_postinst() { + xdg_pkg_postinst + readme.gentoo_print_elog + optfeature "twitch support" "net-misc/streamlink" + optfeature "youtube support" "dev-python/protobuf-python net-misc/streamlink" +}
WARNING: multiple messages have this Message-ID (diff)
From: "Jian Lin" <jlin.gentoo@outlook.com> To: gentoo-commits@lists.gentoo.org Subject: [gentoo-commits] repo/proj/guru:master commit in: media-video/qliveplayer/ Date: Fri, 9 Jul 2021 02:20:27 +0000 (UTC) [thread overview] Message-ID: <1625796785.1c43f37800eaeb70ac747532c2f2d7ddca02dee3.jian@gentoo> (raw) Message-ID: <20210709022027.323GrrnXQMrhs5pxBssK-jj94Sa30iwyzuUuQgaztcE@z> (raw) commit: 1c43f37800eaeb70ac747532c2f2d7ddca02dee3 Author: Jian Lin <jlin.gentoo <AT> outlook <DOT> com> AuthorDate: Fri Jul 9 02:13:05 2021 +0000 Commit: Jian Lin <jlin.gentoo <AT> outlook <DOT> com> CommitDate: Fri Jul 9 02:13:05 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c43f378 media-video/qliveplayer: bump to 3.22.4 Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Jian Lin <jlin.gentoo <AT> outlook.com> media-video/qliveplayer/Manifest | 1 + media-video/qliveplayer/qliveplayer-3.22.4.ebuild | 71 +++++++++++++++++++++++ 2 files changed, 72 insertions(+) diff --git a/media-video/qliveplayer/Manifest b/media-video/qliveplayer/Manifest index 8119f4ddb..2a4e376bf 100644 --- a/media-video/qliveplayer/Manifest +++ b/media-video/qliveplayer/Manifest @@ -1,2 +1,3 @@ DIST QLivePlayer-3.22.1.tar.gz 640838 BLAKE2B 8552eefa4b8510b602e65fa553ba257467aaf5bd73710e90f690bcb19ceabc25dd4ae4f00143233df624f166f8170bf083aafbbec2d42e7988bd705037a9308e SHA512 45ec1f3d4d698a52107d07a7a55d457215d634b8106ac4facb9250960974f1ea683c338cedeb6f66fef428e88e05ef4286b3e95e22d23ed576c4bc69c5c7c50a DIST QLivePlayer-3.22.3.tar.gz 640956 BLAKE2B ed752d7321f90f70f68ab4366217116711b1f656eefc2f40b92572427dc11d168d2e9f88e6b0ba6c9e3024ede32922e06e04a208833858432e7ed923793b708d SHA512 c3ed5c8ffb4fa639132fdb0f42c20120a8e49c3e9135fe1234ec5eb6012e89a2e620ae4a3b669ecf995935c70f03fc154ca15833ff09ef6f83bba885e19e91a9 +DIST QLivePlayer-3.22.4.tar.gz 640975 BLAKE2B 313d6a68d9ab2914680e3c8f3478659fc8cae4e060f2006c0dba4441796c7880611ad1ca9d2d754bacd5cc542774eefcb0e46807b6dacc20a04c1538bda0394f SHA512 08fc3abb7b923baba09c60c86185431fe3754a1e06978247247e1482100e3b41c2a5185bc5fea1270fd2e7e9d90509880ea4ba4e8bb133cc4745f229c93744d3 diff --git a/media-video/qliveplayer/qliveplayer-3.22.4.ebuild b/media-video/qliveplayer/qliveplayer-3.22.4.ebuild new file mode 100644 index 000000000..ecc8b1752 --- /dev/null +++ b/media-video/qliveplayer/qliveplayer-3.22.4.ebuild @@ -0,0 +1,71 @@ +# Copyright 2020-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{8..9} ) + +inherit cmake optfeature python-single-r1 readme.gentoo-r1 xdg + +MY_P="QLivePlayer-${PV}" + +DESCRIPTION="A player and recorder for live streams and videos with danmaku support" +HOMEPAGE="https://github.com/IsoaSFlus/QLivePlayer" +SRC_URI="https://github.com/IsoaSFlus/QLivePlayer/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +COMMON_DEPEND=" + ${PYTHON_DEPS} + >=dev-qt/qtcore-5.15:5 + >=dev-qt/qtdeclarative-5.15:5 + >=dev-qt/qtgui-5.15:5 + >=dev-qt/qtnetwork-5.15:5 + >=dev-qt/qtwidgets-5.15:5 +" +RDEPEND=" + ${COMMON_DEPEND} + $(python_gen_cond_dep ' + dev-python/aiohttp[${PYTHON_USEDEP}] + ') + media-video/ffmpeg + media-video/mpv + net-misc/curl + >=dev-qt/qtquickcontrols-5.15:5 + >=dev-qt/qtquickcontrols2-5.15:5 + >=dev-qt/qtsvg-5.15:5 +" +DEPEND=" + ${COMMON_DEPEND} + kde-frameworks/extra-cmake-modules:5 +" + +src_prepare() { + xdg_environment_reset + cmake_src_prepare + # respect PYTHON_SINGLE_TARGET + grep 'p.start("python3", args);' src/qlphelper/bilivideo.cpp >/dev/null || die + sed -i "s/python3/${EPYTHON}/" src/qlphelper/bilivideo.cpp || die + grep 'dmcPyProcess->start("python3", dmcPy);' \ + src/qlphelper/danmakulauncher.cpp >/dev/null || die + sed -i "s/python3/${EPYTHON}/" src/qlphelper/danmakulauncher.cpp || die + grep 'proc->start("python3", args);' \ + src/qlphelper/streamfinder.cpp >/dev/null || die + sed -i "s/python3/${EPYTHON}/" src/qlphelper/streamfinder.cpp || die +} + +src_install() { + cmake_src_install + readme.gentoo_create_doc +} + +pkg_postinst() { + xdg_pkg_postinst + readme.gentoo_print_elog + optfeature "twitch support" "net-misc/streamlink" + optfeature "youtube support" "dev-python/protobuf-python net-misc/streamlink" +}
next reply other threads:[~2021-07-09 2:14 UTC|newest] Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-07-09 2:13 Jian Lin [this message] 2021-07-09 2:20 ` [gentoo-commits] repo/proj/guru:master commit in: media-video/qliveplayer/ Jian Lin -- strict thread matches above, loose matches on Subject: below -- 2021-10-10 2:57 [gentoo-commits] repo/proj/guru:dev " Jian Lin 2021-10-10 2:57 Jian Lin 2021-09-10 16:40 [gentoo-commits] repo/proj/guru:master " Jian Lin 2021-09-10 16:25 ` [gentoo-commits] repo/proj/guru:dev " Jian Lin 2021-09-10 16:25 Jian Lin 2021-08-16 19:04 [gentoo-commits] repo/proj/guru:master " Jian Lin 2021-08-16 17:57 ` [gentoo-commits] repo/proj/guru:dev " Jian Lin 2021-07-09 2:13 Jian Lin 2021-06-26 11:05 [gentoo-commits] repo/proj/guru:master " Jian Lin 2021-06-26 11:02 ` [gentoo-commits] repo/proj/guru:dev " Jian Lin 2021-06-26 11:05 [gentoo-commits] repo/proj/guru:master " Jian Lin 2021-06-26 11:02 ` [gentoo-commits] repo/proj/guru:dev " Jian Lin 2021-05-25 8:24 Jian Lin 2021-05-25 8:24 Jian Lin 2021-03-01 17:58 Jian Lin 2021-03-01 17:58 Jian Lin 2021-03-01 17:58 Jian Lin 2021-02-16 17:54 Jian Lin 2021-02-16 17:54 Jian Lin 2021-02-16 17:54 Jian Lin 2021-02-14 16:57 Ronny Gutbrod 2021-02-14 16:50 Ronny Gutbrod 2021-02-14 15:57 Ronny Gutbrod 2021-02-14 15:57 Ronny Gutbrod 2021-02-01 9:26 Jian Lin 2021-02-01 9:26 Jian Lin 2021-02-01 9:26 Jian Lin 2021-02-01 9:26 Jian Lin 2021-01-02 19:00 Jian Lin 2021-01-02 17:03 Jian Lin 2021-01-01 18:58 Jian Lin 2021-01-01 18:58 Jian Lin 2020-12-26 20:05 Jian Lin 2020-12-26 20:05 Jian Lin 2020-12-06 14:04 Jian Lin 2020-12-05 2:04 Jian Lin 2020-12-02 10:33 Jian Lin 2020-11-29 0:45 Jian Lin
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=1625796785.1c43f37800eaeb70ac747532c2f2d7ddca02dee3.jian@gentoo \ --to=jlin.gentoo@outlook.com \ --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: linkBe 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