public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Adel KARA SLIMANE" <adel@karaslimane.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-vkcapture/
Date: Sat, 11 Sep 2021 12:12:05 +0000 (UTC)	[thread overview]
Message-ID: <1631362293.8c4d2fe52d9eedf9619f0f2c83ba01cebce02d81.adel@gentoo> (raw)

commit:     8c4d2fe52d9eedf9619f0f2c83ba01cebce02d81
Author:     Adel KARA SLIMANE <adel.ks <AT> zegrapher <DOT> com>
AuthorDate: Sat Sep 11 12:11:33 2021 +0000
Commit:     Adel KARA SLIMANE <adel <AT> karaslimane <DOT> com>
CommitDate: Sat Sep 11 12:11:33 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8c4d2fe5

media-video/obs-vkcapture: new package

Signed-off-by: Adel KARA SLIMANE <adel.ks <AT> zegrapher.com>

 media-video/obs-vkcapture/Manifest                 |  1 +
 media-video/obs-vkcapture/metadata.xml             | 16 +++++++++
 media-video/obs-vkcapture/obs-vkcapture-1.0.ebuild | 41 ++++++++++++++++++++++
 .../obs-vkcapture/obs-vkcapture-9999.ebuild        | 41 ++++++++++++++++++++++
 4 files changed, 99 insertions(+)

diff --git a/media-video/obs-vkcapture/Manifest b/media-video/obs-vkcapture/Manifest
new file mode 100644
index 000000000..04b82890c
--- /dev/null
+++ b/media-video/obs-vkcapture/Manifest
@@ -0,0 +1 @@
+DIST obs-vkcapture.tar.gz 84852 BLAKE2B 632d8db777b80e1efca48ca93edb9e400fed9edcfd7caf1108ba6f7481e1fdcfab2db715797e0019dec2fd65ed9ee3095285f2332609a848fa9a50585740eab9 SHA512 c2da876a9c13cb172bbcc122ada04e2b65278d292e1addfd591e50529cf64eabd43ac7902106b87095019f64536a7adb946d7c63b1125a4eb90da4908753c423

diff --git a/media-video/obs-vkcapture/metadata.xml b/media-video/obs-vkcapture/metadata.xml
new file mode 100644
index 000000000..b8381693d
--- /dev/null
+++ b/media-video/obs-vkcapture/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Adel Kara Slimane</name>
+		<email>adel.ks@zegrapher.com</email>
+	</maintainer>
+	<upstream>
+		<maintainer>
+			<name>David Rosca</name>
+			<email>nowrep@gmail.com</email>
+		</maintainer>
+		<remote-id type="github">nowrep/obs-vkcapture</remote-id>
+		<bugs-to>https://github.com/nowrep/obs-vkcapture/issues</bugs-to>
+	</upstream>
+</pkgmetadata>

diff --git a/media-video/obs-vkcapture/obs-vkcapture-1.0.ebuild b/media-video/obs-vkcapture/obs-vkcapture-1.0.ebuild
new file mode 100644
index 000000000..48c6e845f
--- /dev/null
+++ b/media-video/obs-vkcapture/obs-vkcapture-1.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
+
+inherit xdg cmake
+
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/nowrep/obs-vkcapture"
+else
+	SRC_URI="https://github.com/nowrep/obs-vkcapture/archive/refs/tags/v${PV}.tar.gz -> obs-vkcapture.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="OBS Linux Vulkan/OpenGL game capture"
+HOMEPAGE="https://github.com/nowrep/obs-vkcapture"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+	>=media-video/obs-studio-27
+"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+	default
+
+	if [[ ${PV} == 9999 ]]; then
+		git-r3_src_unpack
+	fi
+}
+
+src_configure() {
+	cmake_src_configure
+}

diff --git a/media-video/obs-vkcapture/obs-vkcapture-9999.ebuild b/media-video/obs-vkcapture/obs-vkcapture-9999.ebuild
new file mode 100644
index 000000000..48c6e845f
--- /dev/null
+++ b/media-video/obs-vkcapture/obs-vkcapture-9999.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
+
+inherit xdg cmake
+
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/nowrep/obs-vkcapture"
+else
+	SRC_URI="https://github.com/nowrep/obs-vkcapture/archive/refs/tags/v${PV}.tar.gz -> obs-vkcapture.tar.gz"
+	KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="OBS Linux Vulkan/OpenGL game capture"
+HOMEPAGE="https://github.com/nowrep/obs-vkcapture"
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+	>=media-video/obs-studio-27
+"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+	default
+
+	if [[ ${PV} == 9999 ]]; then
+		git-r3_src_unpack
+	fi
+}
+
+src_configure() {
+	cmake_src_configure
+}


             reply	other threads:[~2021-09-11 12:12 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-11 12:12 Adel KARA SLIMANE [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-09-11 12:54 [gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-vkcapture/ Adel KARA SLIMANE
2021-09-13 11:49 Adel KARA SLIMANE
2021-09-16 12:19 Adel KARA SLIMANE
2021-09-20  9:41 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2021-09-20  9:37 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2021-09-20 14:17 Adel KARA SLIMANE
2021-09-21 12:23 Adel KARA SLIMANE
2021-12-18 13:33 Adel KARA SLIMANE
2022-01-11 13:57 Adel KARA SLIMANE
2022-02-13 19:04 Adel KARA SLIMANE
2022-04-03 13:29 Adel KARA SLIMANE
2022-07-22 17:48 Adel KARA SLIMANE
2022-09-08 19:28 Adel KARA SLIMANE
2023-06-08  5:55 Kostadin Shishmanov
2023-06-08  5:55 Kostadin Shishmanov
2023-06-08  5:55 Kostadin Shishmanov
2023-06-17  6:27 Kostadin Shishmanov
2023-06-17  6:28 Kostadin Shishmanov
2023-07-10 10:47 Kostadin Shishmanov
2023-07-10 10:47 Kostadin Shishmanov
2023-10-19 16:37 Kostadin Shishmanov
2023-10-19 16:38 Kostadin Shishmanov
2023-11-24 20:36 Adel KARA SLIMANE
2023-11-24 20:36 Adel KARA SLIMANE
2024-02-17 15:04 Kostadin Shishmanov
2024-04-14  8:28 Kostadin Shishmanov
2024-04-14  8:28 Kostadin Shishmanov
2024-06-01 17:18 Kostadin Shishmanov
2024-07-20 10:34 Kostadin Shishmanov
2024-07-20 10:34 Kostadin Shishmanov
2024-07-21  6:34 Kostadin Shishmanov
2025-01-24  0:57 David Roman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1631362293.8c4d2fe52d9eedf9619f0f2c83ba01cebce02d81.adel@gentoo \
    --to=adel@karaslimane.com \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox