Skip to content
This repository has been archived by the owner on Mar 14, 2023. It is now read-only.

Commit

Permalink
CPAN Release 0.05
Browse files Browse the repository at this point in the history
  • Loading branch information
mithun committed Jan 18, 2012
1 parent 94fa387 commit faea3a0
Show file tree
Hide file tree
Showing 19 changed files with 972 additions and 312 deletions.
16 changes: 5 additions & 11 deletions .gitignore
@@ -1,15 +1,9 @@
*.bak
*.tar.gz
*.tmp
*~
blib*
Makefile
Makefile.old
Build
Build.bat
_build*
pm_to_blib*
*.tar.gz
.lwpcookies
cover_db
pod2htm*.tmp
_build*
URI-Encode-*
*.bak
*.tmp
*~
45 changes: 33 additions & 12 deletions Build.PL
@@ -1,25 +1,46 @@
#!perl

####################
# LOAD MODULES
####################
use strict;
use warnings;
use warnings FATAL => 'all';
use Module::Build;

# Autoflush ON
local $| = 1;

####################
# INIT BUILDER
####################

my $builder = Module::Build->new(
module_name => 'URI::Encode',
license => 'perl',
dist_author => 'Mithun Ayachit <mithun@cpan.org>',
dist_version_from => 'lib/URI/Encode.pm',
requires => {
'perl' => '5.8.1', # for Unicode support
module_name => 'URI::Encode',
license => 'perl',
dist_author => 'Mithun Ayachit <mithun@cpan.org>',
configure_requires => { 'Module::Build' => 0.38 },
build_requires => {
'Test::More' => 0,
'version' => 0,
'Encode' => '2.12',
},
add_to_cleanup => ['URI-Encode-*'],
meta_merge => {
requires => {
'perl' => '5.8.1', # for Unicode support
'Encode' => '2.12',
},
add_to_cleanup => ['URI-Encode-*'],
create_license => 1,
create_makefile_pl => 'traditional',
meta_merge => {
resources => {
homepage => 'https://metacpan.org/module/URI::Encode',
repository => 'http://github.com/mithun/perl-uri-encode',
bugtracker =>
'http://rt.cpan.org/Public/Dist/Display.html?Name=URI-Encode',
repository => 'git://github.com/mithun/perl-uri-encode.git',
homepage => 'https://github.com/mithun/perl-uri-encode',
},
},
);

####################
# CREATE BUILD SCRIPT
####################
$builder->create_build_script();
36 changes: 26 additions & 10 deletions Changes
@@ -1,18 +1,34 @@
# Revision history for URI-Encode
Version History for URI-Encode
Mithun Ayachit

## 0.04

* Allow strings to be '0' (literally). See RT #70628
* Added option in constructor to set reserved encoding
* * * * *

## 0.03
0.05
====

* Minimum perl 5.8.1
- Store character maps in object
- Update repo format

## 0.02
0.04
====

* Corrected POD
- Allow strings to be '0' (literally). See RT #70628
- Added option in constructor to set reserved encoding

## 0.01
0.03
====

* Initial release
- Minimum perl 5.8.1

0.02
====

- Corrected POD

0.01
====

- Initial release

* * * * *
27 changes: 27 additions & 0 deletions INSTALL
@@ -0,0 +1,27 @@
Installing URI-Encode
Mithun Ayachit


Distribution page
=================

The latest and all previous releases for URI-Encode can be downloaded
from https://metacpan.org/release/URI-Encode

Install using cpanm
===================

URI-Encode can be installed with cpanm using the following command

cpanm .

Install using Module::Build
===========================

URI-Encode can be installed with Module::Build using the following
commands

perl ./Build.PL
./Build
./Build test
./Build install

0 comments on commit faea3a0

Please sign in to comment.