forked from rsnel/i0coin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 0.6 release candidate 1 Conflicts: COPYING src/base58.h src/bitcoinrpc.cpp src/init.cpp src/irc.cpp src/main.cpp src/main.h src/makefile.linux-mingw src/makefile.mingw src/makefile.osx src/makefile.unix src/makefile.vc src/net.cpp src/script.cpp
- Loading branch information
Showing
181 changed files
with
50,196 additions
and
8,187 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[Protocol] | ||
exec=bitcoin-qt '%u' | ||
protocol=bitcoin | ||
input=none | ||
output=none | ||
helper=true | ||
listing= | ||
reading=false | ||
writing=false | ||
makedir=false | ||
deleting=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,32 @@ | ||
bitcoin (0.5.1-natty1) natty; urgency=low | ||
|
||
* Remove mentions on anonymity in package descriptions and manpage. | ||
These should never have been there, bitcoin isnt anonymous without | ||
a ton of work that virtually no users will ever be willing and | ||
capable of doing | ||
* Add GNOME/KDE support for bitcoin-qt's bitcoin: URI support. | ||
Thanks to luke-jr for the KDE .protocol file. | ||
|
||
-- Matt Corallo <[email protected]> Fri, 23 Dec 2011 20:25:00 -0500 | ||
|
||
bitcoin (0.5.1-natty0) natty; urgency=low | ||
|
||
* New upstream release. | ||
|
||
-- Matt Corallo <[email protected]> Fri, 16 Dec 2011 13:27:00 -0500 | ||
|
||
bitcoin (0.5.0-natty0) natty; urgency=low | ||
|
||
* New upstream release. | ||
|
||
-- Matt Corallo <[email protected]> Mon, 21 Nov 2011 11:32:00 -0500 | ||
|
||
bitcoin (0.5.0~rc7-natty0) natty; urgency=low | ||
|
||
* New upstream release candidate. | ||
|
||
-- Matt Corallo <[email protected]> Sun, 20 Nov 2011 17:08:00 -0500 | ||
|
||
bitcoin (0.5.0~rc3-natty0) natty; urgency=low | ||
|
||
* New upstream release candidate. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
name: "bitcoin-deps" | ||
suites: | ||
- "lucid" | ||
architectures: | ||
- "i386" | ||
packages: | ||
- "mingw32" | ||
- "git-core" | ||
- "unzip" | ||
- "faketime" | ||
- "wine" | ||
reference_datetime: "2011-01-30 00:00:00" | ||
remotes: [] | ||
files: | ||
- "openssl-1.0.0e.tar.gz" | ||
- "db-4.8.30.NC.tar.gz" | ||
- "miniupnpc-1.6.tar.gz" | ||
- "zlib-1.2.6.tar.gz" | ||
- "libpng-1.5.8.tar.gz" | ||
- "qrencode-3.2.0.tar.bz2" | ||
script: | | ||
# | ||
tar xzf openssl-1.0.0e.tar.gz | ||
cd openssl-1.0.0e | ||
./Configure --cross-compile-prefix=i586-mingw32msvc- mingw | ||
make | ||
cd .. | ||
# | ||
tar xzf db-4.8.30.NC.tar.gz | ||
cd db-4.8.30.NC/build_unix | ||
../dist/configure --enable-mingw --enable-cxx --host=i586-mingw32msvc CFLAGS="-I/usr/i586-mingw32msvc/include" | ||
make $MAKEOPTS | ||
cd ../.. | ||
# | ||
tar xzf miniupnpc-1.6.tar.gz | ||
cd miniupnpc-1.6 | ||
sed 's/dllwrap -k --driver-name gcc/$(DLLWRAP) -k --driver-name $(CC)/' -i Makefile.mingw | ||
sed 's|wingenminiupnpcstrings $< $@|./wingenminiupnpcstrings $< $@|' -i Makefile.mingw | ||
make -f Makefile.mingw DLLWRAP=i586-mingw32msvc-dllwrap CC=i586-mingw32msvc-gcc AR=i586-mingw32msvc-ar | ||
cd .. | ||
mv miniupnpc-1.6 miniupnpc | ||
# | ||
tar xzf zlib-1.2.6.tar.gz | ||
cd zlib-1.2.6 | ||
make -f win32/Makefile.gcc PREFIX=i586-mingw32msvc- $MAKEOPTS | ||
cd .. | ||
# | ||
tar xzf libpng-1.5.8.tar.gz | ||
cd libpng-1.5.8 | ||
./configure CC=i586-mingw32msvc-cc AR=i586-mingw32msvc-ar STRIP=i586-mingw32msvc-strip RANLIB=i586-mingw32msvc-ranlib OBJDUMP=i586-mingw32msvc-objdump LD=i586-mingw32msvc-ld LDFLAGS="-L../zlib-1.2.6/" CFLAGS="-I../zlib-1.2.6/" | ||
make $MAKEOPTS | ||
cd .. | ||
# | ||
tar xjf qrencode-3.2.0.tar.bz2 | ||
cd qrencode-3.2.0 | ||
./configure CC=i586-mingw32msvc-cc AR=i586-mingw32msvc-ar STRIP=i586-mingw32msvc-strip RANLIB=i586-mingw32msvc-ranlib OBJDUMP=i586-mingw32msvc-objdump LD=i586-mingw32msvc-ld png_LIBS="../libpng-1.5.8/.libs/libpng15.a ../zlib-1.2.6/libz.a" png_CFLAGS="-I../libpng-1.5.8" | ||
make $MAKEOPTS | ||
cd .. | ||
# | ||
tar cjvpf "$OUTDIR/bitcoin-deps-0.0.1.tbz2" "$HOME/build" | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.