Compare commits

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

12 commits

Author SHA1 Message Date
Till Maas
bc0857f3ee 2014-12-17: Retired orphaned package, because it was orphaned for more than six weeks.
Reference: https://fedorahosted.org/epel/ticket/7
2014-12-17 22:18:13 +01:00
Fedora Release Engineering
d21bfd80a7 dist-git conversion 2010-07-29 15:08:40 +00:00
Shakthi Kannan
fabe1de5c1 Updated to 1.0.77 package. 2010-07-22 08:27:31 +00:00
dd6a8d271b Initialize branch EL-6 for vrq 2010-05-08 02:27:49 +00:00
Shakthi Kannan
b90ad5cafb Updated to 1.0.74 upstream package. 2010-04-05 11:45:49 +00:00
Shakthi Kannan
dffc7f104b Updated to upstream 1.0.72 package. 2010-03-30 05:49:56 +00:00
Shakthi Kannan
56b6211054 Updated to upstream 1.0.67 package. 2009-12-04 19:34:31 +00:00
Bill Nottingham
f844761d37 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:15:48 +00:00
Shakthi Kannan
343bb5aaa6 Updated to 1.0.65 package. 2009-11-09 18:15:06 +00:00
Shakthi Kannan
505db8b6cb Updated to vrq 1.0.63 package. 2009-10-25 11:50:23 +00:00
Shakthi Kannan
bb203f4a77 Updated to 1.0.62 package. 2009-10-16 17:08:38 +00:00
Shakthi Kannan
7ade05fb0b Updated to 1.0.61 package. 2009-10-11 05:35:53 +00:00
5 changed files with 3 additions and 119 deletions

View file

@ -1 +0,0 @@
vrq-1.0.58.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: vrq
# $Id$
NAME := vrq
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)

3
dead.package Normal file
View file

@ -0,0 +1,3 @@
2014-12-17: Retired orphaned package, because it was orphaned for more than six weeks.
Reference: https://fedorahosted.org/epel/ticket/7

View file

@ -1 +0,0 @@
8a7e8c48452835f14f3858121635ff22 vrq-1.0.58.tar.gz

View file

@ -1,96 +0,0 @@
Name: vrq
Version: 1.0.58
Release: 3%{?dist}
Summary: Verilog tool framework with plugins for manipulating source code
Group: Applications/Engineering
License: GPLv2+
URL: http://vrq.sourceforge.net/
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
# ---- Exclusive Arch: ----
# plugin/sim uses x86 inline assembly
ExclusiveArch: %{ix86} x86_64
BuildRequires: bison flex help2man doxygen iverilog-devel
Requires: bzip2-libs
%description
VRQ is modular verilog parser that supports plugin tools to process verilog.
Multiple tools may be invoked in a pipeline fashion within a single execution
of vrq. It is a generic front-end parser with support for plugin backend
customizable tools.
%package devel
Summary: Header files and libraries for Vrq development
Group: Development/Libraries
Requires: %{name} = %{version}-%{release}
%description devel
The vrq-devel package contains the header files and libraries needed
to develop backend plugin customization tools for the vrq tool framework.
%prep
%setup -q
%{__rm} -rf `find . -name CVS`
%{__rm} -f `find . -name *.o`
%{__rm} -f `find . -name *.so`
%{__sed} -i "s|^MYDOCDIR = |MYDOCDIR = \$(DESTDIR)|" doc/Makefile*
%build
%configure
%{__make} %{?_smp_mflags}
%install
%{__rm} -rf %{buildroot}
%{__make} INSTALL="%{_bindir}/install -p" install DESTDIR=%{buildroot}
%{__rm} -f `find %{buildroot} -name *.la`
%{__rm} -rf `find %{buildroot} -name latex`
# Fedora Electronic Lab: Package Self Check
%check
%{__make} check
%clean
%{__rm} -rf %{buildroot}
%files
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING README doc/faq.html
%{_bindir}/%{name}
%{_libdir}/%{name}-%{version}
%{_mandir}/man1/vrq.1.gz
%files devel
%defattr(-,root,root,-)
%doc doc/html plugin/examples/example1 plugin/examples/example2
%{_includedir}/%{name}-%{version}
%changelog
* Sun Sep 13 2009 Shakthi Kannan <shakthimaan [AT] gmail DOT com> - 1.0.58-3
- Removed ldconfig for post and postun as shared library not in /usr/lib
* Sat Sep 12 2009 Shakthi Kannan <shakthimaan [AT] gmail DOT com> - 1.0.58-2
- Removed ldconfig for post and postun in -devel package as it does not
contain any shared libraries
* Thu Sep 10 2009 Shakthi Kannan <shakthimaan [AT] gmail DOT com> - 1.0.58-1
- Added comment for using ExclusiveArch
- Removed perl from BR
- Simplified make install command and used -p to preserve timestamps for
install files
- Updated MYDOCDIR in prep section
- The main package doc contains AUTHORS ChangeLog COPYING README faq.html
- The devel package doc contains doc/html and example* folders
- Cleanup .so and .o files in example* folders
* Tue Sep 08 2009 Shakthi Kannan <shakthimaan [AT] gmail DOT com> - 1.0.56-2
- Added Requires for -devel section as it is a MUST requirement.
- Added post, postun for -devel package as well.
- Cleaned up .la files in the shipped package.
- Replaced rm with __rm usage.
* Sun Sep 06 2009 Shakthi Kannan <shakthimaan [AT] gmail DOT com> - 1.0.56-1
- Initial Package