commit cdd7212d933e0700ee8df2cece48208e6347e905

OBS-URL: https://build.opensuse.org/package/show/Kernel:HEAD/kernel-source?expand=0&rev=7696
This commit is contained in:
Michal Marek 2014-01-04 07:01:46 +00:00 committed by Git OBS Bridge
parent 6a2ddac86b
commit 9d8ef0e62f
30 changed files with 487 additions and 64 deletions

19
guards
View File

@ -36,20 +36,6 @@ sub files_in($$);
sub parse($$); sub parse($$);
sub help(); sub help();
#sub strip_ext($) {
# local ($_) = @_;
# s/\.(diff?|patch)$//;
#}
#sub try_ext($) {
# my ($path) = @_;
# for my $p in (($path, "$path.diff", "$path.dif", "$path.patch")) {
# return $p
# if (-f $p);
# }
# return undef;
#}
sub slashme($) { sub slashme($) {
my ($dir) = @_; my ($dir) = @_;
$dir =~ s#([^/])$#$&/#; # append a slash if necessary $dir =~ s#([^/])$#$&/#; # append a slash if necessary
@ -260,7 +246,6 @@ F<guards> [--prefix=F<dir>] [--path=F<dir1:dir2:...>] [--default=<0|1>]
[--check|--list] [--invert-match] [--with-guards] [--config=<file>] [--check|--list] [--invert-match] [--with-guards] [--config=<file>]
I<symbol> ... I<symbol> ...
=head1 DESCRIPTION =head1 DESCRIPTION
The script reads a configuration file that may contain so-called guards, file The script reads a configuration file that may contain so-called guards, file
@ -293,10 +278,10 @@ The I<--check> option is used to compare the specification file against the
file system. If files are referenced in the specification that do not exist, or file system. If files are referenced in the specification that do not exist, or
if files are not enlisted in the specification file warnings are printed. The if files are not enlisted in the specification file warnings are printed. The
I<--path> option can be used to specify which directory or directories to scan. I<--path> option can be used to specify which directory or directories to scan.
Multiple directories are eparated by a colon (C<:>) character. The Multiple directories are separated by a colon (C<:>) character. The
I<--prefix> option specifies the location of the files. I<--prefix> option specifies the location of the files.
Use I<--list> to list all files independend of any rules. Use I<--invert-match> Use I<--list> to list all files independent of any rules. Use I<--invert-match>
to list only the excluded patches. Use I<--with-guards> to also include all to list only the excluded patches. Use I<--with-guards> to also include all
inclusion and exclusion rules. inclusion and exclusion rules.

View File

@ -223,7 +223,7 @@ Provides: ath3k-firmware = 1.0
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-cubox
Summary: Kernel for SolidRun Cubox Summary: Kernel for SolidRun Cubox
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -299,7 +300,7 @@ the SolidRun Cubox.
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-debug
Summary: A Debug Version of the Kernel Summary: A Debug Version of the Kernel
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -149,9 +149,10 @@ Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28 Obsoletes: kernel-kdump <= 2.6.28
%endif %endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -302,7 +303,7 @@ Only use this kernel when investigating problems.
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-default
Summary: The Standard Kernel Summary: The Standard Kernel
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -161,9 +161,10 @@ Provides: kernel-smp = 2.6.17
Obsoletes: kernel-smp <= 2.6.17 Obsoletes: kernel-smp <= 2.6.17
%endif %endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -313,7 +314,7 @@ The standard kernel for both uniprocessor and multiprocessor systems.
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-desktop
Summary: Kernel optimized for the desktop Summary: Kernel optimized for the desktop
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -311,7 +312,7 @@ that support it, regardless of the amount of main memory.
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -26,7 +26,7 @@ Name: kernel-docs
Summary: Kernel Documentation Summary: Kernel Documentation
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-exynos
Summary: Kernel for Samsung's Exynos SoC Summary: Kernel for Samsung's Exynos SoC
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -298,7 +299,7 @@ The standard kernel for Samsung's Exynos 4 & 5 SoC, as found in the Origen board
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-lpae
Summary: Kernel for LPAE enabled systems Summary: Kernel for LPAE enabled systems
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -299,7 +300,7 @@ Cortex A15 based SoCs, like the Exynos5, OMAP5 or Calxeda ECX-2000.
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-pae
Summary: Kernel with PAE Support Summary: Kernel with PAE Support
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -151,9 +151,10 @@ Provides: kernel-vmi = 2.6.38
Obsoletes: kernel-vmi <= 2.6.38 Obsoletes: kernel-vmi <= 2.6.38
%endif %endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -310,7 +311,7 @@ that support it, regardless of the amount of main memory.
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -31,7 +31,7 @@ Name: kernel-source
Summary: The Linux Kernel Sources Summary: The Linux Kernel Sources
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -45,9 +45,10 @@ Requires(post): coreutils sed
Provides: multiversion(kernel) Provides: multiversion(kernel)
Provides: linux Provides: linux
Provides: %name = %version-%source_rel Provides: %name = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -148,10 +149,6 @@ Vanilla Linux kernel sources with minor build fixes.
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
echo "Please get a copy of linux-%srcversion.tar.bz2 from" \
"ftp://ftp.kernel.org/pub/linux/kernel/v2.6/."
fi
echo "Symbol(s): %symbols" echo "Symbol(s): %symbols"
@ -163,7 +160,7 @@ mkdir -p $RPM_BUILD_ROOT/usr/src
cd $RPM_BUILD_ROOT/usr/src cd $RPM_BUILD_ROOT/usr/src
# Unpack the vanilla kernel sources # Unpack the vanilla kernel sources
tar -xjf %_sourcedir/linux-%srcversion.tar.bz2 tar -xf %{S:0}
if test "%srcversion" != "%kernelrelease%variant"; then if test "%srcversion" != "%kernelrelease%variant"; then
mv linux-%srcversion linux-%kernelrelease%variant mv linux-%srcversion linux-%kernelrelease%variant
fi fi

View File

@ -45,9 +45,10 @@ Requires(post): coreutils sed
Provides: multiversion(kernel) Provides: multiversion(kernel)
Provides: linux Provides: linux
Provides: %name = %version-%source_rel Provides: %name = %version-%source_rel
Source0: @TARBALL_URL@linux-%srcversion.tar.bz2 Source0: @TARBALL_URL@linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -148,10 +149,6 @@ Vanilla Linux kernel sources with minor build fixes.
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then
echo "Please get a copy of linux-%srcversion.tar.bz2 from" \
"ftp://ftp.kernel.org/pub/linux/kernel/v2.6/."
fi
echo "Symbol(s): %symbols" echo "Symbol(s): %symbols"
@ -163,7 +160,7 @@ mkdir -p $RPM_BUILD_ROOT/usr/src
cd $RPM_BUILD_ROOT/usr/src cd $RPM_BUILD_ROOT/usr/src
# Unpack the vanilla kernel sources # Unpack the vanilla kernel sources
tar -xjf %_sourcedir/linux-%srcversion.tar.bz2 tar -xf %{S:0}
if test "%srcversion" != "%kernelrelease%variant"; then if test "%srcversion" != "%kernelrelease%variant"; then
mv linux-%srcversion linux-%kernelrelease%variant mv linux-%srcversion linux-%kernelrelease%variant
fi fi

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -26,7 +26,7 @@ Summary: Kernel Symbol Versions (modversions)
Version: 3.13.rc6 Version: 3.13.rc6
%if %using_buildservice %if %using_buildservice
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-trace
Summary: The Standard Kernel with Tracing Features Summary: The Standard Kernel with Tracing Features
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -149,9 +149,10 @@ Provides: kernel-kdump = 2.6.28
Obsoletes: kernel-kdump <= 2.6.28 Obsoletes: kernel-kdump <= 2.6.28
%endif %endif
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -301,7 +302,7 @@ This kernel has different tracing features enabled (e.g. utrace, ftrace).
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Fri Jan 3 11:40:27 CET 2014 - mmarek@suse.cz
- Switch to linux-*.tar.xz
- commit cdd7212
-------------------------------------------------------------------
Fri Jan 3 11:01:58 CET 2014 - mmarek@suse.cz
- Add support for linux-*.tar.xz to the spec files
- commit d12c880
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de Thu Jan 2 17:01:46 CET 2014 - agraf@suse.de
@ -137,6 +149,24 @@ Thu Dec 12 10:24:11 CET 2013 - jdelvare@suse.de
Already included since kernel 3.11 (WARN calls dump_stack.) Already included since kernel 3.11 (WARN calls dump_stack.)
- commit 8e04564 - commit 8e04564
-------------------------------------------------------------------
Wed Dec 11 18:55:53 CET 2013 - jdelvare@suse.de
- rpm/guards: Spelling fix
- commit 2e074cb
-------------------------------------------------------------------
Wed Dec 11 18:55:24 CET 2013 - jdelvare@suse.de
- rpm/guards: Delete dead code
- commit 98077a9
-------------------------------------------------------------------
Wed Dec 11 18:24:25 CET 2013 - jdelvare@suse.de
- rpm/guards: Typo fix from upstream
- commit ce654f8
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de Wed Dec 11 02:46:26 CET 2013 - stefan.bruens@rwth-aachen.de
@ -165,6 +195,12 @@ Sun Dec 8 20:02:23 CET 2013 - jeffm@suse.com
- Update to 3.13-rc3. - Update to 3.13-rc3.
- commit 82b4383 - commit 82b4383
-------------------------------------------------------------------
Fri Dec 6 16:56:31 CET 2013 - mmarek@suse.cz
- rpm/kernel-source.spec.in: Add the OBS _constraints file as source
- commit 17282e4
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de Wed Dec 4 20:20:22 CET 2013 - jeffm@suse.de

View File

@ -61,7 +61,7 @@ Name: kernel-vanilla
Summary: The Standard Kernel - without any SUSE patches Summary: The Standard Kernel - without any SUSE patches
Version: 3.13.rc6 Version: 3.13.rc6
%if 0%{?is_kotd} %if 0%{?is_kotd}
Release: <RELEASE>.g0d77ece Release: <RELEASE>.gcdd7212
%else %else
Release: 0 Release: 0
%endif %endif
@ -146,9 +146,10 @@ Conflicts: libc.so.6()(64bit)
Provides: kernel = %version-%source_rel Provides: kernel = %version-%source_rel
Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.bz2 Source0: http://www.kernel.org/pub/linux/kernel/v3.x/testing/linux-%srcversion.tar.xz
Source2: source-post.sh Source2: source-post.sh
Source3: kernel-source.rpmlintrc Source3: kernel-source.rpmlintrc
Source4: _constraints
Source8: devel-pre.sh Source8: devel-pre.sh
Source9: devel-post.sh Source9: devel-post.sh
Source10: preun.sh Source10: preun.sh
@ -298,7 +299,7 @@ The standard kernel - without any SUSE patches
%source_timestamp %source_timestamp
%prep %prep
if ! [ -e %_sourcedir/linux-%srcversion.tar.bz2 ]; then if ! [ -e %{S:0} ]; then
echo "The %name-%version.nosrc.rpm package does not contain the" \ echo "The %name-%version.nosrc.rpm package does not contain the" \
"complete sources. Please install kernel-source-%version.src.rpm." "complete sources. Please install kernel-source-%version.src.rpm."
exit 1 exit 1

3
linux-3.13-rc6.tar.xz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c34ee17df9a98adcfe8e043ac3cb2cc63ea3500d973c16a161636a188e186411
size 79643636

4
mkspec
View File

@ -47,9 +47,9 @@ $rpmversion =~ s/-/./g;
$rpmrelease =~ s/-/./g; $rpmrelease =~ s/-/./g;
my $sources = join("", $templates{source} =~ /\nSource\d+:[^\n]*/mg); my $sources = join("", $templates{source} =~ /\nSource\d+:[^\n]*/mg);
# Find all SourceN: foo.tar.bz2 lines and generate the NoSource: # Find all SourceN: foo.tar.(bz2|xz) lines and generate the NoSource:
# lines and the %setup line # lines and the %setup line
my @tarballs = ($sources =~ /\nSource(\d+):[^\n]*\.tar\.bz2/mg); my @tarballs = ($sources =~ /\nSource(\d+):[^\n]*\.tar\.(?:bz2|xz)/mg);
my $nosource = join("\n", map { "NoSource: $_" } @tarballs); my $nosource = join("\n", map { "NoSource: $_" } @tarballs);
# Source0 (the linux tarball) is unpacked manually # Source0 (the linux tarball) is unpacked manually
@tarballs = grep { $_ > 0 } @tarballs; @tarballs = grep { $_ > 0 } @tarballs;

View File

@ -1,3 +1,3 @@
2014-01-02 17:02:09 +0100 2014-01-03 11:40:27 +0100
GIT Revision: 0d77ece0e0932f610f58aed14f65b92005af4444 GIT Revision: cdd7212d933e0700ee8df2cece48208e6347e905
GIT Branch: master GIT Branch: master