Accepting request 1080141 from home:dstoecker:branches:devel:languages:perl:CPAN-L

To use systemd functions from perl (i.e. watchdog).

OBS-URL: https://build.opensuse.org/request/show/1080141
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Linux-Systemd?expand=0&rev=1
This commit is contained in:
2023-04-27 15:10:27 +00:00
committed by Git OBS Bridge
commit b008a6aef6
6 changed files with 135 additions and 0 deletions

23
.gitattributes vendored Normal file
View File

@@ -0,0 +1,23 @@
## Default LFS
*.7z filter=lfs diff=lfs merge=lfs -text
*.bsp filter=lfs diff=lfs merge=lfs -text
*.bz2 filter=lfs diff=lfs merge=lfs -text
*.gem filter=lfs diff=lfs merge=lfs -text
*.gz filter=lfs diff=lfs merge=lfs -text
*.jar filter=lfs diff=lfs merge=lfs -text
*.lz filter=lfs diff=lfs merge=lfs -text
*.lzma filter=lfs diff=lfs merge=lfs -text
*.obscpio filter=lfs diff=lfs merge=lfs -text
*.oxt filter=lfs diff=lfs merge=lfs -text
*.pdf filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.rpm filter=lfs diff=lfs merge=lfs -text
*.tbz filter=lfs diff=lfs merge=lfs -text
*.tbz2 filter=lfs diff=lfs merge=lfs -text
*.tgz filter=lfs diff=lfs merge=lfs -text
*.ttf filter=lfs diff=lfs merge=lfs -text
*.txz filter=lfs diff=lfs merge=lfs -text
*.whl filter=lfs diff=lfs merge=lfs -text
*.xz filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.zst filter=lfs diff=lfs merge=lfs -text

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
.osc

View File

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

35
cpanspec.yml Normal file
View File

@@ -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: pkgconfig(libsystemd)
#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: LGPL-2.1
#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

View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Tue Apr 18 12:26:16 UTC 2023 - Dirk Stoecker <opensuse@dstoecker.de>
- initial package 1.201600
* created by cpanspec 1.83.00

68
perl-Linux-Systemd.spec Normal file
View File

@@ -0,0 +1,68 @@
#
# spec file for package perl-Linux-Systemd
#
# Copyright (c) 2023 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%define cpan_name Linux-Systemd
Name: perl-Linux-Systemd
Version: 1.201600
Release: 0
#Upstream: This is free software, licensed under: The GNU Lesser General Public License, Version 2.1, February 1999
License: LGPL-2.1-only
Summary: Bindings for systemd APIs
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/I/IO/IOANR/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(ExtUtils::PkgConfig)
BuildRequires: perl(Module::Build) >= 0.280000
BuildRequires: perl(Moo)
BuildRequires: perl(Test::CheckDeps) >= 0.010
BuildRequires: perl(Test::Fatal)
BuildRequires: perl(Test::More) >= 0.94
BuildRequires: perl(strictures) >= 2
Requires: perl(Moo)
Requires: perl(strictures) >= 2
%{perl_requires}
# MANUAL BEGIN
BuildRequires: pkgconfig(libsystemd)
# MANUAL END
%description
The following 'systemd' components are wrapped to some to degree.
%prep
%autosetup -n %{cpan_name}-%{version}
find . -type f ! -path "*/t/*" ! -name "*.pl" ! -path "*/bin/*" ! -path "*/script/*" ! -name "configure" -print0 | xargs -0 chmod 644
%build
perl Build.PL installdirs=vendor optimize="%{optflags}"
./Build build flags=%{?_smp_mflags}
%check
./Build test
%install
./Build install destdir=%{buildroot} create_packlist=0
%perl_gen_filelist
%files -f %{name}.files
%doc Changes README.md
%license LICENSE
%changelog