unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
blob d9904ea7da8516a4e6e0809e2e8f5762af0261df 7799 bytes (raw)
name: etc/snippets/tempel/scheme-mode.eld 	 # 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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
 
-*- mode: lisp-data -*-

scheme-mode

(package...
 "(define-public " (s name) n>
 "(package" n>
 "(name \"" (s name) "\")" n>
 "(version \"" p "\")" n>
 "(source origin..." p ")" n>
 "(build-system \""
 (p (completing-read "build-system:"
                     '("android-ndk-build-system"
                       "ant-build-system"
                       "asdf-build-system"
                       "cargo-build-system"
                       "chicken-build-system"
                       "clojure-build-system"
                       "cmake-build-system"
                       "copy-build-system"
                       "dub-build-system"
                       "dune-build-system"
                       "emacs-build-system"
                       "font-build-system"
                       "glib-or-gtk-build-system"
                       "gnu-build-system"
                       "go-build-system"
                       "guile-build-system"
                       "haskell-build-system"
                       "julia-build-system"
                       "linux-module-build-system"
                       "maven-build-system"
                       "meson-build-system"
                       "minetest-build-system"
                       "minify-build-system"
                       "node-build-system"
                       "ocaml-build-system"
                       "perl-build-system"
                       "python-build-system"
                       "qt-build-system"
                       "r-build-system"
                       "rakudo-build-system"
                       "rebar-build-system"
                       "renpy-build-system"
                       "ruby-build-system"
                       "scons-build-system"
                       "texlive-build-system"
                       "trivial-build-system"
                       "waf-build-system")
                     nil t)) "\")" n>
 "(home-page \"" p "\")" n>
 "(synopsis \"" p "\")" n>
 "(description \"" p "\")" n>
 "(license " p ")))" n)

(origin...
 "(origin" n>
 "(method \""
 (p (completing-read "method:"
                     '("url-fetch"
                       "url-fetch/tarbomb"
                       "url-fetch/zipbomb"
                       "cvs-fetch"
                       "git-fetch"
                       "hg-fetch"
                       "svn-fetch"
                       "bzr-fetch")
                     nil t) method) "\")" n>
 "(uri " (cl-case (intern method)
           ('git-fetch "git-reference...")
           ('svn-fetch "svn-reference...")
           ('hg-fetch  "hg-reference...")
           ('cvs-fetch "cvs-reference...")
           ('bzr-fetch "bzr-reference...")
           (t          "(string-append \"https://"))
 p
 (if (equal (substring method 0 9)  "url-fetch") "\")")
 ")" n>
 (cl-case (intern method)
   ('git-fetch "(file-name (git-file-name name version))\n")
   ('hg-fetch "(file-name (hg-file-name name version))\n")
   ('svn-fetch "(file-name (string-append name \"-\" version \"-checkout\"))\n")
   ('cvs-fetch "(file-name (string-append name \"-\" version \"-checkout\"))\n")
   ('bzr-fetch "(file-name (string-append name \"-\" version \"-checkout\"))\n")
   (t          "")) >
 "(sha256" n> "(base32 \"" p "\")))")

(git-reference...
 "(git-reference" n>
 "(url \"" p "\")" n>
 "(commit \"" p "\"))")

(svn-reference...
 "(svn-reference" n>
 "(url \"" p "\")" n>
 "(revision \"" p "\"))")

(cvs-reference...
 "(cvs-reference" n>
 "(root-directory \"" p "\")" n>
 "(module \"" p "\")" n>
 "(revision \"" p "\"))")

(hg-reference...
 "(hg-reference" n>
 "(url \"" p "\")" n>
 "(changeset \"" p "\"))")

(bzr-reference...
 "(bzr-reference" n>
 "(url \"" p "\")" n>
 "(revision \"" p "\"))")

(:phases
 ":phases (modify-phases %standard-phases" n>
 "(" (p (completing-read "modify:"
                         '("add-before"
                           "replace"
                           "add-after"
                           "delete ")
                         nil t))
 " '" q "))" )

(license:
 "license:"
 (p (completing-read "license:"
                     '("agpl1"
                       "agpl3"
                       "agpl3+"
                       "apsl2"
                       "asl1.1"
                       "asl2.0"
                       "boost1.0"
                       "bsd-0"
                       "bsd-1"
                       "bsd-2"
                       "bsd-3"
                       "bsd-4"
                       "non-copyleft"
                       "cc0"
                       "cc-by-sa4.0"
                       "cc-by-sa3.0"
                       "cc-by-sa2.0"
                       "cc-by4.0"
                       "cc-by3.0"
                       "cc-by2.0"
                       "cddl1.0"
                       "cddl1.1"
                       "cecill"
                       "cecill-b"
                       "cecill-c"
                       "artistic2.0"
                       "clarified-artistic"
                       "copyleft-next"
                       "cpl1.0"
                       "cua-opl1.0"
                       "edl1.0"
                       "epl1.0"
                       "epl2.0"
                       "eupl1.2"
                       "expat"
                       "expat-0"
                       "freetype"
                       "giftware"
                       "gpl1"
                       "gpl1+"
                       "gpl2"
                       "gpl2+"
                       "gpl3"
                       "gpl3+"
                       "gfl1.0"
                       "fdl1.1+"
                       "fdl1.2+"
                       "fdl1.3+"
                       "freebsd-doc"
                       "opl1.0+"
                       "osl2.1"
                       "isc"
                       "ijg"
                       "ibmpl1.0"
                       "imlib2"
                       "ipa"
                       "knuth"
                       "lal1.3"
                       "lgpl2.0"
                       "lgpl2.0+"
                       "lgpl2.1"
                       "lgpl2.1+"
                       "lgpl3"
                       "lgpl3+"
                       "llgpl"
                       "lppl"
                       "lppl1.0+"
                       "lppl1.1+"
                       "lppl1.2"
                       "lppl1.2+"
                       "lppl1.3"
                       "lppl1.3+"
                       "lppl1.3a"
                       "lppl1.3a+"
                       "lppl1.3b"
                       "lppl1.3b+"
                       "lppl1.3c"
                       "lppl1.3c+"
                       "miros"
                       "mpl1.0"
                       "mpl1.1"
                       "mpl2.0"
                       "ms-pl"
                       "ncsa"
                       "nmap"
                       "ogl-psi1.0"
                       "openssl"
                       "openldap2.8"
                       "perl-license"
                       "psfl"
                       "public-domain"
                       "qpl"
                       "qwt1.0"
                       "repoze"
                       "ruby"
                       "sgifreeb2.0"
                       "silofl1.1"
                       "sleepycat"
                       "tcl/tk"
                       "vim"
                       "unicode"
                       "unlicense"
                       "w3c"
                       "wtfpl2"
                       "wxwindows3.1+"
                       "x11"
                       "x11-style"
                       "zpl2.1"
                       "zlib"
                       "hpnd"
                       "fsf-free"
                       "fsdg-compatible")
                     nil t)))

debug log:

solving d9904ea7da ...
found d9904ea7da in https://yhetil.org/guix-patches/20220809102440.10570-3-ngraves@ngraves.fr/
found eb209d599a in https://yhetil.org/guix-patches/20220809102440.10570-2-ngraves@ngraves.fr/
found ac48a1038b in https://yhetil.org/guix-patches/20220809102440.10570-1-ngraves@ngraves.fr/

applying [1/3] https://yhetil.org/guix-patches/20220809102440.10570-1-ngraves@ngraves.fr/
diff --git a/etc/snippets/tempel/scheme-mode.eld b/etc/snippets/tempel/scheme-mode.eld
new file mode 100644
index 0000000000..ac48a1038b


applying [2/3] https://yhetil.org/guix-patches/20220809102440.10570-2-ngraves@ngraves.fr/
diff --git a/etc/snippets/tempel/scheme-mode.eld b/etc/snippets/tempel/scheme-mode.eld
index ac48a1038b..eb209d599a 100644


applying [3/3] https://yhetil.org/guix-patches/20220809102440.10570-3-ngraves@ngraves.fr/
diff --git a/etc/snippets/tempel/scheme-mode.eld b/etc/snippets/tempel/scheme-mode.eld
index eb209d599a..d9904ea7da 100644

Checking patch etc/snippets/tempel/scheme-mode.eld...
Applied patch etc/snippets/tempel/scheme-mode.eld cleanly.
Checking patch etc/snippets/tempel/scheme-mode.eld...
Applied patch etc/snippets/tempel/scheme-mode.eld cleanly.
Checking patch etc/snippets/tempel/scheme-mode.eld...
Applied patch etc/snippets/tempel/scheme-mode.eld cleanly.

index at:
100644 d9904ea7da8516a4e6e0809e2e8f5762af0261df	etc/snippets/tempel/scheme-mode.eld

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