Hello community, here is the log from the commit of package libsolv for openSUSE:Factory checked in at 2015-01-20 19:11:38 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libsolv (Old) and /work/SRC/openSUSE:Factory/.libsolv.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libsolv" Changes: -------- --- /work/SRC/openSUSE:Factory/libsolv/libsolv.changes 2014-12-21 12:01:02.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.libsolv.new/libsolv.changes 2015-01-20 19:11:40.000000000 +0100 @@ -1,0 +2,6 @@ +Wed Jan 14 08:58:46 CET 2015 - [email protected] + +- fixes to build with swig 3.0.3 +- bump version to 0.6.8 + +------------------------------------------------------------------- Old: ---- libsolv-0.6.7.tar.bz2 New: ---- libsolv-0.6.8.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libsolv.spec ++++++ --- /var/tmp/diff_new_pack.6jK2hs/_old 2015-01-20 19:11:41.000000000 +0100 +++ /var/tmp/diff_new_pack.6jK2hs/_new 2015-01-20 19:11:41.000000000 +0100 @@ -1,7 +1,7 @@ # # spec file for package libsolv # -# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany. +# Copyright (c) 2015 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,9 +17,9 @@ Name: libsolv -Version: 0.6.7 +Version: 0.6.8 Release: 0 -Url: git://gitorious.org/opensuse/libsolv.git +Url: https://github.com/openSUSE/libsolv Source: libsolv-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build ++++++ libsolv-0.6.7.tar.bz2 -> libsolv-0.6.8.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsolv-0.6.7/VERSION.cmake new/libsolv-0.6.8/VERSION.cmake --- old/libsolv-0.6.7/VERSION.cmake 2014-12-19 11:51:00.000000000 +0100 +++ new/libsolv-0.6.8/VERSION.cmake 2015-01-14 09:06:00.000000000 +0100 @@ -49,5 +49,5 @@ SET(LIBSOLV_MAJOR "0") SET(LIBSOLV_MINOR "6") -SET(LIBSOLV_PATCH "7") +SET(LIBSOLV_PATCH "8") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsolv-0.6.7/bindings/solv.i new/libsolv-0.6.8/bindings/solv.i --- old/libsolv-0.6.7/bindings/solv.i 2014-09-29 11:31:12.000000000 +0200 +++ new/libsolv-0.6.8/bindings/solv.i 2015-01-14 08:21:01.000000000 +0100 @@ -1,8 +1,8 @@ -# -# WARNING: for perl iterator/array support you need to run -# sed -i -e 's/SvTYPE(tsv) == SVt_PVHV/SvTYPE(tsv) == SVt_PVHV || SvTYPE(tsv) == SVt_PVAV/' -# on the generated c code -# +/* + * WARNING: for perl iterator/array support you need to run + * sed -i -e 's/SvTYPE(tsv) == SVt_PVHV/SvTYPE(tsv) == SVt_PVHV || SvTYPE(tsv) == SVt_PVAV/' + * on the generated c code + */ %module solv @@ -10,9 +10,9 @@ %markfunc Pool "mark_Pool"; #endif -# -# binaryblob handling -# +/* + * binaryblob handling + */ %{ typedef struct { @@ -131,10 +131,10 @@ queue_push(&$1, v); } } -# AV *o = newAV(); -# av_push(o, SvREFCNT_inc(SWIG_From_int($1.elements[i]))); -# $result = newRV_noinc((SV*)o); argvi++; -# +/* AV *o = newAV(); + * av_push(o, SvREFCNT_inc(SWIG_From_int($1.elements[i]))); + * $result = newRV_noinc((SV*)o); argvi++; + */ %typemap(out) Queue { int i; if (argvi + $1.count + 1 >= items) { @@ -233,7 +233,7 @@ #if defined(SWIGPERL) -# work around a swig bug +/* work around a swig bug */ %{ #undef SWIG_CALLXS #ifdef PERL_OBJECT @@ -628,7 +628,7 @@ %include "knownid.h" -# from repodata.h +/* from repodata.h */ %constant Id SOLVID_META; %constant Id SOLVID_POS; @@ -646,7 +646,7 @@ Id const id; } Dep; -# put before pool/repo so we can access the constructor +/* put before pool/repo so we can access the constructor */ %nodefaultdtor Dataiterator; typedef struct {} Dataiterator; @@ -1627,7 +1627,7 @@ bool write(FILE *fp) { return repo_write($self, fp) == 0; } - # HACK, remove if no longer needed! + /* HACK, remove if no longer needed! */ bool write_first_repodata(FILE *fp) { int oldnrepodata = $self->nrepodata; int res; @@ -2923,7 +2923,7 @@ return q; } - # deprecated, use newsolvables instead + /* deprecated, use newsolvables instead */ %typemap(out) Queue newpackages Queue2Array(XSolvable *, 1, new_XSolvable(arg1->pool, id)); %newobject newpackages; Queue newpackages() { @@ -2935,7 +2935,7 @@ return q; } - # deprecated, use keptsolvables instead + /* deprecated, use keptsolvables instead */ %typemap(out) Queue keptpackages Queue2Array(XSolvable *, 1, new_XSolvable(arg1->pool, id)); %newobject keptpackages; Queue keptpackages() { diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsolv-0.6.7/package/libsolv.changes new/libsolv-0.6.8/package/libsolv.changes --- old/libsolv-0.6.7/package/libsolv.changes 2014-12-19 11:51:00.000000000 +0100 +++ new/libsolv-0.6.8/package/libsolv.changes 2015-01-14 09:06:00.000000000 +0100 @@ -1,4 +1,10 @@ ------------------------------------------------------------------- +Wed Jan 14 08:58:46 CET 2015 - [email protected] + +- fixes to build with swig 3.0.3 +- bump version to 0.6.8 + +------------------------------------------------------------------- Fri Dec 19 08:59:27 CET 2014 - [email protected] - add product:regflavor attribute [bnc#896224] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libsolv-0.6.7/package/libsolv.spec.in new/libsolv-0.6.8/package/libsolv.spec.in --- old/libsolv-0.6.7/package/libsolv.spec.in 2014-09-25 16:56:09.000000000 +0200 +++ new/libsolv-0.6.8/package/libsolv.spec.in 2015-01-14 08:21:01.000000000 +0100 @@ -18,7 +18,7 @@ Name: libsolv Version: @VERSION@ Release: 0 -Url: git://gitorious.org/opensuse/libsolv.git +Url: https://github.com/openSUSE/libsolv Source: libsolv-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-build -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
