r18484 - in /trunk/libtext-markdown-perl/debian: ./ changelog compat control copyright rules watch
adeodato at users.alioth.debian.org
adeodato at users.alioth.debian.org
Sat Apr 12 10:46:55 UTC 2008
Author: adeodato
Date: Sat Apr 12 10:46:54 2008
New Revision: 18484
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=18484
Log:
[svn-inject] Applying Debian modifications to trunk
Added:
trunk/libtext-markdown-perl/debian/
trunk/libtext-markdown-perl/debian/changelog
trunk/libtext-markdown-perl/debian/compat
trunk/libtext-markdown-perl/debian/control
trunk/libtext-markdown-perl/debian/copyright
trunk/libtext-markdown-perl/debian/rules (with props)
trunk/libtext-markdown-perl/debian/watch
Added: trunk/libtext-markdown-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-markdown-perl/debian/changelog?rev=18484&op=file
==============================================================================
--- trunk/libtext-markdown-perl/debian/changelog (added)
+++ trunk/libtext-markdown-perl/debian/changelog Sat Apr 12 10:46:54 2008
@@ -1,0 +1,6 @@
+libtext-markdown-perl (1.0.17-1) unstable; urgency=low
+
+ * Initial upload. (Closes: #472691)
+ * Conflict with markdown, at least for now.
+
+ -- Adeodato Simó <dato at net.com.org.es> Sat, 12 Apr 2008 11:36:41 +0200
Added: trunk/libtext-markdown-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-markdown-perl/debian/compat?rev=18484&op=file
==============================================================================
--- trunk/libtext-markdown-perl/debian/compat (added)
+++ trunk/libtext-markdown-perl/debian/compat Sat Apr 12 10:46:54 2008
@@ -1,0 +1,1 @@
+5
Added: trunk/libtext-markdown-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-markdown-perl/debian/control?rev=18484&op=file
==============================================================================
--- trunk/libtext-markdown-perl/debian/control (added)
+++ trunk/libtext-markdown-perl/debian/control Sat Apr 12 10:46:54 2008
@@ -1,0 +1,38 @@
+Source: libtext-markdown-perl
+Section: perl
+Priority: optional
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Adeodato Simó <dato at net.com.org.es>
+Build-Depends: debhelper
+Build-Depends-Indep: perl (>= 5.8),
+ libtest-exception-perl, liblist-moreutils-perl, libfile-slurp-perl,
+ libtext-diff-perl, libtest-pod-perl, libtest-pod-coverage-perl
+Standards-Version: 3.7.3
+Homepage: http://search.cpan.org/~bobtfish/Text-Markdown
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtext-markdown-perl
+Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-markdown-perl
+
+Package: libtext-markdown-perl
+Architecture: all
+Depends: ${perl:Depends}
+Conflicts: markdown
+Description: Markdown and MultiMarkdown markup languages library
+ Markdown is a markup language to convert structured text into (X)HTML.
+ Its main design goal is to make the input text as readable as possible.
+ For this, the syntax is highly inspired by the format of plain text
+ email.
+ .
+ Markdown supports features like headers, *emphasis*, code blocks,
+ blockquotes and links. For maximum flexibility, it also allows
+ embedding HTML tags, both within paragraphs (eg. <span>), and at block
+ level (<div>, <table>).
+ .
+ MultiMarkdown is an extension to the Markdown syntax so that more
+ complex documents could be represented, and (ultimately) also converted
+ to other formats than HTML.
+ .
+ This package contains the Text::Markdown and Text::MultiMarkdown
+ modules as found in CPAN. These are different from the original
+ Markdown implementation from John Gruber, which can be found in the
+ "markdown" Debian package. (This CPAN implementation is sensibly slower
+ than the original, but is better maintained.)
Added: trunk/libtext-markdown-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-markdown-perl/debian/copyright?rev=18484&op=file
==============================================================================
--- trunk/libtext-markdown-perl/debian/copyright (added)
+++ trunk/libtext-markdown-perl/debian/copyright Sat Apr 12 10:46:54 2008
@@ -1,0 +1,20 @@
+X-Copyright-Format: 0 (http://wiki.debian.org/Proposals/CopyrightFormat)
+X-Debianized-By: Adeodato Simó <dato at net.com.org.es>
+X-Source-Download: http://search.cpan.org/~bobtfish/Text-Markdown/lib/Text/Markdown.pm
+
+Files: *
+Copyright:
+ (c) 2003-2004 John Gruber <http://daringfireball.net/>
+ (c) 2005-2006 Fletcher T. Penney <http://fletcher.freeshell.org/>
+ (c) 2006-2008 Darren Kulp <http://kulp.ch>
+ (c) 2006-2008 Tomas Doran <http://www.bobtfish.net>
+License: BSD
+
+Files: debian/*
+Copyright: (c) 2008 Adeodato Simó <dato at net.com.org.es>
+License: BSD
+
+X-References: On Debian systems, the full text of the BSD license can be
+ found in the following file:
+ .
+ * /usr/share/common-licenses/BSD
Added: trunk/libtext-markdown-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-markdown-perl/debian/rules?rev=18484&op=file
==============================================================================
--- trunk/libtext-markdown-perl/debian/rules (added)
+++ trunk/libtext-markdown-perl/debian/rules Sat Apr 12 10:46:54 2008
@@ -1,0 +1,49 @@
+#! /usr/bin/make -f
+
+PACKAGE := libtext-markdown-perl
+
+build: build-stamp
+build-stamp:
+ dh_testdir
+ env PERL_MM_USE_DEFAULT=1 perl Makefile.PL verbose INSTALLDIRS=vendor
+ env TEST_POD=1 $(MAKE) all test
+ touch $@
+
+clean:
+ dh_testdir
+ dh_testroot
+ dh_clean
+ [ ! -f Makefile ] || $(MAKE) distclean
+ rm -f build-stamp
+
+install:
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ $(MAKE) PREFIX=$(CURDIR)/debian/$(PACKAGE)/usr install
+ install -D -m 755 script/Markdown.pl $(CURDIR)/debian/$(PACKAGE)/usr/bin/markdown
+ install -D -m 755 script/MultiMarkdown.pl $(CURDIR)/debian/$(PACKAGE)/usr/bin/multimarkdown
+
+ [ ! -d $(CURDIR)/debian/$(PACKAGE)/usr/lib/perl5 ] || \
+ rmdir --ignore-fail-on-non-empty --parents --verbose $(CURDIR)/debian/$(PACKAGE)/usr/lib/perl5
+
+binary-arch:
+ @true
+
+binary-indep: build install
+ dh_testdir
+ dh_testroot
+ dh_installdocs
+ dh_installchangelogs Changes
+ dh_compress
+ dh_fixperms
+ dh_installdeb
+ dh_perl
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+binary: binary-arch binary-indep
+.PHONY: build clean binary-indep binary-arch binary install configure
Propchange: trunk/libtext-markdown-perl/debian/rules
------------------------------------------------------------------------------
svn:executable = *
Added: trunk/libtext-markdown-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libtext-markdown-perl/debian/watch?rev=18484&op=file
==============================================================================
--- trunk/libtext-markdown-perl/debian/watch (added)
+++ trunk/libtext-markdown-perl/debian/watch Sat Apr 12 10:46:54 2008
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Text-Markdown/ .*/Text-Markdown-(\d[\d_.]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)
More information about the Pkg-perl-cvs-commits
mailing list