Bump to 0.1011 sandbox/perl-File-chdir_0.1011 accepted/tizen/unified/20240228.013714 accepted/tizen/unified/x/20240229.013832
authorTizenOpenSource <tizenopensrc@samsung.com>
Wed, 14 Feb 2024 02:06:27 +0000 (11:06 +0900)
committerTizenOpenSource <tizenopensrc@samsung.com>
Wed, 14 Feb 2024 02:06:27 +0000 (11:06 +0900)
Signed-off-by: TizenOpenSource <tizenopensrc@samsung.com>
packaging/perl-File-chdir.manifest [new file with mode: 0644]
packaging/perl-File-chdir.spec [new file with mode: 0644]

diff --git a/packaging/perl-File-chdir.manifest b/packaging/perl-File-chdir.manifest
new file mode 100644 (file)
index 0000000..017d22d
--- /dev/null
@@ -0,0 +1,5 @@
+<manifest>
+ <request>
+    <domain name="_"/>
+ </request>
+</manifest>
diff --git a/packaging/perl-File-chdir.spec b/packaging/perl-File-chdir.spec
new file mode 100644 (file)
index 0000000..ac482b2
--- /dev/null
@@ -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
+
+