Page Menu
Home
Solus
Search
Configure Global Search
Log In
Files
F10792216
D425.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
17 KB
Referenced Files
None
Subscribers
None
D425.diff
View Options
diff --git a/Makefile b/Makefile
new file mode 100644
--- /dev/null
+++ b/Makefile
@@ -0,0 +1 @@
+include ../Makefile.common
diff --git a/files/Distar.pm b/files/Distar.pm
new file mode 100644
--- /dev/null
+++ b/files/Distar.pm
@@ -0,0 +1,448 @@
+package Distar;
+use strict;
+use warnings FATAL => 'all';
+use base qw(Exporter);
+use ExtUtils::MakeMaker ();
+use ExtUtils::MM ();
+use File::Spec ();
+
+our $VERSION = '0.002000';
+$VERSION = eval $VERSION;
+
+my $MM_VER = eval $ExtUtils::MakeMaker::VERSION;
+
+our @EXPORT = qw(
+ author manifest_include readme_generator
+);
+
+sub import {
+ strict->import;
+ warnings->import(FATAL => 'all');
+ shift->export_to_level(1,@_);
+}
+
+sub author {
+ our $Author = shift;
+ $Author = [ $Author ]
+ if !ref $Author;
+}
+
+our @Manifest = (
+ 'lib' => '.pm',
+ 'lib' => '.pod',
+ 't' => '.t',
+ 't/lib' => '.pm',
+ 'xt' => '.t',
+ 'xt/lib' => '.pm',
+ '' => qr{[^/]*\.PL},
+ '' => qr{Changes|MANIFEST|README|LICENSE|META\.yml},
+ 'maint' => qr{[^.].*},
+);
+
+sub manifest_include {
+ push @Manifest, @_;
+}
+
+sub readme_generator {
+ die "readme_generator unsupported" if @_ && $_[0];
+}
+
+sub write_manifest_skip {
+ my ($mm) = @_;
+ my @files = @Manifest;
+ my @parts;
+ while (my ($dir, $spec) = splice(@files, 0, 2)) {
+ my $re = ($dir ? $dir.'/' : '').
+ ((ref($spec) eq 'Regexp')
+ ? $spec
+ : !ref($spec)
+ ? ".*\Q${spec}\E"
+ # print ref as well as stringification in case of overload ""
+ : die "spec must be string or regexp, was: ${spec} (${\ref $spec})");
+ push @parts, $re;
+ }
+ my $dist_name = $mm->{DISTNAME};
+ my $include = join '|', map "${_}\$", @parts;
+ my $final = "^(?:\Q$dist_name\E-v?[0-9_.]+/|(?!$include))";
+ open my $skip, '>', 'MANIFEST.SKIP'
+ or die "can't open MANIFEST.SKIP: $!";
+ print $skip "${final}\n";
+ close $skip;
+}
+
+{
+ package Distar::MM;
+ our @ISA = @MM::ISA;
+ @MM::ISA = (__PACKAGE__);
+
+ sub new {
+ my ($class, $args) = @_;
+ my %test = %{$args->{test}||{}};
+ my $tests = $test{TESTS} || 't/*.t';
+ $tests !~ /\b\Q$_\E\b/ and $tests .= " $_"
+ for 'xt/*.t', 'xt/*/*.t';
+ $test{TESTS} = $tests;
+ return $class->SUPER::new({
+ LICENSE => 'perl_5',
+ MIN_PERL_VERSION => '5.006',
+ AUTHOR => ($MM_VER >= 6.5702 ? $Distar::Author : join(', ', @$Distar::Author)),
+ (exists $args->{ABSTRACT} ? () : (ABSTRACT_FROM => $args->{VERSION_FROM})),
+ %$args,
+ test => \%test,
+ realclean => { FILES => (
+ ($args->{realclean}{FILES}||'')
+ . ' Distar/ MANIFEST.SKIP MANIFEST MANIFEST.bak'
+ ) },
+ });
+ }
+
+ sub flush {
+ my $self = shift;
+ `git ls-files --error-unmatch MANIFEST.SKIP 2>&1`;
+ my $maniskip_tracked = !$?;
+
+ Distar::write_manifest_skip($self)
+ unless $maniskip_tracked;
+ $self->SUPER::flush(@_);
+ }
+
+ sub special_targets {
+ my $self = shift;
+ my $targets = $self->SUPER::special_targets(@_);
+ my $phony_targets = join ' ', qw(
+ preflight
+ check-version
+ check-manifest
+ check-cpan-upload
+ releasetest
+ release
+ readmefile
+ distmanicheck
+ nextrelease
+ refresh
+ bump
+ bumpmajor
+ bumpminor
+ );
+ $targets =~ s/^(\.PHONY *:.*)/$1 $phony_targets/m;
+ $targets;
+ }
+
+ sub dist_test {
+ my $self = shift;
+
+ my $include = '';
+ if (open my $fh, '<', 'maint/Makefile.include') {
+ $include = "\n# --- Makefile.include:\n\n" . do { local $/; <$fh> };
+ $include =~ s/\n?\z/\n/;
+ }
+
+ my @bump_targets =
+ grep { $include !~ /^bump$_(?: +\w+)*:/m } ('', 'minor', 'major');
+
+ my $distar = File::Spec->catdir(
+ File::Spec->catpath((File::Spec->splitpath(__FILE__))[0,1], ''),
+ File::Spec->updir,
+ );
+ my $helpers = File::Spec->catdir($distar, 'helpers');
+
+ my %vars = (
+ DISTAR => $self->quote_literal($distar),
+ HELPERS => $self->quote_literal($helpers),
+ REMAKE => join(' ', '$(PERLRUN)', '-I$(DISTAR)/lib', '-mDistar', 'Makefile.PL', map { $self->quote_literal($_) } @ARGV),
+ BRANCH => $self->{BRANCH} ||= 'master',
+ CHANGELOG => $self->{CHANGELOG} ||= 'Changes',
+ DEV_NULL_STDOUT => ($self->{DEV_NULL} ? '>'.File::Spec->devnull : ''),
+ FAKE_RELEASE => '',
+ );
+
+ join('',
+ $self->SUPER::dist_test(@_),
+ "\n\n# --- Distar section:\n\n",
+ (map "$_ = $vars{$_}\n", sort keys %vars),
+ <<'END',
+
+preflight: check-version check-manifest check-cpan-upload
+ $(ABSPERLRUN) $(HELPERS)/preflight $(VERSION) --changelog=$(CHANGELOG) --branch=$(BRANCH)
+check-version:
+ $(ABSPERLRUN) $(HELPERS)/check-version $(VERSION) $(TO_INST_PM) $(EXE_FILES)
+check-manifest:
+ $(ABSPERLRUN) $(HELPERS)/check-manifest
+check-cpan-upload:
+ $(NOECHO) cpan-upload -h $(DEV_NULL_STDOUT)
+releasetest:
+ $(MAKE) disttest RELEASE_TESTING=1 PASTHRU="$(PASTHRU) TEST_FILES=\"$(TEST_FILES)\""
+release: preflight
+ $(MAKE) releasetest
+ git commit -a -m "Release commit for $(VERSION)"
+ git tag v$(VERSION) -m "release v$(VERSION)"
+ $(RM_RF) $(DISTVNAME)
+ $(MAKE) $(DISTVNAME).tar$(SUFFIX)
+ $(NOECHO) $(MAKE) pushrelease FAKE_RELEASE=$(FAKE_RELEASE)
+pushrelease ::
+ $(NOECHO) $(NOOP)
+pushrelease$(FAKE_RELEASE) ::
+ cpan-upload $(DISTVNAME).tar$(SUFFIX)
+ git push origin v$(VERSION) HEAD
+distdir: readmefile
+readmefile: create_distdir
+ $(NOECHO) $(TEST_F) $(DISTVNAME)/README || $(MAKE) $(DISTVNAME)/README
+$(DISTVNAME)/README: $(VERSION_FROM)
+ $(NOECHO) $(MKPATH) $(DISTVNAME)
+ pod2text $(VERSION_FROM) >$(DISTVNAME)/README
+ $(NOECHO) $(ABSPERLRUN) $(HELPERS)/add-to-manifest -d $(DISTVNAME) README
+distsignature: readmefile
+disttest: distmanicheck
+distmanicheck: create_distdir
+ cd $(DISTVNAME) && $(ABSPERLRUN) "-MExtUtils::Manifest=manicheck" -e "exit manicheck"
+nextrelease:
+ $(ABSPERLRUN) $(HELPERS)/add-changelog-heading --git $(VERSION) $(CHANGELOG)
+refresh:
+ cd $(DISTAR) && git pull || $(TRUE)
+ $(RM_F) $(FIRST_MAKEFILE)
+ $(REMAKE)
+END
+ map(sprintf(<<'END', "bump$_", ($_ || '$(V)')), @bump_targets),
+%s:
+ $(ABSPERLRUN) $(HELPERS)/bump-version --git $(VERSION) %s
+ $(RM_F) $(FIRST_MAKEFILE)
+ $(REMAKE)
+END
+ $include,
+ "\n",
+ );
+ }
+}
+
+1;
+__END__
+
+=head1 NAME
+
+Distar - Additions to ExtUtils::MakeMaker for dist authors
+
+=head1 SYNOPSIS
+
+F<Makefile.PL>:
+
+ use ExtUtils::MakeMaker;
+ (do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
+
+ WriteMakefile(...);
+
+F<maint/Makefile.PL.include>:
+
+ BEGIN { -e 'Distar' or system("git clone git://git.shadowcat.co.uk/p5sagit/Distar.git") }
+ use lib 'Distar/lib';
+ use Distar 0.001;
+
+ author 'A. U. Thor <author@cpan.org>';
+
+ manifest_include t => 'test-helper.pl';
+ manifest_include corpus => '.txt';
+
+make commmands:
+
+ $ perl Makefile.PL
+ $ make bump # bump version
+ $ make bump V=2.000000 # bump to specific version
+ $ make bumpminor # bump minor version component
+ $ make bumpmajor # bump major version component
+ $ make nextrelease # add version heading to Changes file
+ $ make releasetest # build dist and test (with xt/ and RELEASE_TESTING=1)
+ $ make preflight # check that repo and file state is release ready
+ $ make release # check releasetest and preflight, commits and tags,
+ # builds and uploads to CPAN, and pushes commits and
+ # tag
+ $ make release FAKE_RELEASE=1
+ # builds a release INCLUDING committing and tagging,
+ # but does not upload to cpan or push anything to git
+
+=head1 DESCRIPTION
+
+L<ExtUtils::MakeMaker> works well enough as development tool for
+builting and testing, but using it to release is annoying and error prone.
+Distar adds just enough to L<ExtUtils::MakeMaker> for it to be a usable dist
+author tool. This includes extra commands for releasing and safety checks, and
+automatic generation of some files. It doesn't require any non-core modules and
+is compatible with old versions of perl.
+
+=head1 FUNCTIONS
+
+=head2 author( $author )
+
+Set the author to include in generated META files. Can be a single entry, or
+an arrayref.
+
+=head2 manifest_include( $dir, $pattern )
+
+Add a pattern to include files in the MANIFEST file, and thus in the generated
+dist files.
+
+The pattern can be either a regex, or a path suffix. It will be applied to the
+full path past the directory specified.
+
+The default files that are always included are: F<.pm> and F<.pod> files in
+F<lib>, F<.t> files in F<t> and F<xt>, F<.pm> files in F<t/lib> and F<xt/lib>,
+F<Changes>, F<MANIFEST>, F<README>, F<LICENSE>, F<META.yml>, and F<.PL> files in
+the dist root, and all files in F<maint>.
+
+=head1 AUTOGENERATED FILES
+
+=over 4
+
+=item F<MANIFEST.SKIP>
+
+The F<MANIFEST.SKIP> will be automatically generated to exclude any files not
+explicitly allowed via C<manifest_include> or the included defaults. It will be
+created (or updated) at C<perl Makefile.PL> time.
+
+=item F<README>
+
+The F<README> file will be generated at dist generation time, inside the built
+dist. It will be generated using C<pod2text> on the main module.
+
+If a F<README> file exists in the repo, it will be used directly instead of
+generating the file.
+
+=back
+
+=head1 MAKE COMMMANDS
+
+=head2 test
+
+test will be adjusted to include F<xt/> tests by default. This will only apply
+for authors, not users installing from CPAN.
+
+=head2 release
+
+Releases the dist. Before releasing, checks will be done on the dist using the
+C<preflight> and C<releasetest> commands.
+
+Releasing will generate a dist tarball and upload it to CPAN using cpan-upload.
+It will also create a git tag for the release, and push the tag and branch.
+
+=head3 FAKE_RELEASE
+
+If release is run with FAKE_RELEASE=1 set, it will skip uploading to CPAN and
+pushing to git. A release commit will still be created and tagged locally.
+
+=head2 preflight
+
+Performs a number of checks on the files and repository, ensuring it is in a
+sane state to do a release. The checks are:
+
+=over 4
+
+=item * All version numbers match
+
+=item * The F<MANIFEST> file is up to date
+
+=item * The branch is correct
+
+=item * There is no existing tag for the version
+
+=item * There are no unmerged upstream changes
+
+=item * There are no outstanding local changes
+
+=item * There is an appropriate staged Changes heading
+
+=item * cpan-upload is available
+
+=back
+
+=head2 releasetest
+
+Test the dist preparing for a release. This generates a dist dir and runs the
+tests from inside it. This ensures all appropriate files are included inside
+the dist. C<RELEASE_TESTING> will be set in the environment.
+
+=head2 nextrelease
+
+Adds an appropriate changelog heading for the release, and prompts to stage the
+change.
+
+=head2 bump
+
+Bumps the version number. This will try to preserve the length and format of
+the version number. The least significant digit will be incremented. Versions
+with underscores will preserve the underscore in the same position.
+
+Optionally accepts a C<V> option to set the version to a specific value.
+
+The version changes will automatically be committed. Unstaged modifications to
+the files will be left untouched.
+
+=head3 V
+
+The V option will be passed along to the version bumping script. It can accept
+a space separated list of options, including an explicit version number.
+
+Options:
+
+=over 4
+
+=item --force
+
+Updates version numbers even if they do not match the current expected version
+number.
+
+=item --stable
+
+Attempts to convert the updated version to a stable version, removing any
+underscore.
+
+=item --alpha
+
+Attempts to convert the updated version to an alpha version, adding an
+underscore in an appropriate place.
+
+=back
+
+=head2 bumpminor
+
+Like bump, but increments the minor segment of the version. This will treat
+numeric versions as x.yyyzzz format, incrementing the yyy segment.
+
+=head2 bumpmajor
+
+Like bumpminor, but bumping the major segment.
+
+=head2 refresh
+
+Updates Distar and re-runs C<perl Makefile.PL>
+
+=head1 SUPPORT
+
+IRC: #web-simple on irc.perl.org
+
+Git repository: L<git://git.shadowcat.co.uk/p5sagit/Distar>
+
+Git browser: L<http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Distar.git;a=summary>
+
+=head1 AUTHOR
+
+mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
+
+=head1 CONTRIBUTORS
+
+haarg - Graham Knop (cpan:HAARG) <haarg@cpan.org>
+
+ether - Karen Etheridge (cpan:ETHER) <ether@cpan.org>
+
+frew - Arthur Axel "fREW" Schmidt (cpan:FREW) <frioux@gmail.com>
+
+Mithaldu - Christian Walde (cpan:MITHALDU) <walde.christian@googlemail.com>
+
+=head1 COPYRIGHT
+
+Copyright (c) 2011-2015 the Distar L</AUTHOR> and L</CONTRIBUTORS>
+as listed above.
+
+=head1 LICENSE
+
+This library is free software and may be distributed under the same terms
+as perl itself. See L<http://dev.perl.org/licenses/>.
+
+=cut
diff --git a/package.yml b/package.yml
new file mode 100644
--- /dev/null
+++ b/package.yml
@@ -0,0 +1,29 @@
+name : perl-cpan-changes
+version : 0.400002
+release : 1
+source :
+ - https://github.com/metacpan/CPAN-Changes/archive/v0.400002.tar.gz : 55845a0b8f1d5283b6311d8fb0aab8e423a098dca5e26fd3ee6d8e81049fa50a
+license : Artistic-1.0-Perl
+component : programming.perl
+summary : CPAN::Changes - Read and write Changes files
+description: |
+ It is standard practice to include a Changes file in your distribution.
+ The purpose the Changes file is to help a user figure out what has
+ changed since the last release.
+
+ People have devised many ways to write the Changes file. A preliminary
+ specification has been created (CPAN::Changes::Spec) to encourage module
+ authors to write clear and concise Changes.
+
+ This module will help users programmatically read and write Changes
+ files that conform to the specification.
+#builddeps :
+setup : |
+ # include distar.pm module needed for this to build.
+ mkdir -p $workdir/Distar/lib
+ cp $pkgfiles/Distar.pm $workdir/Distar/lib/Distar.pm
+ %perl_setup
+build : |
+ %perl_build
+install : |
+ %perl_install
\ No newline at end of file
diff --git a/pspec_x86_64.xml b/pspec_x86_64.xml
new file mode 100644
--- /dev/null
+++ b/pspec_x86_64.xml
@@ -0,0 +1,59 @@
+<PISI>
+ <Source>
+ <Name>perl-cpan-changes</Name>
+ <Packager>
+ <Name>Matthias Eliasson</Name>
+ <Email>matthias.eliasson@gmail.com</Email>
+ </Packager>
+ <License>Artistic-1.0-Perl</License>
+ <PartOf>programming.perl</PartOf>
+ <Summary xml:lang="en">CPAN::Changes - Read and write Changes files</Summary>
+ <Description xml:lang="en">It is standard practice to include a Changes file in your distribution.
+The purpose the Changes file is to help a user figure out what has
+changed since the last release.
+
+People have devised many ways to write the Changes file. A preliminary
+specification has been created (CPAN::Changes::Spec) to encourage module
+authors to write clear and concise Changes.
+
+This module will help users programmatically read and write Changes
+files that conform to the specification.
+</Description>
+ <Archive type="binary" sha1sum="79eb0752a961b8e0d15c77d298c97498fbc89c5a">https://solus-project.com/sources/README.Solus</Archive>
+ </Source>
+ <Package>
+ <Name>perl-cpan-changes</Name>
+ <Summary xml:lang="en">CPAN::Changes - Read and write Changes files</Summary>
+ <Description xml:lang="en">It is standard practice to include a Changes file in your distribution.
+The purpose the Changes file is to help a user figure out what has
+changed since the last release.
+
+People have devised many ways to write the Changes file. A preliminary
+specification has been created (CPAN::Changes::Spec) to encourage module
+authors to write clear and concise Changes.
+
+This module will help users programmatically read and write Changes
+files that conform to the specification.
+</Description>
+ <PartOf>programming.perl</PartOf>
+ <Files>
+ <Path fileType="executable">/usr/bin</Path>
+ <Path fileType="library">/usr/lib/perl5/vendor_perl/5.24.1/CPAN/Changes.pm</Path>
+ <Path fileType="library">/usr/lib/perl5/vendor_perl/5.24.1/CPAN/Changes/Group.pm</Path>
+ <Path fileType="library">/usr/lib/perl5/vendor_perl/5.24.1/CPAN/Changes/Release.pm</Path>
+ <Path fileType="library">/usr/lib/perl5/vendor_perl/5.24.1/CPAN/Changes/Spec.pod</Path>
+ <Path fileType="library">/usr/lib/perl5/vendor_perl/5.24.1/Test/CPAN/Changes.pm</Path>
+ <Path fileType="library">/usr/lib/perl5/vendor_perl/5.24.1/x86_64-linux-thread-multi/auto/CPAN/Changes/.packlist</Path>
+ <Path fileType="man">/usr/share/man</Path>
+ </Files>
+ </Package>
+ <History>
+ <Update release="1">
+ <Date>2017-06-18</Date>
+ <Version>0.400002</Version>
+ <Comment>Packaging update</Comment>
+ <Name>Matthias Eliasson</Name>
+ <Email>matthias.eliasson@gmail.com</Email>
+ </Update>
+ </History>
+</PISI>
\ No newline at end of file
File Metadata
Details
Attached
Mime Type
text/plain
Expires
May 28 2023, 6:25 AM (10 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5806592
Default Alt Text
D425.diff (17 KB)
Attached To
Mode
D425: Initial commit of perl-cpan-changes
Attached
Detach File
Event Timeline
Log In to Comment