Sync from SUSE:SLFO:Main perl-Test-NoTabs revision 8f3a9868b9dfae11071a4ef0dabdb57e

This commit is contained in:
Adrian Schröter 2024-05-03 18:52:57 +02:00
commit fb130e89f4
5 changed files with 168 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

BIN
Test-NoTabs-2.02.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

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

55
perl-Test-NoTabs.changes Normal file
View File

@ -0,0 +1,55 @@
-------------------------------------------------------------------
Sun Apr 22 06:02:43 UTC 2018 - coolo@suse.com
- updated to 2.02
see /usr/share/doc/packages/perl-Test-NoTabs/Changes
2.02 2018-04-21 13:57:54Z
- no changes since trial release
2.01 2017-06-08 23:38:48Z (TRIAL RELEASE)
- altered a test to not bake @INC into -I options for a subprocess, to
avoid too-long commands
-------------------------------------------------------------------
Wed Apr 12 06:44:04 UTC 2017 - coolo@suse.com
- updated to 2.00
see /usr/share/doc/packages/perl-Test-NoTabs/Changes
-------------------------------------------------------------------
Tue Apr 14 20:38:10 UTC 2015 - coolo@suse.com
- updated to 1.4
see /usr/share/doc/packages/perl-Test-NoTabs/Changes
1.4 2015-01-29
- Removed boilerplate section "EXPORT" from pod (RT #96937) (Prakash Kailasa)
- Tightened checking for pod lines. (RT #95747) (Prakash Kailasa)
-------------------------------------------------------------------
Tue Jun 4 15:05:56 UTC 2013 - coolo@suse.com
- updated to 1.3
- Fix to ignore inc/ for Module::Install
- Fix regex to ignore '.svn', but not 'Xsvn' - unescaped .
-------------------------------------------------------------------
Thu Aug 25 22:43:05 UTC 2011 - chris@computersalat.de
- fix deps
- no auto_install
-------------------------------------------------------------------
Mon May 23 10:58:57 UTC 2011 - coolo@novell.com
- updated to 1.1
- Fix test fails if cwd or perl has a space in its path RT#67376
-------------------------------------------------------------------
Sat Jan 22 19:55:19 UTC 2011 - coolo@novell.com
- initial package 1.0
* created by cpanspec 1.78.03

59
perl-Test-NoTabs.spec Normal file
View File

@ -0,0 +1,59 @@
#
# spec file for package perl-Test-NoTabs
#
# Copyright (c) 2018 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
# 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 http://bugs.opensuse.org/
#
Name: perl-Test-NoTabs
Version: 2.02
Release: 0
%define cpan_name Test-NoTabs
Summary: Check the presence of tabs in your project
License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Test-NoTabs/
Source0: https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
%{perl_requires}
%description
This module scans your project/distribution for any perl files (scripts,
modules, etc) for the presence of tabs.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
%check
%{__make} test
%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes CONTRIBUTING README
%license LICENSE
%changelog