unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob 6a96668d9b6ca17333061d3f35f43cd10774ccc9 5566 bytes (raw)
name: modules/past/packages/assembly.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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
 
;;; Guix Past --- Packages from the past for GNU Guix.
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
;;;
;;; This file is part of Guix Past.
;;;
;;; Guix Past 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 Past 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 Past.  If not, see <http://www.gnu.org/licenses/>.

(define-module (past packages assembly)
  #:use-module (guix)
  #:use-module (guix git-download)
  #:use-module ((guix licenses) #:prefix license:)
  #:use-module (gnu packages assembly))

(define (rgbds-with-version version source-hash)
  (package
    (inherit rgbds)
    (name "rgbds")
    (version version)
    (source (origin
              (method git-fetch)
              (uri (git-reference
                    (url "https://github.com/rednex/rgbds.git")
                    (commit (string-append "v" version))))
              (file-name (git-file-name name version))
              (sha256 (base32 source-hash))))))

;; The tests are failing for the 0.2 releases, the ones before 0.2.3 don't even
;; provide them
(define (without-tests base-rgbds)
  (package
    (inherit base-rgbds)
    (arguments
      (substitute-keyword-arguments (package-arguments base-rgbds)
        ((#:phases phases)
         `(modify-phases ,phases
            (delete 'check)))))))

;; RGBDS versions before 0.1.2 fail to build.

(define-public rgbds-0.1.2
  (let ((base-rgbds
          (rgbds-with-version
            "0.1.2" "1haqswx50hsgfanz9j17y437ciwvbq8lpw445zfiqipawh45a415")))
    (package
      (inherit (without-tests base-rgbds))
      (license (license:non-copyleft "file://LICENSE")))))

(define-public rgbds-0.2.0
  (let ((base-rgbds
          (rgbds-with-version
            "0.2.0" "1q9jci95jrvgc2cyzpsskx92l4m3sv3jyy59bmld3qhqh3nw6jwd")))
    (package
      (inherit (without-tests base-rgbds))
      (license (license:non-copyleft "file://LICENSE")))))

(define-public rgbds-0.2.1
  (let ((base-rgbds
          (rgbds-with-version
            "0.2.1" "06hxdq4b9y4bd8c89x4baia18s34814jikgj86d0hjxkqx4ki204")))
    (package
      (inherit (without-tests base-rgbds))
      (license (license:non-copyleft "file://LICENSE")))))

(define-public rgbds-0.2.2
  (let ((base-rgbds
          (rgbds-with-version
            "0.2.2" "0ga6myr737wxvbldm886chxca2d6i5jnbzqac0xakf87il1i6kb3")))
    (package
      (inherit (without-tests base-rgbds))
      (license (license:non-copyleft "file://LICENSE")))))

(define-public rgbds-0.2.3
  (let ((base-rgbds
          (rgbds-with-version
            "0.2.3" "05fkqrn0fiins61aq3iwzmkm0ii5ihqskv2xv0wk8xd8fp4j2ga1")))
    (package
      (inherit (without-tests base-rgbds))
      (license (license:non-copyleft "file://LICENSE")))))

(define-public rgbds-0.2.4
  (let ((base-rgbds
          (rgbds-with-version
            "0.2.4" "0dwq0p9g1lci8sm12a2rfk0g33z2vr75x78zdf1g84djwbz8ipc6")))
    (package
      (inherit (without-tests base-rgbds))
      (license (license:non-copyleft "file://LICENSE")))))

(define-public rgbds-0.2.5
  (let ((base-rgbds
          (rgbds-with-version
            "0.2.5" "11lri6p1pr3byxrmbz542263587smb4czq46vr1kyn94lxa3ikbp")))
    (package
      (inherit (without-tests base-rgbds))
      (license (license:non-copyleft "file://LICENSE")))))

(define-public rgbds-0.3.0
  (let ((base-rgbds
          (rgbds-with-version
            "0.3.0" "19gk9lakrpn46waxvd4v8fa86xig006r1xvhgqw2acdc50xnxqmk")))
    (package
      (inherit base-rgbds)
      (license (license:non-copyleft "file://LICENSE.md")))))

(define-public rgbds-0.3.1
  (let ((base-rgbds
          (rgbds-with-version
            "0.3.1" "1bx5yhdyp22q3k9x2kly54pmq78aikx8pmygbhz34mgv8n5w4qss")))
    (package
      (inherit base-rgbds)
      (license (license:non-copyleft "file://LICENSE.md")))))

(define-public rgbds-0.3.2
  (let ((base-rgbds
          (rgbds-with-version
            "0.3.2" "034l1xqp46h7yjgbvszyky2gmvyy8cq1fcqsnj9c92mbsv81g9qh")))
    (package
      (inherit base-rgbds)
      (license (license:non-copyleft "file://LICENSE.md")))))

(define-public rgbds-0.3.3
  (let ((base-rgbds
          (rgbds-with-version
            "0.3.3" "1dsw01ylbfqjbwv13n6yxjyakqmlfsvmlzv6h83df5mpix6mjfxv")))
    (package
      (inherit base-rgbds)
      (license (license:non-copyleft "file://LICENSE.md")))))

;; Skipping 0.3.4 and 0.3.6: potentially silent bugs mentioned in release notes,
;; and the releases are short-lived.

(define-public rgbds-0.3.5
  (rgbds-with-version "0.3.5" "1wxrvqrwg72rys4jhsk7id7lmvv40gw6xpn4sg29f8alfpc2bsry"))

(define-public rgbds-0.3.7
  (rgbds-with-version "0.3.7" "1bj082zi8lxrkkbsg5kvx6k1hkl156pqbxpblpidamk6qxqyssb9"))

(define-public rgbds-0.3.8
  (rgbds-with-version "0.3.8" "0db37z886026svhj6qnc3wk56sndbnz1vi41gn2k3bl6ppbnjlpk"))

;; Skipping 0.3.9 - from release notes:
;;   This version is missing definitions of the `__RGBDS_MAJOR__` etc. symbols.
;;   Please use 0.3.10 instead, which rectifies this problem (and does not
;;   introduce additional changes).

(define-public rgbds-0.3.10
  (rgbds-with-version "0.3.10" "0752fbffxgxyf3jw2iij88l05dqhppgcxy7dvk82hp4wdg4cflpq"))

debug log:

solving 8b6e4e0 ...
found 8b6e4e0 in https://yhetil.org/guix-patches/20200712160206.6768-1-kuba@kadziolka.net/

applying [1/1] https://yhetil.org/guix-patches/20200712160206.6768-1-kuba@kadziolka.net/
diff --git a/modules/past/packages/assembly.scm b/modules/past/packages/assembly.scm
new file mode 100644
index 0000000..8b6e4e0

Checking patch modules/past/packages/assembly.scm...
Applied patch modules/past/packages/assembly.scm cleanly.

index at:
100644 6a96668d9b6ca17333061d3f35f43cd10774ccc9	modules/past/packages/assembly.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).