aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| | | * gnunet-qr: Implement functionality of gnunet-uri, don't spawn.Hartmut Goebel2019-03-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This copies the central part of gnunet-uri. Should better be in some shared code. Also eliminate helper lib "gnunet-qr-utils.h", which is no longer used.
| | | * contrib/guix: Add zbar as dependency for package gnunet.Hartmut Goebel2019-03-13
| | | |
| | | * contrib/guix: Add package zbar (for gnunet-qr).Hartmut Goebel2019-03-13
| | | |
| | | * gnunet-qr: Use GNUNET_PROGRAM_run to simplify the code.Hartmut Goebel2019-03-13
| | | |
| | | * gnunet-qr: Update documentation and scripts to changed dependencies.Hartmut Goebel2019-03-13
| | | | | | | | | | | | | | | | | | | | Requirement python-zbar is gone, and thus the requirement for Python 2.7. Instead development package for libzbar is required now.
| | | * gnunet-qr: Use the `gnunet-uri` binary installed into PREFIX.Hartmut Goebel2019-03-13
| | | | | | | | | | | | | | | | | | | | | | | | This helps keeping environments concise and functional package managers like guix this will ensure `gnunet-uri` from the same environment is used.
| | | * gnunet-qr: Add into Makefile.am and pofiles,Hartmut Goebel2019-03-13
| | | |
| | | * configure.ac: Add check for libzbar (using pkgconfig).Hartmut Goebel2019-03-13
| | | | | | | | | | | | | | | | libzbar is required for gnunet-qr, which is optional.
| | | * Add Hartmut Goebel to the AUTHORS file.Hartmut Goebel2019-03-13
| | | |
| | | * gnunet-qr: Actually run gnunet-uri.Hartmut Goebel2019-03-13
| | | |
| | | * Add helper lib "gnunet-qr-utils.h".Hartmut Goebel2019-03-13
| | | | | | | | | | | | | | | | | | | | | | | | These functions are copied from dns/gnunet-helper-dns.c, move them into a common library. Or think about implementing a even more elaborate version.
| | | * gnunet-qr: Simplify verbose messaging.Hartmut Goebel2019-03-13
| | | |
| | | * gnunet-qr: Reimplement in C - yet only a proof of concept.Hartmut Goebel2019-03-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still to-do: * running gnunet-uri * Proper error handling * integration into build system (automake) Reimplementing in C was chosen since - official zbar python-bindings support python 2 only, - none of the other bindings available at PyPI supports the high-level "processor" interface which gnunet-qr uses - implementing bindings for zbar using ctypes required addin a lot of low-level error handling code, thus implementing in C seamed to be easier, - the programm is short, thus re-implementing is not such complicated, and - this allows to reduce the number of dependencies (here: another Python version), which should ease porting to other plattforms (zbar is a dependency anyway).
| | * | add error handling for gnunet-qrChristian Grothoff2019-04-03
| | | |
| | * | gnunet-qr: Implement functionality of gnunet-uri, don't spawn.Hartmut Goebel2019-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This copies the central part of gnunet-uri. Should better be in some shared code. Also eliminate helper lib "gnunet-qr-utils.h", which is no longer used.
| | * | contrib/guix: Add zbar as dependency for package gnunet.Hartmut Goebel2019-04-03
| | | |
| | * | contrib/guix: Add package zbar (for gnunet-qr).Hartmut Goebel2019-04-03
| | | |
| | * | gnunet-qr: Use GNUNET_PROGRAM_run to simplify the code.Hartmut Goebel2019-04-03
| | | |
| | * | gnunet-qr: Update documentation and scripts to changed dependencies.Hartmut Goebel2019-04-03
| | | | | | | | | | | | | | | | | | | | Requirement python-zbar is gone, and thus the requirement for Python 2.7. Instead development package for libzbar is required now.
| | * | gnunet-qr: Use the `gnunet-uri` binary installed into PREFIX.Hartmut Goebel2019-04-03
| | | | | | | | | | | | | | | | | | | | | | | | This helps keeping environments concise and functional package managers like guix this will ensure `gnunet-uri` from the same environment is used.
| | * | gnunet-qr: Add into Makefile.am and pofiles,Hartmut Goebel2019-04-03
| | | |
| | * | configure.ac: Add check for libzbar (using pkgconfig).Hartmut Goebel2019-04-03
| | | | | | | | | | | | | | | | libzbar is required for gnunet-qr, which is optional.
| | * | Add Hartmut Goebel to the AUTHORS file.Hartmut Goebel2019-04-03
| | | |
| | * | gnunet-qr: Actually run gnunet-uri.Hartmut Goebel2019-04-03
| | | |
| | * | Add helper lib "gnunet-qr-utils.h".Hartmut Goebel2019-04-03
| | | | | | | | | | | | | | | | | | | | | | | | These functions are copied from dns/gnunet-helper-dns.c, move them into a common library. Or think about implementing a even more elaborate version.
| | * | gnunet-qr: Simplify verbose messaging.Hartmut Goebel2019-04-03
| | | |
| | * | gnunet-qr: Reimplement in C - yet only a proof of concept.Hartmut Goebel2019-04-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Still to-do: * running gnunet-uri * Proper error handling * integration into build system (automake) Reimplementing in C was chosen since - official zbar python-bindings support python 2 only, - none of the other bindings available at PyPI supports the high-level "processor" interface which gnunet-qr uses - implementing bindings for zbar using ctypes required addin a lot of low-level error handling code, thus implementing in C seamed to be easier, - the programm is short, thus re-implementing is not such complicated, and - this allows to reduce the number of dependencies (here: another Python version), which should ease porting to other plattforms (zbar is a dependency anyway).
* | | | man: cadetng02019-04-03
| | | |
* | | | man READMEng02019-04-03
|/ / /
* | | man READMEng02019-04-03
| | |
* | | man: gnsng02019-04-03
| | |
* | | man: scrypt (update)ng02019-04-03
| | |
* | | Merge branch 'master' of gnunet.org:gnunetng02019-04-03
|\| |
| * | update changelogChristian Grothoff2019-04-03
| | |
| * | fix bogus test configurationChristian Grothoff2019-04-03
| | |
| * | clique still fails sometimes for strange reasonsChristian Grothoff2019-04-03
| | |
* | | man: search (update)ng02019-04-03
|/ /
* | Merge branch 'master' of gnunet.org:gnunetng02019-04-03
|\ \
| * | -d option was removed from gnunet-publish, do not use it in the testChristian Grothoff2019-04-03
| | |
| * | fix -c optionChristian Grothoff2019-04-03
| | |
* | | man: statistics (update)ng02019-04-03
|/ /
* | fix verbosity optionChristian Grothoff2019-04-03
| |
* | fix ugliness that is not used / usefulChristian Grothoff2019-04-03
| |
* | fix mktemp callChristian Grothoff2019-04-03
| |
* | fix crash on test failureChristian Grothoff2019-04-03
| |
* | add missing licenseChristian Grothoff2019-04-03
| |
* | man: Add READMEng02019-04-02
| |
* | man: dns2gnsng02019-04-02
| |
* | man: qrng02019-04-02
| |
* | man: tbpng02019-04-02
| |