diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..110fff6 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/Object-HashBase-0.008.tar.gz diff --git a/.perl-Object-HashBase.metadata b/.perl-Object-HashBase.metadata new file mode 100644 index 0000000..9e02dca --- /dev/null +++ b/.perl-Object-HashBase.metadata @@ -0,0 +1 @@ +1da01a0b33a50a1f02cd704cfbf6579a02734cea SOURCES/Object-HashBase-0.008.tar.gz diff --git a/SOURCES/Object-HashBase-0.008-Normalize-shebang.patch b/SOURCES/Object-HashBase-0.008-Normalize-shebang.patch new file mode 100644 index 0000000..f57918c --- /dev/null +++ b/SOURCES/Object-HashBase-0.008-Normalize-shebang.patch @@ -0,0 +1,26 @@ +From af022c31e6467193069cc4a22c31d7a97d414928 Mon Sep 17 00:00:00 2001 +From: =?UTF-8?q?Petr=20P=C3=ADsa=C5=99?= +Date: Tue, 19 Nov 2019 09:52:13 +0100 +Subject: [PATCH] Normalize shebang +MIME-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit + +Signed-off-by: Petr Písař +--- + scripts/hashbase_inc.pl | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/scripts/hashbase_inc.pl b/scripts/hashbase_inc.pl +index 8b740f7..c450ab8 100644 +--- a/scripts/hashbase_inc.pl ++++ b/scripts/hashbase_inc.pl +@@ -1,4 +1,4 @@ +-#!/usr/bin/env perl ++#!/usr/bin/perl + use strict; + use warnings; + +-- +2.21.0 + diff --git a/SPECS/perl-Object-HashBase.spec b/SPECS/perl-Object-HashBase.spec new file mode 100644 index 0000000..8f0497b --- /dev/null +++ b/SPECS/perl-Object-HashBase.spec @@ -0,0 +1,81 @@ +Name: perl-Object-HashBase +Version: 0.008 +Release: 1%{?dist} +Summary: Build hash-based classes +License: GPL+ or Artistic +URL: https://metacpan.org/release/Object-HashBase +Source0: https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Object-HashBase-%{version}.tar.gz +# Correct shebangs +Patch0: Object-HashBase-0.008-Normalize-shebang.patch +BuildArch: noarch +BuildRequires: make +BuildRequires: perl-generators +BuildRequires: perl-interpreter +BuildRequires: perl(:VERSION) >= 5.8.1 +BuildRequires: perl(strict) +BuildRequires: perl(warnings) +BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76 +# Run-time: +BuildRequires: perl(base) +BuildRequires: perl(Carp) +BuildRequires: perl(Test::More) >= 0.98 +BuildRequires: perl(vars) +# Tests: +BuildRequires: perl(File::Temp) +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) + +# Remove under-specified dependenices +%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^perl\\(Test::More\\)$ +# Remove private modules +%global __requires_exclude %{__requires_exclude}|^perl\\(Object::HashBase::Test::HBase.* + +%description +This package is used to generate classes based on hash references. Using this +class will give you a new() method, as well as generating accessors you +request. Generated accessors will be getters, set_ACCESSOR setters will also +be generated for you. You also get constants for each accessor (all caps) +which return the key into the hash for that accessor. Single inheritance is +also supported. + +%package tools +Summary: Generate inlined Object::HashBase Perl module +Requires: %{name} = %{version}-%{release} +Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version)) +Requires: perl(Test::More) >= 0.98 + +%description tools +hashbase_inc.pl script generates a Perl module that contains +a Object::HashBase module mangled into a name space of your choice. It can +also generate the tests for it. + +%prep +%setup -q -n Object-HashBase-%{version} +%patch0 -p1 + +%build +perl Makefile.PL INSTALLDIRS=vendor NO_PACKLIST=1 NO_PERLLOCAL=1 +%{make_build} + +%install +%{make_install} +%{_fixperms} $RPM_BUILD_ROOT/* + +%check +make test + +%files +%license LICENSE +%doc Changes README +%{perl_vendorlib}/* +%exclude %{perl_vendorlib}/Object/HashBase +%{_mandir}/man3/* +%exclude %{_mandir}/man3/Object::HashBase::* + +%files tools +%{_bindir}/hashbase_inc.pl +%{perl_vendorlib}/Object/HashBase +%{_mandir}/man3/Object::HashBase::* + +%changelog +* Tue Nov 19 2019 Petr Pisar 0.008-1 +- Specfile autogenerated by cpanspec 1.78.