Hello community,

here is the log from the commit of package perl-Tie-Cycle for openSUSE:Factory 
checked in at 2017-02-16 16:48:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Tie-Cycle (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Tie-Cycle.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Tie-Cycle"

Changes:
--------
--- /work/SRC/openSUSE:Factory/perl-Tie-Cycle/perl-Tie-Cycle.changes    
2016-02-18 12:35:23.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Tie-Cycle.new/perl-Tie-Cycle.changes       
2017-02-16 16:48:18.954154819 +0100
@@ -1,0 +2,10 @@
+Tue Feb 14 07:51:13 UTC 2017 - [email protected]
+
+- updated to 1.222
+   see /usr/share/doc/packages/perl-Tie-Cycle/Changes
+
+  1.222 2017-01-20T11:30:37Z
+       * The module seems to have disappeared from CPAN, so I'm
+       re-uploading.
+
+-------------------------------------------------------------------

Old:
----
  Tie-Cycle-1.221.tar.gz

New:
----
  Tie-Cycle-1.222.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Tie-Cycle.spec ++++++
--- /var/tmp/diff_new_pack.QlD7We/_old  2017-02-16 16:48:19.366096325 +0100
+++ /var/tmp/diff_new_pack.QlD7We/_new  2017-02-16 16:48:19.366096325 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Tie-Cycle
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:           perl-Tie-Cycle
-Version:        1.221
+Version:        1.222
 Release:        0
 %define cpan_name Tie-Cycle
 Summary:        Cycle through a list of values via a scalar
 License:        Artistic-1.0 or GPL-1.0+
 Group:          Development/Libraries/Perl
 Url:            http://search.cpan.org/dist/Tie-Cycle/
-Source0:        
http://www.cpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{version}.tar.gz
+Source0:        
https://cpan.metacpan.org/authors/id/B/BD/BDFOY/%{cpan_name}-%{version}.tar.gz
 Source1:        cpanspec.yml
 BuildArch:      noarch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
@@ -67,6 +67,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes examples LICENSE
+%doc Changes CONTRIBUTING.md examples
+%license LICENSE
 
 %changelog

++++++ Tie-Cycle-1.221.tar.gz -> Tie-Cycle-1.222.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.221/CONTRIBUTING.md 
new/Tie-Cycle-1.222/CONTRIBUTING.md
--- old/Tie-Cycle-1.221/CONTRIBUTING.md 1970-01-01 01:00:00.000000000 +0100
+++ new/Tie-Cycle-1.222/CONTRIBUTING.md 2017-01-20 12:30:58.000000000 +0100
@@ -0,0 +1,68 @@
+# Contributing to Tie::Cycle
+
+<a name="pull-requests"></a>
+## Pull requests
+
+Good pull requests - patches, improvements, new features - are a fantastic
+help. They should remain focused in scope and avoid containing unrelated
+commits.
+
+**Please ask first** before embarking on any significant pull request (e.g.
+implementing features, refactoring code, porting to a different language),
+otherwise you risk spending a lot of time working on something that the
+project's developers might not want to merge into the project.
+
+Please adhere to the coding conventions used throughout a project (indentation,
+accurate comments, etc.) and any other requirements (such as test coverage).
+
+Follow this process if you'd like your work considered for inclusion in the
+project:
+
+1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork,
+   and configure the remotes:
+
+   ```bash
+   # Clone your fork of the repo into the current directory
+   git clone https://github.com/<your-username>/<repo-name>
+   # Navigate to the newly cloned directory
+   cd <repo-name>
+   # Assign the original repo to a remote called "upstream"
+   git remote add upstream https://github.com/<upstream-owner>/<repo-name>
+   ```
+
+2. If you cloned a while ago, get the latest changes from upstream:
+
+   ```bash
+   git checkout <dev-branch>
+   git pull upstream <dev-branch>
+   ```
+
+3. Create a new topic branch (off the main project development branch) to
+   contain your feature, change, or fix:
+
+   ```bash
+   git checkout -b <topic-branch-name>
+   ```
+
+4. Commit your changes in logical chunks. Please make you git commit message 
detailed and specific
+   or your code is unlikely be merged into the main project. Use Git's
+   [interactive rebase](https://help.github.com/articles/interactive-rebase)
+   feature to tidy up your commits before making them public.
+
+5. Locally merge (or rebase) the upstream development branch into your topic 
branch:
+
+   ```bash
+   git pull [--rebase] upstream <dev-branch>
+   ```
+
+6. Push your topic branch up to your fork:
+
+   ```bash
+   git push origin <topic-branch-name>
+   ```
+
+7. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
+    with a clear title and description.
+
+**IMPORTANT**: By submitting a patch, you agree to allow the project owner to
+license your work under the same license as that used by the project.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.221/Changes new/Tie-Cycle-1.222/Changes
--- old/Tie-Cycle-1.221/Changes 2016-02-02 22:18:10.000000000 +0100
+++ new/Tie-Cycle-1.222/Changes 2017-01-20 12:30:58.000000000 +0100
@@ -1,5 +1,9 @@
 Revision history for Perl module Tie::Cycle
 
+1.222 2017-01-20T11:30:37Z
+       * The module seems to have disappeared from CPAN, so I'm
+       re-uploading.
+
 1.221 2016-02-02T21:17:53Z
        * Freshen distro
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.221/MANIFEST new/Tie-Cycle-1.222/MANIFEST
--- old/Tie-Cycle-1.221/MANIFEST        2016-02-02 22:18:18.000000000 +0100
+++ new/Tie-Cycle-1.222/MANIFEST        2017-01-20 12:31:01.000000000 +0100
@@ -1,4 +1,5 @@
 Changes
+CONTRIBUTING.md
 examples/README
 INSTALL.SKIP
 lib/Tie/Cycle.pm
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.221/META.json 
new/Tie-Cycle-1.222/META.json
--- old/Tie-Cycle-1.221/META.json       2016-02-02 22:18:18.000000000 +0100
+++ new/Tie-Cycle-1.222/META.json       2017-01-20 12:31:01.000000000 +0100
@@ -4,7 +4,7 @@
       "brian d foy <[email protected]>"
    ],
    "dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter 
version 2.140640",
+   "generated_by" : "ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter 
version 2.150005",
    "license" : [
       "perl_5"
    ],
@@ -53,5 +53,6 @@
          "web" : "https://github.com/briandfoy/tie-cycle";
       }
    },
-   "version" : "1.221"
+   "version" : "1.222",
+   "x_serialization_backend" : "JSON::PP version 2.27300"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.221/META.yml new/Tie-Cycle-1.222/META.yml
--- old/Tie-Cycle-1.221/META.yml        2016-02-02 22:18:16.000000000 +0100
+++ new/Tie-Cycle-1.222/META.yml        2017-01-20 12:31:01.000000000 +0100
@@ -8,7 +8,7 @@
   ExtUtils::MakeMaker: '6.64'
   File::Spec::Functions: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.04, CPAN::Meta::Converter version 
2.140640'
+generated_by: 'ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter 
version 2.150005'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -25,4 +25,5 @@
   bugtracker: https://github.com/briandfoy/tie-cycle/issues
   homepage: https://github.com/briandfoy/tie-cycle
   repository: https://github.com/briandfoy/tie-cycle.git
-version: '1.221'
+version: '1.222'
+x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Tie-Cycle-1.221/lib/Tie/Cycle.pm 
new/Tie-Cycle-1.222/lib/Tie/Cycle.pm
--- old/Tie-Cycle-1.221/lib/Tie/Cycle.pm        2016-02-02 22:18:10.000000000 
+0100
+++ new/Tie-Cycle-1.222/lib/Tie/Cycle.pm        2017-01-20 12:30:58.000000000 
+0100
@@ -1,7 +1,7 @@
 package Tie::Cycle;
 use strict;
 
-our $VERSION = '1.221';
+our $VERSION = '1.222';
 
 use Carp qw(carp);
 
@@ -147,7 +147,7 @@
 
 =head1 COPYRIGHT AND LICENSE
 
-Copyright © 2000-2015, brian d foy <[email protected]>. All rights reserved.
+Copyright © 2000-2017, brian d foy <[email protected]>. All rights reserved.
 This software is available under the same terms as perl.
 
 =cut


Reply via email to