Accepting request 914777 from devel:languages:perl:CPAN-W

For perl-Task-Kensho-WebDev update

OBS-URL: https://build.opensuse.org/request/show/914777
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Web-Simple?expand=0&rev=1
This commit is contained in:
2021-08-31 09:23:21 +00:00
committed by Git OBS Bridge
commit 3f2a398562
6 changed files with 143 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

3
Web-Simple-0.033.tar.gz Normal file
View File

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

35
cpanspec.yml Normal file
View File

@@ -0,0 +1,35 @@
---
description_paragraphs: 2
#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

5
perl-Web-Simple.changes Normal file
View File

@@ -0,0 +1,5 @@
-------------------------------------------------------------------
Sat Aug 28 11:28:55 UTC 2021 - Dirk Stoecker <opensuse@dstoecker.de>
- initial package 0.033
* created by cpanspec 1.81.01

76
perl-Web-Simple.spec Normal file
View File

@@ -0,0 +1,76 @@
#
# spec file for package perl-Web-Simple
#
# Copyright (c) 2021 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 Web-Simple
Name: perl-Web-Simple
Version: 0.033
Release: 0
License: Artistic-1.0 OR GPL-1.0-or-later
Summary: Quick and easy way to build simple web applications
URL: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/M/MS/MSTROUT/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Data::Dumper::Concise) >= 2.020
BuildRequires: perl(HTTP::Body) >= 1.22
BuildRequires: perl(Moo) >= 0.009014
BuildRequires: perl(Plack) >= 0.9968
BuildRequires: perl(Syntax::Keyword::Gather) >= 1.001
BuildRequires: perl(Test::More) >= 0.88
BuildRequires: perl(strictures) >= 1
BuildRequires: perl(warnings::illegalproto)
Requires: perl(HTTP::Body) >= 1.22
Requires: perl(Moo) >= 0.009014
Requires: perl(Plack) >= 0.9968
Requires: perl(Syntax::Keyword::Gather) >= 1.001
Requires: perl(strictures) >= 1
Requires: perl(warnings::illegalproto)
%{perl_requires}
%description
The philosophy of Web::Simple is to keep to an absolute bare minimum for
everything. It is not designed to be used for large scale applications; the
Catalyst web framework already works very nicely for that and is a far more
mature, well supported piece of software.
However, if you have an application that only does a couple of things, and
want to not have to think about complexities of deployment, then
Web::Simple might be just the thing for you.
%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 Makefile.PL INSTALLDIRS=vendor
%make_build
%check
make test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%doc Changes examples README
%changelog