[Python-apps-commits] r3974 - in packages/ocrodjvu/trunk (9 files)

jwilk-guest at users.alioth.debian.org jwilk-guest at users.alioth.debian.org
Sat Oct 17 17:02:18 UTC 2009


    Date: Saturday, October 17, 2009 @ 17:02:16
  Author: jwilk-guest
Revision: 3974

[svn-inject] Applying Debian modifications to trunk

Added:
  packages/ocrodjvu/trunk/debian/
  packages/ocrodjvu/trunk/debian/changelog
  packages/ocrodjvu/trunk/debian/compat
  packages/ocrodjvu/trunk/debian/control
  packages/ocrodjvu/trunk/debian/copyright
  packages/ocrodjvu/trunk/debian/links
  packages/ocrodjvu/trunk/debian/manpages
  packages/ocrodjvu/trunk/debian/rules
  packages/ocrodjvu/trunk/debian/watch


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

Added: packages/ocrodjvu/trunk/debian/changelog
===================================================================
--- packages/ocrodjvu/trunk/debian/changelog	                        (rev 0)
+++ packages/ocrodjvu/trunk/debian/changelog	2009-10-17 17:02:16 UTC (rev 3974)
@@ -0,0 +1,5 @@
+ocrodjvu (0.2.1-1) UNRELEASED; urgency=low
+
+  * Initial release (closes: #550921).
+
+ -- Jakub Wilk <ubanus at users.sf.net>  Sat, 17 Oct 2009 18:00:12 +0200

Added: packages/ocrodjvu/trunk/debian/compat
===================================================================
--- packages/ocrodjvu/trunk/debian/compat	                        (rev 0)
+++ packages/ocrodjvu/trunk/debian/compat	2009-10-17 17:02:16 UTC (rev 3974)
@@ -0,0 +1 @@
+7

Added: packages/ocrodjvu/trunk/debian/control
===================================================================
--- packages/ocrodjvu/trunk/debian/control	                        (rev 0)
+++ packages/ocrodjvu/trunk/debian/control	2009-10-17 17:02:16 UTC (rev 3974)
@@ -0,0 +1,23 @@
+Source: ocrodjvu
+Section: text
+Priority: optional
+Maintainer: Jakub Wilk <ubanus at users.sf.net>
+Build-Depends: debhelper (>= 7.0.50~), python-support (>= 0.90)
+Standards-Version: 3.8.3
+Homepage: http://jwilk.net/software/ocrodjvu.html
+Vcs-Svn: svn://svn.debian.org/python-apps/packages/ocrodjvu/trunk/
+Vcs-Browser: http://svn.debian.org/viewsvn/python-apps/packages/ocrodjvu/trunk/
+
+Package: ocrodjvu
+Architecture: all
+Depends: ${misc:Depends}, ${python:Depends}, python-lxml, python-djvu (>= 0.1.14), djvulibre-bin (>= 3.5.20-5~), ocropus (>= 0.2)
+Description: tool to perform OCR on DjVu documents
+ ocrodjvu is a wrapper around OCRopus and Tesseract with the purpose to
+ perform Optical Character Recognition (OCR) in documents in DjVu format
+ (which is especially suited for archival of books with high quality).
+ .
+ When a DjVu document has been OCRed, it includes a text version of the
+ images of the scanned document and, with common programs, one can not
+ only print on paper, but also read such books/documents, searching for
+ specific terms and also use the information in the OCR layer as a way
+ to higher the accessibility of such documents.

Added: packages/ocrodjvu/trunk/debian/copyright
===================================================================
--- packages/ocrodjvu/trunk/debian/copyright	                        (rev 0)
+++ packages/ocrodjvu/trunk/debian/copyright	2009-10-17 17:02:16 UTC (rev 3974)
@@ -0,0 +1,16 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=59
+Name: ocrodjvu
+Maintainer: Jakub Wilk <ubanus at users.sf.net>
+Source: http://jwilk.net/software/ocrodjvu.html
+
+Files: *
+Copyright: 2008, 2009, Jakub Wilk <ubanus at users.sf.net>
+License: GPL-2
+ 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.
+
+Files: debian/*
+Copyright: 2009, Jakub Wilk <ubanus at users.sf.net>
+License: GPL-2
+ 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/ocrodjvu/trunk/debian/links
===================================================================
--- packages/ocrodjvu/trunk/debian/links	                        (rev 0)
+++ packages/ocrodjvu/trunk/debian/links	2009-10-17 17:02:16 UTC (rev 3974)
@@ -0,0 +1 @@
+usr/share/ocrodjvu/ocrodjvu usr/bin/ocrodjvu

Added: packages/ocrodjvu/trunk/debian/manpages
===================================================================
--- packages/ocrodjvu/trunk/debian/manpages	                        (rev 0)
+++ packages/ocrodjvu/trunk/debian/manpages	2009-10-17 17:02:16 UTC (rev 3974)
@@ -0,0 +1 @@
+doc/*.[0-9]

Added: packages/ocrodjvu/trunk/debian/rules
===================================================================
--- packages/ocrodjvu/trunk/debian/rules	                        (rev 0)
+++ packages/ocrodjvu/trunk/debian/rules	2009-10-17 17:02:16 UTC (rev 3974)
@@ -0,0 +1,46 @@
+#!/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_installchangelogs
+override_dh_installchangelogs:
+	dh_installchangelogs doc/changelog
+
+.PHONY: override_dh_auto_install
+override_dh_auto_install:
+	python setup.py install \
+		--root=$(CURDIR)/debian/ocrodjvu --prefix=/usr \
+		--install-lib=/usr/share/ \
+		--install-scripts=/usr/share/ocrodjvu
+	rm debian/ocrodjvu/usr/share/*.egg-info
+	rm debian/ocrodjvu/usr/share/ocrodjvu/__init__.*
+	sed -i -e 's/^from ocrodjvu //' debian/ocrodjvu/usr/share/ocrodjvu/*
+
+.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/ocrodjvu/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: packages/ocrodjvu/trunk/debian/watch
===================================================================
--- packages/ocrodjvu/trunk/debian/watch	                        (rev 0)
+++ packages/ocrodjvu/trunk/debian/watch	2009-10-17 17:02:16 UTC (rev 3974)
@@ -0,0 +1,2 @@
+version=3
+http://pypi.python.org/packages/source/o/ocrodjvu/ocrodjvu-([0-9.]+).tar.gz




More information about the Python-apps-commits mailing list