unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 228be99bc4297d7d2cd2d1b11a5695923a1434de 4245 bytes (raw)
name: gnu/packages/cpp.scm 	 # note: path name is non-authoritative(*)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
 
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2017 Ethan R. Jones <doubleplusgood23@gmail.com>
;;; Copyright © 2017 Adonay "adfeno" Felipe Nogueira <https://libreplanet.org/wiki/User:Adfeno> <adfeno@openmailbox.org>
;;;
;;; 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 cpp)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (guix packages)
  #:use-module (guix download)
  #:use-module (guix build utils)
  #:use-module (guix build-system gnu)
  #:use-module (guix build-system trivial)
  #:use-module (gnu packages)
  #:use-module (gnu packages autotools)
  #:use-module (gnu packages base)
  #:use-module (gnu packages compression))

(define-public kashmir
  (let ((release "0")
	(commit "2f3913f49c4ac7f9bff9224db5178f6f8f0ff3ee")
	(revision 1))
    (package
     (name "kashmir")
     (version (if (zero? revision)
		  release
		  (string-append release "-"
				 (number->string revision)
				 "." (string-take commit 7))))
     (source (origin
	      (method url-fetch)
	      (uri (string-append "https://github.com/Corvusoft/" name
				  "-dependency/archive/" commit ".tar.gz"))
	      (file-name (string-append name "-" version ".tar.gz"))
	      (sha256
	       (base32
		"11hbh3d7w74gng9qgz3hdrzvxjgil1pymk2bzxv1ajh9vp60xxs9"))))
     (build-system trivial-build-system)
     (arguments
      `(#:modules ((guix build utils))
	#:builder
	(begin
	  (use-modules (guix build utils))
	  (let ((gzip (assoc-ref %build-inputs "gzip"))
		(source (assoc-ref %build-inputs "source"))
		(tar (assoc-ref %build-inputs "tar")))
	    (setenv "PATH" (string-append gzip "/bin:"
					  tar "/bin"))
	    (mkdir-p %output)
	    (system* "tar" "-xvf" source "-C" %output)
	    (chdir %output)
	    (for-each (lambda (file)
			(rename-file file "kashmir-dependency"))
		      (find-files "." "kashmir-dependency-" #:directories? #t))))))
     (native-inputs
      `(("source" ,source)
	("tar" ,tar)
	("gzip" ,gzip)))
     (synopsis "C++ library providing I/O, MD5, SHA-1, random number string, and UUID operations")
     (description "The Kashmir Library provides features allowing usage of I/O formatting and state saving; MD5 and SHA-1 hashing; random number streams, and UUID generation.")
     (home-page "https://github.com/corvusoft/kashmir-dependency")
     (license license:boost1.0))))

(define-public libzen
  (package
    (name "libzen")
    (version "0.4.35")
    (source (origin
              (method url-fetch)
              (uri (string-append "https://mediaarea.net/download/source/"
                                  name "/" version "/"
                                  name "_" version ".tar.bz2"))
              (sha256
               (base32
                "12a1icgcffgv503ii2k1453kxg5hfly09mf4zjcc80aq8a6rf8by"))))
    (native-inputs
     `(("autoconf" ,autoconf)
       ("automake" ,automake)
       ("libtool" ,libtool)))
    (build-system gnu-build-system)
    (arguments
     '(#:phases
       ;; build scripts not in root of archive
       (modify-phases %standard-phases
         (add-before 'configure 'pre-configure
           (lambda _
             (chdir "Project/GNU/Library")))
         (add-before 'configure 'autogen
           (lambda _
             (zero? (system* "./autogen.sh")))))))
    (home-page "https://github.com/MediaArea/ZenLib")
    (synopsis "C++ utility library")
    (description "ZenLib is a C++ utility library.  It includes classes for handling
strings, configuration, bit streams, threading, translation, and cross-platform
operating system functions.")
    (license license:zlib)))

debug log:

solving 228be99 ...
found 228be99 in https://yhetil.org/guix-patches/8737apqrlj.fsf@openmailbox.org/
found da19255 in https://git.savannah.gnu.org/cgit/guix.git
preparing index
index prepared:
100644 da192553a53acaa476388d66af2a6d3e35b9c926	gnu/packages/cpp.scm

applying [1/1] https://yhetil.org/guix-patches/8737apqrlj.fsf@openmailbox.org/
diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index da19255..228be99 100644

Checking patch gnu/packages/cpp.scm...
Applied patch gnu/packages/cpp.scm cleanly.

index at:
100644 228be99bc4297d7d2cd2d1b11a5695923a1434de	gnu/packages/cpp.scm

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

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