Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e02cd1e3b0 | ||
|
|
365591a387 | ||
|
|
02b322fdcc |
3 changed files with 52 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -0,0 +1 @@
|
|||
/validns-0.5.tar.gz
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
de8ad86d7a87dc20ef800c9286090985 validns-0.5.tar.gz
|
||||
50
validns.spec
Normal file
50
validns.spec
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
Summary: DNS and DNSSEC zone file validator
|
||||
Name: validns
|
||||
Version: 0.5
|
||||
Release: 1%{?dist}
|
||||
License: BSD
|
||||
Url: http://www.validns.net/
|
||||
Source: http://www.validns.net/download/%{name}-%{version}.tar.gz
|
||||
Group: Applications/Internet
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: Judy-devel, openssl-devel
|
||||
|
||||
%description
|
||||
DNS and DNSSEC zone file validator. It comes with no man page and no
|
||||
useful README or information, but it's a nice tool anyway :)
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
make %{?_smp_mflags}
|
||||
gzip validns.1
|
||||
|
||||
%install
|
||||
mkdir -p %{buildroot}/%{_bindir} %{buildroot}/%{_mandir}/man1/
|
||||
install -m 755 validns %{buildroot}/%{_bindir}/
|
||||
cp -a validns.1.gz %{buildroot}/%{_mandir}/man1/
|
||||
|
||||
%clean
|
||||
rm -rf %{buildroot}
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc LICENSE README
|
||||
%{_bindir}/validns
|
||||
%{_mandir}/man1/validns.1.gz
|
||||
|
||||
%changelog
|
||||
* Thu Jun 07 2012 Paul Wouters <pwouters@redhat.com> - 0.5-1
|
||||
- Updated to 0.5 which supports Parallelize signature verification
|
||||
- Install man page
|
||||
|
||||
* Tue May 01 2012 Paul Wouters <pwouters@redhat.com> - 0.4-1
|
||||
- Updated to 0.4 which fixes a TXT record parsing bug
|
||||
|
||||
* Tue Feb 28 2012 Paul Wouters <pwouters@redhat.com> - 0.3-2
|
||||
- Added missing BuildRequire for openssl-devel
|
||||
|
||||
* Mon Feb 13 2012 Paul Wouters <pwouters@redhat.com> - 0.3-1
|
||||
- Initial package
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue