Hello community,

here is the log from the commit of package icmake for openSUSE:Factory checked 
in at 2013-01-12 07:47:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/icmake (Old)
 and      /work/SRC/openSUSE:Factory/.icmake.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "icmake", Maintainer is "[email protected]"

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

--- /dev/null   2013-01-09 19:40:42.352580873 +0100
+++ /work/SRC/openSUSE:Factory/.icmake.new/icmake.changes       2013-01-12 
07:47:19.000000000 +0100
@@ -0,0 +1,15 @@
+-------------------------------------------------------------------
+Thu Jan  3 10:05:42 UTC 2013 - [email protected]
+
+- Clarified license with author: GPL-3.0 (bnc#795979)
+
+-------------------------------------------------------------------
+Wed Dec 12 14:42:55 UTC 2012 - [email protected]
+
+- Fix doc path for RedHat/CentOS
+
+-------------------------------------------------------------------
+Wed Dec 12 09:18:09 UTC 2012 - [email protected]
+
+- Initial version 7.19.00
+

New:
----
  adapt-examples-path.patch
  icmake.changes
  icmake.spec
  icmake_7.19.00.orig.tar.gz
  prevent-double-slash.patch

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

Other differences:
------------------
++++++ icmake.spec ++++++
#
# spec file for package icmake
#
# Copyright (c) 2012 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:           icmake
BuildRequires:  bison
BuildRequires:  flex
Version:        7.19.00
Release:        0
Summary:        A program maintenance (make) utility using a C-like grammar
License:        GPL-3.0
Group:          Development/Tools/Building
Url:            http://icmake.sourceforge.net/
Source:         %{name}_%{version}.orig.tar.gz
Patch:          adapt-examples-path.patch
Patch1:         prevent-double-slash.patch
BuildRoot:      %{_tmppath}/%{name}-%{version}-build
Provides:       %{_bindir}/%{name}

%description
Icmake allows the programmer to use a program language (closely
resembling the well-known C-programming language) to define the
actions involved in (complex) program maintenance. For this, icmake
offers various special operators as well as a set of support functions
that have proven to be useful in program maintenance.

%prep
%setup -q
%patch -p1
%patch1 -p1

%build
echo "/* created during rpmbuild */" > INSTALL.im
echo "#define BINDIR      \"%{_bindir}\"" >> INSTALL.im
echo "#define SKELDIR     \"%{_datadir}/%{name}\"" >> INSTALL.im
echo "#define MANDIR      \"%{_mandir}\"" >> INSTALL.im
echo "#define LIBDIR      \"%{_libdir}/%{name}\"" >> INSTALL.im
echo "#define CONFDIR     \"%{_sysconfdir}/%{name}\"" >> INSTALL.im
%if 0%{?suse_version}
echo "#define DOCDIR      \"%{_docdir}/%{name}\"" >> INSTALL.im
echo "#define DOCDOCDIR   \"%{_docdir}/%{name}\"" >> INSTALL.im
%else
echo "#define DOCDIR      \"%{_docdir}/%{name}-%{version}\"" >> INSTALL.im
echo "#define DOCDOCDIR   \"%{_docdir}/%{name}-%{version}\"" >> INSTALL.im
%endif

./icm_bootstrap ""


%install
./icm_install strip all %{buildroot}


%clean
[ -d %{buildroot} -a "%{buildroot}" != "" ] && rm -rf  %{buildroot}

%files
%defattr(-,root,root)

%{_bindir}/*
%dir %{_datadir}/%{name}
%{_datadir}/%{name}/*

%dir %{_libdir}/%{name}
%{_libdir}/%{name}/*
%dir %{_sysconfdir}/%{name}
%config %{_sysconfdir}/%{name}/*
%doc changelog

%doc %{_mandir}/man1/*
%doc %{_mandir}/man7/*

%changelog
++++++ adapt-examples-path.patch ++++++
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x 
autom4te.cache -x .deps -x .libs -x Makefile -x Makefile.in 
../orig-icmake-7.19.00/examples/bup ./examples/bup
--- ../orig-icmake-7.19.00/examples/bup 2012-02-22 11:07:32.000000000 +0100
+++ ./examples/bup      2012-12-12 10:33:00.638168292 +0100
@@ -1,4 +1,4 @@
-#!/usr/local/bin/icmake -qi
+#!/usr/bin/icmake -qi
 
 #define ETCDIR         "/usr/local/etc"
 
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x 
autom4te.cache -x .deps -x .libs -x Makefile -x Makefile.in 
../orig-icmake-7.19.00/examples/idir ./examples/idir
--- ../orig-icmake-7.19.00/examples/idir        2012-02-22 11:07:32.000000000 
+0100
+++ ./examples/idir     2012-12-12 10:33:04.006303885 +0100
@@ -1,4 +1,4 @@
-#!/usr/local/bin/icmake -qi
+#!/usr/bin/icmake -qi
 
 /*
     Example of the Icmake 'stat()' function. This simple makefile prints
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x 
autom4te.cache -x .deps -x .libs -x Makefile -x Makefile.in 
../orig-icmake-7.19.00/examples/killprog ./examples/killprog
--- ../orig-icmake-7.19.00/examples/killprog    2012-02-22 11:07:32.000000000 
+0100
+++ ./examples/killprog 2012-12-12 10:33:06.982423701 +0100
@@ -1,4 +1,4 @@
-#!/usr/local/bin/icmake -qi
+#!/usr/bin/icmake -qi
 
 /*
     Sample Icmake script. Kills programs; you can type 'killprog progname'
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x 
autom4te.cache -x .deps -x .libs -x Makefile -x Makefile.in 
../orig-icmake-7.19.00/examples/tolower ./examples/tolower
--- ../orig-icmake-7.19.00/examples/tolower     2012-02-22 11:07:32.000000000 
+0100
+++ ./examples/tolower  2012-12-12 10:33:10.066547864 +0100
@@ -1,4 +1,4 @@
-#!/usr/local/bin/icmake -qi
+#!/usr/bin/icmake -qi
 
 /*
     tolower: Icmake script to rename files to lower case. 
++++++ prevent-double-slash.patch ++++++
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x 
autom4te.cache -x .deps -x .libs -x Makefile -x Makefile.in 
../orig-icmake-7.19.00/icm_prepare ./icm_prepare
--- ../orig-icmake-7.19.00/icm_prepare  2012-09-07 09:43:56.000000000 +0200
+++ ./icm_prepare       2012-12-12 10:46:06.729771756 +0100
@@ -11,7 +11,7 @@
 try mkdir -p tmp
 
 echo    Writing tmp/ROOT
-echo "ROOT=$1/" > tmp/ROOT
+echo "ROOT=$1" > tmp/ROOT
  
 . scripts/conversions
 
diff -wruN -x '*~' -x '*.o' -x '*.a' -x '*.so' -x '*.so.[0-9]' -x 
autom4te.cache -x .deps -x .libs -x Makefile -x Makefile.in 
../orig-icmake-7.19.00/scripts/conversions ./scripts/conversions
--- ../orig-icmake-7.19.00/scripts/conversions  2012-02-22 11:07:32.000000000 
+0100
+++ ./scripts/conversions       2012-12-12 10:45:15.591716676 +0100
@@ -3,7 +3,7 @@
 . VERSION
 . tmp/ROOT
 
-ROOT=`echo ${ROOT}/ | sed 's,//,/,g' | sed 's,//,/,g'`
+ROOT=`echo ${ROOT} | sed 's,//,/,g' | sed 's,//,/,g'`
 
 EXTENSION=`grep '^#' $CONFIG | grep "#define[[:space:]]\+EXTENSION" | \
             sed 's,.*EXTENSION[[:space:]]\+\"\([^"]*\)".*,'${ROOT}'\1,'`
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to