Notices


Reply
Thread Tools
Posts: 38 | Thanked: 24 times | Joined on Mar 2011 @ India
#71
Originally Posted by g_k View Post
This is great news! However, I get the error message:



For libapr1 it is the same problem...

Do you have an idea why this can be?

Thanks in advance!
just download the deb file and install using dpkg.
there seems to be some problem with these packages on repo
 
ajack's Avatar
Posts: 288 | Thanked: 175 times | Joined on Oct 2010 @ Petaling Jaya, Selangor, Malaysia
#72
Originally Posted by sat2050 View Post
just download the deb file and install using dpkg.
there seems to be some problem with these packages on repo
The DEBs can be found at URL:

http://maemo.org/packages/view/libaprutil1/
http://maemo.org/packages/view/libapr1/
__________________
Visit my blog at http://lifewithmaemo.blogspot.com or my website at http://www.renegade-uiq.com
 
Posts: 3 | Thanked: 0 times | Joined on Mar 2011
#73
Thanks a lot!

*yawn* What a great feeling to have subversion on my N900!
 
Posts: 2,225 | Thanked: 3,822 times | Joined on Jun 2010 @ Florida
#74
*Sigh* Wish maintainers actually COMMITTED to maintaining something for years down the line.

Meh. Oh, also, for those who don't feel like manually fetching old dependencies, or in case the repository auto-deletes them (which it does sometimes do) there's also git and the git-svn plugin for it available, so you can use git-svn to get your svn access.

- Edit -

Of course, to be fair, I understand that life gets in the way and other circumstances can demotivate, so I don't hold it against the developer. Also, I haven't actually tries git-svn yet - I just happened to find it when looking it up in the repository.

- Edit 2 -

Maybe not. Trying to apt-get the git-svn package gets a package not found, and the maemo.org/packages search, although it lists a git-svn package, doesn't seem to actually have anything to download.

Last edited by Mentalist Traceur; 2011-04-02 at 03:17. Reason: Typo: "access" not actions.
 

The Following User Says Thank You to Mentalist Traceur For This Useful Post:
Posts: 227 | Thanked: 53 times | Joined on Feb 2008 @ Lyon, France
#75
Is there any reason why the repositories are not fixed yet? It's annoying to have them in an unstable state.
 
Posts: 1 | Thanked: 0 times | Joined on Oct 2010
#76
apt-cache show subversion

show install subversion 1.6.12 & 1.6.16

i'm try apt-get purge subversion

and

apt-get install subversion
 
Posts: 12 | Thanked: 21 times | Joined on Aug 2010 @ Alger
#77
Here is a step by step installation process of subversion and all the tools needed :
Beware, compilation and installation is not optified (add --prefix=/opt on every ./configure, but not tested) and not packaged (didn't dig into it), it's from upstream tarballs.
1) install compiler
Code:
sudo gainroot
apt-get install make gcc g++
exit
2) install wget
Code:
sudo gainroot
apt-get install wget
exit
3) compile m4
3.1) download
Code:
wget -c http://ftp.gnu.org/gnu/m4/m4-1.4.15.tar.gz
3.2) decompress
Code:
gunzip m4-1.4.15.tar.gz
tar -xf m4-1.4.15.tar
rm -f m4-1.4.15.tar
3.3) build
Code:
cd m4-1.4.15
./configure
make
3.4) install
Code:
sudo gainroot
make install
exit
3.5) clean
Code:
cd ..
rm -rf m4-1.4.15
4) compile autoconf
4.1) download
Code:
wget -c http://ftp.gnu.org/gnu/autoconf/autoconf-2.68.tar.gz
4.2) decompress
Code:
gunzip autoconf-2.68.tar.gz
tar -xf autoconf-2.68.tar
rm -f autoconf-2.68.tar
4.3) build
Code:
cd autoconf-2.68
./configure
make
4.4) install
Code:
sudo gainroot
make install
exit
4.5) clean
Code:
cd ..
rm -rf autoconf-2.68
5) install libtool
Code:
sudo gainroot
apt-get install libtool
exit
6) install libsqlite3-dev
Code:
sudo gainroot
apt-get install libsqlite3-dev
exit
7) compile apr
7.1) download
Code:
wget -c http://apache.mirrors.tds.net//apr/apr-1.4.5.tar.gz
7.2) decompress
Code:
gunzip apr-1.4.5.tar.gz
tar -xf apr-1.4.5.tar
rm -f apr-1.4.5.tar
7.3) build
Code:
cd apr-1.4.5
./configure
make
7.4) install
Code:
sudo gainroot
make install
exit
7.5) clean
Code:
cd ..
rm -rf apr-1.4.5
8) compile aprutil
8.1) download
Code:
wget -c http://apache.mirrors.tds.net//apr/apr-util-1.3.12.tar.gz
8.2) decompress
Code:
gunzip apr-util-1.3.12.tar.gz
tar -xf apr-util-1.3.12.tar
rm -f apr-util-1.3.12.tar
8.3) build
Code:
cd apr-util-1.3.12
./configure
make
8.4) install
Code:
sudo gainroot
make install
exit
8.5) clean
Code:
cd ..
rm -rf apr-util-1.3.12
9) compile diffutils
9.1) download
Code:
wget -c http://ftp.gnu.org/gnu/diffutils/diffutils-3.2.tar.gz
9.2) decompress
Code:
gunzip diffutils-3.2.tar.gz
tar -xf diffutils-3.2.tar
rm -f diffutils-3.2.tar
9.3) build
Code:
cd diffutils-3.2
./configure
make
9.4) install
Code:
sudo gainroot
make install
exit
9.5) clean
Code:
cd ..
rm -rf diffutils-3.2
10) compile subversion
10.1) download
Code:
wget -c http://subversion.tigris.org/downloads/subversion-1.6.17.tar.gz
10.2) decompress
Code:
gunzip subversion-1.6.17.tar.gz
tar -xf subversion-1.6.17.tar
rm -f subversion-1.6.17.tar
10.3) build
Code:
cd subversion-1.6.17
./configure --with-apr=/usr/local/apr --with-apr-util=/usr/local/apr
make
10.4) install
Code:
sudo gainroot
make install
exit
10.5) clean
Code:
cd ..
rm -rf subversion-1.6.17
 

The Following 2 Users Say Thank You to brahim98 For This Useful Post:
pichlo's Avatar
Posts: 6,447 | Thanked: 20,981 times | Joined on Sep 2012 @ UK
#78
Just found this thread as I was having the same problem. Big thanks
guys for finding the solution, it works fantastic. Only one thing, otherwise I would not have bothered bumping a two years old thread.

Originally Posted by Mentalist Traceur View Post
... for those who don't feel like manually fetching old dependencies, or in case the repository auto-deletes them ...
... I have attached the two working libraries here:
Attached Files
File Type: deb libapr1_1.4.2-1_armel.deb (159.4 KB, 93 views)
File Type: deb libaprutil1_1.3.9-2_armel.deb (128.8 KB, 91 views)
 

The Following User Says Thank You to pichlo For This Useful Post:
Reply


 
Forum Jump


All times are GMT. The time now is 04:52.