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: filters: Replace git commit with equivalent tag. d7b83e2f8d8afebfb301db2e40b2f56e382d0510 Tobias Geerinckx-Rice 2020-10-16 14:47:41
gnu: filters: Prepare for cross-compilation. 834ab06477ff06ae8b3660bb6296ad0739036356 Tobias Geerinckx-Rice 2020-10-16 14:45:44
gnu: vim: Update to 8.2.1852. 95328851aee375d9582a9fbf5c69e52dd15c06cd Tobias Geerinckx-Rice 2020-10-16 14:45:20
gnu: gpxsee: Update to 7.34. eec4def4f6a4e6e67db96c8acfc5327d2c6d64d6 Tobias Geerinckx-Rice 2020-10-16 14:39:37
gnu: spread-sheet-widget: Update to 0.7. 4d998aa643be1011315cba636e53e82fb5f8437e Tobias Geerinckx-Rice 2020-10-16 14:34:18
gnu: ethtool: Update to 5.9. f6a0b54e9de1538b29bbaac666dcd75b06cb16cf Tobias Geerinckx-Rice 2020-10-16 04:45:50
gnu: ndctl: Update to 70.1. 9e64b3bcec0382fc890b6163d421aaa91d844e6a Tobias Geerinckx-Rice 2020-10-16 04:27:24
gnu: libostree: Update to 2020.7. 295d969c3899794bb27c1e296b583d1cc2ef5324 Tobias Geerinckx-Rice 2020-10-16 04:45:40
gnu: python-sqlalchemy: Update to 1.3.20. 7969a6adf38bd8d6dcdf83575f28e57200cb4976 Tobias Geerinckx-Rice 2020-10-16 13:08:22
gnu: tintin++: Update to 2.02.04. 214ff8f6dbe95de95918b56ee7ad19d2a7c99faf Tobias Geerinckx-Rice 2020-10-16 12:03:36
gnu: soundtouch: Update to 2.2. 46fd582ff5870efd7d243d6d0fcdfaa9c7cf2edf Tobias Geerinckx-Rice 2020-10-16 11:48:30
gnu: libressl: Update to 3.1.4. 1aa375528b17e6cb41d137dd46b3d2018a8058a4 Tobias Geerinckx-Rice 2020-10-16 11:48:19
gnu: gnuzilla: Use 'assume-valid-file-name' where appropriate. 27913a6d3862a858269ada931f51e0ba03912e8c Ludovic Courtès 2020-10-16 12:59:28
services: provenance: Wrap config file name in 'assume-valid-file-name'. 5dbfdf8be4dc6250ab8475874e232e653b042cbf Ludovic Courtès 2020-10-16 12:57:25
gexp: Add 'assume-valid-file-name' syntax for use with 'local-file'. 5d4ad8e1be6d60c38577e2f3d92cc5642b12eff0 Ludovic Courtès 2020-10-16 12:55:00
gnu: runc, skopeo, docker-cli, umoci: Don't 'chdir' in build phases. e39e8d97c17c7e7a008a4f4e125ae6b3844cc03a Ludovic Courtès 2020-10-16 12:32:50
gnu: julia: Update to 1.5.2. 9a4c83bdb61d046617e87ad9b4c0e1d6b55b1810 Tim Howes 2020-10-15 03:05:28
.guix-authorizations: Add m1gu3l. b601aadaf59d25d4dea502f0aab16531038bff91 Ludovic Courtès 2020-10-16 09:51:36
guix-install.sh: Check the service 'nscd' and suggest it. b2683a2bed424f58722c9c17c9582e3e2e19d9a3 zimoun 2020-10-13 17:12:03
guix-install.sh: Add symbolic links for supported shell completions. b3fba5ef043b161d05a9fdc371a32d89e9b22ea1 zimoun 2020-10-13 17:12:04
Commit d7b83e2f8d8afebfb301db2e40b2f56e382d0510 - gnu: filters: Replace git commit with equivalent tag.
* gnu/packages/toys.scm (filters)[source]: Use tag.
Author: Tobias Geerinckx-Rice
Author date (UTC): 2020-10-16 14:47
Committer name: Tobias Geerinckx-Rice
Committer date (UTC): 2020-10-16 15:16
Parent(s): 834ab06477ff06ae8b3660bb6296ad0739036356
Signing key: 0DB0FF884F556D79
Tree: 070b7f88a379bd7aa37e54a818c939e062ebc6a1
File Lines added Lines deleted
gnu/packages/toys.scm 52 54
File gnu/packages/toys.scm changed (mode: 100644) (index eb727a4192..0d0035a86e)
... ... typing @command{sl} instead of @command{ls}.")
78 78 "See LICENSE in the distribution.")))) "See LICENSE in the distribution."))))
79 79
80 80 (define-public filters (define-public filters
81 (let ((version "2.55")
82 (commit "c5c291916b52ed9e6418448a8eee30475fb9adcf"))
83 (package
84 (name "filters")
85 (version "2.55")
86 (source
87 (origin
88 (method git-fetch)
89 (uri (git-reference
90 (url "https://git.joeyh.name/filters")
91 (commit commit)))
92 (file-name (git-file-name name version))
93 (sha256
94 (base32 "1gaigpda1w9wxfh8an3sam1hpacc1bhxl696w4yj0vzhc6izqvxs"))
95 (modules '((guix build utils)))
96 (snippet '(begin
97 ;; kenny is under nonfree Artistic License (Perl) 1.0.
98 (delete-file "kenny")
99 (substitute* "Makefile"
100 (("kenny")
101 ""))))))
102 (build-system gnu-build-system)
103 (arguments
104 `(#:make-flags
105 (list (string-append "CC=" ,(cc-for-target))
106 (string-append "DESTDIR=" %output))
107 #:phases
108 (modify-phases %standard-phases
109 (delete 'configure)
110 (add-after 'unpack 'fix-install-directories
111 (lambda _
112 (substitute* "Makefile"
113 (("/usr/games")
114 "/bin/")
115 (("/usr/share/")
116 "/share/"))
117 #t)))
118 #:tests? #f)) ; no test suite
119 (native-inputs
120 `(("bison" ,bison)
121 ("flex" ,flex)))
122 (inputs
123 `(("perl" ,perl)))
124 (home-page "https://joeyh.name/code/filters/")
125 (synopsis "Various amusing text filters")
126 (description
127 "The filters collection harks back to the late 1980s, when various text
81 (package
82 (name "filters")
83 (version "2.55")
84 (source
85 (origin
86 (method git-fetch)
87 (uri (git-reference
88 (url "https://git.joeyh.name/filters")
89 (commit version)))
90 (file-name (git-file-name name version))
91 (sha256
92 (base32 "1gaigpda1w9wxfh8an3sam1hpacc1bhxl696w4yj0vzhc6izqvxs"))
93 (modules '((guix build utils)))
94 (snippet '(begin
95 ;; kenny is under nonfree Artistic License (Perl) 1.0.
96 (delete-file "kenny")
97 (substitute* "Makefile"
98 (("kenny")
99 ""))))))
100 (build-system gnu-build-system)
101 (arguments
102 `(#:make-flags
103 (list (string-append "CC=" ,(cc-for-target))
104 (string-append "DESTDIR=" %output))
105 #:phases
106 (modify-phases %standard-phases
107 (delete 'configure)
108 (add-after 'unpack 'fix-install-directories
109 (lambda _
110 (substitute* "Makefile"
111 (("/usr/games")
112 "/bin/")
113 (("/usr/share/")
114 "/share/"))
115 #t)))
116 #:tests? #f)) ; no test suite
117 (native-inputs
118 `(("bison" ,bison)
119 ("flex" ,flex)))
120 (inputs
121 `(("perl" ,perl)))
122 (home-page "https://joeyh.name/code/filters/")
123 (synopsis "Various amusing text filters")
124 (description
125 "The filters collection harks back to the late 1980s, when various text
128 126 filters were written to munge written language in amusing ways. The earliest filters were written to munge written language in amusing ways. The earliest
129 127 and best known were legends such as the Swedish Chef filter and B1FF. and best known were legends such as the Swedish Chef filter and B1FF.
130 128
 
... ... This package contains the following filter commands:
158 156 @end enumerate @end enumerate
159 157
160 158 The GNU project hosts a similar collection of filters, the GNU talkfilters.") The GNU project hosts a similar collection of filters, the GNU talkfilters.")
161 (license ; see debian/copyright
162 (list license:gpl2+ ; most of the filters
163 license:gpl2 ; rasterman, ky00te.dir/* nethackify, pirate
164 license:gpl3+ ; scramble, scottish
165 license:public-domain ; jethro, kraut, ken, studly
166 license:gpl1+ ; cockney, jive, nyc only say "gpl"
167 license:expat))))) ; newspeak
159 (license ; see debian/copyright
160 (list license:gpl2+ ; most of the filters
161 license:gpl2 ; rasterman, ky00te.dir/* nethackify, pirate
162 license:gpl3+ ; scramble, scottish
163 license:public-domain ; jethro, kraut, ken, studly
164 license:gpl1+ ; cockney, jive, nyc only say "gpl"
165 license:expat)))) ; newspeak
168 166
169 167 (define-public xsnow (define-public xsnow
170 168 (package (package
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