Page 3 of 14

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: August 8th, 2008, 8:39 am
by Shadowtester
Lets hope that would be nice :)

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: August 8th, 2008, 10:02 am
by jcfp
In fact it's even worse, in Ubuntu one needs no less than two demi-gods to approve, and next an actual divinity (archive admin) needs be okay with things too. Add to that sabnzbd+ being a relatively hard one to review, involving python, a large variety of licenses, and low priority it tends to take too long :-\. Can't put a gun to them reviewer's heads, after all :P

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: August 8th, 2008, 1:01 pm
by Shadowtester
If not a gun maybe a club would do the job  ;)

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: August 26th, 2008, 9:33 am
by jcfp
0.4.3~rc4 has been uploaded. New stuff:
  • Now also available for intrepid (i.e., the next release of Ubuntu scheduled for october).
  • License is back to GPL v2 or later.
  • Added an init.d script. Will only work after you edit the setting(s) in /etc/default/sabnzbdplus.

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: August 31st, 2008, 6:20 pm
by jcfp
0.4.3 has been uploaded. It is essentially identical to rc4, but for ease of mind... here it is anyway.

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: September 1st, 2008, 10:54 am
by chokomon
just tried to use this to install 0.4.3 over 0.4.0 and get this error when i try to access sab:

500 Internal error

The server encountered an unexpected condition which prevented it from fulfilling the request.

Traceback (most recent call last):
  File "/var/lib/python-support/python2.5/cherrypy/_cphttptools.py", line 110, in _run
    applyFilters('before_finalize')
  File "/var/lib/python-support/python2.5/cherrypy/filters/__init__.py", line 151, in applyFilters
    method()
  File "/var/lib/python-support/python2.5/sabnzbd/interface.py", line 209, in beforeFinalize
    def beforeMain(self):
  File "/var/lib/python-support/python2.5/sabnzbd/interface.py", line 287, in index
  File "cheetah__usr_share_sabnzbdplus_interfaces_Default_templates_main_tmpl_1220284439_45_34544.py", line 95, in respond
NotFound: cannot find 'webdir'



thoughts on how to fix?

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: September 1st, 2008, 11:25 am
by jcfp
chokomon wrote: thoughts on how to fix?
Did you restart the program after installing the newer version?

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: September 1st, 2008, 12:06 pm
by chokomon
Doing a restart of the computer has fixed my problem.

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: September 2nd, 2008, 3:17 am
by rascalli
would it be possible to install this on dapper ?

Can I use one of the other repro's ?

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: September 2nd, 2008, 4:58 am
by jcfp
I don't think dapper could satisfy all dependencies as is, it comes with very old versions of some python modules. So you wouldn't get very far other than by grabbing the (gutsy) source package, tweaking the dependencies and/or their versions down far enough, and rebuilding the package yourself :-\. And by then don't count on sabnzbd still functioning properly.

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: September 2nd, 2008, 5:38 am
by rascalli
damn that sucks , so that means installing it all from scratch again ;-)

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: September 12th, 2008, 11:51 am
by jcfp
0.4.4~rc1 is on the way, bugfixes and minor changes only.

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: September 18th, 2008, 3:59 pm
by jcfp
rc1 -> final. No changes.

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: October 23rd, 2008, 6:03 am
by sander
For lazy people or people that don't know which version / release of Ubuntu they are using  ;) , there is another first step you could use the add the SABnzbdplus repository to the sources.list:

Instead of

Code: Select all

echo "deb http://ppa.launchpad.net/jcfp/ubuntu CODENAME main" | sudo tee -a /etc/apt/sources.list
where you have to fill out something for CODENAME, you can use this line to have the version filled out automagically:

Code: Select all

echo "deb http://ppa.launchpad.net/jcfp/ubuntu "  `grep CODENAME /etc/lsb-release | awk -F= '{ print $2 }' `  " main" | sudo tee -a /etc/apt/sources.list


Proof that it works:

Code: Select all

sander@ubuntu810:~$ tail -5 /etc/apt/sources.list
deb-src http://security.ubuntu.com/ubuntu intrepid-security main restricted
deb http://security.ubuntu.com/ubuntu intrepid-security universe
deb-src http://security.ubuntu.com/ubuntu intrepid-security universe
deb http://security.ubuntu.com/ubuntu intrepid-security multiverse
deb-src http://security.ubuntu.com/ubuntu intrepid-security multiverse
sander@ubuntu810:~$ 
sander@ubuntu810:~$ echo "deb http://ppa.launchpad.net/jcfp/ubuntu "  `grep CODENAME /etc/lsb-release | awk -F= '{ print $2 }'`  " main" | sudo tee -a /etc/apt/sources.list
deb http://ppa.launchpad.net/jcfp/ubuntu  intrepid  main
sander@ubuntu810:~$ 
sander@ubuntu810:~$ 
sander@ubuntu810:~$ tail -5 /etc/apt/sources.list
deb http://security.ubuntu.com/ubuntu intrepid-security universe
deb-src http://security.ubuntu.com/ubuntu intrepid-security universe
deb http://security.ubuntu.com/ubuntu intrepid-security multiverse
deb-src http://security.ubuntu.com/ubuntu intrepid-security multiverse
deb http://ppa.launchpad.net/jcfp/ubuntu  intrepid  main
sander@ubuntu810:~$ 
sander@ubuntu810:~$

Re: (Unofficial) Ubuntu repository for SABnzbd+

Posted: October 23rd, 2008, 10:40 am
by jcfp
Indeed, automating that would make the instructions a bit more newbie-proof ;D (albeit at the cost of becoming more susceptable for futile attempts to use the repo with unsupported/ancient versions of ubuntu). Done.