Compare commits
No commits in common. "c8" and "imports/c8-beta/libvpd-2.2.7-1.el8" have entirely different histories.
c8
...
imports/c8
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/libvpd-2.2.9.tar.gz
|
SOURCES/libvpd-2.2.7.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
17fcca6874e97490e2b44868b50bb1e2c456dc35 SOURCES/libvpd-2.2.9.tar.gz
|
f8ea10906483e4d5bedadefa1c57857f2b3274cf SOURCES/libvpd-2.2.7.tar.gz
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
Name: libvpd
|
Name: libvpd
|
||||||
Version: 2.2.9
|
Version: 2.2.7
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: VPD Database access library for lsvpd
|
Summary: VPD Database access library for lsvpd
|
||||||
|
|
||||||
@ -8,9 +8,7 @@ License: LGPLv2+
|
|||||||
URL: https://github.com/power-ras/%{name}/releases
|
URL: https://github.com/power-ras/%{name}/releases
|
||||||
Source: https://github.com/power-ras/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
|
Source: https://github.com/power-ras/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||||||
|
|
||||||
BuildRequires: gcc-c++
|
|
||||||
BuildRequires: sqlite-devel zlib-devel libstdc++-devel libtool
|
BuildRequires: sqlite-devel zlib-devel libstdc++-devel libtool
|
||||||
BuildRequires: make
|
|
||||||
|
|
||||||
ExclusiveArch: %{power64}
|
ExclusiveArch: %{power64}
|
||||||
|
|
||||||
@ -37,6 +35,16 @@ make %{?_smp_mflags}
|
|||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
find %{buildroot} -type f -name "*.la" -delete
|
find %{buildroot} -type f -name "*.la" -delete
|
||||||
|
|
||||||
|
# re-symlink *.so to SONAME, fix the symlinks issue by downgrade/upgrade
|
||||||
|
pushd %{buildroot}%{_libdir}
|
||||||
|
v=%{version}
|
||||||
|
version=$(echo ${v%.[0-9]*})
|
||||||
|
for lib in libvpd libvpd_cxx; do
|
||||||
|
rm -f ${lib}.so
|
||||||
|
ln -s ${lib}-${version}.so.2 ${lib}.so
|
||||||
|
done
|
||||||
|
popd
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%post -p /sbin/ldconfig
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
@ -57,12 +65,6 @@ find %{buildroot} -type f -name "*.la" -delete
|
|||||||
%{_libdir}/pkgconfig/libvpd_cxx-2.pc
|
%{_libdir}/pkgconfig/libvpd_cxx-2.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Fri May 13 2022 Than Ngo <than@redhat.com> - 2.2.9-1
|
|
||||||
- Resolves: #2051316, rebase to 2.2.9
|
|
||||||
|
|
||||||
* Mon Nov 09 2020 Than Ngo <than@redhat.com> - 2.2.8-1
|
|
||||||
- Resolves: #1844429, rebase to 2.2.8
|
|
||||||
|
|
||||||
* Mon Apr 06 2020 Than Ngo <than@redhat.com> - 2.2.7-1
|
* Mon Apr 06 2020 Than Ngo <than@redhat.com> - 2.2.7-1
|
||||||
- Resolves: #1664098, rebase to 2.2.7
|
- Resolves: #1664098, rebase to 2.2.7
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user