blob: 8f3ac8758cb2fdf2ecb5eeb6ed6ac4b74584379d (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
[[!meta title="Packages in Release Series 1"]]
[[ProteanOS_1.0|dev/releases/1]] currently includes the following source
packages:
Source Package Upstream Version
-------------------------------------
acpi 1.7
alsa-lib 1.0.27.2
alsa-utils 1.0.27.2
base-files 1.0.2
bc 1.06.95
binutils 2.23.2
build-essential 1.0
busybox 1.21.1
bzip2 1.0.6
cmatrix 1.2a
config-ao751h 1.2
config-dev 1.1
config-dimension2400 1.3
config-x60 1.0
dejagnu 1.5.1
dev86 0.16.21
eglibc 2.19~r25243+sip1
expat 2.1.0
expect 5.45
fakeroot 1.18.4
fbida 2.09
file 5.17
fontconfig 2.11.1
freetype 2.5.3
gawk 4.1.0
gcc-4.7 4.7.3+sip1
gcc-defaults 1.0
gettext 0.18.3.2
gmake 4.0
gmp 5.0.5
iptables 1.4.21
libexif 0.6.21
libffi 3.1
libgpg-error 1.12
libjpeg-8 8d
libnl-3 3.2.25
libogg 1.3.2
libpng12 1.2.51
libsigsegv 2.10
libtommath 0.42.0
libtool 2.4.2
libunistring 0.9.3
libvorbis 1.3.4
lilo 24.0
linux-libre 3.10.51~gnu
m4 1.4.17
mpc 1.0.1
mpfr 3.1.1
mplus-fonts 058
ncurses 5.9~20140301
opkbuild 3.0.0~beta5
opkg 0.2.2
opkhelper-3.0 3.0.0
opkhelper-default 3.0.0
pcre 8.35
pkgconf 0.9.6
platconf-pkg-tools 1.0.1
proteanos-branding 0.1
pth 2.0.7
readline 6.3
strace 4.8
tcl8.6 8.6.1+sip1
tzcode 2014e
tzdata 2014e
wpa-supplicant 2.2
xz 5.1.3alpha
zlib 1.2.8+sip1
-------------------------------------
Source packages: 67
Binary packages: 273
The above list was generated by running the following shell script in a
directory containing all of the unpacked source packages:
pkgw=20
verw=16
i=0
l=$(($pkgw + $verw + 1))
banner=''
while [ $i -lt $l ]; do
banner="${banner}-"
i=$(($i + 1))
done
printf "%-${pkgw}s %-${verw}s\n" 'Source Package' 'Upstream Version'
printf '%s\n' "${banner}"
script='1{ s/^\(.*\) (\(.*\)) .*$/\1 \2/; s/^\(.* .*\)-.*$/\1/; p; }'
n=0
for cl in */changelog; do
printf "%-${pkgw}s %-s\n" $(sed -n "${script}" "${cl}")
n=$(($n + 1))
done
printf '%s\n' "${banner}"
printf 'Source packages: %d\n' "${n}"
printf 'Binary packages: %d\n' "$(ls -d */*.pkg/ | \
sed 's|^.*/\(.*\)\.pkg/$|\1|' | sort -u | wc -l)"
|