public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-17 19:47 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-17 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     1a5488b13d96ebe5defbfcc0c518702c542d05dd
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Apr 17 19:42:56 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Apr 17 19:46:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1a5488b1

media-video/kikoplay: add live build

User could get latest software now
To install this package, lua 5.3 shoud unmasked
See also:
https://bugs.gentoo.org/671248
https://bugs.gentoo.org/657722

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 77 +++++++++++++++++++++++++++++++
 1 file changed, 77 insertions(+)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
new file mode 100644
index 0000000..0823479
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+GIT_PN="KikoPlay"
+
+inherit qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+	dev-lang/lua:5.3
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,-luajit]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	media-gfx/imagemagick
+	virtual/pkgconfig
+"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.6.0-desktop.patch # Add a desktop file
+	"${FILESDIR}"/${PN}-0.6.0-home.patch # Add a desktop file
+)
+
+src_prepare() {
+	default
+	# Fix lua link problem, link to lua5.3 to fix bug
+	sed -i "s/-llua/-llua5.3/" KikoPlay.pro || die "Could not fix lua link"
+	echo "target.path += /usr/bin" >> KikoPlay.pro || die "Could not fix install path"
+	echo "INSTALLS += target icons desktop" >> KikoPlay.pro || die "Could not fix install target"
+	echo "unix:icons.path = /usr/share/pixmaps" >> KikoPlay.pro || die "Could not fix install icon PATH"
+	echo "unix:desktop.path = /usr/share/applications" >> KikoPlay.pro || die "Could not fix install desktop PATH"
+	echo "unix:icons.files = kikoplay.png kikoplay.xpm" >> KikoPlay.pro || die "Could not fix install desktop PATH"
+	echo "unix:desktop.files = kikoplay.desktop" >> KikoPlay.pro || die "Could not fix install desktop PATH"
+	echo "DEFINES += CONFIG_HOME_DATA" >> KikoPlay.pro || die "Could not set defines"
+	convert kikoplay.ico kikoplay.png || die "Could not create PNG icon"
+	convert kikoplay.ico kikoplay.xpm || die "Could not create XPM icon"
+}
+
+src_configure() {
+	eqmake5 PREFIX="${D}"/usr
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-17 20:15 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-17 20:15 UTC (permalink / raw
  To: gentoo-commits

commit:     e5adee3b72f18178a3f361293ff775af4209888b
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Apr 17 20:12:59 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Apr 17 20:12:59 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e5adee3b

media-video/kikoplay: fix patch annotation

Fix patch annotation for 9999 ebuild

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 0823479..d91a296 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -49,7 +49,7 @@ BDEPEND="
 
 PATCHES=(
 	"${FILESDIR}"/${PN}-0.6.0-desktop.patch # Add a desktop file
-	"${FILESDIR}"/${PN}-0.6.0-home.patch # Add a desktop file
+	"${FILESDIR}"/${PN}-0.6.0-home.patch # Fix config file path
 )
 
 src_prepare() {


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-17 20:15 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-17 20:15 UTC (permalink / raw
  To: gentoo-commits

commit:     6f39c74722928b1d73bffb99793fdf87e3f92713
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Apr 17 20:14:28 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Apr 17 20:14:28 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6f39c747

media-video/kikoplay: fix patch annotation of 0.6.0

Fix patch annotation of 0.6.0 ebuild

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kikoplay/kikoplay-0.6.0.ebuild b/media-video/kikoplay/kikoplay-0.6.0.ebuild
index 17438e0..7fb835f 100644
--- a/media-video/kikoplay/kikoplay-0.6.0.ebuild
+++ b/media-video/kikoplay/kikoplay-0.6.0.ebuild
@@ -50,7 +50,7 @@ BDEPEND="
 PATCHES=(
 	"${FILESDIR}"/${PN}-0.6.0-install.patch # Fix install problem
 	"${FILESDIR}"/${PN}-0.6.0-desktop.patch # Add a desktop file
-	"${FILESDIR}"/${PN}-0.6.0-home.patch # Add a desktop file
+	"${FILESDIR}"/${PN}-0.6.0-home.patch # Fix config file path
 )
 
 src_prepare() {


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-19 19:26 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-19 19:26 UTC (permalink / raw
  To: gentoo-commits

commit:     ac4adf59770aa8e722e98ed55344624e87322b64
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Sun Apr 19 19:21:19 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Sun Apr 19 19:21:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ac4adf59

media-video/kikoplay: update live build to fit upstream

The patches have been merged to upstream.
Related about this package:
https://github.com/gentoo/guru/issues/7
https://bugs.gentoo.org/671248
https://bugs.gentoo.org/657722

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 21 ---------------------
 1 file changed, 21 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index d91a296..50ad86c 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -43,30 +43,9 @@ DEPEND="
 "
 
 BDEPEND="
-	media-gfx/imagemagick
 	virtual/pkgconfig
 "
 
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.6.0-desktop.patch # Add a desktop file
-	"${FILESDIR}"/${PN}-0.6.0-home.patch # Fix config file path
-)
-
-src_prepare() {
-	default
-	# Fix lua link problem, link to lua5.3 to fix bug
-	sed -i "s/-llua/-llua5.3/" KikoPlay.pro || die "Could not fix lua link"
-	echo "target.path += /usr/bin" >> KikoPlay.pro || die "Could not fix install path"
-	echo "INSTALLS += target icons desktop" >> KikoPlay.pro || die "Could not fix install target"
-	echo "unix:icons.path = /usr/share/pixmaps" >> KikoPlay.pro || die "Could not fix install icon PATH"
-	echo "unix:desktop.path = /usr/share/applications" >> KikoPlay.pro || die "Could not fix install desktop PATH"
-	echo "unix:icons.files = kikoplay.png kikoplay.xpm" >> KikoPlay.pro || die "Could not fix install desktop PATH"
-	echo "unix:desktop.files = kikoplay.desktop" >> KikoPlay.pro || die "Could not fix install desktop PATH"
-	echo "DEFINES += CONFIG_HOME_DATA" >> KikoPlay.pro || die "Could not set defines"
-	convert kikoplay.ico kikoplay.png || die "Could not create PNG icon"
-	convert kikoplay.ico kikoplay.xpm || die "Could not create XPM icon"
-}
-
 src_configure() {
 	eqmake5 PREFIX="${D}"/usr
 }


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-19 19:26 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-19 19:26 UTC (permalink / raw
  To: gentoo-commits

commit:     dc0a9e7b5ecbcf69149eb07830fd6778d21fd5ea
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Sun Apr 19 19:23:57 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Sun Apr 19 19:23:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dc0a9e7b

media-video/kikoplay: bump to 0.6.1

The patches this package used have been merged to upstream.
https://github.com/Protostars/KikoPlay/pull/18
Related about this package:
https://github.com/gentoo/guru/issues/7
https://bugs.gentoo.org/671248
https://bugs.gentoo.org/65772

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 +
 media-video/kikoplay/kikoplay-0.6.1.ebuild | 56 ++++++++++++++++++++++++++++++
 2 files changed, 57 insertions(+)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index b7a4138..e2b9453 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1 +1,2 @@
 DIST kikoplay-0.6.0.tar.gz 7497254 BLAKE2B a23106151782477194d15712e9458171a0bc1dd53f8b6c8dbed12663be1c2c76204674c23eba61f2b8828be7acbd10449f51c766ab57be86cf21844591430b18 SHA512 9d8801f7c9b091f097d1edf9496a389718e81399a8d380d7763c1d12eafd1d4ce444e4df22a0e4a6c8eebbc7f1176e58a3cbac6bea60e87ccd44a5890927bf21
+DIST kikoplay-0.6.1.tar.gz 7528741 BLAKE2B 92ec99bc64661688509fe1ec951e90a28cbdd9c06999ba8574d23ffec4628e7ad4e2ac60c955009beb2ea9023e9d18faa35ae9f0b9f63d5a098aa4ad15315bd5 SHA512 4e304c5f1b0592ce5eb4b22745e73f4a9446843002cb8f050433be33137c660ef41b71c7a80055bff86f21381bad5b1be2088b621feb6e86e6575ecf6acc16ed

diff --git a/media-video/kikoplay/kikoplay-0.6.1.ebuild b/media-video/kikoplay/kikoplay-0.6.1.ebuild
new file mode 100644
index 0000000..50ad86c
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-0.6.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+GIT_PN="KikoPlay"
+
+inherit qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ ${PV} == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+	dev-lang/lua:5.3
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,-luajit]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	eqmake5 PREFIX="${D}"/usr
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-25  7:58 Alessandro Barbieri
  0 siblings, 0 replies; 41+ messages in thread
From: Alessandro Barbieri @ 2020-04-25  7:58 UTC (permalink / raw
  To: gentoo-commits

commit:     3f02df8d445c5e5a9a6c24f6782ff4aadec12475
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sat Apr 25 07:45:45 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sat Apr 25 07:45:45 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3f02df8d

media-video/kikoplay: drop keywords, remove problematic dep

this package will be masked

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.6.1.ebuild | 5 +++--
 media-video/kikoplay/kikoplay-9999.ebuild  | 3 ++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.6.1.ebuild b/media-video/kikoplay/kikoplay-0.6.1.ebuild
index 50ad86c..6172f0c 100644
--- a/media-video/kikoplay/kikoplay-0.6.1.ebuild
+++ b/media-video/kikoplay/kikoplay-0.6.1.ebuild
@@ -18,15 +18,16 @@ if [[ ${PV} == "9999" ]] ; then
 	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
 else
 	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+	KEYWORDS="~amd64 ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
 	S="${WORKDIR}/${GIT_PN}-${PV}"
 fi
 
 LICENSE="GPL-3"
 SLOT="0"
 
+#not available
+#	dev-lang/lua:5.3
 RDEPEND="
-	dev-lang/lua:5.3
 	dev-libs/qhttpengine:5
 	dev-qt/qtconcurrent:5
 	dev-qt/qtcore:5

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 50ad86c..f71a0c1 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -25,8 +25,9 @@ fi
 LICENSE="GPL-3"
 SLOT="0"
 
+#not available
+#	dev-lang/lua:5.3
 RDEPEND="
-	dev-lang/lua:5.3
 	dev-libs/qhttpengine:5
 	dev-qt/qtconcurrent:5
 	dev-qt/qtcore:5


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-26 22:39 Alessandro Barbieri
  0 siblings, 0 replies; 41+ messages in thread
From: Alessandro Barbieri @ 2020-04-26 22:39 UTC (permalink / raw
  To: gentoo-commits

commit:     998bbc8447afab6336706b514b16df9fbe716afe
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Apr 26 22:37:31 2020 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Apr 26 22:39:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=998bbc84

media-video/kikoplay: longdescription lang="en"

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 media-video/kikoplay/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kikoplay/metadata.xml b/media-video/kikoplay/metadata.xml
index 514daa8..580bef3 100644
--- a/media-video/kikoplay/metadata.xml
+++ b/media-video/kikoplay/metadata.xml
@@ -8,7 +8,7 @@
 	<upstream>
 		<remote-id type="github">Protostars/KikoPlay</remote-id>
 	</upstream>
-	<longdescription>
+	<longdescription lang="en">
 	KikoPlay - A Full-Featured Danmu Player.
 	OpenGL rendering, smooth barrage experience. The libmpv playback kernel
 	supports multiple media file formats, retaining flexible parameter settings


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
  2020-04-27  7:02 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2020-04-27  6:54 ` Andrew Ammerlaan
  0 siblings, 0 replies; 41+ messages in thread
From: Andrew Ammerlaan @ 2020-04-27  6:54 UTC (permalink / raw
  To: gentoo-commits

commit:     6101f3437b07c30fff74b2afb288ddd52bb2c196
Author:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Mon Apr 27 06:53:55 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Mon Apr 27 06:53:55 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6101f343

media-video/kikoplay: dep net-misc/aria2 does not have keyword

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>

 media-video/kikoplay/kikoplay-0.6.1.ebuild | 2 +-
 media-video/kikoplay/kikoplay-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.6.1.ebuild b/media-video/kikoplay/kikoplay-0.6.1.ebuild
index 6172f0c..12ed8d4 100644
--- a/media-video/kikoplay/kikoplay-0.6.1.ebuild
+++ b/media-video/kikoplay/kikoplay-0.6.1.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]] ; then
 	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
 else
 	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
 	S="${WORKDIR}/${GIT_PN}-${PV}"
 fi
 

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index f71a0c1..68d32c6 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "9999" ]] ; then
 	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
 else
 	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
 	S="${WORKDIR}/${GIT_PN}-${PV}"
 fi
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-27  7:46 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-27  7:46 UTC (permalink / raw
  To: gentoo-commits

commit:     be15bef7b8c30cce0099c2ee01a1f61e0df6addd
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr 27 07:21:12 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr 27 07:45:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=be15bef7

media-video/kikoplay: fix broken package

https://github.com/gentoo/guru/issues/9
https://github.com/gentoo/guru/commit/3f02df8d445c5e5a9a6c24f6782ff4aadec12475

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 68d32c6..f720f98 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -18,16 +18,19 @@ if [[ ${PV} == "9999" ]] ; then
 	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
 else
 	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~arm64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
 	S="${WORKDIR}/${GIT_PN}-${PV}"
 fi
 
 LICENSE="GPL-3"
 SLOT="0"
 
-#not available
-#	dev-lang/lua:5.3
+# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
+# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
+# With out dev-lang/lua:5.3, this package can't work
+# See also: https://github.com/gentoo/guru/issues/9
 RDEPEND="
+	dev-lang/lua:5.3
 	dev-libs/qhttpengine:5
 	dev-qt/qtconcurrent:5
 	dev-qt/qtcore:5


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-27  7:46 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-27  7:46 UTC (permalink / raw
  To: gentoo-commits

commit:     67687f28350e23d05961e0acb9367be73c7132fa
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr 27 07:19:55 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr 27 07:42:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=67687f28

media-video/kikoplay: fix broken package

https://github.com/gentoo/guru/issues/9
https://github.com/gentoo/guru/commit/3f02df8d445c5e5a9a6c24f6782ff4aadec12475

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.6.1.ebuild | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.6.1.ebuild b/media-video/kikoplay/kikoplay-0.6.1.ebuild
index 12ed8d4..cb5eda8 100644
--- a/media-video/kikoplay/kikoplay-0.6.1.ebuild
+++ b/media-video/kikoplay/kikoplay-0.6.1.ebuild
@@ -25,9 +25,12 @@ fi
 LICENSE="GPL-3"
 SLOT="0"
 
-#not available
-#	dev-lang/lua:5.3
+# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
+# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
+# With out dev-lang/lua:5.3, this package can't work
+# See also: https://github.com/gentoo/guru/issues/9
 RDEPEND="
+	dev-lang/lua:5.3
 	dev-libs/qhttpengine:5
 	dev-qt/qtconcurrent:5
 	dev-qt/qtcore:5
@@ -55,3 +58,4 @@ src_install() {
 	# Can't use default, set INSTALL_ROOT
 	emake INSTALL_ROOT="${D}" install
 }
+


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-27  7:46 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-27  7:46 UTC (permalink / raw
  To: gentoo-commits

commit:     45e2cad77e43c74dbe58daa5720f2e381c189878
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr 27 07:27:20 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr 27 07:45:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=45e2cad7

media-video/kikoplay: improve ebuilds

Make it fit the standards of gentoo GLEPs.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.6.1.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.6.1.ebuild b/media-video/kikoplay/kikoplay-0.6.1.ebuild
index cb5eda8..05c327c 100644
--- a/media-video/kikoplay/kikoplay-0.6.1.ebuild
+++ b/media-video/kikoplay/kikoplay-0.6.1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI="7"
 
 GIT_PN="KikoPlay"
 
@@ -13,7 +13,7 @@ HOMEPAGE="
 	https://github.com/Protostars/KikoPlay
 "
 
-if [[ ${PV} == "9999" ]] ; then
+if [[ "${PV}" == "9999" ]] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
 else
@@ -58,4 +58,3 @@ src_install() {
 	# Can't use default, set INSTALL_ROOT
 	emake INSTALL_ROOT="${D}" install
 }
-


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-04-27  7:46 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-04-27  7:46 UTC (permalink / raw
  To: gentoo-commits

commit:     5d4e6f975f08f7aded9f68c31bbada734bf98d6c
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr 27 07:30:33 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr 27 07:45:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5d4e6f97

media-video/kikoplay: improve ebuilds

Make it fit the standards of gentoo GLEPs.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index f720f98..05c327c 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI="7"
 
 GIT_PN="KikoPlay"
 
@@ -13,7 +13,7 @@ HOMEPAGE="
 	https://github.com/Protostars/KikoPlay
 "
 
-if [[ ${PV} == "9999" ]] ; then
+if [[ "${PV}" == "9999" ]] ; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
 else


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-05-12  4:24 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-05-12  4:24 UTC (permalink / raw
  To: gentoo-commits

commit:     6f2b5f48f1844c6ae422c597e25ae378df06ac1d
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Tue May 12 04:24:03 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Tue May 12 04:24:03 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6f2b5f48

media-video/kikoplay: drop 0.6.1

Drop old package

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 -
 media-video/kikoplay/kikoplay-0.6.1.ebuild | 60 ------------------------------
 2 files changed, 61 deletions(-)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index b146193..9870b22 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1,2 +1 @@
-DIST kikoplay-0.6.1.tar.gz 7528741 BLAKE2B 92ec99bc64661688509fe1ec951e90a28cbdd9c06999ba8574d23ffec4628e7ad4e2ac60c955009beb2ea9023e9d18faa35ae9f0b9f63d5a098aa4ad15315bd5 SHA512 4e304c5f1b0592ce5eb4b22745e73f4a9446843002cb8f050433be33137c660ef41b71c7a80055bff86f21381bad5b1be2088b621feb6e86e6575ecf6acc16ed
 DIST kikoplay-0.6.2.tar.gz 7520940 BLAKE2B 4015463b137a7605107a87db86d56658ef5e563374f67cc42f401d71ef2b72be10c9b817b90cb294674c9ee4a285fd908521be7b01fa37df879214c3c37c54a2 SHA512 c436da509b89d3ecb0e86cb195cb058fbe594e643959f24a91792b69ce2649ef5186116bc4b3e01b14bcb7286d30303276d48d4f0b2db45d6fbf385e370b8db5

diff --git a/media-video/kikoplay/kikoplay-0.6.1.ebuild b/media-video/kikoplay/kikoplay-0.6.1.ebuild
deleted file mode 100644
index 05c327c..0000000
--- a/media-video/kikoplay/kikoplay-0.6.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-GIT_PN="KikoPlay"
-
-inherit qmake-utils xdg
-
-DESCRIPTION="KikoPlay is a full-featured danmu player"
-HOMEPAGE="
-	https://kikoplay.fun
-	https://github.com/Protostars/KikoPlay
-"
-
-if [[ "${PV}" == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
-else
-	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
-	S="${WORKDIR}/${GIT_PN}-${PV}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
-# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
-# With out dev-lang/lua:5.3, this package can't work
-# See also: https://github.com/gentoo/guru/issues/9
-RDEPEND="
-	dev-lang/lua:5.3
-	dev-libs/qhttpengine:5
-	dev-qt/qtconcurrent:5
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtsql:5
-	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,-luajit]
-	net-misc/aria2
-"
-
-DEPEND="
-	${RDEPEND}
-"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-
-src_configure() {
-	eqmake5 PREFIX="${D}"/usr
-}
-
-src_install() {
-	# Can't use default, set INSTALL_ROOT
-	emake INSTALL_ROOT="${D}" install
-}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-05-12  4:24 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-05-12  4:24 UTC (permalink / raw
  To: gentoo-commits

commit:     3eae09bfc39353cd7eeb501f7515cd6d65437730
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Tue May 12 04:23:17 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Tue May 12 04:23:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3eae09bf

media-video/kikoplay: bump version to 0.6.2

Add video preview function

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 +
 media-video/kikoplay/kikoplay-0.6.2.ebuild | 60 ++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index c9500fe..b146193 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1 +1,2 @@
 DIST kikoplay-0.6.1.tar.gz 7528741 BLAKE2B 92ec99bc64661688509fe1ec951e90a28cbdd9c06999ba8574d23ffec4628e7ad4e2ac60c955009beb2ea9023e9d18faa35ae9f0b9f63d5a098aa4ad15315bd5 SHA512 4e304c5f1b0592ce5eb4b22745e73f4a9446843002cb8f050433be33137c660ef41b71c7a80055bff86f21381bad5b1be2088b621feb6e86e6575ecf6acc16ed
+DIST kikoplay-0.6.2.tar.gz 7520940 BLAKE2B 4015463b137a7605107a87db86d56658ef5e563374f67cc42f401d71ef2b72be10c9b817b90cb294674c9ee4a285fd908521be7b01fa37df879214c3c37c54a2 SHA512 c436da509b89d3ecb0e86cb195cb058fbe594e643959f24a91792b69ce2649ef5186116bc4b3e01b14bcb7286d30303276d48d4f0b2db45d6fbf385e370b8db5

diff --git a/media-video/kikoplay/kikoplay-0.6.2.ebuild b/media-video/kikoplay/kikoplay-0.6.2.ebuild
new file mode 100644
index 0000000..05c327c
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-0.6.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+GIT_PN="KikoPlay"
+
+inherit qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
+# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
+# With out dev-lang/lua:5.3, this package can't work
+# See also: https://github.com/gentoo/guru/issues/9
+RDEPEND="
+	dev-lang/lua:5.3
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,-luajit]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	eqmake5 PREFIX="${D}"/usr
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-05-13 17:16 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-05-13 17:16 UTC (permalink / raw
  To: gentoo-commits

commit:     b15413e701e62c84bb2844925ac62a956beace5c
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Wed May 13 17:15:58 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Wed May 13 17:15:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b15413e7

media-video/kikoplay: fix data not found bug

enable CONFIG_UNIX_DATA default for linux environment

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 05c327c..edbaf88 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -50,6 +50,10 @@ BDEPEND="
 	virtual/pkgconfig
 "
 
+PATCHES=(
+	"${FILESDIR}"/${PN}-0.6.2-fix-define.patch # fix define problem
+)
+
 src_configure() {
 	eqmake5 PREFIX="${D}"/usr
 }


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-06-01  7:40 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-06-01  7:40 UTC (permalink / raw
  To: gentoo-commits

commit:     f9bb9ff7400c314a1ca3d4b5846fa9bab5d5feee
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Jun  1 07:39:52 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Jun  1 07:39:52 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f9bb9ff7

media-video/kikoplay: patch have been merged to upstream

Fix live build

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index edbaf88..05c327c 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -50,10 +50,6 @@ BDEPEND="
 	virtual/pkgconfig
 "
 
-PATCHES=(
-	"${FILESDIR}"/${PN}-0.6.2-fix-define.patch # fix define problem
-)
-
 src_configure() {
 	eqmake5 PREFIX="${D}"/usr
 }


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-06-01  7:40 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-06-01  7:40 UTC (permalink / raw
  To: gentoo-commits

commit:     3e21bba505baa8a94aec6aa4ec96d5f237633d34
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Jun  1 07:38:24 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Jun  1 07:38:24 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3e21bba5

media-video/kikoplay: bump to new version 0.7.0

Patch have been merged to upstream

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 +
 media-video/kikoplay/kikoplay-0.7.0.ebuild | 60 ++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index 9870b22..7a36694 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1 +1,2 @@
 DIST kikoplay-0.6.2.tar.gz 7520940 BLAKE2B 4015463b137a7605107a87db86d56658ef5e563374f67cc42f401d71ef2b72be10c9b817b90cb294674c9ee4a285fd908521be7b01fa37df879214c3c37c54a2 SHA512 c436da509b89d3ecb0e86cb195cb058fbe594e643959f24a91792b69ce2649ef5186116bc4b3e01b14bcb7286d30303276d48d4f0b2db45d6fbf385e370b8db5
+DIST kikoplay-0.7.0.tar.gz 6267802 BLAKE2B 9615d4c11958aea182ee1bc737d1cdb140b3f5f1b8f6bb835184092dce9c0181a16608b74acf49d33055ea9f86a77458520e91642fd561cc916abc448ff77ed6 SHA512 03c51be6ec9aa77a26bf4d15b05aa4658c8ff0f840e78965e9836c0bf818f78784e413e5545fdeb105243b3c72b7844f365e8a33d9d50cb7c1675980213b645e

diff --git a/media-video/kikoplay/kikoplay-0.7.0.ebuild b/media-video/kikoplay/kikoplay-0.7.0.ebuild
new file mode 100644
index 0000000..05c327c
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-0.7.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+GIT_PN="KikoPlay"
+
+inherit qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
+# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
+# With out dev-lang/lua:5.3, this package can't work
+# See also: https://github.com/gentoo/guru/issues/9
+RDEPEND="
+	dev-lang/lua:5.3
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,-luajit]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	eqmake5 PREFIX="${D}"/usr
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-06-01  9:22 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-06-01  9:22 UTC (permalink / raw
  To: gentoo-commits

commit:     f3a20f87eab5cf9969a39f1639bba54d8afd9fbe
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Jun  1 09:22:07 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Jun  1 09:22:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f3a20f87

media-video/kikoplay: 0.7.0 fix checksum error

Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index 7a36694..ed72f52 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1,2 +1,2 @@
 DIST kikoplay-0.6.2.tar.gz 7520940 BLAKE2B 4015463b137a7605107a87db86d56658ef5e563374f67cc42f401d71ef2b72be10c9b817b90cb294674c9ee4a285fd908521be7b01fa37df879214c3c37c54a2 SHA512 c436da509b89d3ecb0e86cb195cb058fbe594e643959f24a91792b69ce2649ef5186116bc4b3e01b14bcb7286d30303276d48d4f0b2db45d6fbf385e370b8db5
-DIST kikoplay-0.7.0.tar.gz 6267802 BLAKE2B 9615d4c11958aea182ee1bc737d1cdb140b3f5f1b8f6bb835184092dce9c0181a16608b74acf49d33055ea9f86a77458520e91642fd561cc916abc448ff77ed6 SHA512 03c51be6ec9aa77a26bf4d15b05aa4658c8ff0f840e78965e9836c0bf818f78784e413e5545fdeb105243b3c72b7844f365e8a33d9d50cb7c1675980213b645e
+DIST kikoplay-0.7.0.tar.gz 7721267 BLAKE2B 33e1afa2485b8fe35bc88b1557f825823a501d82927c5e65f9bda87e45b9bc7c257c5cce3f0e6462bf0cb216f4b9559575afdcc136c3230d0a6f2505be367f0d SHA512 38478ce735eba6363061ec235054e2021b89a5f4277b28fa4e03271cfd003e85b3e77285aafb06db8df4e62f01e1fc39f721c66af014f54c8d4e6b18c4ba91f1


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-07-08  2:47 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-07-08  2:47 UTC (permalink / raw
  To: gentoo-commits

commit:     f73d2505fcb71529a53e7328da3a67cf00c60016
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Wed Jul  8 02:47:18 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Wed Jul  8 02:47:18 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f73d2505

media-video/kikoplay: bump to 0.7.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 +
 media-video/kikoplay/kikoplay-0.7.1.ebuild | 60 ++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index ed72f52..4c037e8 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1,2 +1,3 @@
 DIST kikoplay-0.6.2.tar.gz 7520940 BLAKE2B 4015463b137a7605107a87db86d56658ef5e563374f67cc42f401d71ef2b72be10c9b817b90cb294674c9ee4a285fd908521be7b01fa37df879214c3c37c54a2 SHA512 c436da509b89d3ecb0e86cb195cb058fbe594e643959f24a91792b69ce2649ef5186116bc4b3e01b14bcb7286d30303276d48d4f0b2db45d6fbf385e370b8db5
 DIST kikoplay-0.7.0.tar.gz 7721267 BLAKE2B 33e1afa2485b8fe35bc88b1557f825823a501d82927c5e65f9bda87e45b9bc7c257c5cce3f0e6462bf0cb216f4b9559575afdcc136c3230d0a6f2505be367f0d SHA512 38478ce735eba6363061ec235054e2021b89a5f4277b28fa4e03271cfd003e85b3e77285aafb06db8df4e62f01e1fc39f721c66af014f54c8d4e6b18c4ba91f1
+DIST kikoplay-0.7.1.tar.gz 8176092 BLAKE2B d0798272b1e58fa45738dc8ffc5c3c14c076d9bb15feed31aa4c4076b644f4c5c910665f55c69c3babb9c8a5aed781cc46da7b43c47e81333e3608204f9f249c SHA512 4817ac9a39470598ebe965235cb0afb247fe5435d4ab6292d6d1f0219c8039dcccef5a4f3bf1a53113958be0641418cb48a7d37b74b6b610ca073b1d94121199

diff --git a/media-video/kikoplay/kikoplay-0.7.1.ebuild b/media-video/kikoplay/kikoplay-0.7.1.ebuild
new file mode 100644
index 0000000..05c327c
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-0.7.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+GIT_PN="KikoPlay"
+
+inherit qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
+# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
+# With out dev-lang/lua:5.3, this package can't work
+# See also: https://github.com/gentoo/guru/issues/9
+RDEPEND="
+	dev-lang/lua:5.3
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,-luajit]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	eqmake5 PREFIX="${D}"/usr
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-10-20  7:25 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-10-20  7:25 UTC (permalink / raw
  To: gentoo-commits

commit:     ad19ca4ecd7cc46d520482908367df9be8e856bf
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Tue Oct 20 07:17:34 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Tue Oct 20 07:17:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ad19ca4e

media-video/kikoplay: bump to 0.7.2

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 +
 media-video/kikoplay/kikoplay-0.7.2.ebuild | 60 ++++++++++++++++++++++++++++++
 2 files changed, 61 insertions(+)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index b9a3fb9b..eeac2737 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1 +1,2 @@
 DIST kikoplay-0.7.1.tar.gz 8176092 BLAKE2B d0798272b1e58fa45738dc8ffc5c3c14c076d9bb15feed31aa4c4076b644f4c5c910665f55c69c3babb9c8a5aed781cc46da7b43c47e81333e3608204f9f249c SHA512 4817ac9a39470598ebe965235cb0afb247fe5435d4ab6292d6d1f0219c8039dcccef5a4f3bf1a53113958be0641418cb48a7d37b74b6b610ca073b1d94121199
+DIST kikoplay-0.7.2.tar.gz 9036604 BLAKE2B 1909e8b5505110c8548923594acb2861d7d7c3bf92137d670b748bd2c2960293cdab4ba86c3c48cb32a3d276c823630de12ea8ee3665e7c4ded968fdaa9b7a5a SHA512 d80819c97dd7f02670d2ae4338961c1eab40890b7d7876fef855ba7b0fa333158da7429cff04309baf22c5a24781356ecbac9822b939dcfc403df38ffa749e93

diff --git a/media-video/kikoplay/kikoplay-0.7.2.ebuild b/media-video/kikoplay/kikoplay-0.7.2.ebuild
new file mode 100644
index 00000000..05c327c6
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-0.7.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+GIT_PN="KikoPlay"
+
+inherit qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
+# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
+# With out dev-lang/lua:5.3, this package can't work
+# See also: https://github.com/gentoo/guru/issues/9
+RDEPEND="
+	dev-lang/lua:5.3
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,-luajit]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	eqmake5 PREFIX="${D}"/usr
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-10-20  7:25 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-10-20  7:25 UTC (permalink / raw
  To: gentoo-commits

commit:     16b1927fc9722a3019acf734b4eada76b967c2ee
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Tue Oct 20 07:24:43 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Tue Oct 20 07:24:43 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=16b1927f

media-video/kikoplay: drop 0.7.1

Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 -
 media-video/kikoplay/kikoplay-0.7.1.ebuild | 60 ------------------------------
 2 files changed, 61 deletions(-)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index eeac2737..81416f24 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1,2 +1 @@
-DIST kikoplay-0.7.1.tar.gz 8176092 BLAKE2B d0798272b1e58fa45738dc8ffc5c3c14c076d9bb15feed31aa4c4076b644f4c5c910665f55c69c3babb9c8a5aed781cc46da7b43c47e81333e3608204f9f249c SHA512 4817ac9a39470598ebe965235cb0afb247fe5435d4ab6292d6d1f0219c8039dcccef5a4f3bf1a53113958be0641418cb48a7d37b74b6b610ca073b1d94121199
 DIST kikoplay-0.7.2.tar.gz 9036604 BLAKE2B 1909e8b5505110c8548923594acb2861d7d7c3bf92137d670b748bd2c2960293cdab4ba86c3c48cb32a3d276c823630de12ea8ee3665e7c4ded968fdaa9b7a5a SHA512 d80819c97dd7f02670d2ae4338961c1eab40890b7d7876fef855ba7b0fa333158da7429cff04309baf22c5a24781356ecbac9822b939dcfc403df38ffa749e93

diff --git a/media-video/kikoplay/kikoplay-0.7.1.ebuild b/media-video/kikoplay/kikoplay-0.7.1.ebuild
deleted file mode 100644
index 05c327c6..00000000
--- a/media-video/kikoplay/kikoplay-0.7.1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-GIT_PN="KikoPlay"
-
-inherit qmake-utils xdg
-
-DESCRIPTION="KikoPlay is a full-featured danmu player"
-HOMEPAGE="
-	https://kikoplay.fun
-	https://github.com/Protostars/KikoPlay
-"
-
-if [[ "${PV}" == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
-else
-	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
-	S="${WORKDIR}/${GIT_PN}-${PV}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
-# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
-# With out dev-lang/lua:5.3, this package can't work
-# See also: https://github.com/gentoo/guru/issues/9
-RDEPEND="
-	dev-lang/lua:5.3
-	dev-libs/qhttpengine:5
-	dev-qt/qtconcurrent:5
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtsql:5
-	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,-luajit]
-	net-misc/aria2
-"
-
-DEPEND="
-	${RDEPEND}
-"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-
-src_configure() {
-	eqmake5 PREFIX="${D}"/usr
-}
-
-src_install() {
-	# Can't use default, set INSTALL_ROOT
-	emake INSTALL_ROOT="${D}" install
-}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-12-04 19:37 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-12-04 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     5d108a86469e5c070549d9bf779fd6f69ad05675
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Dec  4 19:37:47 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Dec  4 19:37:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5d108a86

media-video/kikoplay: use slotted lua

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 05c327c6..17eccd19 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -5,7 +5,9 @@ EAPI="7"
 
 GIT_PN="KikoPlay"
 
-inherit qmake-utils xdg
+LUA_COMPAT=( lua5-3 )
+
+inherit lua-single qmake-utils xdg
 
 DESCRIPTION="KikoPlay is a full-featured danmu player"
 HOMEPAGE="
@@ -30,7 +32,7 @@ SLOT="0"
 # With out dev-lang/lua:5.3, this package can't work
 # See also: https://github.com/gentoo/guru/issues/9
 RDEPEND="
-	dev-lang/lua:5.3
+	${LUA_DEPS}
 	dev-libs/qhttpengine:5
 	dev-qt/qtconcurrent:5
 	dev-qt/qtcore:5


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-12-04 19:37 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-12-04 19:37 UTC (permalink / raw
  To: gentoo-commits

commit:     6b9072152b33dcb86f5244f79bbca71c7e6da604
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Fri Dec  4 19:36:56 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Fri Dec  4 19:36:56 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6b907215

media-video/kikoplay: use slotted lua

Issue: https://github.com/gentoo/guru/issues/9
Waitting for slotted lua unmasked.

Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.7.2.ebuild | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.7.2.ebuild b/media-video/kikoplay/kikoplay-0.7.2.ebuild
index 05c327c6..17eccd19 100644
--- a/media-video/kikoplay/kikoplay-0.7.2.ebuild
+++ b/media-video/kikoplay/kikoplay-0.7.2.ebuild
@@ -5,7 +5,9 @@ EAPI="7"
 
 GIT_PN="KikoPlay"
 
-inherit qmake-utils xdg
+LUA_COMPAT=( lua5-3 )
+
+inherit lua-single qmake-utils xdg
 
 DESCRIPTION="KikoPlay is a full-featured danmu player"
 HOMEPAGE="
@@ -30,7 +32,7 @@ SLOT="0"
 # With out dev-lang/lua:5.3, this package can't work
 # See also: https://github.com/gentoo/guru/issues/9
 RDEPEND="
-	dev-lang/lua:5.3
+	${LUA_DEPS}
 	dev-libs/qhttpengine:5
 	dev-qt/qtconcurrent:5
 	dev-qt/qtcore:5


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-12-28  8:09 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-12-28  8:09 UTC (permalink / raw
  To: gentoo-commits

commit:     f12a1d2696d3e2781ecf48787e2d1fee67bc505e
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Dec 28 08:07:35 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Dec 28 08:07:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f12a1d26

media-video/kikoplay: lua5.3 unmasked in ::gentoo

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.7.2.ebuild | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.7.2.ebuild b/media-video/kikoplay/kikoplay-0.7.2.ebuild
index 17eccd19..85edeffb 100644
--- a/media-video/kikoplay/kikoplay-0.7.2.ebuild
+++ b/media-video/kikoplay/kikoplay-0.7.2.ebuild
@@ -27,10 +27,6 @@ fi
 LICENSE="GPL-3"
 SLOT="0"
 
-# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
-# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
-# With out dev-lang/lua:5.3, this package can't work
-# See also: https://github.com/gentoo/guru/issues/9
 RDEPEND="
 	${LUA_DEPS}
 	dev-libs/qhttpengine:5


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-12-28  8:09 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-12-28  8:09 UTC (permalink / raw
  To: gentoo-commits

commit:     e0efa345582e21403854c072e539901af60cec99
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Dec 28 08:08:40 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Dec 28 08:08:40 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e0efa345

media-video/kikoplay: lua5.3 unmasked in ::gentoo

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 17eccd19..85edeffb 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -27,10 +27,6 @@ fi
 LICENSE="GPL-3"
 SLOT="0"
 
-# Please unmask dev-lang/lua:5.3 in /etc/portage/package.unmask/lua
-# Waiting for dev-lang/lua:5.3 unmasked in ::gentoo
-# With out dev-lang/lua:5.3, this package can't work
-# See also: https://github.com/gentoo/guru/issues/9
 RDEPEND="
 	${LUA_DEPS}
 	dev-libs/qhttpengine:5


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-12-30 10:18 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-12-30 10:18 UTC (permalink / raw
  To: gentoo-commits

commit:     3daa705f34c5778e5af16b73066a5ae4085c6e5f
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Wed Dec 30 10:17:16 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Wed Dec 30 10:17:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3daa705f

media-video/kikoplay: fix mpv slot require

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 85edeffb..f33a25e2 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -36,7 +36,7 @@ RDEPEND="
 	dev-qt/qtnetwork:5
 	dev-qt/qtsql:5
 	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,-luajit]
+	media-video/mpv[libmpv,lua]
 	net-misc/aria2
 "
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2020-12-30 10:18 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2020-12-30 10:18 UTC (permalink / raw
  To: gentoo-commits

commit:     13286b28b516ed3aa4a51852c054cfb92f8b0e6d
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Wed Dec 30 10:18:01 2020 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Wed Dec 30 10:18:01 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=13286b28

media-video/kikoplay: fix mpv slot require

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kikoplay/kikoplay-0.7.2.ebuild b/media-video/kikoplay/kikoplay-0.7.2.ebuild
index 85edeffb..f33a25e2 100644
--- a/media-video/kikoplay/kikoplay-0.7.2.ebuild
+++ b/media-video/kikoplay/kikoplay-0.7.2.ebuild
@@ -36,7 +36,7 @@ RDEPEND="
 	dev-qt/qtnetwork:5
 	dev-qt/qtsql:5
 	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,-luajit]
+	media-video/mpv[libmpv,lua]
 	net-misc/aria2
 "
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2021-04-05  2:05 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2021-04-05  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     d37b7208eeba2040a7bafd65231b502faaeef4ae
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr  5 02:05:18 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr  5 02:05:18 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d37b7208

media-video/kikoplay: fix repoman warning

Fix EAPI 7: variable D: Forbidden reference to variable specified by PMS

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.7.2.ebuild | 2 +-
 media-video/kikoplay/kikoplay-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.7.2.ebuild b/media-video/kikoplay/kikoplay-0.7.2.ebuild
index 9a8d93632..9614eea9b 100644
--- a/media-video/kikoplay/kikoplay-0.7.2.ebuild
+++ b/media-video/kikoplay/kikoplay-0.7.2.ebuild
@@ -49,7 +49,7 @@ BDEPEND="
 "
 
 src_configure() {
-	eqmake5 PREFIX="${D}"/usr
+	eqmake5 PREFIX="${EPREFIX}/usr"
 }
 
 src_install() {

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 9a8d93632..9614eea9b 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -49,7 +49,7 @@ BDEPEND="
 "
 
 src_configure() {
-	eqmake5 PREFIX="${D}"/usr
+	eqmake5 PREFIX="${EPREFIX}/usr"
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2021-04-05  2:05 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2021-04-05  2:05 UTC (permalink / raw
  To: gentoo-commits

commit:     59257f306dcce305996625817da53c3611df719f
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr  5 01:56:32 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr  5 01:56:32 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=59257f30

media-video/kikoplay: Fix year to 2021

Change to 'Copyright 1999-2021 Gentoo Authors'

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.7.2.ebuild | 2 +-
 media-video/kikoplay/kikoplay-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.7.2.ebuild b/media-video/kikoplay/kikoplay-0.7.2.ebuild
index f33a25e20..9a8d93632 100644
--- a/media-video/kikoplay/kikoplay-0.7.2.ebuild
+++ b/media-video/kikoplay/kikoplay-0.7.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index f33a25e20..9a8d93632 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2021-04-05  2:41 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2021-04-05  2:41 UTC (permalink / raw
  To: gentoo-commits

commit:     7886beb01c37d0e5f9ac496fbadb68d82c78b037
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr  5 02:40:39 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr  5 02:40:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7886beb0

media-video/kikoplay: bump to 0.8.0

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 +
 media-video/kikoplay/kikoplay-0.8.0.ebuild | 58 ++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index 81416f245..34dd11a31 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1 +1,2 @@
 DIST kikoplay-0.7.2.tar.gz 9036604 BLAKE2B 1909e8b5505110c8548923594acb2861d7d7c3bf92137d670b748bd2c2960293cdab4ba86c3c48cb32a3d276c823630de12ea8ee3665e7c4ded968fdaa9b7a5a SHA512 d80819c97dd7f02670d2ae4338961c1eab40890b7d7876fef855ba7b0fa333158da7429cff04309baf22c5a24781356ecbac9822b939dcfc403df38ffa749e93
+DIST kikoplay-0.8.0.tar.gz 10427854 BLAKE2B b4063b160d7fad816101fd98213037b188ff8569738b6757e69ba2fcaa61bb7c43e43866300cb1edd0649ffa97b4c6e000e058d7bacbcf7772caa3b3a77780d3 SHA512 68cfad08240fa283acb7361434b941cec8ff0effa6f64f6acde34cf3b1c96b8159cdd3531a8468052279ff53553b203373a14b3b032c5b524b14dcfeec996a08

diff --git a/media-video/kikoplay/kikoplay-0.8.0.ebuild b/media-video/kikoplay/kikoplay-0.8.0.ebuild
new file mode 100644
index 000000000..9614eea9b
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-0.8.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+GIT_PN="KikoPlay"
+
+LUA_COMPAT=( lua5-3 )
+
+inherit lua-single qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+	${LUA_DEPS}
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,lua]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	eqmake5 PREFIX="${EPREFIX}/usr"
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2021-04-05  2:41 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2021-04-05  2:41 UTC (permalink / raw
  To: gentoo-commits

commit:     f5dae09489a099eb4df9c828c60fc2dcec61af7e
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Apr  5 02:41:37 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Apr  5 02:41:37 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f5dae094

media-video/kikoplay: drop 0.7.2

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 -
 media-video/kikoplay/kikoplay-0.7.2.ebuild | 58 ------------------------------
 2 files changed, 59 deletions(-)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index 34dd11a31..877623b68 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1,2 +1 @@
-DIST kikoplay-0.7.2.tar.gz 9036604 BLAKE2B 1909e8b5505110c8548923594acb2861d7d7c3bf92137d670b748bd2c2960293cdab4ba86c3c48cb32a3d276c823630de12ea8ee3665e7c4ded968fdaa9b7a5a SHA512 d80819c97dd7f02670d2ae4338961c1eab40890b7d7876fef855ba7b0fa333158da7429cff04309baf22c5a24781356ecbac9822b939dcfc403df38ffa749e93
 DIST kikoplay-0.8.0.tar.gz 10427854 BLAKE2B b4063b160d7fad816101fd98213037b188ff8569738b6757e69ba2fcaa61bb7c43e43866300cb1edd0649ffa97b4c6e000e058d7bacbcf7772caa3b3a77780d3 SHA512 68cfad08240fa283acb7361434b941cec8ff0effa6f64f6acde34cf3b1c96b8159cdd3531a8468052279ff53553b203373a14b3b032c5b524b14dcfeec996a08

diff --git a/media-video/kikoplay/kikoplay-0.7.2.ebuild b/media-video/kikoplay/kikoplay-0.7.2.ebuild
deleted file mode 100644
index 9614eea9b..000000000
--- a/media-video/kikoplay/kikoplay-0.7.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-GIT_PN="KikoPlay"
-
-LUA_COMPAT=( lua5-3 )
-
-inherit lua-single qmake-utils xdg
-
-DESCRIPTION="KikoPlay is a full-featured danmu player"
-HOMEPAGE="
-	https://kikoplay.fun
-	https://github.com/Protostars/KikoPlay
-"
-
-if [[ "${PV}" == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
-else
-	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
-	S="${WORKDIR}/${GIT_PN}-${PV}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND="
-	${LUA_DEPS}
-	dev-libs/qhttpengine:5
-	dev-qt/qtconcurrent:5
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtsql:5
-	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,lua]
-	net-misc/aria2
-"
-
-DEPEND="
-	${RDEPEND}
-"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-
-src_configure() {
-	eqmake5 PREFIX="${EPREFIX}/usr"
-}
-
-src_install() {
-	# Can't use default, set INSTALL_ROOT
-	emake INSTALL_ROOT="${D}" install
-}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2021-05-17 17:50 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2021-05-17 17:50 UTC (permalink / raw
  To: gentoo-commits

commit:     fdf6fff1b69982804d1e1e18f9c6d70467ee562c
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon May 17 16:44:17 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon May 17 17:49:56 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fdf6fff1

media-video/kikoplay: bump to 0.8.1

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 +
 media-video/kikoplay/kikoplay-0.8.1.ebuild | 58 ++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index 877623b68..23daea7ab 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1 +1,2 @@
 DIST kikoplay-0.8.0.tar.gz 10427854 BLAKE2B b4063b160d7fad816101fd98213037b188ff8569738b6757e69ba2fcaa61bb7c43e43866300cb1edd0649ffa97b4c6e000e058d7bacbcf7772caa3b3a77780d3 SHA512 68cfad08240fa283acb7361434b941cec8ff0effa6f64f6acde34cf3b1c96b8159cdd3531a8468052279ff53553b203373a14b3b032c5b524b14dcfeec996a08
+DIST kikoplay-0.8.1.tar.gz 10428596 BLAKE2B 637b093b7747cd7e66d90b9e5c854ca0e4bf81e09ef636e7e755e1896f9994d016049ea7c4486e48057a1ab2f9d5a848e4346aed62278c0e20ae108791031e95 SHA512 191e6b8db357b2443a4c7dd5a3ee3621f3f7a4bc6403caafbaa951baf13f0b20cf2a3e4f63cfb0f43ecb9884c39484ab29bdd4024f152c657a2208b443c1a81e

diff --git a/media-video/kikoplay/kikoplay-0.8.1.ebuild b/media-video/kikoplay/kikoplay-0.8.1.ebuild
new file mode 100644
index 000000000..9614eea9b
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-0.8.1.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+GIT_PN="KikoPlay"
+
+LUA_COMPAT=( lua5-3 )
+
+inherit lua-single qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+	${LUA_DEPS}
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,lua]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	eqmake5 PREFIX="${EPREFIX}/usr"
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2021-07-14  6:42 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2021-07-14  6:42 UTC (permalink / raw
  To: gentoo-commits

commit:     bc5674b4ffb0f30695248db6222e619000c0c081
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Wed Jul 14 06:41:59 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Wed Jul 14 06:41:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc5674b4

media-video/kikoplay: remove lua require for mpv

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kikoplay/kikoplay-0.8.1.ebuild b/media-video/kikoplay/kikoplay-0.8.1.ebuild
index 9614eea9b..74ac7f834 100644
--- a/media-video/kikoplay/kikoplay-0.8.1.ebuild
+++ b/media-video/kikoplay/kikoplay-0.8.1.ebuild
@@ -36,7 +36,7 @@ RDEPEND="
 	dev-qt/qtnetwork:5
 	dev-qt/qtsql:5
 	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,lua]
+	media-video/mpv[libmpv]
 	net-misc/aria2
 "
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2021-07-14  6:42 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2021-07-14  6:42 UTC (permalink / raw
  To: gentoo-commits

commit:     a1f8689dc3305c9462fd34fb67c5f067139fa4f4
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Wed Jul 14 06:42:38 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Wed Jul 14 06:42:38 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a1f8689d

media-video/kikoplay: remove lua require for mpv for 9999

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/kikoplay-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 9614eea9b..74ac7f834 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -36,7 +36,7 @@ RDEPEND="
 	dev-qt/qtnetwork:5
 	dev-qt/qtsql:5
 	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,lua]
+	media-video/mpv[libmpv]
 	net-misc/aria2
 "
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2021-07-14  6:42 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2021-07-14  6:42 UTC (permalink / raw
  To: gentoo-commits

commit:     bfda3d87549178447c21bf6a432392345853223e
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Wed Jul 14 06:40:13 2021 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Wed Jul 14 06:40:13 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bfda3d87

media-video/kikoplay: drop 0.8.0

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 -
 media-video/kikoplay/kikoplay-0.8.0.ebuild | 58 ------------------------------
 2 files changed, 59 deletions(-)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index 23daea7ab..3570bae2f 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1,2 +1 @@
-DIST kikoplay-0.8.0.tar.gz 10427854 BLAKE2B b4063b160d7fad816101fd98213037b188ff8569738b6757e69ba2fcaa61bb7c43e43866300cb1edd0649ffa97b4c6e000e058d7bacbcf7772caa3b3a77780d3 SHA512 68cfad08240fa283acb7361434b941cec8ff0effa6f64f6acde34cf3b1c96b8159cdd3531a8468052279ff53553b203373a14b3b032c5b524b14dcfeec996a08
 DIST kikoplay-0.8.1.tar.gz 10428596 BLAKE2B 637b093b7747cd7e66d90b9e5c854ca0e4bf81e09ef636e7e755e1896f9994d016049ea7c4486e48057a1ab2f9d5a848e4346aed62278c0e20ae108791031e95 SHA512 191e6b8db357b2443a4c7dd5a3ee3621f3f7a4bc6403caafbaa951baf13f0b20cf2a3e4f63cfb0f43ecb9884c39484ab29bdd4024f152c657a2208b443c1a81e

diff --git a/media-video/kikoplay/kikoplay-0.8.0.ebuild b/media-video/kikoplay/kikoplay-0.8.0.ebuild
deleted file mode 100644
index 9614eea9b..000000000
--- a/media-video/kikoplay/kikoplay-0.8.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-GIT_PN="KikoPlay"
-
-LUA_COMPAT=( lua5-3 )
-
-inherit lua-single qmake-utils xdg
-
-DESCRIPTION="KikoPlay is a full-featured danmu player"
-HOMEPAGE="
-	https://kikoplay.fun
-	https://github.com/Protostars/KikoPlay
-"
-
-if [[ "${PV}" == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
-else
-	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
-	S="${WORKDIR}/${GIT_PN}-${PV}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND="
-	${LUA_DEPS}
-	dev-libs/qhttpengine:5
-	dev-qt/qtconcurrent:5
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtsql:5
-	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,lua]
-	net-misc/aria2
-"
-
-DEPEND="
-	${RDEPEND}
-"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-
-src_configure() {
-	eqmake5 PREFIX="${EPREFIX}/usr"
-}
-
-src_install() {
-	# Can't use default, set INSTALL_ROOT
-	emake INSTALL_ROOT="${D}" install
-}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2022-02-14 16:14 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2022-02-14 16:14 UTC (permalink / raw
  To: gentoo-commits

commit:     7f9255bc18e005e20fe61fcde78b87b0e69a19fe
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Feb 14 16:13:48 2022 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Feb 14 16:13:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7f9255bc

media-video/kikoplay: drop old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 -
 media-video/kikoplay/kikoplay-0.8.1.ebuild | 58 ------------------------------
 2 files changed, 59 deletions(-)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index 528866c12..e2f33fa1e 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1,2 +1 @@
-DIST kikoplay-0.8.1.tar.gz 10428596 BLAKE2B 637b093b7747cd7e66d90b9e5c854ca0e4bf81e09ef636e7e755e1896f9994d016049ea7c4486e48057a1ab2f9d5a848e4346aed62278c0e20ae108791031e95 SHA512 191e6b8db357b2443a4c7dd5a3ee3621f3f7a4bc6403caafbaa951baf13f0b20cf2a3e4f63cfb0f43ecb9884c39484ab29bdd4024f152c657a2208b443c1a81e
 DIST kikoplay-0.8.2.tar.gz 10138252 BLAKE2B dbbf902fc60a8907b2b3840536510efed00cfab789432eba8cc7855c8fb8ebec345153848d1ad206deefb891659711c1184baee560636769cc314f11a1613dbd SHA512 6c823d16983df7ea8c4fb01df99bc750f58d791235c56e7e694bafa4db9a83bf8499b08ca1690a5c843c5a0c935992311ea502b9ed95026d5aca5e76b995a6ce

diff --git a/media-video/kikoplay/kikoplay-0.8.1.ebuild b/media-video/kikoplay/kikoplay-0.8.1.ebuild
deleted file mode 100644
index 74ac7f834..000000000
--- a/media-video/kikoplay/kikoplay-0.8.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-GIT_PN="KikoPlay"
-
-LUA_COMPAT=( lua5-3 )
-
-inherit lua-single qmake-utils xdg
-
-DESCRIPTION="KikoPlay is a full-featured danmu player"
-HOMEPAGE="
-	https://kikoplay.fun
-	https://github.com/Protostars/KikoPlay
-"
-
-if [[ "${PV}" == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
-else
-	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
-	S="${WORKDIR}/${GIT_PN}-${PV}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND="
-	${LUA_DEPS}
-	dev-libs/qhttpengine:5
-	dev-qt/qtconcurrent:5
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtsql:5
-	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv]
-	net-misc/aria2
-"
-
-DEPEND="
-	${RDEPEND}
-"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-
-src_configure() {
-	eqmake5 PREFIX="${EPREFIX}/usr"
-}
-
-src_install() {
-	# Can't use default, set INSTALL_ROOT
-	emake INSTALL_ROOT="${D}" install
-}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2022-02-14 16:14 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2022-02-14 16:14 UTC (permalink / raw
  To: gentoo-commits

commit:     463c91474cbb72e47aa4ee160505d8639e9f7d53
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Mon Feb 14 16:13:26 2022 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Mon Feb 14 16:13:26 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=463c9147

media-video/kikoplay: bump to 0.8.2

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 +
 media-video/kikoplay/kikoplay-0.8.2.ebuild | 58 ++++++++++++++++++++++++++++++
 2 files changed, 59 insertions(+)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index 3570bae2f..528866c12 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1 +1,2 @@
 DIST kikoplay-0.8.1.tar.gz 10428596 BLAKE2B 637b093b7747cd7e66d90b9e5c854ca0e4bf81e09ef636e7e755e1896f9994d016049ea7c4486e48057a1ab2f9d5a848e4346aed62278c0e20ae108791031e95 SHA512 191e6b8db357b2443a4c7dd5a3ee3621f3f7a4bc6403caafbaa951baf13f0b20cf2a3e4f63cfb0f43ecb9884c39484ab29bdd4024f152c657a2208b443c1a81e
+DIST kikoplay-0.8.2.tar.gz 10138252 BLAKE2B dbbf902fc60a8907b2b3840536510efed00cfab789432eba8cc7855c8fb8ebec345153848d1ad206deefb891659711c1184baee560636769cc314f11a1613dbd SHA512 6c823d16983df7ea8c4fb01df99bc750f58d791235c56e7e694bafa4db9a83bf8499b08ca1690a5c843c5a0c935992311ea502b9ed95026d5aca5e76b995a6ce

diff --git a/media-video/kikoplay/kikoplay-0.8.2.ebuild b/media-video/kikoplay/kikoplay-0.8.2.ebuild
new file mode 100644
index 000000000..d514ba1b7
--- /dev/null
+++ b/media-video/kikoplay/kikoplay-0.8.2.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+GIT_PN="KikoPlay"
+
+LUA_COMPAT=( lua5-3 )
+
+inherit lua-single qmake-utils xdg
+
+DESCRIPTION="KikoPlay is a full-featured danmu player"
+HOMEPAGE="
+	https://kikoplay.fun
+	https://github.com/Protostars/KikoPlay
+"
+
+if [[ "${PV}" == "9999" ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
+else
+	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	S="${WORKDIR}/${GIT_PN}-${PV}"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+
+RDEPEND="
+	${LUA_DEPS}
+	dev-libs/qhttpengine:5
+	dev-qt/qtconcurrent:5
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsql:5
+	dev-qt/qtwidgets:5
+	media-video/mpv[libmpv,-lua]
+	net-misc/aria2
+"
+
+DEPEND="
+	${RDEPEND}
+"
+
+BDEPEND="
+	virtual/pkgconfig
+"
+
+src_configure() {
+	eqmake5 PREFIX="${EPREFIX}/usr"
+}
+
+src_install() {
+	# Can't use default, set INSTALL_ROOT
+	emake INSTALL_ROOT="${D}" install
+}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2022-05-02 17:34 Arthur Zamarin
  0 siblings, 0 replies; 41+ messages in thread
From: Arthur Zamarin @ 2022-05-02 17:34 UTC (permalink / raw
  To: gentoo-commits

commit:     21eebe3df265ec9c61674a56e0e0883554dfc478
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon May  2 17:33:23 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon May  2 17:33:23 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=21eebe3d

media-video/kikoplay: unkeyword s390

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 media-video/kikoplay/kikoplay-0.8.2.ebuild | 2 +-
 media-video/kikoplay/kikoplay-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.8.2.ebuild b/media-video/kikoplay/kikoplay-0.8.2.ebuild
index d514ba1b7..d7a4364e4 100644
--- a/media-video/kikoplay/kikoplay-0.8.2.ebuild
+++ b/media-video/kikoplay/kikoplay-0.8.2.ebuild
@@ -20,7 +20,7 @@ if [[ "${PV}" == "9999" ]] ; then
 	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
 else
 	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~x86"
 	S="${WORKDIR}/${GIT_PN}-${PV}"
 fi
 

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index 74ac7f834..b89015a7d 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -20,7 +20,7 @@ if [[ "${PV}" == "9999" ]] ; then
 	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
 else
 	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
+	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~x86"
 	S="${WORKDIR}/${GIT_PN}-${PV}"
 fi
 


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2023-07-26 12:08 Rui Huang
  0 siblings, 0 replies; 41+ messages in thread
From: Rui Huang @ 2023-07-26 12:08 UTC (permalink / raw
  To: gentoo-commits

commit:     810590e49937d7c1821de783f329e0fbe5773ef2
Author:     Huang Rui <vowstar <AT> gmail <DOT> com>
AuthorDate: Wed Jul 26 12:07:53 2023 +0000
Commit:     Rui Huang <vowstar <AT> gmail <DOT> com>
CommitDate: Wed Jul 26 12:07:53 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=810590e4

media-video/kikoplay: drop 0.8.2

Signed-off-by: Huang Rui <vowstar <AT> gmail.com>

 media-video/kikoplay/Manifest              |  1 -
 media-video/kikoplay/kikoplay-0.8.2.ebuild | 58 ------------------------------
 2 files changed, 59 deletions(-)

diff --git a/media-video/kikoplay/Manifest b/media-video/kikoplay/Manifest
index cc0e0a16d..7e7a78867 100644
--- a/media-video/kikoplay/Manifest
+++ b/media-video/kikoplay/Manifest
@@ -1,3 +1,2 @@
-DIST kikoplay-0.8.2.tar.gz 10138252 BLAKE2B dbbf902fc60a8907b2b3840536510efed00cfab789432eba8cc7855c8fb8ebec345153848d1ad206deefb891659711c1184baee560636769cc314f11a1613dbd SHA512 6c823d16983df7ea8c4fb01df99bc750f58d791235c56e7e694bafa4db9a83bf8499b08ca1690a5c843c5a0c935992311ea502b9ed95026d5aca5e76b995a6ce
 DIST kikoplay-0.9.3.tar.gz 11287161 BLAKE2B bcf2ece1613bb8707f311be72337f2f80155ea30cd64a2926bc475558523fe690795a6d682450484c6ab70e033b68c934783d7c9ceac740508a48d492d33dcf5 SHA512 65cc3b025ccdcc611aeae3f37ba268fddc7d3720d5b809bf64d25d807e7c0fb838f0008374f3b600c1ba37365c6b3210d90c22a511b7f0bb488becde44591569
 DIST kikoplayscript-38f98d24133132f99b61dbeca26178aad45917e2.tar.gz 137732 BLAKE2B 70d677440ab351c1f3a4a36341b38dfdf0f875dba508ffbb5c0e1469b1907a38e91d669d01c33fb9ecf1d4b88935f9fcdbd98335cbb3f65f4fb805719aceec23 SHA512 c6ee8faed21e51f262f13493cca970427a0ed13857f07d5f1d704b9d92ea20cafe949216c9da39d3049599ec9c56cc5275a77745f695beb012765b9dece2b335

diff --git a/media-video/kikoplay/kikoplay-0.8.2.ebuild b/media-video/kikoplay/kikoplay-0.8.2.ebuild
deleted file mode 100644
index d7a4364e4..000000000
--- a/media-video/kikoplay/kikoplay-0.8.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-GIT_PN="KikoPlay"
-
-LUA_COMPAT=( lua5-3 )
-
-inherit lua-single qmake-utils xdg
-
-DESCRIPTION="KikoPlay is a full-featured danmu player"
-HOMEPAGE="
-	https://kikoplay.fun
-	https://github.com/Protostars/KikoPlay
-"
-
-if [[ "${PV}" == "9999" ]] ; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
-else
-	SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~x86"
-	S="${WORKDIR}/${GIT_PN}-${PV}"
-fi
-
-LICENSE="GPL-3"
-SLOT="0"
-
-RDEPEND="
-	${LUA_DEPS}
-	dev-libs/qhttpengine:5
-	dev-qt/qtconcurrent:5
-	dev-qt/qtcore:5
-	dev-qt/qtgui:5
-	dev-qt/qtnetwork:5
-	dev-qt/qtsql:5
-	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv,-lua]
-	net-misc/aria2
-"
-
-DEPEND="
-	${RDEPEND}
-"
-
-BDEPEND="
-	virtual/pkgconfig
-"
-
-src_configure() {
-	eqmake5 PREFIX="${EPREFIX}/usr"
-}
-
-src_install() {
-	# Can't use default, set INSTALL_ROOT
-	emake INSTALL_ROOT="${D}" install
-}


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2024-09-11 13:33 Takuya Wakazono
  0 siblings, 0 replies; 41+ messages in thread
From: Takuya Wakazono @ 2024-09-11 13:33 UTC (permalink / raw
  To: gentoo-commits

commit:     c0bff00760c7c6b97d095d6b08cae78f6aad76e7
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Wed Sep 11 13:30:36 2024 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Wed Sep 11 13:30:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c0bff007

media-video/kikoplay: fix RDEPEND

Closes: https://bugs.gentoo.org/911382
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.9.3.ebuild | 7 ++++---
 media-video/kikoplay/kikoplay-9999.ebuild  | 7 ++++---
 2 files changed, 8 insertions(+), 6 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.9.3.ebuild b/media-video/kikoplay/kikoplay-0.9.3.ebuild
index d8e86af6d..e00482831 100644
--- a/media-video/kikoplay/kikoplay-0.9.3.ebuild
+++ b/media-video/kikoplay/kikoplay-0.9.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="8"
@@ -37,15 +37,16 @@ LICENSE="GPL-3"
 SLOT="0"
 
 RDEPEND="
-	dev-libs/qhttpengine:5
 	dev-qt/qtconcurrent:5
 	dev-qt/qtcore:5
 	dev-qt/qtgui:5
 	dev-qt/qtnetwork:5
 	dev-qt/qtsql:5
+	dev-qt/qtsvg:5
 	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv]
+	media-video/mpv:=[libmpv]
 	net-misc/aria2
+	sys-libs/zlib
 "
 
 DEPEND="

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index d8e86af6d..e00482831 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="8"
@@ -37,15 +37,16 @@ LICENSE="GPL-3"
 SLOT="0"
 
 RDEPEND="
-	dev-libs/qhttpengine:5
 	dev-qt/qtconcurrent:5
 	dev-qt/qtcore:5
 	dev-qt/qtgui:5
 	dev-qt/qtnetwork:5
 	dev-qt/qtsql:5
+	dev-qt/qtsvg:5
 	dev-qt/qtwidgets:5
-	media-video/mpv[libmpv]
+	media-video/mpv:=[libmpv]
 	net-misc/aria2
+	sys-libs/zlib
 "
 
 DEPEND="


^ permalink raw reply related	[flat|nested] 41+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/
@ 2024-09-11 13:33 Takuya Wakazono
  0 siblings, 0 replies; 41+ messages in thread
From: Takuya Wakazono @ 2024-09-11 13:33 UTC (permalink / raw
  To: gentoo-commits

commit:     a827e65f9adeb15c4ae47b09ab168ba10fac1e3d
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Wed Sep 11 13:30:36 2024 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Wed Sep 11 13:30:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a827e65f

media-video/kikoplay: unkeyword 0.9.3 for ~mips

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 media-video/kikoplay/kikoplay-0.9.3.ebuild | 2 +-
 media-video/kikoplay/kikoplay-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/kikoplay/kikoplay-0.9.3.ebuild b/media-video/kikoplay/kikoplay-0.9.3.ebuild
index e00482831..63408fec2 100644
--- a/media-video/kikoplay/kikoplay-0.9.3.ebuild
+++ b/media-video/kikoplay/kikoplay-0.9.3.ebuild
@@ -28,7 +28,7 @@ else
 		https://github.com/KikoPlayProject/${GIT_SCRIPT_PN}/archive/${GIT_SCRIPT_PV}.tar.gz \
 		    -> kikoplayscript-${GIT_SCRIPT_PV}.tar.gz
 	"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~m68k ~ppc ~ppc64 ~x86"
 	S="${WORKDIR}/${GIT_PN}-${PV}"
 	S_SCRIPT="${WORKDIR}/${GIT_SCRIPT_PN}-${GIT_SCRIPT_PV}"
 fi

diff --git a/media-video/kikoplay/kikoplay-9999.ebuild b/media-video/kikoplay/kikoplay-9999.ebuild
index e00482831..63408fec2 100644
--- a/media-video/kikoplay/kikoplay-9999.ebuild
+++ b/media-video/kikoplay/kikoplay-9999.ebuild
@@ -28,7 +28,7 @@ else
 		https://github.com/KikoPlayProject/${GIT_SCRIPT_PN}/archive/${GIT_SCRIPT_PV}.tar.gz \
 		    -> kikoplayscript-${GIT_SCRIPT_PV}.tar.gz
 	"
-	KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~x86"
+	KEYWORDS="~amd64 ~arm ~m68k ~ppc ~ppc64 ~x86"
 	S="${WORKDIR}/${GIT_PN}-${PV}"
 	S_SCRIPT="${WORKDIR}/${GIT_SCRIPT_PN}-${GIT_SCRIPT_PV}"
 fi


^ permalink raw reply related	[flat|nested] 41+ messages in thread

end of thread, other threads:[~2024-09-11 13:33 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-04-27  7:46 [gentoo-commits] repo/proj/guru:dev commit in: media-video/kikoplay/ Rui Huang
  -- strict thread matches above, loose matches on Subject: below --
2024-09-11 13:33 Takuya Wakazono
2024-09-11 13:33 Takuya Wakazono
2023-07-26 12:08 Rui Huang
2022-05-02 17:34 Arthur Zamarin
2022-02-14 16:14 Rui Huang
2022-02-14 16:14 Rui Huang
2021-07-14  6:42 Rui Huang
2021-07-14  6:42 Rui Huang
2021-07-14  6:42 Rui Huang
2021-05-17 17:50 Rui Huang
2021-04-05  2:41 Rui Huang
2021-04-05  2:41 Rui Huang
2021-04-05  2:05 Rui Huang
2021-04-05  2:05 Rui Huang
2020-12-30 10:18 Rui Huang
2020-12-30 10:18 Rui Huang
2020-12-28  8:09 Rui Huang
2020-12-28  8:09 Rui Huang
2020-12-04 19:37 Rui Huang
2020-12-04 19:37 Rui Huang
2020-10-20  7:25 Rui Huang
2020-10-20  7:25 Rui Huang
2020-07-08  2:47 Rui Huang
2020-06-01  9:22 Rui Huang
2020-06-01  7:40 Rui Huang
2020-06-01  7:40 Rui Huang
2020-05-13 17:16 Rui Huang
2020-05-12  4:24 Rui Huang
2020-05-12  4:24 Rui Huang
2020-04-27  7:46 Rui Huang
2020-04-27  7:46 Rui Huang
2020-04-27  7:46 Rui Huang
2020-04-27  7:02 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2020-04-27  6:54 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2020-04-26 22:39 Alessandro Barbieri
2020-04-25  7:58 Alessandro Barbieri
2020-04-19 19:26 Rui Huang
2020-04-19 19:26 Rui Huang
2020-04-17 20:15 Rui Huang
2020-04-17 20:15 Rui Huang
2020-04-17 19:47 Rui Huang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox