[Python-apps-commits] r13636 - in packages/bundlewrap/trunk (11 files)

highvoltage-guest at users.alioth.debian.org highvoltage-guest at users.alioth.debian.org
Tue Oct 25 10:57:32 UTC 2016


    Date: Tuesday, October 25, 2016 @ 10:57:31
  Author: highvoltage-guest
Revision: 13636

[svn-inject] Applying Debian modifications (2.9.1-1) to trunk

Added:
  packages/bundlewrap/trunk/debian/
  packages/bundlewrap/trunk/debian/bundlewrap.manpages
  packages/bundlewrap/trunk/debian/bw.1
  packages/bundlewrap/trunk/debian/changelog
  packages/bundlewrap/trunk/debian/compat
  packages/bundlewrap/trunk/debian/control
  packages/bundlewrap/trunk/debian/copyright
  packages/bundlewrap/trunk/debian/rules
  packages/bundlewrap/trunk/debian/source/
  packages/bundlewrap/trunk/debian/source/format
  packages/bundlewrap/trunk/debian/watch


Property changes on: packages/bundlewrap/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/bundlewrap/trunk/debian/bundlewrap.manpages
===================================================================
--- packages/bundlewrap/trunk/debian/bundlewrap.manpages	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/bundlewrap.manpages	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1 @@
+debian/bw.1

Added: packages/bundlewrap/trunk/debian/bw.1
===================================================================
--- packages/bundlewrap/trunk/debian/bw.1	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/bw.1	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1,67 @@
+.\"                                      Hey, EMACS: -*- nroff -*-
+.\" (C) Copyright 2016 Jonathan Carter <jcarter at linux.com>,
+.\"
+.\" First parameter, NAME, should be all caps
+.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
+.\" other parameters are allowed: see man(7), man(1)
+.TH Bundlewrap 1 "September 16 2016"
+.\" Please adjust this date whenever revising the manpage.
+.\"
+.\" Some roff macros, for reference:
+.\" .nh        disable hyphenation
+.\" .hy        enable hyphenation
+.\" .ad l      left justify
+.\" .ad b      justify to both left and right margins
+.\" .nf        disable filling
+.\" .fi        enable filling
+.\" .br        insert line break
+.\" .sp <n>    insert n+1 empty lines
+.\" for manpage-specific macros, see man(7)
+.SH NAME
+bundlewrap \- Decentralized configuration management system with Python
+.SH SYNOPSIS
+.B bundlewrap
+.RI [ options ] " files" ...
+.br
+.B bar
+.RI [ options ] " files" ...
+.SH DESCRIPTION
+BundleWrap fills the gap between complex deployments using Chef or
+Puppet and old school system administration over SSH. You do not need
+to know any Python in order to use Bundlewrap, but you can easily extend
+your bundles using Python.
+
+While most other config management systems rely on a client-server
+architecture, BundleWrap works off a repository cloned to your local machine.
+
+It then automates the process of SSHing into your servers and making sure
+everything is configured the way it's supposed to be. You won't have to
+install anything on managed servers.
+
+.B bundlewrap
+and
+.B bar
+commands.
+.PP
+.\" TeX users may be more comfortable with the \fB<whatever>\fP and
+.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
+.\" respectively.
+\fBbundlewrap\fP is a program that...
+.SH OPTIONS
+These programs follow the usual GNU command line syntax, with long
+options starting with two dashes (`-').
+A summary of options is included below.
+For a complete description, see the Info files.
+.TP
+.B \-h, \-\-help
+Show summary of options.
+.TP
+.B \-v, \-\-version
+Show version of program.
+.SH SEE ALSO
+.BR bar (1),
+.BR baz (1).
+.br
+The programs are documented fully by
+.IR "The Rise and Fall of a Fooish Bar" ,
+available via the Info system.

Added: packages/bundlewrap/trunk/debian/changelog
===================================================================
--- packages/bundlewrap/trunk/debian/changelog	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/changelog	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1,5 @@
+bundlewrap (2.9.1-1) unstable; urgency=medium
+
+  * Initial release (Closes: 838029)
+
+ -- Jonathan Carter <jcarter at linux.com>  Fri, 16 Sep 2016 16:54:45 +0200

Added: packages/bundlewrap/trunk/debian/compat
===================================================================
--- packages/bundlewrap/trunk/debian/compat	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/compat	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1 @@
+9

Added: packages/bundlewrap/trunk/debian/control
===================================================================
--- packages/bundlewrap/trunk/debian/control	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/control	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1,41 @@
+Source: bundlewrap
+Section: python
+Priority: optional
+Maintainer: Jonathan Carter <jcarter at linux.com>
+Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 9), python, python-setuptools
+Standards-Version: 3.9.8
+Homepage: http://bundlewrap.org/
+
+Package: bundlewrap
+Architecture: all
+Depends: python-concurrent.futures,
+         python-ipaddress,
+         python-requests-futures,
+         python,
+         python-cffi,
+         python-cryptography,
+         python-enum34,
+         python-idna,
+         python-jinja2,
+         python-mako,
+         python-markupsafe,
+         python-passlib,
+         python-pyasn1,
+         python-pycparser,
+         python-requests,
+         python-six,
+         python-wheel,
+         ${misc:Depends},
+         ${shlibs:Depends}
+Description: Decentralized configuration management system with Python
+ By allowing for easy and low-overhead config management, BundleWrap fills
+ the gap between complex deployments using Chef or Puppet and old school
+ system administration over SSH.
+ .
+ While most other config management systems rely on a client-server
+ architecture, BundleWrap works off a repository cloned to your local machine.
+ .
+ It then automates the process of SSHing into your servers and making sure
+ everything is configured the way it's supposed to be. You won't have to
+ install anything on managed servers.

Added: packages/bundlewrap/trunk/debian/copyright
===================================================================
--- packages/bundlewrap/trunk/debian/copyright	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/copyright	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1,30 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: bundlewrap
+Source: https://github.com/bundlewrap/bundlewrap
+
+Files: *
+Copyright: Torsten Rehn <torsten at rehn.email>
+ Peter Hofmann <scm at uninformativ.de>
+ Tim Buchwaldt <tim at buchwaldt.ws>
+License: GPL-3+
+
+Files: debian/*
+Copyright: 2016 Jonathan Carter <jcarter at linux.com>
+License: GPL-3+
+
+License: GPL-3+
+ This package 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 <https://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".

Added: packages/bundlewrap/trunk/debian/rules
===================================================================
--- packages/bundlewrap/trunk/debian/rules	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/rules	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1,5 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@
+


Property changes on: packages/bundlewrap/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/bundlewrap/trunk/debian/source/format
===================================================================
--- packages/bundlewrap/trunk/debian/source/format	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/source/format	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/bundlewrap/trunk/debian/watch
===================================================================
--- packages/bundlewrap/trunk/debian/watch	                        (rev 0)
+++ packages/bundlewrap/trunk/debian/watch	2016-10-25 10:57:31 UTC (rev 13636)
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/bundlewrap-$1\.tar\.gz/ \
+   https://github.com/bundlewrap/bundlewrap/tags .*/v?(\d\S*)\.tar\.gz




More information about the Python-apps-commits mailing list