initial package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Object-Event?expand=0&rev=1
This commit is contained in:
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal 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
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
.osc
|
3
Object-Event-1.22.tar.gz
Normal file
3
Object-Event-1.22.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a52e9ac31fe7cf750baa90061b165eed9a425b89f99803ae8581e9cc12b8a472
|
||||
size 15818
|
6
perl-Object-Event.changes
Normal file
6
perl-Object-Event.changes
Normal file
@@ -0,0 +1,6 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun May 1 10:33:17 UTC 2011 - coolo@opensuse.org
|
||||
|
||||
- initial package 1.22
|
||||
* created by cpanspec 1.78.04
|
||||
|
82
perl-Object-Event.spec
Normal file
82
perl-Object-Event.spec
Normal file
@@ -0,0 +1,82 @@
|
||||
#
|
||||
# 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
|
Reference in New Issue
Block a user