From 71d10208f91a566b40ea1bdbb1e2f20f85f8182f Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rafa=C5=82=20D=C5=82ugo=C5=82=C4=99cki?= Date: Wed, 20 May 2015 21:56:48 +0200 Subject: [PATCH] Bump to official public version. --- README | 2 +- README.md | 2 +- configure.ac | 2 +- debian/changelog | 6 ++++++ debian/compat | 1 + debian/control | 12 ++++++++++++ debian/copyright | 28 ++++++++++++++++++++++++++++ debian/rules | 12 ++++++++++++ 8 files changed, 62 insertions(+), 3 deletions(-) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100755 debian/rules diff --git a/README b/README index 302782f..5f50060 100644 --- a/README +++ b/README @@ -1,6 +1,6 @@ # Command -C++ library for handling command line arguments, designed to be easily used. +C++ library for handling command line arguments. ## Installation diff --git a/README.md b/README.md index 302782f..5f50060 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Command -C++ library for handling command line arguments, designed to be easily used. +C++ library for handling command line arguments. ## Installation diff --git a/configure.ac b/configure.ac index 7825384..988c072 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([Command], [0.2], [bugz@dlugolecki.net.pl], [command], [http://dlugolecki.net.pl/software/command/]) +AC_INIT([Command], [0.2.1], [bugz@dlugolecki.net.pl], [command], [http://dlugolecki.net.pl/software/command/]) AC_PREREQ([2.59]) AM_INIT_AUTOMAKE([1.10 -Wall]) AC_CONFIG_HEADERS([config.h]) diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..3e9f181 --- /dev/null +++ b/debian/changelog @@ -0,0 +1,6 @@ +command (0.2.1) unstable; urgency=medium + + * Initial public release. + * Added debian package building configuration + + -- Rafał Długołęcki Wed, 20 May 2015 21:52:46 +0200 diff --git a/debian/compat b/debian/compat new file mode 100644 index 0000000..ec63514 --- /dev/null +++ b/debian/compat @@ -0,0 +1 @@ +9 diff --git a/debian/control b/debian/control new file mode 100644 index 0000000..fce3a99 --- /dev/null +++ b/debian/control @@ -0,0 +1,12 @@ +Source: command +Section: devel +Priority: extra +Maintainer: Rafał Długołęcki +Build-Depends: debhelper (>= 7.0.50~) +Standards-Version: 3.8.4 +Homepage: http://dlugolecki.net.pl/software/command + +Package: command +Architecture: all +Description: C++ library for handling command line arguments + diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..c52eb98 --- /dev/null +++ b/debian/copyright @@ -0,0 +1,28 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: command +Source: http://dlugolecki.net.pl/software/command + +Files: * +Copyright: 2015 Rafał Długołęcki +License: GPL-3.0+ + +Files: debian/* +Copyright: 2015 Rafał Długołęcki +License: GPL-3.0+ + +License: GPL-3.0+ + This program 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 package 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 program. If not, see . + . + On Debian systems, the complete text of the GNU General + Public License version 3 can be found in "/usr/share/common-licenses/GPL-3". diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..78ab17e --- /dev/null +++ b/debian/rules @@ -0,0 +1,12 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# +# Authors: +# Rafał Długołęcki + +# Uncomment this to turn on verbose mode. +# export DH_VERBOSE=1 + +%: + dh $@ -- 2.30.2