Send Bristol mailing list submissions to
bristol@mailman.lug.org.uk
To subscribe or unsubscribe via the World Wide Web, visit
https://mailman.lug.org.uk/mailman/listinfo/bristol
or, via email, send a message with subject or body 'help' to
bristol-request@mailman.lug.org.uk
You can reach the person managing the list at
bristol-owner@mailman.lug.org.uk
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Bristol digest..."
Today's Topics:
1. Scons: help with SConstruct appreciated (Andrew McLean)
2. BBC Iplayer (Peter Hemmings)
3. Re: BBC Iplayer (Sebastian)
4. Re: BBC Iplayer (Sebastian)
5. x86 based "arduino" (James Cownie)
6. Re: BBC Iplayer (Alex Butcher)
7. Re: BBC Iplayer (Martin Moore)
8. Re: Scons: help with SConstruct appreciated (John Daragon)
----------------------------------------------------------------------
Message: 1
Date: Thu, 03 Oct 2013 14:11:46 +0100
From: Andrew McLean <am577@aiomclean.plus.com>
To: LUG <bristol@mailman.lug.org.uk>
Subject: [bristol] Scons: help with SConstruct appreciated
Message-ID: <524D6D12.3040904@aiomclean.plus.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Could do with a bit of advice on this SConstruct file !
If I use 'scons -c' and 'sudo scons install', it builds and installs OK.
But, if I then just edit the source file ('d.c'), and do the second command,
missing out the 'scons -c', it recompiles (i.e. creates new 'd.o' and
'd.to'),
but it doesn't rebuild the binaries, and so doesn't install the new version.
I.e. it doesn't realise that the binaries should be rebuilt, if they
exist but are
older than the .o file.
I thought I'd got the hang of Scons dependencies, but apparently not...
As they say, 'What is wrong with this picture ?'
TIA,
Andrew
----------------------------------------------------------------
#!/usr/bin/env python
# SCONS control file for the D Program
# Import shared opts
import AM_opts
# Create Environment for building main program
env = Environment(CPPPATH = ['.'])
AM_opts.add_opts(env)
env.Append(CCFLAGS=['-O3'])
# Create Environment for the debug program
dbg = env.Clone()
dbg.Append(CCFLAGS=['-DDEBUG', '-g', '-O0'])
Repository('/home/andrew/src/include')
do = env.Object('d.o', 'd.c')
dto = dbg.Object('d.to', 'd.c')
# Programs
dp = env.Program('d', do, LIBS=['Xext', 'X11', 'm', 'jpeg', 'pthread',
'mb'], LIBPATH=['/usr/local/lib'])
dpt = dbg.Program('dt',dto, LIBS=['Xext', 'X11', 'm', 'jpeg', 'pthread',
'mbt'], LIBPATH=['/usr/local/lib'])
# Installation
id = env.Install('/usr/local/bin', dp)
idt = dbg.Install('/usr/local/bin', dpt)
env.Alias('install', [id, idt])
------------------------------
Message: 2
Date: Thu, 03 Oct 2013 17:00:03 +0100
From: Peter Hemmings <peter@hemmings.eclipse.co.uk>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>
Subject: [bristol] BBC Iplayer
Message-ID: <524D9483.1060803@hemmings.eclipse.co.uk>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Hi,
Is the above still working!? I haven't used it for a long time and it
fails to record.
I could not get any sound using Firefox (or Chrome) on the BBC Iplayer
site (FC18), is that gone as well!?
Regards
--
Peter H
------------------------------
Message: 3
Date: Thu, 03 Oct 2013 17:37:25 +0100
From: Sebastian <sebsebseb_mageia@gmx.com>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>,
sebastian <sebsebseb_mageia@gmx.com>
Subject: Re: [bristol] BBC Iplayer
Message-ID: <524D9D45.2050908@gmx.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
On 03/10/13 17:00, Peter Hemmings wrote:
> Hi,
>
> Is the above still working!? I haven't used it for a long time and it
> fails to record.
>
> I could not get any sound using Firefox (or Chrome) on the BBC Iplayer
> site (FC18), is that gone as well!?
>
> Regards
Works fine for me using Mageia 3 on my netbook with Firefox and the
Flash plugin.
Regards
Seastian
------------------------------
Message: 4
Date: Thu, 03 Oct 2013 17:39:49 +0100
From: Sebastian <sebsebseb_mageia@gmx.com>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>,
Sebastian <sebsebseb_mageia@gmx.com>
Subject: Re: [bristol] BBC Iplayer
Message-ID: <524D9DD5.109@gmx.com>
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
On 03/10/13 17:37, Sebastian wrote:
> On 03/10/13 17:00, Peter Hemmings wrote:
>> Hi,
>>
>> Is the above still working!? I haven't used it for a long time and
>> it fails to record.
>>
>> I could not get any sound using Firefox (or Chrome) on the BBC
>> Iplayer site (FC18), is that gone as well!?
>>
>> Regards
> Works fine for me using Mageia 3 on my netbook with Firefox and the
> Flash plugin.
>
> Regards
>
> Seastian
That was just watching and I don't think meant to be able to record off
the Iplayer when using the Flash plugin, because of Digital Rights
Management.
------------------------------
Message: 5
Date: Thu, 3 Oct 2013 20:26:44 +0100
From: James Cownie <jcownie@cantab.net>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>
Subject: [bristol] x86 based "arduino"
Message-ID: <29A02128-C9F4-4317-8900-6725D013C196@cantab.net>
Content-Type: text/plain; charset="us-ascii"
Since it runs Linux, this might interest people here...
http://www.intel.com/content/www/us/en/do-it-yourself/galileo-maker-quark-board.html
Anandtech reckon it'll cost $60...
(As many of you know, I work for Intel, but not on this product)
--
-- Jim
--
James Cownie <jcownie@cantab.net>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mailman.lug.org.uk/mailman/private/bristol/attachments/20131003/9df3c301/attachment-0001.html>
------------------------------
Message: 6
Date: Thu, 3 Oct 2013 22:06:27 +0100 (BST)
From: Alex Butcher <lug@assursys.co.uk>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>
Subject: Re: [bristol] BBC Iplayer
Message-ID: <alpine.LFD.2.03.1310032201380.6666@nffheflf.pb.hx>
Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed
On Thu, 3 Oct 2013, Peter Hemmings wrote:
> Is the above still working!? I haven't used it for a long time
Works fine here; Chrome 29.0.1547.76 and built-in PepperFlash 11.8.800.170,
as well as Firefox 22.0 with Adobe Flash 11.2.202.310 (tested with
<http://www.bbc.co.uk/iplayer/episode/b03c8mn1/Science_Britannica_Clear_Blue_Skies/>).
What /does/ happen for you?
> and it fails to record.
Eh? Using what?
I used get_iplayer to download Citizen Kane for my Dad over the weekend, and
that worked then.
> I could not get any sound using Firefox (or Chrome) on the BBC Iplayer site
> (FC18), is that gone as well!?
Did you test sound with other applications?
>
> Regards
Best Regards,
Alex
------------------------------
Message: 7
Date: Thu, 3 Oct 2013 17:32:21 +0100
From: "Martin Moore" <martinm@it-helps.co.uk>
To: "'Bristol and Bath Linux User Group'" <bristol@mailman.lug.org.uk>
Subject: Re: [bristol] BBC Iplayer
Message-ID:
<!&!AAAAAAAAAAAYAAAAAAAAAFLxZtQqo65Oo+1jhlUB9DvCgAAAEAAAAOdincteeJ9DodWAFJZtiI8BAAAAAA==@it-helps.co.uk>
Content-Type: text/plain; charset="us-ascii"
I watched live TV last week on it using FF on Windoze.
-----Original Message-----
From: bristol-bounces@mailman.lug.org.uk
[mailto:bristol-bounces@mailman.lug.org.uk] On Behalf Of Peter Hemmings
Sent: 03 October 2013 17:00
To: Bristol and Bath Linux User Group
Subject: [bristol] BBC Iplayer
Hi,
Is the above still working!? I haven't used it for a long time and it fails
to record.
I could not get any sound using Firefox (or Chrome) on the BBC Iplayer site
(FC18), is that gone as well!?
Regards
--
Peter H
_______________________________________________
Bristol mailing list
Bristol@mailman.lug.org.uk
https://mailman.lug.org.uk/mailman/listinfo/bristol
-----
No virus found in this message.
Checked by AVG - www.avg.com
Version: 2013.0.3408 / Virus Database: 3222/6692 - Release Date: 09/23/13
Internal Virus Database is out of date.
------------------------------
Message: 8
Date: Thu, 3 Oct 2013 17:55:03 -0400
From: John Daragon <john@blacklabs.co.uk>
To: Bristol and Bath Linux User Group <bristol@mailman.lug.org.uk>
Subject: Re: [bristol] Scons: help with SConstruct appreciated
Message-ID:
<33F8E65C8ED54C4DA5074F1764532157D03F39D37B@EXMBX01.njnx.lan>
Content-Type: text/plain; charset="us-ascii"
I'm no Scons expert, but...
Have you experimented with --debug=explain and --debug=prepare /
JD
-----Original Message-----
From: bristol-bounces@mailman.lug.org.uk [mailto:bristol-bounces@mailman.lug.org.uk] On Behalf Of Andrew McLean
Sent: 03 October 2013 14:12
To: LUG
Subject: [bristol] Scons: help with SConstruct appreciated
Could do with a bit of advice on this SConstruct file !
If I use 'scons -c' and 'sudo scons install', it builds and installs OK.
But, if I then just edit the source file ('d.c'), and do the second command, missing out the 'scons -c', it recompiles (i.e. creates new 'd.o' and 'd.to'), but it doesn't rebuild the binaries, and so doesn't install the new version.
I.e. it doesn't realise that the binaries should be rebuilt, if they exist but are older than the .o file.
I thought I'd got the hang of Scons dependencies, but apparently not...
As they say, 'What is wrong with this picture ?'
TIA,
Andrew
----------------------------------------------------------------
#!/usr/bin/env python
# SCONS control file for the D Program
# Import shared opts
import AM_opts
# Create Environment for building main program env = Environment(CPPPATH = ['.'])
AM_opts.add_opts(env)
env.Append(CCFLAGS=['-O3'])
# Create Environment for the debug program dbg = env.Clone() dbg.Append(CCFLAGS=['-DDEBUG', '-g', '-O0'])
Repository('/home/andrew/src/include')
do = env.Object('d.o', 'd.c')
dto = dbg.Object('d.to', 'd.c')
# Programs
dp = env.Program('d', do, LIBS=['Xext', 'X11', 'm', 'jpeg', 'pthread', 'mb'], LIBPATH=['/usr/local/lib'])
dpt = dbg.Program('dt',dto, LIBS=['Xext', 'X11', 'm', 'jpeg', 'pthread', 'mbt'], LIBPATH=['/usr/local/lib'])
# Installation
id = env.Install('/usr/local/bin', dp)
idt = dbg.Install('/usr/local/bin', dpt)
env.Alias('install', [id, idt])
_______________________________________________
Bristol mailing list
Bristol@mailman.lug.org.uk
https://mailman.lug.org.uk/mailman/listinfo/bristol
------------------------------
_______________________________________________
Bristol mailing list
Bristol@mailman.lug.org.uk
https://mailman.lug.org.uk/mailman/listinfo/bristol
End of Bristol Digest, Vol 519, Issue 2
***************************************
Tidak ada komentar:
Posting Komentar