blob: fbd7ae3bf5066fcab0e5eb658aa87e718104c092 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
Guile-Debbugs --- Guile bindings for Debbugs
Copyright © 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
See the end of the file for license conditions.
* What is this?
This is an attempt to provide Guile bindings for the debbugs bug
tracker. See the Info manual (=doc/guile-debbugs.info=) for examples
and documentation. (You will have to build it first.)
* Missing features
+ convenience procedures for =<bug>= records (e.g. =bug-done?=)
+ monadic interface
* Known problems
+ Guile 2.2.2 has a bug in “(web client)”, which prevents HTTPS connections from being established. This was fixed with commit =0c102b56e98da39b5a3213bdc567a31ad8ef3e73= but as of the time of this writing there has not been a release including the fix.
* Hacking
#+BEGIN_SRC bash
guix environment --ad-hoc autoconf automake make texinfo pkg-config guile@2.2
./bootstrap.sh
./configure
make
#+END_SRC
* License
This file is part of Guile-Debbugs.
Guile-Debbugs is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 3 of the
License, or (at your option) any later version.
Guile-Debbugs is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with Guile-Debbugs. If not, see <http://www.gnu.org/licenses/>.
|