[Python-modules-commits] r1986 - in /packages/hachoir-core/trunk/debian: ./ changelog compat control copyright docs pycompat pyversions rules

piotr at users.alioth.debian.org piotr at users.alioth.debian.org
Thu Apr 5 16:08:08 UTC 2007


Author: piotr
Date: Thu Apr  5 16:08:08 2007
New Revision: 1986

URL: http://svn.debian.org/wsvn/python-modules/?sc=1&rev=1986
Log:
[svn-inject] Applying Debian modifications to trunk

Added:
    packages/hachoir-core/trunk/debian/   (with props)
    packages/hachoir-core/trunk/debian/changelog
    packages/hachoir-core/trunk/debian/compat
    packages/hachoir-core/trunk/debian/control
    packages/hachoir-core/trunk/debian/copyright
    packages/hachoir-core/trunk/debian/docs
    packages/hachoir-core/trunk/debian/pycompat
    packages/hachoir-core/trunk/debian/pyversions
    packages/hachoir-core/trunk/debian/rules   (with props)

Propchange: packages/hachoir-core/trunk/debian/
------------------------------------------------------------------------------
    mergeWithUpstream = 1

Added: packages/hachoir-core/trunk/debian/changelog
URL: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/debian/changelog?rev=1986&op=file
==============================================================================
--- packages/hachoir-core/trunk/debian/changelog (added)
+++ packages/hachoir-core/trunk/debian/changelog Thu Apr  5 16:08:08 2007
@@ -1,0 +1,53 @@
+hachoir-core (0.7.2-1) unstable; urgency=low
+
+  * New upstream release
+  * python-setuptools is now optional, remove it from Build-Depends
+  * hopefully upload to official Debian, closing ITP (Closes: #383845)
+
+ -- Michel Casabona <michel.casabona at free.fr>  Sat, 27 Jan 2007 21:37:37 +0100
+
+hachoir-core (0.7.0-2) UNRELEASED; urgency=low
+
+  * convert to using python-support (instead of python-central) 
+
+ -- Michel Casabona <michel.casabona at free.fr>  Mon, 22 Jan 2007 15:41:47 +0100
+
+hachoir-core (0.7.0-1) UNRELEASED; urgency=low
+
+  * new upstream release
+  * rename hachoir to hachoir-core
+
+ -- Michel Casabona <michel.casabona at free.fr>  Tue, 19 Dec 2006 15:56:21 +0100
+hachoir (0.6.1-1) UNRELEASED; urgency=low
+
+  * new upstream release, split packages accordingly 
+  * source package automatically created by stdeb
+
+ -- Michel Casabona <michel.casabona at free.fr>  Sun, 12 Nov 2006 19:44:08 +0100
+
+hachoir (0.5.2) UNRELEASED; urgency=low
+
+  * revert code to 0.5.2
+  * fix debian package version number 
+
+ -- Michel Casabona <michel.casabona at free.fr>  Fri,  8 Sep 2006 19:57:57 +0200
+ 
+hachoir (5.2+svn20060824-1) UNRELEASED; urgency=low
+
+  * convert packaging to cdbs
+  * merge latest svn
+  * New upstream release
+
+ -- Michel Casabona <michel.casabona at free.fr>  Thu, 24 Aug 2006 16:14:17 +0200
+
+hachoir (0.5.1-0mca2) UNRELEASED; urgency=low
+
+  * convert package to python-central 
+
+ -- Michel Casabona <michel.casabona at free.fr>  Wed, 23 Aug 2006 18:49:17 +0200
+
+hachoir (0.5.1-0mca1) UNRELEASED; urgency=low
+
+  * source package automatically created by stdeb
+
+ -- Michel Casabona <michel.casabona at free.fr>  Wed, 23 Aug 2006 16:51:34 +0200

Added: packages/hachoir-core/trunk/debian/compat
URL: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/debian/compat?rev=1986&op=file
==============================================================================
--- packages/hachoir-core/trunk/debian/compat (added)
+++ packages/hachoir-core/trunk/debian/compat Thu Apr  5 16:08:08 2007
@@ -1,0 +1,1 @@
+5

Added: packages/hachoir-core/trunk/debian/control
URL: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/debian/control?rev=1986&op=file
==============================================================================
--- packages/hachoir-core/trunk/debian/control (added)
+++ packages/hachoir-core/trunk/debian/control Thu Apr  5 16:08:08 2007
@@ -1,0 +1,34 @@
+Source: hachoir-core
+Section: python
+Priority: optional
+Maintainer: Michel Casabona <michel.casabona at free.fr>
+Uploaders: Debian Python Modules Team <python-modules-team at lists.alioth.debian.org>
+Build-Depends: debhelper (>=5), python (>= 2.4), cdbs (>= 0.4.43), python-support (>= 0.4)
+Build-Depends-Indep: python-all-dev (>= 2.4)
+Standards-Version: 3.7.2
+XS-Vcs-Svn: svn://svn.debian.org/python-modules/packages/hachoir-core/trunk/
+XS-Vcs-Browser: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/?op=log
+
+Package: python-hachoir-core
+Architecture: all
+Depends: ${python:Depends}
+Suggests: python-hachoir-parser, python-hachoir-urwid, python-hachoir-metadata 
+Description: Core of Hachoir framework: parse and edit binary files
+ Hachoir is a Python library used to represent of a binary file as a tree of
+ Python objects. Each object has a type, a value, an address, etc. The goal is
+ to be able to know the meaning of each bit in a file.
+ .
+ Why using slow Python code instead of fast hardcoded C code? Hachoir has many
+ interresting features:
+  * Autofix: Hachoir is able to open invalid / truncated files
+  * Lazy: Open a file is very fast since no information is read from file,
+    data are read and/or computed when the user ask for it
+  * Types: Hachoir has many predefined field types (integer, bit, string, etc.)
+    and supports string with charset (ISO-8859-1, UTF-8, UTF-16, ...)
+  * Addresses and sizes are stored in bit, so flags are stored as classic fields
+  * Endian: You have to set endian once, and then number are converted in the
+    right endian
+  * Editor: Using Hachoir representation of data, you can edit, insert, remove
+    data and then save in a new file.
+ .
+  Homepage: http://hachoir.org/

Added: packages/hachoir-core/trunk/debian/copyright
URL: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/debian/copyright?rev=1986&op=file
==============================================================================
--- packages/hachoir-core/trunk/debian/copyright (added)
+++ packages/hachoir-core/trunk/debian/copyright Thu Apr  5 16:08:08 2007
@@ -1,0 +1,29 @@
+This package was debianised by Michel Casabona <michel.casabona at free.fr>
+on Wed Aug 23 16:30:49 CEST 2006
+
+It was downloaded from <http://hachoir.org/wiki/Install/>
+
+Author(s): Victor Stinner <victor.stinner AT haypocalc.com>
+           Julien Muchembled <jm AT jm10.no-ip.com>
+
+Copyright:
+
+    This package 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.
+
+    This package 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
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+The Debian packaging is (C) 2007, Michel Casabona <michel.casabona at free.fr>
+and is licensed under the GPL.
+
+On Debian systems, the complete text of the GNU General Public
+License can be found in `/usr/share/common-licenses/GPL'.

Added: packages/hachoir-core/trunk/debian/docs
URL: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/debian/docs?rev=1986&op=file
==============================================================================
--- packages/hachoir-core/trunk/debian/docs (added)
+++ packages/hachoir-core/trunk/debian/docs Thu Apr  5 16:08:08 2007
@@ -1,0 +1,1 @@
+doc

Added: packages/hachoir-core/trunk/debian/pycompat
URL: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/debian/pycompat?rev=1986&op=file
==============================================================================
--- packages/hachoir-core/trunk/debian/pycompat (added)
+++ packages/hachoir-core/trunk/debian/pycompat Thu Apr  5 16:08:08 2007
@@ -1,0 +1,1 @@
+2

Added: packages/hachoir-core/trunk/debian/pyversions
URL: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/debian/pyversions?rev=1986&op=file
==============================================================================
--- packages/hachoir-core/trunk/debian/pyversions (added)
+++ packages/hachoir-core/trunk/debian/pyversions Thu Apr  5 16:08:08 2007
@@ -1,0 +1,1 @@
+2.4-

Added: packages/hachoir-core/trunk/debian/rules
URL: http://svn.debian.org/wsvn/python-modules/packages/hachoir-core/trunk/debian/rules?rev=1986&op=file
==============================================================================
--- packages/hachoir-core/trunk/debian/rules (added)
+++ packages/hachoir-core/trunk/debian/rules Thu Apr  5 16:08:08 2007
@@ -1,0 +1,7 @@
+#! /usr/bin/make -f
+
+DEB_PYTHON_SYSTEM=pysupport
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/python-distutils.mk
+

Propchange: packages/hachoir-core/trunk/debian/rules
------------------------------------------------------------------------------
    svn:executable = *




More information about the Python-modules-commits mailing list