[Python-modules-commits] r4951 - in packages/sclapp/trunk (9 files)
appaji-guest at users.alioth.debian.org
appaji-guest at users.alioth.debian.org
Sun Mar 30 03:16:44 UTC 2008
Date: Sunday, March 30, 2008 @ 03:16:43
Author: appaji-guest
Revision: 4951
Add debian directory with mergeWithUpstream 1
Added:
packages/sclapp/trunk/debian/
packages/sclapp/trunk/debian/changelog
packages/sclapp/trunk/debian/compat
packages/sclapp/trunk/debian/control
packages/sclapp/trunk/debian/copyright
packages/sclapp/trunk/debian/docs
packages/sclapp/trunk/debian/examples
packages/sclapp/trunk/debian/rules
packages/sclapp/trunk/debian/watch
Property changes on: packages/sclapp/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: packages/sclapp/trunk/debian/changelog
===================================================================
--- packages/sclapp/trunk/debian/changelog (rev 0)
+++ packages/sclapp/trunk/debian/changelog 2008-03-30 03:16:43 UTC (rev 4951)
@@ -0,0 +1,5 @@
+sclapp (0.5.1-1) unstable; urgency=low
+
+ * Initial release (Closes: #472769)
+
+ -- Y Giridhar Appaji Nag <giridhar at appaji.net> Sun, 30 Mar 2008 00:23:50 +0530
Added: packages/sclapp/trunk/debian/compat
===================================================================
--- packages/sclapp/trunk/debian/compat (rev 0)
+++ packages/sclapp/trunk/debian/compat 2008-03-30 03:16:43 UTC (rev 4951)
@@ -0,0 +1 @@
+5
Added: packages/sclapp/trunk/debian/control
===================================================================
--- packages/sclapp/trunk/debian/control (rev 0)
+++ packages/sclapp/trunk/debian/control 2008-03-30 03:16:43 UTC (rev 4951)
@@ -0,0 +1,23 @@
+Source: sclapp
+Section: python
+Priority: optional
+Maintainer: Y Giridhar Appaji Nag <giridhar at appaji.net>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 5.0.38)
+Build-Depends-Indep: python-central (>= 0.5.6)
+Standards-Version: 3.7.3
+XS-Python-Version: all
+
+Package: python-sclapp
+Architecture: all
+Depends: ${python:Depends}
+XB-Python-Version: ${python:Versions}
+Description: framework for Python command-line applications
+ sclapp is a Python module that makes it easy to write well-behaved
+ command-line applications and helps authors deal with the following
+ issues:
+ .
+ * Signal handling
+ * Terminal character encodings
+ * Standard output failures (broken pipes)
+ * Common command-line options (like --help and --version)
Added: packages/sclapp/trunk/debian/copyright
===================================================================
--- packages/sclapp/trunk/debian/copyright (rev 0)
+++ packages/sclapp/trunk/debian/copyright 2008-03-30 03:16:43 UTC (rev 4951)
@@ -0,0 +1,48 @@
+This package was debianized by Y Giridhar Appaji Nag <giridhar at appaji.net> on
+Fri, 28 Mar 2008 18:00:56 +0530.
+
+It was downloaded from http://www.alittletooquiet.net/software/sclapp/
+
+Upstream Author:
+
+ Forest Bond <forest at alittletooquiet.net>
+
+Copyright:
+
+ Copyright (C) 2005-2008, Forest Bond
+
+License:
+
+ This program 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; unless explicitly stated otherwise
+ elsewhere, only version 2 of the License (not version 3.x etc.) is
+ the valid version of the GNU General Public License for sclapp.
+
+ This program 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
+ with the Debian GNU/Linux distribution in the file
+ /usr/share/common-licenses/GPL-2; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
+ The documentation in sclapp.txt is licensed under the GNU Free
+ Documentation License
+
+ Permission is granted to copy, distribute and/or modify this document
+ under the terms of the GNU Free Documentation License, Version 1.2
+ or any later version published by the Free Software Foundation;
+ with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
+
+ You should have received a copy of the GNU Free Documentation License
+ with the Debian GNU/Linux distribution in the file
+ /usr/share/common-licenses/GFDL; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
+The Debian packaging is
+Copyright (C) 2008, Y Giridhar Appaji Nag <giridhar at appaji.net> and
+is licensed under the GNU GPL, either version 2 of the License, or (at
+your option) any later version; see `/usr/share/common-licenses/GPL-2'.
Added: packages/sclapp/trunk/debian/docs
===================================================================
--- packages/sclapp/trunk/debian/docs (rev 0)
+++ packages/sclapp/trunk/debian/docs 2008-03-30 03:16:43 UTC (rev 4951)
@@ -0,0 +1,2 @@
+CHANGELOG
+sclapp.txt
Added: packages/sclapp/trunk/debian/examples
===================================================================
--- packages/sclapp/trunk/debian/examples (rev 0)
+++ packages/sclapp/trunk/debian/examples 2008-03-30 03:16:43 UTC (rev 4951)
@@ -0,0 +1 @@
+test/*
Added: packages/sclapp/trunk/debian/rules
===================================================================
--- packages/sclapp/trunk/debian/rules (rev 0)
+++ packages/sclapp/trunk/debian/rules 2008-03-30 03:16:43 UTC (rev 4951)
@@ -0,0 +1,49 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+build: build-stamp
+
+build-stamp:
+ dh_testdir
+ python setup.py build
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+ rm -rf build
+ find . -name '*.py[co]' | xargs rm -f
+ rm -f sclapp/version.py
+ dh_clean
+
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+ python setup.py install --root=$(CURDIR)/debian/python-sclapp
+
+# Build architecture-independent files here.
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs NEWS
+ dh_installdocs
+ dh_installexamples
+ dh_pycentral
+ dh_compress -X.py
+ dh_fixperms
+ dh_installdeb
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# We have nothing to do by default.
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install
Property changes on: packages/sclapp/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
Added: packages/sclapp/trunk/debian/watch
===================================================================
--- packages/sclapp/trunk/debian/watch (rev 0)
+++ packages/sclapp/trunk/debian/watch 2008-03-30 03:16:43 UTC (rev 4951)
@@ -0,0 +1,3 @@
+version=3
+
+http://www.alittletooquiet.net/media/release/sclapp-(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list