summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <bbaren@debian.org>2018-12-20 19:26:06 -0500
committerGravatar Benjamin Barenblat <bbaren@debian.org>2018-12-20 19:26:06 -0500
commiteaa69345652e35151cd6b32550a963b56f1abbd1 (patch)
tree357349b03b0eee83a9e827c4e4871724b2e1041c
parentb07cc8d00b729e6e6a984f402c22c2b114b19722 (diff)
Begin packaging 1.3.3
-rw-r--r--debian/changelog5
-rw-r--r--debian/compat1
-rw-r--r--debian/control22
-rw-r--r--debian/copyright58
-rw-r--r--debian/docs1
-rw-r--r--debian/gbp.conf2
-rwxr-xr-xdebian/rules8
-rw-r--r--debian/source/format1
-rw-r--r--debian/watch4
9 files changed, 102 insertions, 0 deletions
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 <bbaren@debian.org> 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 <bbaren@debian.org>
+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 <mburns@thoughtbot.com>
+Source: https://github.com/thoughtbot/rcm
+Copyright: 2013 Mike Burns <mburns@thoughtbot.com>
+ 2014-2015 thoughtbot
+License: BSD-3-clause
+
+Files: *
+Copyright: 2013 Mike Burns <mburns@thoughtbot.com>
+ 2014 thoughtbot
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2018 Benjamin Barenblat <bbaren@debian.org>
+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