Accepting request 375390 from home:computersalat:devel:perl

initial pkg 0.23, needed for older perl

OBS-URL: https://build.opensuse.org/request/show/375390
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-ExtUtils-Constant?expand=0&rev=1
This commit is contained in:
Christian Wittmer
2016-03-18 21:34:12 +00:00
committed by Git OBS Bridge
commit d29aaf3ac0
5 changed files with 94 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

View File

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

View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Fri Mar 18 21:12:29 UTC 2016 - chris@computersalat.de
- initial package 0.23

View File

@@ -0,0 +1,62 @@
#
# spec file for package perl-ExtUtils-Constant
#
# Copyright (c) 2016 SUSE LINUX Products 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 http://bugs.opensuse.org/
#
Name: perl-ExtUtils-Constant
%define cpan_name ExtUtils-Constant
Summary: Generate XS code to import C header constants
License: Artistic-1.0 or GPL-1.0+
Group: Development/Libraries/Perl
Version: 0.23
Release: 0
Url: http://search.cpan.org/dist/ExtUtils-Constant/
Source: http://search.cpan.org/CPAN/authors/id/N/NW/NWCLARK/%{cpan_name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
Requires: perl = %{perl_version}
%description
ExtUtils::Constant facilitates generating C and XS wrapper code to
allow perl modules to AUTOLOAD constants defined in C library header
files. It is principally used by the h2xs utility, on which this code
is based. It doesn't contain the routines to scan header files to
extract these constants.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%clean
%{__rm} -rf $RPM_BUILD_ROOT
%files -f %{name}.files
%defattr(-,root,root)
%doc Changes README
%changelog