[Python-modules-commits] r25785 - in packages/binaryornot/trunk (12 files)

bernat at users.alioth.debian.org bernat at users.alioth.debian.org
Sun Sep 8 14:50:54 UTC 2013


    Date: Sunday, September 8, 2013 @ 14:50:44
  Author: bernat
Revision: 25785

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

Added:
  packages/binaryornot/trunk/debian/
  packages/binaryornot/trunk/debian/changelog
  packages/binaryornot/trunk/debian/compat
  packages/binaryornot/trunk/debian/control
  packages/binaryornot/trunk/debian/cookiecutter.1
  packages/binaryornot/trunk/debian/cookiecutter.manpages
  packages/binaryornot/trunk/debian/copyright
  packages/binaryornot/trunk/debian/python-cookiecutter-doc.doc-base
  packages/binaryornot/trunk/debian/rules
  packages/binaryornot/trunk/debian/source/
  packages/binaryornot/trunk/debian/source/format
  packages/binaryornot/trunk/debian/watch


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

Added: packages/binaryornot/trunk/debian/changelog
===================================================================
--- packages/binaryornot/trunk/debian/changelog	                        (rev 0)
+++ packages/binaryornot/trunk/debian/changelog	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1,5 @@
+binaryornot (0.1.1-1) UNRELEASED; urgency=low
+
+  * Initial release. Closes: #720024.
+
+ -- Vincent Bernat <bernat at debian.org>  Sun, 08 Sep 2013 16:41:15 +0200

Added: packages/binaryornot/trunk/debian/compat
===================================================================
--- packages/binaryornot/trunk/debian/compat	                        (rev 0)
+++ packages/binaryornot/trunk/debian/compat	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1 @@
+7

Added: packages/binaryornot/trunk/debian/control
===================================================================
--- packages/binaryornot/trunk/debian/control	                        (rev 0)
+++ packages/binaryornot/trunk/debian/control	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1,34 @@
+Source: binaryornot
+Section: python
+Priority: optional
+Maintainer: Vincent Bernat <bernat at debian.org>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 7.0.50~), dh-python,
+               python-all, python3-all,
+               python-setuptools, python3-setuptools
+Standards-Version: 3.9.4
+Homepage: https://github.com/audreyr/binaryornot
+Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/binaryornot/trunk/
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/binaryornot/trunk/
+
+Package: python-binaryornot
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Description: check if a file is binary or text (Python 2 module)
+ This Python package provides a function to check if a file is a text
+ file or a binary file. It uses the same heuristic as file(1) by
+ looking at the first 1024 bytes of the file and checks that all
+ characters are printable.
+ .
+ This package contains the Python 2 module.
+
+Package: python3-binaryornot
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: check if a file is binary or text (Python 3 module)
+ This Python package provides a function to check if a file is a text
+ file or a binary file. It uses the same heuristic as file(1) by
+ looking at the first 1024 bytes of the file and checks that all
+ characters are printable.
+ .
+ This package contains the Python 3 module.

Added: packages/binaryornot/trunk/debian/cookiecutter.1
===================================================================
--- packages/binaryornot/trunk/debian/cookiecutter.1	                        (rev 0)
+++ packages/binaryornot/trunk/debian/cookiecutter.1	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1,23 @@
+.Dd $Mdocdate: August 18 2013 $
+.Dt COOKIECUTTER 1
+.Os
+.Sh NAME
+.Nm cookiecutter
+.Nd create projects from project templates
+.Sh SYNOPSIS
+.Nm
+.Op Fl h
+.Ar input
+.Sh DESCRIPTION
+.Nm
+is a command-line tool to create projects from project templates. It
+takes as input a template which is either a local directory or an URL
+to a repository.
+.Nm
+will then generate the project from the template. It may ask questions
+to fill in some values.
+.Sh SEE ALSO
+For more documentation about
+.Nm ,
+have a look at
+.Pa /usr/share/doc/python-cookiecutter-doc/html/index.html .

Added: packages/binaryornot/trunk/debian/cookiecutter.manpages
===================================================================
--- packages/binaryornot/trunk/debian/cookiecutter.manpages	                        (rev 0)
+++ packages/binaryornot/trunk/debian/cookiecutter.manpages	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1 @@
+debian/cookiecutter.1

Added: packages/binaryornot/trunk/debian/copyright
===================================================================
--- packages/binaryornot/trunk/debian/copyright	                        (rev 0)
+++ packages/binaryornot/trunk/debian/copyright	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1,43 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: BinaryOrNot
+Upstream-Contact: Audrey Roy <audreyr at gmail.com>
+Source: https://github.com/audreyr/binaryornot
+
+Files: *
+Copyright: 2013 Audrey Roy
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: 2013 Vincent Bernat <bernat at debian.org>
+License: BSD-3-clause
+
+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 border 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.

Added: packages/binaryornot/trunk/debian/python-cookiecutter-doc.doc-base
===================================================================
--- packages/binaryornot/trunk/debian/python-cookiecutter-doc.doc-base	                        (rev 0)
+++ packages/binaryornot/trunk/debian/python-cookiecutter-doc.doc-base	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1,9 @@
+Document: cookiecutter
+Title: Cookiecutter Documentation
+Author: Audrey Roy
+Abstract: This document describes Cookiecutter
+Section: Programming/Python
+
+Format: HTML
+Index: /usr/share/doc/python-cookiecutter-doc/html/index.html
+Files: /usr/share/doc/python-cookiecutter-doc/html/*.html

Added: packages/binaryornot/trunk/debian/rules
===================================================================
--- packages/binaryornot/trunk/debian/rules	                        (rev 0)
+++ packages/binaryornot/trunk/debian/rules	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1,8 @@
+#!/usr/bin/make -f
+# -*- mode: makefile; coding: utf-8 -*-
+
+export PYBUILD_DESTDIR_python2=debian/python-binaryornot/
+export PYBUILD_DESTDIR_python3=debian/python3-binaryornot/
+
+%:
+	dh $@ --with python2,python3 --buildsystem=pybuild


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

Added: packages/binaryornot/trunk/debian/source/format
===================================================================
--- packages/binaryornot/trunk/debian/source/format	                        (rev 0)
+++ packages/binaryornot/trunk/debian/source/format	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/binaryornot/trunk/debian/watch
===================================================================
--- packages/binaryornot/trunk/debian/watch	                        (rev 0)
+++ packages/binaryornot/trunk/debian/watch	2013-09-08 14:50:44 UTC (rev 25785)
@@ -0,0 +1,3 @@
+version=3
+opts=filenamemangle=s/.+\/v?(\d\S*)\.tar\.gz/binaryornot-$1.tar.gz/ \
+  https://github.com/audreyr/binaryornot/releases .*/v?(\d\S*)\.tar\.gz




More information about the Python-modules-commits mailing list