Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libvpd for openSUSE:Factory checked in at 2024-09-18 15:26:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libvpd (Old) and /work/SRC/openSUSE:Factory/.libvpd.new.29891 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libvpd" Wed Sep 18 15:26:59 2024 rev:4 rq:1201644 version:2.2.10 Changes: -------- --- /work/SRC/openSUSE:Factory/libvpd/libvpd.changes 2022-09-16 13:32:21.181271076 +0200 +++ /work/SRC/openSUSE:Factory/.libvpd.new.29891/libvpd.changes 2024-09-18 15:27:31.946464535 +0200 @@ -1,0 +2,6 @@ +Tue Sep 17 14:18:51 UTC 2024 - Michal Suchanek <[email protected]> + +- Version 2.2.10 (jsc#PED-9911). + * Fix displaying duplicate VPD details + +------------------------------------------------------------------- Old: ---- libvpd2-2.2.9.tar.gz New: ---- libvpd2-2.2.10.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libvpd.spec ++++++ --- /var/tmp/diff_new_pack.oYkSNy/_old 2024-09-18 15:27:32.514488205 +0200 +++ /var/tmp/diff_new_pack.oYkSNy/_new 2024-09-18 15:27:32.514488205 +0200 @@ -1,7 +1,7 @@ # # spec file for package libvpd # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -24,7 +24,7 @@ %define basepackage ( ! 0%{?sle_version} || 0%{?sle_version} >= 150200 ) Name: libvpd -Version: 2.2.9 +Version: 2.2.10 Release: 0 Summary: VPD Database access library for lsvpd License: LGPL-2.1-or-later ++++++ libvpd2-2.2.9.tar.gz -> libvpd2-2.2.10.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/.travis.yml new/libvpd-2.2.10/.travis.yml --- old/libvpd-2.2.9/.travis.yml 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/.travis.yml 2024-09-14 09:41:57.000000000 +0200 @@ -1,6 +1,7 @@ language: cpp -os: linux-ppc64le +arch: ppc64le +group: power-focal sudo: required @@ -8,8 +9,8 @@ env: matrix: - - RUN_ON_CONTAINER=fedora-33 - - RUN_ON_CONTAINER=ubuntu-20.04 + - RUN_ON_CONTAINER=fedora-37 + - RUN_ON_CONTAINER=ubuntu-23.10 install: - docker build --pull -t ${RUN_ON_CONTAINER} -f libvpd-ci/Dockerfile-${RUN_ON_CONTAINER} . diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/ChangeLog new/libvpd-2.2.10/ChangeLog --- old/libvpd-2.2.9/ChangeLog 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/ChangeLog 2024-09-14 09:41:57.000000000 +0200 @@ -1,3 +1,8 @@ +2.2.10 +- Fix displaying duplicate VPD details +- Update travis build to use fedora37 and Ubuntu23.10 +- Update travis build to use v3 supported tags + 2.2.9 - VpdDbEnv: Add locking fo the database file. - Update libtool version info diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/README new/libvpd-2.2.10/README --- old/libvpd-2.2.9/README 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/README 2024-09-14 09:41:57.000000000 +0200 @@ -50,6 +50,10 @@ $ make dist-gzip +Next, move your source/zipped tarball file into SOURCES directory + +$ mv libvpd-<version>.tar.gz /root/rpmbuild/SOURCES/ + As an example, we use a command similar to the following: $ rpmbuild -ba [--target=ppc/ppc64] <path-to-spec-file> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/configure.ac new/libvpd-2.2.10/configure.ac --- old/libvpd-2.2.9/configure.ac 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/configure.ac 2024-09-14 09:41:57.000000000 +0200 @@ -4,7 +4,7 @@ AC_PREREQ([2.69]) #base -AC_INIT([libvpd],[2.2.9],[[email protected],[email protected]]) +AC_INIT([libvpd],[2.2.10],[[email protected],[email protected]]) AC_CONFIG_HEADER([config/config.h]) AC_CONFIG_AUX_DIR([config]) AC_CONFIG_MACRO_DIR([m4]) @@ -18,7 +18,7 @@ #Release version GENERIC_MAJOR_VERSION=2 GENERIC_MINOR_VERSION=2 -GENERIC_MICRO_VERSION=9 +GENERIC_MICRO_VERSION=10 GENERIC_API_VERSION=$GENERIC_MAJOR_VERSION AC_SUBST(GENERIC_API_VERSION) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd-ci/Dockerfile-fedora-33 new/libvpd-2.2.10/libvpd-ci/Dockerfile-fedora-33 --- old/libvpd-2.2.9/libvpd-ci/Dockerfile-fedora-33 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/libvpd-ci/Dockerfile-fedora-33 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +0,0 @@ -FROM fedora:33 - -RUN dnf -y install gcc-g++ make sqlite-devel zlib-devel libstdc++-devel -RUN dnf -y install automake rpm-build git libvpd libtool -COPY . /build/ -WORKDIR /build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd-ci/Dockerfile-fedora-37 new/libvpd-2.2.10/libvpd-ci/Dockerfile-fedora-37 --- old/libvpd-2.2.9/libvpd-ci/Dockerfile-fedora-37 1970-01-01 01:00:00.000000000 +0100 +++ new/libvpd-2.2.10/libvpd-ci/Dockerfile-fedora-37 2024-09-14 09:41:57.000000000 +0200 @@ -0,0 +1,6 @@ +FROM fedora:37 + +RUN dnf -y install gcc-g++ make sqlite-devel zlib-devel libstdc++-devel +RUN dnf -y install automake rpm-build git libvpd libtool +COPY . /build/ +WORKDIR /build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd-ci/Dockerfile-ubuntu-20.04 new/libvpd-2.2.10/libvpd-ci/Dockerfile-ubuntu-20.04 --- old/libvpd-2.2.9/libvpd-ci/Dockerfile-ubuntu-20.04 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/libvpd-ci/Dockerfile-ubuntu-20.04 1970-01-01 01:00:00.000000000 +0100 @@ -1,8 +0,0 @@ -FROM ubuntu:20.04 -ENV DEBIAN_FRONTEND noninteractive - -RUN apt-get update -qq -RUN apt-get update -qq && apt-get install -y libsqlite3-dev zlib1g-dev -RUN apt-get update -qq && apt-get install -y automake libtool git make g++ libstdc++-7-dev -COPY . /build/ -WORKDIR /build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd-ci/Dockerfile-ubuntu-23.10 new/libvpd-2.2.10/libvpd-ci/Dockerfile-ubuntu-23.10 --- old/libvpd-2.2.9/libvpd-ci/Dockerfile-ubuntu-23.10 1970-01-01 01:00:00.000000000 +0100 +++ new/libvpd-2.2.10/libvpd-ci/Dockerfile-ubuntu-23.10 2024-09-14 09:41:57.000000000 +0200 @@ -0,0 +1,8 @@ +FROM ubuntu:23.10 +ENV DEBIAN_FRONTEND noninteractive + +RUN apt-get update -qq +RUN apt-get update -qq && apt-get install -y libsqlite3-dev zlib1g-dev +RUN apt-get update -qq && apt-get install -y automake libtool git make g++ libstdc++-10-dev +COPY . /build/ +WORKDIR /build diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd-ci/build-fedora-33.sh new/libvpd-2.2.10/libvpd-ci/build-fedora-33.sh --- old/libvpd-2.2.9/libvpd-ci/build-fedora-33.sh 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/libvpd-ci/build-fedora-33.sh 1970-01-01 01:00:00.000000000 +0100 @@ -1,15 +0,0 @@ -#!/bin/bash - -set -uo pipefail -set -e -set -vx -MAKE_J=$(grep -c processor /proc/cpuinfo) - -./bootstrap.sh -./configure -make -j $MAKE_J -make -j $MAKE_J check -mkdir -p /root/rpmbuild/SOURCES/ -make dist-gzip -cp *.tar.gz /root/rpmbuild/SOURCES/ -rpmbuild -ba libvpd.spec diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd-ci/build-fedora-37.sh new/libvpd-2.2.10/libvpd-ci/build-fedora-37.sh --- old/libvpd-2.2.9/libvpd-ci/build-fedora-37.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/libvpd-2.2.10/libvpd-ci/build-fedora-37.sh 2024-09-14 09:41:57.000000000 +0200 @@ -0,0 +1,15 @@ +#!/bin/bash + +set -uo pipefail +set -e +set -vx +MAKE_J=$(grep -c processor /proc/cpuinfo) + +./bootstrap.sh +./configure +make -j $MAKE_J +make -j $MAKE_J check +mkdir -p /root/rpmbuild/SOURCES/ +make dist-gzip +cp *.tar.gz /root/rpmbuild/SOURCES/ +rpmbuild -ba libvpd.spec diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd-ci/build-ubuntu-20.04.sh new/libvpd-2.2.10/libvpd-ci/build-ubuntu-20.04.sh --- old/libvpd-2.2.9/libvpd-ci/build-ubuntu-20.04.sh 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/libvpd-ci/build-ubuntu-20.04.sh 1970-01-01 01:00:00.000000000 +0100 @@ -1,12 +0,0 @@ -#!/bin/bash - -set -uo pipefail -set -e -set -vx - -MAKE_J=$(grep -c processor /proc/cpuinfo) - -./bootstrap.sh -./configure -make -j $MAKE_J -make -j $MAKE_J check diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd-ci/build-ubuntu-23.10.sh new/libvpd-2.2.10/libvpd-ci/build-ubuntu-23.10.sh --- old/libvpd-2.2.9/libvpd-ci/build-ubuntu-23.10.sh 1970-01-01 01:00:00.000000000 +0100 +++ new/libvpd-2.2.10/libvpd-ci/build-ubuntu-23.10.sh 2024-09-14 09:41:57.000000000 +0200 @@ -0,0 +1,12 @@ +#!/bin/bash + +set -uo pipefail +set -e +set -vx + +MAKE_J=$(grep -c processor /proc/cpuinfo) + +./bootstrap.sh +./configure +make -j $MAKE_J +make -j $MAKE_J check diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/libvpd.spec.in new/libvpd-2.2.10/libvpd.spec.in --- old/libvpd-2.2.9/libvpd.spec.in 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/libvpd.spec.in 2024-09-14 09:41:57.000000000 +0200 @@ -64,7 +64,12 @@ %{_libdir}/pkgconfig/libvpd_cxx-2.pc %changelog -* Thu Feb 25 2022 Mahesh Salgaonkar <[email protected]> 2.2.9 +* Fri Sep 13 2024 Mahesh Salgaonkar <[email protected]> 2.2.10 +- Fix displaying duplicate VPD details +- Update travis build to use fedora37 and Ubuntu23.10 +- Update travis build to use v3 supported tags + +* Fri Feb 25 2022 Mahesh Salgaonkar <[email protected]> 2.2.9 - VpdDbEnv: Add locking fo the database file. - Update libtool version info diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libvpd-2.2.9/src/component.cpp new/libvpd-2.2.10/src/component.cpp --- old/libvpd-2.2.9/src/component.cpp 2022-02-25 16:44:12.000000000 +0100 +++ new/libvpd-2.2.10/src/component.cpp 2024-09-14 09:41:57.000000000 +0200 @@ -937,7 +937,6 @@ d->ac = ac; d->humanName = humanName; d->setValue( val, lvl, __FILE__, __LINE__ ); -#if 0 /* * There can be multiple records with the 'CL' key. @@ -952,7 +951,6 @@ if( (*i)->ac == ac ) return; //Failed to add - already present } -#endif mDeviceSpecific.push_back( d ); }
