From eaa69345652e35151cd6b32550a963b56f1abbd1 Mon Sep 17 00:00:00 2001 From: Benjamin Barenblat Date: Thu, 20 Dec 2018 19:26:06 -0500 Subject: Begin packaging 1.3.3 --- debian/changelog | 5 +++++ debian/compat | 1 + debian/control | 22 ++++++++++++++++++++ debian/copyright | 58 ++++++++++++++++++++++++++++++++++++++++++++++++++++ debian/docs | 1 + debian/gbp.conf | 2 ++ debian/rules | 8 ++++++++ debian/source/format | 1 + debian/watch | 4 ++++ 9 files changed, 102 insertions(+) create mode 100644 debian/changelog create mode 100644 debian/compat create mode 100644 debian/control create mode 100644 debian/copyright create mode 100644 debian/docs create mode 100644 debian/gbp.conf create mode 100755 debian/rules create mode 100644 debian/source/format create mode 100644 debian/watch (limited to 'debian') diff --git a/debian/changelog b/debian/changelog new file mode 100644 index 0000000..3252cff --- /dev/null +++ b/debian/changelog @@ -0,0 +1,5 @@ +rcm (1.3.3-1) UNRELEASED; urgency=medium + + * Initial release. + + -- Benjamin Barenblat Thu, 20 Dec 2018 19:10:10 -0500 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..a587460 --- /dev/null +++ b/debian/control @@ -0,0 +1,22 @@ +Source: rcm +Section: utils +Priority: optional +Maintainer: Benjamin Barenblat +Build-Depends: + debhelper (>= 10), + python-cram, + ruby, + ruby-mustache, +Standards-Version: 4.2.1 +Homepage: https://github.com/thoughtbot/rcm +Vcs-Browser: https://git.benjamin.barenblat.name/debian-rcm/ +Vcs-Git: https://git.benjamin.barenblat.name/debian-rcm.git + +Package: rcm +Architecture: all +Depends: ${misc:Depends} +Description: tool to manage rc files (dotfiles) + rcm is a suite of tools to manage rc files (dotfiles). The tools keep dotfiles + in a single directory, managing symlinks to them from (or copies of them in) + other directories. rcm supports tagging rc files and splitting them by + hostname. It also can generate a bootstrapping script for use a new machine. diff --git a/debian/copyright b/debian/copyright new file mode 100644 index 0000000..a79822f --- /dev/null +++ b/debian/copyright @@ -0,0 +1,58 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: rcm +Upstream-Contact: Mike Burns +Source: https://github.com/thoughtbot/rcm +Copyright: 2013 Mike Burns + 2014-2015 thoughtbot +License: BSD-3-clause + +Files: * +Copyright: 2013 Mike Burns + 2014 thoughtbot +License: BSD-3-clause + +Files: debian/* +Copyright: 2018 Benjamin Barenblat +License: Apache-2.0 + +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + https://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian systems, the complete text of the Apache version 2.0 license + can be found in "/usr/share/common-licenses/Apache-2.0". + +License: BSD-3-clause + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are + met: + . + * Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + * Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + * Neither the name of Mike Burns nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS + IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED + TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A + PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED + TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR + PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS + SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/debian/docs b/debian/docs new file mode 100644 index 0000000..212b8a7 --- /dev/null +++ b/debian/docs @@ -0,0 +1 @@ +NEWS.md diff --git a/debian/gbp.conf b/debian/gbp.conf new file mode 100644 index 0000000..4e94eb4 --- /dev/null +++ b/debian/gbp.conf @@ -0,0 +1,2 @@ +[DEFAULT] +upstream-tag = v%(version)s diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..206bfd9 --- /dev/null +++ b/debian/rules @@ -0,0 +1,8 @@ +#!/usr/bin/make -f + +%: + dh $@ --no-parallel --with autoreconf + +.PHONY: override_dh_autoreconf +override_dh_autoreconf: + dh_autoreconf -- ./autogen.sh diff --git a/debian/source/format b/debian/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/debian/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/debian/watch b/debian/watch new file mode 100644 index 0000000..98721e4 --- /dev/null +++ b/debian/watch @@ -0,0 +1,4 @@ +version=4 +opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%rcm-$1.tar.gz%" \ + https://github.com/thoughtbot/rcm/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate -- cgit v1.2.3