[pkgdiff] Initial import (#785785).

Richard Shaw hobbes1069 at fedoraproject.org
Mon Feb 27 14:54:18 UTC 2012


commit 226c216f04c8def55d0a983a3a5c41d28d4bad9e
Author: Richard M. Shaw <hobbes1069 at gmail.com>
Date:   Mon Feb 27 08:54:15 2012 -0600

    Initial import (#785785).

 .gitignore   |    1 +
 pkgdiff.spec |   64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 sources      |    1 +
 3 files changed, 66 insertions(+), 0 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index e69de29..5124e65 100644
--- a/.gitignore
+++ b/.gitignore
@@ -0,0 +1 @@
+/pkgdiff-1.2.tar.gz
diff --git a/pkgdiff.spec b/pkgdiff.spec
new file mode 100644
index 0000000..ee845f7
--- /dev/null
+++ b/pkgdiff.spec
@@ -0,0 +1,64 @@
+Name:           pkgdiff
+Version:        1.2
+Release:        1%{?dist}
+Summary:        A tool for analyzing changes in Linux software packages
+
+License:        GPLv2+
+URL:            http://pkgdiff.github.com/pkgdiff/
+Source0:        https://github.com/downloads/%{name}/%{name}/%{name}-%{version}.tar.gz
+
+BuildRequires:  help2man
+Requires:       wdiff binutils gawk
+Requires:       abi-compliance-checker >= 1.96
+
+BuildArch:      noarch
+
+
+%description
+Package Changes Analyzer (pkgdiff) is a tool for analyzing changes
+in Linux software packages (RPM, DEB, TAR.GZ, etc). The tool is
+intended for Linux maintainers who are interested in ensuring
+compatibility of old and new versions of packages.
+
+
+%prep
+%setup -q
+chmod 0644 LICENSE README
+chmod 0755 %{name}.pl
+
+
+%build
+# Nothing to build.
+
+
+%install
+mkdir -p %{buildroot}%{_prefix}
+mkdir -p %{buildroot}%{_mandir}/man1
+perl Makefile.pl -install --prefix=%{_prefix} --destdir=%{buildroot}
+
+# Generate man page
+cp %{name}.pl %{name}
+help2man -N --no-discard-stderr -o %{name}.1 ./%{name}
+sed -i 's/\(.\)/\n\1/' %{name}.1
+sed -i 's/PACKAGE/PKGDIFF/g' %{name}.1
+install -m 0644 %{name}.1 %{buildroot}%{_mandir}/man1
+
+
+%files
+%doc LICENSE README doc/*
+%{_bindir}/%{name}
+%{_datadir}/%{name}
+%{_mandir}/man1/*
+
+
+%changelog
+* Fri Feb 17 2012 Richard Shaw <hobbes1069 at gmail.com> - 1.2-1
+- Update to latest release.
+- rfcdiff is now considered forked.
+
+* Tue Feb 14 2012 Richard Shaw <hobbes1069 at gmail.com> - 1.0-3
+- Unbundle rfcdiff.
+- Add rfcdiff as requirement to spec file.
+
+* Mon Jan 30 2012 Richard Shaw <hobbes1069 at gmail.com> - 1.0-1
+- Initial release.
diff --git a/sources b/sources
index e69de29..c6b5c7e 100644
--- a/sources
+++ b/sources
@@ -0,0 +1 @@
+2e38c63988d5f2d93450e8dd93a735f9  pkgdiff-1.2.tar.gz


More information about the scm-commits mailing list