blob: 42352bcf1a89c4939aa780cb74e69fabda1e788f (
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
45
46
|
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 is fixed in Guile 2.2.3.
* Hacking
#+BEGIN_SRC bash
guix environment --ad-hoc autoconf automake make texinfo pkg-config guile@2.2
./bootstrap.sh
./configure
make
#+END_SRC
In order to generate the ChangeLog from the git commit history during =make dist= you will need to have Perl.
* 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/>.
|