[Python-modules-commits] r16271 - in packages/python-exif/trunk (10 files)
takaki at users.alioth.debian.org
takaki at users.alioth.debian.org
Wed Mar 30 12:50:15 UTC 2011
Date: Wednesday, March 30, 2011 @ 12:50:10
Author: takaki
Revision: 16271
[svn-inject] Applying Debian modifications (1.0.8-1) to trunk
Added:
packages/python-exif/trunk/debian/
packages/python-exif/trunk/debian/changelog
packages/python-exif/trunk/debian/compat
packages/python-exif/trunk/debian/control
packages/python-exif/trunk/debian/copyright
packages/python-exif/trunk/debian/dirs
packages/python-exif/trunk/debian/rules
packages/python-exif/trunk/debian/source/
packages/python-exif/trunk/debian/source/format
packages/python-exif/trunk/debian/watch
Property changes on: packages/python-exif/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
+ 1
Added: packages/python-exif/trunk/debian/changelog
===================================================================
--- packages/python-exif/trunk/debian/changelog (rev 0)
+++ packages/python-exif/trunk/debian/changelog 2011-03-30 12:50:10 UTC (rev 16271)
@@ -0,0 +1,5 @@
+python-exif (1.0.8-1) unstable; urgency=low
+
+ * Initial release (Closes: #610234)
+
+ -- TANIGUCHI Takaki <takaki at debian.org> Sun, 16 Jan 2011 22:36:00 +0900
Added: packages/python-exif/trunk/debian/compat
===================================================================
--- packages/python-exif/trunk/debian/compat (rev 0)
+++ packages/python-exif/trunk/debian/compat 2011-03-30 12:50:10 UTC (rev 16271)
@@ -0,0 +1 @@
+7
Added: packages/python-exif/trunk/debian/control
===================================================================
--- packages/python-exif/trunk/debian/control (rev 0)
+++ packages/python-exif/trunk/debian/control 2011-03-30 12:50:10 UTC (rev 16271)
@@ -0,0 +1,18 @@
+Source: python-exif
+Section: python
+Priority: extra
+Maintainer: TANIGUCHI Takaki <takaki at debian.org>
+Build-Depends: debhelper (>= 7.0.50~),
+ python-support
+Standards-Version: 3.9.1
+Homepage: http://sourceforge.net/projects/exif-py/
+#Vcs-Git: git://git.debian.org/collab-maint/python-exif.git
+#Vcs-Browser: http://git.debian.org/?p=collab-maint/python-exif.git;a=summary
+
+Package: python-exif
+Architecture: all
+Depends: ${python:Depends}, ${misc:Depends}
+Provides: ${python:Provides}
+Description: Python library to extract EXIF data from tiff and jpeg files
+ This is a Python library to extract EXIF information from digital camera
+ image files.
Added: packages/python-exif/trunk/debian/copyright
===================================================================
--- packages/python-exif/trunk/debian/copyright (rev 0)
+++ packages/python-exif/trunk/debian/copyright 2011-03-30 12:50:10 UTC (rev 16271)
@@ -0,0 +1,38 @@
+Format: http://dep.debian.net/deps/dep5/
+Upstream-Name: EXIF.py
+Upstream-Contact: Ianaré Sévi <ianare at gmail.com>
+Source: http://sourceforge.net/projects/exif-py/
+
+Files: *
+Copyright: Copyright (c) 2002-2007 Gene Cash All rights reserved
+ Copyright (c) 2007-2008 Ianaré Sévi All rights reserved
+License: BSD-3-clause
+
+Files: debian/*
+Copyright: Copyright (C) 2011 TANIGUCHI Takaki <takaki 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:
+ 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.
Added: packages/python-exif/trunk/debian/dirs
===================================================================
--- packages/python-exif/trunk/debian/dirs (rev 0)
+++ packages/python-exif/trunk/debian/dirs 2011-03-30 12:50:10 UTC (rev 16271)
@@ -0,0 +1 @@
+usr/share/pyshared
Added: packages/python-exif/trunk/debian/rules
===================================================================
--- packages/python-exif/trunk/debian/rules (rev 0)
+++ packages/python-exif/trunk/debian/rules 2011-03-30 12:50:10 UTC (rev 16271)
@@ -0,0 +1,17 @@
+#!/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
+
+%:
+ dh $@ --with python-support
+
+
+override_dh_auto_install:
+ install -m 644 EXIF.py $(CURDIR)/debian/python-exif/usr/share/pyshared
Property changes on: packages/python-exif/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
+ *
Added: packages/python-exif/trunk/debian/source/format
===================================================================
--- packages/python-exif/trunk/debian/source/format (rev 0)
+++ packages/python-exif/trunk/debian/source/format 2011-03-30 12:50:10 UTC (rev 16271)
@@ -0,0 +1 @@
+3.0 (quilt)
Added: packages/python-exif/trunk/debian/watch
===================================================================
--- packages/python-exif/trunk/debian/watch (rev 0)
+++ packages/python-exif/trunk/debian/watch 2011-03-30 12:50:10 UTC (rev 16271)
@@ -0,0 +1,2 @@
+version=3
+http://sf.net/exif-py/EXIFpy_(.*)\.tar\.gz
More information about the Python-modules-commits
mailing list