Hello community,

here is the log from the commit of package osc-source_validator for 
openSUSE:11.3
checked in at Mon Jul 11 16:44:18 CEST 2011.



--------
New Changes file:

--- /dev/null   2010-08-26 16:28:41.000000000 +0200
+++ 11.3/osc-source_validator/osc-source_validator.changes      2011-07-01 
17:12:49.000000000 +0200
@@ -0,0 +1,119 @@
+-------------------------------------------------------------------
+Fri Jul  1 17:12:32 CEST 2011 - [email protected]
+
+- prevent dupes for Release and Version along with Name
+
+-------------------------------------------------------------------
+Mon May 30 11:53:53 CEST 2011 - [email protected]
+
+- fix bug with "Patch" in comments 
+
+-------------------------------------------------------------------
+Mon May  9 13:47:29 UTC 2011 - [email protected]
+
+- try to fix bnc#679980 
+
+-------------------------------------------------------------------
+Wed Apr 20 17:30:19 CEST 2011 - [email protected]
+
+- find another form of commenting out patches
+  in check_patches_applied 
+
+-------------------------------------------------------------------
+Mon Apr 18 01:06:59 CEST 2011 - [email protected]
+
+- Also check if files are tracked by osc
+- catch some more syntax variants in check_patches_applied
+- do tracked-check only in osc mode
+
+-------------------------------------------------------------------
+Tue Apr 12 16:40:58 CEST 2011 - [email protected]
+
+- activate the patches_applied check for real,
+  errors out if errors found 
+
+-------------------------------------------------------------------
+Mon Apr  4 13:15:11 CEST 2011 - [email protected]
+
+- add debian special files
+
+-------------------------------------------------------------------
+Wed Mar 30 12:38:16 CEST 2011 - [email protected]
+
+- add colors to output of check_patches_applied
+  but no colors for batchmode
+
+-------------------------------------------------------------------
+Fri Feb 18 11:39:29 UTC 2011 - [email protected]
+
+- retry broken sr#59008
+- added another set of runtime-fixes.diff
+  * accept .orig and ~ files in working directories.
+  * UI consistency improved.
+
+-------------------------------------------------------------------
+Sat Feb 12 11:10:42 UTC 2011 - [email protected]
+
+- 50-spec-version: show warning only once per specfile 
+
+-------------------------------------------------------------------
+Thu Jan 13 14:29:54 CET 2011 - [email protected]
+
+- move COPYING file to docdir (prevent permission denied trying
+  to execute it as a checkscript) 
+
+-------------------------------------------------------------------
+Thu Jan 13 12:52:36 CET 2011 - [email protected]
+
+- switch source to git (gitorious/opensuse)
+- convert_changes_to_rpm_changelog make regex a little stricter
+  looking for date line
+- 20-files-present-and-referenced add %rubygems_requires to
+  prunelist
+- add some helper files to create tar and changes
+- stale-changes: do not fail if there is no specfile present at all
+- stale-changes: allow extra changes files if listed as source in a
+  spec
+
+-------------------------------------------------------------------
+Tue Jan  4 16:09:56 CET 2011 - [email protected]
+
+- add Url pointing to wiki to spec file
+
+-------------------------------------------------------------------
+Tue Jan  4 16:07:42 CET 2011 - [email protected]
+
+- cleanup spec file using spec-cleaner
+
+-------------------------------------------------------------------
+Tue Jan  4 16:05:39 CET 2011 - [email protected]
+
+- create 0.1 tarball with incorporated patch and added license file
+- adjust spec file for above changes
+
+-------------------------------------------------------------------
+Mon Oct  4 07:32:21 UTC 2010 - [email protected]
+
+- do not complain about files starting with underscore, they are
+  OBS special files in any case
+
+-------------------------------------------------------------------
+Sat May 22 06:38:35 UTC 2010 - [email protected]
+
+- add some modification to survive some more examples
+
+-------------------------------------------------------------------
+Thu May 20 18:11:38 CEST 2010 - [email protected]
+
+- make the files executable 
+
+-------------------------------------------------------------------
+Thu May 20 17:40:29 CEST 2010 - [email protected]
+
+- fill with some content 
+
+-------------------------------------------------------------------
+Thu May 20 05:56:47 UTC 2010 - [email protected]
+
+- initial package, no code yet, always succeeding
+

calling whatdependson for 11.3-i586


New:
----
  get_source.sh
  osc-source_validator-0.1.tar.bz2
  osc-source_validator.changes
  osc-source_validator.spec

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

Other differences:
------------------
++++++ osc-source_validator.spec ++++++
#
# spec file for package osc-source_validator
#
# Copyright (c) 2011 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#



Name:           osc-source_validator
Version:        0.1
Release:        19.<RELEASE2>
License:        GPLv2+
Summary:        osc source validator
Url:            
http://en.opensuse.org/openSUSE:Build_Service_Tools#OSC_source_validator
Group:          Development/Tools/Building
Source:         %{name}-%{version}.tar.bz2
Source1:        get_source.sh
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildArch:      noarch

%description
osc is checking valid sources on pre-checkin via this package

%prep
%setup -q -n %{name}-%{version}

%build

%install
mkdir -p %{buildroot}%{_prefix}/lib/osc/source_validators
cp -a [0-9]* helpers %{buildroot}%{_prefix}/lib/osc/source_validators

%files
%defattr(-,root,root)
%doc COPYING
%{_prefix}/lib/osc

%changelog
++++++ get_source.sh ++++++
#!/bin/bash

rm -rf osc-source_validator
mkdir osc-source_validator
for i in /work/cd/lib/source_validators/* ; do
   test -f $i || continue
   case $i in *abuild*) continue ;; esac
   sed -e "s@/work/cd/lib@/usr/lib/osc@" $i > osc-source_validator/`basename $i`
   chmod 755 osc-source_validator/`basename $i`
done
mkdir osc-source_validator/helpers
for i in /work/cd/lib/source_validators/helpers/* ; do
   test -f $i || continue
   sed -e "s@/work/cd/lib@/usr/lib/osc@" -e 
"s@/work/src/bin/tools/release_2_pdb_release@echo@" -e 
"s@/work/abuild/lib/abuild/modules@/usr/lib/build@" -e "s@use dateparse@use 
Date::Parse@" -e "s@use timezone@use Time::Zone@" $i > 
osc-source_validator/helpers/`basename $i`
   chmod 755 osc-source_validator/helpers/`basename $i`
done
rm -rf t
mkdir t
cd t
tar xjfp ../osc-source_validator.tar.bz2
cd ..
diff -urN t/osc-source_validator osc-source_validator
rm -rf t
tar cjfp osc-source_validator.tar.bz2 osc-source_validator


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



Remember to have fun...

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to