[Python-apps-commits] r590 - in packages (12 files)

kitterma-guest at users.alioth.debian.org kitterma-guest at users.alioth.debian.org
Tue Feb 5 01:06:30 UTC 2008


    Date: Tuesday, February 5, 2008 @ 01:06:29
  Author: kitterma-guest
Revision: 590

Add stepic to PAPT repository.

Added:
  packages/stepic/
  packages/stepic/branches/
  packages/stepic/tags/
  packages/stepic/trunk/
  packages/stepic/trunk/debian/
  packages/stepic/trunk/debian/changelog
  packages/stepic/trunk/debian/compat
  packages/stepic/trunk/debian/control
  packages/stepic/trunk/debian/copyright
  packages/stepic/trunk/debian/docs
  packages/stepic/trunk/debian/rules
  packages/stepic/trunk/debian/watch

Added: packages/stepic/trunk/debian/changelog
===================================================================
--- packages/stepic/trunk/debian/changelog	                        (rev 0)
+++ packages/stepic/trunk/debian/changelog	2008-02-05 01:06:29 UTC (rev 590)
@@ -0,0 +1,6 @@
+stepic (0.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #450734)
+
+ -- Scott Kitterman <scott at kitterman.com>  Sun, 20 Jan 2008 00:21:45 -0500
+

Added: packages/stepic/trunk/debian/compat
===================================================================
--- packages/stepic/trunk/debian/compat	                        (rev 0)
+++ packages/stepic/trunk/debian/compat	2008-02-05 01:06:29 UTC (rev 590)
@@ -0,0 +1 @@
+5

Added: packages/stepic/trunk/debian/control
===================================================================
--- packages/stepic/trunk/debian/control	                        (rev 0)
+++ packages/stepic/trunk/debian/control	2008-02-05 01:06:29 UTC (rev 590)
@@ -0,0 +1,19 @@
+Source: stepic
+Section: python
+Priority: optional
+Maintainer: Scott Kitterman <scott at kitterman.com>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>= 5)
+Build-Depends-Indep: python (>= 2.3.5-11), python-support (>= 0.6.4)
+Standards-Version: 3.7.3
+Homepage: http://domnit.org/stepic/doc/
+Vcs-Svn: svn://svn.debian.org/python-modules/packages/stepic/trunk/
+Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/stepic/trunk/?op=log
+
+Package: python-stepic
+Architecture: all
+Depends: ${python:Depends}, python-imaging
+Description: Python Steganography in Images
+ A Python module and command line tool for hiding arbitrary data within images
+ by slightly modifying the colors. These modifications are generally
+ imperceptible to humans, but are machine detectable.

Added: packages/stepic/trunk/debian/copyright
===================================================================
--- packages/stepic/trunk/debian/copyright	                        (rev 0)
+++ packages/stepic/trunk/debian/copyright	2008-02-05 01:06:29 UTC (rev 590)
@@ -0,0 +1,23 @@
+This package was debianized by Scott Kitterman <scott at kitterman.com> on
+Sun, 20 Jan 2008 00:21:45 -0500.
+
+It was downloaded from <http://domnit.org/stepic/doc/>
+
+Upstream Author:
+
+    Lenny Domnitser <lenny at domnit.org>
+
+Copyright:
+
+    Copyright (C) 2007 Lenny Domnitser
+
+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; either version 2 of the License, or
+    (at your option) any later version.
+
+The Debian packaging is (C) 2008, Scott Kitterman <scott at kitterman.com> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+

Added: packages/stepic/trunk/debian/docs
===================================================================
--- packages/stepic/trunk/debian/docs	                        (rev 0)
+++ packages/stepic/trunk/debian/docs	2008-02-05 01:06:29 UTC (rev 590)
@@ -0,0 +1,2 @@
+TODO
+doc/*

Added: packages/stepic/trunk/debian/rules
===================================================================
--- packages/stepic/trunk/debian/rules	                        (rev 0)
+++ packages/stepic/trunk/debian/rules	2008-02-05 01:06:29 UTC (rev 590)
@@ -0,0 +1,63 @@
+#!/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
+
+build: build-stamp
+
+build-stamp:
+	dh_testdir
+
+	# Add here commands to compile the package.
+	python setup.py build
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+
+	# Add here commands to clean up after the build process.
+	rm -Rf $(CURDIR)/debian/build
+
+	dh_clean
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	dh_installdirs
+
+	# Add here commands to install the package into debian/stepic.
+	python setup.py install --root $(CURDIR)/debian/python-stepic
+
+
+# Build architecture-independent files here.
+binary-indep: build install
+
+	dh_testdir -i
+	dh_testroot -i
+	rm $(CURDIR)/debian/python-stepic/usr/share/doc/stepic/COPYING
+	dh_installchangelogs -i
+	dh_compress
+	dh_installdocs -i
+	dh_pysupport -i
+	dh_installman -i
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+# Build architecture-dependent files here.
+binary-arch: build install
+# Nothing to do
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure


Property changes on: packages/stepic/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/stepic/trunk/debian/watch
===================================================================
--- packages/stepic/trunk/debian/watch	                        (rev 0)
+++ packages/stepic/trunk/debian/watch	2008-02-05 01:06:29 UTC (rev 590)
@@ -0,0 +1,3 @@
+version=3
+
+http://domnit.org/stepic/dist/stepic-([0-9]\..*)\.tar\.gz




More information about the Python-apps-commits mailing list