Zbynek Michl | 14 May 2013 20:38
Picon

duplicity update request

Hi there,

could you update duplicity package in the optware repository to the
latest version, please? There are many bug fixes since 0.6.14.

Thanks,
Zbynek

------------------------------------

oddballhero | 6 May 2013 05:00
Picon
Favicon

php, php-fcgi broke because of pcre update.

Php and php-fcgi now gives error with pcre since "pcre_info" was removed in 8.30 and after.

------------------------------------

Andreas Reitz | 17 Apr 2013 22:09
Picon

Re: Ampache + amarok running on unslung - is it possible?



I had the thought that ampache even without transcoding is quite ressource hungry (i only used it for http streaming via webfrontend and android client) due to use of php and mysql.
So i sat down and developed a little tool in c++ that scans a directory for mp3 and flac (other formats could easily be added) using taglib and libmagick and stores the information in a sqlite database.
After the scanning i implemented a little webserver (using mongoose) through which access is possible (getAlbums, getAlbum with json and obviously streamTrack).
Till now i only worked one night at it, but its more than enough for me (i developed a little android frontend, too), as i only use it to stream a whole album to my tablet when i go to bed.
Maybe you wanna join development? In my imagination its quite a nice project (i did it to refresh my c++ skills)

greets

Am 17.04.2013 16:39, schrieb M.J. Johnson:
 

Getting Ampache (and possible Amarok) running on a Slug sounds like an achievement... I wasn't able to get a good streaming solution running on the Slug, due to the lack of a FPU (most transcoding solutions require it).


I tried using MPD's built-in streaming capability, but again, the transcoding requirements were a deal breaker.  As a result, I cobbled together a Perl-based solution that allows me to take playlists created in MPD and use them to feed MP3s to an Icecast server for streaming mp3s over HTTP.  The Perl scripts have allowed me to cobble a solution together using ices as the glue between MPD and Icecast.  This solution basically just dumps the MP3 to Icecast without any transcoding.

These links describe the solution in adequate detail:

http://wiki.yobi.be/wiki/Webradio
http://mpd.wikia.com/wiki/Hack:ices-client
http://www.757.org/~joat/wiki/index.php?n=Main.IcecastOnTheNSLU2

Very curious to hear about your experiences with Ampache and Amarok.

On Wednesday, April 17, 2013, Joao wrote:
 

Hello everyone!

I got Ampache v.3.5.4 (a «rich», i.e., *heavy* MPD web client) running on my unslung 6.10 slug and connected to a pair of Hi-Fi speakers through a cheap Media-C usb soundcard (kinda slow but it works!).

I wonder if it's possible to install on top of it the media player Amarok? The newest 2.7 release uses mysql5 (not included yet on ipkg's repo), but maybe and older version (just like Ampache) that uses mysql will do the job?

Any hint or feedback about similar successful (or unsuccessful) attempts would be very much appreciated...
Salut!
J. Miranda






__._,_.___


Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___
Joao | 17 Apr 2013 15:05
Picon
Favicon

Ampache + amarok running on unslung - is it possible?

Hello everyone!

I got Ampache v.3.5.4 (a «rich», i.e., *heavy* MPD web client) running on my unslung 6.10 slug and
connected to a pair of Hi-Fi speakers through a cheap Media-C usb soundcard  (kinda slow but it works!). 

I wonder if it's possible to install on top of it the media player Amarok? The newest 2.7 release uses mysql5
(not included yet on ipkg's repo), but maybe and older version (just like Ampache) that uses mysql will do
the job?

Any hint or feedback about similar successful (or unsuccessful) attempts would be very much appreciated...
Salut!
J. Miranda  

------------------------------------

mick_nslu2 | 23 Mar 2013 22:40
Picon
Favicon

Can't run cgi files with nginx and php-fcgi

Hi All,

I hope someone can point me in the right direction with this problem.  I have installed and configured nginx,
php, php-fcgi and spawn-fcgi on an unslung slug.  Initially I configured /opt/etc/nginx/nginx.conf as I
show below to be able to use nginx and php-fcgi to display php files:
================================
        server {
        listen  80;
        server_name  localhost;
        root /home/httpd/mrtg;
         location / {
            index  index.html index.htm;
        }

        #Pass all .php files onto a php-fpm/php-fcgi server.

        location ~ \.php$ {

        try_files $uri $uri/ =404;

        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        include fastcgi_params;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        #fastcgi_intercept_errors on;
        fastcgi_param  QUERY_STRING     $query_string;
        fastcgi_param  REQUEST_METHOD   $request_method;
        fastcgi_param  CONTENT_TYPE     $content_type;
        fastcgi_param  CONTENT_LENGTH   $content_length;
        #fastcgi_pass 127.0.0.1:1026;
        fastcgi_pass unix:/tmp/php-fcgi.sock;
        }
================================

To spawn fastcgi I have a script under /opt/etc/init.d/ to start php-fcgi and bind it to a unix socket:  

  FCGISOCKET="/tmp/php-fcgi.sock"

This has worked fine, but now I want to also be able to process cgi-bin/routers2.cgi for graphing some mrtg
data and I am not sure if I need to install anything else and/or how to configure nginx.  This is what I have
tried adding to nginx.conf, after some google searching and head scratching:
================================
        location ~ ^/cgi-bin/.*\.cgi$ { 
        gzip off;
        fastcgi_pass unix:/tmp/php-fcgi.sock;
        #fastcgi_pass unix:/var/run/nginx/cgiwrap-dispatch.sock;
        fastcgi_index index.cgi;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param QUERY_STRING     $query_string;
        fastcgi_param REQUEST_METHOD   $request_method;
        fastcgi_param CONTENT_TYPE     $content_type;
        fastcgi_param CONTENT_LENGTH   $content_length;
        #fastcgi_param GATEWAY_INTERFACE  CGI/1.1;
        #fastcgi_param SERVER_SOFTWARE    nginx;
        #fastcgi_param SCRIPT_NAME        $fastcgi_script_name;
        #fastcgi_param REQUEST_URI        $request_uri;
        #fastcgi_param DOCUMENT_URI       $document_uri;
        #fastcgi_param DOCUMENT_ROOT      $document_root;
        #fastcgi_param SERVER_PROTOCOL    $server_protocol;
        #fastcgi_param REMOTE_ADDR        $remote_addr;
        #fastcgi_param REMOTE_PORT        $remote_port;
        #fastcgi_param SERVER_ADDR        $server_addr;
        #fastcgi_param SERVER_PORT        $server_port;
        #fastcgi_param SERVER_NAME        $server_name;
        }
================================

However, instead of the browser showing the result of the *.cgi script, it just loads up the content of the
file.  Any idea what I need to do to enable nginx to process cgi files - *without* adding a separate web server
to do this, but using some fastcgi method instead?
--

-- 
Regards,
Mick

------------------------------------

mick_nslu2 | 23 Mar 2013 17:50
Picon
Favicon

openssl-0.9.7m-6 is really old and has many vulnerabilities

Hi All,

Could some kind soul, who has a dev environment handy, update the openssl binary?  The lates version is openssl-1.0.1e

Regards,
--

-- 
Mick

------------------------------------

Zbynek Michl | 22 Mar 2013 00:03
Picon

Duplicity pkg has wrong dependency

Hello,

I would like to notice you that py2[56]-duplicity_0.6.14-1_arm.ipk
packages depend on gnupg pkg (version 2), which makes it unusable (it
leads to temp error when duplicity is run).

I guess that the right dependency is gnupg1 pkg (version 1), then
duplicity would run correctly.

Could you fix it, please?

Thanks,
Zbynek

------------------------------------

bas.mafait | 11 Mar 2013 19:59

ddwrt-target soft floating point

Hello,

DD-WRT has disable FPU in there firmware on recent builds.
This results in several broken packages

How would I enable FPU in the toolchain or is it possible to enable soft float in all packages created for the
ddwrt target.

I see that .config has BR2_SOFT_FLOAT not set.

------------------------------------

tactmaster84 | 11 Mar 2013 16:19
Picon

NSLU2 usbip Debian kernel modules

Hello,

I have got an NSLU2 with Debian wheezy installed.
I have to get usbip working on it. It is a remote usb program that allows you to use usb device from other
computers http://usbip.sourceforge.net/ 

apt-get usbip 
gets client fine.

However it doesn't install the host. 
From google it would seem that the they kernel modules are in the staging are of the kernel and need to be
compiled myself. 

Can anyone help me compile them for the slug?
(or other way of getting usbip working) 

Thanks

------------------------------------

davygravy_pi | 11 Mar 2013 00:16
Picon
Favicon

package fixes for mipsel/ddwrt, and some additional packages...

Brian/eno,

I've done some experimenting lately w/ the packages from the ddwrt (mipsel) feed.  We know definitively
that both CUPS and dbus are broken (segfault due to the -pie/-fpie flag problem in our binutil).   I have
fixes for both, and can send the patches to you.  [the patches and fixed binaries have been tested
extensively ]

Are you still accepting fix-patches?

Are you still accepting new packages also?  I have python-cups and  shairport  .mk  files I could send you as well.

thanks for your consideration,

Dave Purdy
(davygravy)

------------------------------------

Eric CS | 22 Feb 2013 15:56
Picon

problem with openslug + nslu2



Hi all, I have a question about slugosBE 5.3 Beta and NSLU2. I installed the firmware with upslug2 successfully. I configured the network with "turnup init" then I installed the system to my external hard drive 400 gb with "turnup disk-i / dev/sda1" then I created a swapfile file. Everything fine until I try to use opkg or ipkg, when I use the command "opkg update" and "ipkg update" NSLU2 automatically restarts.
I searched a lot on google but can not find solution. Someone could give me a solution to solve this? thanks


__._,_.___

Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___

Gmane