8
0

Accepting request 765781 from devel:languages:perl:autoupdate

- updated to 1.25
   see /usr/share/doc/packages/perl-Net-Ident/Changes
  1.25 
      - Enable github actions testing
      - Switch to README.md and point to testing status
      - Fix spelling typo provided by Debian project
      - Switch primary tracker to github issues
      - Remove META.yml from source control

OBS-URL: https://build.opensuse.org/request/show/765781
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Net-Ident?expand=0&rev=20
This commit is contained in:
2020-01-20 14:30:26 +00:00
committed by Git OBS Bridge
parent b676670044
commit acb81ef161
5 changed files with 57 additions and 15 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5f5f1142185a67b87406a3fb31f221564f61838a70ef4c07284a66c55e82ad05
size 26691

3
Net-Ident-1.25.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2e5bd58b01c2a66e8049a2f8d9c93e1b5f6dce53e0ee3a481ce6a6f411f2c8f8
size 31423

28
cpanspec.yml Normal file
View File

@@ -0,0 +1,28 @@
---
#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:
#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

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Mon Jan 20 03:13:49 UTC 2020 - <timueller+perl@suse.de>
- updated to 1.25
see /usr/share/doc/packages/perl-Net-Ident/Changes
1.25 Sat Jan 18 2020
- Enable github actions testing
- Switch to README.md and point to testing status
- Fix spelling typo provided by Debian project
- Switch primary tracker to github issues
- Remove META.yml from source control
-------------------------------------------------------------------
Tue Apr 14 19:27:52 UTC 2015 - coolo@suse.com

View File

@@ -1,7 +1,7 @@
#
# spec file for package perl-Net-Ident
#
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,19 +12,20 @@
# 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/
#
Name: perl-Net-Ident
Version: 1.24
Version: 1.25
Release: 0
%define cpan_name Net-Ident
Summary: lookup the username on the remote end of a TCP/IP connection
License: GPL-1.0+ or Artistic-1.0
Summary: Lookup the username on the remote end of a TCP/IP connection
License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Net-Ident/
Source: http://www.cpan.org/authors/id/T/TO/TODDR/%{cpan_name}-%{version}.tar.gz
Url: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/T/TO/TODDR/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
@@ -39,14 +40,14 @@ lookup is proceeding.
%prep
%setup -q -n %{cpan_name}-%{version}
find . -type f -print0 | xargs -0 chmod 644
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%check
%{__make} test
make test
%install
%perl_make_install
@@ -55,6 +56,6 @@ find . -type f -print0 | xargs -0 chmod 644
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes README
%doc Changes README.md
%changelog