Blame SPECS/libuv.spec

1483ad
# Some of the tests do not work with the network-free environment in Koji
1483ad
# The packager should run `fedpkg local --with tests` on their machine
1483ad
# before pushing to Koji
1483ad
%bcond_with tests
1483ad
1483ad
Name:           libuv
1483ad
Epoch:          1
1483ad
Version:        1.42.0
1483ad
Release:        1%{?dist}
1483ad
Summary:        Platform layer for node.js
1483ad
1483ad
# the licensing breakdown is described in detail in the LICENSE file
1483ad
License:        MIT and BSD and ISC
1483ad
URL:            http://libuv.org/
1483ad
Source0:        http://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz
1483ad
Source2:        %{name}.pc.in
1483ad
Source3:        libuv.abignore
1483ad
1483ad
BuildRequires:  autoconf automake libtool
1483ad
BuildRequires:  gcc
1483ad
BuildRequires: make
1483ad
1483ad
# -- Patches -- #
1483ad
1483ad
%description
1483ad
libuv is a new platform layer for Node. Its purpose is to abstract IOCP on
1483ad
Windows and libev on Unix systems. We intend to eventually contain all platform
1483ad
differences in this library.
1483ad
1483ad
%package devel
1483ad
Summary:        Development libraries for libuv
1483ad
Requires:       %{name}%{?_isa} = %{epoch}:%{version}-%{release}
1483ad
1483ad
%description devel
1483ad
Development libraries for libuv
1483ad
1483ad
%package static
1483ad
Summary:        Platform layer for node.js - static library
1483ad
Requires:       %{name}-devel%{?_isa} = %{epoch}:%{version}-%{release}
1483ad
1483ad
%description static
1483ad
Static library (.a) version of libuv.
1483ad
1483ad
1483ad
%prep
1483ad
%autosetup -n %{name}-v%{version} -p1
1483ad
1483ad
%build
1483ad
./autogen.sh
1483ad
%configure --disable-silent-rules
1483ad
%make_build
1483ad
1483ad
%install
1483ad
%make_install
1483ad
rm -f %{buildroot}%{_libdir}/libuv.la
1483ad
1483ad
mkdir -p %{buildroot}%{_libdir}/libuv/
1483ad
install -Dm0644 -t %{buildroot}%{_libdir}/libuv/ %{SOURCE3}
1483ad
1483ad
%check
1483ad
%if %{with tests}
1483ad
%make_build check
1483ad
%endif
1483ad
1483ad
%ldconfig_scriptlets
1483ad
1483ad
%files
1483ad
%doc README.md AUTHORS CONTRIBUTING.md MAINTAINERS.md SUPPORTED_PLATFORMS.md
1483ad
%doc ChangeLog
1483ad
%license LICENSE
1483ad
%{_libdir}/%{name}.so.*
1483ad
%{_libdir}/libuv/libuv.abignore
1483ad
1483ad
%files devel
1483ad
%{_libdir}/%{name}.so
1483ad
%{_libdir}/pkgconfig/%{name}.pc
1483ad
%{_includedir}/uv.h
1483ad
%{_includedir}/uv/
1483ad
1483ad
%files static
1483ad
%{_libdir}/%{name}.a
1483ad
1483ad
%changelog
1483ad
* Fri Sep 17 2021 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.42.0-1
1483ad
- Rebased, resolves CVE-2021-22918
1483ad
- Resolves: RHBZ#2005319, RHBZ#1979928
1483ad
1483ad
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.41.0-3
1483ad
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
1483ad
  Related: rhbz#1991688
1483ad
1483ad
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.41.0-2
1483ad
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
1483ad
1483ad
* Fri Feb 19 2021 Stephen Gallagher <sgallagh@redhat.com> - 1.41.0-1
1483ad
- Update to 1.41.0
1483ad
1483ad
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.40.0-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
1483ad
1483ad
* Mon Sep 28 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.40.0-1
1483ad
- Update to 1.40.0
1483ad
1483ad
- https://github.com/libuv/libuv/blob/v1.40.0/ChangeLog
1483ad
1483ad
* Tue Sep 08 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.39.0-1
1483ad
- Update to 1.39.0
1483ad
1483ad
* Fri Jul 31 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.38.1-1
1483ad
- Update to 1.38.1
1483ad
- https://github.com/libuv/libuv/blob/v1.38.1/ChangeLog
1483ad
1483ad
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.38.0-3
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
1483ad
1483ad
* Mon May 18 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.38.0-2
1483ad
- Fix up gating tests
1483ad
1483ad
* Mon May 18 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.38.0-1
1483ad
- Update to 1.38.0
1483ad
- https://github.com/libuv/libuv/blob/v1.38.0/ChangeLog
1483ad
1483ad
* Mon Apr 20 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.37.0-1
1483ad
- Update to 1.37.0
1483ad
- https://github.com/libuv/libuv/blob/v1.37.0/ChangeLog
1483ad
1483ad
* Fri Apr 17 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.36.0-3
1483ad
- Actually add gating.yaml
1483ad
- Fix build for EPEL 7
1483ad
1483ad
* Fri Apr 17 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.36.0-2
1483ad
- Add abidiff ignore file and add ABI gating test
1483ad
1483ad
* Thu Apr 16 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.36.0-1
1483ad
- Update to 1.36.0
1483ad
- https://github.com/libuv/libuv/blob/v1.36.0/ChangeLog
1483ad
1483ad
* Thu Feb 06 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.34.2-1
1483ad
- Update to 1.34.2
1483ad
- https://github.com/libuv/libuv/blob/v1.34.2/ChangeLog
1483ad
1483ad
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.34.1-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
1483ad
1483ad
* Mon Jan 13 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.34.1-1
1483ad
- Update to 1.34.1
1483ad
- https://github.com/libuv/libuv/blob/v1.34.1/ChangeLog
1483ad
1483ad
* Fri Dec 06 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.34.0-1
1483ad
- Update to 1.34.0
1483ad
- https://github.com/libuv/libuv/blob/v1.34.0/ChangeLog
1483ad
1483ad
* Mon Dec 02 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.33.1-1
1483ad
- Update to 1.33.1
1483ad
- Drop upstreamed patch
1483ad
- https://github.com/libuv/libuv/blob/v1.33.1/ChangeLog
1483ad
1483ad
* Mon Oct 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.33.0-2
1483ad
- Add upstream patch to fix aarch64 builds
1483ad
1483ad
* Fri Oct 18 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.33.0-1
1483ad
- Update to 1.33.0
1483ad
- https://github.com/libuv/libuv/blob/v1.33.0/ChangeLog
1483ad
1483ad
* Wed Oct 02 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.32.0-1
1483ad
- Update to 1.32.0
1483ad
- https://github.com/libuv/libuv/blob/v1.32.0/ChangeLog
1483ad
1483ad
* Wed Aug 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.31.0-0
1483ad
- Update to 1.31.0
1483ad
- https://github.com/libuv/libuv/blob/v1.31.0/ChangeLog
1483ad
1483ad
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.30.1-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
1483ad
1483ad
* Tue Jul 02 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.30.1-1
1483ad
- Update to 1.30.1
1483ad
- https://github.com/libuv/libuv/blob/v1.30.1/ChangeLog
1483ad
1483ad
* Thu Jun 27 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.30.0-1
1483ad
- Update to 1.30.0
1483ad
- https://github.com/libuv/libuv/blob/v1.30.0/ChangeLog
1483ad
1483ad
* Tue May 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.29.1-1
1483ad
- Update to 1.29.1
1483ad
- https://github.com/libuv/libuv/blob/v1.29.1/ChangeLog
1483ad
1483ad
* Wed May 15 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.29.0-1
1483ad
- Update to 1.29.0
1483ad
- Drop upstreamed patch
1483ad
1483ad
* Fri May 03 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.28.0-2
1483ad
- Fix regression in uv_fs_poll_stop() (BZ 1703935)
1483ad
1483ad
* Tue Apr 23 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.28.0-1
1483ad
- Update to libuv 1.28.0
1483ad
- https://github.com/libuv/libuv/blob/v1.28.0/ChangeLog
1483ad
1483ad
* Mon Mar 18 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.27.0-1
1483ad
- Update to libuv 1.27.0
1483ad
- https://github.com/libuv/libuv/blob/v1.27.0/ChangeLog
1483ad
1483ad
* Wed Feb 13 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.26.0-1
1483ad
- Update to 1.26.0
1483ad
- https://github.com/libuv/libuv/blob/v1.26.0/ChangeLog
1483ad
1483ad
* Fri Jan 18 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.24.1-1
1483ad
- Update to 1.24.1
1483ad
- https://github.com/libuv/libuv/blob/v1.24.1/ChangeLog
1483ad
1483ad
* Thu Oct 11 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.23.2-1
1483ad
- Update to 1.23.2
1483ad
- https://github.com/libuv/libuv/blob/v1.23.2/ChangeLog
1483ad
1483ad
* Tue Sep 11 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.23.0-1
1483ad
- Update to 1.23.0
1483ad
- https://github.com/libuv/libuv/blob/v1.23.0/ChangeLog
1483ad
1483ad
* Mon Jul 16 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.22.0-1
1483ad
- Update to 1.22.0
1483ad
- https://github.com/libuv/libuv/blob/v1.22.0/ChangeLog
1483ad
1483ad
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.21.0-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
1483ad
1483ad
* Fri Jul 06 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.21.0-1
1483ad
- Update to 1.21.0
1483ad
- https://github.com/libuv/libuv/blob/v1.21.0/ChangeLog
1483ad
1483ad
* Wed May 09 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.20.3-1
1483ad
- Update to 1.20.3
1483ad
- https://github.com/libuv/libuv/blob/v1.20.3/ChangeLog
1483ad
1483ad
* Tue May 01 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.20.2-1
1483ad
- Update to 1.20.2
1483ad
- https://github.com/libuv/libuv/blob/v1.20.2/ChangeLog
1483ad
1483ad
* Tue Apr 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.20.0-1
1483ad
- Update to 1.20.0
1483ad
1483ad
* Mon Feb 26 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.19.2-1
1483ad
- Update to 1.19.2
1483ad
- https://github.com/libuv/libuv/blob/v1.19.2/ChangeLog
1483ad
1483ad
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.19.1-3
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
1483ad
1483ad
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.19.1-2
1483ad
- Switch to %%ldconfig_scriptlets
1483ad
1483ad
* Sat Jan 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.19.1-1
1483ad
- Update to 1.19.1
1483ad
1483ad
* Fri Jan 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.19.0-2
1483ad
- Revert few commits which cause regression for nodejs
1483ad
1483ad
* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.19.0-1
1483ad
- Update to 1.19.0
1483ad
1483ad
* Sat Nov 11 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 1:1.16.1-1
1483ad
- Update to 1.16.1 (rhbz #1512184)
1483ad
1483ad
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.16.0-1
1483ad
- Update to 1.16.0
1483ad
1483ad
* Tue Oct 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.15.0-1
1483ad
- Update to 1.15.0
1483ad
1483ad
* Fri Sep 08 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.14.1-1
1483ad
- Update to 1.14.1
1483ad
- https://github.com/libuv/libuv/blob/v1.14.1/ChangeLog
1483ad
1483ad
* Thu Aug 17 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.14.0-1
1483ad
- Update to 1.14.0
1483ad
- https://github.com/libuv/libuv/blob/v1.14.0/ChangeLog
1483ad
1483ad
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-3
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
1483ad
1483ad
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
1483ad
1483ad
* Mon Jul 10 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.12.0-1
1483ad
- Update to 1.13.1
1483ad
- https://github.com/libuv/libuv/blob/v1.13.1/ChangeLog
1483ad
1483ad
* Thu Jun 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.12.0-1
1483ad
- Update to 1.12.0
1483ad
- https://github.com/libuv/libuv/blob/v1.12.0/ChangeLog
1483ad
1483ad
* Tue Feb 28 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.11.0-1
1483ad
- Update to 1.11.0
1483ad
- https://github.com/libuv/libuv/blob/v1.11.0/ChangeLog
1483ad
1483ad
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.10.2-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
1483ad
1483ad
* Thu Jan 19 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.10.2-1
1483ad
- Update to 1.10.2
1483ad
- Resolves: RHBZ#1395927
1483ad
1483ad
* Sat Nov 19 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.10.1-1
1483ad
- Update to 1.10.1 (RHBZ #1395927)
1483ad
1483ad
* Mon Oct 24 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.10.0-1
1483ad
- Update to 1.10.0
1483ad
- https://github.com/libuv/libuv/blob/v1.10.0/ChangeLog
1483ad
1483ad
* Wed May 18 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.9.1-1
1483ad
- Update to 1.9.1
1483ad
- https://github.com/libuv/libuv/blob/v1.9.1/ChangeLog
1483ad
1483ad
* Mon May 09 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-1
1483ad
- Rebase to 1.9.0 to support Node.js 6.x
1483ad
1483ad
* Thu Mar 10 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.8.0-1
1483ad
- Rebase to 1.8.0 to support Node.js 5.8
1483ad
1483ad
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.7.5-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
1483ad
1483ad
* Tue Dec 01 2015 Stephen Gallagher <sgallagh@redhat.com> 1.7.5-1
1483ad
- Rebase to 1.7.5 to support Node.js 4.2
1483ad
1483ad
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.4.0-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
1483ad
1483ad
* Thu Feb 19 2015 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:1.4.0-1
1483ad
- rebase to 1.4.0
1483ad
1483ad
* Thu Feb 19 2015 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.33-2
1483ad
- add missing %%{_?isa} to devel requires of main package
1483ad
- fix some issues with the pkgconfig file and Group reported by Michael Schwendt
1483ad
1483ad
* Thu Feb 19 2015 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.33-1
1483ad
- new upstream release 0.10.33
1483ad
  https://github.com/joyent/libuv/blob/v0.10.33/ChangeLog
1483ad
- update URL to point to the new libuv.org
1483ad
1483ad
* Wed Nov 19 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.29-1
1483ad
- new upstream release 0.10.29
1483ad
  https://github.com/joyent/libuv/blob/v0.10.29/ChangeLog
1483ad
1483ad
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.10.28-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
1483ad
1483ad
* Fri Aug 01 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.28-1
1483ad
- new upstream release 0.10.28
1483ad
  https://github.com/joyent/libuv/blob/v0.10.28/ChangeLog
1483ad
1483ad
* Thu Jul 03 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.27-3
1483ad
- build static library for rust (RHBZ#1115975)
1483ad
1483ad
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.10.27-2
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
1483ad
1483ad
* Fri May 02 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.27-1
1483ad
- new upstream release 0.10.27
1483ad
  https://github.com/joyent/libuv/blob/v0.10.27/ChangeLog
1483ad
1483ad
* Thu Feb 20 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.25-1
1483ad
- new upstream release 0.10.25
1483ad
  https://github.com/joyent/libuv/blob/v0.10.25/ChangeLog
1483ad
1483ad
* Mon Jan 27 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.23-1
1483ad
- new upstream release 0.10.23
1483ad
  https://github.com/joyent/libuv/blob/v0.10.23/ChangeLog
1483ad
1483ad
* Thu Dec 19 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.21-1
1483ad
- new upstream release 0.10.21
1483ad
  https://github.com/joyent/libuv/blob/v0.10.21/ChangeLog
1483ad
1483ad
* Thu Dec 12 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.20-1
1483ad
- new upstream release 0.10.20
1483ad
  https://github.com/joyent/libuv/blob/v0.10.20/ChangeLog
1483ad
1483ad
* Tue Nov 12 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.19-1
1483ad
- new upstream release 0.10.19
1483ad
  https://github.com/joyent/libuv/blob/v0.10.19/ChangeLog
1483ad
1483ad
* Fri Oct 18 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.18-1
1483ad
- new upstream release 0.10.18
1483ad
  https://github.com/joyent/libuv/blob/v0.10.18/ChangeLog
1483ad
1483ad
* Wed Sep 25 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.17-1
1483ad
- new upstream release 0.10.17
1483ad
  https://github.com/joyent/libuv/blob/v0.10.17/ChangeLog
1483ad
1483ad
* Fri Sep 06 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.15-1
1483ad
- new upstream release 0.10.15
1483ad
  https://github.com/joyent/libuv/blob/v0.10.15/ChangeLog
1483ad
1483ad
* Tue Aug 27 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.14-1
1483ad
- new upstream release 0.10.14
1483ad
  https://github.com/joyent/libuv/blob/v0.10.14/ChangeLog
1483ad
1483ad
* Thu Jul 25 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.13-1
1483ad
- new upstream release 0.10.13
1483ad
  https://github.com/joyent/libuv/blob/v0.10.13/ChangeLog
1483ad
1483ad
* Wed Jul 10 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.12-1
1483ad
- new upstream release 0.10.12
1483ad
1483ad
* Wed Jun 19 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.11-1
1483ad
- new upstream release 0.10.11
1483ad
1483ad
* Fri May 31 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.9-1
1483ad
- new upstream release 0.10.9
1483ad
1483ad
* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.8-2
1483ad
- fix License tag (RHBZ#968226)
1483ad
1483ad
* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.8-1
1483ad
- new upstream release 0.10.8
1483ad
1483ad
* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.7-1
1483ad
- new upstream release 0.10.7
1483ad
- drop upstreamed patch from 0.10.5-2
1483ad
1483ad
* Mon May 13 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.5-3
1483ad
- don't sed the soname in the spec anymore; the patch takes care of it now
1483ad
- drop leftover global define for git revision
1483ad
1483ad
* Mon May 13 2013 Stephen Gallagher <sgallagh@redhat.com> - 1:0.10.5-2
1483ad
- Add patch to properly report soname version information
1483ad
  This patch will be included upstream in 0.10.6 and can be dropped then.
1483ad
- Remove Bundles(ev) as this has not been true since 0.9.5
1483ad
1483ad
* Wed Apr 24 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.5-1
1483ad
- new upstream release 0.10.5
1483ad
1483ad
* Mon Apr 15 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.4-1
1483ad
- new upstream release 0.10.4
1483ad
- drop upstreamed patch
1483ad
1483ad
* Thu Apr 04 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.3-2
1483ad
- backport patch that fixes FTBFS in nodejs-0.10.3
1483ad
1483ad
* Sun Mar 31 2013 tchollingsworth@gmail.com - 1:0.10.3-1
1483ad
- rebase to 0.10.3
1483ad
- upstream now does proper releases
1483ad
1483ad
* Tue Mar 12 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.0-2.git5462dab
1483ad
- drop the patchlevel from the SONAME since libuv will retain binary
1483ad
  compatibility for the life of the 0.10.x series
1483ad
1483ad
* Mon Mar 11 2013 Stephen Gallagher <sgallagh@redhat.com> - 1:0.10.0-1.git5462dab
1483ad
- Upgrade to 0.10.0 release to match stable Node.js release
1483ad
1483ad
* Thu Feb 28 2013 Stephen Gallagher <sgallagh@redhat.com> - 1:0.9.4-4.gitdc559a5
1483ad
- Bump epoch for the version downgrade
1483ad
- The 0.9.7 version hit the Rawhide repo due to the mass rebuild, we need a
1483ad
  clean upgrade path.
1483ad
1483ad
* Thu Feb 21 2013 Stephen Gallagher <sgallagh@redhat.com> - 0.9.4-3.gitdc559a5
1483ad
- Revert to version 0.9.4 (since 0.9.7 is breaking builds)
1483ad
1483ad
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.7-2.git4ba03dd
1483ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
1483ad
1483ad
* Tue Jan 22 2013 Stephen Gallagher <sgallagh@redhat.com> - 0.9.7-1.git4ba03dd
1483ad
- Bump to version included with Node.js 0.9.7
1483ad
1483ad
* Wed Dec 26 2012 T.C. Hollingsworth <tchollingsworth@gmail.com> - 0.9.4-0.1.gitdc559a5
1483ad
- bump to version included with node 0.9.4
1483ad
- drop upstreamed patch
1483ad
- respect optflags
1483ad
1483ad
* Thu Nov 15 2012 Stephen Gallagher <sgallagh@redhat.com> - 0.9.3-0.3.git09b0222
1483ad
- Add patch to export uv_inet_*
1483ad
1483ad
* Wed Nov 14 2012 Stephen Gallagher <sgallagh@redhat.com> - 0.9.3-0.2.git09b0222
1483ad
- Fixes from package review
1483ad
- Removed doubly-listed include directory
1483ad
- Update git tarball to the latest upstream code
1483ad
1483ad
* Thu Nov 08 2012 Stephen Gallagher <sgallagh@redhat.com> - 0.9.3-0.1.gitd56434a
1483ad
- Initial package