remove old junk.
Pointed out by Kyle.
This commit is contained in:
parent
471066eceb
commit
9af210dc91
@ -1,44 +0,0 @@
|
|||||||
#!/usr/bin/python
|
|
||||||
#
|
|
||||||
# find-provides: munge the provides dependencies from the kabideps file
|
|
||||||
#
|
|
||||||
# This software may be freely redistributed under the terms of the GNU
|
|
||||||
# General Public License (GPL).
|
|
||||||
#
|
|
||||||
# Takes a directory prefix, then outputs the kabideps file contents.
|
|
||||||
|
|
||||||
__author__ = "Jon Masters <jcm@redhat.com>"
|
|
||||||
__version__ = "1.0"
|
|
||||||
__date__ = "Tue 25 Jul 2006 04:00 GMT"
|
|
||||||
__copyright__ = "Copyright (C) 2006 Red Hat, Inc"
|
|
||||||
__license__ = "GPL"
|
|
||||||
|
|
||||||
import os
|
|
||||||
import re
|
|
||||||
import string
|
|
||||||
import sys
|
|
||||||
|
|
||||||
false = 0
|
|
||||||
true = 1
|
|
||||||
|
|
||||||
kabideps=""
|
|
||||||
|
|
||||||
p = re.compile('^(.*)/symvers-(.*).gz$')
|
|
||||||
while true:
|
|
||||||
foo = sys.stdin.readline()
|
|
||||||
if foo == "":
|
|
||||||
break
|
|
||||||
string.split(foo)
|
|
||||||
m = p.match(foo)
|
|
||||||
if m:
|
|
||||||
kabideps=sys.argv[1] + "/kernel-" + m.group(2) + "-kabideps"
|
|
||||||
|
|
||||||
if kabideps == "":
|
|
||||||
sys.exit(0)
|
|
||||||
|
|
||||||
if not (os.path.isfile(kabideps)):
|
|
||||||
sys.stderr.write(sys.argv[0] + ": cannot locate kabideps file: " + kabideps + "\n")
|
|
||||||
sys.exit(1)
|
|
||||||
|
|
||||||
sys.stderr.write(sys.argv[0] + ": processing kABI: " + kabideps)
|
|
||||||
os.system("cat " + kabideps)
|
|
7
genkey
7
genkey
@ -1,7 +0,0 @@
|
|||||||
%pubring kernel.pub
|
|
||||||
%secring kernel.sec
|
|
||||||
Key-Type: DSA
|
|
||||||
Key-Length: 512
|
|
||||||
Name-Real: Red Hat, Inc.
|
|
||||||
Name-Comment: Kernel Module GPG key
|
|
||||||
%commit
|
|
@ -545,8 +545,6 @@ BuildRequires: rpm-build >= 4.4.2.1-4
|
|||||||
Source0: ftp://ftp.kernel.org/pub/linux/kernel/v3.0/linux-%{kversion}.tar.bz2
|
Source0: ftp://ftp.kernel.org/pub/linux/kernel/v3.0/linux-%{kversion}.tar.bz2
|
||||||
Source1: compat-wireless-%{cwversion}.tar.bz2
|
Source1: compat-wireless-%{cwversion}.tar.bz2
|
||||||
|
|
||||||
Source11: genkey
|
|
||||||
Source14: find-provides
|
|
||||||
Source15: merge.pl
|
Source15: merge.pl
|
||||||
|
|
||||||
Source19: Makefile.release
|
Source19: Makefile.release
|
||||||
|
Loading…
Reference in New Issue
Block a user