* [bug#67052] librecast 0.8.x and lcsync 0.3.x
@ 2023-11-10 20:10 Vagrant Cascadian
2023-11-10 20:16 ` [bug#67052] [PATCH 1/2] gnu: librecast: Update to 0.8.0 vagrant
2023-11-10 21:03 ` [bug#67052] [PATCH v2 1/2] gnu: librecast: Update to 0.8.0 vagrant
0 siblings, 2 replies; 6+ messages in thread
From: Vagrant Cascadian @ 2023-11-10 20:10 UTC (permalink / raw)
To: 67052
[-- Attachment #1: Type: text/plain, Size: 130 bytes --]
I will be submitting patches to update librecast to 0.8.0 and lcsync to 0.3.0 which
were recently released.
live well,
vagrant
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [bug#67052] [PATCH 1/2] gnu: librecast: Update to 0.8.0.
2023-11-10 20:10 [bug#67052] librecast 0.8.x and lcsync 0.3.x Vagrant Cascadian
@ 2023-11-10 20:16 ` vagrant
2023-11-10 20:16 ` [bug#67052] [PATCH 2/2] gnu: lcsync: Update to 0.3.0 vagrant
2023-11-10 21:03 ` [bug#67052] [PATCH v2 1/2] gnu: librecast: Update to 0.8.0 vagrant
1 sibling, 1 reply; 6+ messages in thread
From: vagrant @ 2023-11-10 20:16 UTC (permalink / raw)
To: 67052; +Cc: vagrant
From: Vagrant Cascadian <vagrant@debian.org>
* gnu/packages/networking.scm (librecast): Update to 0.8.0.
[inputs]: Add libbsd.
---
gnu/packages/networking.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 1a8912ac87..03222a67d0 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -127,6 +127,7 @@ (define-module (gnu packages networking)
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
#:use-module (gnu packages kde-frameworks)
+ #:use-module (gnu packages libbsd)
#:use-module (gnu packages libevent)
#:use-module (gnu packages libidn)
#:use-module (gnu packages libusb)
@@ -522,7 +523,7 @@ (define-public libnice
(define-public librecast
(package
(name "librecast")
- (version "0.7.0")
+ (version "0.8.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -531,7 +532,7 @@ (define-public librecast
(file-name (git-file-name name version))
(sha256
(base32
- "0y0km0fv39m3i227pyg7fcr7d94gbji51fkcywqyrjgmk4j1hp1n"))))
+ "01m0q4n2hy3csbzil8ivjyzb1mh4w9jlh9iiv6z53kasl7aas27i"))))
(build-system gnu-build-system)
(arguments
`(#:parallel-tests? #f
@@ -541,7 +542,7 @@ (define-public librecast
(string-append "PREFIX="
(assoc-ref %outputs "out"))))
#:test-target "test"))
- (inputs (list libsodium lcrq))
+ (inputs (list libsodium lcrq libbsd))
(synopsis "IPv6 multicast library")
(description "Librecast is a C library which supports IPv6 multicast
networking.")
base-commit: bb3ab24a296ffa5273b2e82a02ed057e90c095f3
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#67052] [PATCH 2/2] gnu: lcsync: Update to 0.3.0.
2023-11-10 20:16 ` [bug#67052] [PATCH 1/2] gnu: librecast: Update to 0.8.0 vagrant
@ 2023-11-10 20:16 ` vagrant
0 siblings, 0 replies; 6+ messages in thread
From: vagrant @ 2023-11-10 20:16 UTC (permalink / raw)
To: 67052; +Cc: vagrant
From: Vagrant Cascadian <vagrant@debian.org>
* gnu/packages/networking.scm (lcsync): Update to 0.3.0.
[inputs]: Add libbsd.
---
gnu/packages/networking.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 03222a67d0..aac4e09c91 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -327,7 +327,7 @@ (define-public netperf
(define-public lcsync
(package
(name "lcsync")
- (version "0.2.1")
+ (version "0.3.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -336,7 +336,7 @@ (define-public lcsync
(file-name (git-file-name name version))
(sha256
(base32
- "0bsd3dkir2i647nmrmyb7skbv16v0f6f3gfwkpxz8g42978dlms5"))))
+ "1rhk80ybd2zranay76z1ysifnnm786lg9kiiijcwv76qy95in9ks"))))
(build-system gnu-build-system)
(arguments
`(#:parallel-tests? #f
@@ -362,7 +362,7 @@ (define-public lcsync
(substitute* (list "./src/Makefile" "./test/Makefile")
(("-llibrecast")
(string-append "-L" librecast "/lib -llibrecast")))))))))
- (inputs (list lcrq librecast libsodium))
+ (inputs (list lcrq librecast libsodium libbsd))
(home-page "https://librecast.net/lcsync.html")
(synopsis "Librecast file and data syncing tool")
(description
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#67052] [PATCH v2 1/2] gnu: librecast: Update to 0.8.0.
2023-11-10 20:10 [bug#67052] librecast 0.8.x and lcsync 0.3.x Vagrant Cascadian
2023-11-10 20:16 ` [bug#67052] [PATCH 1/2] gnu: librecast: Update to 0.8.0 vagrant
@ 2023-11-10 21:03 ` vagrant
2023-11-10 21:03 ` [bug#67052] [PATCH v2 2/2] gnu: lcsync: Update to 0.3.0 vagrant
2023-11-24 21:37 ` bug#67052: [PATCH v2 1/2] gnu: librecast: Update to 0.8.0 Vagrant Cascadian
1 sibling, 2 replies; 6+ messages in thread
From: vagrant @ 2023-11-10 21:03 UTC (permalink / raw)
To: 67052; +Cc: vagrant
From: Vagrant Cascadian <vagrant@debian.org>
* gnu/packages/networking.scm (librecast): Update to 0.8.0.
[inputs]: Add libbsd.
[source]: Apply guix style.
---
gnu/packages/networking.scm | 23 ++++++++++++-----------
1 file changed, 12 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 1a8912ac87..103c3aa97f 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -127,6 +127,7 @@ (define-module (gnu packages networking)
#:use-module (gnu packages gtk)
#:use-module (gnu packages image)
#:use-module (gnu packages kde-frameworks)
+ #:use-module (gnu packages libbsd)
#:use-module (gnu packages libevent)
#:use-module (gnu packages libidn)
#:use-module (gnu packages libusb)
@@ -522,16 +523,16 @@ (define-public libnice
(define-public librecast
(package
(name "librecast")
- (version "0.7.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://codeberg.org/librecast/librecast")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0y0km0fv39m3i227pyg7fcr7d94gbji51fkcywqyrjgmk4j1hp1n"))))
+ (version "0.8.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/librecast/librecast")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "01m0q4n2hy3csbzil8ivjyzb1mh4w9jlh9iiv6z53kasl7aas27i"))))
(build-system gnu-build-system)
(arguments
`(#:parallel-tests? #f
@@ -541,7 +542,7 @@ (define-public librecast
(string-append "PREFIX="
(assoc-ref %outputs "out"))))
#:test-target "test"))
- (inputs (list libsodium lcrq))
+ (inputs (list libsodium lcrq libbsd))
(synopsis "IPv6 multicast library")
(description "Librecast is a C library which supports IPv6 multicast
networking.")
base-commit: bb3ab24a296ffa5273b2e82a02ed057e90c095f3
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [bug#67052] [PATCH v2 2/2] gnu: lcsync: Update to 0.3.0.
2023-11-10 21:03 ` [bug#67052] [PATCH v2 1/2] gnu: librecast: Update to 0.8.0 vagrant
@ 2023-11-10 21:03 ` vagrant
2023-11-24 21:37 ` bug#67052: [PATCH v2 1/2] gnu: librecast: Update to 0.8.0 Vagrant Cascadian
1 sibling, 0 replies; 6+ messages in thread
From: vagrant @ 2023-11-10 21:03 UTC (permalink / raw)
To: 67052; +Cc: vagrant
From: Vagrant Cascadian <vagrant@debian.org>
Apply guix style.
* gnu/packages/networking.scm (lcsync): Update to 0.3.0.
[inputs]: Add libbsd.
[arguments]<phases>: Drop 'use-prefix-from-configure-in-doc-makefile and
'add-library-paths.
---
gnu/packages/networking.scm | 44 ++++++++++++-------------------------
1 file changed, 14 insertions(+), 30 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 103c3aa97f..0dfda60bf9 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -327,42 +327,26 @@ (define-public netperf
(define-public lcsync
(package
(name "lcsync")
- (version "0.2.1")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://codeberg.org/librecast/lcsync")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "0bsd3dkir2i647nmrmyb7skbv16v0f6f3gfwkpxz8g42978dlms5"))))
+ (version "0.3.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/librecast/lcsync")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1rhk80ybd2zranay76z1ysifnnm786lg9kiiijcwv76qy95in9ks"))))
(build-system gnu-build-system)
(arguments
`(#:parallel-tests? #f
- #:configure-flags
- (list
- (string-append "--prefix="
- (assoc-ref %outputs "out")))
+ #:configure-flags (list (string-append "--prefix="
+ (assoc-ref %outputs "out")))
#:make-flags (let ((target ,(%current-target-system)))
(list ,(string-append "CC="
(cc-for-target))))
- #:test-target "test"
- #:phases (modify-phases %standard-phases
- (add-after 'unpack 'use-prefix-from-configure-in-doc-makefile
- ;; Use prefix from configure. Fixed upstream:
- ;; https://codeberg.org/librecast/lcsync/commit/4ba00f6
- ;; XXX: Remove for 0.2.2+
- (lambda _
- (substitute* "doc/Makefile.in"
- (("PREFIX .= /usr/local") "PREFIX ?= @prefix@"))))
- (add-before 'build 'add-library-paths
- (lambda* (#:key inputs #:allow-other-keys)
- (let* ((librecast (assoc-ref inputs "librecast")))
- (substitute* (list "./src/Makefile" "./test/Makefile")
- (("-llibrecast")
- (string-append "-L" librecast "/lib -llibrecast")))))))))
- (inputs (list lcrq librecast libsodium))
+ #:test-target "test"))
+ (inputs (list lcrq librecast libsodium libbsd))
(home-page "https://librecast.net/lcsync.html")
(synopsis "Librecast file and data syncing tool")
(description
--
2.39.2
^ permalink raw reply related [flat|nested] 6+ messages in thread
* bug#67052: [PATCH v2 1/2] gnu: librecast: Update to 0.8.0.
2023-11-10 21:03 ` [bug#67052] [PATCH v2 1/2] gnu: librecast: Update to 0.8.0 vagrant
2023-11-10 21:03 ` [bug#67052] [PATCH v2 2/2] gnu: lcsync: Update to 0.3.0 vagrant
@ 2023-11-24 21:37 ` Vagrant Cascadian
1 sibling, 0 replies; 6+ messages in thread
From: Vagrant Cascadian @ 2023-11-24 21:37 UTC (permalink / raw)
To: 67052-done
[-- Attachment #1: Type: text/plain, Size: 456 bytes --]
On 2023-11-10, vagrant@debian.org wrote:
> * gnu/packages/networking.scm (librecast): Update to 0.8.0.
> [inputs]: Add libbsd.
> [source]: Apply guix style.
> ---
> gnu/packages/networking.scm | 23 ++++++++++++-----------
> 1 file changed, 12 insertions(+), 11 deletions(-)
Pushed as:
369c1782c77be0c68cc5cdd66184c33ca8b89d6c gnu: librecast: Update to 0.8.0.
4ec8724c77c031e3ec94b3583c5b3cfc101fac61 gnu: lcsync: Update to 0.3.0.
live well,
vagrant
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-11-24 21:38 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-11-10 20:10 [bug#67052] librecast 0.8.x and lcsync 0.3.x Vagrant Cascadian
2023-11-10 20:16 ` [bug#67052] [PATCH 1/2] gnu: librecast: Update to 0.8.0 vagrant
2023-11-10 20:16 ` [bug#67052] [PATCH 2/2] gnu: lcsync: Update to 0.3.0 vagrant
2023-11-10 21:03 ` [bug#67052] [PATCH v2 1/2] gnu: librecast: Update to 0.8.0 vagrant
2023-11-10 21:03 ` [bug#67052] [PATCH v2 2/2] gnu: lcsync: Update to 0.3.0 vagrant
2023-11-24 21:37 ` bug#67052: [PATCH v2 1/2] gnu: librecast: Update to 0.8.0 Vagrant Cascadian
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).