From 753de7a5329b68f668d9bdb295331334c25c6dce Mon Sep 17 00:00:00 2001 From: TizenOpenSource Date: Wed, 14 Feb 2024 11:06:27 +0900 Subject: [PATCH] Bump to 0.1011 Signed-off-by: TizenOpenSource --- packaging/perl-File-chdir.manifest | 5 +++ packaging/perl-File-chdir.spec | 65 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 70 insertions(+) create mode 100644 packaging/perl-File-chdir.manifest create mode 100644 packaging/perl-File-chdir.spec diff --git a/packaging/perl-File-chdir.manifest b/packaging/perl-File-chdir.manifest new file mode 100644 index 0000000..017d22d --- /dev/null +++ b/packaging/perl-File-chdir.manifest @@ -0,0 +1,5 @@ + + + + + diff --git a/packaging/perl-File-chdir.spec b/packaging/perl-File-chdir.spec new file mode 100644 index 0000000..ac482b2 --- /dev/null +++ b/packaging/perl-File-chdir.spec @@ -0,0 +1,65 @@ +# +# spec file for package perl-File-chdir +# +# 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 File-chdir +Name: perl-File-chdir +Version: 0.1011 +Release: 0 +Summary: More sensible way to change directories +License: Artistic-1.0 OR GPL-1.0-or-later +Group: Development/Libraries/Perl +URL: https://metacpan.org/release/%{cpan_name} +Source0: %{cpan_name}-%{version}.tar.gz +Source1001: %{name}.manifest + +BuildRequires: perl + +BuildArch: noarch + +%description +Perl's 'chdir()' has the unfortunate problem of being very, very, very +global. If any part of your program calls 'chdir()' or if any library you +use calls 'chdir()', it changes the current working directory for the +*whole* program. + +This sucks. + +File::chdir gives you an alternative, '$CWD' and '@CWD'. These two +variables combine all the power of 'chdir()', File::Spec and Cwd. + +%prep +%setup -q -n File-chdir-%{version} +cp %{SOURCE1001} . + +%build +%{__perl} Makefile.PL +%{__make} %{?_smp_mflags} + +%install +%perl_make_install +%perl_process_packlist +%perl_gen_filelist + +%check +%{__make} test + +%files -f %{name}.files +%manifest %{name}.manifest +%license LICENSE + + -- 2.7.4