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 python-dictdiffer. 23a97f52405b49309bf8825099d8c66a9ad9998d Joseph LaFreniere 2020-10-06 01:43:32
gnu: Add bindfs. 6b219b899217d635e5f20e212a88393caff83cd8 Morgan Smith 2020-10-09 22:20:53
gnu: git-annex: Update to 8.20201007. 1bf912e58e08c69e74964d8b350537235e13dc39 Kyle Meyer 2020-10-07 20:49:46
gnu: muchsync: Use pandoc instead of ghc-pandoc. 8514dfdee61b04f0daf22b4a957df1bea4b3f298 zimoun 2020-10-07 15:24:11
gnu: python-chardet: Enable tests. 331aaf52806b27430c4efaf8f230097ede69e61a Lars-Dominik Braun 2020-10-07 07:32:34
gnu: Add dex. 3182d629a25b1132fc542391b451580d44d9f92c James Smith 2020-10-07 20:44:14
gnu: nmap: Update license. 2323a7120a0f3ed96fedfff42e86c0aee97995c0 Marius Bakke 2020-10-13 20:16:57
gnu: xf86-input-libinput: Update to 0.30.0. 17032767da189a31d24fc350e68d065ec12bb9f6 Marius Bakke 2020-10-13 15:00:14
gnu: Remove python2-gst. 55fe84c6ebd37e6ee82114d4fc2c09ed42d1b3c0 Marius Bakke 2020-10-12 22:50:00
gnu: gst-plugins-bad: Add support for Secure Reliable Transport (SRT). ada061c12ac86b430a6fdfc662cd9cb4217da67c Leo Famulari 2020-10-13 03:25:28
gnu: VLC: Add support for Secure Reliable Transport (SRT). 9c5c64b8e11c2af7da6ee460372d4360a6348ad5 Leo Famulari 2020-10-10 04:53:33
gnu: FFmpeg: Add support for Secure Reliable Transport (SRT). 64661754fd8a32b9298d24e815cdbe568a8ffe77 Leo Famulari 2020-10-10 04:52:24
gnu: Add SRT 1.4.1. 021e92780b8ce87efde70bb069cb6a8d762e544c Leo Famulari 2020-10-10 04:51:59
installer: Add Emacs EXWM desktop environment. 1197b8b20f4fca4ce03bbc5fa75e18d54e3717c0 Jan (janneke) Nieuwenhuizen 2020-10-11 10:45:00
gnu: mediainfo: Update to 20.09. d5318e0c5ac62b57c8878d96fbea4e05c1d0d27e Tobias Geerinckx-Rice 2020-10-13 17:01:19
gnu: libmediainfo: Update to 20.09. 42a5c643a7658503c645fca47f69cdf81c5202df Tobias Geerinckx-Rice 2020-10-13 17:01:15
gnu: dos2unix: Cross-compile. b4d7d41b222e6b8d8e85980e0da85785c86c0966 Tobias Geerinckx-Rice 2020-10-13 17:00:59
gnu: dos2unix: Update to 7.4.2. e2d33f9e33b817490768fc723761c6a29e34cb9a Tobias Geerinckx-Rice 2020-10-13 16:58:46
gnu: vim: Update to 8.2.1840. 9e0de744b183a4bfdf537f68d93568746af9e953 Tobias Geerinckx-Rice 2020-10-13 16:49:08
gnu: xonsh: Update to 0.9.23. 347b68c7401c61baa32b51f87e2c961c51024203 Tobias Geerinckx-Rice 2020-10-13 16:48:40
Commit 23a97f52405b49309bf8825099d8c66a9ad9998d - gnu: Add python-dictdiffer.
* gnu/packages/python-xyz.scm (python-dictdiffer): New variable.

Signed-off-by: Marius Bakke <marius@gnu.org>
Author: Joseph LaFreniere
Author date (UTC): 2020-10-06 01:43
Committer name: Marius Bakke
Committer date (UTC): 2020-10-13 21:36
Parent(s): 6b219b899217d635e5f20e212a88393caff83cd8
Signer:
Signing key: A2A06DF2A33A54FA
Signing status: E
Tree: e50c39789bd64a6015779b5e174171477418cc3b
File Lines added Lines deleted
gnu/packages/python-xyz.scm 32 0
File gnu/packages/python-xyz.scm changed (mode: 100644) (index 402007d0c2..f5c58609f5)
85 85 ;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org> ;;; Copyright © 2020 Guy Fleury Iteriteka <gfleury@disroot.org>
86 86 ;;; Copyright © 2020 Hendursaga <hendursaga@yahoo.com> ;;; Copyright © 2020 Hendursaga <hendursaga@yahoo.com>
87 87 ;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com> ;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
88 ;;; Copyright © 2020 Joseph LaFreniere <joseph@lafreniere.xyz>
88 89 ;;; ;;;
89 90 ;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
90 91 ;;; ;;;
 
... ... randomness (including real life dice) and different wordlists (including
21472 21473 cryptographically signed ones).") cryptographically signed ones).")
21473 21474 (license license:gpl3+))) (license license:gpl3+)))
21474 21475
21476 (define-public python-dictdiffer
21477 (package
21478 (name "python-dictdiffer")
21479 (version "0.8.1")
21480 (source (origin
21481 (method url-fetch)
21482 (uri (pypi-uri "dictdiffer" version))
21483 (sha256
21484 (base32
21485 "1lk3qmy1hkaphk4n7ayfk0wl6m2yvd6r7qkam6yncqfzgkbc1phs"))))
21486 (build-system python-build-system)
21487 (native-inputs
21488 `(("python-check-manifest" ,python-check-manifest)
21489 ("python-coverage" ,python-coverage)
21490 ("python-isort" ,python-isort)
21491 ("python-mock" ,python-mock)
21492 ("python-pydoctstyle" ,python-pydocstyle)
21493 ("python-pytest-cache" ,python-pytest-cache)
21494 ("python-pytest-cov" ,python-pytest-cov)
21495 ("python-pytest-pep8" ,python-pytest-pep8)
21496 ("python-pytest-runner" ,python-pytest-runner)
21497 ("python-pytest" ,python-pytest)
21498 ("python-setuptools-scm" ,python-setuptools-scm)
21499 ("python-tox" ,python-tox)))
21500 (home-page "https://github.com/inveniosoftware/dictdiffer")
21501 (synopsis "Diff and patch Python dictionary objects")
21502 (description
21503 "Dictdiffer is a Python module that helps you to diff and patch
21504 dictionaries.")
21505 (license license:expat)))
21506
21475 21507 (define-public pyzo (define-public pyzo
21476 21508 (package (package
21477 21509 (name "pyzo") (name "pyzo")
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