OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Object-Event?expand=0&rev=1
83 lines
2.7 KiB
RPMSpec
83 lines
2.7 KiB
RPMSpec
#
|
|
# spec file for package perl-Object-Event (Version 1.22)
|
|
#
|
|
# Copyright (c) 2011 SUSE LINUX Products 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-Object-Event
|
|
Version: 1.22
|
|
Release: 1
|
|
License: GPL+ or Artistic
|
|
%define cpan_name Object-Event
|
|
Summary: A class that provides an event callback interface
|
|
Url: http://search.cpan.org/dist/Object-Event/
|
|
Group: Development/Libraries/Perl
|
|
Source: http://www.cpan.org/authors/id/E/EL/ELMEX/%{cpan_name}-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildRequires: perl
|
|
BuildRequires: perl-macros
|
|
BuildRequires: perl(AnyEvent) >= 3.5
|
|
BuildRequires: perl(common::sense)
|
|
Requires: perl(AnyEvent) >= 3.5
|
|
Requires: perl(common::sense)
|
|
%{perl_requires}
|
|
|
|
%description
|
|
This module was mainly written for the AnyEvent::XMPP manpage, the
|
|
AnyEvent::IRC manpage, the AnyEvent::HTTPD manpage and the BK manpage to
|
|
provide a consistent API for registering and emitting events. Even though I
|
|
originally wrote it for those modules I released it separately in case
|
|
anyone may find this module useful.
|
|
|
|
For more comprehensive event handling see also the Glib manpage and the POE
|
|
manpage.
|
|
|
|
This class provides a simple way to extend a class, by inheriting from this
|
|
class, with an event callback interface.
|
|
|
|
You will be able to register callbacks for events, identified by their
|
|
names (a string) and call them later by invoking the 'event' method with
|
|
the event name and some arguments.
|
|
|
|
There is even a syntactic sugar which allows to call methods on the
|
|
instances of the Object::Event manpage-derived classes, to invoke events.
|
|
For this feature see the the EVENT METHODS manpage section of this
|
|
document.
|
|
|
|
%prep
|
|
%setup -q -n %{cpan_name}-%{version}
|
|
find . -type f -print0 | xargs -0 chmod 644
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
%{__make} %{?_smp_mflags}
|
|
|
|
%check
|
|
%{__make} test
|
|
|
|
%install
|
|
%perl_make_install
|
|
%perl_process_packlist
|
|
%perl_gen_filelist
|
|
|
|
%clean
|
|
%{__rm} -rf %{buildroot}
|
|
|
|
%files -f %{name}.files
|
|
%defattr(-,root,root,755)
|
|
%doc Changes README
|
|
|
|
%changelog
|