Pedro Monreal Gonzalez
d5a74f097b
- updated to 1.643 see /usr/share/doc/packages/perl-DBI/Changes OBS-URL: https://build.opensuse.org/request/show/769286 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DBI?expand=0&rev=61
75 lines
2.5 KiB
RPMSpec
75 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package perl-DBI
|
|
#
|
|
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
Name: perl-DBI
|
|
Version: 1.643
|
|
Release: 0
|
|
%define cpan_name DBI
|
|
Summary: Database independent interface for Perl
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Group: Development/Libraries/Perl
|
|
Url: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/T/TI/TIMB/%{cpan_name}-%{version}.tar.gz
|
|
Source1: perl-DBI.rpmlintrc
|
|
Source2: cpanspec.yml
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Test::Simple) >= 0.90
|
|
%{perl_requires}
|
|
|
|
%description
|
|
The DBI is a database access module for the Perl programming language. It
|
|
defines a set of methods, variables, and conventions that provide a
|
|
consistent database interface, independent of the actual database being
|
|
used.
|
|
|
|
It is important to remember that the DBI is just an interface. The DBI is a
|
|
layer of "glue" between an application and one or more database _driver_
|
|
modules. It is the driver modules which do most of the real work. The DBI
|
|
provides a standard interface and framework for the drivers to operate
|
|
within.
|
|
|
|
This document often uses terms like _references_, _objects_, _methods_. If
|
|
you're not familiar with those terms then it would be a good idea to read
|
|
at least the following perl manuals first: perlreftut, perldsc, perllol,
|
|
and perlboot.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
|
|
|
|
%build
|
|
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
|
make %{?_smp_mflags}
|
|
|
|
%check
|
|
make test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes Driver.xst README.md
|
|
%license LICENSE
|
|
|
|
%changelog
|