mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
license and configure_requires in Makefile.PL and META.yml
This commit is contained in:
parent
581b3d9391
commit
b16ba2bf88
3 changed files with 25 additions and 12 deletions
1
Changes
1
Changes
|
@ -4,6 +4,7 @@ Revision history for Perl extension DBD::SQLite.
|
|||
- Updated to SQLite 3.6.10, and bumped up the version
|
||||
requirement for installed sqlite3 to 3.6.0 as 3.6.x
|
||||
has backward incompatiblity (ISHIGAKI)
|
||||
- license and configure_requires in Makefile.PL and META.yml (Alexandr Ciornii)
|
||||
|
||||
1.14
|
||||
- Updated to SQLite 3.4.2
|
||||
|
|
29
META.yml
29
META.yml
|
@ -1,11 +1,20 @@
|
|||
# http://module-build.sourceforge.net/META-spec.html
|
||||
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
|
||||
name: DBD-SQLite
|
||||
version: 1.14
|
||||
version_from: lib/DBD/SQLite.pm
|
||||
installdirs: site
|
||||
--- #YAML:1.0
|
||||
name: DBD-SQLite
|
||||
version: 1.15
|
||||
abstract: ~
|
||||
author: []
|
||||
license: perl
|
||||
distribution_type: module
|
||||
configure_requires:
|
||||
DBI: 1.21
|
||||
ExtUtils::MakeMaker: 0
|
||||
requires:
|
||||
DBI: 1.21
|
||||
|
||||
distribution_type: module
|
||||
generated_by: ExtUtils::MakeMaker version 6.17
|
||||
DBI: 1.21
|
||||
no_index:
|
||||
directory:
|
||||
- t
|
||||
- inc
|
||||
generated_by: ExtUtils::MakeMaker version 6.48
|
||||
meta-spec:
|
||||
url: http://module-build.sourceforge.net/META-spec-v1.4.html
|
||||
version: 1.4
|
||||
|
|
|
@ -144,7 +144,10 @@ unless ( $Config{usethreads} ) {
|
|||
WriteMakefile(
|
||||
NAME => 'DBD::SQLite',
|
||||
VERSION_FROM => 'lib/DBD/SQLite.pm',
|
||||
PREREQ_PM => { DBI => 1.21 },
|
||||
PREREQ_PM => { DBI => 1.21, },
|
||||
($ExtUtils::MakeMaker::VERSION ge '6.46'?
|
||||
('LICENSE' => 'perl',
|
||||
'META_MERGE' => {'configure_requires'=>{DBI => 1.21,}}, ) : ()),
|
||||
OBJECT => ( $force_local ? '$(O_FILES)' : 'SQLite.o dbdimp.o' ),
|
||||
OPTIMIZE => '-O2',
|
||||
clean => { FILES => 'SQLite.xsi config.h tv.log output' },
|
||||
|
|
Loading…
Add table
Reference in a new issue