SHA256
1
0
forked from pool/pkgconf

Accepting request 1176819 from home:AndreasStieger:branches:devel:tools

pkgconf 2.2.0

OBS-URL: https://build.opensuse.org/request/show/1176819
OBS-URL: https://build.opensuse.org/package/show/devel:tools/pkgconf?expand=0&rev=30
This commit is contained in:
Neal Gompa 2024-05-25 10:54:26 +00:00 committed by Git OBS Bridge
parent c4b6303437
commit 089fe5f258
4 changed files with 23 additions and 8 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a224f2accf091b77a5781316e27b9ee3ba82c083cc2e539e08940b68a44fec5
size 311956

3
pkgconf-2.2.0.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b06ff63a83536aa8c2f6422fa80ad45e4833f590266feb14eaddfe1d4c853c69
size 311920

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Sat May 25 09:28:03 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>
- update to 2.2.0:
* Significant solver rework to flatten both requires and
requires.private dependencies in a single pass. Improves
performance slightly and ensures proper dependency order.
* Improve --digraph output to reflect more of the solver's state
in the rendered dependency graph.
* Do not reference the graph root by name when presenting error
messages about directly requested dependency nodes.
-------------------------------------------------------------------
Mon Feb 12 12:29:11 UTC 2024 - Andreas Stieger <andreas.stieger@gmx.de>

View File

@ -3,6 +3,7 @@
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2020 Neal Gompa <ngompa13@gmail.com>.
# Copyright (c) 2024 Andreas Stieger <Andreas.Stieger@gmx.de>
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -40,17 +41,17 @@
# Search path for pc files for pkgconf
%global pkgconf_libdirs %{_libdir}/pkgconfig:%{_datadir}/pkgconfig
%global somajor 4
%global somajor 5
%global libname lib%{name}%{somajor}
%global devname lib%{name}-devel
Name: pkgconf
Version: 2.1.1
Version: 2.2.0
Release: 0
Summary: Package compiler and linker metadata toolkit
License: ISC
Group: Development/Tools/Building
URL: http://pkgconf.org/
URL: https://pkgconf.org/
Source0: https://distfiles.dereferenced.org/%{name}/%{name}-%{version}.tar.xz
# Simple wrapper script to offer platform versions of pkgconfig from Fedora
Source1: platform-pkg-config.in
@ -182,8 +183,7 @@ rm -rf %{buildroot}%{_datadir}/aclocal
rm -rf %{buildroot}%{_mandir}/man7
%endif
%post -n %{libname} -p /sbin/ldconfig
%postun -n %{libname} -p /sbin/ldconfig
%ldconfig_scriptlets -n %{libname}
%files
%license COPYING
@ -204,17 +204,20 @@ rm -rf %{buildroot}%{_mandir}/man7
%{_libdir}/lib%{name}*.so.%{somajor}.*
%files -n %{devname}
%license COPYING
%{_libdir}/lib%{name}*.so
%{_includedir}/%{name}/
%{_libdir}/pkgconfig/lib%{name}.pc
%if %{with pkgconfig_compat}
%files m4
%license COPYING
%dir %{_datadir}/aclocal
%{_datadir}/aclocal/pkg.m4
%{_mandir}/man7/pkg.m4.7%{?ext_man}
%files pkg-config
%license COPYING
%{_bindir}/pkg-config
%{_bindir}/%{pkgconf_target_platform}-pkg-config
%{_mandir}/man1/pkg-config.1%{?ext_man}