-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
In debian systems, running 'make dpkg' should result in a nice libfyaml & libfyaml-dev packages. Signed-off-by: Pantelis Antoniou <[email protected]>
- Loading branch information
Showing
16 changed files
with
339 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
ARG IMAGE=ubuntu | ||
FROM ${IMAGE} | ||
# install build dependencies | ||
RUN apt-get update -qq | ||
RUN apt-get install --no-install-recommends --fix-missing -y \ | ||
gcc autoconf automake libtool git make libyaml-dev libltdl-dev \ | ||
pkg-config check python3 python3-pip python3-setuptools \ | ||
devscripts build-essential lintian debhelper dh-buildinfo dh-autoreconf fakeroot \ | ||
gnupg | ||
# install sphinx doc dependencies | ||
RUN pip3 install wheel sphinx git+http://github.com/return42/linuxdoc.git sphinx_rtd_theme sphinx-markdown-builder | ||
# configure argument | ||
ARG CONFIG_ARGS | ||
ENV CONFIG_ARGS=${CONFIG_ARGS} | ||
COPY . /build | ||
WORKDIR /build | ||
# do a maintainer clean if the directory was unclean (it can fail) | ||
RUN make maintainer-clean >/dev/null 2>&1|| true | ||
RUN ./bootstrap.sh 2>&1 | ||
RUN ./configure 2>&1 ${CONFIG_ARGS} | ||
RUN make deb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
libfyaml (0.2) unstable; urgency=medium | ||
|
||
* debian compatibility #1 | ||
* Add a distcheck command in the Dockerfile | ||
* gh action badge | ||
* run apt using sudo | ||
* github actions ci | ||
* Make distcheck target work | ||
* Update README.md with fy-tool documentation | ||
* Cleanup and update fy-tool usage banner | ||
* Add argument to fy_emit_document_start of root node | ||
* Merge pull request #1 from ohporter/typos | ||
* README: fix typos | ||
* Point to API in github pages | ||
|
||
-- Pantelis Antoniou <[email protected]> Thu, 19 Sep 2019 17:04:27 +0300 | ||
|
||
libfyaml (0.1) unstable; urgency=medium | ||
|
||
* Initial release | ||
|
||
-- Pantelis Antoniou <[email protected]> Mon, 16 Sep 2019 14:25:04 +0300 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
Source: libfyaml | ||
Priority: optional | ||
Maintainer: Pantelis Antoniou <[email protected]> | ||
Build-Depends: debhelper (>=9),autotools-dev, | ||
dh-buildinfo (>= 0.9+nmu1~), | ||
dh-autoreconf,pkg-config,libltdl-dev | ||
Standards-Version: 3.9.7 | ||
Section: libs | ||
Homepage: https://github.com/pantoniou/libfyaml | ||
Vcs-Git: https://github.com/pantoniou/libfyaml.git | ||
|
||
Package: libfyaml-dev | ||
Section: libdevel | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: ${misc:Depends}, libfyaml-@DEBVERSION@ (= ${binary:Version}) | ||
Description: Fully feature complete YAML parser and emitter. | ||
Fully feature complete YAML parser and emitter, supporting the latest YAML | ||
spec and passing the full YAML testsuite. | ||
. | ||
It is designed to be very efficient, avoiding copies of data, and has no | ||
artificial limits like the 1024 character limit for implicit keys. | ||
. | ||
This package contains development headers and static libraries. | ||
|
||
Package: libfyaml-utils | ||
Section: devel | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: ${misc:Depends}, libfyaml-@DEBVERSION@ (= ${binary:Version}) | ||
Description: Fully feature complete YAML parser and emitter. | ||
Fully feature complete YAML parser and emitter, supporting the latest YAML | ||
spec and passing the full YAML testsuite. | ||
. | ||
It is designed to be very efficient, avoiding copies of data, and has no | ||
artificial limits like the 1024 character limit for implicit keys. | ||
. | ||
This package contains utilities manipulating YAML files. | ||
|
||
Package: libfyaml-@DEBVERSION@ | ||
Architecture: any | ||
Multi-Arch: same | ||
Depends: ${shlibs:Depends}, ${misc:Depends} | ||
Description: Fully feature complete YAML parser and emitter. | ||
Fully feature complete YAML parser and emitter, supporting the latest YAML | ||
spec and passing the full YAML testsuite. | ||
. | ||
It is designed to be very efficient, avoiding copies of data, and has no | ||
artificial limits like the 1024 character limit for implicit keys. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ | ||
Upstream-Name: libfyaml | ||
Source: https://github.com/pantoniou/libfyaml | ||
|
||
Files: * | ||
Copyright: 2019 Pantelis Antoniou <[email protected]> | ||
License: MIT | ||
|
||
Files: debian/* | ||
Copyright: 2019 Pantelis Antoniou <[email protected]> | ||
License: MIT | ||
|
||
License: MIT | ||
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. | ||
|
Oops, something went wrong.