forked from pool/quilt
3a7d64b475
* Fix bash completion of patch names * Fix refresh error message * Fix quilt diff -z on file names including spaces * Fix quilt files output when there are no files * Fix patches heuristic for unapplied patches with timestamps * Re-enable testing of patch-wrapper * Fix performance regression in quilt patches * Performance boost for series, applies and unapplied commands OBS-URL: https://build.opensuse.org/package/show/devel:tools:scm/quilt?expand=0&rev=78
151 lines
4.8 KiB
RPMSpec
151 lines
4.8 KiB
RPMSpec
#
|
|
# spec file for package quilt
|
|
#
|
|
# Copyright (c) 2014 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: quilt
|
|
Version: 0.61
|
|
Release: 0
|
|
Summary: A Tool for Working with Many Patches
|
|
License: GPL-2.0+
|
|
Group: Productivity/Text/Utilities
|
|
BuildRequires: diffstat
|
|
BuildRequires: ed
|
|
BuildRequires: emacs-nox
|
|
BuildRequires: procmail
|
|
Requires: coreutils
|
|
Requires: diffstat
|
|
Requires: diffutils
|
|
Requires: file
|
|
Requires: findutils
|
|
Requires: gzip
|
|
Requires: less
|
|
Requires: mktemp
|
|
Requires: patch
|
|
Requires: perl
|
|
Url: http://savannah.nongnu.org/projects/quilt
|
|
Source: %{name}-%{version}.tar.bz2
|
|
Source1: suse-start-quilt-mode.el
|
|
Patch1: expand.diff
|
|
Patch2: quilt-support-vimdiff.patch
|
|
Patch3: patch-wrapper-rpm.diff
|
|
Patch4: setup-check-for-rpmbuild.patch
|
|
Patch5: suse-workaround-pseudo-release.patch
|
|
Patch6: quilt-bash_completion-fix-completion-of-patch-names.patch
|
|
Patch7: quilt-refresh-fix-error-message.patch
|
|
Patch8: quilt-fix-quilt-diff-z-on-files-with-spaces-in-name.patch
|
|
Patch9: quilt-files-return-nothing-if-there-are-no-files.patch
|
|
Patch10: quilt-patches-optimize-processing-of-unapplied-patches.patch
|
|
Patch11: quilt-patches-optimize-the-multiple-files-case.patch
|
|
Patch12: quilt-boost-the-speed-of-series-applied-and-unapplied.patch
|
|
Patch13: quilt-patches-fix-heuristic-for-unapplied-patches-with-timestamps.patch
|
|
Patch14: quilt-enable-patch-wrapper-test.patch
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
Recommends: procmail
|
|
Recommends: bzip2
|
|
Recommends: /usr/bin/rpmbuild
|
|
%if 0%{?suse_version} > 1120
|
|
Recommends: xz
|
|
%endif
|
|
|
|
%description
|
|
Quilt allows you to easily manage large numbers of patches by keeping
|
|
track of the changes each patch makes. Patches can be applied,
|
|
un-applied, refreshed, and more.
|
|
|
|
Quilt originally was based on Andrew Morton's patch scripts found at
|
|
http://www.zip.com.au/~akpm/linux/patches/.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch1 -p1
|
|
%patch2 -p1
|
|
%patch3 -p1
|
|
%patch4 -p1
|
|
%patch5 -p1
|
|
%patch6 -p1
|
|
%patch7 -p1
|
|
%patch8 -p1
|
|
%patch9 -p1
|
|
%patch10 -p1
|
|
%patch11 -p1
|
|
%patch12 -p1
|
|
%patch13 -p1
|
|
%patch14 -p1
|
|
|
|
%build
|
|
# --with-rpmbuild=/usr/lib/rpm/rpmb:
|
|
#
|
|
# SUSE Autobuild uses a version of /usr/bin/rpmbuild that sources
|
|
# /etc/profile to reset the PATH. We must not do that: the
|
|
# inspect script needs to pass an additional path component to
|
|
# rpmbuild for the tar and patch wrappers.
|
|
CFLAGS="%{optflags}" \
|
|
./configure --prefix=/usr \
|
|
--mandir=%{_mandir} \
|
|
--docdir=%{_docdir}/%{name} \
|
|
--with-sendmail=/usr/sbin/sendmail \
|
|
--with-diffstat=/usr/bin/diffstat \
|
|
--with-patch-wrapper \
|
|
--with-patch=/usr/bin/patch \
|
|
--with-rpmbuild=/usr/lib/rpm/rpmb
|
|
make %{?_smp_mflags} RELEASE=%{release}
|
|
# Compile quilt.el for faster emacs startup (bnc#617673)
|
|
pushd lib
|
|
emacs -batch -q --no-site -f batch-byte-compile quilt.el
|
|
popd
|
|
|
|
%check
|
|
make check
|
|
|
|
%install
|
|
# /usr/share/quilt/compat/mta will be a stale symlink: we don't want to add
|
|
# sendmail to neededforbuild just because of this.
|
|
export NO_BRP_STALE_LINK_ERROR=yes
|
|
make install BUILD_ROOT=%{buildroot}
|
|
install -m 644 lib/quilt.elc \
|
|
%{buildroot}%{_datadir}/emacs/site-lisp/
|
|
mv %{buildroot}%{_sysconfdir}/bash_completion.d/quilt{,.sh}
|
|
# We only needed the /usr/bin/patch compatibility symlink for the
|
|
# test suite.
|
|
[ %{buildroot}%{_datadir}/quilt/compat/patch -ef /usr/bin/patch ] \
|
|
&& rm -f %{buildroot}%{_datadir}/quilt/compat/patch
|
|
[ %{buildroot}%{_datadir}/quilt/compat/awk -ef /usr/bin/awk ] \
|
|
&& rm -f %{buildroot}%{_datadir}/quilt/compat/awk
|
|
%{find_lang} %{name}
|
|
# Make "vi" an alias for the edit command
|
|
ln -s edit %{buildroot}%{_datadir}/quilt/vi
|
|
# Autoload quilt-mode in the SuSE emacs package
|
|
install -m 644 %_sourcedir/suse-start-quilt-mode.el \
|
|
%{buildroot}%{_datadir}/emacs/site-lisp/
|
|
|
|
%files -f %{name}.lang
|
|
%defattr(-, root, root)
|
|
%{_bindir}/guards
|
|
%{_bindir}/quilt
|
|
%{_datadir}/quilt/
|
|
%{_datadir}/emacs/
|
|
%config %{_sysconfdir}/quilt.quiltrc
|
|
%config %{_sysconfdir}/bash_completion.d/quilt.sh
|
|
%doc %{_mandir}/man1/guards.1.gz
|
|
%doc %{_mandir}/man1/quilt.1.gz
|
|
%doc doc/README
|
|
%doc doc/README.MAIL
|
|
%doc doc/quilt.pdf
|
|
|
|
%changelog
|