blob: b0bedd8ec4971bd74f46430042e1a6317270ed1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
#!/bin/bash
##
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
# @category Bash, Sed
# @author V.Krishn <vkrishn4@gmail.com>
# @copyright Copyright (c) 2015 V.Krishn <vkrishn4@gmail.com>
# @license GPL
# @link http://github.com/insteps/scripts
#
##
# NOTE:
# make sure the INFILE has 2 new lines at the end
# INFILE = eg. <path/to>/ftp.de.debian.org_debian_dists_stable_main_binary-i386_Packages
# OUTFILE = /tmp/ftp.de.debian.org_debian_dists_stable_main_binary-i386_Packages.sql
INFILE=$1
OUTFILE=$2
cat ${INFILE} |
sed -n "
:TOP
/^Package/,/^SHA256/ {
/^\s.*/ {
H
n
b TOP
}
H
/^[A-Z][-[:alnum:]]*\:\s/ {
/^SHA256/ {
s/^\([A-Z][-[:alnum:]]*\)\:\s\(.*$\)/\"\1\"\)\n/
}
/^SHA256/ !{
/^Package/ {
s/^\([A-Z][-[:alnum:]]*\)\:\s\(.*$\)/INSERT INTO wheezy_700_i386 \(\"\1\"\,/
}
/^Package/ !{
s/^\([A-Z][-[:alnum:]]*\)\:\s\(.*$\)/\"\1\"\,/
}
}
p
}
}
/^$/ {
x
p
}
" > ${OUTFILE}
exit;
|