Compare commits

...
Sign in to create a new pull request.

9 commits

Author SHA1 Message Date
Bill Nottingham
a850abfa40 Retire viaideinfo. 2011-07-25 18:22:44 -04:00
Dennis Gilmore
9f91b8f5ce - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild 2011-02-07 19:25:14 -06:00
Fedora Release Engineering
3630fbfe2f dist-git conversion 2010-07-29 14:58:12 +00:00
Bill Nottingham
1281b86c94 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-25 22:43:21 +00:00
Jesse Keating
a032ca920d - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild 2009-07-27 06:51:28 +00:00
Jesse Keating
34e8a0f787 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild 2009-02-26 00:17:25 +00:00
Tom Callaway
90c9f5143a fix license tag 2008-09-09 03:23:24 +00:00
Jesse Keating
6ae3645480 - Autorebuild for GCC 4.3 2008-02-19 19:23:02 +00:00
Peter Gordon
6ccb1eeb24 Update to new upstream release (0.5) which adds some new hardware support;
add zlib-devel to BuildRequires; fix minor grammar error in previous
    %changelog entry.
2007-02-01 05:17:23 +00:00
6 changed files with 2 additions and 89 deletions

View file

@ -1 +0,0 @@
viaideinfo-0.4.tar.gz

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
viaideinfo-0.5.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: viaideinfo
# $Id$
NAME := viaideinfo
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
dead.package Normal file
View file

@ -0,0 +1 @@
This package was retired on 2011-07-25 due to it being unable to build this package for multiple releases (FTBFS).

View file

@ -1 +0,0 @@
e436a580eb8a047a0551cb996b11e6f5 viaideinfo-0.4.tar.gz

View file

@ -1,66 +0,0 @@
Name: viaideinfo
Version: 0.4
Release: 3%{?dist}
Summary: Displays the information of installed VIA IDE controllers
Group: Applications/System
License: GPL
URL: http://reactivated.net/software/viaideinfo
Source0: http://reactivated.net/software/viaideinfo/viaideinfo-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
ExclusiveArch: %{ix86} x86_64
BuildRequires: pciutils-devel >= 2.2.0
# Taken from the README
%description
This command-line application identifies VIA IDE controllers installed in the
computer, and displays various information/statistics regarding these. This
does not depend on the via82cxxx kernel IDE driver, and will work regardless of
whether it is present or not. All this information used to be available through
/proc/ide/via; however this file was removed in Linux 2.6.15 to reduce the
complexity of the IDE driver. Since it performs some basic port I/O, it must be
run as root.
Supported devices:
VT82C576, VT82C586, VT82C586A, VT82C586B, VT82C596A, VT82C596B,
VT82C686, VT82C686A, VT82C686B, VT8231, VT8233, VT8233C, VT8233A,
VT8235, VT8237, VT8237A, VT8251, VT6410
%prep
%setup -q
%build
%configure
make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make DESTDIR=%{buildroot} install
%clean
rm -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README THANKS
%{_bindir}/%{name}
%{_mandir}/man8/%{name}.8.gz
%changelog
* Sat Oct 21 2006 Peter Gordon <peter@thecodergeek.com> - 0.4-3
- Bump release to fix CVS tagging issue
* Sat Oct 21 2006 Peter Gordon <peter@thecodergeek.com> - 0.4-2
- Enable building on x86_64 (It works fine on x86-64 Via-based systems too,
according to an email from the upstream maintainer.)
* Tue Oct 17 2006 Peter Gordon <peter@thecodergeek.com> - 0.4-1
- Initial packaging