[Python-apps-commits] r10195 - in packages/crudini/trunk (13 files)

zev-guest at users.alioth.debian.org zev-guest at users.alioth.debian.org
Tue Nov 26 21:20:33 UTC 2013


    Date: Tuesday, November 26, 2013 @ 21:20:32
  Author: zev-guest
Revision: 10195

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

Added:
  packages/crudini/trunk/debian/
  packages/crudini/trunk/debian/changelog
  packages/crudini/trunk/debian/compat
  packages/crudini/trunk/debian/control
  packages/crudini/trunk/debian/copyright
  packages/crudini/trunk/debian/crudini.1
  packages/crudini/trunk/debian/docs
  packages/crudini/trunk/debian/install
  packages/crudini/trunk/debian/manpages
  packages/crudini/trunk/debian/rules
  packages/crudini/trunk/debian/source/
  packages/crudini/trunk/debian/source/format
  packages/crudini/trunk/debian/watch

Added: packages/crudini/trunk/debian/changelog
===================================================================
--- packages/crudini/trunk/debian/changelog	                        (rev 0)
+++ packages/crudini/trunk/debian/changelog	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1,5 @@
+crudini (0.3-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #723740)
+
+ -- Zev Benjamin <zev at zulip.com>  Tue, 26 Nov 2013 15:07:23 -0500

Added: packages/crudini/trunk/debian/compat
===================================================================
--- packages/crudini/trunk/debian/compat	                        (rev 0)
+++ packages/crudini/trunk/debian/compat	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1 @@
+8

Added: packages/crudini/trunk/debian/control
===================================================================
--- packages/crudini/trunk/debian/control	                        (rev 0)
+++ packages/crudini/trunk/debian/control	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1,18 @@
+Source: crudini
+Section: utils
+Priority: optional
+Maintainer: Zulip Debian Packaging Team <debian at zulip.com>
+Uploaders: Zev Benjamin <zev at zulip.com>, Luke Faraone <lfaraone at zulip.com>, Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 8.0.0)
+Standards-Version: 3.9.4
+Homepage: http://www.pixelbeat.org/programs/crudini/
+Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/crudini/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-apps/packages/crudini/trunk/
+
+Package: crudini
+Architecture: any
+Depends: ${python:Depends}, ${shlibs:Depends}, ${misc:Depends}, python-iniparse
+Description: utility for manipulating ini files
+ crudini is a utility to simplify reading and updating ini files
+ from shell scripts, so named as it provides CRUD functionality.  It
+ can handle most variants of ini.

Added: packages/crudini/trunk/debian/copyright
===================================================================
--- packages/crudini/trunk/debian/copyright	                        (rev 0)
+++ packages/crudini/trunk/debian/copyright	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1,44 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: crudini
+Upstream-Contact: Pádraig Brady <P at draigBrady.com>
+Source: http://www.pixelbeat.org/programs/crudini/
+
+Files: *
+Copyright: 2013 Pádraig Brady <P at draigBrady.com>
+License: GPL-2
+ 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; version 2 of the License.
+ .
+ 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 <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
+
+Files: debian/*
+Copyright: 2013 Zulip Debian Packaging Team <debian at zulip.com>
+License: Expat
+ Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the
+ "Software"), to deal in the Software without restriction, including
+ without limitation the rights to use, copy, modify, merge, publish,
+ distribute, sublicense, and/or sell copies of the Software, and to
+ permit persons to whom the Software is furnished to do so, subject to
+ the following conditions:
+ .
+ The above copyright notice and this permission notice shall be included
+ in all copies or substantial portions of the Software.
+ .
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Added: packages/crudini/trunk/debian/crudini.1
===================================================================
--- packages/crudini/trunk/debian/crudini.1	                        (rev 0)
+++ packages/crudini/trunk/debian/crudini.1	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1,60 @@
+.\" DO NOT MODIFY THIS FILE!  It was generated by help2man 1.41.1.
+.TH CRUDINI "1" "November 2013" "crudini 0.3" "User Commands"
+.SH NAME
+crudini \- A utility for manipulating ini files
+.SH SYNOPSIS
+crudini \fB\-\-set\fR [\-\-existing] config_file section [param] [value]
+.br
+crudini \fB\-\-get\fR [\-\-format=sh|ini] config_file [section] [param]
+.br
+crudini \fB\-\-del\fR [\-\-existing] config_file section [param]
+.br
+crudini \fB\-\-merge\fR [\-\-existing] config_file [section]
+
+.SH EXAMPLES
+
+.SS "Add/Update a var"
+.IP
+crudini \-\-set config_file section parameter value
+
+.SS "Update an existing var"
+.IP
+crudini \-\-set \-\-existing config_file section parameter value
+
+.SS "Delete a var"
+.IP
+crudini \-\-del config_file section parameter
+
+.SS "Delete a section"
+.IP
+crudini \-\-del config_file section
+
+.SS "Output a value"
+.IP
+crudini \-\-get config_file section parameter
+
+.SS "Output a global value not in a section"
+.IP
+crudini \-\-get config_file '' parameter
+
+.SS "Output a section"
+.IP
+crudini \-\-get config_file section
+
+.SS "Output a section, parseable by shell"
+.IP
+eval $(crudini \-\-get \-\-format=sh config_file section)
+
+.SS "Update an ini file from shell variable(s)"
+.IP
+echo name="$name" | crudini \-\-merge config_file section
+
+.SS "Merge an ini file from another ini"
+.IP
+crudini \-\-merge config_file < another.ini
+
+.SH AUTHOR
+
+This manual page was written by Zev Benjamin <zev at zulip.com> for the
+Debian GNU/Linux system (but may be used by others).  Its contents
+are based on the crudini documentation.

Added: packages/crudini/trunk/debian/docs
===================================================================
--- packages/crudini/trunk/debian/docs	                        (rev 0)
+++ packages/crudini/trunk/debian/docs	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1,2 @@
+README
+TODO

Added: packages/crudini/trunk/debian/install
===================================================================
--- packages/crudini/trunk/debian/install	                        (rev 0)
+++ packages/crudini/trunk/debian/install	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1 @@
+crudini usr/bin

Added: packages/crudini/trunk/debian/manpages
===================================================================
--- packages/crudini/trunk/debian/manpages	                        (rev 0)
+++ packages/crudini/trunk/debian/manpages	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1 @@
+debian/crudini.1
\ No newline at end of file

Added: packages/crudini/trunk/debian/rules
===================================================================
--- packages/crudini/trunk/debian/rules	                        (rev 0)
+++ packages/crudini/trunk/debian/rules	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+%:
+	dh $@ 


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

Added: packages/crudini/trunk/debian/source/format
===================================================================
--- packages/crudini/trunk/debian/source/format	                        (rev 0)
+++ packages/crudini/trunk/debian/source/format	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/crudini/trunk/debian/watch
===================================================================
--- packages/crudini/trunk/debian/watch	                        (rev 0)
+++ packages/crudini/trunk/debian/watch	2013-11-26 21:20:32 UTC (rev 10195)
@@ -0,0 +1,6 @@
+# See uscan(1) for format
+
+version=3
+
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/crudini-$1.tar.gz/ \
+  https://github.com/pixelb/crudini/releases .*/v?(\d\S*)\.tar\.gz




More information about the Python-apps-commits mailing list