r21321 - in /trunk/libkwiki-perl: debian/ debian/changelog debian/compat debian/control debian/copyright debian/rules lib/Kwiki/Command.pm

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Jun 15 14:18:36 UTC 2008


Author: gregoa
Date: Sun Jun 15 14:18:36 2008
New Revision: 21321

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

Added:
    trunk/libkwiki-perl/debian/
    trunk/libkwiki-perl/debian/changelog
    trunk/libkwiki-perl/debian/compat
    trunk/libkwiki-perl/debian/control
    trunk/libkwiki-perl/debian/copyright
    trunk/libkwiki-perl/debian/rules   (with props)
Modified:
    trunk/libkwiki-perl/lib/Kwiki/Command.pm

Added: trunk/libkwiki-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkwiki-perl/debian/changelog?rev=21321&op=file
==============================================================================
--- trunk/libkwiki-perl/debian/changelog (added)
+++ trunk/libkwiki-perl/debian/changelog Sun Jun 15 14:18:36 2008
@@ -1,0 +1,22 @@
+libkwiki-perl (0.38-1.2) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS with Perl 5.10.  Closes: #467900
+
+ -- Mark Hymers <mhy at debian.org>  Sat, 05 Apr 2008 21:09:12 +0100
+
+libkwiki-perl (0.38-1.1) unstable; urgency=medium
+
+  * Non-maintainer upload
+  * Added a call to $self->handle_update_all to handle_new() in Command.pm.
+    Thanks to Nicolas François for the patch.
+    (closes: #411027)
+
+ -- Bas Zoetekouw <bas at debian.org>  Sat, 10 Mar 2007 21:18:58 +0100
+
+libkwiki-perl (0.38-1) unstable; urgency=low
+
+  * Initial Release.
+
+ -- Florian Ragwitz <rafl at debian.org>  Tue, 24 Jan 2006 22:24:15 +0100
+

Added: trunk/libkwiki-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkwiki-perl/debian/compat?rev=21321&op=file
==============================================================================
--- trunk/libkwiki-perl/debian/compat (added)
+++ trunk/libkwiki-perl/debian/compat Sun Jun 15 14:18:36 2008
@@ -1,0 +1,1 @@
+4

Added: trunk/libkwiki-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkwiki-perl/debian/control?rev=21321&op=file
==============================================================================
--- trunk/libkwiki-perl/debian/control (added)
+++ trunk/libkwiki-perl/debian/control Sun Jun 15 14:18:36 2008
@@ -1,0 +1,27 @@
+Source: libkwiki-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 4.0.2)
+Build-Depends-Indep: perl (>= 5.8.0-7), libspoon-perl (>= 0.22)
+Maintainer: Florian Ragwitz <rafl at debian.org>
+Standards-Version: 3.6.2
+
+Package: libkwiki-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libspoon-perl (>= 0.22)
+Description: Kwiki Wiki Building Framework
+ A Wiki is a website that allows its users to add pages, and edit any existing
+ pages. It is one of the most popular forms of web collaboration. If you are
+ new to wiki, visit http://c2.com/cgi/wiki?WelcomeVisitors which is possibly
+ the oldest wiki, and has lots of information about how wikis work.
+ .
+ Kwiki is a Perl wiki implementation based on the Spoon application
+ architecture and using the Spiffy object orientation model. The major goals of
+ Kwiki are that it be easy to install, maintain and extend.
+ .
+ All the features of a Kwiki wiki come from plugin modules. The base
+ installation comes with the bare minimum plugins to make a working Kwiki. To
+ make a really nice Kwiki installation you need to install additional plugins.
+ Which plugins you pick is entirely up to you. Another goal of Kwiki is that
+ every installation will be unique. When there are hundreds of plugins
+ available, this will hopefully be the case.

Added: trunk/libkwiki-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkwiki-perl/debian/copyright?rev=21321&op=file
==============================================================================
--- trunk/libkwiki-perl/debian/copyright (added)
+++ trunk/libkwiki-perl/debian/copyright Sun Jun 15 14:18:36 2008
@@ -1,0 +1,21 @@
+This is the debian package for the Kwiki module.
+It was created by Florian Ragwitz <rafl at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/~ingy/Kwiki/.
+
+The upstream author is: 
+
+Brian Ingerson <INGY at cpan.org>.
+
+
+Copyright (c) 2004. Brian Ingerson. All rights reserved.
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+See http://www.perl.com/perl/misc/Artistic.html
+
+Perl is distributed under your choice of the GNU General Public License or
+the Artistic License.  On Debian GNU/Linux systems, the complete text of the
+GNU General Public License can be found in `/usr/share/common-licenses/GPL'
+and the Artistic Licence in `/usr/share/common-licenses/Artistic'.

Added: trunk/libkwiki-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkwiki-perl/debian/rules?rev=21321&op=file
==============================================================================
--- trunk/libkwiki-perl/debian/rules (added)
+++ trunk/libkwiki-perl/debian/rules Sun Jun 15 14:18:36 2008
@@ -1,0 +1,56 @@
+#!/usr/bin/make -f
+
+export PERL_MM_USE_DEFAULT=1
+
+PACKAGE=$(shell dh_listpackages)
+
+ifndef PERL
+PERL = /usr/bin/perl
+endif
+
+TMP     =$(CURDIR)/debian/$(PACKAGE)
+
+build: build-stamp
+build-stamp:
+	dh_testdir
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+	[ ! -f Makefile ] || $(MAKE) realclean
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+	$(MAKE) test
+	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
+	[ ! -d $(TMP)/usr/lib/perl5 ] || rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
+	touch install-stamp
+
+binary-arch:
+# We have nothing to do by default.
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installdocs
+	dh_installchangelogs Changes
+	dh_perl
+	dh_compress
+	dh_fixperms
+	dh_installdeb
+	dh_gencontrol
+	dh_md5sums
+	dh_builddeb
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary

Propchange: trunk/libkwiki-perl/debian/rules
------------------------------------------------------------------------------
    svn:executable = *

Modified: trunk/libkwiki-perl/lib/Kwiki/Command.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libkwiki-perl/lib/Kwiki/Command.pm?rev=21321&op=diff
==============================================================================
--- trunk/libkwiki-perl/lib/Kwiki/Command.pm (original)
+++ trunk/libkwiki-perl/lib/Kwiki/Command.pm Sun Jun 15 14:18:36 2008
@@ -19,6 +19,7 @@
     $self->install('widgets');
     io('plugin')->mkdir;
     $self->set_permissions;
+    $self->handle_update_all;
     warn "\nKwiki software installed! Point your browser at this location.\n\n";
 }
 




More information about the Pkg-perl-cvs-commits mailing list