public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/obs-source-clone/
@ 2025-01-21 13:54 Jimi Huotari
  0 siblings, 0 replies; 2+ messages in thread
From: Jimi Huotari @ 2025-01-21 13:54 UTC (permalink / raw
  To: gentoo-commits

commit:     0b92f411abeeb58cb38064d00333aaa99e72f063
Author:     Kai Krakow <kai <AT> kaishome <DOT> de>
AuthorDate: Fri Aug  9 23:48:21 2024 +0000
Commit:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
CommitDate: Tue Jan 21 13:54:04 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b92f411

media-plugins/obs-source-clone: add 0.1.5

Signed-off-by: Kai Krakow <kai <AT> kaishome.de>
Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>

 media-plugins/obs-source-clone/Manifest            |  1 +
 .../obs-source-clone/obs-source-clone-0.1.5.ebuild | 34 ++++++++++++++++++++++
 2 files changed, 35 insertions(+)

diff --git a/media-plugins/obs-source-clone/Manifest b/media-plugins/obs-source-clone/Manifest
new file mode 100644
index 000000000000..c9fe804f7c47
--- /dev/null
+++ b/media-plugins/obs-source-clone/Manifest
@@ -0,0 +1 @@
+DIST obs-source-clone-0.1.5.tar.gz 55192 BLAKE2B df1f4903062f6dda0bde60bd6e1823f9ff6188d76e653b2b5a62f52f340ecb5b7437b53ef7b102c5843a5502d986cff5da944682bfa2b6e4fcf5ddfa23119eb2 SHA512 205eacadb1005aed954ed7a40bfd334c9defb4159a7be996d9d85bcf6999934abf96e7a9fc199bf2fd1d1a2efb1f43cc4e43b5c72b3872ad1f55049e6bdcc24b

diff --git a/media-plugins/obs-source-clone/obs-source-clone-0.1.5.ebuild b/media-plugins/obs-source-clone/obs-source-clone-0.1.5.ebuild
new file mode 100644
index 000000000000..28cdc9231c00
--- /dev/null
+++ b/media-plugins/obs-source-clone/obs-source-clone-0.1.5.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Plugin for OBS Studio to clone sources"
+HOMEPAGE="https://github.com/exeldro/obs-source-clone"
+
+if [[ ${PV} == 9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/exeldro/obs-source-clone.git"
+else
+	SRC_URI="https://github.com/exeldro/obs-source-clone/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="
+	>=media-video/obs-studio-30.2.0
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DLIB_OUT_DIR=/lib64/obs-plugins
+		-DLINUX_PORTABLE=OFF
+	)
+
+	cmake_src_configure
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/obs-source-clone/
@ 2025-01-21 13:54 Jimi Huotari
  0 siblings, 0 replies; 2+ messages in thread
From: Jimi Huotari @ 2025-01-21 13:54 UTC (permalink / raw
  To: gentoo-commits

commit:     c45424a2ebc3533a5c30b850f080290614562815
Author:     Kai Krakow <kai <AT> kaishome <DOT> de>
AuthorDate: Fri Aug  9 23:47:21 2024 +0000
Commit:     Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
CommitDate: Tue Jan 21 13:54:04 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c45424a2

media-plugins/obs-source-clone: new package, add 9999

Signed-off-by: Kai Krakow <kai <AT> kaishome.de>
Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>

 media-plugins/obs-source-clone/metadata.xml        | 16 ++++++++++
 .../obs-source-clone/obs-source-clone-9999.ebuild  | 34 ++++++++++++++++++++++
 2 files changed, 50 insertions(+)

diff --git a/media-plugins/obs-source-clone/metadata.xml b/media-plugins/obs-source-clone/metadata.xml
new file mode 100644
index 000000000000..20a780472f1d
--- /dev/null
+++ b/media-plugins/obs-source-clone/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" proxied="yes">
+		<email>hurikhan77+bgo@gmail.com</email>
+		<name>Kai Krakow</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
+	<upstream>
+		<bugs-to>https://github.com/exeldro/obs-source-clone/issues</bugs-to>
+		<remote-id type="github">exeldro/obs-source-clone</remote-id>
+	</upstream>
+</pkgmetadata>

diff --git a/media-plugins/obs-source-clone/obs-source-clone-9999.ebuild b/media-plugins/obs-source-clone/obs-source-clone-9999.ebuild
new file mode 100644
index 000000000000..28cdc9231c00
--- /dev/null
+++ b/media-plugins/obs-source-clone/obs-source-clone-9999.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Plugin for OBS Studio to clone sources"
+HOMEPAGE="https://github.com/exeldro/obs-source-clone"
+
+if [[ ${PV} == 9999 ]] ; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/exeldro/obs-source-clone.git"
+else
+	SRC_URI="https://github.com/exeldro/obs-source-clone/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+
+DEPEND="
+	>=media-video/obs-studio-30.2.0
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+	local mycmakeargs=(
+		-DLIB_OUT_DIR=/lib64/obs-plugins
+		-DLINUX_PORTABLE=OFF
+	)
+
+	cmake_src_configure
+}


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

end of thread, other threads:[~2025-01-21 13:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-21 13:54 [gentoo-commits] repo/gentoo:master commit in: media-plugins/obs-source-clone/ Jimi Huotari
  -- strict thread matches above, loose matches on Subject: below --
2025-01-21 13:54 Jimi Huotari

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