Skip to content

Commit

Permalink
Дист::Зилла Roundhouse kick
Browse files Browse the repository at this point in the history
  • Loading branch information
Steffen Schwigon committed May 15, 2012
1 parent ea3c141 commit 3ae6b2d
Show file tree
Hide file tree
Showing 13 changed files with 31 additions and 150 deletions.
26 changes: 4 additions & 22 deletions .gitignore
Original file line number Original file line Diff line number Diff line change
@@ -1,24 +1,6 @@
MYMETA.yml .*
blib* !.gitignore
Makefile.old Tapper-CLI-*
Build Debian_CPANTS.txt
_build*
pm_to_blib*
*.tar.gz
.lwpcookies
Tapper-*
cover_db
MANIFEST.bak
MANIFEST
META.yml
MYMETA*
t/tapper_schema_reportsdb_test.sqlite t/tapper_schema_reportsdb_test.sqlite
t/tapper_schema_testrundb_test.sqlite t/tapper_schema_testrundb_test.sqlite
t/tapper_schema_testsdb_testdb.sqlite
t/tapper_schema_hardwaredb_test.sqlite
test-tapper-reports-api-daemon-test.pid
test-tapper_reports_api_daemon_stderr.log
test-tapper_reports_api_daemon_stdout.log
Makefile
inc/

5 changes: 5 additions & 0 deletions ChangeLog → Changes
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,8 @@
Revision history for {{$dist->name}}

{{$NEXT}}
- big Dist::Zilla roundhouse kick

2011-03-30 Steffen Schwigon <steffen.schwigon@amd.com> 2011-03-30 Steffen Schwigon <steffen.schwigon@amd.com>


* v3.0.10 * v3.0.10
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2008-2011, Advanced Micro Devices, Inc. Copyright (c) 2008-2012, Advanced Micro Devices, Inc.
All rights reserved. All rights reserved.


Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
Expand Down
12 changes: 0 additions & 12 deletions MANIFEST.SKIP

This file was deleted.

47 changes: 0 additions & 47 deletions Makefile.PL

This file was deleted.

33 changes: 0 additions & 33 deletions README

This file was deleted.

4 changes: 3 additions & 1 deletion bin/tapper
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,6 @@
#! perl #! /usr/bin/perl
# PODNAME: tapper
# ABSTRACT: cmdline frontend to Tapper management - the future Platzhirsch


use App::Rad; use App::Rad;
use Tapper::CLI::Notification; use Tapper::CLI::Notification;
Expand Down
4 changes: 3 additions & 1 deletion bin/tapper-api
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,6 @@
#! perl #! /usr/bin/perl
# PODNAME: tapper-api
# ABSTRACT: cmdline frontend to Tapper API access


use Tapper::CLI::API; use Tapper::CLI::API;
Tapper::CLI::API->run; Tapper::CLI::API->run;
Expand Down
4 changes: 3 additions & 1 deletion bin/tapper-db-deploy
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,6 @@
#! perl #! /usr/bin/perl
# PODNAME: tapper-db-deploy
# ABSTRACT: cmdline frontend to Tapper database deployment


use Tapper::CLI::DbDeploy; use Tapper::CLI::DbDeploy;
Tapper::CLI::DbDeploy->run; Tapper::CLI::DbDeploy->run;
Expand Down
4 changes: 3 additions & 1 deletion bin/tapper-testrun
Original file line number Original file line Diff line number Diff line change
@@ -1,4 +1,6 @@
#! perl #! /usr/bin/perl
# PODNAME: tapper-testrun
# ABSTRACT: cmdline frontend to Tapper management - the current Platzhirsch


use Tapper::CLI::Testrun; use Tapper::CLI::Testrun;
Tapper::CLI::Testrun->run; Tapper::CLI::Testrun->run;
Expand Down
8 changes: 8 additions & 0 deletions dist.ini
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,8 @@
name = Tapper-CLI
author = AMD OSRC Tapper Team <tapper@amd64.org>
license = FreeBSD
copyright_holder = Advanced Micro Devices, Inc.

[@AMD]
dist = Tapper-CLI
repository_at = github
29 changes: 1 addition & 28 deletions lib/Tapper/CLI.pm
Original file line number Original file line Diff line number Diff line change
@@ -1,34 +1,7 @@
package Tapper::CLI; package Tapper::CLI;
# ABSTRACT: Tapper - tapper-* commandline tools


use warnings; use warnings;
use strict; use strict;


our $VERSION = '3.000011';

=head1 NAME
Tapper::CLI - Tapper - tapper-* commandline tools
=head1 SYNOPSIS
use Tapper::CLI;
my $foo = Tapper::CLI->new();
...
=head1 AUTHOR
AMD OSRC Tapper Team, C<< <tapper at amd64.org> >>
=head1 BUGS
=head1 COPYRIGHT & LICENSE
Copyright 2008-2011 AMD OSRC Tapper Team, all rights reserved.
This program is released under the following license: freebsd
=cut

1; # End of Tapper::CLI 1; # End of Tapper::CLI
3 changes: 0 additions & 3 deletions t/00-load.t
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -41,6 +41,3 @@ plan tests => int @modules;
foreach my $module(@modules) { foreach my $module(@modules) {
require_ok($module); require_ok($module);
} }


diag( "Testing Tapper::CLI $Tapper::CLI::VERSION, Perl $], $^X" );

0 comments on commit 3ae6b2d

Please sign in to comment.