debian/0000755000000000000000000000000012255413420007164 5ustar debian/rules0000755000000000000000000000003612255413420010243 0ustar #!/usr/bin/make -f %: dh $@ debian/control0000644000000000000000000000307512255413420010574 0ustar Source: libmoosex-simpleconfig-perl Maintainer: Debian Perl Group Uploaders: Nicholas Bamber Section: perl Priority: optional Build-Depends: debhelper (>= 9.20130630~), libmodule-build-tiny-perl Build-Depends-Indep: perl, libconfig-any-perl, libconfig-general-perl, libmoose-perl, libmoosex-configfromfile-perl, libtest-fatal-perl, libtest-requires-perl, libyaml-libyaml-perl | libyaml-syck-perl | libyaml-perl Standards-Version: 3.9.5 Vcs-Browser: http://anonscm.debian.org/gitweb/?p=pkg-perl/packages/libmoosex-simpleconfig-perl.git Vcs-Git: git://anonscm.debian.org/pkg-perl/packages/libmoosex-simpleconfig-perl.git Homepage: https://metacpan.org/release/MooseX-SimpleConfig/ Package: libmoosex-simpleconfig-perl Architecture: all Depends: ${misc:Depends}, ${perl:Depends}, libconfig-any-perl, libmoosex-configfromfile-perl, libmoose-perl Recommends: libyaml-libyaml-perl | libyaml-syck-perl | libyaml-perl, libconfig-general-perl Suggests: libconfig-tiny-perl Description: Moose role for setting attributes from a simple configfile The MooseX::SimpleConfig role loads simple configuration files to set object attributes. It uses Config::Any to actually parse the config files. Like all MooseX::ConfigFromFile - derived configfile loaders, it is automatically supported by the MooseX::Getopt role as well. debian/source/0000755000000000000000000000000012255413420010464 5ustar debian/source/format0000644000000000000000000000001412255413420011672 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000150212255413420011034 0ustar libmoosex-simpleconfig-perl (0.10-1) unstable; urgency=low * Team upload. [ gregor herrmann ] * debian/control: update {versioned,alternative} (build) dependencies. [ Salvatore Bonaccorso ] * Change Vcs-Git to canonical URI (git://anonscm.debian.org) * Change search.cpan.org based URIs to metacpan.org based URIs [ gregor herrmann ] * New upstream release. * debian/copyright: drop section about removed files. * Refresh allow_yaml_xs.patch. * Install new CONTRIBUTING doc. * Update build dependencies. * Declare compliance with Debian Policy 3.9.5. -- gregor herrmann Sat, 21 Dec 2013 23:32:09 +0100 libmoosex-simpleconfig-perl (0.09-1) unstable; urgency=low * Initial Release. (Closes: #561485) -- Nicholas Bamber Wed, 20 Jun 2012 08:50:12 +0100 debian/compat0000644000000000000000000000000212255413420010362 0ustar 9 debian/libmoosex-simpleconfig-perl.docs0000644000000000000000000000001512255413420015450 0ustar CONTRIBUTING debian/patches/0000755000000000000000000000000012255413420010613 5ustar debian/patches/allow_yaml_xs.patch0000644000000000000000000000345212255413420014512 0ustar Subject: Test scripts stooping too low Config::Any allows YAML::XS, YAML::Syck and YAML and prefers YAML::XS. However the upstream test scripts are not allowing YAML::XS. Forwarded: no Author: Nicholas Bamber Reviewed-by: gregor herrmann Last-Update: 2013-12-21 --- a/t/10simple.t +++ b/t/10simple.t @@ -8,11 +8,14 @@ use lib 't/lib'; BEGIN { - eval "use YAML::Syck ()"; + eval "use YAML::XS ()"; if($@) { - eval "use YAML ()"; + eval "use YAML::Syck ()"; if($@) { - plan skip_all => "YAML or YAML::Syck required for this test"; + eval "use YAML ()"; + if($@) { + plan skip_all => "YAML::XS or YAML or YAML::Syck required for this test"; + } } } --- a/t/11default.t +++ b/t/11default.t @@ -12,11 +12,14 @@ @classes = qw/ MXDefaultConfigTest MXDefaultMultipleConfigsTest /; - eval "use YAML::Syck ()"; + eval "use YAML::XS()"; if($@) { - eval "use YAML ()"; + eval "use YAML::Syck ()"; if($@) { - plan skip_all => "YAML or YAML::Syck required for this test"; + eval "use YAML ()"; + if($@) { + plan skip_all => "YAML::XS or YAML or YAML::Syck required for this test"; + } } } --- a/t/multiple.t +++ b/t/multiple.t @@ -9,11 +9,14 @@ BEGIN { - eval "use YAML::Syck ()"; + eval "use YAML::XS()"; if($@) { - eval "use YAML ()"; + eval "use YAML::Syck ()"; if($@) { - plan skip_all => "YAML or YAML::Syck required for this test"; + eval "use YAML ()"; + if($@) { + plan skip_all => "YAML::XS or YAML or YAML::Syck required for this test"; + } } } debian/patches/series0000644000000000000000000000002412255413420012024 0ustar allow_yaml_xs.patch debian/copyright0000644000000000000000000000207212255413420011120 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Contact: Tomas Doran Source: https://metacpan.org/release/MooseX-SimpleConfig/ Upstream-Name: MooseX-SimpleConfig Files: * Copyright: 2007, Brandon L. Black, License: Artistic or GPL-1+ Files: debian/* Copyright: 2012, Nicholas Bamber 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'. debian/watch0000644000000000000000000000020412255413420010211 0ustar version=3 https://metacpan.org/release/MooseX-SimpleConfig/ .*/MooseX-SimpleConfig-v?(\d[\d.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$