maav / guix-mirror (public) (License: GPLv3+) (since 2019-11-02) (hash sha1)
Mirror of GNU Guix (https://git.savannah.gnu.org/git/guix.git) with personal branches integrated into master branch.
List of commits:
Subject Hash Author Date (UTC)
gnu: Add cl-xmls. 7722c367bc007ca979bc7cb16e135c7ac0b864ed Adam 2020-09-30 09:17:19
gnu: Add cl-lambda-fiddle. 582d0108d6e3e225dab810e6c0c03f8a4ca33e1c Adam 2020-09-30 08:46:17
gnu: entr: Cross-compile. a5ed8e0e7ce251f0c0f0f60159c30632c0354b56 Tobias Geerinckx-Rice 2020-10-07 01:08:21
gnu: entr: Update to 4.6. 16d3630bf4126c8976f6c671b92d1257aa0f3b45 Tobias Geerinckx-Rice 2020-10-07 00:49:43
gnu: ddcutil: Update to 0.9.9. 63e4eee9b0a2c8e070016880e69b291b529a5c89 Tobias Geerinckx-Rice 2020-10-07 00:46:43
gnu: Add xnotify. 2aa393326d904e9bfa9f460c14d553b2b37f347c Oleg Pykhalov 2020-10-06 19:43:18
gnu: Add emacs-ob-sclang. 38094a4f8d56ea8f3ce200a88a2a11885c929348 Pierre Langlois 2020-10-03 11:13:50
gnu: emacs-geiser: Update to 0.12. 50110a1aa5521f286dc3cfd2571c0050eae751f3 Nicolas Goaziou 2020-10-06 19:34:23
gnu: texlive-mathpazo: Include virtual font files. 6ca673b30dac281ba27a8dac242c0ac83e5e354b Paul Garlick 2020-10-06 16:46:22
gnu: gnumeric: Update to 1.12.48. 024b273ecc8378a8206fa36052f8de3db600340c Tobias Geerinckx-Rice 2020-10-06 15:57:23
gnu: perl-digest-md5: Update to 2.58. 7721dbf98330ee5ffcdf8625a8c42132532f4025 Tobias Geerinckx-Rice 2020-10-06 13:25:13
gnu: knot: Enable XDP. 387ad8fd83dfd07575545446f27f419710dd2462 Tobias Geerinckx-Rice 2020-10-06 10:46:28
gnu: knot: Fix typo. d3413b6f87f36758fa270eac694f69c79dde3867 Tobias Geerinckx-Rice 2020-10-06 01:52:34
gnu: knot: Fix test failure on aarch64-linux. 4e869b180a94aa5bf5ae70ca48e0527e8e8db8db Simon South 2020-10-06 13:56:45
gnu: knot: Build & install the Info manual. 4756b9b1d9c1f13b21221461c6da40972a6e9cb3 Simon South 2020-10-06 13:56:44
gnu: knot: Enable DNS-over-HTTPS support in kdig. dadfc9bcd147143f019c9db337628d1b21a9594b Simon South 2020-10-06 13:56:43
Revert "build: svn: Handle fetch errors." 1ec67d5220b0ebac20263b44f4fefaf51ba8fdbb Paul Garlick 2020-10-06 13:44:09
gnu: Add texlive-mathpazo. a489d2f1f22033b1e6a2638b6f39b7f761240e2f Paul Garlick 2020-10-06 13:25:00
gnu: vim: Update to 8.2.1805. 594b2a116ea4267d88a294dd05f8dbbb8ce7bcc0 Tobias Geerinckx-Rice 2020-10-06 13:14:03
gnu: pipewire: Update to 0.3.13. e85895917505c78fc76b3396a2044ff53d16a201 Tobias Geerinckx-Rice 2020-10-06 13:10:37
Commit 7722c367bc007ca979bc7cb16e135c7ac0b864ed - gnu: Add cl-xmls.
* gnu/packages/lisp-xyz.scm (sbcl-xmls, cl-xmls, ecl-xmls): New variables.

Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>
Author: Adam
Author date (UTC): 2020-09-30 09:17
Committer name: Guillaume Le Vaillant
Committer date (UTC): 2020-10-07 09:31
Parent(s): 582d0108d6e3e225dab810e6c0c03f8a4ca33e1c
Signer:
Signing key: 6BE8208ADF21FE3F
Signing status: E
Tree: 484d902cd38197f76c0f98cb276b209eae3e06d0
File Lines added Lines deleted
gnu/packages/lisp-xyz.scm 31 0
File gnu/packages/lisp-xyz.scm changed (mode: 100644) (index c0e50e854b..9f3e52c9cf)
... ... processing.")
14145 14145
14146 14146 (define-public ecl-lambda-fiddle (define-public ecl-lambda-fiddle
14147 14147 (sbcl-package->ecl-package sbcl-lambda-fiddle)) (sbcl-package->ecl-package sbcl-lambda-fiddle))
14148
14149 (define-public sbcl-xmls
14150 (let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
14151 (revision "1"))
14152 (package
14153 (name "sbcl-xmls")
14154 (version (git-version "3.0.2" revision commit))
14155 (source
14156 (origin
14157 (method git-fetch)
14158 (uri (git-reference
14159 (url "https://github.com/rpgoldman/xmls")
14160 (commit commit)))
14161 (file-name (git-file-name name version))
14162 (sha256
14163 (base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
14164 (native-inputs
14165 `(("fiveam" ,sbcl-fiveam)))
14166 (build-system asdf-build-system/sbcl)
14167 (home-page "https://github.com/rpgoldman/xmls")
14168 (synopsis "Non-validating XML parser for Common Lisp")
14169 (description "Xmls is a self-contained, easily embedded parser that
14170 recognizes a useful subset of the XML spec. It provides a simple mapping from
14171 XML to Lisp structures or s-expressions and back.")
14172 (license license:bsd-2))))
14173
14174 (define-public cl-xmls
14175 (sbcl-package->cl-source-package sbcl-xmls))
14176
14177 (define-public ecl-xmls
14178 (sbcl-package->ecl-package sbcl-xmls))
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/maav/guix-mirror

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/maav/guix-mirror

Clone this repository using git:
git clone git://git.rocketgit.com/user/maav/guix-mirror

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main