2009-06-13 01:04:13 +00:00
|
|
|
Name: libxdg-basedir
|
2012-01-23 14:40:18 +00:00
|
|
|
Version: 1.2.0
|
2023-04-28 07:19:08 +00:00
|
|
|
Release: 29.0.riscv64%{?dist}
|
2009-06-13 01:04:13 +00:00
|
|
|
Summary: Implementation of the XDG Base Directory Specifications
|
|
|
|
|
|
|
|
License: MIT
|
2019-02-12 15:21:48 +00:00
|
|
|
URL: https://github.com/devnev/libxdg-basedir
|
|
|
|
Source0: https://github.com/devnev/%{name}/archive/%{name}-%{version}.tar.gz
|
2013-10-31 13:35:10 +00:00
|
|
|
Patch0: libxdg-basedir-leak.patch
|
2019-02-13 17:34:19 +00:00
|
|
|
Patch1: libxdg-basedir-valgrind-libtool.patch
|
2019-02-12 15:21:48 +00:00
|
|
|
Patch2: libxdg-basedir-basedir-bounds-error.patch
|
2019-04-01 14:59:26 +00:00
|
|
|
Patch3: libxdg-basedir-home-undef.patch
|
2023-04-28 07:19:08 +00:00
|
|
|
%ifarch %{valgrind_arches}
|
|
|
|
BuildRequires: valgrind
|
|
|
|
%endif
|
|
|
|
BuildRequires: libtool
|
2009-06-13 01:04:13 +00:00
|
|
|
|
|
|
|
%description
|
|
|
|
The XDG Base Directory Specification defines where should user files
|
|
|
|
be looked for by defining one or more base directories relative in
|
|
|
|
with they should be located.
|
|
|
|
|
|
|
|
This library implements functions to list the directories according
|
|
|
|
to the specification and provides a few higher-level functions.
|
|
|
|
|
|
|
|
|
|
|
|
%package devel
|
|
|
|
Summary: Development files for %{name}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
|
|
|
Requires: pkgconfig
|
|
|
|
|
|
|
|
%description devel
|
|
|
|
The %{name}-devel package contains libraries and header files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%package doc
|
|
|
|
Summary: Documentation files for %{name}
|
|
|
|
Requires: %{name} = %{version}-%{release}
|
2018-07-09 17:06:48 +00:00
|
|
|
BuildRequires: gcc
|
2009-06-13 01:04:13 +00:00
|
|
|
BuildRequires: doxygen
|
2021-01-05 03:07:54 +00:00
|
|
|
BuildRequires: make
|
2009-06-13 01:04:13 +00:00
|
|
|
|
|
|
|
%description doc
|
|
|
|
The %{name}-doc package contains doxygen generated files for
|
|
|
|
developing applications that use %{name}.
|
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
2013-10-31 13:35:10 +00:00
|
|
|
%patch0 -p1
|
2019-02-13 17:34:19 +00:00
|
|
|
%patch1 -p1
|
|
|
|
%patch2 -p1
|
2019-04-01 14:59:26 +00:00
|
|
|
%patch3 -p1
|
2009-06-13 01:04:13 +00:00
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --disable-static
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
make doxygen-run
|
|
|
|
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR="$RPM_BUILD_ROOT"
|
|
|
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
|
|
|
|
|
|
|
2019-02-12 15:21:48 +00:00
|
|
|
%check
|
2023-04-28 07:19:08 +00:00
|
|
|
%ifarch %{valgrind_arches}
|
2019-02-12 15:21:48 +00:00
|
|
|
make check USE_VALGRIND=1
|
2023-04-28 08:04:45 +00:00
|
|
|
%else
|
|
|
|
make check
|
2023-04-28 07:19:08 +00:00
|
|
|
%endif
|
2020-08-05 19:41:59 +00:00
|
|
|
#env -i make check USE_VALGRIND=1
|
2019-04-01 18:54:08 +00:00
|
|
|
# Check that we get NULL for all things rooted in ENV{HOME} when running
|
|
|
|
# with HOME unset
|
|
|
|
env -i ./tests/testdump | grep null > grep.NULL
|
|
|
|
env -i ./tests/testdump | grep HOME | grep -v DIRS > grep.HOME
|
|
|
|
diff -u grep.NULL grep.HOME
|
2009-06-13 01:04:13 +00:00
|
|
|
|
2019-01-22 17:40:17 +00:00
|
|
|
%ldconfig_scriptlets
|
2009-06-13 01:04:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
%files
|
|
|
|
%{_libdir}/*.so.*
|
|
|
|
|
|
|
|
%files devel
|
|
|
|
%{_includedir}/*
|
|
|
|
%{_libdir}/*.so
|
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
|
|
|
|
%files doc
|
|
|
|
%doc doc/html/
|
|
|
|
|
|
|
|
%changelog
|
2023-04-28 07:19:08 +00:00
|
|
|
* Fri Apr 28 2023 David Abdurachmanov <davidlt@rivosin.com> - 1.2.0-29.0.riscv64
|
|
|
|
- Properly check valgrind arches
|
|
|
|
|
2023-01-19 17:52:38 +00:00
|
|
|
* Thu Jan 19 2023 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-29
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
|
|
|
|
2022-07-21 19:27:19 +00:00
|
|
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-28
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
|
|
|
|
2022-01-20 17:40:40 +00:00
|
|
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-27
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
|
|
|
|
2021-07-22 12:47:24 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-26
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-01-26 18:22:08 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-25
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-08-01 04:13:45 +00:00
|
|
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-24
|
|
|
|
- Second attempt - Rebuilt for
|
|
|
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-07-28 05:57:24 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-23
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-01-29 10:50:36 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-22
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-25 14:46:56 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-21
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-04-01 18:54:08 +00:00
|
|
|
* Mon Apr 01 2019 Gwyn Ciesla <gwync@protonmail.com> - 1.2.0-20
|
|
|
|
- Enhance testing.
|
|
|
|
|
2019-04-01 16:10:35 +00:00
|
|
|
* Mon Apr 01 2019 Gwyn Ciesla <gwync@protonmail.com> - 1.2.0-19
|
|
|
|
- Patch correction.
|
|
|
|
|
2019-04-01 14:59:26 +00:00
|
|
|
* Mon Apr 01 2019 Gwyn Ciesla <gwync@protonmail.com> - 1.2.0-18
|
|
|
|
- Patch to handle undefined homedir, BZ 1694706.
|
|
|
|
|
2019-02-13 17:34:19 +00:00
|
|
|
* Wed Feb 13 2019 Gwyn Ciesla <gwync@protonmail.com> - 1.2.0-17
|
|
|
|
- Updated valgrind patch.
|
|
|
|
|
2019-02-12 15:21:48 +00:00
|
|
|
* Tue Feb 12 2019 Gwyn Ciesla <gwync@protonmail.com> - 1.2.0-16
|
|
|
|
- Relocated upstream, crash patch.
|
|
|
|
|
2019-02-01 08:36:23 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-15
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 09:05:44 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-14
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-02-07 23:45:05 +00:00
|
|
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-03 02:32:53 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 20:01:03 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-11
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 19:43:39 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-10
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-02-04 04:10:48 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.0-9
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 18:00:06 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-8
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2014-08-17 06:54:15 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-07 06:09:13 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-10-31 13:35:10 +00:00
|
|
|
* Thu Oct 31 2013 Jon Ciesla <limburgher@gmail.com> - 1.2.0-5
|
|
|
|
- Patch for memory leak, BZ 1018527.
|
|
|
|
|
2013-08-03 07:33:26 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-14 05:32:45 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-07-19 21:42:00 +00:00
|
|
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-01-23 14:40:18 +00:00
|
|
|
* Mon Jan 23 2012 Jon Ciesla <limburgher@gmail.com> - 1.2.0-1
|
|
|
|
- New upstream, BZ 783762.
|
|
|
|
- Temporarily disabling make check tests. Succeeding locally, failing in RPM.
|
|
|
|
|
2012-01-13 08:41:14 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-02-08 12:54:29 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.1.1-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-07-16 17:59:27 +00:00
|
|
|
* Fri Jul 16 2010 Michal Nowak <mnowak@redhat.com> - 1.1.1-1
|
|
|
|
- 1.1.1
|
|
|
|
|
2010-05-09 18:35:06 +00:00
|
|
|
* Sun May 9 2010 Michal Nowak <mnowak@redhat.com> - 1.1.0-1
|
|
|
|
- 1.1.0
|
|
|
|
|
2009-09-01 08:23:20 +00:00
|
|
|
* Tue Sep 1 2009 Michal Nowak <mnowak@redhat.com> - 1.0.2-1
|
|
|
|
- 1.0.2
|
|
|
|
|
2009-07-25 08:57:00 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0.1-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-06-13 01:04:13 +00:00
|
|
|
* Tue Jun 9 2009 Michal Nowak <mnowak@redhat.com> - 1.0.1-2
|
|
|
|
- removed bogus ownership of %%{_libdir}/pkgconfig/
|
|
|
|
- "docs" sub-package renamed to "doc"
|
|
|
|
|
|
|
|
* Mon Jun 8 2009 Michal Nowak <mnowak@redhat.com> - 1.0.1-1
|
|
|
|
- 1.0.1
|
|
|
|
- -devel: require pkgconfig, own %%{_libdir}/pkgconfig/
|
|
|
|
- -docs: sub-package
|
|
|
|
- make check tests
|
|
|
|
- SPEC cleanups
|
|
|
|
|
|
|
|
* Thu May 7 2009 Michal Nowak <mnowak@redhat.com> - 1.0.0-1
|
|
|
|
- 1.0.0
|
|
|
|
|