unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#31234] [PATCH] gnu: Add src.
@ 2018-04-22  3:09 宋文武
  2018-04-22 21:50 ` Ludovic Courtès
  2018-04-26  1:29 ` bug#31234: Status: " 宋文武
  0 siblings, 2 replies; 4+ messages in thread
From: 宋文武 @ 2018-04-22  3:09 UTC (permalink / raw)
  To: 31234; +Cc: 宋文武

* gnu/packages/version-control.scm (src): New variable.
---
 gnu/packages/version-control.scm | 50 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 50 insertions(+)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 71ede4f54..b82abaf9e 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -18,6 +18,7 @@
 ;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
 ;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
 ;;; Copyright © 2017 Oleg Pykhalov <go.wigust@gmail.com>
+;;; Copyright © 2018 Sou Bunnbu <iyzsong@member.fsf.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1912,3 +1913,52 @@ repository is the centre, directories are branches and files are leaves.
 Contributors to the source code appear and disappear as they contribute to
 specific files and directories.")
     (license license:gpl3+)))
+
+(define-public src
+  (package
+    (name "src")
+    (version "1.18")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "http://www.catb.org/~esr/src/src-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0n0skhvya8w2az45h2gsafxy8m2mvqas64nrgxifcmrzfv0rf26c"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:make-flags
+       (list (string-append "prefix=" (assoc-ref %outputs "out")))
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)            ; no 'configure' script
+         (add-after 'install 'wrap-program
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             (let* ((out  (assoc-ref outputs "out"))
+                    (prog (string-append out "/bin/src"))
+                    (rcs  (assoc-ref inputs "rcs")))
+               (wrap-program prog
+                 `("PATH" ":" prefix (,(string-append rcs "/bin"))))
+               #t)))
+         (replace 'check
+           (lambda _
+             (setenv "HOME" (getenv "TMPDIR"))
+             (invoke "git" "config" "--global" "user.name" "guix")
+             (invoke "git" "config" "--global" "user.email" "guix")
+             (invoke "./srctest"))))))
+    (native-inputs
+     ;; For testing.
+     `(("git" ,git)
+       ("perl" ,perl)))
+    (inputs
+     `(("python" ,python-wrapper)
+       ("rcs" ,rcs)))
+    (synopsis "Simple revision control")
+    (home-page "http://www.catb.org/~esr/src/")
+    (description
+     "SRC (or src) is simple revision control, a version-control system for
+single-file projects by solo developers and authors.  It modernizes the
+venerable RCS, hence the anagrammatic acronym.  The design is tuned for use
+cases like all those little scripts in your @file{~/bin} directory, or a
+directory full of HOWTOs.")
+    (license license:bsd-2)))
-- 
2.13.3

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#31234] [PATCH] gnu: Add src.
  2018-04-22  3:09 [bug#31234] [PATCH] gnu: Add src 宋文武
@ 2018-04-22 21:50 ` Ludovic Courtès
  2018-04-23  3:26   ` 宋文武
  2018-04-26  1:29 ` bug#31234: Status: " 宋文武
  1 sibling, 1 reply; 4+ messages in thread
From: Ludovic Courtès @ 2018-04-22 21:50 UTC (permalink / raw)
  To: 宋文武; +Cc: 31234

Hello 宋文武,

宋文武 <iyzsong@member.fsf.org> skribis:

> * gnu/packages/version-control.scm (src): New variable.

LGTM, thanks!

Ludo'.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#31234] [PATCH] gnu: Add src.
  2018-04-22 21:50 ` Ludovic Courtès
@ 2018-04-23  3:26   ` 宋文武
  0 siblings, 0 replies; 4+ messages in thread
From: 宋文武 @ 2018-04-23  3:26 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 31234

ludo@gnu.org (Ludovic Courtès) writes:

> Hello 宋文武,
>
> 宋文武 <iyzsong@member.fsf.org> skribis:
>
>> * gnu/packages/version-control.scm (src): New variable.
>
> LGTM, thanks!

Pushed, thanks!

^ permalink raw reply	[flat|nested] 4+ messages in thread

* bug#31234: Status: [PATCH] gnu: Add src.
  2018-04-22  3:09 [bug#31234] [PATCH] gnu: Add src 宋文武
  2018-04-22 21:50 ` Ludovic Courtès
@ 2018-04-26  1:29 ` 宋文武
  1 sibling, 0 replies; 4+ messages in thread
From: 宋文武 @ 2018-04-26  1:29 UTC (permalink / raw)
  To: bug#31234


Done in commit 0ed7498a460af9b0175d3f6919858d0d40d5ccc1.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-04-26  1:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-22  3:09 [bug#31234] [PATCH] gnu: Add src 宋文武
2018-04-22 21:50 ` Ludovic Courtès
2018-04-23  3:26   ` 宋文武
2018-04-26  1:29 ` bug#31234: Status: " 宋文武

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).