8
0

WIP: Automatic update to v3.482.0 (3.482) #1

Draft
cpanmirror wants to merge 1 commits from cpanmirror/perl-Verilog-Perl:autoupdate into main
4 changed files with 31 additions and 8 deletions

View File

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

BIN
Verilog-Perl-3.482.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Thu Oct 9 20:52:38 UTC 2025 - Tina Müller <timueller+perl@suse.de>
- updated to 3.482.0 (3.482)
see /usr/share/doc/packages/perl-Verilog-Perl/Changes
* Verilog-Perl 3.482 2024-01-22
*** Support IEEE 1800-2023 language keywords. (No other 2023 support yet.)
**** Fix t/03_spaces.t test for Debian (#1675). [Gregor Herrmann]
**** Fix GCC 11 false free-nonheap-obj warning.
-------------------------------------------------------------------
Fri Sep 2 03:12:20 UTC 2022 - Tina Müller <timueller+perl@suse.de>

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Verilog-Perl
#
# Copyright (c) 2022 SUSE LLC
# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,12 +18,14 @@
%define cpan_name Verilog-Perl
Name: perl-Verilog-Perl
Version: 3.480
Version: 3.482.0
Release: 0
# 3.482 -> normalize -> 3.482.0
%define cpan_version 3.482
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Verilog language utilities and parsing
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/W/WS/WSNYDER/%{cpan_name}-%{version}.tar.gz
Source0: https://cpan.metacpan.org/authors/id/W/WS/WSNYDER/%{cpan_name}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
Source100: README.md
BuildRequires: perl
@@ -31,6 +33,15 @@ BuildRequires: perl-macros
BuildRequires: perl(Digest::SHA)
BuildRequires: perl(Pod::Usage) >= 1.34
Requires: perl(Pod::Usage) >= 1.34
Provides: perl(Verilog::EditFiles) = %{version}
Provides: perl(Verilog::Getopt) = %{version}
Provides: perl(Verilog::Language) = %{version}
Provides: perl(Verilog::Netlist) = %{version}
Provides: perl(Verilog::Std) = %{version}
Provides: perl(process)
Provides: perl(semaphore)
Provides: perl(std)
%undefine __perllib_provides
%{perl_requires}
# MANUAL BEGIN
BuildRequires: bison
@@ -42,8 +53,9 @@ BuildRequires: gcc-c++
Verilog language utilities and parsing
%prep
%autosetup -n %{cpan_name}-%{version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%autosetup -n %{cpan_name}-%{cpan_version} -p1
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -path "*/scripts/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"