[Python-apps-commits] r6253 - in packages/didjvu/trunk (12 files)

danstender-guest at users.alioth.debian.org danstender-guest at users.alioth.debian.org
Tue Nov 2 16:02:49 UTC 2010


    Date: Tuesday, November 2, 2010 @ 16:02:40
  Author: danstender-guest
Revision: 6253

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

Added:
  packages/didjvu/trunk/debian/
  packages/didjvu/trunk/debian/changelog
  packages/didjvu/trunk/debian/compat
  packages/didjvu/trunk/debian/control
  packages/didjvu/trunk/debian/copyright
  packages/didjvu/trunk/debian/docs
  packages/didjvu/trunk/debian/install
  packages/didjvu/trunk/debian/links
  packages/didjvu/trunk/debian/rules
  packages/didjvu/trunk/debian/source/
  packages/didjvu/trunk/debian/source/format
  packages/didjvu/trunk/debian/watch


Property changes on: packages/didjvu/trunk/debian
___________________________________________________________________
Added: mergeWithUpstream
   + 1

Added: packages/didjvu/trunk/debian/changelog
===================================================================
--- packages/didjvu/trunk/debian/changelog	                        (rev 0)
+++ packages/didjvu/trunk/debian/changelog	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1,5 @@
+didjvu (0.2.1-1) unstable; urgency=low
+
+  * Initial release. (Closes: #601781)
+
+ -- Daniel Stender <daniel at danielstender.com>  Sun, 31 Oct 2010 19:13:42 +0100

Added: packages/didjvu/trunk/debian/compat
===================================================================
--- packages/didjvu/trunk/debian/compat	                        (rev 0)
+++ packages/didjvu/trunk/debian/compat	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1 @@
+7

Added: packages/didjvu/trunk/debian/control
===================================================================
--- packages/didjvu/trunk/debian/control	                        (rev 0)
+++ packages/didjvu/trunk/debian/control	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1,27 @@
+Source: didjvu
+Maintainer: Daniel Stender <daniel at danielstender.com>
+Uploaders: Python Applications Packaging Team <python-apps-team at lists.alioth.debian.org>
+Section: graphics
+Priority: optional
+Build-Depends: debhelper (>= 7), python-support (>= 0.8.4)
+XS-Python-Version: >= 2.6
+Standards-Version: 3.9.1
+Homepage: http://jwilk.net/software/didjvu
+
+Package: didjvu
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-imaging, libdjvulibre21 (>= 3.5.21), python-argparse
+Recommends: minidjvu
+Description: DjVu encoder with foreground/background separation
+ The DjVu graphics format is very effective because it uses
+ multiple layers which are differently compressed. For the derivation
+ of the bitonal foreground layer ("mask") of (scanned document)
+ images ("segmentation") Didjvu uses the Gamera framework. In
+ the same process Didjvu encodes the foreground mask together
+ with the background counterpart into DjVu. That's also possible for
+ a stack of images which can be processes into a bundled DjVu
+ container very easily. The results are ideal for getting high-quality
+ OCR data  even from problematic scans from old documents.
+ Furthermore, Didjvu up to now is the only free software for
+ processing bitonal segmentation on colour scans.
+

Added: packages/didjvu/trunk/debian/copyright
===================================================================
--- packages/didjvu/trunk/debian/copyright	                        (rev 0)
+++ packages/didjvu/trunk/debian/copyright	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1,21 @@
+This work was packaged for Debian by Daniel Stender <daniel at danielstender.com> on Sun, 31 Oct 2010 20:24:31 +0100
+
+It was downloaded from: http://code.google.com/p/didjvu/
+
+Upstream Author: Jakub Wilk <jwilk at jwilk.net>
+
+Copyright: (C) 2009, 2010 by Jakub Wilk, license: GPL-2
+
+License: GPL-2
+ 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; version 2 dated June, 1991.
+ . 
+ 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
+ General Public License for more details.
+ .
+ On Debian systems, the complete text of the GNU General Public License
+ version 2 can be found in the /usr/share/common-licenses/GPL-2 file.
+

Added: packages/didjvu/trunk/debian/docs
===================================================================
--- packages/didjvu/trunk/debian/docs	                        (rev 0)
+++ packages/didjvu/trunk/debian/docs	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1 @@
+doc/changelog

Added: packages/didjvu/trunk/debian/install
===================================================================
--- packages/didjvu/trunk/debian/install	                        (rev 0)
+++ packages/didjvu/trunk/debian/install	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1,5 @@
+didjvu usr/share/didjvu
+didjvu.py usr/share/didjvu
+lib usr/share/didjvu
+
+

Added: packages/didjvu/trunk/debian/links
===================================================================
--- packages/didjvu/trunk/debian/links	                        (rev 0)
+++ packages/didjvu/trunk/debian/links	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1 @@
+usr/share/didjvu/didjvu usr/bin/didjvu

Added: packages/didjvu/trunk/debian/rules
===================================================================
--- packages/didjvu/trunk/debian/rules	                        (rev 0)
+++ packages/didjvu/trunk/debian/rules	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1,35 @@
+#!/usr/bin/make -f
+
+.PHONY: build
+build:
+	dh build
+
+.PHONY: build-arch
+build-arch:
+
+.PHONY: build-indep
+build-indep: build
+
+.PHONY: install
+install: build
+	dh install
+
+.PHONY: override_dh_auto_install
+override_dh_auto_install:
+
+.PHONY: binary
+binary:
+	dh binary
+
+.PHONY: binary-arch
+binary-arch:
+
+.PHONY: binary-indep
+binary-indep: binary
+
+.PHONY: clean
+clean:
+	dh clean
+	find -name '*.py[co]' -delete
+
+# vim:ts=4 sw=4 noet


Property changes on: packages/didjvu/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/didjvu/trunk/debian/source/format
===================================================================
--- packages/didjvu/trunk/debian/source/format	                        (rev 0)
+++ packages/didjvu/trunk/debian/source/format	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1 @@
+3.0 (quilt)

Added: packages/didjvu/trunk/debian/watch
===================================================================
--- packages/didjvu/trunk/debian/watch	                        (rev 0)
+++ packages/didjvu/trunk/debian/watch	2010-11-02 16:02:40 UTC (rev 6253)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/d/didjvu/didjvu-([0-9.]+).tar.gz




More information about the Python-apps-commits mailing list