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 emacs-gcmh. 028119e9f5a0b31fe27334eb5de582d42d3ffd5d Niklas Eklund 2020-09-30 13:34:36
image: Use 'raise' from (srfi srfi-34). 281869e6f8d5b7ea6300c5b93acb324a6011585e Ludovic Courtès 2020-10-14 09:07:40
hurd-boot: Set /hurd/magic on /dev/fd. 57a7aa1ae3ef67c6e8becca766adfb4b4c8f59ac Ludovic Courtès 2020-10-14 09:06:55
doc: Mention "i586-gnu" as supported and experimental. d96e739f08f13cc1981f9367bbda1eba3c567f5f Ludovic Courtès 2020-10-14 08:57:06
doc: Avoid orphan node. 4b0a1543e1f67828c09be4a75d1155227bf526ac Ludovic Courtès 2020-10-14 08:53:00
openpgp: '&openpgp-unrecognized-packet-error' includes type tag. 37a8f5b281644bd5355406a4df76bbb9efc50d9c Ludovic Courtès 2020-10-14 08:19:38
gnu: guix: Change Git URL. f73f3d01a28bf791815de24523ed6b1a2da1f179 Ludovic Courtès 2020-10-14 08:16:41
gnu: slurm: Update to 20.02.5. 3c338135f1ec218f2cd19786a13b883ed36f12bb Ricardo Wurmus 2020-10-14 13:22:29
gnu: bluez-alsa: Add LDAC support. 09b00a62b297edb92ac4dde6f4838261ac0cad16 Ricardo Wurmus 2020-10-14 12:54:22
gnu: bluez-alsa: Update to 3.0.0. a079f3eb2fad1a88e6cdfdd35996bf36e01ed4b0 Ricardo Wurmus 2020-10-14 12:54:13
gnu: Add ldacbt. c8d07c5f1f76951b0284f1435b563e8fe14d5674 Ricardo Wurmus 2020-10-14 12:53:54
services: nginx: Fix typo in exported symbol. 5436b673f53d27753b53ab8d94eea6153a20e483 Lulu 2020-10-14 06:37:30
gnu: rxvt-unicode: Enable 256 colors 4835d52efd6aedb14978089785a09baf2be31386 Josh Hoff 2020-10-10 09:55:26
gnu: monero-gui: Update to 0.17.1.0. 3df707778a29b7364fffe94c150a9f69467c47cf Guillaume Le Vaillant 2020-10-14 09:07:23
gnu: monero: Update to 0.17.1.0. 47fb72d2e500bffd167a95d6fa116755711a9bd3 Guillaume Le Vaillant 2020-10-14 08:27:05
gnu: offlineimap: Update to 7.3.3. d763e3c7461028c2e6575f1edeba4743f16e0878 Tim Gesthuizen 2020-10-13 12:17:53
gnu: Add python-rfc6555. 7a5d13786b0d54a8d85932557b55dec1653f1402 Tim Gesthuizen 2020-10-13 12:16:58
gnu: kmonad: Update to 0.4.1. 71e35cb34db4006588dee4d93dc75dfa3d406276 Alex Griffin 2020-10-14 06:52:36
news: Add ‘de’ translation. dad56a2b5b01bec5ae7acd9859727671fc060070 Florian Pelz 2020-10-14 06:25:34
gnu: Krita: Update to 4.4.0. ec7803981a74b733c58cbb63dea4ed724c24e2de Leo Famulari 2020-10-14 03:22:04
Commit 028119e9f5a0b31fe27334eb5de582d42d3ffd5d - gnu: Add emacs-gcmh.
* gnu/packages/emacs-xyz.scm (emacs-gcmh): New variable.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Author: Niklas Eklund
Author date (UTC): 2020-09-30 13:34
Committer name: Ludovic Courtès
Committer date (UTC): 2020-10-14 13:22
Parent(s): 281869e6f8d5b7ea6300c5b93acb324a6011585e
Signer:
Signing key: 090B11993D9AEBB5
Signing status: E
Tree: 88032790b9734529ba3353a46f026493e863db7e
File Lines added Lines deleted
gnu/packages/emacs-xyz.scm 26 0
File gnu/packages/emacs-xyz.scm changed (mode: 100644) (index cc97e051d0..4e0d657308)
... ... always indented. It reindents after every change, making it more reliable
1770 1770 than @code{electric-indent-mode}.") than @code{electric-indent-mode}.")
1771 1771 (license license:gpl2+))) (license license:gpl2+)))
1772 1772
1773 (define-public emacs-gcmh
1774 ;; No tagged release upstream.
1775 (let ((commit "84c43a4c0b41a595ac6e299fa317d2831813e580")
1776 (revision "0"))
1777 (package
1778 (name "emacs-gcmh")
1779 (version (git-version "0.1" revision commit))
1780 (source
1781 (origin
1782 (method git-fetch)
1783 (uri (git-reference
1784 (url "https://gitlab.com/koral/gcmh")
1785 (commit commit)))
1786 (sha256
1787 (base32 "1r3wiqhrzh7wvqy484nl031fd4bn4cpvkv9646s4cjgvnnnv7jz3"))
1788 (file-name (git-file-name name version))))
1789 (build-system emacs-build-system)
1790 (home-page "https://gitlab.com/koral/gcmh")
1791 (synopsis "Emacs Garbage Collector Magic Hack")
1792 (description
1793 "This package enforces a sneaky @dfn{garbage collector} (GC) strategy
1794 to minimize GC interference with the activity. During normal use a high GC
1795 threshold is set. When idling GC is immediately triggered and a low threshold
1796 is set.")
1797 (license license:gpl3+))))
1798
1773 1799 (define-public emacs-ctrlf (define-public emacs-ctrlf
1774 1800 (package (package
1775 1801 (name "emacs-ctrlf") (name "emacs-ctrlf")
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