* [PATCH 0/3] Add utox
@ 2016-09-08 0:59 Erik Edrosa
2016-09-08 1:00 ` [PATCH 1/3] gnu: openal: Update to 1.17.2 Erik Edrosa
` (3 more replies)
0 siblings, 4 replies; 11+ messages in thread
From: Erik Edrosa @ 2016-09-08 0:59 UTC (permalink / raw)
To: guix-devel
Hello guix,
These patches add utox, a lightweight client for tox, and it depedencies.
This was requested by ng0 to send to the mailing list. One of the
issues I discovered was avatars were not working. I will try to look
into it when I have the chance.
- Erik (OrangeShark)
Erik Edrosa (3):
gnu: openal: Update to 1.17.2.
gnu: Add filteraudio.
gnu: Add utox.
gnu/packages/audio.scm | 35 +++++++++++++++++++++++++++++++++--
gnu/packages/messaging.scm | 44 +++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 76 insertions(+), 3 deletions(-)
--
2.10.0
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH 1/3] gnu: openal: Update to 1.17.2.
2016-09-08 0:59 [PATCH 0/3] Add utox Erik Edrosa
@ 2016-09-08 1:00 ` Erik Edrosa
2016-09-08 9:02 ` Efraim Flashner
2016-09-08 1:00 ` [PATCH 2/3] gnu: Add filteraudio Erik Edrosa
` (2 subsequent siblings)
3 siblings, 1 reply; 11+ messages in thread
From: Erik Edrosa @ 2016-09-08 1:00 UTC (permalink / raw)
To: guix-devel
* gnu/packages/audio.scm (openal): Update to 1.17.2.
---
gnu/packages/audio.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 9f03368..40cc029 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -1468,7 +1468,7 @@ lv2-c++-tools.")
(define-public openal
(package
(name "openal")
- (version "1.15.1")
+ (version "1.17.2")
(source (origin
(method url-fetch)
(uri (string-append
@@ -1476,7 +1476,7 @@ lv2-c++-tools.")
version ".tar.bz2"))
(sha256
(base32
- "0mmhdqiyb3c9dzvxspm8h2v8jibhi8pfjxnf6m0wn744y1ia2a8f"))))
+ "051k5fy8pk4fd9ha3qaqcv08xwbks09xl5qs4ijqq2qz5xaghhd3"))))
(build-system cmake-build-system)
(arguments
`(#:tests? #f ; no check target
--
2.10.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 2/3] gnu: Add filteraudio.
2016-09-08 0:59 [PATCH 0/3] Add utox Erik Edrosa
2016-09-08 1:00 ` [PATCH 1/3] gnu: openal: Update to 1.17.2 Erik Edrosa
@ 2016-09-08 1:00 ` Erik Edrosa
2016-09-08 8:40 ` Efraim Flashner
2016-09-08 1:00 ` [PATCH 3/3] gnu: Add utox Erik Edrosa
2016-09-09 1:02 ` [PATCH v2 2/3] gnu: Add filteraudio Erik Edrosa
3 siblings, 1 reply; 11+ messages in thread
From: Erik Edrosa @ 2016-09-08 1:00 UTC (permalink / raw)
To: guix-devel
* gnu/packages/audio.scm (filteraudio): New variable.
---
gnu/packages/audio.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 40cc029..4a6f400 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2483,3 +2483,34 @@ with support for HD extensions.")
flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the
loudness of audio and video files to the same level.")
(license license:gpl2+)))
+
+(define-public filteraudio
+ (let ((revision "1")
+ (commit "2fc669581e2a0ff87fba8de85861b49133306094"))
+ (package
+ (name "filteraudio")
+ (version (string-append "0.0.0-" revision "."
+ (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/irungentoo/filter_audio.git")
+ (commit commit)))
+ (sha256
+ (base32
+ "0hbb290n3wb23f2k692a6bhc23nnqmxqi9sc9j15pnya8wifw64g"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:make-flags (list (string-append "PREFIX=" %output)
+ "CC=gcc")
+ #:tests? #f
+ #:phases
+ (alist-delete
+ 'configure
+ %standard-phases)))
+ (synopsis "Lightweight audio filtering library")
+ (description "An easy to use audio filtering library made from webrtc code, used
+in @code{libtoxcore}.")
+ (home-page "https://github.com/irungentoo/filter_audio")
+ (license license:bsd-3))))
--
2.10.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH 3/3] gnu: Add utox.
2016-09-08 0:59 [PATCH 0/3] Add utox Erik Edrosa
2016-09-08 1:00 ` [PATCH 1/3] gnu: openal: Update to 1.17.2 Erik Edrosa
2016-09-08 1:00 ` [PATCH 2/3] gnu: Add filteraudio Erik Edrosa
@ 2016-09-08 1:00 ` Erik Edrosa
2016-09-08 8:56 ` Efraim Flashner
2016-09-09 1:02 ` [PATCH v2 2/3] gnu: Add filteraudio Erik Edrosa
3 siblings, 1 reply; 11+ messages in thread
From: Erik Edrosa @ 2016-09-08 1:00 UTC (permalink / raw)
To: guix-devel
* gnu/packages/messaging.scm (utox): New variable.
---
gnu/packages/messaging.scm | 44 +++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 43 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index b95239a..27086c8 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -64,7 +64,9 @@
#:use-module (gnu packages tls)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages video)
- #:use-module (gnu packages xiph))
+ #:use-module (gnu packages xiph)
+ #:use-module (gnu packages audio)
+ #:use-module (gnu packages fontutils))
(define-public libotr
(package
@@ -612,4 +614,44 @@ protocols.")
(license gpl3+)
(home-page "https://tox.chat"))))
+(define-public utox
+ (package
+ (name "utox")
+ (version "0.9.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/GrayHatter/uTox/archive/v"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "13hfqbwzcgvfbvf9yjm62aqsvxnpqppb50c88sys43m7022yqcsy"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:make-flags (list (string-append "PREFIX=" %output)
+ "CC=gcc")
+ #:tests? #f
+ #:phases (alist-delete 'configure %standard-phases)))
+ (inputs
+ `(("libtoxcore" ,libtoxcore)
+ ("filteraudio" ,filteraudio)
+ ("dbus" ,dbus)
+ ("openal" ,openal)
+ ("libvpx" ,libvpx)
+ ("libsodium" ,libsodium)
+ ("freetype" ,freetype)
+ ("fontconfig" ,fontconfig)
+ ("v4l-utils" ,v4l-utils)
+ ("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("libxrender" ,libxrender)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (synopsis "Lightweight Tox client")
+ (description "The lightest and fluffiest Tox client. Tox is a
+distributed and secure instant messenger with audio and video chat
+capabilities.")
+ (home-page "http://utox.org/")
+ (license gpl3+)))
+
;;; messaging.scm ends here
--
2.10.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH 2/3] gnu: Add filteraudio.
2016-09-08 1:00 ` [PATCH 2/3] gnu: Add filteraudio Erik Edrosa
@ 2016-09-08 8:40 ` Efraim Flashner
0 siblings, 0 replies; 11+ messages in thread
From: Efraim Flashner @ 2016-09-08 8:40 UTC (permalink / raw)
To: Erik Edrosa; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 2356 bytes --]
On Wed, Sep 07, 2016 at 09:00:01PM -0400, Erik Edrosa wrote:
> * gnu/packages/audio.scm (filteraudio): New variable.
> ---
> gnu/packages/audio.scm | 31 +++++++++++++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
> index 40cc029..4a6f400 100644
> --- a/gnu/packages/audio.scm
> +++ b/gnu/packages/audio.scm
> @@ -2483,3 +2483,34 @@ with support for HD extensions.")
> flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the
> loudness of audio and video files to the same level.")
> (license license:gpl2+)))
> +
> +(define-public filteraudio
> + (let ((revision "1")
> + (commit "2fc669581e2a0ff87fba8de85861b49133306094"))
> + (package
> + (name "filteraudio")
> + (version (string-append "0.0.0-" revision "."
> + (string-take commit 7)))
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/irungentoo/filter_audio.git")
> + (commit commit)))
here you also need to declare (file-name
> + (sha256
> + (base32
> + "0hbb290n3wb23f2k692a6bhc23nnqmxqi9sc9j15pnya8wifw64g"))))
> + (build-system gnu-build-system)
> + (arguments
> + '(#:make-flags (list (string-append "PREFIX=" %output)
> + "CC=gcc")
> + #:tests? #f
Please add a comment explaining why no tests, even if it is just 'no
test target'
> + #:phases
> + (alist-delete
> + 'configure
> + %standard-phases)))
It may be shorter in this case, but we've still switched to 'modify-phases'
> + (synopsis "Lightweight audio filtering library")
> + (description "An easy to use audio filtering library made from webrtc code, used
> +in @code{libtoxcore}.")
> + (home-page "https://github.com/irungentoo/filter_audio")
> + (license license:bsd-3))))
> --
> 2.10.0
>
>
Looks good! Can you send a revised patch with the changes listed?
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 3/3] gnu: Add utox.
2016-09-08 1:00 ` [PATCH 3/3] gnu: Add utox Erik Edrosa
@ 2016-09-08 8:56 ` Efraim Flashner
0 siblings, 0 replies; 11+ messages in thread
From: Efraim Flashner @ 2016-09-08 8:56 UTC (permalink / raw)
To: Erik Edrosa; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 2899 bytes --]
On Wed, Sep 07, 2016 at 09:00:02PM -0400, Erik Edrosa wrote:
> * gnu/packages/messaging.scm (utox): New variable.
> ---
> gnu/packages/messaging.scm | 44 +++++++++++++++++++++++++++++++++++++++++++-
> 1 file changed, 43 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index b95239a..27086c8 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -64,7 +64,9 @@
> #:use-module (gnu packages tls)
> #:use-module (gnu packages icu4c)
> #:use-module (gnu packages video)
> - #:use-module (gnu packages xiph))
> + #:use-module (gnu packages xiph)
> + #:use-module (gnu packages audio)
> + #:use-module (gnu packages fontutils))
>
> (define-public libotr
> (package
> @@ -612,4 +614,44 @@ protocols.")
> (license gpl3+)
> (home-page "https://tox.chat"))))
>
> +(define-public utox
> + (package
> + (name "utox")
> + (version "0.9.8")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "https://github.com/GrayHatter/uTox/archive/v"
> + version ".tar.gz"))
This one also needs a 'file-name' field, otherwise it'll save the source
as 'hash-v0.9.8.tar.gz' and we'll have no idea what it is.
> + (sha256
> + (base32
> + "13hfqbwzcgvfbvf9yjm62aqsvxnpqppb50c88sys43m7022yqcsy"))))
> + (build-system gnu-build-system)
> + (arguments
> + '(#:make-flags (list (string-append "PREFIX=" %output)
> + "CC=gcc")
> + #:tests? #f
> + #:phases (alist-delete 'configure %standard-phases)))
Same as the last one, why no tests? Also, 'modify-phases'
> + (inputs
> + `(("libtoxcore" ,libtoxcore)
> + ("filteraudio" ,filteraudio)
> + ("dbus" ,dbus)
> + ("openal" ,openal)
> + ("libvpx" ,libvpx)
> + ("libsodium" ,libsodium)
> + ("freetype" ,freetype)
> + ("fontconfig" ,fontconfig)
> + ("v4l-utils" ,v4l-utils)
> + ("libx11" ,libx11)
> + ("libxext" ,libxext)
> + ("libxrender" ,libxrender)))
more of an aesthetic thing, can you make the inputs alphabetized?
> + (native-inputs
> + `(("pkg-config" ,pkg-config)))
> + (synopsis "Lightweight Tox client")
> + (description "The lightest and fluffiest Tox client. Tox is a
> +distributed and secure instant messenger with audio and video chat
> +capabilities.")
> + (home-page "http://utox.org/")
> + (license gpl3+)))
I believe it is just gpl3
> +
> ;;; messaging.scm ends here
> --
> 2.10.0
>
This one also looks really good. Can you send an updated patch?
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH 1/3] gnu: openal: Update to 1.17.2.
2016-09-08 1:00 ` [PATCH 1/3] gnu: openal: Update to 1.17.2 Erik Edrosa
@ 2016-09-08 9:02 ` Efraim Flashner
0 siblings, 0 replies; 11+ messages in thread
From: Efraim Flashner @ 2016-09-08 9:02 UTC (permalink / raw)
To: Erik Edrosa; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 1344 bytes --]
On Wed, Sep 07, 2016 at 09:00:00PM -0400, Erik Edrosa wrote:
> * gnu/packages/audio.scm (openal): Update to 1.17.2.
> ---
> gnu/packages/audio.scm | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
> index 9f03368..40cc029 100644
> --- a/gnu/packages/audio.scm
> +++ b/gnu/packages/audio.scm
> @@ -1468,7 +1468,7 @@ lv2-c++-tools.")
> (define-public openal
> (package
> (name "openal")
> - (version "1.15.1")
> + (version "1.17.2")
> (source (origin
> (method url-fetch)
> (uri (string-append
> @@ -1476,7 +1476,7 @@ lv2-c++-tools.")
> version ".tar.bz2"))
> (sha256
> (base32
> - "0mmhdqiyb3c9dzvxspm8h2v8jibhi8pfjxnf6m0wn744y1ia2a8f"))))
> + "051k5fy8pk4fd9ha3qaqcv08xwbks09xl5qs4ijqq2qz5xaghhd3"))))
> (build-system cmake-build-system)
> (arguments
> `(#:tests? #f ; no check target
> --
> 2.10.0
>
This looks good. I'm going to test it with ffmpeg and then push it.
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v2 2/3] gnu: Add filteraudio.
2016-09-08 0:59 [PATCH 0/3] Add utox Erik Edrosa
` (2 preceding siblings ...)
2016-09-08 1:00 ` [PATCH 3/3] gnu: Add utox Erik Edrosa
@ 2016-09-09 1:02 ` Erik Edrosa
2016-09-09 1:02 ` [PATCH v2 3/3] gnu: Add utox Erik Edrosa
2016-09-10 19:40 ` [PATCH v2 2/3] gnu: Add filteraudio Efraim Flashner
3 siblings, 2 replies; 11+ messages in thread
From: Erik Edrosa @ 2016-09-09 1:02 UTC (permalink / raw)
To: guix-devel
* gnu/packages/audio.scm (filteraudio): New variable.
---
gnu/packages/audio.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 40cc029..cc51d88 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -2483,3 +2483,36 @@ with support for HD extensions.")
flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the
loudness of audio and video files to the same level.")
(license license:gpl2+)))
+
+(define-public filteraudio
+ (let ((revision "1")
+ (commit "2fc669581e2a0ff87fba8de85861b49133306094"))
+ (package
+ (name "filteraudio")
+ (version (string-append "0.0.0-" revision "."
+ (string-take commit 7)))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/irungentoo/filter_audio.git")
+ (commit commit)))
+ (file-name (string-append name "-" version "-checkout"))
+ (sha256
+ (base32
+ "0hbb290n3wb23f2k692a6bhc23nnqmxqi9sc9j15pnya8wifw64g"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:make-flags (list (string-append "PREFIX=" %output)
+ "CC=gcc")
+ ;; No tests
+ #:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ ;; No configure script
+ (delete 'configure))))
+ (synopsis "Lightweight audio filtering library")
+ (description "An easy to use audio filtering library made from webrtc code, used
+in @code{libtoxcore}.")
+ (home-page "https://github.com/irungentoo/filter_audio")
+ (license license:bsd-3))))
--
2.10.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [PATCH v2 3/3] gnu: Add utox.
2016-09-09 1:02 ` [PATCH v2 2/3] gnu: Add filteraudio Erik Edrosa
@ 2016-09-09 1:02 ` Erik Edrosa
2016-09-10 19:40 ` Efraim Flashner
2016-09-10 19:40 ` [PATCH v2 2/3] gnu: Add filteraudio Efraim Flashner
1 sibling, 1 reply; 11+ messages in thread
From: Erik Edrosa @ 2016-09-09 1:02 UTC (permalink / raw)
To: guix-devel
* gnu/packages/messaging.scm (utox): New variable.
---
gnu/packages/messaging.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++--
1 file changed, 49 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
index b95239a..055cb7b 100644
--- a/gnu/packages/messaging.scm
+++ b/gnu/packages/messaging.scm
@@ -24,7 +24,7 @@
(define-module (gnu packages messaging)
#:use-module ((guix licenses)
- #:select (gpl3+ gpl2+ gpl2 lgpl2.1 lgpl2.0+ bsd-2 non-copyleft
+ #:select (gpl3+ gpl3 gpl2+ gpl2 lgpl2.1 lgpl2.0+ bsd-2 non-copyleft
asl2.0 x11))
#:use-module (guix utils)
#:use-module (guix packages)
@@ -64,7 +64,9 @@
#:use-module (gnu packages tls)
#:use-module (gnu packages icu4c)
#:use-module (gnu packages video)
- #:use-module (gnu packages xiph))
+ #:use-module (gnu packages xiph)
+ #:use-module (gnu packages audio)
+ #:use-module (gnu packages fontutils))
(define-public libotr
(package
@@ -612,4 +614,49 @@ protocols.")
(license gpl3+)
(home-page "https://tox.chat"))))
+(define-public utox
+ (package
+ (name "utox")
+ (version "0.9.8")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/GrayHatter/uTox/archive/v"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "13hfqbwzcgvfbvf9yjm62aqsvxnpqppb50c88sys43m7022yqcsy"))))
+ (build-system gnu-build-system)
+ (arguments
+ '(#:make-flags (list (string-append "PREFIX=" %output)
+ "CC=gcc")
+ ;; No tests
+ #:tests? #f
+ #:phases
+ (modify-phases %standard-phases
+ ;; No configure script
+ (delete 'configure))))
+ (inputs
+ `(("dbus" ,dbus)
+ ("filteraudio" ,filteraudio)
+ ("fontconfig" ,fontconfig)
+ ("freetype" ,freetype)
+ ("libsodium" ,libsodium)
+ ("libtoxcore" ,libtoxcore)
+ ("libvpx" ,libvpx)
+ ("libx11" ,libx11)
+ ("libxext" ,libxext)
+ ("libxrender" ,libxrender)
+ ("openal" ,openal)
+ ("v4l-utils" ,v4l-utils)))
+ (native-inputs
+ `(("pkg-config" ,pkg-config)))
+ (synopsis "Lightweight Tox client")
+ (description "The lightest and fluffiest Tox client. Tox is a
+distributed and secure instant messenger with audio and video chat
+capabilities.")
+ (home-page "http://utox.org/")
+ (license gpl3)))
+
;;; messaging.scm ends here
--
2.10.0
^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH v2 2/3] gnu: Add filteraudio.
2016-09-09 1:02 ` [PATCH v2 2/3] gnu: Add filteraudio Erik Edrosa
2016-09-09 1:02 ` [PATCH v2 3/3] gnu: Add utox Erik Edrosa
@ 2016-09-10 19:40 ` Efraim Flashner
1 sibling, 0 replies; 11+ messages in thread
From: Efraim Flashner @ 2016-09-10 19:40 UTC (permalink / raw)
To: Erik Edrosa; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 2214 bytes --]
On Thu, Sep 08, 2016 at 09:02:30PM -0400, Erik Edrosa wrote:
> * gnu/packages/audio.scm (filteraudio): New variable.
> ---
> gnu/packages/audio.scm | 33 +++++++++++++++++++++++++++++++++
> 1 file changed, 33 insertions(+)
>
> diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
> index 40cc029..cc51d88 100644
> --- a/gnu/packages/audio.scm
> +++ b/gnu/packages/audio.scm
> @@ -2483,3 +2483,36 @@ with support for HD extensions.")
> flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the
> loudness of audio and video files to the same level.")
> (license license:gpl2+)))
> +
> +(define-public filteraudio
> + (let ((revision "1")
> + (commit "2fc669581e2a0ff87fba8de85861b49133306094"))
> + (package
> + (name "filteraudio")
> + (version (string-append "0.0.0-" revision "."
> + (string-take commit 7)))
> + (source
> + (origin
> + (method git-fetch)
> + (uri (git-reference
> + (url "https://github.com/irungentoo/filter_audio.git")
> + (commit commit)))
> + (file-name (string-append name "-" version "-checkout"))
> + (sha256
> + (base32
> + "0hbb290n3wb23f2k692a6bhc23nnqmxqi9sc9j15pnya8wifw64g"))))
> + (build-system gnu-build-system)
> + (arguments
> + '(#:make-flags (list (string-append "PREFIX=" %output)
> + "CC=gcc")
> + ;; No tests
> + #:tests? #f
> + #:phases
> + (modify-phases %standard-phases
> + ;; No configure script
> + (delete 'configure))))
> + (synopsis "Lightweight audio filtering library")
> + (description "An easy to use audio filtering library made from webrtc code, used
> +in @code{libtoxcore}.")
> + (home-page "https://github.com/irungentoo/filter_audio")
> + (license license:bsd-3))))
> --
> 2.10.0
>
Patch pushed!
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH v2 3/3] gnu: Add utox.
2016-09-09 1:02 ` [PATCH v2 3/3] gnu: Add utox Erik Edrosa
@ 2016-09-10 19:40 ` Efraim Flashner
0 siblings, 0 replies; 11+ messages in thread
From: Efraim Flashner @ 2016-09-10 19:40 UTC (permalink / raw)
To: Erik Edrosa; +Cc: guix-devel
[-- Attachment #1: Type: text/plain, Size: 3088 bytes --]
On Thu, Sep 08, 2016 at 09:02:31PM -0400, Erik Edrosa wrote:
> * gnu/packages/messaging.scm (utox): New variable.
> ---
> gnu/packages/messaging.scm | 51 ++++++++++++++++++++++++++++++++++++++++++++--
> 1 file changed, 49 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/messaging.scm b/gnu/packages/messaging.scm
> index b95239a..055cb7b 100644
> --- a/gnu/packages/messaging.scm
> +++ b/gnu/packages/messaging.scm
> @@ -24,7 +24,7 @@
>
> (define-module (gnu packages messaging)
> #:use-module ((guix licenses)
> - #:select (gpl3+ gpl2+ gpl2 lgpl2.1 lgpl2.0+ bsd-2 non-copyleft
> + #:select (gpl3+ gpl3 gpl2+ gpl2 lgpl2.1 lgpl2.0+ bsd-2 non-copyleft
> asl2.0 x11))
> #:use-module (guix utils)
> #:use-module (guix packages)
> @@ -64,7 +64,9 @@
> #:use-module (gnu packages tls)
> #:use-module (gnu packages icu4c)
> #:use-module (gnu packages video)
> - #:use-module (gnu packages xiph))
> + #:use-module (gnu packages xiph)
> + #:use-module (gnu packages audio)
> + #:use-module (gnu packages fontutils))
>
> (define-public libotr
> (package
> @@ -612,4 +614,49 @@ protocols.")
> (license gpl3+)
> (home-page "https://tox.chat"))))
>
> +(define-public utox
> + (package
> + (name "utox")
> + (version "0.9.8")
> + (source
> + (origin
> + (method url-fetch)
> + (uri (string-append "https://github.com/GrayHatter/uTox/archive/v"
> + version ".tar.gz"))
> + (file-name (string-append name "-" version ".tar.gz"))
> + (sha256
> + (base32
> + "13hfqbwzcgvfbvf9yjm62aqsvxnpqppb50c88sys43m7022yqcsy"))))
> + (build-system gnu-build-system)
> + (arguments
> + '(#:make-flags (list (string-append "PREFIX=" %output)
> + "CC=gcc")
> + ;; No tests
> + #:tests? #f
> + #:phases
> + (modify-phases %standard-phases
> + ;; No configure script
> + (delete 'configure))))
> + (inputs
> + `(("dbus" ,dbus)
> + ("filteraudio" ,filteraudio)
> + ("fontconfig" ,fontconfig)
> + ("freetype" ,freetype)
> + ("libsodium" ,libsodium)
> + ("libtoxcore" ,libtoxcore)
> + ("libvpx" ,libvpx)
> + ("libx11" ,libx11)
> + ("libxext" ,libxext)
> + ("libxrender" ,libxrender)
> + ("openal" ,openal)
> + ("v4l-utils" ,v4l-utils)))
> + (native-inputs
> + `(("pkg-config" ,pkg-config)))
> + (synopsis "Lightweight Tox client")
> + (description "The lightest and fluffiest Tox client. Tox is a
> +distributed and secure instant messenger with audio and video chat
> +capabilities.")
> + (home-page "http://utox.org/")
> + (license gpl3)))
> +
> ;;; messaging.scm ends here
> --
> 2.10.0
>
Patch pushed!
--
Efraim Flashner <efraim@flashner.co.il> אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D 14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2016-09-10 19:40 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-08 0:59 [PATCH 0/3] Add utox Erik Edrosa
2016-09-08 1:00 ` [PATCH 1/3] gnu: openal: Update to 1.17.2 Erik Edrosa
2016-09-08 9:02 ` Efraim Flashner
2016-09-08 1:00 ` [PATCH 2/3] gnu: Add filteraudio Erik Edrosa
2016-09-08 8:40 ` Efraim Flashner
2016-09-08 1:00 ` [PATCH 3/3] gnu: Add utox Erik Edrosa
2016-09-08 8:56 ` Efraim Flashner
2016-09-09 1:02 ` [PATCH v2 2/3] gnu: Add filteraudio Erik Edrosa
2016-09-09 1:02 ` [PATCH v2 3/3] gnu: Add utox Erik Edrosa
2016-09-10 19:40 ` Efraim Flashner
2016-09-10 19:40 ` [PATCH v2 2/3] gnu: Add filteraudio Efraim Flashner
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).