Sophie

Sophie

distrib > Altlinux > 4.1 > i586 > media > core-src > by-pkgid > 88b23ad06a9d3e6ef25d33e38012f825 > files > 2

perl-Class-Singleton-1.4-alt1.src.rpm

 .gear/rules                                        |    2 +
 .../tags/24936231a4637edcc2827d6016cae21781f4e6a5  |   13 +++++
 .gear/tags/list                                    |    1 +
 perl-Class-Singleton.spec                          |   48 ++++++++++++++++++++
 4 files changed, 64 insertions(+), 0 deletions(-)

diff --git a/.gear/rules b/.gear/rules
new file mode 100644
index 0000000..20a1584
--- /dev/null
+++ b/.gear/rules
@@ -0,0 +1,2 @@
+tar: @version@:. name=Class-Singleton-@version@
+diff: @version@:. . name=perl-Class-Singleton-@version@-@release@.patch
diff --git a/.gear/tags/24936231a4637edcc2827d6016cae21781f4e6a5 b/.gear/tags/24936231a4637edcc2827d6016cae21781f4e6a5
new file mode 100644
index 0000000..2914061
--- /dev/null
+++ b/.gear/tags/24936231a4637edcc2827d6016cae21781f4e6a5
@@ -0,0 +1,13 @@
+object 3f50df4e45e0c642ae8d8c767de2ccf2e8b6e4a6
+type commit
+tag 1.4
+tagger Alexey Tourbin <at@altlinux.ru> 1204710318 +0300
+
+1.4
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1.4.8 (GNU/Linux)
+
+iEYEABECAAYFAkfOa64ACgkQfBKgtDjnu0YqlgCfVaHos5HA89PTb6Uhx/UChUnA
+pMoAoOgG80XGobT++LYnMroTQSbS9rAo
+=meBD
+-----END PGP SIGNATURE-----
diff --git a/.gear/tags/list b/.gear/tags/list
new file mode 100644
index 0000000..3a2a9a5
--- /dev/null
+++ b/.gear/tags/list
@@ -0,0 +1 @@
+24936231a4637edcc2827d6016cae21781f4e6a5 1.4
diff --git a/perl-Class-Singleton.spec b/perl-Class-Singleton.spec
new file mode 100644
index 0000000..9f9b37b
--- /dev/null
+++ b/perl-Class-Singleton.spec
@@ -0,0 +1,48 @@
+%define dist Class-Singleton
+Name: perl-%dist
+Version: 1.4
+Release: alt1
+
+Summary: Implementation of a "Singleton" class
+License: GPL or Artistic
+Group: Development/Perl
+
+URL: %CPAN %dist
+Source: %dist-%version.tar
+Patch: %name-%version-%release.patch
+
+BuildArch: noarch
+
+# Automatically added by buildreq on Wed Mar 05 2008
+BuildRequires: perl-devel
+
+%description
+This is the Class::Singleton module.  A Singleton describes an object
+class that can have only one instance in any system.  An example of a
+Singleton might be a print spooler or system registry.  This module
+implements a Singleton class from which other classes can be derived.
+By itself, the Class::Singleton module does very little other than
+manage the instantiation of a single object.  In deriving a class from
+Class::Singleton, your module will inherit the Singleton instantiation
+method and can implement whatever specific functionality is required.
+
+%prep
+%setup -q -n %dist-%version
+%patch -p1
+
+%build
+%perl_vendor_build
+
+%install
+%perl_vendor_install
+
+%files
+%doc Changes README
+%perl_vendor_privlib/Class*
+
+%changelog
+* Wed Mar 05 2008 Alexey Tourbin <at@altlinux.ru> 1.4-alt1
+- 1.03 -> 1.4
+
+* Sun Aug 21 2005 Alexey Tourbin <at@altlinux.ru> 1.03-alt1
+- initial revision