85 lines
2.3 KiB
RPMSpec
85 lines
2.3 KiB
RPMSpec
Name: kccmp
|
|
Version: 1.0
|
|
Release: 1mamba
|
|
Summary: A simple QT tool for comparing two linux kernel ".config" files
|
|
Group: System/Kernel and Hardware
|
|
Vendor: openmamba
|
|
Distribution: openmamba
|
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
|
URL: https://github.com/hanzyd/kccmp
|
|
Source: https://github.com/hanzyd/kccmp.git/v%{version}/kccmp-%{version}.tar.bz2
|
|
Patch0: %{name}-0.2-qt4.patch
|
|
License: GPL
|
|
## AUTOBUILDREQ-BEGIN
|
|
BuildRequires: glibc-devel
|
|
BuildRequires: libgcc
|
|
BuildRequires: libstdc++6-devel
|
|
## AUTOBUILDREQ-END
|
|
|
|
%description
|
|
kccmp is a simple tool for comparing two linux kernel ".config" files.
|
|
|
|
It has the following features:
|
|
1) Displays the configuration variables with different values.
|
|
2) Displays the configuration variables and values which are found in
|
|
only one of the compared files.
|
|
|
|
usage:
|
|
% kccmp /path/to/first/.config /path/to/second/.config
|
|
|
|
example:
|
|
% kccmp /usr/src/linux/.config /usr/src/linux/.config.old
|
|
|
|
%debug_package
|
|
|
|
%prep
|
|
%setup -q
|
|
#%patch0 -p1
|
|
|
|
%build
|
|
#qmake-qt4
|
|
#sed -i "s|-lqt|-lqt-mt|" Makefile
|
|
%make
|
|
|
|
%install
|
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
|
|
|
install -D -m0755 kccmp %{buildroot}%{_bindir}/kccmp
|
|
|
|
%clean
|
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%{_bindir}/kccmp
|
|
%doc LICENSE.GPL
|
|
|
|
%changelog
|
|
* Fri Aug 18 2023 Silvan Calarco <silvan.calarco@mambasoft.it> 1.0-1mamba
|
|
- update to 1.0
|
|
|
|
* Wed Sep 19 2012 Automatic Build System <autodist@mambasoft.it> 0.3-1mamba
|
|
- automatic version update by autodist
|
|
|
|
* Tue Dec 14 2010 Automatic Build System <autodist@mambasoft.it> 0.2-7mamba
|
|
- automatic rebuild by autodist
|
|
|
|
* Sun Jun 13 2010 Automatic Build System <autodist@mambasoft.it> 0.2-6mamba
|
|
- automatic rebuild by autodist
|
|
|
|
* Mon Jun 08 2009 Automatic Build System <autodist@mambasoft.it> 0.2-5mamba
|
|
- automatic rebuild by autodist
|
|
- switched to qt4
|
|
|
|
* Fri Oct 19 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2-4mamba
|
|
- rebuild with libboost 1.34.1
|
|
|
|
* Sat Jul 07 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2-3mamba
|
|
- rebuilt against libboost-1.34.0
|
|
|
|
* Thu May 03 2007 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2-2mamba
|
|
- rebuilt
|
|
|
|
* Fri Nov 25 2005 Silvan Calarco <silvan.calarco@mambasoft.it> 0.2-1qilnx
|
|
- package created by autospec
|