-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
unknown
committed
Oct 18, 2010
0 parents
commit 1ff4b1f
Showing
13 changed files
with
2,183 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
use strict; | ||
use warnings; | ||
use Module::Build; | ||
|
||
my $builder = Module::Build->new( | ||
module_name => 'CHI::Driver::TokyoCabinet', | ||
license => 'perl', | ||
dist_author => 'Jiří Pavlovský <[email protected]>', | ||
dist_version_from => 'lib/CHI/Driver/TokyoCabinet.pm', | ||
build_requires => { | ||
'Test::More' => 0, | ||
'CHI' => 0, | ||
'Test::Class' => 0, | ||
}, | ||
requires => { | ||
'TokyoCabinet' => 0, | ||
'CHI' => 0.241, | ||
}, | ||
create_makefile_pl => 'traditional', | ||
); | ||
|
||
$builder->create_build_script(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|
||
You may distribute under the terms of either the GNU General Public | ||
License or the Artistic License, as specified in the Perl README file. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
NO WARRANTY | ||
|
||
BECAUSE THE SOFTWARE IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY | ||
FOR THE SOFTWARE, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN | ||
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES | ||
PROVIDE THE SOFTWARE "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED | ||
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS | ||
TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE IS WITH YOU. SHOULD THE | ||
SOFTWARE PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, | ||
REPAIR OR CORRECTION. | ||
|
||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING | ||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR | ||
REDISTRIBUTE THE SOFTWARE AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, | ||
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING | ||
OUT OF THE USE OR INABILITY TO USE THE SOFTWARE (INCLUDING BUT NOT LIMITED | ||
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY | ||
YOU OR THIRD PARTIES OR A FAILURE OF THE SOFTWARE TO OPERATE WITH ANY OTHER | ||
SOFTWARE), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE | ||
POSSIBILITY OF SUCH DAMAGES. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
Build.PL | ||
COPYING | ||
DISCLAIMER | ||
lib/CHI/Driver/TokyoCabinet.pm | ||
lib/CHI/t/Driver/TokyoCabinet.pm | ||
Makefile.PL | ||
MANIFEST This list of files | ||
META.yml | ||
t/Driver-TokyoCabinet.t |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
--- | ||
name: CHI-Driver-TokyoCabinet | ||
version: 0.0.1 | ||
author: | ||
- 'Jiří Pavlovský <[email protected]>' | ||
abstract: Use TokyoCabinet for cache storage | ||
license: perl | ||
resources: | ||
license: http://dev.perl.org/licenses/ | ||
requires: | ||
CHI: 0.241 | ||
TokyoCabinet: 0 | ||
build_requires: | ||
CHI: 0 | ||
Test::Class: 0 | ||
Test::More: 0 | ||
provides: | ||
CHI::Driver::TokyoCabinet: | ||
file: lib/CHI/Driver/TokyoCabinet.pm | ||
version: 0.0.1 | ||
CHI::t::Driver::TokyoCabinet: | ||
file: lib/CHI/t/Driver/TokyoCabinet.pm | ||
generated_by: Module::Build version 0.33 | ||
meta-spec: | ||
url: http://module-build.sourceforge.net/META-spec-v1.4.html | ||
version: 1.4 |
Oops, something went wrong.