Blame SPECS/xorg-x11-drv-openchrome.spec

f08b8a
%define tarball xf86-video-openchrome
f08b8a
%define moduledir %(pkg-config xorg-server --variable=moduledir )
f08b8a
%define driverdir %{moduledir}/drivers
d06736
#define gitdate 
f08b8a
%define gitversion 131175a71
f08b8a
f08b8a
%if 0%{?gitdate}
f08b8a
%define gver .%{gitdate}git%{gitversion}
f08b8a
%endif
f08b8a
f08b8a
%define with_xvmc 1
f08b8a
%define with_debug 0
f08b8a
8fc32d
%undefine _hardened_build
8fc32d
f08b8a
Summary:        Xorg X11 openchrome video driver
f08b8a
Name:           xorg-x11-drv-openchrome
8fc32d
Version:        0.5.0
8fc32d
Release:        3%{?gver}%{?dist}
d06736
URL:            http://www.freedesktop.org/wiki/Openchrome/
f08b8a
License:        MIT
f08b8a
Group:          User Interface/X Hardware Support
f08b8a
f08b8a
%if 0%{?gitdate}
f08b8a
Source0:        %{tarball}-%{gitdate}.tar.bz2
f08b8a
%else
f08b8a
Source0:        http://xorg.freedesktop.org/archive/individual/driver/%{tarball}-%{version}.tar.bz2
f08b8a
%endif
f08b8a
f08b8a
# Upstream patches :
f08b8a
f08b8a
# Fedora specific patches :
f08b8a
f08b8a
# Experimental patches (branch backport, etc...): 
f08b8a
Patch13:        openchrome-0.2.904-fix_tvout_flickering.patch
f08b8a
f08b8a
ExclusiveArch:  %{ix86} x86_64
f08b8a
f08b8a
%if 0%{?gitdate}
f08b8a
BuildRequires:  autoconf automake libtool
f08b8a
%endif
f08b8a
BuildRequires:  xorg-x11-server-devel
f08b8a
BuildRequires:  libX11-devel
f08b8a
BuildRequires:  libXext-devel
f08b8a
BuildRequires:  mesa-libGL-devel
f08b8a
%if %{with_xvmc}
f08b8a
BuildRequires:  libXvMC-devel
f08b8a
%endif
f08b8a
BuildRequires:  libdrm-devel >= 2.0-1
f08b8a
Requires:       Xorg %(xserver-sdk-abi-requires ansic)
f08b8a
Requires:       Xorg %(xserver-sdk-abi-requires videodrv)
f08b8a
f08b8a
Obsoletes:      xorg-x11-drv-via <= 0.2.2-4
f08b8a
Provides:       xorg-x11-drv-via = 0.2.2-5
f08b8a
f08b8a
f08b8a
%description 
f08b8a
X.Org X11 openchrome video driver.
f08b8a
f08b8a
f08b8a
%if %{with_xvmc}
f08b8a
%package devel
f08b8a
Summary:        Xorg X11 openchrome video driver XvMC development package
f08b8a
Group:          Development/System
f08b8a
Requires:       %{name} = %{version}-%{release}
f08b8a
Obsoletes:      xorg-x11-drv-via-devel <= 0.2.2-4
f08b8a
Provides:       xorg-x11-drv-via-devel = 0.2.2-5
f08b8a
f08b8a
%description devel
f08b8a
X.Org X11 openchrome video driver XvMC development package.
f08b8a
%endif
f08b8a
f08b8a
f08b8a
%prep
f08b8a
%setup -q -n %{tarball}-%{?gitdate:%{gitdate}}%{?!gitdate:%{version}}
f08b8a
f08b8a
f08b8a
%build
f08b8a
%{?gitdate:autoreconf -v --install}
f08b8a
%configure --disable-static --enable-viaregtool \
f08b8a
%if %{with_debug}
f08b8a
           --enable-debug --enable-xv-debug
f08b8a
%endif
f08b8a
f08b8a
make
f08b8a
f08b8a
f08b8a
%install
f08b8a
make install DESTDIR=$RPM_BUILD_ROOT
f08b8a
f08b8a
mkdir -p $RPM_BUILD_ROOT%{_datadir}/hwdata/videoaliases
f08b8a
f08b8a
# FIXME: Remove all libtool archives (*.la) from modules directory.  This
f08b8a
# should be fixed in upstream Makefile.am or whatever.
f08b8a
find $RPM_BUILD_ROOT -regex ".*\.la$" | xargs rm -f --
f08b8a
f08b8a
f08b8a
%post
d06736
%if %{with_xvmc}
d06736
/sbin/ldconfig
d06736
%endif
f08b8a
if [ -e /etc/X11/xorg.conf ]; then
f08b8a
    sed -i "/Driver/s/via/openchrome/" /etc/X11/xorg.conf || :
f08b8a
fi
f08b8a
d06736
%if %{with_xvmc}
d06736
%postun -p /sbin/ldconfig
d06736
%endif
d06736
f08b8a
f08b8a
%files
8fc32d
%doc NEWS README
8fc32d
%license COPYING
f08b8a
%{driverdir}/openchrome_drv.so
f08b8a
%if %{with_xvmc}
f08b8a
%{_libdir}/libchromeXvMC.so.1
f08b8a
%{_libdir}/libchromeXvMC.so.1.0.0
f08b8a
%{_libdir}/libchromeXvMCPro.so.1
f08b8a
%{_libdir}/libchromeXvMCPro.so.1.0.0
f08b8a
%endif
f08b8a
%{_mandir}/man4/openchrome.4.gz
f08b8a
%{_sbindir}/via_regs_dump
f08b8a
f08b8a
%if %{with_xvmc}
f08b8a
%files devel
f08b8a
%{_libdir}/libchromeXvMC.so
f08b8a
%{_libdir}/libchromeXvMCPro.so
f08b8a
%endif
f08b8a
f08b8a
f08b8a
%changelog
8fc32d
* Thu Sep 29 2016 Hans de Goede <hdegoede@redhat.com> - 0.5.0-3
8fc32d
- Rebuild against xserver-1.19
8fc32d
8fc32d
* Wed Jul 06 2016 Xavier Bachelot <xavier@bachelot.org> - 0.5.0-1
8fc32d
- Update to 0.5.0.
8fc32d
8fc32d
* Wed Apr 13 2016 Xavier Bachelot <xavier@bachelot.org> - 0.4.0-1
8fc32d
- Update to 0.4.0.
8fc32d
- Clean up spec file.
8fc32d
8fc32d
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.3-18
8fc32d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
8fc32d
8fc32d
* Wed Jul 29 2015 Dave Airlie <airlied@redhat.com> - 0.3.3-17
8fc32d
- 1.15 ABI rebuild
8fc32d
8fc32d
* Tue Jun 23 2015 Adam Jackson <ajax@redhat.com> - 0.3.3-16
8fc32d
- Undefine _hardened_build
8fc32d
8fc32d
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.3-15
8fc32d
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
8fc32d
d06736
* Wed Feb 11 2015 Hans de Goede <hdegoede@redhat.com> - 0.3.3-14
d06736
- xserver 1.17 ABI rebuild
d06736
d06736
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.3-13
d06736
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d06736
d06736
* Mon Jun 16 2014 Hans de Goede <hdegoede@redhat.com> - 0.3.3-12
d06736
- xserver 1.15.99.903 ABI rebuild
d06736
d06736
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.3-11
d06736
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d06736
d06736
* Mon Apr 28 2014 Hans de Goede <hdegoede@redhat.com> - 0.3.3-10
d06736
- xserver 1.15.99-20140428 git snapshot ABI rebuild
d06736
d06736
* Sat Mar 22 2014 Xavier Bachelot <xavier@bachelot.org> - 0.3.3-9
d06736
- Change URL: to fd.o.
d06736
d06736
* Mon Jan 13 2014 Adam Jackson <ajax@redhat.com> - 0.3.3-8
f141b3
- 1.15 ABI rebuild
f141b3
d06736
* Sat Dec 21 2013 Ville Skyttä <ville.skytta@iki.fi> - 0.3.3-7
d06736
- Call ldconfig in %%post* scriptlets.
d06736
- Fix bogus dates in %%changelog.
d06736
d06736
* Tue Dec 17 2013 Adam Jackson <ajax@redhat.com> - 0.3.3-6
d06736
- 1.15RC4 ABI rebuild
d06736
d06736
* Wed Nov 20 2013 Adam Jackson <ajax@redhat.com> - 0.3.3-5
d06736
- 1.15RC2 ABI rebuild
f141b3
f08b8a
* Wed Nov 06 2013 Adam Jackson <ajax@redhat.com> - 0.3.3-4
f08b8a
- 1.15RC1 ABI rebuild
f08b8a
f08b8a
* Fri Oct 25 2013 Adam Jackson <ajax@redhat.com> - 0.3.3-3
f08b8a
- ABI rebuild
f08b8a
f08b8a
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.3.3-2
f08b8a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
f08b8a
f08b8a
* Thu May 23 2013 Xavier Bachelot <xavier@bachelot.org> - 0.3.3-1
f08b8a
- Update to 0.3.3 (CVE-2013-1994).
f08b8a
f08b8a
* Wed Mar 27 2013 Xavier Bachelot <xavier@bachelot.org> - 0.3.2-1
f08b8a
- Update to 0.3.2.
f08b8a
- Remove old --enable-dri configure switch.
f08b8a
- Change Source0 URL to fd.o.
f08b8a
f08b8a
* Thu Mar 07 2013 Peter Hutterer <peter.hutterer@redhat.com> - 0.3.1-5
f08b8a
- ABI rebuild
f08b8a
f08b8a
* Fri Feb 15 2013 Peter Hutterer <peter.hutterer@redhat.com> - 0.3.1-4
f08b8a
- ABI rebuild
f08b8a
f08b8a
* Fri Feb 15 2013 Peter Hutterer <peter.hutterer@redhat.com> - 0.3.1-3
f08b8a
- ABI rebuild
f08b8a
f08b8a
* Thu Jan 10 2013 Adam Jackson <ajax@redhat.com> - 0.3.1-2
f08b8a
- ABI rebuild
f08b8a
f08b8a
* Tue Sep 04 2012 Xavier Bachelot <xavier@bachelot.org> - 0.3.1-1
f08b8a
- Update to 0.3.1.
f08b8a
f08b8a
* Sun Aug 05 2012 Xavier Bachelot <xavier@bachelot.org> - 0.3.0-2
f08b8a
- Update to latest snapshot to fix a crash in I2C code with Xserver 1.13.
f08b8a
f08b8a
* Fri Jul 20 2012 Xavier Bachelot <xavier@bachelot.org> - 0.3.0-1
f08b8a
- Update to 0.3.0.
f08b8a
- Install registers dumper tool.
f08b8a
f08b8a
* Fri Jul 20 2012 Dave Airlie <airlied@redhat.com> 0.2.906-2
f08b8a
- temporary git snapshot, to fix deps after X server rebuild
f08b8a
d06736
* Wed May 16 2012 Xavier Bachelot <xavier@bachelot.org> - 0.2.906-1
f08b8a
- Update to 0.2.906.
f08b8a
f08b8a
* Thu May 03 2012 Xavier Bachelot <xavier@bachelot.org> - 0.2.905-6
f08b8a
- Fix I420 Xv surface.
f08b8a
f08b8a
* Mon Mar 26 2012 Xavier Bachelot <xavier@bachelot.org> - 0.2.905-5
f08b8a
- Make EXA work out of the box.
f08b8a
d06736
* Thu Mar 15 2012 Xavier Bachelot <xavier@bachelot.org> - 0.2.905-4
f08b8a
- Make EXA the default (but disable compositing) (RHBZ#804194).
f08b8a
- Xv support for VX900.
f08b8a
f08b8a
* Sat Feb 11 2012 Peter Hutterer <peter.hutterer@redhat.com> - 0.2.905-3
f08b8a
- ABI rebuild
f08b8a
f08b8a
* Fri Feb 10 2012 Peter Hutterer <peter.hutterer@redhat.com> - 0.2.905-2
f08b8a
- ABI rebuild
f08b8a
f08b8a
* Fri Feb 10 2012 Xavier Bachelot <xavier@bachelot.org> - 0.2.905-1
f08b8a
- Update to 0.2.905.
f08b8a
f08b8a
* Tue Jan 24 2012 Peter Hutterer <peter.hutterer@redhat.com> - 0.2.904-21
f08b8a
- ABI rebuild
f08b8a
f08b8a
* Wed Jan 04 2012 Peter Hutterer <peter.hutterer@redhat.com> 0.2.904-20
f08b8a
- Really drop .xinf
f08b8a
f08b8a
* Wed Jan 04 2012 Peter Hutterer <peter.hutterer@redhat.com> - 0.2.904-19
f08b8a
- Rebuild for server 1.12
f08b8a
f08b8a
* Wed Nov 16 2011 Adam Jackson <ajax@redhat.com> 0.2.904-18
f08b8a
- ABI rebuild
f08b8a
- openchrome-0.2.904-vga.patch: Adapt to videoabi 12
f08b8a
f08b8a
* Sun Sep 11 2011 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-16
f08b8a
- Update to svn933 for bugfixes.
f08b8a
f08b8a
* Thu Aug 18 2011 Adam Jackson <ajax@redhat.com> - 0.2.904-15
f08b8a
- Rebuild for xserver 1.11 ABI
f08b8a
d06736
* Sat May 07 2011 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-14
f08b8a
- Bump release.
f08b8a
d06736
* Sat May 07 2011 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-13
f08b8a
- Update to svn921 for XO 1.5 regression and Xv crash fix (RHBZ #697901).
f08b8a
- Update I420 patch (RHBZ #674551).
f08b8a
f08b8a
* Thu Mar 03 2011 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-12
f08b8a
- Update to svn916 for VX900 support and bug fixes.
f08b8a
f08b8a
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.904-11
f08b8a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
f08b8a
f08b8a
* Thu Dec 02 2010 Adam Jackson <ajax@redhat.com> 0.2.904-10
f08b8a
- Rebuild for new ABI
f08b8a
f08b8a
* Wed Oct 27 2010 Adam Jackson <ajax@redhat.com> 0.2.904-9
f08b8a
- Add ABI requires magic (#542742)
f08b8a
f08b8a
* Mon Jul 05 2010 Peter Hutterer <peter.hutterer@redhat.com> - 0.2.904-8
f08b8a
- rebuild for X Server 1.9
f08b8a
f08b8a
* Thu Jun 10 2010 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-7
f08b8a
- Add upstream fix for a regression with DRI on 64 bits.
f08b8a
- Clean up spec indentation.
f08b8a
f08b8a
* Sat May 08 2010 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-6
f08b8a
- Sync with trunk (r853) and drop patches accordingly.
f08b8a
- Add Xv acceleration for I420 on CME engine.
f08b8a
f08b8a
* Sat Apr 03 2010 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-5.1
f08b8a
- Workaround broken libdrm 2.4.19 Cflags.
f08b8a
f08b8a
* Wed Mar 31 2010 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-5
f08b8a
- Sanitize SaveVideoRegister function.
f08b8a
- Fix an Xv regression on CME chipsets introduced by the VX855 Xv patch.
f08b8a
f08b8a
* Mon Mar 22 2010 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-4
f08b8a
- Fix an Xv regression on VX800 introduced by the VX855 Xv patch.
f08b8a
f08b8a
* Thu Mar 18 2010 Xavier Bachelot <xavier@bachelot.org> - 0.2.904-3
f08b8a
- Sync with trunk (r841) for assorted tweaks and fixes.
f08b8a
- Add VX855 Xv support.
f08b8a
- Fix colorkey on VX8xx.
f08b8a
- Disable DMA and AGP by default on VX8xx.
f08b8a
- Fix TV out flickering regression.
f08b8a
- Add I2CDevices option (needed for XO-1.5).
f08b8a
- Improve PCI 2D performances path.
f08b8a
- Add a guard against HQV engine hang.
f08b8a
f08b8a
* Thu Jan 21 2010 Peter Hutterer <peter.hutterer@redhat.com> - 0.2.904-2
f08b8a
- Rebuild for server 1.8
f08b8a
f08b8a
* Tue Oct 13 2009 Adam Jackson <ajax@redhat.com> 0.2.904-1
f08b8a
- openchrome 0.2.904
f08b8a
f08b8a
* Fri Sep 18 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-16
f08b8a
- Update to latest snapshot (svn 789).
f08b8a
- Drop upstreamed patches.
f08b8a
f08b8a
* Tue Aug 25 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-15
f08b8a
- Add patch for resources/RAC API removal in xserver (RHBZ#516765).
f08b8a
f08b8a
* Thu Jul 30 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-14
f08b8a
- Update to latest snapshot (svn 766) for bugfixes.
f08b8a
- Drop upstreamed patches.
f08b8a
 
f08b8a
* Mon Jul 27 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.903-13
f08b8a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
f08b8a
d06736
* Sat Jul 18 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-12
f08b8a
- Update to latest snapshot (svn 758) :
f08b8a
  - Basic VX855 support.
f08b8a
  - Fix pci space corruption on P4M900 (RHBZ#506622).
f08b8a
  - Fix null pointer dereference in viaExaCheckComposite (RHBZ#449034).
f08b8a
- Add patch to allow 1200x900 panel (X0-1.5).
f08b8a
- Add patch to remove loader symbol lists, needed for xserver 1.7 (RHBZ#510206).
f08b8a
- Add experimental patch for better VT1625 support.
f08b8a
- Drop upstreamed patches.
f08b8a
 
f08b8a
* Wed Jul 15 2009 Adam Jackson <ajax@redhat.com> - 0.2.903-11.1
f08b8a
- ABI bump
f08b8a
f08b8a
* Thu Jun 18 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-11
f08b8a
- Update to latest snapshot (svn 751) :
f08b8a
  - Add support for VX800 integrated TMDS encoder.
f08b8a
  - Make sure Chrome9 chipsets use software rasterizer for 3D.
f08b8a
  - Various small fixes.
f08b8a
- Add patch for VX855 support.
f08b8a
- Add patch to fix cursor on secondary display.
f08b8a
- Add patch to disable TMDS by default.
f08b8a
f08b8a
* Sat Mar 21 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-10
f08b8a
- Update to latest snapshot (svn 740) :
f08b8a
  - Fix panel resolution detection fallback (RHBZ#491417).
f08b8a
  - Fix 2D engine initialization.
f08b8a
  - Add support for CX700 integrated TMDS encoder.
f08b8a
f08b8a
* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.903-9
f08b8a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
f08b8a
f08b8a
* Thu Feb 19 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-8
f08b8a
- Update to latest snapshot (svn 735) :
f08b8a
  - Fix green bars after VT switch (RHBZ#469504).
f08b8a
  - Set P4M890 primary FIFO.
f08b8a
f08b8a
* Tue Feb 17 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-7
f08b8a
- Update to latest snapshot (svn 726) :
f08b8a
  - Bug fixes for XAA and EXA.
f08b8a
  - Fix 2d initialization for P4M900.
f08b8a
f08b8a
* Wed Jan 07 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-6
f08b8a
- Fix crash with xserver 1.6 (changeset 712) (RHBZ#479141).
f08b8a
f08b8a
* Mon Jan 05 2009 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-5
f08b8a
- Update to latest snapshot (svn 711) :
f08b8a
  - Fix hardware cursor (RHBZ#465596).
f08b8a
  - Add VX800 Xv.
f08b8a
f08b8a
* Tue Dec 30 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-4
f08b8a
- Fix autoreconf call.
f08b8a
f08b8a
* Mon Dec 29 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-3
f08b8a
- Update to latest snapshot (svn 696), fix RHBZ#446489.
f08b8a
- Make debug build optional and disable it.
f08b8a
f08b8a
* Fri Nov 07 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-2
f08b8a
- Update to latest snapshot (svn 685), most notably add basic VX800 support.
f08b8a
- Turn on full debugging.
f08b8a
f08b8a
* Wed Aug 20 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.903-1
f08b8a
- Update to 0.2.903.
f08b8a
f08b8a
* Wed Aug 06 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-10
f08b8a
- Disable argb cursor for K8M800.
f08b8a
f08b8a
* Sun Aug 03 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-9
f08b8a
- New version of the panel and hw cursor patch.
f08b8a
- Rawhide is now using patch --fuzz=0, fixes for induced issues.
f08b8a
f08b8a
* Mon Jun 23 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-8
f08b8a
- New version of the panel and hw cursor patch.
f08b8a
f08b8a
* Sat May 31 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-7
f08b8a
- New panel and hardware cursor code from randr branch.
f08b8a
d06736
* Sat May 31 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-6
f08b8a
- Disable XvDMA for K8M890 and P4M890 (RHBZ #391621).
f08b8a
f08b8a
* Mon May 26 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-5
f08b8a
- Add patch to fix Xv on LCD for CX700.
f08b8a
f08b8a
* Sun May 25 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-4
f08b8a
- Unbreak ActiveDevice option.
f08b8a
f08b8a
* Thu Apr 17 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-3
f08b8a
- Strip leading /trunk/ from patch #2 and #3.
f08b8a
f08b8a
* Sun Apr 13 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-2
f08b8a
- Add patch to properly report driver version in the libpciaccess code path.
f08b8a
- Add patch to properly report chipset revision in the libpciaccess code path.
f08b8a
f08b8a
* Wed Apr 09 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.902-1
f08b8a
- New upstream release.
f08b8a
- Re-enable AGPDMA for K8M800 and VM800, as the drm bug is fixed in kernel
f08b8a
  >= 2.6.25rc7 (Patch #1).
f08b8a
f08b8a
* Mon Mar 17 2008 Jesse Keating <jkeating@redhat.com> - 0.2.901-16
f08b8a
- Remove dangerous unversioned obsoletes/provides.
f08b8a
f08b8a
* Sun Mar 16 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-15
f08b8a
- Update to latest svn snapshot (Rev. 553).
f08b8a
f08b8a
* Sun Mar 09 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-14
f08b8a
- Revert to last good version of the libpciaccess patch.
f08b8a
f08b8a
* Sun Mar 09 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-13
f08b8a
- Temporarily revert to old memory detection method. We need something that
f08b8a
  works out of the box for F9 Beta.
f08b8a
f08b8a
* Sat Mar 08 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-12
f08b8a
- Yet another revision of the libpciaccess patch.
f08b8a
f08b8a
* Fri Mar 07 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-11
f08b8a
- Fix a typo in libpciaccess patch.
f08b8a
f08b8a
* Fri Mar 07 2008 Adam Jackson <ajax@redhat.com> 0.2.901-10
f08b8a
- Fix -devel subpackage to obsolete via-devel properly.
f08b8a
f08b8a
* Thu Mar 06 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-9
f08b8a
- Fix libpciaccess patch.
f08b8a
f08b8a
* Thu Mar 06 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-8
f08b8a
- Add patch to fix XV on LCD for VM800.
f08b8a
- Improved libpciaccess patch.
f08b8a
f08b8a
* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.2.901-7
f08b8a
- Autorebuild for GCC 4.3
f08b8a
f08b8a
* Wed Jan 23 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-6
f08b8a
- Add patch to properly set fifo on P4M900.
f08b8a
d06736
* Sat Jan 19 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-5
f08b8a
- Add patch to replace xf86memcpy by plain memcpy.
f08b8a
f08b8a
* Thu Jan 10 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-4
f08b8a
- Another try at fixing the libpciaccess patch.
f08b8a
f08b8a
* Mon Jan 07 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-3
f08b8a
- And now fix patch filename...
f08b8a
f08b8a
* Mon Jan 07 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-2
f08b8a
- Fix broken libpciaccess patch.
f08b8a
f08b8a
* Wed Jan 02 2008 Xavier Bachelot <xavier@bachelot.org> - 0.2.901-1
f08b8a
- Update to 0.2.901.
f08b8a
- Remove obsoleted patches.
f08b8a
- Update libpciaccess patch.
f08b8a
d06736
* Sat Dec 08 2007 Xavier Bachelot <xavier@bachelot.org> - 0.2.900-9
f08b8a
- Add patch for preliminary libpciaccess support.
f08b8a
f08b8a
* Wed Nov 28 2007 Adam Jackson <ajax@redhat.com> 0.2.900-8
f08b8a
- Obsolete xorg-x11-drv-via.  The king is dead, long live the king.
f08b8a
- Munge xorg.conf in %%post to change from via to openchrome.
f08b8a
- Drive-by spec cleanups.
f08b8a
f08b8a
* Fri Nov 02 2007 Xavier Bachelot <xavier@bachelot.org> - 0.2.900-7
f08b8a
- Replace broken VT1625 NTSC patch.
f08b8a
- Add patch to announce as release not as development build.
f08b8a
- First official Fedora build.
f08b8a
f08b8a
* Thu Oct 18 2007 Xavier Bachelot <xavier@bachelot.org> - 0.2.900-6
f08b8a
- Update to official 0.2.900
f08b8a
f08b8a
* Wed Oct 10 2007 Xavier Bachelot <xavier@bachelot.org> - 0.2.900-5
f08b8a
- Update to release_0_3_0 branch rev. 410
f08b8a
- Add VT1625 patch for 720x576 PAL
f08b8a
f08b8a
* Mon Sep 10 2007 Xavier Bachelot <xavier@bachelot.org> - 0.2.900-4
f08b8a
- Update to release_0_3_0 branch rev. 384 plus all changes from experimental
f08b8a
  merged back
f08b8a
- Remove upstream patch #2
f08b8a
f08b8a
* Wed Aug 01 2007 Xavier Bachelot <xavier@bachelot.org> - 0.2.900-3
f08b8a
- Update to release_0_3_0 branch rev. 380 (fix a bug with XvMC acceleration)
f08b8a
- Add a patch to allow proper detection of DDR667 (patch #2)
f08b8a
f08b8a
* Mon Jul 16 2007 Xavier Bachelot <xavier@bachelot.org> - 0.2.900-2
f08b8a
- Update to release_0_3_0 branch rev. 373
f08b8a
- Add release notes to %%doc
f08b8a
f08b8a
* Thu Jul 05 2007 Xavier Bachelot <xavier@bachelot.org> - 0.2.900-1
f08b8a
- Initial build (release_0_3_0 branch rev. 365)
f08b8a
- Add some NTSC modes for the VT1625 (patch #1)