Import Debian changes 0.03-ok1
libiterator-perl (0.03-ok1) yangtze; urgency=medium * Build for openkylin.
This commit is contained in:
parent
af2863f608
commit
8e7deb7582
|
@ -0,0 +1,8 @@
|
||||||
|
libiterator-perl for Debian
|
||||||
|
|
||||||
|
Please edit this to provide information specific to
|
||||||
|
this libiterator-perl Debian package.
|
||||||
|
|
||||||
|
(Automatically generated by debmake Version 4.3.1)
|
||||||
|
|
||||||
|
-- sufang <sufang@kylinos.cn> Thu, 15 Sep 2022 09:51:21 +0800
|
|
@ -0,0 +1,5 @@
|
||||||
|
libiterator-perl (0.03-ok1) yangtze; urgency=medium
|
||||||
|
|
||||||
|
* Build for openkylin.
|
||||||
|
|
||||||
|
-- sufang <sufang@kylinos.cn> Thu, 15 Sep 2022 09:51:21 +0800
|
|
@ -0,0 +1,31 @@
|
||||||
|
Source: libiterator-perl
|
||||||
|
Section: perl
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: OpenKylin Developers <packaging@lists.openkylin.top>
|
||||||
|
Build-Depends: debhelper-compat (= 13)
|
||||||
|
Build-Depends-Indep: libexception-class-perl,
|
||||||
|
perl
|
||||||
|
Standards-Version: 3.9.6
|
||||||
|
Vcs-Browser: https://gitee.com/openkylin/libiterator-perl
|
||||||
|
Vcs-Git: https://gitee.com/openkylin/libiterator-perl.git
|
||||||
|
Homepage: https://metacpan.org/release/Iterator
|
||||||
|
Testsuite: autopkgtest-pkg-perl
|
||||||
|
|
||||||
|
Package: libiterator-perl
|
||||||
|
Architecture: all
|
||||||
|
Depends: libexception-class-perl,
|
||||||
|
${misc:Depends},
|
||||||
|
${perl:Depends}
|
||||||
|
Description: Perl implementation of iterators
|
||||||
|
Iterator is meant to be the definitive implementation of iterators, as
|
||||||
|
popularized by Mark Jason Dominus's lectures and recent book (Higher Order
|
||||||
|
Perl, Morgan Kauffman, 2005).
|
||||||
|
.
|
||||||
|
An "iterator" is an object, represented as a code block that generates the
|
||||||
|
"next value" of a sequence, and generally implemented as a closure. When you
|
||||||
|
need a value to operate on, you pull it from the iterator. If it depends on
|
||||||
|
other iterators, it pulls values from them when it needs to. Iterators can be
|
||||||
|
chained together (see Iterator::Util for functions that help you do just
|
||||||
|
that), queueing up work to be done but not actually doing it until a value is
|
||||||
|
needed at the front end of the chain. At that time, one data value is pulled
|
||||||
|
through the chain.
|
|
@ -0,0 +1,44 @@
|
||||||
|
Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||||
|
Upstream-Name: libiterator-perl
|
||||||
|
Source: <url://example.com>
|
||||||
|
#
|
||||||
|
# Please double check copyright with the licensecheck(1) command.
|
||||||
|
|
||||||
|
Files: Changes
|
||||||
|
Iterator-ppm.tar.gz
|
||||||
|
MANIFEST
|
||||||
|
META.yml
|
||||||
|
t/doc.t
|
||||||
|
t/new.t
|
||||||
|
t/value.t
|
||||||
|
Copyright: __NO_COPYRIGHT_NOR_LICENSE__
|
||||||
|
License: __NO_COPYRIGHT_NOR_LICENSE__
|
||||||
|
|
||||||
|
Files: README
|
||||||
|
Copyright: 2005 Eric J. Roode.
|
||||||
|
License: __UNKNOWN__
|
||||||
|
This module is free software; you can redistribute it and/or modify it
|
||||||
|
under the same terms as Perl itself.
|
||||||
|
|
||||||
|
Files: Makefile.PL
|
||||||
|
Copyright: __NO_COPYRIGHT__ in: Makefile.PL
|
||||||
|
License: __UNKNOWN__
|
||||||
|
package MY;
|
||||||
|
|
||||||
|
Files: Iterator.pm
|
||||||
|
Copyright: 2005 Eric J. Roode.
|
||||||
|
License: __UNKNOWN__
|
||||||
|
This module is free software; you can redistribute it and/or modify it
|
||||||
|
under the same terms as Perl itself.
|
||||||
|
.
|
||||||
|
To avoid my spam filter, please include "Perl", "module", or this
|
||||||
|
module's name in the message's subject line, and/or GPG-sign your
|
||||||
|
message.
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
# xml and html files (skipped):
|
||||||
|
# Iterator.ppd
|
||||||
|
|
||||||
|
#----------------------------------------------------------------------------
|
||||||
|
# Files marked as NO_LICENSE_TEXT_FOUND may be covered by the following
|
||||||
|
# license/copyright files.
|
|
@ -0,0 +1 @@
|
||||||
|
# You must remove unused comment lines for the released package.
|
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
|
@ -0,0 +1 @@
|
||||||
|
3.0 (quilt)
|
|
@ -0,0 +1,3 @@
|
||||||
|
version=4
|
||||||
|
opts=dversionmangle=s/\+ds\d*$// \
|
||||||
|
https://metacpan.org/release/Iterator .*/Iterator-v?@ANY_VERSION@@ARCHIVE_EXT@$
|
Loading…
Reference in New Issue