all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Andreas Enge <andreas@enge.fr>
To: bug-guix@gnu.org
Subject: Re: Pango
Date: Sat, 15 Jun 2013 09:13:11 +0200	[thread overview]
Message-ID: <201306150913.13992.andreas@enge.fr> (raw)
In-Reply-To: <51BBCA61.3090706@gmail.com>

[-- Attachment #1: Type: Text/Plain, Size: 611 bytes --]

Am Samstag, 15. Juni 2013 schrieb Cyril Roelandt:
> In 6131c43d, you also added "git.scm" to Makefile.am. I think it should
> be removed.

Thanks for spotting this! How about you remove the line at the same time as 
applying your patch moving subversion.scm into version-control.scm?

> Btw, are you working on packaging git ? If so, I think the code should
> be in gnu/packages/version-control.scm rather than in a new file.

Indeed, but it failed its tests and looked painful to debug ;-)

I am attaching my current efforts; if you or someone else would like to 
pick up from there, you are welcome.

Andreas

[-- Attachment #2: git.scm --]
[-- Type: text/x-scheme, Size: 2757 bytes --]

;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu packages git)
  #:use-module ((guix licenses)
                #:renamer (symbol-prefix-proc 'license:))
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu)
  #:use-module (gnu packages)
  #:use-module (gnu packages compression)
  #:use-module (gnu packages curl)
  #:use-module ((gnu packages gettext)
                #:renamer (symbol-prefix-proc 'gnu:))
  #:use-module (gnu packages openssl)
  #:use-module (gnu packages perl)
  #:use-module (gnu packages python)
  #:use-module (gnu packages xml))

(define-public git
  (package
   (name "git")
   (version "1.8.2.2")
   (source (origin
            (method url-fetch)
            (uri (string-append "http://git-core.googlecode.com/files/git-"
                                version ".tar.gz"))
            (sha256
             (base32
              "152757vwdzr0lphv9skb60xijj0r46cp83s6pvhvcarhva7f6382"))))
   (build-system gnu-build-system)
   (inputs
    `(("curl" ,curl)
      ("expat" ,expat)
      ("gettext" ,gnu:gettext)
      ("openssl" ,openssl)
      ("perl" ,perl)
      ("python" ,python)
      ("zlib" ,zlib)))
   (arguments
    `(#:test-target "test"
      #:phases
       (alist-replace
        'configure
        (lambda* (#:key #:allow-other-keys #:rest args)
          (let ((configure (assoc-ref %standard-phases 'configure)))
          (apply configure args)
          (substitute* "Makefile"
            (("/bin/sh") (which "sh"))
            (("/usr/bin/perl") (which "perl"))
            (("/usr/bin/python") (which "python")))))
         %standard-phases)))
   (synopsis "distributed version control system")
   (description
    "Git is a free distributed version control system designed to handle
everything from small to very large projects with speed and efficiency.")
   (license license:gpl2)
   (home-page "http://git-scm.com/")))

  reply	other threads:[~2013-06-15  7:13 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-13 21:19 Demain Andreas Enge
2013-06-13 21:37 ` Demain Andreas Enge
2013-06-13 23:49   ` Demain Cyril Roelandt
2013-06-14  7:52     ` Demain Andreas Enge
2013-06-14 12:29   ` Demain Ludovic Courtès
2013-06-14 21:25     ` Pango Andreas Enge
2013-06-14 21:34       ` Pango Andreas Enge
2013-06-15  8:12         ` Pango Andreas Enge
2013-06-15  8:29           ` Pango Andreas Enge
2013-06-15 13:17           ` Pango Ludovic Courtès
2013-06-15 13:31             ` Pango Andreas Enge
2013-06-15 13:49               ` Pango Ludovic Courtès
2013-06-15 14:07                 ` Pango Andreas Enge
     [not found]                   ` <87sj0j3yzh.fsf@gnu.org>
2013-06-15 20:55                     ` Pango Andreas Enge
2013-06-15 12:57         ` Pango Ludovic Courtès
2013-06-15  1:58       ` Pango Cyril Roelandt
2013-06-15  7:13         ` Andreas Enge [this message]
2013-06-15 13:14           ` Pango Ludovic Courtès
2013-06-15 12:56       ` Pango Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201306150913.13992.andreas@enge.fr \
    --to=andreas@enge.fr \
    --cc=bug-guix@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.