[Python-apps-commits] r11114 - in packages/ghp-import/trunk (12 files)

asb at users.alioth.debian.org asb at users.alioth.debian.org
Tue Aug 5 01:49:16 UTC 2014


    Date: Tuesday, August 5, 2014 @ 01:49:15
  Author: asb
Revision: 11114

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

Added:
  packages/ghp-import/trunk/debian/
  packages/ghp-import/trunk/debian/changelog
  packages/ghp-import/trunk/debian/compat
  packages/ghp-import/trunk/debian/control
  packages/ghp-import/trunk/debian/copyright
  packages/ghp-import/trunk/debian/docs
  packages/ghp-import/trunk/debian/ghp-import.1
  packages/ghp-import/trunk/debian/manpages
  packages/ghp-import/trunk/debian/rules
  packages/ghp-import/trunk/debian/source/
  packages/ghp-import/trunk/debian/source/format
  packages/ghp-import/trunk/debian/watch


Property changes on: packages/ghp-import/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/ghp-import/trunk/debian/changelog
===================================================================
--- packages/ghp-import/trunk/debian/changelog	                        (rev 0)
+++ packages/ghp-import/trunk/debian/changelog	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1,5 @@
+ghp-import (0.4.1-1) unstable; urgency=low
+
+  * Initial release (Closes: #753962).
+
+ -- Andrew Starr-Bochicchio <asb at debian.org>  Mon, 04 Aug 2014 21:09:49 -0400

Added: packages/ghp-import/trunk/debian/compat
===================================================================
--- packages/ghp-import/trunk/debian/compat	                        (rev 0)
+++ packages/ghp-import/trunk/debian/compat	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1 @@
+9

Added: packages/ghp-import/trunk/debian/control
===================================================================
--- packages/ghp-import/trunk/debian/control	                        (rev 0)
+++ packages/ghp-import/trunk/debian/control	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1,25 @@
+Source: ghp-import
+Section: python
+Priority: optional
+Maintainer: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Uploaders: Andrew Starr-Bochicchio <asb at debian.org>
+Build-Depends: debhelper (>= 9.0.0),
+               dh-python,
+               python-all (>= 2.6.6-3~),
+               python-setuptools
+Standards-Version: 3.9.5
+Vcs-Browser: http://anonscm.debian.org/viewvc/python-apps/packages/ghp-import/trunk/
+Vcs-Svn: svn://anonscm.debian.org/python-apps/packages/ghp-import/trunk/
+Homepage: https://github.com/davisp/ghp-import
+
+Package: ghp-import
+Architecture: any
+Depends: ${misc:Depends}, ${python:Depends}, ${shlibs:Depends}
+Enhances: python-pelican
+Description: Easily import docs to your gh-pages branch
+ ghp-import is a Python script meant to make using GitHub's gh-pages
+ branches for hosting documentation simple.
+ .
+ Inside your repository just run `ghp-import $DOCS_DIR` where $DOCS_DIR
+ is the path to the built documentation. This will write a commit to your
+ gh-pages branch with the current documents in it.

Added: packages/ghp-import/trunk/debian/copyright
===================================================================
--- packages/ghp-import/trunk/debian/copyright	                        (rev 0)
+++ packages/ghp-import/trunk/debian/copyright	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1,20 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: ghp-import
+Source: https://pypi.python.org/pypi/ghp-import
+
+Files: *
+Copyright: 2013, Paul Davis <paul.joseph.davis at gmail.com>
+License: Tumbolia Public License
+
+Files: debian/*
+Copyright: 2014 Andrew Starr-Bochicchio <asb at debian.org>
+License: Tumbolia Public License
+
+License: Tumbolia Public License
+ Copying and distribution of this file, with or without modification, are
+ permitted in any medium without royalty provided the copyright notice and this
+ notice are preserved.
+ .
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+ .
+  0. opan saurce LOL

Added: packages/ghp-import/trunk/debian/docs
===================================================================
--- packages/ghp-import/trunk/debian/docs	                        (rev 0)
+++ packages/ghp-import/trunk/debian/docs	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1 @@
+README.md

Added: packages/ghp-import/trunk/debian/ghp-import.1
===================================================================
--- packages/ghp-import/trunk/debian/ghp-import.1	                        (rev 0)
+++ packages/ghp-import/trunk/debian/ghp-import.1	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1,25 @@
+.TH GHP-IMPORT "1" "August 2014" "ghp-import 0.4.1" "User Commands"
+.SH NAME
+ghp-import \- Easily import docs to your gh-pages branch
+.SH SYNOPSIS
+.B ghp-import
+[\fIOPTIONS\fR] \fIDIRECTORY\fR
+.SH OPTIONS
+.TP
+\fB\-n\fR
+Include a .nojekyll file in the branch.
+.TP
+\fB\-m\fR MESG
+The commit message to use on the target branch.
+.TP
+\fB\-p\fR
+Push the branch to origin/{branch} after committing.
+.TP
+\fB\-r\fR REMOTE
+The name of the remote to push to. [origin]
+.TP
+\fB\-b\fR BRANCH
+Name of the branch to write to. [gh\-pages]
+.TP
+\fB\-h\fR, \fB\-\-help\fR
+show help message and exit

Added: packages/ghp-import/trunk/debian/manpages
===================================================================
--- packages/ghp-import/trunk/debian/manpages	                        (rev 0)
+++ packages/ghp-import/trunk/debian/manpages	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1 @@
+debian/ghp-import.1

Added: packages/ghp-import/trunk/debian/rules
===================================================================
--- packages/ghp-import/trunk/debian/rules	                        (rev 0)
+++ packages/ghp-import/trunk/debian/rules	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@ --with python2 --buildsystem=pybuild


Property changes on: packages/ghp-import/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/ghp-import/trunk/debian/source/format
===================================================================
--- packages/ghp-import/trunk/debian/source/format	                        (rev 0)
+++ packages/ghp-import/trunk/debian/source/format	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/ghp-import/trunk/debian/watch
===================================================================
--- packages/ghp-import/trunk/debian/watch	                        (rev 0)
+++ packages/ghp-import/trunk/debian/watch	2014-08-05 01:49:15 UTC (rev 11114)
@@ -0,0 +1,3 @@
+version=3
+opts=uversionmangle=s/(rc|dev|a|b|c)/~$1/ \
+https://pypi.python.org/packages/source/g/ghp-import/ghp-import-(.*)\.(?:tar\.gz|zip|tar\.bz2)




More information about the Python-apps-commits mailing list