[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
11/13: gnu: catgirl: Don't use snapshot tarball.
From: |
guix-commits |
Subject: |
11/13: gnu: catgirl: Don't use snapshot tarball. |
Date: |
Thu, 3 Aug 2023 15:16:18 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit e09275f300efcb9f2f4d805833c2f86ebc599ddd
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Jul 30 02:00:00 2023 +0200
gnu: catgirl: Don't use snapshot tarball.
* gnu/packages/irc.scm (catgirl)[source]: Use GIT-FETCH and
GIT-FILE-NAME.
---
gnu/packages/irc.scm | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index cbe80f5e45..8ffe3882db 100644
--- a/gnu/packages/irc.scm
+++ b/gnu/packages/irc.scm
@@ -410,13 +410,15 @@ for the IRCv3 protocol.")
(package
(name "catgirl")
(version "2.1")
- (source (origin
- (method url-fetch)
- (uri (string-append "https://git.causal.agency/catgirl/snapshot/"
- name "-" version ".tar.gz"))
- (sha256
- (base32
- "13pfphcfkdzqfb4x7w21xp6rnmg3ix9f39mpqmxxzg15ys1gp2x6"))))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.causal.agency/catgirl")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1gxxblv3bwv1rl2ajjy791333r6qwgzb6qmk3iviw71mzi6ckxba"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no tests
- 09/13: gnu: sg3-utils: Update to 1.48., (continued)
- 09/13: gnu: sg3-utils: Update to 1.48., guix-commits, 2023/08/03
- 08/13: gnu: dconf: Update home page., guix-commits, 2023/08/03
- 06/13: gnu: delta: Use Web Archived home page., guix-commits, 2023/08/03
- 01/13: gnu: ant@1.10: Update to 1.10.13., guix-commits, 2023/08/03
- 03/13: gnu: cxxtest: Use Web Archived home page., guix-commits, 2023/08/03
- 13/13: gnu: catgirl: Use G-expressions., guix-commits, 2023/08/03
- 07/13: gnu: delta: Remove broken source URL., guix-commits, 2023/08/03
- 02/13: gnu: debian-archive-keyring: Update to 2023.4., guix-commits, 2023/08/03
- 10/13: gnu: sg3-utils: Download over HTTPS., guix-commits, 2023/08/03
- 05/13: gnu: cutter: Update source URL., guix-commits, 2023/08/03
- 11/13: gnu: catgirl: Don't use snapshot tarball.,
guix-commits <=