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
|
- Updated to SQLite 3.6.10, and bumped up the version
|
||||||
requirement for installed sqlite3 to 3.6.0 as 3.6.x
|
requirement for installed sqlite3 to 3.6.0 as 3.6.x
|
||||||
has backward incompatiblity (ISHIGAKI)
|
has backward incompatiblity (ISHIGAKI)
|
||||||
|
- license and configure_requires in Makefile.PL and META.yml (Alexandr Ciornii)
|
||||||
|
|
||||||
1.14
|
1.14
|
||||||
- Updated to SQLite 3.4.2
|
- Updated to SQLite 3.4.2
|
||||||
|
|
31
META.yml
31
META.yml
|
@ -1,11 +1,20 @@
|
||||||
# http://module-build.sourceforge.net/META-spec.html
|
--- #YAML:1.0
|
||||||
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
|
name: DBD-SQLite
|
||||||
name: DBD-SQLite
|
version: 1.15
|
||||||
version: 1.14
|
abstract: ~
|
||||||
version_from: lib/DBD/SQLite.pm
|
author: []
|
||||||
installdirs: site
|
license: perl
|
||||||
requires:
|
distribution_type: module
|
||||||
DBI: 1.21
|
configure_requires:
|
||||||
|
DBI: 1.21
|
||||||
distribution_type: module
|
ExtUtils::MakeMaker: 0
|
||||||
generated_by: ExtUtils::MakeMaker version 6.17
|
requires:
|
||||||
|
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(
|
WriteMakefile(
|
||||||
NAME => 'DBD::SQLite',
|
NAME => 'DBD::SQLite',
|
||||||
VERSION_FROM => 'lib/DBD/SQLite.pm',
|
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' ),
|
OBJECT => ( $force_local ? '$(O_FILES)' : 'SQLite.o dbdimp.o' ),
|
||||||
OPTIMIZE => '-O2',
|
OPTIMIZE => '-O2',
|
||||||
clean => { FILES => 'SQLite.xsi config.h tv.log output' },
|
clean => { FILES => 'SQLite.xsi config.h tv.log output' },
|
||||||
|
|
Loading…
Add table
Reference in a new issue