Skip to content

Commit

Permalink
Build results of 02c9cca (on master)
Browse files Browse the repository at this point in the history
  • Loading branch information
beanz committed Jan 21, 2013
1 parent 89e8cc3 commit 4decbe1
Show file tree
Hide file tree
Showing 29 changed files with 138 additions and 796 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Device::Onkyo.

1.130210 2013-01-21 21:39:36 Europe/London
- Fix stupid bug in discovery - thanks CPAN Testers!

1.120811 2012-03-21 21:42:54 Europe/London
- Fix example script.

Expand Down
11 changes: 1 addition & 10 deletions MANIFEST
Expand Up @@ -7,15 +7,6 @@ META.yml
Makefile.PL
README
bin/onkyo
cover_db/cover.12
cover_db/cover.css
cover_db/coverage.html
cover_db/index.html
cover_db/lib-Device-Onkyo-pm--branch.html
cover_db/lib-Device-Onkyo-pm--condition.html
cover_db/lib-Device-Onkyo-pm--subroutine.html
cover_db/lib-Device-Onkyo-pm.html
cover_db/structure/ead42d85596063dfd9cf86c421bef877
debian/changelog
debian/compat
debian/control
Expand All @@ -28,9 +19,9 @@ t/01-simple.t
t/02-command.t
t/03-discover.t
t/author-critic.t
t/author-test-eol.t
t/log/simple.log
t/release-common_spelling.t
t/release-eol.t
t/release-kwalitee.t
t/release-no-tabs.t
t/release-pod-coverage.t
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.SKIP
@@ -1,2 +1,3 @@
^cover_db/
^temp/
.*~
45 changes: 27 additions & 18 deletions META.json
Expand Up @@ -4,7 +4,7 @@
"Mark Hindess <soft-cpan@temporalanomaly.com>"
],
"dynamic_config" : 0,
"generated_by" : "Dist::Zilla version 4.200004, CPAN::Meta::Converter version 2.112150",
"generated_by" : "Dist::Zilla version 4.300028, CPAN::Meta::Converter version 2.120921",
"license" : [
"perl_5"
],
Expand All @@ -16,30 +16,39 @@
"prereqs" : {
"configure" : {
"requires" : {
"ExtUtils::MakeMaker" : "6.31"
"ExtUtils::MakeMaker" : "6.30"
}
},
"develop" : {
"requires" : {
"Pod::Coverage::TrustPod" : "0",
"Test::Pod" : "1.41",
"Test::Pod::Coverage" : "1.08"
}
},
"runtime" : {
"requires" : {
"Carp" : 0,
"Device::SerialPort" : 0,
"Fcntl" : 0,
"Getopt::Long" : 0,
"IO::Select" : 0,
"IO::Socket::INET" : 0,
"Pod::Usage" : 0,
"Socket" : 0,
"Symbol" : 0,
"Time::HiRes" : 0,
"constant" : 0
"Carp" : "0",
"Device::SerialPort" : "0",
"Fcntl" : "0",
"Getopt::Long" : "0",
"IO::Select" : "0",
"IO::Socket::INET" : "0",
"Pod::Usage" : "0",
"Socket" : "0",
"Symbol" : "0",
"Time::HiRes" : "0",
"constant" : "0",
"strict" : "0",
"warnings" : "0"
}
},
"test" : {
"requires" : {
"English" : 0,
"Test::More" : 0,
"Test::Requires" : 0,
"Test::SharedFork" : 0
"Test::More" : "0",
"Test::Requires" : "0",
"Test::SharedFork" : "0",
"base" : "0"
}
}
},
Expand All @@ -54,6 +63,6 @@
"web" : "https://github.com/beanz/device-onkyo-perl"
}
},
"version" : "1.120811"
"version" : "1.130210"
}

10 changes: 6 additions & 4 deletions META.yml
Expand Up @@ -3,14 +3,14 @@ abstract: 'Perl module to control Onkyo/Integra AV equipment'
author:
- 'Mark Hindess <soft-cpan@temporalanomaly.com>'
build_requires:
English: 0
Test::More: 0
Test::Requires: 0
Test::SharedFork: 0
base: 0
configure_requires:
ExtUtils::MakeMaker: 6.31
ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.200004, CPAN::Meta::Converter version 2.112150'
generated_by: 'Dist::Zilla version 4.300028, CPAN::Meta::Converter version 2.120921'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -28,7 +28,9 @@ requires:
Symbol: 0
Time::HiRes: 0
constant: 0
strict: 0
warnings: 0
resources:
bugtracker: https://github.com/beanz/device-onkyo-perl/issues
repository: git://github.com/beanz/device-onkyo-perl.git
version: 1.120811
version: 1.130210
62 changes: 32 additions & 30 deletions Makefile.PL
Expand Up @@ -4,44 +4,46 @@ use warnings;



use ExtUtils::MakeMaker 6.31;
use ExtUtils::MakeMaker 6.30;



my %WriteMakefileArgs = (
'ABSTRACT' => 'Perl module to control Onkyo/Integra AV equipment',
'AUTHOR' => 'Mark Hindess <soft-cpan@temporalanomaly.com>',
'BUILD_REQUIRES' => {
'English' => '0',
'Test::More' => '0',
'Test::Requires' => '0',
'Test::SharedFork' => '0'
"ABSTRACT" => "Perl module to control Onkyo/Integra AV equipment",
"AUTHOR" => "Mark Hindess <soft-cpan\@temporalanomaly.com>",
"BUILD_REQUIRES" => {
"Test::More" => 0,
"Test::Requires" => 0,
"Test::SharedFork" => 0,
"base" => 0
},
'CONFIGURE_REQUIRES' => {
'ExtUtils::MakeMaker' => '6.31'
"CONFIGURE_REQUIRES" => {
"ExtUtils::MakeMaker" => "6.30"
},
'DISTNAME' => 'Device-Onkyo',
'EXE_FILES' => [
'bin/onkyo'
"DISTNAME" => "Device-Onkyo",
"EXE_FILES" => [
"bin/onkyo"
],
'LICENSE' => 'perl',
'NAME' => 'Device::Onkyo',
'PREREQ_PM' => {
'Carp' => '0',
'Device::SerialPort' => '0',
'Fcntl' => '0',
'Getopt::Long' => '0',
'IO::Select' => '0',
'IO::Socket::INET' => '0',
'Pod::Usage' => '0',
'Socket' => '0',
'Symbol' => '0',
'Time::HiRes' => '0',
'constant' => '0'
"LICENSE" => "perl",
"NAME" => "Device::Onkyo",
"PREREQ_PM" => {
"Carp" => 0,
"Device::SerialPort" => 0,
"Fcntl" => 0,
"Getopt::Long" => 0,
"IO::Select" => 0,
"IO::Socket::INET" => 0,
"Pod::Usage" => 0,
"Socket" => 0,
"Symbol" => 0,
"Time::HiRes" => 0,
"constant" => 0,
"strict" => 0,
"warnings" => 0
},
'VERSION' => '1.120811',
'test' => {
'TESTS' => 't/*.t'
"VERSION" => "1.130210",
"test" => {
"TESTS" => "t/*.t"
}
);

Expand Down
8 changes: 2 additions & 6 deletions README
Expand Up @@ -2,7 +2,7 @@ NAME
Device::Onkyo - Perl module to control Onkyo/Integra AV equipment

VERSION
version 1.120811
version 1.130210

SYNOPSIS
my $onkyo = Device::Onkyo->new(device => 'discover');
Expand Down Expand Up @@ -82,16 +82,12 @@ METHODS
When a message is received the message string is returned. An optional
timeout (in seconds) may be provided.

"read_one(\$buffer, [$do_not_write])"
"read_one(\$buffer)"
This method attempts to remove a single message from the buffer passed
in via the scalar reference. When a message is removed a data structure
is returned that represents the data received. If insufficient data is
available then undef is returned.

By default, a received message triggers sending of the next queued
message if the $do_no_write parameter is set then writes are not
triggered.

"discover()"
This method attempts to discover available equipment. It returns a list
reference of list references of ip and port pairs.
Expand Down
2 changes: 1 addition & 1 deletion bin/onkyo
Expand Up @@ -57,7 +57,7 @@ onkyo - Perl script to control an Onkyo/Integra AV Receiver
=head1 VERSION
version 1.120811
version 1.130210
=head1 SYNOPSIS
Expand Down
Binary file removed cover_db/cover.12
Binary file not shown.
75 changes: 0 additions & 75 deletions cover_db/cover.css

This file was deleted.

31 changes: 0 additions & 31 deletions cover_db/coverage.html

This file was deleted.

31 changes: 0 additions & 31 deletions cover_db/index.html

This file was deleted.

0 comments on commit 4decbe1

Please sign in to comment.