r71787 - in /trunk/libobject-tiny-perl/debian: ./ changelog compat control copyright libobject-tiny-perl.docs libobject-tiny-perl.examples rules watch

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sun Mar 20 17:41:58 UTC 2011


Author: jawnsy-guest
Date: Sun Mar 20 17:41:46 2011
New Revision: 71787

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

Added:
    trunk/libobject-tiny-perl/debian/
    trunk/libobject-tiny-perl/debian/changelog
    trunk/libobject-tiny-perl/debian/compat
    trunk/libobject-tiny-perl/debian/control
    trunk/libobject-tiny-perl/debian/copyright
    trunk/libobject-tiny-perl/debian/libobject-tiny-perl.docs
    trunk/libobject-tiny-perl/debian/libobject-tiny-perl.examples
    trunk/libobject-tiny-perl/debian/rules   (with props)
    trunk/libobject-tiny-perl/debian/watch

Added: trunk/libobject-tiny-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libobject-tiny-perl/debian/changelog?rev=71787&op=file
==============================================================================
--- trunk/libobject-tiny-perl/debian/changelog (added)
+++ trunk/libobject-tiny-perl/debian/changelog Sun Mar 20 17:41:46 2011
@@ -1,0 +1,5 @@
+libobject-tiny-perl (1.06-1) UNRELEASED; urgency=low
+
+  * Initial Release.
+
+ -- Jonathan Yu <jawnsy at cpan.org>  Sun, 20 Mar 2011 13:59:33 -0400

Added: trunk/libobject-tiny-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libobject-tiny-perl/debian/compat?rev=71787&op=file
==============================================================================
--- trunk/libobject-tiny-perl/debian/compat (added)
+++ trunk/libobject-tiny-perl/debian/compat Sun Mar 20 17:41:46 2011
@@ -1,0 +1,1 @@
+7

Added: trunk/libobject-tiny-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libobject-tiny-perl/debian/control?rev=71787&op=file
==============================================================================
--- trunk/libobject-tiny-perl/debian/control (added)
+++ trunk/libobject-tiny-perl/debian/control Sun Mar 20 17:41:46 2011
@@ -1,0 +1,34 @@
+Source: libobject-tiny-perl
+Section: perl
+Priority: optional
+Build-Depends: debhelper (>= 7)
+Build-Depends-Indep: perl
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: Jonathan Yu <jawnsy at cpan.org>
+Standards-Version: 3.9.1
+Homepage: http://search.cpan.org/dist/Object-Tiny/
+Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libobject-tiny-perl/
+Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libobject-tiny-perl/
+
+Package: libobject-tiny-perl
+Architecture: all
+Depends: ${misc:Depends}, ${perl:Depends},
+ perl
+Description: A date object with as little code as possible
+ There's a whole bunch of class builders out there. In fact, creating a class
+ builder seems to be something of a rite of passage (this is my fifth, at
+ least).
+ .
+ Unfortunately, most of the time I want a class builder I'm in a hurry and
+ sketching out lots of fairly simple data classes with fairly simple
+ structure, mostly just read-only accessors, and that's about it.
+ .
+ Often this is for code that won't end up on CPAN, so adding a small
+ dependency doesn't matter much. I just want to be able to define these
+ classes FAST.
+ .
+ By which I mean LESS typing than writing them by hand, not more. And I don't
+ need all those weird complex features that bloat out the code and take over
+ the whole way I build modules.
+ .
+ This description was automagically extracted from the module by dh-make-perl.

Added: trunk/libobject-tiny-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libobject-tiny-perl/debian/copyright?rev=71787&op=file
==============================================================================
--- trunk/libobject-tiny-perl/debian/copyright (added)
+++ trunk/libobject-tiny-perl/debian/copyright Sun Mar 20 17:41:46 2011
@@ -1,0 +1,36 @@
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Adam Kennedy <adamk at cpan.org>
+Source: http://search.cpan.org/dist/Object-Tiny/
+Name: Object-Tiny
+DISCLAIMER: This copyright info was automatically extracted 
+ from the perl module. It may not be accurate, so you better 
+ check the module sources in order to ensure the module for its 
+ inclusion in Debian or for general legal information. Please, 
+ if licensing information is incorrectly generated, file a bug 
+ on dh-make-perl.
+ NOTE: Don't forget to remove this disclaimer once you are happy
+ with this file.
+
+Files: *
+Copyright: Adam Kennedy <adamk at cpan.org>
+License: Artistic or GPL-1+
+
+Files: debian/*
+Copyright: 2011, Jonathan Yu <jawnsy at cpan.org>
+License: Artistic or GPL-1+
+
+License: Artistic
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the Artistic License, which comes with Perl.
+ .
+ On Debian systems, the complete text of the Artistic License can be
+ found in `/usr/share/common-licenses/Artistic'.
+
+License: GPL-1+
+ This program 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; either version 1, or (at your option)
+ any later version.
+ .
+ On Debian systems, the complete text of version 1 of the GNU General
+ Public License can be found in `/usr/share/common-licenses/GPL-1'.

Added: trunk/libobject-tiny-perl/debian/libobject-tiny-perl.docs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libobject-tiny-perl/debian/libobject-tiny-perl.docs?rev=71787&op=file
==============================================================================
--- trunk/libobject-tiny-perl/debian/libobject-tiny-perl.docs (added)
+++ trunk/libobject-tiny-perl/debian/libobject-tiny-perl.docs Sun Mar 20 17:41:46 2011
@@ -1,0 +1,1 @@
+README

Added: trunk/libobject-tiny-perl/debian/libobject-tiny-perl.examples
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libobject-tiny-perl/debian/libobject-tiny-perl.examples?rev=71787&op=file
==============================================================================
--- trunk/libobject-tiny-perl/debian/libobject-tiny-perl.examples (added)
+++ trunk/libobject-tiny-perl/debian/libobject-tiny-perl.examples Sun Mar 20 17:41:46 2011
@@ -1,0 +1,1 @@
+examples/*

Added: trunk/libobject-tiny-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libobject-tiny-perl/debian/rules?rev=71787&op=file
==============================================================================
--- trunk/libobject-tiny-perl/debian/rules (added)
+++ trunk/libobject-tiny-perl/debian/rules Sun Mar 20 17:41:46 2011
@@ -1,0 +1,4 @@
+#!/usr/bin/make -f
+
+%:
+	dh $@

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

Added: trunk/libobject-tiny-perl/debian/watch
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libobject-tiny-perl/debian/watch?rev=71787&op=file
==============================================================================
--- trunk/libobject-tiny-perl/debian/watch (added)
+++ trunk/libobject-tiny-perl/debian/watch Sun Mar 20 17:41:46 2011
@@ -1,0 +1,2 @@
+version=3
+http://search.cpan.org/dist/Object-Tiny/   .*/Object-Tiny-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$




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