[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: gnu: rtags: Don't use unstable tarball.
From: |
Tobias Geerinckx-Rice |
Subject: |
01/10: gnu: rtags: Don't use unstable tarball. |
Date: |
Wed, 3 Oct 2018 22:21:26 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 84ae0e29fd4fea418db450aa42b611b6d90d962e
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Wed Oct 3 22:31:03 2018 +0200
gnu: rtags: Don't use unstable tarball.
* gnu/packages/code.scm (rtags)[source]: Use GIT-FETCH and GIT-FILE-NAME.
---
gnu/packages/code.scm | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 4264e29..98a86b7 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -403,13 +403,13 @@ functionality such as HTML output.")
(package
(name "rtags")
(version "2.18")
- (home-page "https://github.com/Andersbakken/rtags")
(source
(origin
- (method url-fetch)
- (uri
- (string-append home-page "/archive/v" version ".tar.gz"))
- (file-name (string-append name "-" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Andersbakken/rtags.git")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
(patches (search-patches "rtags-separate-rct.patch"))
(modules '((guix build utils)))
(snippet
@@ -424,7 +424,7 @@ functionality such as HTML output.")
#t)))
(sha256
(base32
- "0scjbp1z201q8njvrxqz7lk2m9b6k2rxd5q1shrng6532r7ndif2"))))
+ "0raqjbkl1ykga4ahgl9xw49cgh3cyqcf42z36z7d6fz1fw192kg0"))))
(build-system cmake-build-system)
(arguments
'(#:build-type "RelWithDebInfo"
@@ -442,6 +442,7 @@ functionality such as HTML output.")
("lua" ,lua)
("rct" ,rct)
("selene" ,selene)))
+ (home-page "https://github.com/Andersbakken/rtags")
(synopsis "Indexer for the C language family with Emacs integration")
(description
"RTags is a client/server application that indexes C/C++ code and keeps a
- branch master updated (5165fb4 -> 9e783d0), Tobias Geerinckx-Rice, 2018/10/03
- 08/10: gnu: disorderfs: Update to 0.5.4., Tobias Geerinckx-Rice, 2018/10/03
- 07/10: gnu: packagekit: Update to 1.1.11., Tobias Geerinckx-Rice, 2018/10/03
- 10/10: gnu: ddcutil: Update to 0.9.2., Tobias Geerinckx-Rice, 2018/10/03
- 04/10: gnu: rubberband: Use HTTPS home page., Tobias Geerinckx-Rice, 2018/10/03
- 01/10: gnu: rtags: Don't use unstable tarball.,
Tobias Geerinckx-Rice <=
- 02/10: gnu: Add memtest86+., Tobias Geerinckx-Rice, 2018/10/03
- 03/10: gnu: Add memtester., Tobias Geerinckx-Rice, 2018/10/03
- 06/10: gnu: Add freedroidrpg., Tobias Geerinckx-Rice, 2018/10/03
- 09/10: gnu: ndctl: Return #t from phases., Tobias Geerinckx-Rice, 2018/10/03
- 05/10: gnu: wpa-supplicant-gui: Remove redundant code., Tobias Geerinckx-Rice, 2018/10/03