From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:49017) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gdMgx-0002I7-Cg for guix-patches@gnu.org; Sat, 29 Dec 2018 17:02:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gdMOo-0002Wu-J5 for guix-patches@gnu.org; Sat, 29 Dec 2018 16:44:11 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:57623) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gdMOo-0002Ve-4G for guix-patches@gnu.org; Sat, 29 Dec 2018 16:44:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gdMOn-0005lK-TK for guix-patches@gnu.org; Sat, 29 Dec 2018 16:44:01 -0500 Subject: [bug#33902] [PATCH] gnu: Add wlstream. Resent-Message-ID: Date: Sat, 29 Dec 2018 22:43:04 +0100 From: Rutger Helling Message-ID: <20181229224304.16864753@mykolab.com> In-Reply-To: <20181229134626.7c48f721@mykolab.com> References: <20181229134626.7c48f721@mykolab.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; boundary="Sig_/InAVmcl5R0si1Bz87kpNGUb"; protocol="application/pgp-signature" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: 272c6bd6-de75-987a-527c-7649b84d62cd@gmail.com Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 33902@debbugs.gnu.org, brendan.tildesley@gmail.com --Sig_/InAVmcl5R0si1Bz87kpNGUb Content-Type: multipart/mixed; boundary="MP_/8Wv1M+XAK=s7fa.xSMh8HvC" --MP_/8Wv1M+XAK=s7fa.xSMh8HvC Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Here's a second version of the patch with a synopsis and description that's hopefully clearer. > The description for wlstream is vague and the English unnatural > ("streams" should be "stream"). I'm not sure what it does and the git > repo doesn't even provide an explanation. Could you write a more > thorough description? --MP_/8Wv1M+XAK=s7fa.xSMh8HvC Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0001-gnu-ffmpeg-Add-libdrm-support.patch =46rom b38bdecd0dee379f50241092aab2be4b69606209 Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Fri, 28 Dec 2018 20:15:22 +0100 Subject: [PATCH 1/2] gnu: ffmpeg: Add libdrm support. * gnu/packages/video.scm (ffmpeg): Add libdrm support. --- gnu/packages/video.scm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index ba0320548..d7675d5cd 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -701,6 +701,7 @@ standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, = and VC-1/VMW3).") ("libbluray" ,libbluray) ("libcaca" ,libcaca) ("libcdio-paranoia" ,libcdio-paranoia) + ("libdrm" ,libdrm) ("libtheora" ,libtheora) ("libva" ,libva) ("libvdpau" ,libvdpau) @@ -802,6 +803,7 @@ standards (MPEG-2, MPEG-4 ASP/H.263, MPEG-4 AVC/H.264, = and VC-1/VMW3).") "--enable-libx265" "--enable-openal" "--enable-opengl" + "--enable-libdrm" =20 "--enable-runtime-cpudetect" =20 --=20 2.20.1 --MP_/8Wv1M+XAK=s7fa.xSMh8HvC Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0002-gnu-Add-wlstream-v2.patch =46rom 5d18a851060605deee53c275159a6d37bfc0b007 Mon Sep 17 00:00:00 2001 From: Rutger Helling Date: Sat, 29 Dec 2018 16:17:59 +0100 Subject: [PATCH 2/2] gnu: Add wlstream. * gnu/packages/video.scm (wlstream): New variable. --- gnu/packages/video.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index d7675d5cd..566b0a4e2 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm @@ -3286,3 +3286,32 @@ transitions, and effects and then export your film t= o many common formats.") (description "dav1d is a new AV1 cross-platform decoder, and focused on speed and correctness.") (license license:bsd-2))) + +(define-public wlstream + (let ((commit "182076a94562b128c3a97ecc53cc68905ea86838") + (revision "1")) + (package + (name "wlstream") + (version (git-version "0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/atomnuker/wlstream.git") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "01qbcgfl3g9kfwn1jf1z9pdj3bvf5lmg71d1vwkcllc2az24bjqp")))) + (build-system meson-build-system) + (native-inputs `(("libdrm" ,libdrm) + ("pkg-config" ,pkg-config))) + (inputs `(("ffmpeg" ,ffmpeg) + ("pulseaudio" ,pulseaudio) + ("wayland" ,wayland) + ("wayland-protocols" ,wayland-protocols))) + (home-page "https://github.com/atomnuker/wlstream") + (synopsis "Screen capture tool for Wayland sessions") + (description "Wlstream is a screen capture tool for recording audio a= nd +video from a Wayland session.") + (license license:lgpl2.1+)))) --=20 2.20.1 --MP_/8Wv1M+XAK=s7fa.xSMh8HvC-- --Sig_/InAVmcl5R0si1Bz87kpNGUb Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEAVThuRzJ2e93ZI3n86cn20T8yjYFAlwn6mgACgkQ86cn20T8 yjZFrgf/S07h8YX7eOnUW0n66frdSGSjcSqK95O6xmRPUMG3hWayUnAdvY0wWvbK GDCIzH4wlDZwQpouqQo3pS1ngfETF0rl5wpSt8/7emxwsemxFq5eSg8J6nFqtvKJ KdbJsHOdIpwRm/eHy9xyT8LiiGEj0ZOubLrnWHx0t9tvfsCM52uzqPL5pAs/E7il Qmso3gre3H2Kf/IcEq06gmzsRLl6Y+Vha17/aGQelhVtbkw77pYVif6Hiu0fV9fh /JKsk6TgB3wfIi5X23xUUD/TiReXKcLKUMp3XQqnJS0ePi8ZLYmERLe2vEBkzFwq ysxXeLy5g4sjYeb0qKRfjQ9jEvPWZQ== =va0a -----END PGP SIGNATURE----- --Sig_/InAVmcl5R0si1Bz87kpNGUb--