tadd readme - libdevuansdk - common library for devuan's simple distro kits
 (HTM) git clone https://git.parazyd.org/libdevuansdk
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 91b1f24e1cfa25ada9fa7a6bb8758a08a4ca2ecd
 (DIR) parent 076d7203ff569b47c53732bc3fa63b9c8cc0d4e4
 (HTM) Author: parazyd <parazyd@dyne.org>
       Date:   Thu, 29 Sep 2016 22:02:25 +0200
       
       add readme
       
       Diffstat:
         A CONTRIBUTORS.md                     |       7 +++++++
         A README.md                           |      52 +++++++++++++++++++++++++++++++
         M config                              |       5 +----
         M libdevuansdk                        |       5 +----
         M zlibs/bootstrap                     |       6 ++----
         M zlibs/helpers                       |       5 +----
         M zlibs/sysconf                       |       5 +----
       
       7 files changed, 65 insertions(+), 20 deletions(-)
       ---
 (DIR) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md
       t@@ -0,0 +1,7 @@
       +Contributors
       +============
       +
       +Thank you very much for your great help and ideas!
       +
       +- Enzo Nicosia <katolaz@freaknet.org>
       +- Denis Roio <jaromil@dyne.org>
 (DIR) diff --git a/README.md b/README.md
       t@@ -0,0 +1,52 @@
       +libdevuansdk
       +============
       +
       +libdevuansdk is a shell script library intended to unify the use and
       +creation of various functions spread throughout Devuan's various SDKs.
       +
       +## Requirements
       +
       +Devuan's SDKs are designed to be used interactively from a terminal, as
       +well as from shell scripts. It requires the following packages to be
       +installed:
       +
       +```
       +zsh debootstrap sudo
       +```
       +
       +## Documentation
       +
       +Find documentation inside the `doc` directory of libdevuansdk.
       +
       +## Notes
       +
       +To support the development, you are welcome to open issues on problems and
       +bugs you encounter. Open merge requests of patches or simply get involved
       +in other tasks evident on <https://git.devuan.org>
       +
       +## Acknowledgments
       +
       +Devuan's SDK was originally conceived during a period of residency at the
       +Schumacher college in Dartington, UK. Greatly inspired by the laborious and
       +mindful atmosphere of its wonderful premises.
       +
       +The Devuan SDk is Copyright (c) 2015-2016 by the Dyne.org Foundation
       +
       +Devuan SDK components are designed, written and maintained by:
       +
       +- Ivan J. <parazyd@dyne.org>
       +- Denis Roio <jaromil@dyne.org>
       +- Enzo Nicosia <katolaz@freaknet.org>
       +
       +This source code 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.
       +
       +This software 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 this source code. If not, see <http://www.gnu.org/licenses/>.
 (DIR) diff --git a/config b/config
       t@@ -1,9 +1,6 @@
        #!/usr/bin/env zsh
       -#
        # Copyright (c) 2016 Dyne.org Foundation
       -# libdevuansdk is written and maintained by Ivan J. <parazyd@dyne.org>
       -# with code contributions from KatolaZ <katolaz@freaknet.org>
       -#                          and Jaromil <jaromil@dyne.org>
       +# libdevuansdk is maintained by Ivan J. <parazyd@dyne.org>
        #
        # This file is part of libdevuansdk
        #
 (DIR) diff --git a/libdevuansdk b/libdevuansdk
       t@@ -1,9 +1,6 @@
        #!/usr/bin/env zsh
       -#
        # Copyright (c) 2016 Dyne.org Foundation
       -# libdevuansdk is written and maintained by Ivan J. <parazyd@dyne.org>
       -# with code contributions from KatolaZ <katolaz@freaknet.org>
       -#                          and Jaromil <jaromil@dyne.org>
       +# libdevuansdk maintained by Ivan J. <parazyd@dyne.org>
        #
        # This file is part of libdevuansdk
        #
 (DIR) diff --git a/zlibs/bootstrap b/zlibs/bootstrap
       t@@ -1,9 +1,6 @@
        #!/usr/bin/env zsh
       -#
        # Copyright (c) 2016 Dyne.org Foundation
       -# libdevuansdk is written and maintained by Ivan J. <parazyd@dyne.org>
       -# with code contributions from KatolaZ <katolaz@freaknet.org>
       -#                          and Jaromil <jaromil@dyne.org>
       +# libdevuansdk maintained by Ivan J. <parazyd@dyne.org>
        #
        # This file is part of libdevuansdk
        #
       t@@ -94,6 +91,7 @@ rm -f /etc/ssh/*.pub
        rm -f /root/.bash_history
        ## our file for which we check the bootstrap is complete
        echo "1" > .done
       +rm -f /cleanup
        EOF
        }
        
 (DIR) diff --git a/zlibs/helpers b/zlibs/helpers
       t@@ -1,9 +1,6 @@
        #!/usr/bin/env zsh
       -#
        # Copyright (c) 2016 Dyne.org Foundation
       -# libdevuansdk is written and maintained by Ivan J. <parazyd@dyne.org>
       -# with code contributions from KatolaZ <katolaz@freaknet.org>
       -#                          and Jaromil <jaromil@dyne.org>
       +# libdevuansdk is maintained by Ivan J. <parazyd@dyne.org>
        #
        # This file is part of libdevuansdk
        #
 (DIR) diff --git a/zlibs/sysconf b/zlibs/sysconf
       t@@ -1,9 +1,6 @@
        #!/usr/bin/env zsh
       -#
        # Copyright (c) 2016 Dyne.org Foundation
       -# libdevuansdk is written and maintained by Ivan J. <parazyd@dyne.org>
       -# with code contributions from KatolaZ <katolaz@freaknet.org>
       -#                          and Jaromil <jaromil@dyne.org>
       +# libdevuansdk is maintained by Ivan J. <parazyd@dyne.org>
        #
        # This file is part of libdevuansdk
        #