* [gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-multi-rtmp/
@ 2023-11-28 0:52 Adel KARA SLIMANE
0 siblings, 0 replies; 5+ messages in thread
From: Adel KARA SLIMANE @ 2023-11-28 0:52 UTC (permalink / raw
To: gentoo-commits
commit: 74696e84f47118d6e7f63cc4beb7cd588b8551c2
Author: Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Tue Nov 28 00:51:54 2023 +0000
Commit: Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
CommitDate: Tue Nov 28 00:51:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=74696e84
media-video/obs-multi-rtmp: new package, add 0.5.0.4, 9999
Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
media-video/obs-multi-rtmp/Manifest | 1 +
media-video/obs-multi-rtmp/metadata.xml | 16 ++++++++
.../obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild | 44 ++++++++++++++++++++++
.../obs-multi-rtmp/obs-multi-rtmp-9999.ebuild | 44 ++++++++++++++++++++++
4 files changed, 105 insertions(+)
diff --git a/media-video/obs-multi-rtmp/Manifest b/media-video/obs-multi-rtmp/Manifest
new file mode 100644
index 0000000000..20f0cf0a62
--- /dev/null
+++ b/media-video/obs-multi-rtmp/Manifest
@@ -0,0 +1 @@
+DIST obs-multi-rtmp-0.5.0.4.tar.gz 399130 BLAKE2B ee35f2dbe61f5adce9c987358fd1d8ffefc35a019b47ccbf86f4dd35bcf7296e4fb5c4f3b9d96af29005d454feb6d8d84314bc2589b89050781b5139d61b5d08 SHA512 2efa9a9e4915fe211263dd7ed43fe00c31fe2740555c2b366d90acc8be4ea6c9e35518500520358b105bedf7e32be36dcbeafc05e171e360e8cc2867f1cb80f1
diff --git a/media-video/obs-multi-rtmp/metadata.xml b/media-video/obs-multi-rtmp/metadata.xml
new file mode 100644
index 0000000000..5934f0e0e9
--- /dev/null
+++ b/media-video/obs-multi-rtmp/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM 'https://www.gentoo.org/dtd/metadata.dtd'>
+<pkgmetadata>
+ <maintainer type="person">
+ <email>adel.ks@zegrapher.com</email>
+ <name>Adel KARA SLIMANE</name>
+ </maintainer>
+ <upstream>
+ <remote-id type="github">sorayuki/obs-multi-rtmp</remote-id>
+ <bugs-to>https://github.com/sorayuki/obs-multi-rtmp/issues</bugs-to>
+ </upstream>
+ <use>
+ <flag name="qt">Use Qt functionality.</flag>
+ <flag name="obs-frontend-api">Use obs-frontend-api for UI functionality.</flag>
+ </use>
+</pkgmetadata>
diff --git a/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
new file mode 100644
index 0000000000..6709294047
--- /dev/null
+++ b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic
+
+DESCRIPTION="OBS Simulcast support plugin"
+HOMEPAGE="https://github.com/orayuki/obs-multi-rtmp"
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/sorayuki/obs-multi-rtmp.git"
+else
+ SRC_URI="https://github.com/sorayuki/obs-multi-rtmp/archive/refs/tags/$PV.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+obs-frontend-api +qt"
+RDEPEND="
+ media-video/obs-studio
+"
+
+src_unpack() {
+ default
+
+ if [[ ${PV} == 9999 ]]; then
+ git-r3_src_unpack
+ fi
+}
+
+src_configure() {
+ local mycmakeargs+=(
+ -DENABLE_FRONTEND_API=$(usex obs-frontend-api ON OFF)
+ -DENABLE_QT=$(usex qt ON OFF)
+ )
+
+ # code base is not clean
+ # opened bug https://github.com/sorayuki/obs-multi-rtmp/issues/378
+ append-cppflags -Wno-error=shadow -Wno-error=conversion -Wno-error=float-conversion -Wno-error=sign-compare
+
+ cmake_src_configure
+}
diff --git a/media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild b/media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild
new file mode 100644
index 0000000000..8e6e068ab8
--- /dev/null
+++ b/media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic
+
+DESCRIPTION="OBS Simulcast support plugin"
+HOMEPAGE="https://github.com/orayuki/obs-multi-rtmp"
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/sorayuki/obs-multi-rtmp.git"
+else
+ SRC_URI="https://github.com/orayuki/obs-multi-rtmp/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+obs-frontend-api +qt"
+RDEPEND="
+ media-video/obs-studio
+"
+
+src_unpack() {
+ default
+
+ if [[ ${PV} == 9999 ]]; then
+ git-r3_src_unpack
+ fi
+}
+
+src_configure() {
+ local mycmakeargs+=(
+ -DENABLE_FRONTEND_API=$(usex obs-frontend-api ON OFF)
+ -DENABLE_QT=$(usex qt ON OFF)
+ )
+
+ # code base is not clean
+ # opened bug https://github.com/sorayuki/obs-multi-rtmp/issues/378
+ append-cppflags -Wno-error=shadow -Wno-error=conversion -Wno-error=float-conversion -Wno-error=sign-compare
+
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-multi-rtmp/
@ 2024-09-20 19:23 David Roman
0 siblings, 0 replies; 5+ messages in thread
From: David Roman @ 2024-09-20 19:23 UTC (permalink / raw
To: gentoo-commits
commit: 584a01360af3e7a7890690d4a44167298d5e8933
Author: David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Fri Sep 20 19:19:09 2024 +0000
Commit: David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Fri Sep 20 19:19:09 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=584a0136
media-video/obs-multi-rtmp: update HOMEPAGE
Signed-off-by: David Roman <davidroman96 <AT> gmail.com>
media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
index 670929404..de440dd49 100644
--- a/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
+++ b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
@@ -6,7 +6,7 @@ EAPI=8
inherit cmake flag-o-matic
DESCRIPTION="OBS Simulcast support plugin"
-HOMEPAGE="https://github.com/orayuki/obs-multi-rtmp"
+HOMEPAGE="https://github.com/sorayuki/obs-multi-rtmp"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/sorayuki/obs-multi-rtmp.git"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-multi-rtmp/
@ 2024-12-26 0:57 Adel KARA SLIMANE
0 siblings, 0 replies; 5+ messages in thread
From: Adel KARA SLIMANE @ 2024-12-26 0:57 UTC (permalink / raw
To: gentoo-commits
commit: de489ad576bd11598936f3689c137e6e328decf3
Author: Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Thu Dec 26 00:56:34 2024 +0000
Commit: Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
CommitDate: Thu Dec 26 00:57:00 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=de489ad5
media-video/obs-multi-rtmp: improve dependencies
Closes: https://bugs.gentoo.org/932832
Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild | 6 +++++-
media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild | 6 +++++-
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
index de440dd49..f04ab2ec1 100644
--- a/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
+++ b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
@@ -18,9 +18,13 @@ fi
LICENSE="GPL-2"
SLOT="0"
IUSE="+obs-frontend-api +qt"
-RDEPEND="
+DEPEND="
+ qt? ( dev-qt/qtbase:6 )
media-video/obs-studio
"
+RDEPEND="
+ ${DEPEND}
+"
src_unpack() {
default
diff --git a/media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild b/media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild
index 8e6e068ab..5fc90c428 100644
--- a/media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild
+++ b/media-video/obs-multi-rtmp/obs-multi-rtmp-9999.ebuild
@@ -18,9 +18,13 @@ fi
LICENSE="GPL-2"
SLOT="0"
IUSE="+obs-frontend-api +qt"
-RDEPEND="
+DEPEND="
+ qt? ( dev-qt/qtbase:6 )
media-video/obs-studio
"
+RDEPEND="
+ ${DEPEND}
+"
src_unpack() {
default
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-multi-rtmp/
@ 2024-12-30 23:20 Adel KARA SLIMANE
0 siblings, 0 replies; 5+ messages in thread
From: Adel KARA SLIMANE @ 2024-12-30 23:20 UTC (permalink / raw
To: gentoo-commits
commit: 67a797aace06f287d827e8c3300a85a9df4e99bd
Author: Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Mon Dec 30 23:19:56 2024 +0000
Commit: Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
CommitDate: Mon Dec 30 23:20:33 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=67a797aa
media-video/obs-multi-rtmp: drop 0.5.0.4
Closes: https://bugs.gentoo.org/919040
Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
media-video/obs-multi-rtmp/Manifest | 1 -
.../obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild | 48 ----------------------
2 files changed, 49 deletions(-)
diff --git a/media-video/obs-multi-rtmp/Manifest b/media-video/obs-multi-rtmp/Manifest
index 85a5b2318..5cfae1dbb 100644
--- a/media-video/obs-multi-rtmp/Manifest
+++ b/media-video/obs-multi-rtmp/Manifest
@@ -1,2 +1 @@
-DIST obs-multi-rtmp-0.5.0.4.tar.gz 399130 BLAKE2B ee35f2dbe61f5adce9c987358fd1d8ffefc35a019b47ccbf86f4dd35bcf7296e4fb5c4f3b9d96af29005d454feb6d8d84314bc2589b89050781b5139d61b5d08 SHA512 2efa9a9e4915fe211263dd7ed43fe00c31fe2740555c2b366d90acc8be4ea6c9e35518500520358b105bedf7e32be36dcbeafc05e171e360e8cc2867f1cb80f1
DIST obs-multi-rtmp-0.6.0.1-obs31.tar.gz 402624 BLAKE2B 8dc7bb2cdf2ddfcdb2ae6b3b112cb70a3ab6efb17e424ba1dc90d075909aecaaa179ce219f988771c51031651cfc2da37293f0540b52f71f01ab74f7584eb159 SHA512 960aa8cc1481b5df65bb57b67698092d4ce044474b463565e0771c95c99565b2e4f14d22e2c8fe1cfb7394d854b3e00b818e9ee520b502e57b871ea3a47b4617
diff --git a/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
deleted file mode 100644
index f04ab2ec1..000000000
--- a/media-video/obs-multi-rtmp/obs-multi-rtmp-0.5.0.4.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake flag-o-matic
-
-DESCRIPTION="OBS Simulcast support plugin"
-HOMEPAGE="https://github.com/sorayuki/obs-multi-rtmp"
-if [[ ${PV} == 9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/sorayuki/obs-multi-rtmp.git"
-else
- SRC_URI="https://github.com/sorayuki/obs-multi-rtmp/archive/refs/tags/$PV.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+obs-frontend-api +qt"
-DEPEND="
- qt? ( dev-qt/qtbase:6 )
- media-video/obs-studio
-"
-RDEPEND="
- ${DEPEND}
-"
-
-src_unpack() {
- default
-
- if [[ ${PV} == 9999 ]]; then
- git-r3_src_unpack
- fi
-}
-
-src_configure() {
- local mycmakeargs+=(
- -DENABLE_FRONTEND_API=$(usex obs-frontend-api ON OFF)
- -DENABLE_QT=$(usex qt ON OFF)
- )
-
- # code base is not clean
- # opened bug https://github.com/sorayuki/obs-multi-rtmp/issues/378
- append-cppflags -Wno-error=shadow -Wno-error=conversion -Wno-error=float-conversion -Wno-error=sign-compare
-
- cmake_src_configure
-}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-multi-rtmp/
@ 2024-12-30 23:20 Adel KARA SLIMANE
0 siblings, 0 replies; 5+ messages in thread
From: Adel KARA SLIMANE @ 2024-12-30 23:20 UTC (permalink / raw
To: gentoo-commits
commit: 85e54113f7eecabfc535ad1f75be1475c4df7eb6
Author: Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Mon Dec 30 23:19:35 2024 +0000
Commit: Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
CommitDate: Mon Dec 30 23:20:33 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=85e54113
media-video/obs-multi-rtmp: add 0.6.0.1
Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>
media-video/obs-multi-rtmp/Manifest | 1 +
.../obs-multi-rtmp/obs-multi-rtmp-0.6.0.1.ebuild | 50 ++++++++++++++++++++++
2 files changed, 51 insertions(+)
diff --git a/media-video/obs-multi-rtmp/Manifest b/media-video/obs-multi-rtmp/Manifest
index 20f0cf0a6..85a5b2318 100644
--- a/media-video/obs-multi-rtmp/Manifest
+++ b/media-video/obs-multi-rtmp/Manifest
@@ -1 +1,2 @@
DIST obs-multi-rtmp-0.5.0.4.tar.gz 399130 BLAKE2B ee35f2dbe61f5adce9c987358fd1d8ffefc35a019b47ccbf86f4dd35bcf7296e4fb5c4f3b9d96af29005d454feb6d8d84314bc2589b89050781b5139d61b5d08 SHA512 2efa9a9e4915fe211263dd7ed43fe00c31fe2740555c2b366d90acc8be4ea6c9e35518500520358b105bedf7e32be36dcbeafc05e171e360e8cc2867f1cb80f1
+DIST obs-multi-rtmp-0.6.0.1-obs31.tar.gz 402624 BLAKE2B 8dc7bb2cdf2ddfcdb2ae6b3b112cb70a3ab6efb17e424ba1dc90d075909aecaaa179ce219f988771c51031651cfc2da37293f0540b52f71f01ab74f7584eb159 SHA512 960aa8cc1481b5df65bb57b67698092d4ce044474b463565e0771c95c99565b2e4f14d22e2c8fe1cfb7394d854b3e00b818e9ee520b502e57b871ea3a47b4617
diff --git a/media-video/obs-multi-rtmp/obs-multi-rtmp-0.6.0.1.ebuild b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.6.0.1.ebuild
new file mode 100644
index 000000000..f41ff5d0f
--- /dev/null
+++ b/media-video/obs-multi-rtmp/obs-multi-rtmp-0.6.0.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="OBS Simulcast support plugin"
+HOMEPAGE="https://github.com/sorayuki/obs-multi-rtmp"
+if [[ ${PV} == 9999 ]]; then
+ inherit git-r3
+ EGIT_REPO_URI="https://github.com/sorayuki/obs-multi-rtmp.git"
+else
+ SRC_URI="https://github.com/sorayuki/obs-multi-rtmp/archive/refs/tags/$PV-obs31.tar.gz -> ${P}-obs31.tar.gz"
+ KEYWORDS="~amd64"
+fi
+
+S="${WORKDIR}/${P}-obs31"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+obs-frontend-api +qt"
+DEPEND="
+ qt? ( dev-qt/qtbase:6 )
+ >=media-video/obs-studio-31
+"
+RDEPEND="
+ ${DEPEND}
+"
+
+PATCHES=(
+ "${FILESDIR}/cmake.patch"
+)
+
+src_unpack() {
+ default
+
+ if [[ ${PV} == 9999 ]]; then
+ git-r3_src_unpack
+ fi
+}
+
+src_configure() {
+ local mycmakeargs+=(
+ -DENABLE_FRONTEND_API=$(usex obs-frontend-api ON OFF)
+ -DENABLE_QT=$(usex qt ON OFF)
+ )
+
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-12-30 23:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-30 23:20 [gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-multi-rtmp/ Adel KARA SLIMANE
-- strict thread matches above, loose matches on Subject: below --
2024-12-30 23:20 Adel KARA SLIMANE
2024-12-26 0:57 Adel KARA SLIMANE
2024-09-20 19:23 David Roman
2023-11-28 0:52 Adel KARA SLIMANE
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox