[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/08: gnu: obs-websocket: Deprecate in favor of "obs".
From: |
guix-commits |
Subject: |
04/08: gnu: obs-websocket: Deprecate in favor of "obs". |
Date: |
Fri, 9 Jun 2023 17:44:49 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 48812c85dd62ea8c075a606913bd7ae77c50c047
Author: Andy Tai <atai@atai.org>
AuthorDate: Sat Mar 25 03:22:13 2023 -0700
gnu: obs-websocket: Deprecate in favor of "obs".
* gnu/packages/video.scm (obs-websocket): Rewrite as a deprecated alias
for "obs".
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/video.scm | 36 ++----------------------------------
1 file changed, 2 insertions(+), 34 deletions(-)
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index 3b6af31b76..6f0a6e6ad9 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3476,40 +3476,8 @@ and JACK.")
(license license:gpl2+)))
(define-public obs-websocket
- (package
- (name "obs-websocket")
- (version "4.9.1")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/Palakis/obs-websocket")
- (commit version)
- (recursive? #t)))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0giwhm0rbc578qng4invqqma935zzjlf05msz1gx986aqk654s7k"))))
- (build-system cmake-build-system)
- (arguments
- `(#:tests? #f ;no tests
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'remove-permission-change
- (lambda* _
- (substitute* "CMakeLists.txt"
- ;; Remove lines that set writeable permissions on outputs.
- (("PERMISSIONS [^)]*") "")
- (("set\\(CMAKE_INSTALL_DEFAULT_DIRECTORY_PERMISSIONS") "")
- ;; Ug^WClever hack to comment out the next line, which is ‘)’.
- (("(OWNER|GROUP|WORLD)_READ .*") "#")))))))
- (inputs
- (list obs qtbase-5))
- (home-page "https://github.com/Palakis/obs-websocket")
- (synopsis "OBS plugin for remote control via WebSockets")
- (description "This OBS plugin allows you to establish a WebSocket channel
-from within your running OBS instance so that you can control it remotely from
-programs on your current machine or on other machines.")
- (license license:gpl2+)))
+ ;; Functionality was merged into OBS.
+ (deprecated-package "obs-websocket" obs))
(define-public obs-wlrobs
(package
- branch master updated (44bbfc24e4 -> 9504dd2c3e), guix-commits, 2023/06/09
- 05/08: home: services: ssh: Add 'add-keys-to-agent' field., guix-commits, 2023/06/09
- 02/08: gnu: i3-wm: Use new package style., guix-commits, 2023/06/09
- 06/08: home: services: ssh: Add 'match-criteria' option., guix-commits, 2023/06/09
- 01/08: gnu: guix: Update to 44bbfc2., guix-commits, 2023/06/09
- 04/08: gnu: obs-websocket: Deprecate in favor of "obs".,
guix-commits <=
- 03/08: gnu: i3-wm: Add missing inputs for i3-save-tree., guix-commits, 2023/06/09
- 07/08: home: services: ssh: Export configuration predicates., guix-commits, 2023/06/09
- 08/08: home: services: ssh: Export home-ssh-agent variables., guix-commits, 2023/06/09