Compare commits
12 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc0857f3ee | ||
|
|
d21bfd80a7 | ||
|
|
fabe1de5c1 | ||
| dd6a8d271b | |||
|
|
b90ad5cafb | ||
|
|
dffc7f104b | ||
|
|
56b6211054 | ||
|
|
f844761d37 | ||
|
|
343bb5aaa6 | ||
|
|
505db8b6cb | ||
|
|
bb203f4a77 | ||
|
|
7ade05fb0b |
5 changed files with 3 additions and 119 deletions
|
|
@ -1 +0,0 @@
|
|||
vrq-1.0.58.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -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
3
dead.package
Normal 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
|
||||
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
8a7e8c48452835f14f3858121635ff22 vrq-1.0.58.tar.gz
|
||||
96
vrq.spec
96
vrq.spec
|
|
@ -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
|
||||
Loading…
Add table
Add a link
Reference in a new issue