8
0
forked from pool/perl-DB_File

Accepting request 328279 from devel:languages:perl:autoupdate

- updated to 1.835
   see /usr/share/doc/packages/perl-DB_File/Changes
  
  1.835 23 Dec 2014
  
     * Silence more compiler warnings
  
  1.834 11 Dec 2014
  
     * Makefile.PL: version check is missing a zero
       RT #100844
  
  1.833 9 Dec 2014
  
     * More Silence compiler warnings
  
     * 1.832 breaks bleadperl C89 build
       RT #100812
  
  1.832 8 Dec 2014
  
     * Silence compiler warnings
  
     * C++ change from blead
  
  1.831 15 November 2013
  
     * C99 comment is a nogo
       RT #90383

OBS-URL: https://build.opensuse.org/request/show/328279
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DB_File?expand=0&rev=6
This commit is contained in:
Stephan Kulow
2015-09-01 09:35:24 +00:00
committed by Git OBS Bridge
parent dd7d288ac3
commit a551fce6ba
5 changed files with 109 additions and 18 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c39828ef3cfecff8197ff057cb1c6127b87107c051d182b87c6b9ac79d23f09c
size 88977

3
DB_File-1.835.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:41206f39a1bac49db8c1595e300b04c70e1393b2d78ccb9ef15c5c0b81037cfc
size 134874

27
cpanspec.yml Normal file
View File

@@ -0,0 +1,27 @@
---
#description_paragraphs: 3
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
preamble: |-
%if 0%{?suse_version} >= 1140
BuildRequires: libdb-4_8-devel
%else
BuildRequires: libdb-4_5-devel
%endif
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

View File

@@ -1,3 +1,71 @@
-------------------------------------------------------------------
Tue Sep 1 08:53:04 UTC 2015 - coolo@suse.com
- updated to 1.835
see /usr/share/doc/packages/perl-DB_File/Changes
1.835 23 Dec 2014
* Silence more compiler warnings
1.834 11 Dec 2014
* Makefile.PL: version check is missing a zero
RT #100844
1.833 9 Dec 2014
* More Silence compiler warnings
* 1.832 breaks bleadperl C89 build
RT #100812
1.832 8 Dec 2014
* Silence compiler warnings
* C++ change from blead
1.831 15 November 2013
* C99 comment is a nogo
RT #90383
1.830 2 November 2013
* Memory leaks when failed to open db
RT #89589
* DB_File uses AutoLoader for no reason
RT #88258
1.829 7 July 2013
* make realclean: removing all files
RT #68214
* Documented the issue where the error below
BDB0588 At least one secondary cursor must be specified to DB->join
* DB_File installs to wrong place for CPAN version
RT #70420
Makefile.PL prevents INSTALLDIRS on command line.
RT #68287: Makefile.PL prevents INSTALLDIRS on command line.
* typo fix
RT #85335
1.828 7 May 2013
* Minor change to build with Berkeley DB 6.x
1.827 25 Jan 2012
* DB_File.pm - Don't use "@_" construct
[RT #79287]
-------------------------------------------------------------------
Wed Feb 15 17:00:57 UTC 2012 - seiler@b1-systems.de

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-DB_File
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2015 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
@@ -16,31 +16,27 @@
#
Name: perl-DB_File
Version: 1.826
Version: 1.835
Release: 0
%define cpan_name DB_File
Summary: Perl5 access to Berkeley DB version 1.x
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/DB_File/
Source: http://www.cpan.org/authors/id/P/PM/PMQS/%{cpan_name}-%{version}.tar.gz
Source0: http://www.cpan.org/authors/id/P/PM/PMQS/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
%if 0%{?sles_version} == 10
BuildRequires: db-devel
%endif
%if 0%{?sles_version} >= 11
BuildRequires: libdb-4_5-devel
%endif
%if 0%{?suse_version} >= 1140
BuildRequires: libdb-4_8-devel
%endif
BuildRequires: perl-macros
%{perl_requires}
# MANUAL BEGIN
%if 0%{?suse_version} >= 1140
BuildRequires: libdb-4_8-devel
%else
BuildRequires: libdb-4_5-devel
%endif
# MANUAL END
%description
*DB_File* is a module which allows Perl programs to make use of the