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: libtsm: Remove bundled libxkbcommon header. 681bf1b2e68b2abe4f6d7f9ca52b5f505b5b82e8 Tobias Geerinckx-Rice 2020-10-06 12:32:35
gnu: libtsm: Make all inputs native. 9bb8a84623355abcedc9b020b5abfd6f2e48ebc9 Tobias Geerinckx-Rice 2020-10-06 12:30:19
gnu: stockfish: Update to 12. b343f5d8fdea44ebcf2e8459f4a3b1ce7da07df2 Michael Rohleder 2020-10-06 10:32:57
gnu: r-gqtlbase: Update to 1.20.4. 73a2fe4ab75754418b90c73494adf5542e8f172f Ricardo Wurmus 2020-10-06 11:12:11
gnu: r-rhdf5: Update to 2.32.3. 906c79d1a3c94ffa544473651e9e8cef60b122cd Ricardo Wurmus 2020-10-06 11:12:08
gnu: r-biocstyle: Update to 2.16.1. 78d9fbd2fd88b1811c52228abe978a5a743bc347 Ricardo Wurmus 2020-10-06 11:12:05
gnu: r-bgx: Update to 1.54.1. 7337615d1c31017800bb3eaf02b1b25ebac5becc Ricardo Wurmus 2020-10-06 11:12:02
gnu: r-xcms: Update to 3.10.2. 40b86e20eb87cbdf095d102ff9537b6419a13735 Ricardo Wurmus 2020-10-06 11:11:59
gnu: r-atacseqqc: Update to 1.12.5. 56bca8965acb56c581841935c268dc323db7a173 Ricardo Wurmus 2020-10-06 11:11:56
gnu: r-gosemsim: Update to 2.14.2. f000fab88ffdaf67f6564eed8b43204697907f50 Ricardo Wurmus 2020-10-06 11:11:53
gnu: r-karyoploter: Update to 1.14.1. d7314e4747389b4671c17ddc5fafd479a9487d7e Ricardo Wurmus 2020-10-06 11:11:50
gnu: r-diffbind: Update to 2.16.2. dce2d06fccac0891bb2efd6f63c00967f1c14b23 Ricardo Wurmus 2020-10-06 11:11:40
gnu: sbcl-cl-base64: Declare a source file-name. 49ae5f79acb0d044ad2ff0f1788244051f131c24 Efraim Flashner 2020-10-06 10:46:35
gnu: memkind: Declare a source file-name. 186b8dff2a32cd7d0b5831fe1545e89a3b6893c6 Efraim Flashner 2020-10-06 10:45:35
gnu: python-tox: Update to 3.20.0. a90964c982be3df34ef0ac91e349108264f27c18 Joseph LaFreniere 2020-10-06 01:27:35
gnu: Add emacs-python-black. 5b7e8b595e7fa5338ce2bc8adf5a09f29ad83669 Joseph LaFreniere 2020-10-04 22:29:36
gnu: Add python-black-macchiato. d4a81f5b0c17c51155e96250cbde7342e386773c Joseph LaFreniere 2020-10-04 22:29:17
gnu: zrythm: Update to 1.0.0-alpha.3.0.1. f7c031d15565f9858afbfd9f92e264186880959b Alexandros Theodotou 2020-10-02 17:19:00
gnu: stockfish: Fix typo in description. 8416f0f26cf2904de23ac20fba5d122cf86f9bf0 Tobias Geerinckx-Rice 2020-10-06 09:02:10
gnu: libbpf: Fix erroneous use of DESTDIR. 36c737a9c3d906e85c97c919cd6ddb4f95eca2c9 Tobias Geerinckx-Rice 2020-10-06 08:28:29
Commit 681bf1b2e68b2abe4f6d7f9ca52b5f505b5b82e8 - gnu: libtsm: Remove bundled libxkbcommon header.
* gnu/packages/terminals.scm (libtsm)[source]: Snip xkbcommon-keysyms.h.
Author: Tobias Geerinckx-Rice
Author date (UTC): 2020-10-06 12:32
Committer name: Tobias Geerinckx-Rice
Committer date (UTC): 2020-10-06 12:49
Parent(s): 9bb8a84623355abcedc9b020b5abfd6f2e48ebc9
Signer:
Signing key: 0DB0FF884F556D79
Signing status: E
Tree: a23fb35ba714840d857849cb23c23719918503ea
File Lines added Lines deleted
gnu/packages/terminals.scm 16 10
File gnu/packages/terminals.scm changed (mode: 100644) (index 4a9970b9fe..f24e89daec)
... ... text-based approach to terminal recording.")
221 221 (package (package
222 222 (name "libtsm") (name "libtsm")
223 223 (version (git-version "0.0.0" revision commit)) (version (git-version "0.0.0" revision commit))
224 (source (origin
225 (method git-fetch)
226 ;; The freedesktop repository is no longer maintained.
227 (uri (git-reference
228 (url (string-append "https://github.com/Aetf/" name))
229 (commit commit)))
230 (file-name (git-file-name name version))
231 (sha256
232 (base32
233 "0mwn91i5h5d518i1s05y7hzv6bc13vzcvxszpfh77473iwg4wprx"))))
224 (source
225 (origin
226 (method git-fetch)
227 ;; The freedesktop repository is no longer maintained.
228 (uri (git-reference
229 (url (string-append "https://github.com/Aetf/" name))
230 (commit commit)))
231 (file-name (git-file-name name version))
232 (sha256
233 (base32 "0mwn91i5h5d518i1s05y7hzv6bc13vzcvxszpfh77473iwg4wprx"))
234 (modules '((guix build utils)))
235 (snippet
236 '(begin
237 ;; Remove a bundled copy of libxkbcommon's xkbcommon-keysyms.h.
238 (delete-file-recursively "external/xkbcommon")
239 #t))))
234 240 (build-system cmake-build-system) (build-system cmake-build-system)
235 241 (arguments (arguments
236 242 `(#:configure-flags '("-DBUILD_TESTING=ON"))) `(#:configure-flags '("-DBUILD_TESTING=ON")))
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