167b4f
# When we are bootstrapping, we drop some dependencies.
167b4f
# Set this to 0 after bootstrapping.
167b4f
%{!?_with_bootstrap: %global bootstrap 0}
167b4f
167b4f
Name:           libproxy
167b4f
Version:        0.4.15
167b4f
Release:        35%{?dist}
167b4f
Summary:        A library handling all the details of proxy configuration
167b4f
167b4f
License:        LGPLv2+
167b4f
URL:            https://libproxy.github.io/libproxy/
167b4f
Source0:        https://github.com/libproxy/%{name}/archive/%{version}.tar.gz
167b4f
# Taken from the Debian package.
167b4f
Source1:        proxy.1
167b4f
Source2:        Copyright.txt
167b4f
Patch1:         libproxy-0.4.11-crash.patch
167b4f
Patch2:         libproxy-0.4.15-python3738.patch
167b4f
# https://github.com/libproxy/libproxy/pull/86
167b4f
# https://github.com/libproxy/libproxy/pull/87
167b4f
Patch3:         libproxy-0.4.15-mozjs52.patch
167b4f
# https://github.com/libproxy/libproxy/pull/95
167b4f
Patch4:         libproxy-0.4.15-mozjs60.patch
167b4f
# https://github.com/libproxy/libproxy/pull/106
167b4f
Patch5:         libproxy-0.4.15-python39.patch
167b4f
# https://github.com/libproxy/libproxy/pull/109
167b4f
Patch6:         libproxy-0.4.15-mozjs68.patch
167b4f
# https://github.com/libproxy/libproxy/pull/118
167b4f
Patch7:         libproxy-0.4.15-mozjs-use-after-free.patch
167b4f
# https://bugzilla.redhat.com/show_bug.cgi?id=1880350
167b4f
Patch8:         libproxy-0.4.15-fix-CVE-2020-25219.patch
167b4f
# https://bugzilla.redhat.com/show_bug.cgi?id=1883584
167b4f
Patch9:         libproxy-0.4.15-fix-pac-buffer-overflow.patch
167b4f
167b4f
BuildRequires:  cmake >= 2.6.0
167b4f
BuildRequires:  gcc-c++
167b4f
167b4f
%if ! 0%{?bootstrap}
167b4f
# gnome
167b4f
BuildRequires:  pkgconfig(gio-2.0) >= 2.26
167b4f
# webkit (gtk3)
167b4f
BuildRequires:  pkgconfig(javascriptcoregtk-4.0)
167b4f
# Python
167b4f
BuildRequires:  python3-devel
167b4f
%else
167b4f
# Obsoletes of disabled subpackages.
167b4f
Provides: %{name}-mozjs = %{version}-%{release}
167b4f
Obsoletes: %{name}-mozjs < %{version}-%{release}
167b4f
Provides: %{name}-webkitgtk4 = %{version}-%{release}
167b4f
Obsoletes: %{name}-webkitgtk4 < %{version}-%{release}
167b4f
%endif
167b4f
# The Python 2 subpackage was removed. Remove in F32.
167b4f
Obsoletes: python2-libproxy < %{version}-%{release}
167b4f
167b4f
167b4f
%description
167b4f
libproxy offers the following features:
167b4f
167b4f
    * extremely small core footprint (< 35K)
167b4f
    * no external dependencies within libproxy core
167b4f
      (libproxy plugins may have dependencies)
167b4f
    * only 3 functions in the stable external API
167b4f
    * dynamic adjustment to changing network topology
167b4f
    * a standard way of dealing with proxy settings across all scenarios
167b4f
    * a sublime sense of joy and accomplishment
167b4f
167b4f
167b4f
%package        bin
167b4f
Summary:        Binary to test %{name}
167b4f
Requires:       %{name}%{?_isa} = %{version}-%{release}
167b4f
167b4f
%description    bin
167b4f
The %{name}-bin package contains the proxy binary for %{name}
167b4f
167b4f
%if ! 0%{?bootstrap}
167b4f
%package -n     python3-%{name}
167b4f
Summary:        Binding for %{name} and python3
167b4f
Requires:       %{name} = %{version}-%{release}
167b4f
BuildArch:      noarch
167b4f
%{?python_provide:%python_provide python3-%{name}}
167b4f
167b4f
%description -n python3-%{name}
167b4f
The python3 binding for %{name}
167b4f
167b4f
%package        gnome
167b4f
Summary:        Plugin for %{name} and gnome
167b4f
Requires:       %{name}%{?_isa} = %{version}-%{release}
167b4f
167b4f
%description    gnome
167b4f
The %{name}-gnome package contains the %{name} plugin for gnome.
167b4f
167b4f
%if 0%{?fedora}
167b4f
%package        kde
167b4f
Summary:        Plugin for %{name} and kde
167b4f
Requires:       %{name}%{?_isa} = %{version}-%{release}
167b4f
Requires:       /usr/bin/kreadconfig5
167b4f
167b4f
%description    kde
167b4f
The %{name}-kde package contains the %{name} plugin for kde.
167b4f
%endif
167b4f
167b4f
%package        webkitgtk4
167b4f
Summary:        Plugin for %{name} and webkitgtk3
167b4f
Requires:       %{name}%{?_isa} = %{version}-%{release}
167b4f
Provides:       %{name}-pac = %{version}-%{release}
167b4f
Obsoletes:      %{name}-mozjs <= %{version}-%{release}
167b4f
167b4f
%description    webkitgtk4
167b4f
The %{name}-webkitgtk4 package contains the %{name} plugin for
167b4f
webkitgtk3.
167b4f
%endif
167b4f
167b4f
167b4f
%package        devel
167b4f
Summary:        Development files for %{name}
167b4f
Requires:       %{name}%{?_isa} = %{version}-%{release}
167b4f
167b4f
%description    devel
167b4f
The %{name}-devel package contains libraries and header files for
167b4f
developing applications that use %{name}.
167b4f
167b4f
%prep
167b4f
%autosetup -p1
167b4f
167b4f
167b4f
%build
167b4f
export CXXFLAGS="-std=c++14 $RPM_OPT_FLAGS"
167b4f
%{cmake} \
167b4f
  -DMODULE_INSTALL_DIR=%{_libdir}/%{name}/%{version}/modules \
167b4f
  -DBIPR=OFF \
167b4f
%if 0%{?fedora}
167b4f
  -DWITH_KDE=ON \
167b4f
%else
167b4f
  -DWITH_KDE=OFF \
167b4f
%endif
167b4f
  -DWITH_MOZJS=OFF \
167b4f
  -DWITH_PERL=OFF \
167b4f
%if ! 0%{?bootstrap}
167b4f
  -DWITH_GNOME3=ON \
167b4f
  -DWITH_PYTHON2=OFF \
167b4f
  -DWITH_PYTHON3=ON \
167b4f
  -DWITH_WEBKIT3=ON \
167b4f
%else
167b4f
  -DWITH_PYTHON2=OFF \
167b4f
  -DWITH_PYTHON3=OFF \
167b4f
%endif
167b4f
   .
167b4f
%cmake_build
167b4f
167b4f
167b4f
%install
167b4f
%cmake_install
167b4f
167b4f
#In case all modules are disabled
167b4f
mkdir -p %{buildroot}%{_libdir}/%{name}/%{version}/modules
167b4f
167b4f
# Man page.
167b4f
install -Dpm 0644 %{SOURCE1} %{buildroot}/%{_mandir}/man1/proxy.1
167b4f
167b4f
# CMake license (for FindPython[2,3]Interp.cmake)
167b4f
install -Dpm 0644 %{SOURCE2} %{buildroot}%{_datadir}/licenses/libproxy/Copyright.txt
167b4f
167b4f
%check
167b4f
%ctest
167b4f
167b4f
%ldconfig_scriptlets
167b4f
167b4f
167b4f
%files
167b4f
%doc AUTHORS README
167b4f
%license COPYING
167b4f
%license Copyright.txt
167b4f
%{_libdir}/*.so.*
167b4f
%dir %{_libdir}/%{name}
167b4f
%dir %{_libdir}/%{name}/%{version}
167b4f
%dir %{_libdir}/%{name}/%{version}/modules
167b4f
167b4f
%files bin
167b4f
%{_bindir}/proxy
167b4f
%{_mandir}/man1/proxy.1*
167b4f
167b4f
%if ! 0%{?bootstrap}
167b4f
%files -n python3-%{name}
167b4f
%{python3_sitelib}/__pycache__/*
167b4f
%{python3_sitelib}/%{name}.*
167b4f
167b4f
%files gnome
167b4f
%{_libdir}/%{name}/%{version}/modules/config_gnome3.so
167b4f
%{_libexecdir}/pxgsettings
167b4f
167b4f
%if 0%{?fedora}
167b4f
%files kde
167b4f
%{_libdir}/%{name}/%{version}/modules/config_kde.so
167b4f
%endif
167b4f
167b4f
%files webkitgtk4
167b4f
%{_libdir}/%{name}/%{version}/modules/pacrunner_webkit.so
167b4f
%endif
167b4f
167b4f
%files devel
167b4f
%{_includedir}/proxy.h
167b4f
%{_libdir}/*.so
167b4f
%{_libdir}/pkgconfig/libproxy-1.0.pc
167b4f
%{_datadir}/cmake/Modules/Findlibproxy.cmake
167b4f
167b4f
167b4f
%changelog
167b4f
* Wed Aug 25 2021 Michael Santana <msantana@redhat.com> - 0.4.15-35
167b4f
- Drop networkmanager subpackage. Resolves: rhbz#1996028
167b4f
167b4f
* Wed Aug 18 2021 Michael Santana <msantana@redhat.com> - 0.4.15-34
167b4f
- Drop pacrunner subpackage. Resolves: rhbz#1990974
167b4f
167b4f
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 0.4.15-33
167b4f
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
167b4f
  Related: rhbz#1991688
167b4f
167b4f
* Tue Jul 27 2021 Michael Santana <msantana@redhat.com> - 0.4.15-32
167b4f
- Add Copyright.txt. Resolves: rhbz#1986586
167b4f
167b4f
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 0.4.15-31
167b4f
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
167b4f
167b4f
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-30
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
167b4f
167b4f
* Mon Nov 30 2020 David King <amigadave@amigadave.com> - 0.4.15-29
167b4f
- Tweak KDE conditionals to only apply at runtime
167b4f
167b4f
* Mon Nov 30 2020 David King <amigadave@amigadave.com> - 0.4.15-28
167b4f
- Depend on KDE only on Fedora (#1902608)
167b4f
167b4f
* Tue Oct 06 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.4.15-27
167b4f
- Disable mozjs backend by default, obsolete it by webkit subpackage
167b4f
167b4f
* Tue Sep 29 2020 David King <amigadave@amigadave.com> - 0.4.15-26
167b4f
- Fix PAC buffer overflow (#1883584)
167b4f
167b4f
* Fri Sep 18 2020 David King <amigadave@amigadave.com> - 0.4.15-25
167b4f
- Fix CVE-2020-25219 (#1880350)
167b4f
167b4f
* Tue Aug 18 2020 Jeff Law <law@redhat.com> - 0.4.15-24
167b4f
- Force C++14 as this code is not C++17 ready
167b4f
167b4f
* Tue Aug 04 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.4.15-23
167b4f
- build with mozjs68
167b4f
- backport use after free fix for mozjs backend
167b4f
167b4f
* Tue Aug 04 2020 Frantisek Zatloukal <fzatlouk@redhat.com> - 0.4.15-22
167b4f
- Fix build by switching to cmake macros instead of make
167b4f
167b4f
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-21
167b4f
- Second attempt - Rebuilt for
167b4f
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
167b4f
167b4f
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-20
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
167b4f
167b4f
* Tue May 26 2020 Miro Hrončok <mhroncok@redhat.com> - 0.4.15-19
167b4f
- Rebuilt for Python 3.9
167b4f
167b4f
* Thu Feb 13 2020 David King <amigadave@amigadave.com> - 0.4.15-18
167b4f
- Fix build against Python 3.9 (#1791942)
167b4f
167b4f
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-17
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
167b4f
167b4f
* Thu Oct 03 2019 Miro Hrončok <mhroncok@redhat.com> - 0.4.15-16
167b4f
- Rebuilt for Python 3.8.0rc1 (#1748018)
167b4f
167b4f
* Mon Aug 19 2019 Miro Hrončok <mhroncok@redhat.com> - 0.4.15-15
167b4f
- Rebuilt for Python 3.8
167b4f
167b4f
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-14
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
167b4f
167b4f
* Fri Feb 08 2019 Kalev Lember <klember@redhat.com> - 0.4.15-13
167b4f
- Build with mozjs60
167b4f
167b4f
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-12
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
167b4f
167b4f
* Thu Nov 22 2018 David King <amigadave@amigadave.com> - 0.4.15-11
167b4f
- Add Obsoletes on old Python 2 subpackage (#1634211)
167b4f
167b4f
* Thu Sep 20 2018 David King <amigadave@amigadave.com> - 0.4.15-10
167b4f
- Remove Python 2 subpackage (#1631331)
167b4f
167b4f
* Sun Aug 26 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.4.15-9
167b4f
- Add patch and build against mozjs 52
167b4f
167b4f
* Fri Jul 20 2018 David King <amigadave@amigadave.com> - 0.4.15-8
167b4f
- Provide direct path to Python 2 (#1604646)
167b4f
167b4f
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-8
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
167b4f
167b4f
* Tue Jun 19 2018 Miro Hrončok <mhroncok@redhat.com> - 0.4.15-7
167b4f
- Rebuilt for Python 3.7
167b4f
167b4f
* Fri May 04 2018 David King <amigadave@amigadave.com> - 0.4.15-6
167b4f
- Resurrect an old patch (#1459779)
167b4f
- Add BuildRequires on gcc-c++
167b4f
- Switch to %%ldconfig_scriptlets
167b4f
- Remove obsolete Group tags
167b4f
167b4f
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-5
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
167b4f
167b4f
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-4
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
167b4f
167b4f
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.15-3
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
167b4f
167b4f
* Thu Jul 13 2017 David King <amigadave@amigadave.com> - 0.4.15-2
167b4f
- Use pkgconfig for BuildRequires
167b4f
- Fix crash in pacrunner module (#1459779)
167b4f
167b4f
* Tue May 16 2017 Peter Robinson <pbrobinson@fedoraproject.org> 0.4.15-1
167b4f
- Update to 0.4.15
167b4f
167b4f
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.14-2
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
167b4f
167b4f
* Mon Jan 09 2017 David King <amigadave@amigadave.com> - 0.4.14-1
167b4f
- Update to 0.4.14
167b4f
167b4f
* Sun Jan 01 2017 David King <amigadave@amigadave.com> - 0.4.13-1
167b4f
- Update to 0.4.13
167b4f
167b4f
* Mon Dec 19 2016 Miro Hrončok <mhroncok@redhat.com> - 0.4.12-5
167b4f
- Rebuild for Python 3.6
167b4f
167b4f
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.12-4
167b4f
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
167b4f
167b4f
* Mon Apr 04 2016 David King <amigadave@amigadave.com> - 0.4.12-3
167b4f
- Install bindings for both Python 2 and 3 (#1323251)
167b4f
167b4f
* Fri Mar 04 2016 David King <amigadave@amigadave.com> - 0.4.12-2
167b4f
- Fix a Python bindings crash on 64-bit systems (#1296817)
167b4f
167b4f
* Mon Feb 29 2016 David King <amigadave@amigadave.com> - 0.4.12-1
167b4f
- Update to 0.4.12
167b4f
- Simplify conditional macros
167b4f
- Use isa macro when requiring base package
167b4f
- Use license macro for COPYING
167b4f
- Use pkgconfig for BuildRequires
167b4f
- Use javascriptcoregtk-4.0
167b4f
- Apply an upstream patch to pair new[] with delete[]
167b4f
- Fix slowdown in KDE plugin
167b4f
- Make the pacrunner subpackage depend on pacrunner (#1171679)
167b4f
- Install man page from Debian
167b4f
167b4f
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.11-13
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
167b4f
167b4f
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.11-12
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
167b4f
167b4f
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.4.11-11
167b4f
- Rebuilt for GCC 5 C++11 ABI change
167b4f
167b4f
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.11-10
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
167b4f
167b4f
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.11-9
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
167b4f
167b4f
* Mon Nov 11 2013 Dan Winship <danw@redhat.com> - 0.4.11-8
167b4f
- Really fix the JS_AbortIfWrongThread crash (#998232)
167b4f
167b4f
* Thu Sep 19 2013 Dan Winship <danw@redhat.com> - 0.4.11-7
167b4f
- Fix file descriptor leak (#911066)
167b4f
- Fix crash when pacrunner fails (probably because of EMFILE...) (#998232)
167b4f
167b4f
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.11-6
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
167b4f
167b4f
* Thu Jul 18 2013 David Woodhouse <David.Woodhouse@intel.com> - 0.4.11-5
167b4f
- Add PacRunner module now that Fedora has PacRunner
167b4f
167b4f
* Mon Jun 03 2013 Colin Walters <walters@redhat.com> - 0.4.11-4
167b4f
- Add patch to build with mozjs17, use it by default
167b4f
167b4f
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.11-3
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
167b4f
167b4f
* Thu Jan  3 2013 Dan Winship <danw@redhat.com> - 0.4.11-2
167b4f
- Minor dependency fixes
167b4f
167b4f
* Mon Dec 03 2012 Nicolas Chauvet <kwizart@gmail.com> - 0.4.11-1
167b4f
- Update to 0.4.11 -  CVE-2012-5580
167b4f
167b4f
* Tue Oct 16 2012 Nicolas Chauvet <kwizart@gmail.com> - 0.4.10-1
167b4f
- Update to 0.4.10
167b4f
- Fix CVE-2012-4504
167b4f
167b4f
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.7-5
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
167b4f
167b4f
* Mon Feb 27 2012 Peter Robinson <pbrobinson@fedoraproject.org> - 0.4.7-4
167b4f
- Add upstream patches to use js rather than xulrunner
167b4f
- Add patch to fix FTBFS on gcc 4.7
167b4f
- Cleanup spec for latest updates and remove obsolete bits
167b4f
167b4f
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.4.7-3
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
167b4f
167b4f
* Tue Dec 06 2011 Adam Jackson <ajax@redhat.com> - 0.4.7-2
167b4f
- Rebuild for new libpng
167b4f
167b4f
* Tue Jun 07 2011 Nicolas Chauvet <kwizart@gmail.com> - 0.4.7-1
167b4f
- Update to 0.4.7
167b4f
- libproxy-1.0.pc is now reliable starting with 0.4.7
167b4f
167b4f
* Tue Apr 12 2011 Nicolas Chauvet <kwizart@gmail.com> - 0.4.7-0.1svn20110412
167b4f
- Update to 0.4.7 svn20110412
167b4f
- Add support for webkitgtk3
167b4f
- Add support for xulrunner 2.0
167b4f
- fix #683015 - libproxy fails with autoconfiguration
167b4f
- fix #683018 - libproxy needs BR: NetworkManager-glib-devel  (f14)
167b4f
- Manually fix libproxy-1.0.pc version field - #664781 / #674854
167b4f
167b4f
* Wed Nov 24 2010 Nicolas Chauvet <kwizart@gmail.com> - 0.4.6-3
167b4f
- Fix mozjs/webkit obsoletion - rhbz#656849
167b4f
- Workaround unreliable Version field in pkg-config - rhbz#656484
167b4f
167b4f
* Sun Nov 07 2010 Nicolas Chauvet <kwizart@gmail.com> - 0.4.6-1
167b4f
- Update to 0.4.6
167b4f
- Fix python module not arch dependant
167b4f
167b4f
* Mon Sep 06 2010 Nicolas Chauvet <kwizart@gmail.com> - 0.4.5-2
167b4f
- Update to 0.4.5
167b4f
- Disable mozjs on fedora >= 15
167b4f
- Disable webkit
167b4f
- Add libproxy bootstrap option to disable modules.
167b4f
167b4f
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.4.4-7
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
167b4f
167b4f
* Tue Jul 13 2010 Nicolas Chauvet <kwizart@gmail.com> - 0.4.4-6
167b4f
- Fix libproxy-1.0.pc
167b4f
167b4f
* Mon Jul 05 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 0.4.4-5
167b4f
- Re-enable mozjs and webkit
167b4f
167b4f
* Mon Jul 05 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 0.4.4-4
167b4f
- Disable mozjs to get around a build error temporarily
167b4f
167b4f
* Mon Jul 05 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 0.4.4-3
167b4f
- Disable webkit subpackage in order to resolve circular dep
167b4f
167b4f
* Sat Jul 03 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 0.4.4-2
167b4f
- Fix missing BuildRequires: libmodman-devel
167b4f
167b4f
* Sun Jun 13 2010 Nathaniel McCallum <nathaniel@natemccallum.com> - 0.4.4-1
167b4f
- Update to 0.4.4
167b4f
- Removed install workarounds (fixed upstream)
167b4f
- Removed patches (fixed upstream)
167b4f
- Moved -python to noarch
167b4f
- Downgrade cmake requirement (upstream change)
167b4f
- Disabled perl bindings
167b4f
- Run tests
167b4f
167b4f
* Thu Mar 11 2010 Nicolas Chauvet <kwizart@fedoraproject.org> - 0.3.1-4
167b4f
- Add missing libXmu-devel
167b4f
167b4f
* Sun Feb 21 2010 Nicolas Chauvet <kwizart@fedoraproject.org> - 0.3.1-4
167b4f
- Globalism and update gecko to 1.9.2
167b4f
- Avoid rpath on _libdir
167b4f
- Fix BR for kde4 to kdelibs-devel
167b4f
167b4f
* Sun Dec 27 2009 Nicolas Chauvet <kwizart@fedoraproject.org> - 0.3.1-1
167b4f
- Update to 0.3.1
167b4f
- Avoid dependecies on -python and -bin subpackages
167b4f
- Create -networkmanager sub-package.
167b4f
167b4f
* Thu Sep 24 2009 kwizart < kwizart at gmail.com > - 0.3.0-1
167b4f
- Update to 0.3.0
167b4f
167b4f
* Thu Sep 17 2009 kwizart < kwizart at gmail.com > - 0.2.3-12
167b4f
- Remove Requirement of %%{name}-pac virtual provides
167b4f
  from the main package - #524043
167b4f
167b4f
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-11
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
167b4f
167b4f
* Mon Mar  9 2009 kwizart < kwizart at gmail.com > - 0.2.3-10
167b4f
- Rebuild for webkit
167b4f
- Raise requirement for xulrunner to 1.9.1
167b4f
167b4f
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3-9
167b4f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
167b4f
167b4f
* Thu Jan 22 2009 kwizart < kwizart at gmail.com > - 0.2.3-8
167b4f
- Merge NetworkManager module into the main libproxy package
167b4f
- Main Requires the -python and -bin subpackage
167b4f
 (splitted for multilibs compliance).
167b4f
167b4f
* Fri Oct 24 2008 kwizart < kwizart at gmail.com > - 0.2.3-7
167b4f
- Disable Gnome/KDE default support via builtin modules.
167b4f
 (it needs to be integrated via Gconf2/neon instead).
167b4f
167b4f
* Tue Oct 21 2008 kwizart < kwizart at gmail.com > - 0.2.3-6
167b4f
- Disable Obsoletes.
167b4f
- Requires ev instead of evr for optionnals sub-packages.
167b4f
167b4f
* Tue Oct 21 2008 kwizart < kwizart at gmail.com > - 0.2.3-5
167b4f
- Use conditionals build.
167b4f
167b4f
* Mon Sep 15 2008 kwizart < kwizart at gmail.com > - 0.2.3-4
167b4f
- Remove plugin- in the name of the packages
167b4f
167b4f
* Mon Aug  4 2008 kwizart < kwizart at gmail.com > - 0.2.3-3
167b4f
- Move proxy.h to libproxy/proxy.h
167b4f
  This will prevent it to be included in the default include path
167b4f
- Split main to libs and util and use libproxy to install all
167b4f
167b4f
* Mon Aug  4 2008 kwizart < kwizart at gmail.com > - 0.2.3-2
167b4f
- Rename binding-python to python
167b4f
- Add Requires: gecko-libs >= %%{gecko_version}
167b4f
- Fix some descriptions
167b4f
- Add plugin-webkit package
167b4f
167b4f
* Fri Jul 11 2008 kwizart < kwizart at gmail.com > - 0.2.3-1
167b4f
- Convert to Fedora spec
167b4f
167b4f
* Fri Jun 6 2008 - dominique-rpm@leuenberger.net
167b4f
- Updated to version 0.2.3
167b4f
* Wed Jun 4 2008 - dominique-rpm@leuenberger.net
167b4f
- Extended spec file to build all available plugins
167b4f
* Tue Jun 3 2008 - dominique-rpm@leuenberger.net
167b4f
- Initial spec file for Version 0.2.2
167b4f