Blame SPECS/libuv.spec

Packit Service d820a9
# Some of the tests do not work with the network-free environment in Koji
Packit Service d820a9
# The packager should run `fedpkg local --with tests` on their machine
Packit Service d820a9
# before pushing to Koji
Packit Service d820a9
%bcond_with tests
Packit Service d820a9
Packit 8b8903
Name:           libuv
Packit 8b8903
Epoch:          1
Packit Service d820a9
Version:        1.38.0
Packit Service d820a9
Release:        2%{?dist}
Packit 8b8903
Summary:        Platform layer for node.js
Packit 8b8903
Packit 8b8903
# the licensing breakdown is described in detail in the LICENSE file
Packit 8b8903
License:        MIT and BSD and ISC
Packit 8b8903
URL:            http://libuv.org/
Packit 8b8903
Source0:        http://dist.libuv.org/dist/v%{version}/libuv-v%{version}.tar.gz
Packit 8b8903
Source2:        %{name}.pc.in
Packit Service d820a9
Source3:        libuv.abignore
Packit 8b8903
Packit 8b8903
BuildRequires:  autoconf automake libtool
Packit 8b8903
BuildRequires:  gcc
Packit 8b8903
Packit Service d820a9
%if %{with tests}
Packit Service d820a9
# don't remove network tests
Packit Service d820a9
%else
Packit Service d820a9
# -- Patches -- #
Packit Service d820a9
Patch1:         0001-Disable-failing-network-tests.patch
Packit Service d820a9
%endif
Packit Service d820a9
Patch2:         libuv-unix-don-t-use-_POSIX_PATH_MAX.patch
Packit Service d820a9
Packit 8b8903
%description
Packit 8b8903
libuv is a new platform layer for Node. Its purpose is to abstract IOCP on
Packit 8b8903
Windows and libev on Unix systems. We intend to eventually contain all platform
Packit 8b8903
differences in this library.
Packit 8b8903
Packit 8b8903
%package devel
Packit 8b8903
Summary:        Development libraries for libuv
Packit 8b8903
Requires:       %{name}%{?_isa} = %{epoch}:%{version}-%{release}
Packit 8b8903
Packit 8b8903
%description devel
Packit 8b8903
Development libraries for libuv
Packit 8b8903
Packit 8b8903
%package static
Packit 8b8903
Summary:        Platform layer for node.js - static library
Packit 8b8903
Requires:       %{name}-devel%{?_isa} = %{epoch}:%{version}-%{release}
Packit 8b8903
Packit 8b8903
%description static
Packit 8b8903
Static library (.a) version of libuv.
Packit 8b8903
Packit Service d820a9
Packit 8b8903
%prep
Packit 8b8903
%autosetup -n %{name}-v%{version} -p1
Packit 8b8903
Packit 8b8903
%build
Packit 8b8903
./autogen.sh
Packit 8b8903
%configure --disable-silent-rules
Packit 8b8903
%make_build
Packit 8b8903
Packit 8b8903
%install
Packit 8b8903
%make_install
Packit 8b8903
rm -f %{buildroot}%{_libdir}/libuv.la
Packit 8b8903
Packit Service d820a9
mkdir -p %{buildroot}%{_libdir}/libuv/
Packit Service d820a9
install -Dm0644 -t %{buildroot}%{_libdir}/libuv/ %{SOURCE3}
Packit Service d820a9
Packit 8b8903
%check
Packit 8b8903
# Tests are currently disabled because some require network access
Packit 8b8903
# Working with upstream to split these out
Packit 8b8903
#./run-tests
Packit 8b8903
#./run-benchmarks
Packit 8b8903
Packit Service d820a9
make check
Packit Service d820a9
Packit 8b8903
%ldconfig_scriptlets
Packit 8b8903
Packit 8b8903
%files
Packit 8b8903
%doc README.md AUTHORS CONTRIBUTING.md MAINTAINERS.md SUPPORTED_PLATFORMS.md
Packit 8b8903
%doc ChangeLog
Packit 8b8903
%license LICENSE
Packit 8b8903
%{_libdir}/%{name}.so.*
Packit Service d820a9
%{_libdir}/libuv/libuv.abignore
Packit 8b8903
Packit 8b8903
%files devel
Packit 8b8903
%{_libdir}/%{name}.so
Packit 8b8903
%{_libdir}/pkgconfig/%{name}.pc
Packit 8b8903
%{_includedir}/uv.h
Packit 8b8903
%{_includedir}/uv/
Packit 8b8903
Packit 8b8903
%files static
Packit 8b8903
%{_libdir}/%{name}.a
Packit 8b8903
Packit 8b8903
%changelog
Packit Service d820a9
* Wed Sep 23 2020 Honza Horak <hhorak@redhat.com> - 1:1.38.0-2
Packit Service d820a9
- Fix max path size by not using _POSIX_PATH_MAX
Packit Service d820a9
  Resolves: #1879330
Packit Service d820a9
  Fixes: CVE-2020-8252
Packit Service d820a9
Packit Service d820a9
* Tue Jun 09 2020 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.38.0-1
Packit Service d820a9
- Update, disable failing tests
Packit Service d820a9
Packit Service d820a9
* Thu May 28 2020 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.37.0-3
Packit Service d820a9
- Run tests
Packit Service d820a9
Packit Service d820a9
* Mon May 11 2020 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.37.0-2
Packit Service d820a9
- Resolves: RHBZ#1817821
Packit Service d820a9
- bump for build
Packit Service d820a9
Packit Service d820a9
* Mon May 04 2020 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.37.0-1
Packit Service d820a9
- Resolves: RHBZ#1817821
Packit Service d820a9
- Update to 1.37.0
Packit Service d820a9
- Add abidiff ignore file
Packit Service d820a9
Packit 8b8903
* Mon Oct 08 2018 Jan Staněk <jstanek@redhat.com> - 1:1.23.1-1
Packit 8b8903
- Update to 1.23.1
Packit 8b8903
- Resolves: rhbz#1637000
Packit 8b8903
Packit 8b8903
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 1:1.22.0-2
Packit 8b8903
- Rebuild with fixed binutils
Packit 8b8903
Packit 8b8903
* Mon Jul 30 2018 Zuzana Svetlikova ,zsvetlik@redhat.com> - 1.22.0-1
Packit 8b8903
- Update to 1.22.0
Packit 8b8903
Packit 8b8903
* Mon Feb 26 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.19.2-1
Packit 8b8903
- Update to 1.19.2
Packit 8b8903
- https://github.com/libuv/libuv/blob/v1.19.2/ChangeLog
Packit 8b8903
Packit 8b8903
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.19.1-3
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Wed Jan 31 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.19.1-2
Packit 8b8903
- Switch to %%ldconfig_scriptlets
Packit 8b8903
Packit 8b8903
* Sat Jan 20 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.19.1-1
Packit 8b8903
- Update to 1.19.1
Packit 8b8903
Packit 8b8903
* Fri Jan 19 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.19.0-2
Packit 8b8903
- Revert few commits which cause regression for nodejs
Packit 8b8903
Packit 8b8903
* Thu Jan 18 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.19.0-1
Packit 8b8903
- Update to 1.19.0
Packit 8b8903
Packit 8b8903
* Sat Nov 11 2017 Athmane Madjoudj <athmane@fedoraproject.org> - 1:1.16.1-1
Packit 8b8903
- Update to 1.16.1 (rhbz #1512184)
Packit 8b8903
Packit 8b8903
* Tue Nov 07 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.16.0-1
Packit 8b8903
- Update to 1.16.0
Packit 8b8903
Packit 8b8903
* Tue Oct 03 2017 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1.15.0-1
Packit 8b8903
- Update to 1.15.0
Packit 8b8903
Packit 8b8903
* Fri Sep 08 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.14.1-1
Packit 8b8903
- Update to 1.14.1
Packit 8b8903
- https://github.com/libuv/libuv/blob/v1.14.1/ChangeLog
Packit 8b8903
Packit 8b8903
* Thu Aug 17 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.14.0-1
Packit 8b8903
- Update to 1.14.0
Packit 8b8903
- https://github.com/libuv/libuv/blob/v1.14.0/ChangeLog
Packit 8b8903
Packit 8b8903
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-3
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.13.1-2
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Mon Jul 10 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.12.0-1
Packit 8b8903
- Update to 1.13.1
Packit 8b8903
- https://github.com/libuv/libuv/blob/v1.13.1/ChangeLog
Packit 8b8903
Packit 8b8903
* Thu Jun 01 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.12.0-1
Packit 8b8903
- Update to 1.12.0
Packit 8b8903
- https://github.com/libuv/libuv/blob/v1.12.0/ChangeLog
Packit 8b8903
Packit 8b8903
* Tue Feb 28 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.11.0-1
Packit 8b8903
- Update to 1.11.0
Packit 8b8903
- https://github.com/libuv/libuv/blob/v1.11.0/ChangeLog
Packit 8b8903
Packit 8b8903
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.10.2-2
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Thu Jan 19 2017 Stephen Gallagher <sgallagh@redhat.com> - 1.10.2-1
Packit 8b8903
- Update to 1.10.2
Packit 8b8903
- Resolves: RHBZ#1395927
Packit 8b8903
Packit 8b8903
* Sat Nov 19 2016 Igor Gnatenko <i.gnatenko.brain@gmail.com> - 1.10.1-1
Packit 8b8903
- Update to 1.10.1 (RHBZ #1395927)
Packit 8b8903
Packit 8b8903
* Mon Oct 24 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.10.0-1
Packit 8b8903
- Update to 1.10.0
Packit 8b8903
- https://github.com/libuv/libuv/blob/v1.10.0/ChangeLog
Packit 8b8903
Packit 8b8903
* Wed May 18 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.9.1-1
Packit 8b8903
- Update to 1.9.1
Packit 8b8903
- https://github.com/libuv/libuv/blob/v1.9.1/ChangeLog
Packit 8b8903
Packit 8b8903
* Mon May 09 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.9.0-1
Packit 8b8903
- Rebase to 1.9.0 to support Node.js 6.x
Packit 8b8903
Packit 8b8903
* Thu Mar 10 2016 Stephen Gallagher <sgallagh@redhat.com> - 1.8.0-1
Packit 8b8903
- Rebase to 1.8.0 to support Node.js 5.8
Packit 8b8903
Packit 8b8903
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.7.5-2
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Tue Dec 01 2015 Stephen Gallagher <sgallagh@redhat.com> 1.7.5-1
Packit 8b8903
- Rebase to 1.7.5 to support Node.js 4.2
Packit 8b8903
Packit 8b8903
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:1.4.0-2
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Thu Feb 19 2015 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:1.4.0-1
Packit 8b8903
- rebase to 1.4.0
Packit 8b8903
Packit 8b8903
* Thu Feb 19 2015 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.33-2
Packit 8b8903
- add missing %%{_?isa} to devel requires of main package
Packit 8b8903
- fix some issues with the pkgconfig file and Group reported by Michael Schwendt
Packit 8b8903
Packit 8b8903
* Thu Feb 19 2015 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.33-1
Packit 8b8903
- new upstream release 0.10.33
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.33/ChangeLog
Packit 8b8903
- update URL to point to the new libuv.org
Packit 8b8903
Packit 8b8903
* Wed Nov 19 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.29-1
Packit 8b8903
- new upstream release 0.10.29
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.29/ChangeLog
Packit 8b8903
Packit 8b8903
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.10.28-2
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Fri Aug 01 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.28-1
Packit 8b8903
- new upstream release 0.10.28
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.28/ChangeLog
Packit 8b8903
Packit 8b8903
* Thu Jul 03 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.27-3
Packit 8b8903
- build static library for rust (RHBZ#1115975)
Packit 8b8903
Packit 8b8903
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1:0.10.27-2
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Fri May 02 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.27-1
Packit 8b8903
- new upstream release 0.10.27
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.27/ChangeLog
Packit 8b8903
Packit 8b8903
* Thu Feb 20 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.25-1
Packit 8b8903
- new upstream release 0.10.25
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.25/ChangeLog
Packit 8b8903
Packit 8b8903
* Mon Jan 27 2014 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.23-1
Packit 8b8903
- new upstream release 0.10.23
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.23/ChangeLog
Packit 8b8903
Packit 8b8903
* Thu Dec 19 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.21-1
Packit 8b8903
- new upstream release 0.10.21
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.21/ChangeLog
Packit 8b8903
Packit 8b8903
* Thu Dec 12 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.20-1
Packit 8b8903
- new upstream release 0.10.20
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.20/ChangeLog
Packit 8b8903
Packit 8b8903
* Tue Nov 12 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.19-1
Packit 8b8903
- new upstream release 0.10.19
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.19/ChangeLog
Packit 8b8903
Packit 8b8903
* Fri Oct 18 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.18-1
Packit 8b8903
- new upstream release 0.10.18
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.18/ChangeLog
Packit 8b8903
Packit 8b8903
* Wed Sep 25 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.17-1
Packit 8b8903
- new upstream release 0.10.17
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.17/ChangeLog
Packit 8b8903
Packit 8b8903
* Fri Sep 06 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.15-1
Packit 8b8903
- new upstream release 0.10.15
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.15/ChangeLog
Packit 8b8903
Packit 8b8903
* Tue Aug 27 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.14-1
Packit 8b8903
- new upstream release 0.10.14
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.14/ChangeLog
Packit 8b8903
Packit 8b8903
* Thu Jul 25 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.13-1
Packit 8b8903
- new upstream release 0.10.13
Packit 8b8903
  https://github.com/joyent/libuv/blob/v0.10.13/ChangeLog
Packit 8b8903
Packit 8b8903
* Wed Jul 10 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.12-1
Packit 8b8903
- new upstream release 0.10.12
Packit 8b8903
Packit 8b8903
* Wed Jun 19 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.11-1
Packit 8b8903
- new upstream release 0.10.11
Packit 8b8903
Packit 8b8903
* Fri May 31 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.9-1
Packit 8b8903
- new upstream release 0.10.9
Packit 8b8903
Packit 8b8903
* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.8-2
Packit 8b8903
- fix License tag (RHBZ#968226)
Packit 8b8903
Packit 8b8903
* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.8-1
Packit 8b8903
- new upstream release 0.10.8
Packit 8b8903
Packit 8b8903
* Wed May 29 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.7-1
Packit 8b8903
- new upstream release 0.10.7
Packit 8b8903
- drop upstreamed patch from 0.10.5-2
Packit 8b8903
Packit 8b8903
* Mon May 13 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.5-3
Packit 8b8903
- don't sed the soname in the spec anymore; the patch takes care of it now
Packit 8b8903
- drop leftover global define for git revision
Packit 8b8903
Packit 8b8903
* Mon May 13 2013 Stephen Gallagher <sgallagh@redhat.com> - 1:0.10.5-2
Packit 8b8903
- Add patch to properly report soname version information
Packit 8b8903
  This patch will be included upstream in 0.10.6 and can be dropped then.
Packit 8b8903
- Remove Bundles(ev) as this has not been true since 0.9.5
Packit 8b8903
Packit 8b8903
* Wed Apr 24 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.5-1
Packit 8b8903
- new upstream release 0.10.5
Packit 8b8903
Packit 8b8903
* Mon Apr 15 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.4-1
Packit 8b8903
- new upstream release 0.10.4
Packit 8b8903
- drop upstreamed patch
Packit 8b8903
Packit 8b8903
* Thu Apr 04 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.3-2
Packit 8b8903
- backport patch that fixes FTBFS in nodejs-0.10.3
Packit 8b8903
Packit 8b8903
* Sun Mar 31 2013 tchollingsworth@gmail.com - 1:0.10.3-1
Packit 8b8903
- rebase to 0.10.3
Packit 8b8903
- upstream now does proper releases
Packit 8b8903
Packit 8b8903
* Tue Mar 12 2013 T.C. Hollingsworth <tchollingsworth@gmail.com> - 1:0.10.0-2.git5462dab
Packit 8b8903
- drop the patchlevel from the SONAME since libuv will retain binary
Packit 8b8903
  compatibility for the life of the 0.10.x series
Packit 8b8903
Packit 8b8903
* Mon Mar 11 2013 Stephen Gallagher <sgallagh@redhat.com> - 1:0.10.0-1.git5462dab
Packit 8b8903
- Upgrade to 0.10.0 release to match stable Node.js release
Packit 8b8903
Packit 8b8903
* Thu Feb 28 2013 Stephen Gallagher <sgallagh@redhat.com> - 1:0.9.4-4.gitdc559a5
Packit 8b8903
- Bump epoch for the version downgrade
Packit 8b8903
- The 0.9.7 version hit the Rawhide repo due to the mass rebuild, we need a
Packit 8b8903
  clean upgrade path.
Packit 8b8903
Packit 8b8903
* Thu Feb 21 2013 Stephen Gallagher <sgallagh@redhat.com> - 0.9.4-3.gitdc559a5
Packit 8b8903
- Revert to version 0.9.4 (since 0.9.7 is breaking builds)
Packit 8b8903
Packit 8b8903
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9.7-2.git4ba03dd
Packit 8b8903
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
Packit 8b8903
Packit 8b8903
* Tue Jan 22 2013 Stephen Gallagher <sgallagh@redhat.com> - 0.9.7-1.git4ba03dd
Packit 8b8903
- Bump to version included with Node.js 0.9.7
Packit 8b8903
Packit 8b8903
* Wed Dec 26 2012 T.C. Hollingsworth <tchollingsworth@gmail.com> - 0.9.4-0.1.gitdc559a5
Packit 8b8903
- bump to version included with node 0.9.4
Packit 8b8903
- drop upstreamed patch
Packit 8b8903
- respect optflags
Packit 8b8903
Packit 8b8903
* Thu Nov 15 2012 Stephen Gallagher <sgallagh@redhat.com> - 0.9.3-0.3.git09b0222
Packit 8b8903
- Add patch to export uv_inet_*
Packit 8b8903
Packit 8b8903
* Wed Nov 14 2012 Stephen Gallagher <sgallagh@redhat.com> - 0.9.3-0.2.git09b0222
Packit 8b8903
- Fixes from package review
Packit 8b8903
- Removed doubly-listed include directory
Packit 8b8903
- Update git tarball to the latest upstream code
Packit 8b8903
Packit 8b8903
* Thu Nov 08 2012 Stephen Gallagher <sgallagh@redhat.com> - 0.9.3-0.1.gitd56434a
Packit 8b8903
- Initial package