You did a great job and going to do even more! :^)
I try using cross compile to get amd64 packages, but don't work, i need one computer where i can run for amd64 apps, i'm working to buy one.
AFAIK there is currently no way to create a amd64 package on i386 architecture.
If you have serious problems with the amd64 machine, maybe I can do ssh-access to the one for you. But this possibly not be soon.
I think is a good idea -- add symlinks "stable" to "lenny" tree, and "testing->squeeze", "unstable->sid". Its useful sometime. But remember: that symlinks must be renewed when Debian change releases.
I think this is fixed.
Hmm, i keep getting errors:
$ sudo LC_ALL=C aptitude update | grep -A1 "^Err .*tuxsoul"
Err http://deb.tuxsoul.com testing/main Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com testing/contrib Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com testing/non-free Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com testing/main i386 Packages
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com testing/contrib i386 Packages
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com testing/non-free i386 Packages
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com unstable/main Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com unstable/contrib Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com unstable/non-free Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com unstable/main i386 Packages
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com unstable/contrib i386 Packages
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com unstable/non-free i386 Packages
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com stable/main Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com stable/contrib Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com stable/non-free Sources
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com stable/main i386 Packages
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com stable/contrib i386 Packages
404 Not Found [IP: 199.27.134.100 80]
Err http://deb.tuxsoul.com stable/non-free i386 Packages
404 Not Found [IP: 199.27.134.100 80]
My sources:
$ cat /etc/apt/sources.list.d/bitcoin.list
deb http://deb.tuxsoul.com stable main contrib non-free
deb-src http://deb.tuxsoul.com stable main contrib non-free
deb http://deb.tuxsoul.com testing main contrib non-free
deb-src http://deb.tuxsoul.com testing main contrib non-free
deb http://deb.tuxsoul.com unstable main contrib non-free
deb-src http://deb.tuxsoul.com unstable main contrib non-free
deb http://deb.tuxsoul.com etch main contrib non-free
deb-src http://deb.tuxsoul.com etch main contrib non-free
deb http://deb.tuxsoul.com etch-backports main contrib non-free
deb-src http://deb.tuxsoul.com etch-backports main contrib non-free
deb http://deb.tuxsoul.com lenny main contrib non-free
deb-src http://deb.tuxsoul.com lenny main contrib non-free
deb http://deb.tuxsoul.com lenny-backports main contrib non-free
deb-src http://deb.tuxsoul.com lenny-backports main contrib non-free
deb http://deb.tuxsoul.com squeeze main contrib non-free
deb-src http://deb.tuxsoul.com squeeze main contrib non-free
(I know this list excessive.)
In the last packages, i added a "watch" file, you can test it with "uscan", to get more quickly updates.
Excellent!
For example, in the bitcoin (not oficial) package, i include some files: bitcoin.conf (example file), manpage for bitcoind and bitcoin.conf, and for last the white paper of bitcoin.
Jonas Smedegaard <
[email protected]> maintainer of official debian package built bitcoin-cli, which does the same thing as your bitcoin-daemon.
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=578157#77 He is currently exploring the possibility of assembling a package libdb4.8++ (See also topic
https://bitcointalksearch.org/topic/needed-calling-db48-testers-2667). In his package no mans no examples, so I think you should contact Jonas Smedegaard and to merge in order to prevent the execution of double work.
I use this lines for his repo:
deb http://debian.jones.dk/ testing freedombox
deb-src http://debian.jones.dk/ testing freedombox
deb http://debian.jones.dk/ unstable freedombox
deb-src http://debian.jones.dk/ unstable freedombox
I read your man pages and have some thoughts:
In bitcoind.1.gz section EXAMPLE:
Now run:
$ ./bitcoind
bitcoin server starting
$ ./bitcoind help
A list of RPC calls will be shown:
$ ./bitcoind getbalance
2000.00000
I think you want to remove. "./" at the beginning of commands, as they run from /usr/bin. ("$ ./bitcoind" --> "$ bitcoind").
In COMMAND sections need add brackets to some parameters. Like: "backupwallet destination" --> "backupwallet
" and "getbalance account" --> "getbalance [account]".
Also:
"getbalance" have optional parameter "[minconf=1]";
"setgenerate" lost "" parameter description. Like: " is true or false to turn generation on or off";
In bitcoin.conf.5.gz i think better move sections HISTORY and RESOURCES to bitcoind.1.gz and leave only "SEE ALSO bitcoind(1)".