Hello community, here is the log from the commit of package linuxrc-devtools for openSUSE:Factory checked in at 2016-11-24 21:25:13 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/linuxrc-devtools (Old) and /work/SRC/openSUSE:Factory/.linuxrc-devtools.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "linuxrc-devtools" Changes: -------- --- /work/SRC/openSUSE:Factory/linuxrc-devtools/linuxrc-devtools.changes 2015-10-08 08:25:06.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.linuxrc-devtools.new/linuxrc-devtools.changes 2016-11-24 21:25:14.000000000 +0100 @@ -1,0 +2,7 @@ +Wed Nov 23 14:18:56 UTC 2016 - [email protected] + +- merge pr gh#openSUSE/linuxrc-devtools#7 +- auto-add github pull request tag to changelog +- 0.6 + +------------------------------------------------------------------- Old: ---- linuxrc-devtools-0.5.tar.xz New: ---- linuxrc-devtools-0.6.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ linuxrc-devtools.spec ++++++ --- /var/tmp/diff_new_pack.dllqIV/_old 2016-11-24 21:25:15.000000000 +0100 +++ /var/tmp/diff_new_pack.dllqIV/_new 2016-11-24 21:25:15.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package linuxrc-devtools # -# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2016 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 @@ -17,7 +17,7 @@ Name: linuxrc-devtools -Version: 0.5 +Version: 0.6 Release: 0 Source: %{name}-%{version}.tar.xz ++++++ linuxrc-devtools-0.5.tar.xz -> linuxrc-devtools-0.6.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-devtools-0.5/VERSION new/linuxrc-devtools-0.6/VERSION --- old/linuxrc-devtools-0.5/VERSION 2015-09-29 12:59:40.000000000 +0200 +++ new/linuxrc-devtools-0.6/VERSION 2016-11-23 15:15:59.000000000 +0100 @@ -1 +1 @@ -0.5 +0.6 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-devtools-0.5/changelog new/linuxrc-devtools-0.6/changelog --- old/linuxrc-devtools-0.5/changelog 2015-09-29 12:59:40.000000000 +0200 +++ new/linuxrc-devtools-0.6/changelog 2016-11-23 15:15:59.000000000 +0100 @@ -1,12 +1,22 @@ +2016-11-23: 0.6 + - merge pr gh#openSUSE/linuxrc-devtools#7 + - auto-add github pull request tag to changelog + 2015-09-29: 0.5 + - merge pr gh#openSUSE/linuxrc-devtools#6 - 'make clean' deletes *~ files and package/ directory 2015-09-29: 0.4 + - merge pr gh#openSUSE/linuxrc-devtools#5 - Add information about linuxrc-devtools OBS project 2015-09-28: 0.3 + - merge pr gh#openSUSE/linuxrc-devtools#4 - Add documentation about submission to OBS (through Jenkins) + - merge pr gh#openSUSE/linuxrc-devtools#3 - adjust submit script to deal with obs not accepting empty requests + - merge pr gh#openSUSE/linuxrc-devtools#2 + - merge pr gh#openSUSE/linuxrc-devtools#1 - Convert README to markdown - Escaped a quote to fix Emacs highlighting. - A Makefile for making an RPM of this. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/linuxrc-devtools-0.5/git2log new/linuxrc-devtools-0.6/git2log --- old/linuxrc-devtools-0.5/git2log 2015-09-29 12:59:40.000000000 +0200 +++ new/linuxrc-devtools-0.6/git2log 2016-11-23 15:15:59.000000000 +0100 @@ -31,6 +31,7 @@ my $branch; my $current_version; +my $github_project; my @tags; my @all_tags; @@ -65,6 +66,10 @@ exit 0 if $ok; } +if(`git config remote.origin.url` =~ m#github.com[:/]+(\S+/\S+)#) { + $github_project = $1; +} + @all_tags = `git tag`; chomp @all_tags; @@ -156,6 +161,9 @@ $merge = 1 if /^Merge: /; $merge = 0 if /^commit /; push @t2, $_ if !$merge; + if(/^ Merge pull request #(\d+) from /) { + push @t2, "merge pr gh#$github_project#$1\n" if $github_project; + } } @t = @t2;
