Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/obs-studio/
Date: Sun, 10 May 2020 11:42:23
Message-Id: 1589110895.90c288ba534fba4d22130514387eca740151aa95.asturm@gentoo
1 commit: 90c288ba534fba4d22130514387eca740151aa95
2 Author: Jimi Huotari <chiitoo <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 10 07:17:17 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun May 10 11:41:35 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c288ba
7
8 media-video/obs-studio: remove version 24.0.5
9
10 Closes: https://bugs.gentoo.org/708628
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Jimi Huotari <chiitoo <AT> gentoo.org>
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 media-video/obs-studio/Manifest | 1 -
16 media-video/obs-studio/obs-studio-24.0.5.ebuild | 132 ------------------------
17 2 files changed, 133 deletions(-)
18
19 diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
20 index 1116b91bf0a..aa70deb5fcb 100644
21 --- a/media-video/obs-studio/Manifest
22 +++ b/media-video/obs-studio/Manifest
23 @@ -1,2 +1 @@
24 -DIST obs-studio-24.0.5.tar.gz 7901198 BLAKE2B 79c9712f3523114a70e0df3e0631c19067fd7ead5fd9031123dd4c82d9b92dee69473fb51a495f938430540505a5cf45258eeee01d61a7aaa6654255fee14aca SHA512 99be46046b70597474f25a85036ebe5a2f704eef47c77bc27e2ba8890b877da346ff6008c5922d7a83a4cead9df7214c6a3be885430693e609a42d9d06fedfaf
25 DIST obs-studio-25.0.8.tar.gz 9531713 BLAKE2B 4775ca8305e1beee4d926eff728351b699ca4d52f66e53409dbcfe1f73699df0286fadc0c138cb76b8eb73e70a143719e46f030b6d15d43629bdcbf23bdb88af SHA512 a97c03dc218a4e03e48f6a7dc82b4a59ebeee2039f17be66bb847681ce9ff3d25e6e015be4af78fe44739f6fad5089b6e683d7657c2e4fde8e547df9a2594a08
26
27 diff --git a/media-video/obs-studio/obs-studio-24.0.5.ebuild b/media-video/obs-studio/obs-studio-24.0.5.ebuild
28 deleted file mode 100644
29 index 80a9b245d34..00000000000
30 --- a/media-video/obs-studio/obs-studio-24.0.5.ebuild
31 +++ /dev/null
32 @@ -1,132 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
39 -PYTHON_COMPAT=( python3_{6,7} )
40 -
41 -inherit cmake-utils python-single-r1 xdg-utils
42 -
43 -if [[ ${PV} == *9999 ]]; then
44 - inherit git-r3
45 - EGIT_REPO_URI="https://github.com/obsproject/obs-studio.git"
46 - EGIT_SUBMODULES=()
47 -else
48 - SRC_URI="https://github.com/obsproject/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
49 - KEYWORDS="~amd64 ~x86"
50 -fi
51 -
52 -DESCRIPTION="Software for Recording and Streaming Live Video Content"
53 -HOMEPAGE="https://obsproject.com"
54 -
55 -LICENSE="GPL-2"
56 -SLOT="0"
57 -IUSE="+alsa fdk imagemagick jack luajit nvenc pulseaudio python speex +ssl truetype v4l vlc"
58 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
59 -
60 -BDEPEND="
61 - luajit? ( dev-lang/swig )
62 - python? ( dev-lang/swig )
63 -"
64 -DEPEND="
65 - >=dev-libs/jansson-2.5
66 - dev-qt/qtcore:5
67 - dev-qt/qtdeclarative:5
68 - dev-qt/qtgui:5
69 - dev-qt/qtmultimedia:5
70 - dev-qt/qtnetwork:5
71 - dev-qt/qtquickcontrols:5
72 - dev-qt/qtsql:5
73 - dev-qt/qtsvg:5
74 - dev-qt/qtwidgets:5
75 - dev-qt/qtx11extras:5
76 - media-video/ffmpeg:=[x264]
77 - net-misc/curl
78 - x11-libs/libXcomposite
79 - x11-libs/libXinerama
80 - x11-libs/libXrandr
81 - alsa? ( media-libs/alsa-lib )
82 - fdk? ( media-libs/fdk-aac:= )
83 - imagemagick? ( media-gfx/imagemagick:= )
84 - jack? ( virtual/jack )
85 - luajit? ( dev-lang/luajit:2 )
86 - nvenc? (
87 - || (
88 - <media-video/ffmpeg-4[nvenc]
89 - >=media-video/ffmpeg-4[video_cards_nvidia]
90 - )
91 - )
92 - pulseaudio? ( media-sound/pulseaudio )
93 - python? ( ${PYTHON_DEPS} )
94 - speex? ( media-libs/speexdsp )
95 - ssl? ( net-libs/mbedtls:= )
96 - truetype? (
97 - media-libs/fontconfig
98 - media-libs/freetype
99 - )
100 - v4l? ( media-libs/libv4l )
101 - vlc? ( media-video/vlc:= )
102 -"
103 -RDEPEND="${DEPEND}"
104 -
105 -pkg_setup() {
106 - use python && python-single-r1_pkg_setup
107 -}
108 -
109 -src_configure() {
110 - local libdir=$(get_libdir)
111 - local mycmakeargs=(
112 - -DDISABLE_ALSA=$(usex !alsa)
113 - -DDISABLE_FREETYPE=$(usex !truetype)
114 - -DDISABLE_JACK=$(usex !jack)
115 - -DDISABLE_LIBFDK=$(usex !fdk)
116 - -DDISABLE_PULSEAUDIO=$(usex !pulseaudio)
117 - -DDISABLE_SPEEXDSP=$(usex !speex)
118 - -DDISABLE_V4L2=$(usex !v4l)
119 - -DDISABLE_VLC=$(usex !vlc)
120 - -DLIBOBS_PREFER_IMAGEMAGICK=$(usex imagemagick)
121 - -DOBS_MULTIARCH_SUFFIX=${libdir#lib}
122 - -DOBS_VERSION_OVERRIDE=${PV}
123 - -DUNIX_STRUCTURE=1
124 - -DWITH_RTMPS=$(usex ssl)
125 - )
126 -
127 - if use luajit || use python; then
128 - mycmakeargs+=(
129 - -DDISABLE_LUA=$(usex !luajit)
130 - -DDISABLE_PYTHON=$(usex !python)
131 - -DENABLE_SCRIPTING=yes
132 - )
133 - else
134 - mycmakeargs+=( -DENABLE_SCRIPTING=no )
135 - fi
136 -
137 - cmake-utils_src_configure
138 -}
139 -
140 -pkg_postinst() {
141 - xdg_icon_cache_update
142 -
143 - if ! use alsa && ! use pulseaudio; then
144 - elog
145 - elog "For the audio capture features to be available,"
146 - elog "either the 'alsa' or the 'pulseaudio' USE-flag needs to"
147 - elog "be enabled."
148 - elog
149 - fi
150 -
151 - if ! has_version "sys-apps/dbus"; then
152 - elog
153 - elog "The 'sys-apps/dbus' package is not installed, but"
154 - elog "could be used for disabling hibernating, screensaving,"
155 - elog "and sleeping. Where it is not installed,"
156 - elog "'xdg-screensaver reset' is used instead"
157 - elog "(if 'x11-misc/xdg-utils' is installed)."
158 - elog
159 - fi
160 -}
161 -
162 -pkg_postrm() {
163 - xdg_icon_cache_update
164 -}