[Pkg-php-commits] r1356 - pear/php-text-wiki/trunk/debian

Jean-Marc Roth jmroth-guest at alioth.debian.org
Mon Mar 29 12:39:59 UTC 2010


tags 574964 pending
thanks

Author: jmroth-guest
Date: 2010-03-29 12:39:58 +0000 (Mon, 29 Mar 2010)
New Revision: 1356

Added:
   pear/php-text-wiki/trunk/debian/README.Debian
   pear/php-text-wiki/trunk/debian/changelog
   pear/php-text-wiki/trunk/debian/compat
   pear/php-text-wiki/trunk/debian/control
   pear/php-text-wiki/trunk/debian/copyright
   pear/php-text-wiki/trunk/debian/dirs
   pear/php-text-wiki/trunk/debian/rules
   pear/php-text-wiki/trunk/debian/watch
Log:
Initial commit of php-text-wiki

Added: pear/php-text-wiki/trunk/debian/README.Debian
===================================================================
--- pear/php-text-wiki/trunk/debian/README.Debian	                        (rev 0)
+++ pear/php-text-wiki/trunk/debian/README.Debian	2010-03-29 12:39:58 UTC (rev 1356)
@@ -0,0 +1,7 @@
+php-text-wiki for Debian
+--------------------------
+
+This extension has been created with dh-make-pear which is part
+of dh-make-php.
+
+ -- Jean-Marc Roth <jmroth at iip.lu>, Mon, 22 Mar 2010 14:52:23 +0100

Added: pear/php-text-wiki/trunk/debian/changelog
===================================================================
--- pear/php-text-wiki/trunk/debian/changelog	                        (rev 0)
+++ pear/php-text-wiki/trunk/debian/changelog	2010-03-29 12:39:58 UTC (rev 1356)
@@ -0,0 +1,6 @@
+php-text-wiki (1.2.0-1) unstable; urgency=low
+
+  * Initial Release (Closes: #574964).
+
+ -- Jean-Marc Roth <jmroth at iip.lu>  Mon, 22 Mar 2010 14:52:23 +0100
+

Added: pear/php-text-wiki/trunk/debian/compat
===================================================================
--- pear/php-text-wiki/trunk/debian/compat	                        (rev 0)
+++ pear/php-text-wiki/trunk/debian/compat	2010-03-29 12:39:58 UTC (rev 1356)
@@ -0,0 +1 @@
+5

Added: pear/php-text-wiki/trunk/debian/control
===================================================================
--- pear/php-text-wiki/trunk/debian/control	                        (rev 0)
+++ pear/php-text-wiki/trunk/debian/control	2010-03-29 12:39:58 UTC (rev 1356)
@@ -0,0 +1,28 @@
+Source: php-text-wiki
+Section: php
+Priority: optional
+Maintainer: Jean-Marc Roth <jmroth at iip.lu>
+Uploaders: TBA <tba>
+Build-Depends: debhelper (>= 5), dh-make-php (>= 0.2.3), cdbs
+Standards-Version: 3.8.4
+
+Package: php-text-wiki
+Architecture: all
+Depends: php-pear
+Description: transforms Wiki and BBCode markup into XHTML, LaTeX or plain text markup
+ This is the base engine for all of the Text_Wiki sub-classes.
+ The text transformation is done in 2 steps.
+ The chosen parser uses markup rules to tokenize the tags and content.
+ Renderers output the tokens and text into the requested format.
+ The tokenized form replaces the tags by a protected byte value 
+ associated to an index in an options table. This form shares up to 50 
+ rules by all parsers and renderers.
+ The package is intented for versatile transformers as well as 
+ converters.
+ Text_Wiki is delivered with its own parser, which is used by Yawiki 
+ or Horde's Wicked and three basic renderers: XHTML, LaTeX and plain 
+ text.
+ Strong sanitizing of XHTML is default.
+ Parsers (* and Renderers) exist for BBCode, Cowiki (*), Dokuwiki (*), 
+ Mediawiki and Tikiwiki (*).
+ It is highly configurable and can be easily extended.

Added: pear/php-text-wiki/trunk/debian/copyright
===================================================================
--- pear/php-text-wiki/trunk/debian/copyright	                        (rev 0)
+++ pear/php-text-wiki/trunk/debian/copyright	2010-03-29 12:39:58 UTC (rev 1356)
@@ -0,0 +1,30 @@
+This package was debianized by Jean-Marc Roth <jmroth at iip.lu> using dh-make-pear
+on Mon, 22 Mar 2010 14:52:23 +0100.
+
+It was downloaded from http://pear.php.net/package/Text_Wiki
+
+Upstream Authors:
+	Justin Patrin <papercrane at reversefold.com>
+	Del Elson <del at babel.com.au>
+	Paul Jones (inactive)
+
+Copyright: 2007 Paul Jones, Justin Patrin, Del Elson
+
+License: LGPL
+
+    This package is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser 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
+
+On Debian systems, the complete text of the GNU Lesser General
+Public License can be found in `/usr/share/common-licenses/LGPL'.

Added: pear/php-text-wiki/trunk/debian/dirs
===================================================================
--- pear/php-text-wiki/trunk/debian/dirs	                        (rev 0)
+++ pear/php-text-wiki/trunk/debian/dirs	2010-03-29 12:39:58 UTC (rev 1356)
@@ -0,0 +1 @@
+usr/share/php

Added: pear/php-text-wiki/trunk/debian/rules
===================================================================
--- pear/php-text-wiki/trunk/debian/rules	                        (rev 0)
+++ pear/php-text-wiki/trunk/debian/rules	2010-03-29 12:39:58 UTC (rev 1356)
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+# template debian/rules provided by dh-make-php.
+
+DEB_COMPRESS_EXCLUDE=package.xml
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/pear.mk


Property changes on: pear/php-text-wiki/trunk/debian/rules
___________________________________________________________________
Added: svn:executable
   + *

Added: pear/php-text-wiki/trunk/debian/watch
===================================================================
--- pear/php-text-wiki/trunk/debian/watch	                        (rev 0)
+++ pear/php-text-wiki/trunk/debian/watch	2010-03-29 12:39:58 UTC (rev 1356)
@@ -0,0 +1,2 @@
+version=3
+http://pear.php.net/package/Text_Wiki/download http://download.pear.php.net/package/Text_Wiki-([\d.]+)\.tgz




More information about the Pkg-php-commits mailing list