r22153 - in /trunk/libauthen-cas-client-perl: CHANGES MANIFEST META.yml Makefile.PL debian/changelog debian/compat debian/control debian/copyright debian/rules inc/ lib/Authen/CAS/Client.pm lib/Authen/CAS/Client/Response.pm t/04-fatal.t t/05-responses.t

yvesago-guest at users.alioth.debian.org yvesago-guest at users.alioth.debian.org
Wed Jun 25 09:53:37 UTC 2008


Author: yvesago-guest
Date: Wed Jun 25 09:53:37 2008
New Revision: 22153

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=22153
Log:
  * New upstream release
  * Standards-Version: 3.8.0 (no change)
  * update debian/rules compat control to debhelper 7
  * update copyright to 2008 (from upstream copyright)
  * update format copyright to rev=102
  * put debian packaging copyright under the same terms as the module itself
  * fix licence name to MIT and not BSD-2, as author said in META.yml
    but it's rather look like a BSD-2 license

Added:
    trunk/libauthen-cas-client-perl/inc/
      - copied from r22152, branches/upstream/libauthen-cas-client-perl/current/inc/
    trunk/libauthen-cas-client-perl/t/04-fatal.t
      - copied unchanged from r22152, branches/upstream/libauthen-cas-client-perl/current/t/04-fatal.t
    trunk/libauthen-cas-client-perl/t/05-responses.t
      - copied unchanged from r22152, branches/upstream/libauthen-cas-client-perl/current/t/05-responses.t
Modified:
    trunk/libauthen-cas-client-perl/CHANGES
    trunk/libauthen-cas-client-perl/MANIFEST
    trunk/libauthen-cas-client-perl/META.yml
    trunk/libauthen-cas-client-perl/Makefile.PL
    trunk/libauthen-cas-client-perl/debian/changelog
    trunk/libauthen-cas-client-perl/debian/compat
    trunk/libauthen-cas-client-perl/debian/control
    trunk/libauthen-cas-client-perl/debian/copyright
    trunk/libauthen-cas-client-perl/debian/rules
    trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client.pm
    trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client/Response.pm

Modified: trunk/libauthen-cas-client-perl/CHANGES
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/CHANGES?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/CHANGES (original)
+++ trunk/libauthen-cas-client-perl/CHANGES Wed Jun 25 09:53:37 2008
@@ -9,3 +9,12 @@
   * added tests for better code coverage
 
   * various minor internal fixups to maintain consistency
+
+
+changes from 0.02 to 0.03
+-------------------------
+
+  * added more tests that were previously not included
+
+  * changed to Module::Install for dist packaging
+

Modified: trunk/libauthen-cas-client-perl/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/MANIFEST?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/MANIFEST (original)
+++ trunk/libauthen-cas-client-perl/MANIFEST Wed Jun 25 09:53:37 2008
@@ -1,13 +1,26 @@
 CHANGES
+inc/Module/AutoInstall.pm
+inc/Module/Install.pm
+inc/Module/Install/AutoInstall.pm
+inc/Module/Install/Base.pm
+inc/Module/Install/Can.pm
+inc/Module/Install/Fetch.pm
+inc/Module/Install/Include.pm
+inc/Module/Install/Makefile.pm
+inc/Module/Install/Metadata.pm
+inc/Module/Install/Win32.pm
+inc/Module/Install/WriteAll.pm
+lib/Authen/CAS/Client.pm
+lib/Authen/CAS/Client/Response.pm
 LICENSE
+Makefile.PL
 MANIFEST
 META.yml
-Makefile.PL
 README
-lib/Authen/CAS/Client.pm
-lib/Authen/CAS/Client/Response.pm
-t/MockUserAgent.pm
 t/00-load.t
 t/01-urls.t
 t/02-validate.t
 t/03-proxy.t
+t/04-fatal.t
+t/05-responses.t
+t/MockUserAgent.pm

Modified: trunk/libauthen-cas-client-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/META.yml?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/META.yml (original)
+++ trunk/libauthen-cas-client-perl/META.yml Wed Jun 25 09:53:37 2008
@@ -1,18 +1,24 @@
---- #YAML:1.0
-name:                Authen-CAS-Client
-version:             0.02
-abstract:            Provides an easy-to-use interface for authentication
-license:             ~
-generated_by:        ExtUtils::MakeMaker version 6.36
-distribution_type:   module
-requires:     
-    LWP:                           0
-    Test::MockObject:              0
-    Test::More:                    0
-    URI:                           0
-    XML::LibXML:                   0
+---
+abstract: 'Provides an easy-to-use interface for authentication using JA-SIG''s Central Authentication Service'
+author:
+  - 'jason hord <pravus at cpan.org>'
+build_requires:
+  Test::MockObject: 0.00
+  Test::More: 0.00
+distribution_type: module
+generated_by: 'Module::Install version 0.75'
+license: MIT
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
-author:
-    - jason hord <pravus at cpan.org>
+  url: http://module-build.sourceforge.net/META-spec-v1.3.html
+  version: 1.3
+name: Authen-CAS-Client
+no_index:
+  directory:
+    - inc
+    - t
+requires:
+  LWP: 0.00
+  URI: 0.00
+  XML::LibXML: 0.00
+  perl: 5.6.1
+version: 0.03

Modified: trunk/libauthen-cas-client-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/Makefile.PL?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/Makefile.PL (original)
+++ trunk/libauthen-cas-client-perl/Makefile.PL Wed Jun 25 09:53:37 2008
@@ -1,24 +1,18 @@
-require 5.006_001;
-
 use strict;
 use warnings;
 
-use ExtUtils::MakeMaker;
+use inc::Module::Install;
 
-open TOUCH, '>>', 'META.yml'; close TOUCH;
+name 'Authen-CAS-Client';
+license 'MIT';
+all_from 'lib/Authen/CAS/Client.pm';
 
-WriteMakefile(
-    NAME          => 'Authen::CAS::Client',
-    AUTHOR        => 'jason hord <pravus at cpan.org>',
-    VERSION_FROM  => 'lib/Authen/CAS/Client.pm',
-    ABSTRACT_FROM => 'lib/Authen/CAS/Client.pm',
-    PREREQ_PM => {
-      'LWP'              => 0,
-      'Test::More'       => 0,
-      'Test::MockObject' => 0,
-      'URI'              => 0,
-      'XML::LibXML'      => 0,
-    },
-    dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
-    clean         => { FILES => 'Authen-CAS-Client-*' },
-);
+requires 'LWP'         => '0.00';
+requires 'URI'         => '0.00';
+requires 'XML::LibXML' => '0.00';
+
+test_requires 'Test::MockObject' => '0.00';
+test_requires 'Test::More'       => '0.00';
+
+auto_install;
+WriteAll;

Modified: trunk/libauthen-cas-client-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/debian/changelog?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/debian/changelog (original)
+++ trunk/libauthen-cas-client-perl/debian/changelog Wed Jun 25 09:53:37 2008
@@ -1,3 +1,16 @@
+libauthen-cas-client-perl (0.03-1) unstable; urgency=low
+
+  * New upstream release 
+  * Standards-Version: 3.8.0 (no change)
+  * update debian/rules compat control to debhelper 7
+  * update copyright to 2008 (from upstream copyright)
+  * update format copyright to rev=102
+  * put debian packaging copyright under the same terms as the module itself
+  * fix licence name to MIT and not BSD-2, as author said in META.yml
+    but it's rather look like a BSD-2 license
+
+ -- AGOSTINI Yves <agostini at univ-metz.fr>  Wed, 25 Jun 2008 11:29:28 +0200
+
 libauthen-cas-client-perl (0.02-1) unstable; urgency=low
 
   * Initial Release (Closes: #477395)

Modified: trunk/libauthen-cas-client-perl/debian/compat
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/debian/compat?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/debian/compat (original)
+++ trunk/libauthen-cas-client-perl/debian/compat Wed Jun 25 09:53:37 2008
@@ -1,1 +1,1 @@
-5
+7

Modified: trunk/libauthen-cas-client-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/debian/control?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/debian/control (original)
+++ trunk/libauthen-cas-client-perl/debian/control Wed Jun 25 09:53:37 2008
@@ -1,12 +1,12 @@
 Source: libauthen-cas-client-perl
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 5)
+Build-Depends: debhelper (>= 7)
 Build-Depends-Indep: perl (>= 5.6.10-12), libtest-mockobject-perl, liburi-perl, 
  libxml-libxml-perl, libwww-perl
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: AGOSTINI Yves <agostini at univ-metz.fr>
-Standards-Version: 3.7.3
+Standards-Version: 3.8.0
 Homepage: http://search.cpan.org/dist/Authen-CAS-Client/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libauthen-cas-client-perl/
 Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/

Modified: trunk/libauthen-cas-client-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/debian/copyright?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/debian/copyright (original)
+++ trunk/libauthen-cas-client-perl/debian/copyright Wed Jun 25 09:53:37 2008
@@ -1,16 +1,12 @@
-X-Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat
-X-Debianized-By: AGOSTINI Yves <agostini at univ-metz.fr>
-X-Debianized-Date: Tue, 22 Apr 2008 23:26:12 +0200
-X-Source-Downloaded-From: http://search.cpan.org/dist/Authen-CAS-Client/
-X-Upstream-Author: jason hord <pravus at cpan.org>
+Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=102
+Debianized-By: AGOSTINI Yves <agostini at univ-metz.fr>
+Debianized-Date: Tue, 22 Apr 2008 23:26:12 +0200
+Original-Source-Location: http://search.cpan.org/dist/Authen-CAS-Client/
+Upstream-Author: jason hord <pravus at cpan.org>
 
 Files: *
-Copyright: Copyright (c) 2007, jason hord
-License: BSD-2
- Copyright (c) 2007, jason hord
- .
- All rights reserved.
- .
+Copyright: Copyright (c) 2007, 2008 jason hord
+License: MIT
  Redistribution and use in source and binary forms, with or without 
  modification, are permitted provided that the following conditions are met:
  .
@@ -33,8 +29,5 @@
 
 Files: debian/*
 Copyright: Copyright 2008 Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-License: GPL-2+
- The Debian packaging information is under the GPL, version 2 or later
- .
- On Debian systems, the complete text of the GNU General Public License
- can be found in file "/usr/share/common-licenses/GPL".
+License: MIT
+ The Debian packaging is put under the same terms as the module itself.

Modified: trunk/libauthen-cas-client-perl/debian/rules
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/debian/rules?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/debian/rules (original)
+++ trunk/libauthen-cas-client-perl/debian/rules Wed Jun 25 09:53:37 2008
@@ -1,60 +1,23 @@
 #!/usr/bin/make -f
-# This debian/rules file is provided as a template for normal perl
-# packages. It was created by Marc Brockschmidt <marc at dch-faq.de> for
-# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may
-# be used freely wherever it is useful.
-
-# Uncomment this to turn on verbose mode.
-#export DH_VERBOSE=1
-
-# If set to a true value then MakeMaker's prompt function will
-# always return the default without waiting for user input.
-export PERL_MM_USE_DEFAULT=1
-
-PERL   ?= /usr/bin/perl
-PACKAGE = $(shell dh_listpackages)
-TMP     = $(CURDIR)/debian/$(PACKAGE)
 
 build: build-stamp
 build-stamp:
-	dh_testdir
-	$(PERL) Makefile.PL INSTALLDIRS=vendor
-	$(MAKE)
-	$(MAKE) test
+	dh build
 	touch $@
 
 clean:
-	dh_testdir
-	dh_testroot
-	dh_clean build-stamp install-stamp
-	[ ! -f Makefile ] || $(MAKE) realclean
+	dh $@
 
 install: install-stamp
 install-stamp: build-stamp
-	dh_testdir
-	dh_testroot
-	dh_clean -k
-	$(MAKE) install DESTDIR=$(TMP) PREFIX=/usr
-	[ ! -d $(TMP)/usr/lib/perl5 ] || \
-		rmdir --ignore-fail-on-non-empty --parents --verbose \
-		$(TMP)/usr/lib/perl5
+	dh install
 	touch $@
 
 binary-arch:
-# We have nothing to do here for an architecture-independent package
 
-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
+binary-indep: install
+	dh $@
 
-binary: binary-indep binary-arch
-.PHONY: build clean binary-indep binary-arch binary install
+binary: binary-arch binary-indep
+
+.PHONY: binary binary-arch binary-indep install clean build

Modified: trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client.pm?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client.pm (original)
+++ trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client.pm Wed Jun 25 09:53:37 2008
@@ -1,6 +1,6 @@
 package Authen::CAS::Client;
 
-# $Id: Client.pm 14 2007-10-29 13:28:59Z jhord $
+# $Id: Client.pm 26 2008-06-24 15:32:22Z jhord $
 
 require 5.006_001;
 
@@ -13,7 +13,7 @@
 use XML::LibXML;
 use Authen::CAS::Client::Response;
 
-our $VERSION = '0.02';
+our $VERSION = '0.03';
 
 #======================================================================
 # constructor
@@ -285,8 +285,7 @@
 
 =head1 NAME
 
-Authen::CAS::Client - Provides an easy-to-use interface for authentication
-using JA-SIG's Central Authentication Service
+Authen::CAS::Client - Provides an easy-to-use interface for authentication using JA-SIG's Central Authentication Service
 
 =head1 SYNOPSIS
 
@@ -516,7 +515,7 @@
 
 =head1 COPYRIGHT
 
-Copyright (c) 2007, jason hord
+Copyright (c) 2007, 2008, jason hord
 
 All rights reserved.
 

Modified: trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client/Response.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client/Response.pm?rev=22153&op=diff
==============================================================================
--- trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client/Response.pm (original)
+++ trunk/libauthen-cas-client-perl/lib/Authen/CAS/Client/Response.pm Wed Jun 25 09:53:37 2008
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-# $Id: Response.pm 16 2007-11-13 22:42:59Z jhord $
+# $Id: Response.pm 26 2008-06-24 15:32:22Z jhord $
 
 #======================================================================
 # Authen::CAS::Client::Response
@@ -306,7 +306,7 @@
 
 =head1 COPYRIGHT
 
-Copyright (c) 2007, jason hord
+Copyright (c) 2007, 2008, jason hord
 
 All rights reserved.
 




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