burak / CPAN-Text-Template-Simple (http://search.cpan.org/~burak/Text-Template-Simple/)
Simple text template engine for Perl
Clone this repository (size: 294.4 KB): HTTPS / SSH
$ hg clone http://bitbucket.org/burak/cpan-text-template-simple/
| commit 149: | 984d0a47dffa |
| parent 148: | 26bc51fd1075 |
| branch: | default |
require Digest::Perl::MD5 under legacy perls instead of Digest::MD5 which fails to compile
- View burak's profile
-
burak's public repos »
- CPAN-Padre-Plugin-HG
- CPAN-Net-Bitbucket
- CPAN-GD-SecurityImage
- CPAN-Lingua-TR-Numbers
- CPAN-Sys-Info-Driver-Windows
- CPAN-Task-Lingua-Any-Numbers
- CPAN-Time-Elapsed
- CPAN-Win32-ASP-CGI
- CPAN-Scalar-Util-Reftype
- CPAN-Parse-HTTP-UserAgent
- CPAN-Acme-CPANAuthors-Turkish
- CPAN-tools
- CPAN-Device-CableModem-Motorola-SB4200
- CPAN-Text-Template-Simple
- CPAN-CGI-Auth-Basic
- CPAN-GD-Thumbnail
- CPAN-Lingua-Any-Numbers
- CPAN-MP3-M3U-Parser
- CPAN-PHP-Session-DBI
- CPAN-Sys-Info
- CPAN-Sys-Info-Base
- CPAN-Sys-Info-Driver-BSD
- CPAN-Sys-Info-Driver-Linux
- CPAN-Sys-Info-Driver-Unknown
- CPAN-Test-Sys-Info
- Send message
6 months ago
Changed (Δ319 bytes):
raw changeset »
SPEC (8 lines added, 1 lines removed)
1 |
1 |
{ |
2 |
2 |
module_name => 'Text::Template::Simple', |
3 |
3 |
requires => { |
4 |
|
|
4 |
( |
|
5 |
# Digest::MD5 does not seem to compile under 5.5.3 |
|
6 |
# However, MD5 is only the minimum requirement anyway. |
|
7 |
# See DIGEST_MODS constant for a list of supported/lternative modules. |
|
8 |
$] < 5.006 |
|
9 |
? ( 'Digest::Perl::MD5' => 0 ) |
|
10 |
: ( 'Digest::MD5' => '1.00' ) |
|
11 |
), |
|
5 |
12 |
}, |
6 |
13 |
build_requires => { |
7 |
14 |
'Test::More' => '0.40', |
