all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Nikita Karetnikov <nikita.karetnikov@gmail.com>
To: bug-guix@gnu.org
Subject: Re: attr: No rule to make target `check'.
Date: Thu, 6 Dec 2012 01:54:52 +0300	[thread overview]
Message-ID: <CAD15K4u5Lt_1DcTOdGEBROf-qRaxH20paT_1ZQxiBDRBkG1F_A@mail.gmail.com> (raw)
In-Reply-To: <877gowqlu9.fsf@gnu.org>

[-- Attachment #1: Type: text/plain, Size: 999 bytes --]

How to patch it?

# ./pre-inst-env guix-build -K acl

[...]

gcc: error: /nix/store/iwvgjdll9yw44sixry38z003n1bzikz7-attr-2.4.46/lib/libattr.so:
No such file or directory
make[2]: *** [libacl.la] Error 1
make[2]: Leaving directory
`/tmp/nix-build-k7515033a3ramdqzsgj231gyp60kmnn9-acl-2.2.51.drv-1/acl-2.2.51/libacl'
make[1]: *** [libacl] Error 2
make[1]: Leaving directory
`/tmp/nix-build-k7515033a3ramdqzsgj231gyp60kmnn9-acl-2.2.51.drv-1/acl-2.2.51'
make: *** [default] Error 2
note: keeping build directory
`/tmp/nix-build-k7515033a3ramdqzsgj231gyp60kmnn9-acl-2.2.51.drv-1'
builder for `/nix/store/k7515033a3ramdqzsgj231gyp60kmnn9-acl-2.2.51.drv'
failed with exit code 1
@ build-failed /nix/store/k7515033a3ramdqzsgj231gyp60kmnn9-acl-2.2.51.drv
/nix/store/xk17p6kya207hhyvfla8nvaiv18wcf1l-acl-2.2.51 1 builder for
`/nix/store/k7515033a3ramdqzsgj231gyp60kmnn9-acl-2.2.51.drv' failed
with exit code 1
error: build failed: build of
`/nix/store/k7515033a3ramdqzsgj231gyp60kmnn9-acl-2.2.51.drv' failed

[-- Attachment #2: attr.scm --]
[-- Type: application/octet-stream, Size: 2216 bytes --]

;;; Guix --- Nix package management from Guile.         -*- coding: utf-8 -*-
;;; Copyright (C) 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;; Copyright (C) 2012 Ludovic Courtès <ludo@gnu.org>
;;;
;;; This file is part of Guix.
;;;
;;; 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.
;;;
;;; 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 Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (distro packages attr)
  #:use-module ((distro packages gettext)
                #:renamer (symbol-prefix-proc 'guix:))
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public attr
  (package
    (name "attr")
    (version "2.4.46")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://savannah/attr/attr-"
                          version ".src.tar.gz"))
      (sha256
       (base32
        "07qf6kb2zk512az481bbnsk9jycn477xpva1a726n5pzlzf9pmnw"))))
    (build-system gnu-build-system)
    (arguments '(#:phases
                 (alist-replace 'install
                                (lambda _
                                  (zero? (system* "make" "install-dev")))
                                (alist-replace 'check
                                               (lambda _
                                                 (zero? (system* "test/run")))
                                               %standard-phases))))
    (inputs `(("gettext" ,guix:gettext)))
    (home-page
     "http://savannah.nongnu.org/projects/attr/")
    (synopsis
     "Library and tools for manipulating extended attributes")
    (description
     "Library and tools for manipulating extended attributes.")
    (license '("GPLv2+" "LGPLv2.1+"))))

[-- Attachment #3: acl.scm --]
[-- Type: application/octet-stream, Size: 1769 bytes --]

;;; Guix --- Nix package management from Guile.         -*- coding: utf-8 -*-
;;; Copyright (C) 2012 Nikita Karetnikov <nikita@karetnikov.org>
;;;
;;; This file is part of Guix.
;;;
;;; 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.
;;;
;;; 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 Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (distro packages acl)
  #:use-module (distro packages attr)
  #:use-module ((distro packages gettext)
                #:renamer (symbol-prefix-proc 'guix:))
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build-system gnu))

(define-public acl
  (package
    (name "acl")
    (version "2.2.51")
    (source
     (origin
      (method url-fetch)
      (uri (string-append "mirror://savannah/acl/acl-"
                          version ".src.tar.gz"))
      (sha256
       (base32
        "09aj30m49ivycl3irram8c3givc0crivjm3ymw0nhfaxrwhlb186"))))
    (build-system gnu-build-system)
    (inputs `(("attr" ,attr) ("gettext" ,guix:gettext)))
    (home-page
     "http://savannah.nongnu.org/projects/acl")
    (synopsis
     "Library and tools for manipulating access control lists")
    (description
     "Library and tools for manipulating access control lists.")
    (license '("GPLv2+" "LGPLv2.1+"))))

  reply	other threads:[~2012-12-05 22:55 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-12-05  6:31 attr: No rule to make target `check' Nikita Karetnikov
2012-12-05 11:53 ` Ludovic Courtès
2012-12-05 16:11   ` Nikita Karetnikov
2012-12-05 20:34     ` Ludovic Courtès
2012-12-05 22:54       ` Nikita Karetnikov [this message]
2012-12-05 23:13         ` Ludovic Courtès
2012-12-05 23:25           ` Nikita Karetnikov
2012-12-06 10:03             ` Ludovic Courtès
2012-12-06 20:37               ` Nikita Karetnikov
2012-12-06 20:38                 ` Nikita Karetnikov
2012-12-06 22:00                   ` Ludovic Courtès
2012-12-05 23:30           ` Nikita Karetnikov
2012-12-05 23:34             ` Nikita Karetnikov

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=CAD15K4u5Lt_1DcTOdGEBROf-qRaxH20paT_1ZQxiBDRBkG1F_A@mail.gmail.com \
    --to=nikita.karetnikov@gmail.com \
    --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.