update to 1.0 [release 1.0-1mamba;Fri Aug 18 2023]
This commit is contained in:
parent
5f2dff6db7
commit
59fa3d0b46
13
README.md
13
README.md
@ -1,8 +1,15 @@
|
|||||||
# kccmp
|
# kccmp
|
||||||
|
|
||||||
kccmp is a simple QT tool for comparing two linux kernel ".config" files.
|
kccmp is a simple tool for comparing two linux kernel ".config" files.
|
||||||
|
|
||||||
It has the following features:
|
It has the following features:
|
||||||
- displays the configuration variables with different values in a table form
|
1) Displays the configuration variables with different values.
|
||||||
- displays the configuration variables and values which are found in only one of the compared files
|
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
|
||||||
|
|
||||||
|
48
kccmp.spec
48
kccmp.spec
@ -1,54 +1,49 @@
|
|||||||
Name: kccmp
|
Name: kccmp
|
||||||
Version: 0.3
|
Version: 1.0
|
||||||
Release: 1mamba
|
Release: 1mamba
|
||||||
Summary: A simple QT tool for comparing two linux kernel ".config" files
|
Summary: A simple QT tool for comparing two linux kernel ".config" files
|
||||||
Group: Graphical Desktop/Applications/Development
|
Group: System/Kernel and Hardware
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://stoopidsimple.com/kccmp
|
URL: https://github.com/hanzyd/kccmp
|
||||||
Source: http://stoopidsimple.com/files/%{name}-%{version}.tar.gz
|
Source: https://github.com/hanzyd/kccmp.git/v%{version}/kccmp-%{version}.tar.bz2
|
||||||
Patch0: %{name}-0.2-qt4.patch
|
Patch0: %{name}-0.2-qt4.patch
|
||||||
License: GPL
|
License: GPL
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: libboost-devel
|
|
||||||
BuildRequires: libfontconfig-devel
|
|
||||||
BuildRequires: libfreetype-devel
|
|
||||||
BuildRequires: libgcc
|
BuildRequires: libgcc
|
||||||
BuildRequires: libglib-devel
|
|
||||||
BuildRequires: libICE-devel
|
|
||||||
BuildRequires: libpng-devel
|
|
||||||
BuildRequires: libqt4-devel
|
|
||||||
BuildRequires: libSM-devel
|
|
||||||
BuildRequires: libstdc++6-devel
|
BuildRequires: libstdc++6-devel
|
||||||
BuildRequires: libX11-devel
|
|
||||||
BuildRequires: libXext-devel
|
|
||||||
BuildRequires: libXfixes-devel
|
|
||||||
BuildRequires: libXinerama-devel
|
|
||||||
BuildRequires: libXrender-devel
|
|
||||||
BuildRequires: libz-devel
|
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
|
|
||||||
%description
|
%description
|
||||||
kccmp is a simple QT tool for comparing two linux kernel ".config" files.
|
kccmp is a simple tool for comparing two linux kernel ".config" files.
|
||||||
|
|
||||||
It has the following features:
|
It has the following features:
|
||||||
- displays the configuration variables with different values in a table form
|
1) Displays the configuration variables with different values.
|
||||||
- displays the configuration variables and values which are found in only one of the compared files
|
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
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
#%patch0 -p1
|
#%patch0 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
qmake-qt4
|
#qmake-qt4
|
||||||
#sed -i "s|-lqt|-lqt-mt|" Makefile
|
#sed -i "s|-lqt|-lqt-mt|" Makefile
|
||||||
make
|
%make
|
||||||
|
|
||||||
%install
|
%install
|
||||||
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
[ "%{buildroot}" != / ] && rm -rf %{buildroot}
|
||||||
|
|
||||||
install -D -m0755 kccmp %{buildroot}%{_bindir}/kccmp
|
install -D -m0755 kccmp %{buildroot}%{_bindir}/kccmp
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
@ -57,9 +52,12 @@ install -D -m0755 kccmp %{buildroot}%{_bindir}/kccmp
|
|||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_bindir}/kccmp
|
%{_bindir}/kccmp
|
||||||
%doc README
|
%doc LICENSE.GPL
|
||||||
|
|
||||||
%changelog
|
%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
|
* Wed Sep 19 2012 Automatic Build System <autodist@mambasoft.it> 0.3-1mamba
|
||||||
- automatic version update by autodist
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user