80 lines
2.6 KiB
RPMSpec
80 lines
2.6 KiB
RPMSpec
#
|
|
# spec file for package perl-IO-Prompt
|
|
#
|
|
# Copyright (c) 2024 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 IO-Prompt
|
|
Name: perl-IO-Prompt
|
|
Version: 0.997.4
|
|
Release: 0
|
|
# 0.997004 -> normalize -> 0.997.4
|
|
%define cpan_version 0.997004
|
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
|
Summary: Interactively prompt for user input
|
|
URL: https://metacpan.org/release/%{cpan_name}
|
|
Source0: https://cpan.metacpan.org/authors/id/D/DC/DCONWAY/%{cpan_name}-%{cpan_version}.tar.gz
|
|
Source1: cpanspec.yml
|
|
Source100: README.md
|
|
BuildArch: noarch
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(Module::Build)
|
|
BuildRequires: perl(Term::ReadKey)
|
|
BuildRequires: perl(Want)
|
|
Requires: perl(Term::ReadKey)
|
|
Requires: perl(Want)
|
|
Provides: perl(IO::Prompt) = %{version}
|
|
Provides: perl(IO::Prompt::ReturnVal)
|
|
%undefine __perllib_provides
|
|
%{perl_requires}
|
|
|
|
%description
|
|
By default, this module exports a single function 'prompt'. It prompts the
|
|
user to enter some input, and returns an object that represents the user
|
|
input.
|
|
|
|
You may specify various flags to the function to affect its behaviour; most
|
|
notably, it defaults to automatically 'chomp' the input, unless the '-line'
|
|
flag is specified.
|
|
|
|
Two other functions are exported at request: 'hand_print', which simulates
|
|
hand-typing to the console; and 'get_input', which is the lower-level
|
|
function that actually prompts the user for a suitable input.
|
|
|
|
Note that this is an interim re-release. A full release with better
|
|
documentation will follow in the near future. Meanwhile, please consult the
|
|
_examples_ directory from this module's CPAN distribution to better
|
|
understand how to make use of this module.
|
|
|
|
%prep
|
|
%autosetup -n %{cpan_name}-%{cpan_version}
|
|
|
|
%build
|
|
perl Build.PL --installdirs=vendor
|
|
./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 examples README
|
|
|
|
%changelog
|