summaryrefslogtreecommitdiff
path: root/version-gen.sh (follow)
Commit message (Collapse)AuthorAge
* Add infrastructure to build debian packages.Andre Noll2019-05-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds the usual files below debian/ so that two debian binary packages, liblopsub1 and liblopsub1-dev, can be made with a command like dpkg-buildpackage The bulk of the recipes in debian/rules employ debhelper(7). This has been tested on debian-9 and debian-10. On both systems, lintian(1) reports no warnings and no errors. v4 -> v5 ~~~~~~~~ Avoid the term "all-permissive license" to address copyright concerns pointed out by Thorsten Alteholz. v3 -> v4 ~~~~~~~~ Next round of feedback from Adam Borowski: * soname-less source package * Full description for liblopsub-dev * debian/changelog: UNRELEASED -> unstable v2 -> v3 ~~~~~~~~ Incorporate more feedback from Adam Borowski: * version-gen.sh now works also without a git repository * The soname has been dropped from the name of the development package * library files are installed in the multiarch dir /usr/lib/$triplet v1 -> v2 ~~~~~~~~ Incorporate review comments from Adam Borowski: * Rename package name from lopsub to liblopsub1 to make lintian happy. * Append "-1" to the debian version to make it a non-native package. * Switch source format from "3.0 (native)" to "3.0 (quilt)". * Mention what parts are GPLv3-ed and which are LGPLv3-ed. * Adjustments for building a shared library. * Squash remaining lintian warnings. rewrite de/copyright
* version-gen.sh: Make it work in conflicted state.Andre Noll2017-11-28
| | | | | | | | | | If the working tree contains unmerged paths, git update-index -q prints a "file: needs merge" message to stdout. This message confuses the build system which runs this git command via version-gen.sh and expects it to output a git version string. This commit redirects stdout of the git command to /dev/null to make sure that version-gen.sh outputs only the version string.
* The long option parser for subcommands (lopsub).v1.0.0Andre Noll2016-10-23
This library was under development for over a year and is now ready for prime time. The code is believed to be mature and no bugs are known at this time. The API is fully documented and stable, and no new features are planned. Future fixes and enhancements will take backwards compatibility into account. The code used to be part of the paraslash package, but has been moved to its own repository. All prior commits have been discarded, so this repository contains only the final result as a single commit. The input files for the lopsubgen utility and the config file parser are based on flex. The API documentation is created with gendoc.m4, a simple m4 file which is part of this repository. Documentation includes the three man pages lopsub.7, lopsubgen.1 and lopsub.suite.5 which describe different aspects of the library. There is also an example application called lopsubex which illustrates various features of the library.