Hello community,
here is the log from the commit of package obs-service-source_validator for
openSUSE:Factory checked in at 2015-07-21 13:26:16
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/obs-service-source_validator (Old)
and /work/SRC/openSUSE:Factory/.obs-service-source_validator.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "obs-service-source_validator"
Changes:
--------
---
/work/SRC/openSUSE:Factory/obs-service-source_validator/obs-service-source_validator.changes
2015-06-12 20:29:36.000000000 +0200
+++
/work/SRC/openSUSE:Factory/.obs-service-source_validator.new/obs-service-source_validator.changes
2015-07-21 13:26:17.000000000 +0200
@@ -1,0 +2,9 @@
+Wed Jun 24 15:36:20 UTC 2015 - [email protected]
+
+- Add debian.dsc
+- Use install target from Makefile
+- Update to version 0.5+git20150622.3c3fa65:
+ + Add install target to Makefile
+ + Debianization
+
+-------------------------------------------------------------------
Old:
----
obs-service-source_validator-0.5+git20150611.b85a5d4.tar.bz2
New:
----
debian.dsc
obs-service-source_validator-0.5+git20150622.3c3fa65.tar.bz2
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ obs-service-source_validator.spec ++++++
--- /var/tmp/diff_new_pack.lwS18v/_old 2015-07-21 13:26:18.000000000 +0200
+++ /var/tmp/diff_new_pack.lwS18v/_new 2015-07-21 13:26:18.000000000 +0200
@@ -20,7 +20,7 @@
Summary: An OBS source service: running all the osc source-validator
checks
License: GPL-2.0+
Group: Development/Tools/Building
-Version: 0.5+git20150611.b85a5d4
+Version: 0.5+git20150622.3c3fa65
Release: 0
# use osc service dr to update
Source: %{name}-%{version}.tar.bz2
@@ -53,10 +53,7 @@
%build
%install
-mkdir -p $RPM_BUILD_ROOT%{_prefix}/lib/obs/service/source_validators/
-install -m 0755 source_validator $RPM_BUILD_ROOT%{_prefix}/lib/obs/service
-install -m 0644 source_validator.service
$RPM_BUILD_ROOT%{_prefix}/lib/obs/service
-cp -a [0-9]* helpers %{buildroot}%{_prefix}/lib/obs/service/source_validators
+%makeinstall
%files
%defattr(-,root,root)
++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.lwS18v/_old 2015-07-21 13:26:18.000000000 +0200
+++ /var/tmp/diff_new_pack.lwS18v/_new 2015-07-21 13:26:18.000000000 +0200
@@ -1,4 +1,4 @@
<servicedata>
<service name="tar_scm">
<param
name="url">git://github.com/openSUSE/obs-service-source_validator.git</param>
- <param
name="changesrevision">b85a5d4b92edd871e77b4af202967ee6290e6d88</param></service></servicedata>
\ No newline at end of file
+ <param
name="changesrevision">3c3fa650e956cedce7c1852c4bfad69b11d802c3</param></service></servicedata>
\ No newline at end of file
++++++ debian.dsc ++++++
Format: 1.0
Source: obs-service-source-validator
Version: 0.5+git20150622.3c3fa65
Binary: obs-service-source-validator
Maintainer: Hib Eris <[email protected]>
Architecture: all
Standards-Version: 3.9.6
Build-Depends: debhelper (>= 7)
++++++ obs-service-source_validator-0.5+git20150611.b85a5d4.tar.bz2 ->
obs-service-source_validator-0.5+git20150622.3c3fa65.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/obs-service-source_validator-0.5+git20150611.b85a5d4/Makefile
new/obs-service-source_validator-0.5+git20150622.3c3fa65/Makefile
--- old/obs-service-source_validator-0.5+git20150611.b85a5d4/Makefile
2015-06-11 10:58:17.000000000 +0200
+++ new/obs-service-source_validator-0.5+git20150622.3c3fa65/Makefile
2015-06-24 17:36:19.000000000 +0200
@@ -1,8 +1,21 @@
PRJ=openSUSE:Tools
PKG=obs-service-source_validator
+prefix = /usr
+
+servicedir = ${prefix}/lib/obs/service
+
all:
+install:
+ install -d $(DESTDIR)$(servicedir)
+ install -m 0755 source_validator $(DESTDIR)$(servicedir)
+ install -m 0644 source_validator.service $(DESTDIR)$(servicedir)
+ install -d $(DESTDIR)$(servicedir)/source_validators
+ install -m 0755 [0-9]* $(DESTDIR)$(servicedir)/source_validators
+ install -d $(DESTDIR)$(servicedir)/source_validators/helpers
+ install -m 0755 helpers/*
$(DESTDIR)$(servicedir)/source_validators/helpers
+
package:
@if test -d $(PKG); then cd $(PKG) && osc up && cd -; else osc co -c
$(PRJ) $(PKG); fi
@./mkchanges | tee $(PKG)/.changes
@@ -12,4 +25,4 @@
@./mktar
@mv *bz2 $(PKG)
-.PHONY: all package
+.PHONY: all install package
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/changelog
new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/changelog
--- old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/changelog
1970-01-01 01:00:00.000000000 +0100
+++ new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/changelog
2015-06-24 17:36:19.000000000 +0200
@@ -0,0 +1,5 @@
+obs-service-source-validator (0.0) stable; urgency=medium
+
+ * Initial release.
+
+ -- Hib Eris <[email protected]> Sun, 07 Jun 2015 15:20:41 +0200
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/compat
new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/compat
--- old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/compat
1970-01-01 01:00:00.000000000 +0100
+++ new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/compat
2015-06-24 17:36:19.000000000 +0200
@@ -0,0 +1 @@
+9
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/control
new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/control
--- old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/control
1970-01-01 01:00:00.000000000 +0100
+++ new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/control
2015-06-24 17:36:19.000000000 +0200
@@ -0,0 +1,16 @@
+Source: obs-service-source-validator
+Maintainer: Hib Eris <[email protected]>
+Section: devel
+Priority: extra
+Build-Depends: debhelper (>= 7)
+Standards-Version: 3.9.6
+Homepage: https://github.com/openSUSE/obs-service-source_validator
+
+Package: obs-service-source-validator
+Architecture: all
+Description: An OBS source service: running all the osc source-validator checks
+ This is a source service for openSUSE Build Service.
+ .
+ This service runs all checks as required by openSUSE:Factory project. This
can be used
+ to guarantee that all checks succeed also on the service side. This plugin
can be
+ used via project wide defined services.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/copyright
new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/copyright
--- old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/copyright
1970-01-01 01:00:00.000000000 +0100
+++ new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/copyright
2015-06-24 17:36:19.000000000 +0200
@@ -0,0 +1,45 @@
+Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Upstream-Name: obs-service-source_validator
+Source: https://github.com/openSUSE/obs-service-source_validator
+License: GPL-2.0+
+
+Files: *
+Copyright: 2012, Adam Spiers <[email protected]>
+ 2010, 2011, 2013, 2015, Adrian Schröter <[email protected]>
+ 2011, Alexander D. Kanevskiy <[email protected]>
+ 2013, 2014, 2015, Dirk Mueller <[email protected]>
+ 2011, Dirk Mueller <[email protected]>
+ 2014, 2015, Dominique Leuenberger <[email protected]>
+ 2015, Hib Eris <[email protected]>
+ 2015, Kristoffer Grönlund <[email protected]>
+ 2014, 2015, Ludwig Nussel <[email protected]>
+ 2013, 2014, Marcus Meissner <[email protected]>
+ 2014, Michael Schroeder <[email protected]>
+ 2011, Michal Marek <[email protected]>
+ 2011, 2012, 2013, 2014, 2015, Ruediger Oertel <[email protected]>
+ 2014, Sascha Peilicke <[email protected]>
+ 2012, Sascha Peilicke <[email protected]>
+ 2014, Stephan Kulow <[email protected]>
+ 2014, Stephan Kulow <[email protected]>
+ 2011, Unknown <[email protected]>
+ 2011, Unknown <[email protected]>
+ 2010, Various <[email protected]>
+ 2014, Vitezslav Cizek <[email protected]>
+License: GPL-2.0+
+
+License: GPL-2.0+
+ This package is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+ .
+ This package is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+ .
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 2 can be found in "/usr/share/common-licenses/GPL-2".
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/rules
new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/rules
--- old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/rules
1970-01-01 01:00:00.000000000 +0100
+++ new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/rules
2015-06-24 17:36:19.000000000 +0200
@@ -0,0 +1,7 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+#
+export DH_VERBOSE=1
+
+%:
+ dh $@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/source/format
new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/source/format
---
old/obs-service-source_validator-0.5+git20150611.b85a5d4/debian/source/format
1970-01-01 01:00:00.000000000 +0100
+++
new/obs-service-source_validator-0.5+git20150622.3c3fa65/debian/source/format
2015-06-24 17:36:19.000000000 +0200
@@ -0,0 +1 @@
+3.0 (native)