diff --git a/cpanspec.yml b/cpanspec.yml new file mode 100644 index 0000000..50f40d3 --- /dev/null +++ b/cpanspec.yml @@ -0,0 +1,35 @@ +--- +description_paragraphs: 3 +#description: |- +# override description from CPAN +#summary: override summary from CPAN +#no_testing: broken upstream +#sources: +# - source1 +# - source2 +#patches: +# foo.patch: -p1 +# bar.patch: +# baz.patch: PATCH-FIX-OPENSUSE +#preamble: |- +# BuildRequires: gcc-c++ +#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_build: |- +# rm unused.files +#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 +#skip_doc: regexp_to_skip_for_doc.* +#add_doc: files to add to docs +#misc: |- +#anything else to be added to spec file +#follows directly after %files section, so it can contain new blocks or also +#changes to %files section diff --git a/perl-Unix-Syslog.changes b/perl-Unix-Syslog.changes index bea9cf8..89c0561 100644 --- a/perl-Unix-Syslog.changes +++ b/perl-Unix-Syslog.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Feb 10 21:45:00 UTC 2025 - Tina Müller + +- Normalize CPAN version + See https://github.com/openSUSE/cpanspec/issues/47 for details + ------------------------------------------------------------------- Fri Nov 18 11:08:31 UTC 2011 - coolo@suse.com diff --git a/perl-Unix-Syslog.spec b/perl-Unix-Syslog.spec index 413458f..11c60f0 100644 --- a/perl-Unix-Syslog.spec +++ b/perl-Unix-Syslog.spec @@ -1,7 +1,7 @@ # # spec file for package perl-Unix-Syslog # -# Copyright (c) 2011 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,62 @@ # 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 - -Name: perl-Unix-Syslog %define cpan_name Unix-Syslog +Name: perl-Unix-Syslog +Version: 1.100.0 +Release: 0 +# 1.1 -> normalize -> 1.100.0 +%define cpan_version 1.1 +License: CHECK(Artistic-1.0 or GPL-1.0-or-later) Summary: Perl interface to the UNIX syslog(3) calls -Version: 1.1 -Release: 4 -License: Artistic -Group: Development/Libraries/Perl -Url: http://search.cpan.org/dist/Unix-Syslog/ -Source: %{cpan_name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-build -%{perl_requires} +URL: https://metacpan.org/release/%{cpan_name} +Source0: https://cpan.metacpan.org/authors/id/M/MH/MHARNISCH/%{cpan_name}-%{cpan_version}.tar.gz +Source1: cpanspec.yml BuildRequires: perl BuildRequires: perl-macros +Provides: perl(Unix::Syslog) = %{version} +%undefine __perllib_provides +%{perl_requires} %description -This module provides an interface to the system logger syslogd(8) via -Perl's XSUBs. The implementation attempts to resemble the native libc- -functions of your system, so that anyone being familiar with syslog.h -should be able to use this module right away. +This module provides an interface to the system logger *syslogd*(8) via +Perl's XSUBs. The implementation attempts to resemble the native +libc-functions of your system, so that anyone being familiar with +_syslog.h_ should be able to use this module right away. -Authors: --------- - Marcus Harnisch +In contrary to Sys::Syslog(3), this modules does not open a network +connection to send the messages. This can help you to avoid opening +security holes in your computer (see "FAQ"). +The subs imported by the tag 'macros' are simply wrappers around the most +important '#defines' in your system's C header file _syslog.h_. The macros +return integer values that are used to specify options, facilities and +priorities in a more or less portable way. They also provide general +information about your local syslog mechanism. Check syslog(3) and your +local _syslog.h_ for information about the macros, options and facilities +available on your system. %prep -%setup -q -n %{cpan_name}-%{version} +%autosetup -n %{cpan_name}-%{cpan_version} -p1 %build -%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS" -%{__make} %{?_smp_mflags} +perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" +%make_build %check -%{__make} test +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 Artistic Changes README +%doc Changes README +%license Artistic %changelog