File cvsps.spec of Package cvsps
#
# spec file for package cvsps
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: cvsps
Summary: A Program for Generating Patch Set Information from a CVS Repository
License: GPL-2.0+
Group: Development/Tools/Version Control
Version: 3.8
Release: 0
Source0: http://www.catb.org/~esr/cvsps/%{name}-%{version}.tar.gz
Url: http://www.catb.org/~esr/cvsps/
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: asciidoc
BuildRequires: libxslt-tools
BuildRequires: pkgconfig(zlib)
%description
CVSps is a program for generating 'patchset' information from a CVS
repository. In this case, a patchset is defined as a set of changes
made to a collection of files, all committed at the same time (using a
single 'cvs commit' command). This information is valuable for seeing
the big picture of the evolution of a CVS project. While CVS tracks
revision information, it is often difficult to see what changes were
'atomically' committed to the repository.
%prep
%setup -q
%build
export CFLAGS="%{optflags}"
%{__make} %{?jobs:-j%jobs}
%install
%{__make} prefix=%{buildroot}/%{_prefix} install
%clean
rm -rf $RPM_BUILD_ROOT
%files
%defattr(-,root,root)
%doc COPYING NEWS README TODO
%{_bindir}/cvsps
%{_mandir}/man*/*
%changelog