commit ucpp for openSUSE:Factory

2018-08-02 Thread root
Hello community,

here is the log from the commit of package ucpp for openSUSE:Factory checked in 
at 2018-08-02 14:54:39

Comparing /work/SRC/openSUSE:Factory/ucpp (Old)
 and  /work/SRC/openSUSE:Factory/.ucpp.new (New)


Package is "ucpp"

Thu Aug  2 14:54:39 2018 rev:10 rq:626379 version:1.3.5

Changes:

--- /work/SRC/openSUSE:Factory/ucpp/ucpp.changes2018-06-13 
15:15:40.276821949 +0200
+++ /work/SRC/openSUSE:Factory/.ucpp.new/ucpp.changes   2018-08-02 
14:54:40.487928731 +0200
@@ -1,0 +2,5 @@
+Sun Jul 29 11:59:44 UTC 2018 - jeng...@inai.de
+
+- Compact description and ensure neutrality.
+
+---



Other differences:
--
++ ucpp.spec ++
--- /var/tmp/diff_new_pack.kuUhSi/_old  2018-08-02 14:54:41.323930126 +0200
+++ /var/tmp/diff_new_pack.kuUhSi/_new  2018-08-02 14:54:41.323930126 +0200
@@ -20,7 +20,7 @@
 Name:   ucpp
 Version:1.3.5
 Release:0
-Summary:A quick and light preprocessor, but anyway fully compliant to 
C99
+Summary:A preprocessor compliant to C99
 License:BSD-3-Clause
 Group:  Development/Tools/Building
 URL:https://gitlab.com/scarabeusiv/ucpp/
@@ -31,15 +31,9 @@
 BuildRequires:  pkgconfig
 
 %description
-A C preprocessor is a part of a C compiler responsible for macro
-replacement, conditional compilation and inclusion of header files.
-It is often found as a stand-alone program on Unix systems.
-
-ucpp is such a preprocessor; it is designed to be quick and light,
-but anyway fully compliant to the ISO standard 9899:1999, also known
-as C99. ucpp can be compiled as a stand-alone program, or linked to
-some other code; in the latter case, ucpp will output tokens, one
-at a time, on demand, as an integrated lexer.
+ucpp is a preprocessor for C source code, specifically code compliant to the
+ISO standard 9899:1999, also known as C99. A preprocessor is responsible for
+macro replacement, conditional compilation and inclusion of header files.
 
 ucpp operates in two modes:
 -- lexer mode: ucpp is linked to some other code and outputs a stream of
@@ -53,22 +47,12 @@
 Group:  Development/Libraries/Other
 
 %description -n %{libname}
-A C preprocessor is a part of a C compiler responsible for macro
-replacement, conditional compilation and inclusion of header files.
-It is often found as a stand-alone program on Unix systems.
-
-ucpp is such a preprocessor; it is designed to be quick and light,
-but anyway fully compliant to the ISO standard 9899:1999, also known
-as C99. ucpp can be compiled as a stand-alone program, or linked to
-some other code; in the latter case, ucpp will output tokens, one
-at a time, on demand, as an integrated lexer.
+ucpp is a preprocessor for C source code, specifically code compliant to the
+ISO standard 9899:1999, also known as C99. A preprocessor is responsible for
+macro replacement, conditional compilation and inclusion of header files.
 
-ucpp operates in two modes:
--- lexer mode: ucpp is linked to some other code and outputs a stream of
-tokens (each call to the lex() function will yield one token)
--- non-lexer mode: ucpp preprocesses text and outputs the resulting text
-to a file descriptor; if linked to some other code, the cpp() function
-must be called repeatedly, otherwise ucpp is a stand-alone binary.
+ucpp, built as a library, outputs tokens, one at a time, on demand,
+as an integrated lexer.
 
 %package devel
 Summary:Files for Developing with ucpp




commit ucpp for openSUSE:Factory

2018-06-13 Thread root
Hello community,

here is the log from the commit of package ucpp for openSUSE:Factory checked in 
at 2018-06-13 15:15:34

Comparing /work/SRC/openSUSE:Factory/ucpp (Old)
 and  /work/SRC/openSUSE:Factory/.ucpp.new (New)


Package is "ucpp"

Wed Jun 13 15:15:34 2018 rev:9 rq:614490 version:1.3.5

Changes:

--- /work/SRC/openSUSE:Factory/ucpp/ucpp.changes2013-11-04 
16:54:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.ucpp.new/ucpp.changes   2018-06-13 
15:15:40.276821949 +0200
@@ -1,0 +2,8 @@
+Wed Jun  6 08:22:17 UTC 2018 - tchva...@suse.com
+
+- Version update to 1.3.5:
+  * Few cppcheck fixes
+  * Move to gitlab
+  * Few manpage tweaks
+
+---

Old:

  ucpp-1.3.4.tar.xz

New:

  ucpp-1.3.5.tar.bz2



Other differences:
--
++ ucpp.spec ++
--- /var/tmp/diff_new_pack.5QENrC/_old  2018-06-13 15:15:41.964760364 +0200
+++ /var/tmp/diff_new_pack.5QENrC/_new  2018-06-13 15:15:41.968760218 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ucpp
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 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,19 +17,18 @@
 
 
 %define libname libucpp13
-
 Name:   ucpp
+Version:1.3.5
+Release:0
 Summary:A quick and light preprocessor, but anyway fully compliant to 
C99
 License:BSD-3-Clause
 Group:  Development/Tools/Building
-Version:1.3.4
-Release:0
-Url:http://code.google.com/p/ucpp/
-# http://github.com/scarabeusiv/ucpp
-Source: 
http://dev.gentooexperimental.org/~scarabeus/%{name}-%{version}.tar.xz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+URL:https://gitlab.com/scarabeusiv/ucpp/
+Source: 
https://gitlab.com/scarabeusiv/%{name}/-/archive/%{version}/%{name}-%{version}.tar.bz2
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  libtool
 BuildRequires:  pkgconfig
-BuildRequires:  xz
 
 %description
 A C preprocessor is a part of a C compiler responsible for macro
@@ -72,9 +71,9 @@
 must be called repeatedly, otherwise ucpp is a stand-alone binary.
 
 %package devel
-Requires:   %{libname} = %{version}
 Summary:Files for Developing with ucpp
 Group:  Development/Libraries/C and C++
+Requires:   %{libname} = %{version}
 
 %description devel
 Includes and definitions for developing with the ucpp library.
@@ -83,31 +82,29 @@
 %setup -q
 
 %build
+autoreconf -fvi
 %configure \
+--disable-silent-rules \
--disable-werror \
-   --disable-static \
-   --docdir="%{_docdir}/%{name}"
+--disable-static
 make %{?_smp_mflags} V=1
 
 %install
-make DESTDIR=%{buildroot} install
-rm %{buildroot}%{_libdir}/*.la
+%make_install
+find %{buildroot} -type f -name "*.la" -delete -print
 
 %post -n %{libname} -p /sbin/ldconfig
-
 %postun -n %{libname} -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root,-)
 %{_bindir}/*
-%{_mandir}/man1/ucpp.1.gz
+%{_mandir}/man1/ucpp.1%{?ext_man}
 
 %files -n %{libname}
-%defattr(-,root,root,-)
+%license COPYING
 %{_libdir}/*.so.1*
 
 %files devel
-%defattr(-,root,root,-)
 %{_includedir}/lib%{name}
 %{_libdir}/*.so
 %{_libdir}/pkgconfig/lib%{name}*.pc

++ ucpp-1.3.4.tar.xz -> ucpp-1.3.5.tar.bz2 ++
 40034 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/ucpp-1.3.4/.gitignore new/ucpp-1.3.5/.gitignore
--- old/ucpp-1.3.4/.gitignore   1970-01-01 01:00:00.0 +0100
+++ new/ucpp-1.3.5/.gitignore   2018-06-06 10:08:54.0 +0200
@@ -0,0 +1,43 @@
+# build objects
+*.o
+*.lo
+*.la
+.libs
+
+# http://www.gnu.org/software/automake
+
+Makefile.in
+Makefile
+
+# http://www.gnu.org/software/autoconf
+
+.deps
+/autom4te.cache
+/aclocal.m4
+/compile
+/configure
+/config.guess
+/config.h.in
+/config.h
+/config.log
+/config.status
+/config.sub
+/depcomp
+/install-sh
+/ltmain.sh
+/libtool
+/missing
+/m4
+/stamp-h1
+
+# pc file
+/libucpp.pc
+
+# created binary
+/ucpp
+
+# generated tarballs
+*.tar.*
+
+# builddir for oot
+/build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude 

commit ucpp for openSUSE:Factory

2013-11-04 Thread h_root
Hello community,

here is the log from the commit of package ucpp for openSUSE:Factory checked in 
at 2013-11-04 16:53:58

Comparing /work/SRC/openSUSE:Factory/ucpp (Old)
 and  /work/SRC/openSUSE:Factory/.ucpp.new (New)


Package is ucpp

Changes:

--- /work/SRC/openSUSE:Factory/ucpp/ucpp.changes2013-04-29 
10:04:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.ucpp.new/ucpp.changes   2013-11-04 
16:54:00.0 +0100
@@ -1,0 +2,5 @@
+Fri Nov  1 08:58:09 UTC 2013 - tchva...@suse.com
+
+- Drop clean phase and use verbose build.
+
+---



Other differences:
--
++ ucpp.spec ++
--- /var/tmp/diff_new_pack.2YgUXP/_old  2013-11-04 16:54:02.0 +0100
+++ /var/tmp/diff_new_pack.2YgUXP/_new  2013-11-04 16:54:02.0 +0100
@@ -87,15 +87,12 @@
--disable-werror \
--disable-static \
--docdir=%{_docdir}/%{name}
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 make DESTDIR=%{buildroot} install
 rm %{buildroot}%{_libdir}/*.la
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %post -n %{libname} -p /sbin/ldconfig
 
 %postun -n %{libname} -p /sbin/ldconfig

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ucpp for openSUSE:Factory

2013-04-29 Thread h_root
Hello community,

here is the log from the commit of package ucpp for openSUSE:Factory checked in 
at 2013-04-29 10:04:34

Comparing /work/SRC/openSUSE:Factory/ucpp (Old)
 and  /work/SRC/openSUSE:Factory/.ucpp.new (New)


Package is ucpp, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/ucpp/ucpp.changes2012-12-21 
15:05:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.ucpp.new/ucpp.changes   2013-04-29 
10:04:35.0 +0200
@@ -1,0 +2,5 @@
+Sat Apr 20 11:37:41 UTC 2013 - tchva...@suse.com
+
+- Add http url path.
+
+---



Other differences:
--
++ ucpp.spec ++
--- /var/tmp/diff_new_pack.vtKyiN/_old  2013-04-29 10:04:36.0 +0200
+++ /var/tmp/diff_new_pack.vtKyiN/_new  2013-04-29 10:04:36.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ucpp
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 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
@@ -20,13 +20,13 @@
 
 Name:   ucpp
 Summary:A quick and light preprocessor, but anyway fully compliant to 
C99
+License:BSD-3-Clause
+Group:  Development/Tools/Building
 Version:1.3.4
 Release:0
-Group:  Development/Tools/Building
-License:BSD-3-Clause
 Url:http://code.google.com/p/ucpp/
 # http://github.com/scarabeusiv/ucpp
-Source: %{name}-%{version}.tar.xz
+Source: 
http://dev.gentooexperimental.org/~scarabeus/%{name}-%{version}.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  pkgconfig
 BuildRequires:  xz
@@ -50,7 +50,6 @@
 must be called repeatedly, otherwise ucpp is a stand-alone binary.
 
 %package -n %{libname}
-License:BSD-3-Clause
 Summary:A Mixed Integer Linear Programming (MILP) Solver Library
 Group:  Development/Libraries/Other
 
@@ -73,7 +72,6 @@
 must be called repeatedly, otherwise ucpp is a stand-alone binary.
 
 %package devel
-License:BSD-3-Clause
 Requires:   %{libname} = %{version}
 Summary:Files for Developing with ucpp
 Group:  Development/Libraries/C and C++

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit ucpp for openSUSE:Factory

2012-12-21 Thread h_root
Hello community,

here is the log from the commit of package ucpp for openSUSE:Factory checked in 
at 2012-12-21 15:05:05

Comparing /work/SRC/openSUSE:Factory/ucpp (Old)
 and  /work/SRC/openSUSE:Factory/.ucpp.new (New)


Package is ucpp, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/ucpp/ucpp.changes2012-11-30 
12:31:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.ucpp.new/ucpp.changes   2012-12-21 
15:05:22.0 +0100
@@ -1,0 +2,9 @@
+Wed Dec 19 07:46:28 UTC 2012 - tchva...@suse.com
+
+- Version bump to 1.3.4
+  * this version moves all the options from header to conf switches
+  * add possibility to use the headers in c++ apps
+  * silences warnings
+  * remove weird exit so buildservice does not complain
+
+---

Old:

  ucpp-1.3.3.tar.xz

New:

  ucpp-1.3.4.tar.xz



Other differences:
--
++ ucpp.spec ++
--- /var/tmp/diff_new_pack.WDEivj/_old  2012-12-21 15:05:25.0 +0100
+++ /var/tmp/diff_new_pack.WDEivj/_new  2012-12-21 15:05:25.0 +0100
@@ -15,10 +15,12 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define libname libucpp13
+
 Name:   ucpp
 Summary:A quick and light preprocessor, but anyway fully compliant to 
C99
-Version:1.3.3
+Version:1.3.4
 Release:0
 Group:  Development/Tools/Building
 License:BSD-3-Clause

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org