forked from pool/perl-Algorithm-Annotate
Compare commits
38 Commits
c1576cfe53
...
factory
Author | SHA256 | Date | |
---|---|---|---|
b9fcc27e3c | |||
d796a24f80 | |||
|
c4ee59ff68 | ||
|
a94d30b5f7 | ||
|
1519a31271 | ||
|
55c12cf176 | ||
|
16fd937ee4 | ||
|
f8473e652b | ||
|
b94ecd7cd6 | ||
|
35c7231e22 | ||
|
d80a99da26 | ||
|
9e2d7a9db7 | ||
|
7737219d84 | ||
|
f0edfeeb3c | ||
|
b24c3b76bb | ||
|
a7eb7ee06a | ||
|
1c8f445305 | ||
|
9893fef503 | ||
|
2f4f4efc2d | ||
|
c77b6c3203 | ||
|
ba0db9725b | ||
|
c8a6c969b6 | ||
|
c5084ff217 | ||
|
d02e90be6e | ||
|
1390cf881c | ||
|
010c0a6eb4 | ||
|
82eb278677 | ||
|
61435c9ea6 | ||
|
3f6a491137 | ||
|
c778112e8f | ||
|
154e0ffe6a | ||
|
7920fa0e6b | ||
|
bcef68064d | ||
|
0c9656a09b | ||
|
9e47ddd935 | ||
|
d46316a464 | ||
|
fb6c165ccf | ||
|
b86b1afa56 |
@@ -1,3 +1,19 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 22:08:08 UTC 2025 - Tina Müller <tina.mueller@suse.com>
|
||||
|
||||
- Normalize CPAN version
|
||||
See https://github.com/openSUSE/cpanspec/issues/47 for details
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 11 08:55:07 UTC 2011 - coolo@suse.com
|
||||
|
||||
- recreate with cpanspec 1.78.05
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 1 13:30:33 UTC 2010 - coolo@novell.com
|
||||
|
||||
- recreate with cpanspec 1.78.03
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 19 08:38:20 UTC 2010 - coolo@novell.com
|
||||
|
||||
|
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package perl-Algorithm-Annotate (Version 0.10)
|
||||
# spec file for package perl-Algorithm-Annotate
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2025 SUSE LLC
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -12,57 +12,48 @@
|
||||
# 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/
|
||||
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
|
||||
%define cpan_name Algorithm-Annotate
|
||||
Name: perl-Algorithm-Annotate
|
||||
License: Artistic
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://cpan.org/
|
||||
Requires: perl = %{perl_version}
|
||||
AutoReqProv: on
|
||||
Summary: represent a series of changes in annotate form
|
||||
Version: 0.10
|
||||
Release: 145
|
||||
Source: http://cpan.org/modules/by-module/Algorithm/Algorithm-Annotate-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Version: 0.100.0
|
||||
Release: 0
|
||||
# 0.10 -> normalize -> 0.100.0
|
||||
%define cpan_version 0.10
|
||||
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||
Summary: Represent a series of changes in annotation list
|
||||
URL: https://metacpan.org/release/%{cpan_name}
|
||||
Source0: https://cpan.metacpan.org/authors/id/C/CL/CLKAO/%{cpan_name}-%{cpan_version}.tar.gz
|
||||
BuildArch: noarch
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(Algorithm::Diff) >= 1.150
|
||||
Requires: perl(Algorithm::Diff) >= 1.150
|
||||
Provides: perl(Algorithm::Annotate) = %{version}
|
||||
%undefine __perllib_provides
|
||||
%{perl_requires}
|
||||
|
||||
%description
|
||||
Algorithm::Annotate generates a list that is useful for generating
|
||||
output similar to cvs annotate.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Chia-liang Kao <clkao at clkao dot org>
|
||||
Algorithm::Annotate generates a list that is useful for generating output
|
||||
simliar to 'cvs annotate'.
|
||||
|
||||
%prep
|
||||
%setup -n Algorithm-Annotate-%{version}
|
||||
%autosetup -n %{cpan_name}-%{cpan_version} -p1
|
||||
|
||||
%build
|
||||
perl Makefile.PL
|
||||
%{__make}
|
||||
perl Makefile.PL INSTALLDIRS=vendor
|
||||
%make_build
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
%install
|
||||
%perl_make_install
|
||||
%perl_process_packlist
|
||||
%perl_gen_filelist
|
||||
|
||||
%clean
|
||||
[ "${RPM_BUILD_ROOT}" != "/" -a -d ${RPM_BUILD_ROOT} ] && rm -rf ${RPM_BUILD_ROOT}
|
||||
|
||||
%files
|
||||
%defattr(-, root, root)
|
||||
%dir %{perl_vendorlib}/Algorithm
|
||||
%{perl_vendorlib}/Algorithm/Annotate.pm
|
||||
%dir %{perl_vendorarch}/auto/Algorithm
|
||||
%dir %{perl_vendorarch}/auto/Algorithm/Annotate
|
||||
%{perl_vendorarch}/auto/Algorithm/Annotate/.packlist
|
||||
%{_mandir}/man3/Algorithm::Annotate.3pm.gz
|
||||
/var/adm/perl-modules/%{name}
|
||||
%files -f %{name}.files
|
||||
|
||||
%changelog
|
||||
|
Reference in New Issue
Block a user