* [bug#72671] [PATCH] gnu: gitile: Replace outdated dependency.
@ 2024-08-16 13:35 Evgeny Pisemsky
2024-08-19 6:14 ` bug#72671: " Zheng Junjie
0 siblings, 1 reply; 2+ messages in thread
From: Evgeny Pisemsky @ 2024-08-16 13:35 UTC (permalink / raw)
To: 72671
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: 0001-gnu-gitile-Replace-outdated-dependency.patch --]
[-- Type: text/x-patch, Size: 2609 bytes --]
From 4ceabd3406ef8d0e98739442ae675e3aacb0ef9f Mon Sep 17 00:00:00 2001
Message-ID: <4ceabd3406ef8d0e98739442ae675e3aacb0ef9f.1723815017.git.mail@pisemsky.site>
From: Evgeny Pisemsky <mail@pisemsky.site>
Date: Fri, 16 Aug 2024 16:28:28 +0300
Subject: [PATCH] gnu: gitile: Replace outdated dependency.
* gnu/packages/version-control.scm (gitile): Replace outdated dependency.
* gnu/packages/guile-xyz.scm (guile-syntax-highlight-for-gitile): Remove.
Change-Id: I24295a24d0dfef08d5161c206757996ccdd881fd
---
gnu/packages/guile-xyz.scm | 21 ---------------------
gnu/packages/version-control.scm | 2 +-
2 files changed, 1 insertion(+), 22 deletions(-)
diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
index 0759c399c3..50d0c0920e 100644
--- a/gnu/packages/guile-xyz.scm
+++ b/gnu/packages/guile-xyz.scm
@@ -1053,27 +1053,6 @@ (define-public guile-syntax-highlight
(home-page "https://dthompson.us/projects/guile-syntax-highlight.html")
(license license:lgpl3+)))
-;; gitile requires a more recent version than the latest release.
-(define-public guile-syntax-highlight-for-gitile
- (let ((commit "897fa5156ff41588e0d281eb00e4e94de63ccd8a")
- (revision "0"))
- (package
- (inherit guile-syntax-highlight)
- (version (git-version "0.1" revision commit))
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://git.dthompson.us/guile-syntax-highlight.git")
- (commit commit)))
- (file-name (git-file-name "guile-syntax-highlight" version))
- (sha256
- (base32
- "18zlg4mkgd3swgv2ggfz91ivnnzc0zhvc9ybgrxg1y762va9hyvj"))))
- (native-inputs
- (modify-inputs (package-native-inputs guile-syntax-highlight)
- (prepend autoconf automake texinfo)))
- (properties '((hidden? . #t))))))
-
(define-public guile2.2-syntax-highlight
(package
(inherit guile-syntax-highlight)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 9f67237d5d..a295974d4e 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -2069,7 +2069,7 @@ (define-public gitile
guile-fibers
guile-gcrypt
guile-git
- guile-syntax-highlight-for-gitile
+ guile-syntax-highlight
guile-gnutls))
(home-page "https://git.lepiller.eu/gitile")
(synopsis "Simple Git forge written in Guile")
base-commit: 0ab167bdb2ec3ff88a75930c24b8bd77c61cc634
--
2.45.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#72671: [PATCH] gnu: gitile: Replace outdated dependency.
2024-08-16 13:35 [bug#72671] [PATCH] gnu: gitile: Replace outdated dependency Evgeny Pisemsky
@ 2024-08-19 6:14 ` Zheng Junjie
0 siblings, 0 replies; 2+ messages in thread
From: Zheng Junjie @ 2024-08-19 6:14 UTC (permalink / raw)
To: Evgeny Pisemsky; +Cc: 72671-done
[-- Attachment #1: Type: text/plain, Size: 2840 bytes --]
Evgeny Pisemsky <mail@pisemsky.site> writes:
> From 4ceabd3406ef8d0e98739442ae675e3aacb0ef9f Mon Sep 17 00:00:00 2001
> Message-ID: <4ceabd3406ef8d0e98739442ae675e3aacb0ef9f.1723815017.git.mail@pisemsky.site>
> From: Evgeny Pisemsky <mail@pisemsky.site>
> Date: Fri, 16 Aug 2024 16:28:28 +0300
> Subject: [PATCH] gnu: gitile: Replace outdated dependency.
>
> * gnu/packages/version-control.scm (gitile): Replace outdated dependency.
> * gnu/packages/guile-xyz.scm (guile-syntax-highlight-for-gitile): Remove.
>
> Change-Id: I24295a24d0dfef08d5161c206757996ccdd881fd
> ---
> gnu/packages/guile-xyz.scm | 21 ---------------------
> gnu/packages/version-control.scm | 2 +-
> 2 files changed, 1 insertion(+), 22 deletions(-)
>
> diff --git a/gnu/packages/guile-xyz.scm b/gnu/packages/guile-xyz.scm
> index 0759c399c3..50d0c0920e 100644
> --- a/gnu/packages/guile-xyz.scm
> +++ b/gnu/packages/guile-xyz.scm
> @@ -1053,27 +1053,6 @@ (define-public guile-syntax-highlight
> (home-page "https://dthompson.us/projects/guile-syntax-highlight.html")
> (license license:lgpl3+)))
>
> -;; gitile requires a more recent version than the latest release.
> -(define-public guile-syntax-highlight-for-gitile
> - (let ((commit "897fa5156ff41588e0d281eb00e4e94de63ccd8a")
> - (revision "0"))
> - (package
> - (inherit guile-syntax-highlight)
> - (version (git-version "0.1" revision commit))
> - (source (origin
> - (method git-fetch)
> - (uri (git-reference
> - (url "https://git.dthompson.us/guile-syntax-highlight.git")
> - (commit commit)))
> - (file-name (git-file-name "guile-syntax-highlight" version))
> - (sha256
> - (base32
> - "18zlg4mkgd3swgv2ggfz91ivnnzc0zhvc9ybgrxg1y762va9hyvj"))))
> - (native-inputs
> - (modify-inputs (package-native-inputs guile-syntax-highlight)
> - (prepend autoconf automake texinfo)))
> - (properties '((hidden? . #t))))))
> -
> (define-public guile2.2-syntax-highlight
> (package
> (inherit guile-syntax-highlight)
> diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
> index 9f67237d5d..a295974d4e 100644
> --- a/gnu/packages/version-control.scm
> +++ b/gnu/packages/version-control.scm
> @@ -2069,7 +2069,7 @@ (define-public gitile
> guile-fibers
> guile-gcrypt
> guile-git
> - guile-syntax-highlight-for-gitile
> + guile-syntax-highlight
> guile-gnutls))
> (home-page "https://git.lepiller.eu/gitile")
> (synopsis "Simple Git forge written in Guile")
>
> base-commit: 0ab167bdb2ec3ff88a75930c24b8bd77c61cc634
push, close.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2024-08-19 6:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-08-16 13:35 [bug#72671] [PATCH] gnu: gitile: Replace outdated dependency Evgeny Pisemsky
2024-08-19 6:14 ` bug#72671: " Zheng Junjie
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).