Add Debian package, finish TODOs.
This commit is contained in:
parent
0cf03528c5
commit
1d100ffb76
10
TODO.rst
10
TODO.rst
|
@ -2,12 +2,12 @@
|
||||||
TODO
|
TODO
|
||||||
====
|
====
|
||||||
|
|
||||||
[ ] Documentation for ``HMAC``
|
[*] Documentation for ``HMAC``
|
||||||
|
|
||||||
[ ] Documentation for miscellaneous functions
|
[*] Documentation for miscellaneous functions
|
||||||
|
|
||||||
[ ] Travis with static analysers
|
[*] Travis with static analysers
|
||||||
|
|
||||||
[ ] Coverity?
|
[*] Coverity?
|
||||||
[ ] cppcheck
|
[*] cppcheck
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,5 @@
|
||||||
|
libemsha (1.0.1-1) unstable; urgency=low
|
||||||
|
|
||||||
|
* Initial release for packaging.
|
||||||
|
|
||||||
|
-- Kyle Isom <kyle@imap.cc> Wed, 27 Jan 2016 21:19:12 -0800
|
|
@ -0,0 +1 @@
|
||||||
|
9
|
|
@ -0,0 +1,28 @@
|
||||||
|
Source: libemsha
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Kyle Isom <kyle@imap.cc>
|
||||||
|
Build-Depends: debhelper (>= 9), autotools-dev
|
||||||
|
Standards-Version: 3.9.5
|
||||||
|
Section: libs
|
||||||
|
Homepage: https://git.kyleisom.net/lib/libemsha
|
||||||
|
Vcs-Git: https://git.kyleisom.net/lib/libemsha
|
||||||
|
Vcs-Browser: https://git.kyleisom.net/lib/libemsha
|
||||||
|
|
||||||
|
Package: libemsha-dev
|
||||||
|
Section: libdevel
|
||||||
|
Architecture: any
|
||||||
|
Depends: libemsha-1 (= ${binary:Version}), ${misc:Depends}
|
||||||
|
Description: HMAC-SHA-256 C++11 library - development files
|
||||||
|
An MIT-licensed HMAC-SHA-256 C++11 library designed for embedded
|
||||||
|
systems. It is built following the JPL Power of Ten rules. It was written
|
||||||
|
in response to a need for a standalone HMAC-SHA-256 package that could
|
||||||
|
run on several platforms.
|
||||||
|
|
||||||
|
Package: libemsha-1
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends}, ${misc:Depends}
|
||||||
|
Description: HMAC-SHA-256 C++11 library
|
||||||
|
An MIT-licensed HMAC-SHA-256 C++11 library designed for embedded
|
||||||
|
systems. It is built following the JPL Power of Ten rules. It was written
|
||||||
|
in response to a need for a standalone HMAC-SHA-256 package that could
|
||||||
|
run on several platforms.
|
|
@ -0,0 +1,25 @@
|
||||||
|
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: libemsha
|
||||||
|
Source: <url://example.com>
|
||||||
|
|
||||||
|
Files: *
|
||||||
|
Copyright: <years> <put author's name and email here>
|
||||||
|
<years> <likewise for another author>
|
||||||
|
License: 2015 K. Isom <coder@kyleisom.net>
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
|
copy of this software and associated documentation files (the "Software"),
|
||||||
|
to deal in the Software without restriction, including without limitation
|
||||||
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
||||||
|
and/or sell copies of the Software, and to permit persons to whom the
|
||||||
|
Software is furnished to do so, subject to the following conditions:
|
||||||
|
.
|
||||||
|
The above copyright notice and this permission notice shall be included
|
||||||
|
in all copies or substantial portions of the Software.
|
||||||
|
.
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
||||||
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
||||||
|
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
||||||
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||||
|
OTHER DEALINGS IN THE SOFTWARE.
|
|
@ -0,0 +1,3 @@
|
||||||
|
README.rst
|
||||||
|
TODO.rst
|
||||||
|
doc/libemsha.rst
|
|
@ -0,0 +1,2 @@
|
||||||
|
usr/lib/*/lib*.so.*
|
||||||
|
usr/lib/*/lib*.a
|
|
@ -0,0 +1,2 @@
|
||||||
|
usr/lib
|
||||||
|
usr/include
|
|
@ -0,0 +1,3 @@
|
||||||
|
usr/include/*
|
||||||
|
usr/lib/*/lib*.a
|
||||||
|
usr/lib/*/lib*.so
|
Loading…
Reference in New Issue