commit
49ea19b118
@ -0,0 +1 @@
|
|||||||
|
SOURCES/pkgconf-1.7.3.tar.xz
|
@ -0,0 +1 @@
|
|||||||
|
e90c3d993b7d2246d3b72ab558591a07c3b22ee2 SOURCES/pkgconf-1.7.3.tar.xz
|
@ -0,0 +1,124 @@
|
|||||||
|
From 305b359d7d07840df3e420e6b08f91c01abe6012 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Sandro Mani <manisandro@gmail.com>
|
||||||
|
Date: Wed, 23 Jun 2021 14:09:05 +0200
|
||||||
|
Subject: [PATCH] Don't prepend sysroot_dir if pkg-config file lies outside of
|
||||||
|
sysroot_dir
|
||||||
|
|
||||||
|
(cherry picked from commit ed86f2dda3bc99e34775f0fae54e314718037516)
|
||||||
|
---
|
||||||
|
libpkgconf/pkg.c | 10 ++++++++++
|
||||||
|
tests/regress.sh | 28 ++++++++++++----------------
|
||||||
|
tests/test_env.sh.in | 2 +-
|
||||||
|
3 files changed, 23 insertions(+), 17 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/libpkgconf/pkg.c b/libpkgconf/pkg.c
|
||||||
|
index 214f544..fff6eda 100644
|
||||||
|
--- a/libpkgconf/pkg.c
|
||||||
|
+++ b/libpkgconf/pkg.c
|
||||||
|
@@ -378,6 +378,16 @@ pkgconf_pkg_new_from_file(pkgconf_client_t *client, const char *filename, FILE *
|
||||||
|
pkg->pc_filedir = pkg_get_parent_dir(pkg);
|
||||||
|
pkgconf_tuple_add(client, &pkg->vars, "pcfiledir", pkg->pc_filedir, true);
|
||||||
|
|
||||||
|
+ /* If pc_filedir is outside of sysroot_dir, clear pc_filedir
|
||||||
|
+ /* See https://github.com/pkgconf/pkgconf/issues/213
|
||||||
|
+ */
|
||||||
|
+ if (client->sysroot_dir && strncmp(pkg->pc_filedir, client->sysroot_dir, strlen(client->sysroot_dir)))
|
||||||
|
+ {
|
||||||
|
+ free(client->sysroot_dir);
|
||||||
|
+ client->sysroot_dir = NULL;
|
||||||
|
+ pkgconf_client_set_sysroot_dir(client, NULL);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
/* make module id */
|
||||||
|
if ((idptr = strrchr(pkg->filename, PKG_DIR_SEP_S)) != NULL)
|
||||||
|
idptr++;
|
||||||
|
diff --git a/tests/regress.sh b/tests/regress.sh
|
||||||
|
index 47877d4..04d4042 100755
|
||||||
|
--- a/tests/regress.sh
|
||||||
|
+++ b/tests/regress.sh
|
||||||
|
@@ -112,7 +112,7 @@ libs_never_mergeback_body()
|
||||||
|
export PKG_CONFIG_PATH="${selfdir}/lib1"
|
||||||
|
atf_check \
|
||||||
|
-o inline:"-L/test/bar/lib -lfoo1 \n" \
|
||||||
|
- pkgconf --libs prefix-foo1
|
||||||
|
+ pkgconf --libs prefix-foo1
|
||||||
|
atf_check \
|
||||||
|
-o inline:"-L/test/bar/lib -lfoo1 -lfoo2 \n" \
|
||||||
|
pkgconf --libs prefix-foo1 prefix-foo2
|
||||||
|
@@ -160,9 +160,9 @@ isystem_munge_order_body()
|
||||||
|
|
||||||
|
isystem_munge_sysroot_body()
|
||||||
|
{
|
||||||
|
- export PKG_CONFIG_PATH="${selfdir}/lib1" PKG_CONFIG_SYSROOT_DIR='/test'
|
||||||
|
+ export PKG_CONFIG_PATH="${selfdir}/lib1" PKG_CONFIG_SYSROOT_DIR="${selfdir}"
|
||||||
|
atf_check \
|
||||||
|
- -o match:"-isystem /test/opt/bad/include" \
|
||||||
|
+ -o match:"-isystem ${selfdir}/opt/bad/include" \
|
||||||
|
pkgconf --cflags isystem
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -176,9 +176,9 @@ idirafter_munge_order_body()
|
||||||
|
|
||||||
|
idirafter_munge_sysroot_body()
|
||||||
|
{
|
||||||
|
- export PKG_CONFIG_PATH="${selfdir}/lib1" PKG_CONFIG_SYSROOT_DIR='/test'
|
||||||
|
+ export PKG_CONFIG_PATH="${selfdir}/lib1" PKG_CONFIG_SYSROOT_DIR="${selfdir}"
|
||||||
|
atf_check \
|
||||||
|
- -o match:"-idirafter /test/opt/bad/include" \
|
||||||
|
+ -o match:"-idirafter ${selfdir}/opt/bad/include" \
|
||||||
|
pkgconf --cflags idirafter
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -195,20 +195,16 @@ pcpath_body()
|
||||||
|
export PKG_CONFIG_PATH="${selfdir}/lib2"
|
||||||
|
atf_check \
|
||||||
|
-o inline:"-fPIC -I/test/include/foo \n" \
|
||||||
|
- pkgconf --cflags ${selfdir}/lib3/bar.pc
|
||||||
|
+ pkgconf --cflags ${selfdir}/lib3/bar.pc
|
||||||
|
}
|
||||||
|
|
||||||
|
sysroot_munge_body()
|
||||||
|
{
|
||||||
|
- export PKG_CONFIG_PATH="${selfdir}/lib1" PKG_CONFIG_SYSROOT_DIR="/sysroot"
|
||||||
|
+ sed "s|/sysroot/|${selfdir}/|g" ${selfdir}/lib1/sysroot-dir.pc > ${selfdir}/lib1/sysroot-dir-selfdir.pc
|
||||||
|
+ export PKG_CONFIG_PATH="${selfdir}/lib1" PKG_CONFIG_SYSROOT_DIR="${selfdir}"
|
||||||
|
atf_check \
|
||||||
|
- -o inline:"-L/sysroot/lib -lfoo \n" \
|
||||||
|
- pkgconf --libs sysroot-dir
|
||||||
|
-
|
||||||
|
- export PKG_CONFIG_SYSROOT_DIR="/sysroot2"
|
||||||
|
- atf_check \
|
||||||
|
- -o inline:"-L/sysroot2/sysroot/lib -lfoo \n" \
|
||||||
|
- pkgconf --libs sysroot-dir
|
||||||
|
+ -o inline:"-L${selfdir}/lib -lfoo \n" \
|
||||||
|
+ pkgconf --libs sysroot-dir-selfdir
|
||||||
|
}
|
||||||
|
|
||||||
|
virtual_variable_body()
|
||||||
|
@@ -244,8 +240,8 @@ malformed_quoting_body()
|
||||||
|
|
||||||
|
explicit_sysroot_body()
|
||||||
|
{
|
||||||
|
- export PKG_CONFIG_SYSROOT_DIR=/sysroot
|
||||||
|
- atf_check -o inline:"/sysroot/usr/share/test\n" \
|
||||||
|
+ export PKG_CONFIG_SYSROOT_DIR=${selfdir}
|
||||||
|
+ atf_check -o inline:"${selfdir}/usr/share/test\n" \
|
||||||
|
pkgconf --with-path="${selfdir}/lib1" --variable=pkgdatadir explicit-sysroot
|
||||||
|
}
|
||||||
|
|
||||||
|
diff --git a/tests/test_env.sh.in b/tests/test_env.sh.in
|
||||||
|
index 17ee1f5..2c081f6 100644
|
||||||
|
--- a/tests/test_env.sh.in
|
||||||
|
+++ b/tests/test_env.sh.in
|
||||||
|
@@ -24,7 +24,7 @@ done
|
||||||
|
selfdir="@abs_top_srcdir@/tests"
|
||||||
|
LIBRARY_PATH_ENV="LIBRARY_PATH"
|
||||||
|
PATH_SEP=":"
|
||||||
|
-SYSROOT_DIR="${selfdir}/test"
|
||||||
|
+SYSROOT_DIR="${selfdir}"
|
||||||
|
case "$(uname -s)" in
|
||||||
|
Msys|CYGWIN*) PATH_SEP=";";;
|
||||||
|
Haiku) LIBRARY_PATH_ENV="BELIBRARIES";;
|
||||||
|
--
|
||||||
|
2.31.1
|
||||||
|
|
@ -0,0 +1,8 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Multilib safe wrapper for pkg-config to call correct platform-specific version of pkg-config
|
||||||
|
|
||||||
|
## Vendored definition of %_target_platform from redhat-rpm-config to avoid depending on it
|
||||||
|
TARGET_PLATFORM=$(rpm --eval '%{_target_cpu}-%{_vendor}-%{_target_os}%{?_gnu}')
|
||||||
|
|
||||||
|
exec "@PKGCONF_BINDIR@/${TARGET_PLATFORM}-pkg-config" "$@"
|
@ -0,0 +1,16 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Simple wrapper to tell pkgconf to behave as a platform-specific version of pkg-config
|
||||||
|
# Platform: @TARGET_PLATFORM@
|
||||||
|
|
||||||
|
if [ -z "${RPM_BUILD_ROOT}" ]; then
|
||||||
|
export PKG_CONFIG_LIBDIR="${PKG_CONFIG_LIBDIR:-@PKGCONF_LIBDIRS_LOCAL@}"
|
||||||
|
export PKG_CONFIG_SYSTEM_LIBRARY_PATH="${PKG_CONFIG_SYSTEM_LIBRARY_PATH:-@PKGCONF_SYSLIBDIR_LOCAL@}"
|
||||||
|
export PKG_CONFIG_SYSTEM_INCLUDE_PATH="${PKG_CONFIG_SYSTEM_INCLUDE_PATH:-@PKGCONF_SYSINCDIR_LOCAL@}"
|
||||||
|
else
|
||||||
|
export PKG_CONFIG_LIBDIR="${PKG_CONFIG_LIBDIR:-@PKGCONF_LIBDIRS@}"
|
||||||
|
export PKG_CONFIG_SYSTEM_LIBRARY_PATH="${PKG_CONFIG_SYSTEM_LIBRARY_PATH:-@PKGCONF_SYSLIBDIR@}"
|
||||||
|
export PKG_CONFIG_SYSTEM_INCLUDE_PATH="${PKG_CONFIG_SYSTEM_INCLUDE_PATH:-@PKGCONF_SYSINCDIR@}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
exec pkgconf "$@"
|
@ -0,0 +1,425 @@
|
|||||||
|
# pkgconf acts as pkgconfig for Fedora and EL8+
|
||||||
|
%if (0%{?rhel} && 0%{?rhel} <= 7)
|
||||||
|
%bcond_with pkgconfig_compat
|
||||||
|
%else
|
||||||
|
%bcond_without pkgconfig_compat
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%if %{with pkgconfig_compat}
|
||||||
|
%global pkgconfig_ver 0.29.1
|
||||||
|
# For obsoleting pkgconfig
|
||||||
|
%global pkgconfig_verrel %{pkgconfig_ver}-3
|
||||||
|
%global pkgconfig_evr 1:%{pkgconfig_verrel}
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Tests are disabled on RHEL 9 because of the extensive dependencies
|
||||||
|
%if 0%{?rhel} >= 9
|
||||||
|
%bcond_with tests
|
||||||
|
%else
|
||||||
|
%bcond_without tests
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# Search path for pc files for pkgconf
|
||||||
|
%global pkgconf_libdirs %{_libdir}/pkgconfig:%{_datadir}/pkgconfig
|
||||||
|
|
||||||
|
Name: pkgconf
|
||||||
|
Version: 1.7.3
|
||||||
|
Release: 10%{?dist}
|
||||||
|
Summary: Package compiler and linker metadata toolkit
|
||||||
|
|
||||||
|
License: ISC
|
||||||
|
URL: http://pkgconf.org/
|
||||||
|
# Mirror at https://releases.pagure.org/pkgconf/pkgconf/
|
||||||
|
Source0: https://distfiles.dereferenced.org/%{name}/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
# Simple wrapper scripts to offer platform versions of pkgconfig
|
||||||
|
Source1: platform-pkg-config.in
|
||||||
|
Source2: pkg-config.in
|
||||||
|
|
||||||
|
# Don't prepend sysroot_dir if pkg-config file lies outside of sysroot_dir
|
||||||
|
# See https://github.com/pkgconf/pkgconf/issues/213
|
||||||
|
# See https://bugzilla.redhat.com/show_bug.cgi?id=1974883
|
||||||
|
# See https://bugzilla.redhat.com/1975416
|
||||||
|
# Cherry picked from https://github.com/pkgconf/pkgconf/commit/ed86f2dda3bc99e34775f0fae54e314718037516
|
||||||
|
Patch1: 0001-Don-t-prepend-sysroot_dir-if-pkg-config-file-lies-ou.patch
|
||||||
|
|
||||||
|
BuildRequires: gcc
|
||||||
|
BuildRequires: make
|
||||||
|
|
||||||
|
# For regenerating autotools scripts
|
||||||
|
BuildRequires: autoconf
|
||||||
|
BuildRequires: automake
|
||||||
|
BuildRequires: libtool
|
||||||
|
|
||||||
|
%if %{with tests}
|
||||||
|
# For unit tests
|
||||||
|
BuildRequires: kyua
|
||||||
|
BuildRequires: atf-tests
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# pkgconf uses libpkgconf internally
|
||||||
|
Requires: lib%{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
# This is defined within pkgconf code as a virtual pc (just like in pkgconfig)
|
||||||
|
Provides: pkgconfig(pkgconf) = %{version}
|
||||||
|
|
||||||
|
%description
|
||||||
|
pkgconf is a program which helps to configure compiler and linker flags
|
||||||
|
for development frameworks. It is similar to pkg-config from freedesktop.org
|
||||||
|
and handles .pc files in a similar manner as pkg-config.
|
||||||
|
|
||||||
|
%package -n lib%{name}
|
||||||
|
Summary: Backend library for %{name}
|
||||||
|
|
||||||
|
%description -n lib%{name}
|
||||||
|
This package provides libraries for applications to use the functionality
|
||||||
|
of %{name}.
|
||||||
|
|
||||||
|
%package -n lib%{name}-devel
|
||||||
|
Summary: Development files for lib%{name}
|
||||||
|
Requires: lib%{name}%{?_isa} = %{version}-%{release}
|
||||||
|
|
||||||
|
%description -n lib%{name}-devel
|
||||||
|
This package provides files necessary for developing applications
|
||||||
|
to use functionality provided by %{name}.
|
||||||
|
|
||||||
|
%if %{with pkgconfig_compat}
|
||||||
|
%package m4
|
||||||
|
Summary: m4 macros for pkgconf
|
||||||
|
License: GPLv2+ with exceptions
|
||||||
|
BuildArch: noarch
|
||||||
|
# Ensure that it Conflicts and Obsoletes pkgconfig since it contains content formerly from it
|
||||||
|
Conflicts: pkgconfig < %{pkgconfig_evr}
|
||||||
|
Obsoletes: pkgconfig < %{pkgconfig_evr}
|
||||||
|
|
||||||
|
%description m4
|
||||||
|
This package includes m4 macros used to support PKG_CHECK_MODULES
|
||||||
|
when using pkgconf with autotools.
|
||||||
|
|
||||||
|
%package pkg-config
|
||||||
|
Summary: %{name} shim to provide /usr/bin/pkg-config
|
||||||
|
# Ensure that it Conflicts with pkgconfig and is considered "better"
|
||||||
|
Conflicts: pkgconfig < %{pkgconfig_evr}
|
||||||
|
Obsoletes: pkgconfig < %{pkgconfig_evr}
|
||||||
|
Provides: pkgconfig = %{pkgconfig_evr}
|
||||||
|
Provides: pkgconfig%{?_isa} = %{pkgconfig_evr}
|
||||||
|
# This is in the original pkgconfig package, set to match output from pkgconf
|
||||||
|
Provides: pkgconfig(pkg-config) = %{version}
|
||||||
|
# Generic pkg-config Provides for those who might use alternate package name
|
||||||
|
Provides: pkg-config = %{pkgconfig_verrel}
|
||||||
|
Provides: pkg-config%{?_isa} = %{pkgconfig_verrel}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: %{name}-m4 = %{version}-%{release}
|
||||||
|
|
||||||
|
%description pkg-config
|
||||||
|
This package provides the shim links for pkgconf to be automatically
|
||||||
|
used in place of pkgconfig. This ensures that pkgconf is used as
|
||||||
|
the system provider of pkg-config.
|
||||||
|
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
%build
|
||||||
|
autoreconf -fiv
|
||||||
|
%configure --disable-static \
|
||||||
|
--with-pkg-config-dir=%{pkgconf_libdirs} \
|
||||||
|
--with-system-includedir=%{_includedir} \
|
||||||
|
--with-system-libdir=%{_libdir}
|
||||||
|
|
||||||
|
%make_build V=1
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
%if %{with tests}
|
||||||
|
make check
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%make_install
|
||||||
|
|
||||||
|
find %{buildroot} -name '*.la' -print -delete
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_sysconfdir}/pkgconfig/personality.d
|
||||||
|
mkdir -p %{buildroot}%{_datadir}/pkgconfig/personality.d
|
||||||
|
|
||||||
|
# pkgconf rpm macros
|
||||||
|
mkdir -p %{buildroot}%{_rpmmacrodir}/
|
||||||
|
|
||||||
|
cat > %{buildroot}%{_rpmmacrodir}/macros.pkgconf <<EOM
|
||||||
|
%%pkgconfig_personalitydir %{_datadir}/pkgconfig/personality.d
|
||||||
|
EOM
|
||||||
|
|
||||||
|
%if %{with pkgconfig_compat}
|
||||||
|
install -pm 0755 %{SOURCE1} %{buildroot}%{_bindir}/%{_target_platform}-pkg-config
|
||||||
|
|
||||||
|
sed -e "s|@TARGET_PLATFORM@|%{_target_platform}|" \
|
||||||
|
-e "s|@PKGCONF_LIBDIRS_LOCAL@|/usr/local/%{_lib}/pkgconfig:/usr/local/share/pkgconfig:%{pkgconf_libdirs}|" \
|
||||||
|
-e "s|@PKGCONF_SYSLIBDIR_LOCAL@|/usr/local/%{_lib}:%{_libdir}|" \
|
||||||
|
-e "s|@PKGCONF_SYSINCDIR_LOCAL@|/usr/local/include:%{_includedir}|" \
|
||||||
|
-e "s|@PKGCONF_LIBDIRS@|%{pkgconf_libdirs}|" \
|
||||||
|
-e "s|@PKGCONF_SYSLIBDIR@|%{_libdir}|" \
|
||||||
|
-e "s|@PKGCONF_SYSINCDIR@|%{_includedir}|" \
|
||||||
|
-i %{buildroot}%{_bindir}/%{_target_platform}-pkg-config
|
||||||
|
|
||||||
|
install -pm 0755 %{SOURCE2} %{buildroot}%{_bindir}/pkg-config
|
||||||
|
|
||||||
|
sed -e "s|@PKGCONF_BINDIR@|%{_bindir}|" \
|
||||||
|
-i %{buildroot}%{_bindir}/pkg-config
|
||||||
|
|
||||||
|
# Link pkg-config(1) to pkgconf(1)
|
||||||
|
echo ".so man1/pkgconf.1" > %{buildroot}%{_mandir}/man1/pkg-config.1
|
||||||
|
|
||||||
|
mkdir -p %{buildroot}%{_libdir}/pkgconfig
|
||||||
|
mkdir -p %{buildroot}%{_datadir}/pkgconfig
|
||||||
|
%endif
|
||||||
|
|
||||||
|
# If we're not providing pkgconfig override & compat
|
||||||
|
# we should not provide the pkgconfig m4 macros
|
||||||
|
%if ! %{with pkgconfig_compat}
|
||||||
|
rm -rf %{buildroot}%{_datadir}/aclocal
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%ldconfig_scriptlets -n lib%{name}
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license COPYING
|
||||||
|
%doc README.md AUTHORS NEWS
|
||||||
|
%{_bindir}/%{name}
|
||||||
|
%{_mandir}/man1/%{name}.1*
|
||||||
|
%{_mandir}/man5/pc.5*
|
||||||
|
%{_mandir}/man5/%{name}-personality.5*
|
||||||
|
%{_rpmmacrodir}/macros.pkgconf
|
||||||
|
%dir %{_sysconfdir}/pkgconfig
|
||||||
|
%dir %{_sysconfdir}/pkgconfig/personality.d
|
||||||
|
%dir %{_datadir}/pkgconfig/personality.d
|
||||||
|
|
||||||
|
%files -n lib%{name}
|
||||||
|
%license COPYING
|
||||||
|
%{_libdir}/lib%{name}*.so.*
|
||||||
|
|
||||||
|
%files -n lib%{name}-devel
|
||||||
|
%{_libdir}/lib%{name}*.so
|
||||||
|
%{_includedir}/%{name}/
|
||||||
|
%{_libdir}/pkgconfig/lib%{name}.pc
|
||||||
|
|
||||||
|
%if %{with pkgconfig_compat}
|
||||||
|
%files m4
|
||||||
|
%{_datadir}/aclocal/pkg.m4
|
||||||
|
%{_mandir}/man7/pkg.m4.7*
|
||||||
|
|
||||||
|
%files pkg-config
|
||||||
|
%{_bindir}/pkg-config
|
||||||
|
%{_bindir}/%{_target_platform}-pkg-config
|
||||||
|
%{_mandir}/man1/pkg-config.1*
|
||||||
|
%dir %{_libdir}/pkgconfig
|
||||||
|
%dir %{_datadir}/pkgconfig
|
||||||
|
%endif
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
* Fri Apr 14 2023 MSVSphere Packaging Team <packager@msvsphere.ru> - 1.7.3-10
|
||||||
|
- Rebuilt for MSVSphere 9.2 beta
|
||||||
|
|
||||||
|
* Thu Oct 07 2021 Richard W.M. Jones <rjones@redhat.com> - 1.7.3-10
|
||||||
|
- Don't prepend sysroot_dir if pkg-config file lies outside of sysroot_dir
|
||||||
|
resolves: rhbz#1975416
|
||||||
|
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1.7.3-9
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.7.3-8
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Mon Feb 22 2021 Tomas Popela <tpopela@redhat.com> - 1.7.3-7
|
||||||
|
- Conditionalize the unit tests, disable them on RHEL 9
|
||||||
|
|
||||||
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.3-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Oct 19 2020 Neal Gompa <ngompa13@gmail.com> - 1.7.3-5
|
||||||
|
- Use internal target platform definition for pkg-config wrapper
|
||||||
|
|
||||||
|
* Thu Oct 15 2020 Neal Gompa <ngompa13@gmail.com> - 1.7.3-4
|
||||||
|
- Fix pkg-config wrapper for armv7hl
|
||||||
|
|
||||||
|
* Thu Oct 15 2020 Neal Gompa <ngompa13@gmail.com> - 1.7.3-3
|
||||||
|
- Make /usr/bin/pkg-config multilib safe
|
||||||
|
|
||||||
|
* Mon Aug 10 2020 Neal Gompa <ngompa13@gmail.com> - 1.7.3-2
|
||||||
|
- Add /usr/local paths to pkg-config(1) search path for non RPM builds
|
||||||
|
|
||||||
|
* Mon Aug 03 2020 Neal Gompa <ngompa13@gmail.com> - 1.7.3-1
|
||||||
|
- Update to 1.7.3
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-3
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.7.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon May 25 2020 Igor Raits <ignatenkobrain@fedoraproject.org> - 1.7.0-1
|
||||||
|
- Update to 1.7.0
|
||||||
|
|
||||||
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.6.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 14 13:23:30 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.6.3-1
|
||||||
|
- Update to 1.6.3
|
||||||
|
|
||||||
|
* Fri Jul 12 09:36:57 CEST 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.6.2-1
|
||||||
|
- Update to 1.6.2
|
||||||
|
|
||||||
|
* Mon Mar 25 2019 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.6.1-1
|
||||||
|
- Update to 1.6.1
|
||||||
|
|
||||||
|
* Sat Feb 09 2019 Neal Gompa <ngompa13@gmail.com> - 1.6.0-1
|
||||||
|
- Update to 1.6.0
|
||||||
|
- Add personality.d directories for cross-targets
|
||||||
|
- Add pkgconf rpm macros for pkgconf directories
|
||||||
|
|
||||||
|
* Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.4-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Nov 27 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.5.4-1
|
||||||
|
- Update to 1.5.4
|
||||||
|
|
||||||
|
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 1.5.3-2
|
||||||
|
- Rebuild with fixed binutils
|
||||||
|
|
||||||
|
* Sun Jul 29 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.5.3-1
|
||||||
|
- Update to 1.5.3
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 29 2018 Neal Gompa <ngompa13@gmail.com> - 1.5.1-2
|
||||||
|
- Add patch to fix system path override issue
|
||||||
|
|
||||||
|
* Wed Jun 27 2018 Neal Gompa <ngompa13@gmail.com> - 1.5.1-1
|
||||||
|
- Upgrade to 1.5.1
|
||||||
|
|
||||||
|
* Sat Mar 31 2018 Neal Gompa <ngompa13@gmail.com> - 1.4.2-1
|
||||||
|
- Update to 1.4.2
|
||||||
|
- Drop conditionals for old Fedora releases
|
||||||
|
|
||||||
|
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.4.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.1-2
|
||||||
|
- Switch to %%ldconfig_scriptlets
|
||||||
|
|
||||||
|
* Tue Jan 23 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.4.1-1
|
||||||
|
- Update to 1.4.1
|
||||||
|
|
||||||
|
* Sun Jan 07 2018 Neal Gompa <ngompa13@gmail.com> - 1.4.0-2
|
||||||
|
- Move pc(5) manpage to main pkgconf package
|
||||||
|
|
||||||
|
* Fri Jan 05 2018 Neal Gompa <ngompa13@gmail.com> - 1.4.0-1
|
||||||
|
- Update to 1.4.0
|
||||||
|
|
||||||
|
* Fri Jan 05 2018 Neal Gompa <ngompa13@gmail.com> - 1.3.90-2
|
||||||
|
- Add simple wrapper to support platform-specific pkg-config paths (#1513810)
|
||||||
|
|
||||||
|
* Tue Dec 19 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.90-1
|
||||||
|
- Update to 1.3.90
|
||||||
|
|
||||||
|
* Sun Dec 10 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.12-1
|
||||||
|
- Update to 1.3.12
|
||||||
|
|
||||||
|
* Wed Nov 01 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.10-1
|
||||||
|
- Update to 1.3.10
|
||||||
|
|
||||||
|
* Wed Sep 20 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.9-1
|
||||||
|
- Update to 1.3.9
|
||||||
|
|
||||||
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.8-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.3.8-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 17 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.8-1
|
||||||
|
- Update to 1.3.8
|
||||||
|
|
||||||
|
* Sun May 28 2017 Neal Gompa <ngompa13@gmail.com> - 1.3.7-1
|
||||||
|
- Update to 1.3.7
|
||||||
|
|
||||||
|
* Wed May 10 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.6-1
|
||||||
|
- Update to 1.3.6
|
||||||
|
|
||||||
|
* Tue Apr 04 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.5-1
|
||||||
|
- Update to 1.3.5
|
||||||
|
|
||||||
|
* Thu Mar 30 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.4-1
|
||||||
|
- Update to 1.3.4
|
||||||
|
|
||||||
|
* Mon Mar 27 2017 Neal Gompa <ngompa13@gmail.com> - 1.3.3-1
|
||||||
|
- Update to 1.3.3
|
||||||
|
|
||||||
|
* Fri Mar 24 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.3.2-1
|
||||||
|
- Update to 1.3.2
|
||||||
|
|
||||||
|
* Sat Feb 25 2017 Neal Gompa <ngompa13@gmail.com> - 1.3.0-1
|
||||||
|
- Update to 1.3.0
|
||||||
|
|
||||||
|
* Tue Feb 07 2017 Neal Gompa <ngompa13@gmail.com> - 1.2.2-2
|
||||||
|
- Backport patch from upstream to remove extraneous whitespace (#1419685)
|
||||||
|
|
||||||
|
* Fri Feb 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.2.2-1
|
||||||
|
- Update to 1.2.2
|
||||||
|
|
||||||
|
* Thu Feb 02 2017 Neal Gompa <ngompa13@gmail.com> - 1.2.1-3
|
||||||
|
- Fix Obsoletes and Conflicts to prevent self-conflicts
|
||||||
|
|
||||||
|
* Thu Feb 02 2017 Neal Gompa <ngompa13@gmail.com> - 1.2.1-2
|
||||||
|
- Adjust Obsoletes and Conflicts to use inclusive range
|
||||||
|
|
||||||
|
* Tue Jan 24 2017 Igor Gnatenko <ignatenko@redhat.com> - 1.2.1-1
|
||||||
|
- Update to 1.2.1
|
||||||
|
|
||||||
|
* Sat Jan 21 2017 Neal Gompa <ngompa13@gmail.com> - 1.2.0-1
|
||||||
|
- Upgrade to 1.2.0
|
||||||
|
- Enable pkgconf-pkg-config and pkgconf-m4 for F26+
|
||||||
|
|
||||||
|
* Sat Jan 14 2017 Neal Gompa <ngompa13@gmail.com> - 1.1.1-3
|
||||||
|
- Add missing pkgconfig() Provides for virtual .pc files defined in pkgconf
|
||||||
|
|
||||||
|
* Fri Jan 13 2017 Neal Gompa <ngompa13@gmail.com> - 1.1.1-2
|
||||||
|
- Add missing Epoch to pkgconfig Provides/Conflicts for pkgconf-pkg-config
|
||||||
|
- Add copy of pkgconf.1 as pkg-config.1 in pkgconf-pkg-config
|
||||||
|
|
||||||
|
* Sat Jan 07 2017 Neal Gompa <ngompa13@gmail.com> - 1.1.1-1
|
||||||
|
- Upgrade to 1.1.1
|
||||||
|
- Add missing directories to pkgconf-pkg-config
|
||||||
|
|
||||||
|
* Sun Jan 01 2017 Neal Gompa <ngompa13@gmail.com> - 1.1.0-3
|
||||||
|
- Fix up spec per package review (#1409332)
|
||||||
|
|
||||||
|
* Sat Dec 31 2016 Neal Gompa <ngompa13@gmail.com> - 1.1.0-2
|
||||||
|
- Rework package to not generate conflict with pkgconfig
|
||||||
|
- Disable pkgconf-m4 and pkgconf-pkg-config by default
|
||||||
|
|
||||||
|
* Sat Dec 31 2016 Neal Gompa <ngompa13@gmail.com> - 1.1.0-1
|
||||||
|
- Upgrade to 1.1.0
|
||||||
|
- Enable libpkgconf libraries now that they are ABI+API stable
|
||||||
|
|
||||||
|
* Tue Oct 25 2016 Neal Gompa <ngompa13@gmail.com> - 1.0.2-1
|
||||||
|
- Upgrade to 1.0.2
|
||||||
|
|
||||||
|
* Fri Aug 26 2016 Neal Gompa <ngompa13@gmail.com> - 1.0.1-2
|
||||||
|
- Add subpackage for providing pkg-config shim
|
||||||
|
- Enable tests
|
||||||
|
|
||||||
|
* Thu Aug 25 2016 Neal Gompa <ngompa13@gmail.com> - 1.0.1-1
|
||||||
|
- Upgrade to 1.0.1
|
||||||
|
|
||||||
|
* Wed Aug 24 2016 Neal Gompa <ngompa13@gmail.com> - 1-1
|
||||||
|
- Initial packaging
|
Loading…
Reference in new issue