[Python-modules-commits] [proselint] 01/01: Inital debian/ import

Víctor Cuadrado Juan viccuad-guest at moszumanska.debian.org
Fri Apr 8 18:08:20 UTC 2016


This is an automated email from the git hooks/post-receive script.

viccuad-guest pushed a commit to branch master
in repository proselint.

commit 297624902efa383404ea82e56bff111b9ab52f12
Author: Víctor Cuadrado Juan <me at viccuad.me>
Date:   Fri Apr 8 20:08:04 2016 +0200

    Inital debian/ import
---
 debian/changelog          |  5 +++++
 debian/compat             |  1 +
 debian/control            | 31 +++++++++++++++++++++++++++++++
 debian/copyright          | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/proselint.1        | 42 ++++++++++++++++++++++++++++++++++++++++++
 debian/proselint.manpages |  1 +
 debian/rules              |  9 +++++++++
 debian/source/format      |  1 +
 debian/watch              |  3 +++
 9 files changed, 135 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..44a3214
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+proselint (0.5.3-1) UNRELEASED; urgency=medium
+
+  * Initial release (Closes: #816149)
+
+ -- Víctor Cuadrado Juan <me at viccuad.me>  Mon, 21 Mar 2016 22:07:36 +0100
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..05e6daa
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,31 @@
+Source: proselint
+Section: text
+Priority: optional
+Maintainer: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Uploaders: Víctor Cuadrado Juan <me at viccuad.me>
+Build-Depends:
+ debhelper (>=9),
+ dh-python,
+ python3-all,
+ python3-setuptools,
+# for tests:
+ python3-nose,
+ python3-click,
+ python3-future,
+ python3-six
+Standards-Version: 3.9.7
+Homepage: https://proselint.com
+X-Python3-Version: >= 3.2
+Vcs-Git: https://anonscm.debian.org/git/python-modules/packages/proselint.git
+Vcs-Browser: https://anonscm.debian.org/cgit/python-modules/packages/proselint.git
+
+
+Package: proselint
+Architecture: all
+Depends: ${python3:Depends}, ${misc:Depends}
+Description: Library and command-line prose linter utility (Python 3)
+ Proselint aggregates knowledge about best practices in writing from world's
+ greatest writers and editors, and makes it accessible by giving suggestions in
+ the form of a linter for prose.
+ .
+ This package installs the library and proselint binary for Python 3.
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..bd174a6
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,42 @@
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: Amperser Labs
+Upstream-Contact: <hello at amperser.com>
+Source: http://proselint.com
+
+
+Files: *
+Copyright: 2014–2016 Jordan Suchow
+           2014-2016 Michael Pacer
+           2014-2016 Lara A. Ross
+License: BSD-3-clause
+
+
+Files: debian/*
+Copyright: 2016 Víctor Cuadrado Juan <me at viccuad.me>
+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:
+  1. Redistributions of source code must retain the above copyright
+     notice, this list of conditions and the following disclaimer.
+  2. 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.
+  3. Neither the name of the University 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 REGENTS 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 REGENTS 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.
\ No newline at end of file
diff --git a/debian/proselint.1 b/debian/proselint.1
new file mode 100644
index 0000000..dbae09f
--- /dev/null
+++ b/debian/proselint.1
@@ -0,0 +1,42 @@
+.TH proselint "1" "28 February 2016" "proselint" ""
+
+.SH NAME
+proselint \- A prose lint command-line utility
+
+.SH SYNOPSIS
+.B proselint
+.RI [ options ]
+
+.SH DESCRIPTION
+Proselint is a command-line utility that aggregates knowledge about best
+practices in writing from world's greatest writers and editors, and makes it
+accessible by giving suggestions in the form of a linter for prose.
+.SH OPTIONS
+Proselint accepts the following options:
+.TP
+If no file is provided, proselint will run the included demo.md.
+.TP
+.B "--help"
+Show help options
+.TP
+.B "--version, --whatever"
+Print version string and exit
+.TP
+.B "--i, --initialize"
+Run the initialization
+.TP
+.B "--d, --debug"
+Output debug information
+.TP
+.B "--s, --score"
+Output lint score
+.TP
+.B "--j, --json"
+Display the errors in json format
+.TP
+.B "--t, --time"
+Run a timing test, useful for developing (needs a populated corpora/ directory)
+.TP
+
+.SH "ADDITIONAL INFORMATION"
+For further information, visit the website http://proselint.com.
diff --git a/debian/proselint.manpages b/debian/proselint.manpages
new file mode 100644
index 0000000..d7498d0
--- /dev/null
+++ b/debian/proselint.manpages
@@ -0,0 +1 @@
+debian/proselint.1
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..3a95e4f
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,9 @@
+#!/usr/bin/make -f
+
+export PYBUILD_NAME=proselint
+
+%:
+	dh $@  --with python3 --buildsystem=pybuild
+
+override_dh_auto_test:
+	# TODO tests search for proselint installed in the system
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..f3aa809
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|a|b|c)/~$1/ \
+https://pypi.debian.net/proselint/proselint-(.+)\.(?:zip|tgz|tbz|txz|(?:tar\.(?:gz|bz2|xz)))
\ No newline at end of file

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/proselint.git



More information about the Python-modules-commits mailing list