stable Version: 7.7.2
testing Version: 7.8.0~1336646625
unstable Version: 7.8.0~33951
Testing has the latest GIT build of 7.8
Unstable is the last SVN build of 7.8.
No 7.7.3 nightly at all.
Results 1 to 6 of 6
Thread: Debian Repository Confusion
-
2012-05-16, 07:56 #1
Debian Repository Confusion
2 SB3, 1 Duet
Debian Squeeze server LMS 7.8.0
Netgear WNR2000V3 wireless network.
-
2012-05-16, 09:42 #2
Isn't "testing" supposed to point to 7.7.3 nightly and "unstable" to 7.8.0 git version ?
Erland Isaksson (My homepage)
(Developer of many plugins/applets (both free and commercial).
If you like to encourage future presence on this forum and/or third party plugin/applet development, consider purchasing some plugins)
You may also want to try my Android apps Squeeze Display and RSS Photo Show
Interested in the future of music streaming ? ickStream - A world of music at your fingertips.
-
2012-05-17, 05:40 #3Senior Member
- Join Date
- Sep 2006
- Location
- Zurich, Switzerland
- Posts
- 794
Good catch. Both 7.7 and 7.8 nightlies were going to testing. I have fixed 7.8 to go to unstable and will rerun them both.
-
2012-05-17, 06:49 #4
-
2012-05-17, 06:52 #5
To check the repo's easily the following bash script does the job:
#!/bin/bash
# debian-origin.slimdevices.com
[ "$1" = -d ] && debug=-d && shift
debug=-d
[ "$1" = -pool ] && showpool=yes && shift
repo=debian.slimdevices.com
[ -n "$1" ] && repo="$1"
for x in stable testing unstable
do
this=no
ip=""
while read line
do
if [ "$this" = yes ]
then
echo -e "$x \t $line \t $ip"
break
elif [ "$line" = 'Package: squeezecenter' -o \
"$line" = 'Package: squeezeboxserver' -o \
"$line" = 'Package: logitechmediaserver' ]
then
this=yes
elif [ "Caching debian.slimdevices.com =>" = "${line:0:33}" ]
then
ip="${line:34}"
ip="${ip%% *}"
fi
done << -end
$(wget "$debug" -q -O - --header="Host: debian.slimdevices.com" http://$repo/dists/$x/main/binary-i386/Packages 2>&1)
-end
done2 SB3, 1 Duet
Debian Squeeze server LMS 7.8.0
Netgear WNR2000V3 wireless network.
-
2012-05-17, 13:49 #6
All Is Well
thanks - all is now correct.
2 SB3, 1 Duet
Debian Squeeze server LMS 7.8.0
Netgear WNR2000V3 wireless network.

Reply With Quote

