Compare commits
27 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e396dc0f85 | ||
| a6bf785d0b | |||
|
|
f0d70eaf1f | ||
| aa39fa8c49 | |||
|
|
3640bc4c52 | ||
|
|
64ba463b9d | ||
|
|
3650b85c0f | ||
|
|
f893e82c62 | ||
|
|
aad5f41e3a | ||
|
|
ff3e4b6d14 | ||
|
|
53d083d8ab | ||
|
|
38b900473e | ||
|
|
700988236c | ||
|
|
cf1c8a01a9 | ||
|
|
9048d63892 | ||
| 935468f1a7 | |||
|
|
61324ecdc2 | ||
|
|
77407d3536 | ||
|
|
c04fc5f321 | ||
|
|
954276b225 | ||
|
|
bea45fd211 | ||
|
|
758a5161c7 | ||
|
|
fa2a30be84 | ||
|
|
e09079e67a | ||
|
|
f0c9a7267d | ||
|
|
8de47b9548 | ||
|
|
f86d97a123 |
5 changed files with 103 additions and 21 deletions
4
.gitignore
vendored
Normal file
4
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
vdpauinfo-0.0.6.tar.gz
|
||||
/vdpauinfo-0.1.tar.gz
|
||||
/vdpauinfo-0.9.tar.gz
|
||||
/vdpauinfo-1.0.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: vdpauinfo
|
||||
# $Id$
|
||||
NAME := vdpauinfo
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
4eba3e7bf5062b9c245276860493804f vdpauinfo-1.0.tar.gz
|
||||
98
vdpauinfo.spec
Normal file
98
vdpauinfo.spec
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
Name: vdpauinfo
|
||||
Version: 1.0
|
||||
Release: 10%{?dist}
|
||||
Summary: Tool to query the capabilities of a VDPAU implementation
|
||||
|
||||
License: MIT
|
||||
URL: http://freedesktop.org/wiki/Software/VDPAU
|
||||
Source0: http://people.freedesktop.org/~aplattner/vdpau/vdpauinfo-%{version}.tar.gz
|
||||
|
||||
BuildRequires: gcc-c++
|
||||
BuildRequires: libvdpau-devel >= 1.0
|
||||
|
||||
|
||||
%description
|
||||
Tool to query the capabilities of a VDPAU implementation.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
|
||||
%build
|
||||
%configure
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
|
||||
|
||||
%files
|
||||
%doc COPYING
|
||||
%{_bindir}/vdpauinfo
|
||||
|
||||
|
||||
%changelog
|
||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||
|
||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||
|
||||
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-8
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||
|
||||
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||
|
||||
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||
|
||||
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.0-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||
|
||||
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.0-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||
|
||||
* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 1.0-3
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
* Tue Mar 17 2015 Nicolas Chauvet <kwizart@gmail.com> - 1.0-2
|
||||
- Rebuilt for libvdpau-1.1
|
||||
|
||||
* Thu Mar 12 2015 Nicolas Chauvet <kwizart@gmail.com> - 1.0-1
|
||||
- Update to 1.0
|
||||
|
||||
* Fri Dec 19 2014 Nicolas Chauvet <kwizart@gmail.com> - 0.9-0.1
|
||||
- Update to 0.9
|
||||
|
||||
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Fri Oct 25 2013 Nicolas Chauvet <kwizart@gmail.com> - 0.1-1
|
||||
- Update to 0.1
|
||||
|
||||
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.6-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.6-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||
|
||||
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.0.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||
|
||||
* Thu Sep 17 2009 kwizart < kwizart at gmail.com > - 0.0.6-2
|
||||
- Tagged archive compatible with livdpau 0.2
|
||||
|
||||
* Sun Mar 22 2009 kwizart < kwizart at gmail.com > - 0.0.6-1
|
||||
- Initial package
|
||||
Loading…
Add table
Add a link
Reference in a new issue