aboutsummaryrefslogtreecommitdiff
path: root/contrib/gitian-descriptors
AgeCommit message (Collapse)Author
2014-03-21Update gitian README.mdWladimir J. van der Laan
2014-02-27Re-enable UPnP by default in gitian buildsWladimir J. van der Laan
IIRC this was the case with 0.8.6, so let's keep this to avoid the risk of losing connectable nodes with 0.9 release. Also our miniupnpc library was recently updated and I've heard reports that it works better than before now.
2014-02-25gitian: Make protobuf win32 intermediate output deterministicWladimir J. van der Laan
While building protobuf in different environments we noticed that the host tool protoc was slightly different between builds (a symbol table sorting issue). Add a deterministic seed as well as disable zlib support. Exected output is now: e2e403e1a08869c7eed4d4293bce13d51ec6a63592918b90ae215a0eceb44cb4 protobuf-win32-2.5.0-gitian-r4.zip a0999037e8b0ef9ade13efd88fee261ba401f5ca910068b7e0cd3262ba667db0 protobuf-win64-2.5.0-gitian-r4.zip No effect on final executables so no version bump.
2014-02-22gitian: add libz-dev dependency package for linux boostWladimir J. van der Laan
Boost iostreams was picking up libz-dev in VirtualBox, as the recommended way to build is now to make a VM with all dependency packages installed. This caused a divergence between KVM/LXC build and VirtualBox build results. Fix this in the simplest possible way: add the libz-dev package.
2014-02-10Merge pull request #3622Wladimir J. van der Laan
c13a13e gitian: add -D flag to ar for deterministic output for linux deps (Wladimir J. van der Laan) 1552145 gitian: Sort generated source distribution archive (Wladimir J. van der Laan) aabcd11 gitian: Make linux boost dependency completely deterministic (Wladimir J. van der Laan) aa93485 gitian: Make linux build of OpenSSL deterministic (Wladimir J. van der Laan)
2014-02-10gitian: sort generated source distribution archive for windowsWladimir J. van der Laan
Make the bitcoin-X.X.X.tar.gz deterministic.
2014-02-10gitian: Post-process .a libraries for win to be deterministicWladimir J. van der Laan
2014-02-10gitian: add -D flag to ar for deterministic output for linux depsWladimir J. van der Laan
ar -D: Operate in deterministic mode. When adding files and the archive index use zero for UIDs, GIDs, timestamps, and use consistent file modes for all files. When this option is used, if ar is used with identical options and identical input files, multiple runs will create identical output files regardless of the input files' owners, groups, file modes, or modification times.
2014-02-10gitian: Sort generated source distribution archiveWladimir J. van der Laan
Sort the filenames in the resulting tar, normalize the time/date and user/group information.
2014-02-08gitian: Make windows dependencies outputs fully deterministicWladimir J. van der Laan
Sort .zip order, and other determinism changes to make sure builds are repeatable for windows deps.
2014-02-06gitian: Make linux boost dependency completely deterministicWladimir J. van der Laan
It appears that the output was different every time. This doesn't affect the final bitcoind/bitcoin-qt, but is confusing nevertheless. Fix it by using FAKETIME and zipping files in deterministic order.
2014-02-06gitian: Make linux build of OpenSSL deterministicWladimir J. van der Laan
OpenSSL was embedding a timestamp causing its build to be non-deterministic. Change deps-linux to be deterministic by using FAKETIME as needed and disabling it when it gets in the way.
2014-02-03Gitian fixes for 0.9.0rc1 buildWladimir J. van der Laan
- Add 'g++' package (virtualbox images don't have this by default) - Workaround for determinism in Qt5 resources - Pass --disable-maintainer-mode --disable-dependency-tracking to configure for libqrencode to avoid random errors about missing m4 directory - Fix typo -with-pic -> --with-pic It is not necessary to rebuild dependencies after this commit. Fixes #3610 and #3612.
2014-01-21gitian: Windows 64 bit supportWladimir J. van der Laan
- Build a 64 bit version of all dependencies - Show 32/64 bit version in "About..." for x86 - Export 64-bit .exes and installer from gitian build
2014-01-18Merge pull request #3545Wladimir J. van der Laan
1cbbeb6 gitian: Add openssl to linux deps (Wladimir J. van der Laan) 64be7f7 gitian: Build boost dependency for linux (Wladimir J. van der Laan) 7eb99a8 gitian: Reduce build time for boost windows dependency (Wladimir J. van der Laan) 714cdec build: Pass BOOST_CPPFLAGS to sleep implementation test (Wladimir J. van der Laan) 0d40f5a build: Allow providing extra libs for Boost Chrono (Wladimir J. van der Laan) e4b991e build: Auto-detect whether -DBOOST_TEST_DYN_LINK is needed (Wladimir J. van der Laan)
2014-01-18gitian: add optimization to win32 protobufWladimir J. van der Laan
When overriding CXXFLAGS, also provide optimization flags, otherwise we're building without optimization.
2014-01-16gitian: Add openssl to linux depsWladimir J. van der Laan
Build OpenSSL instead of using distribution-provided library.
2014-01-16gitian: Build boost dependency for linuxWladimir J. van der Laan
Instead of using the boost provided by Ubuntu 12.04, build our own dependency like we do for Windows. This allows using a much newer version (1.55 versus 1.46) as well as building with `-fPIC` so that `-pie` can be used in the x86-64 build.
2014-01-16gitian: Reduce build time for boost windows dependencyWladimir J. van der Laan
Build only the mt-s (multithreaded, static runtime link) variant of the library. This cuts the build time in half. Also prevent unpacked boost from ending up in output directory, checking and hashing all the source files as output files this takes a lot of time and is pointless.
2014-01-15Make gitian builds consistent across platformsMicha
Change Linux deps to use a zip archive rather than a gzipped tarball to match win32 Rename Linux descriptor to gitian-linux.yml to match win32
2014-01-15Merge pull request #3536Wladimir J. van der Laan
0425715 gitian: add explicit dependency build for linux (Wladimir J. van der Laan) 279af1a build: use Ubuntu 12.04 for linux gitian build (Wladimir J. van der Laan)
2014-01-15gitian: add explicit dependency build for linuxWladimir J. van der Laan
Create a dependency file per architecture: - bitcoin-deps-linux32-gitian-r1.tar.gz - bitcoin-deps-linux64-gitian-r1.tar.gz
2014-01-14build: use Ubuntu 12.04 for linux gitian buildWladimir J. van der Laan
2014-01-14build: upgrade Qt used by windows build to 5.2.0Wladimir J. van der Laan
2014-01-14build: Update the other win32 depsWladimir J. van der Laan
- miniupnpc-1.8 - openssl-1.0.1e - zlib-1.2.8 - libpng-1.6.8 - qrencode-3.4.3
2014-01-10Merge pull request #3501Wladimir J. van der Laan
56fce1f Upgrade gitian win32 to boost-1.55. (Warren Togami)
2014-01-10gitian: Add -O2 for win32 buildWladimir J. van der Laan
In the win32 gitian descriptor the C*FLAGS are being overridden on `configure`, which causes the built-in optimization flags to be removed. Add `-O2` manually (but not `-g` as we're not doing anything with the debug information). Improves performance of win32 gitian builds. As a bonus, fixes issue #3497.
2014-01-09Upgrade gitian win32 to boost-1.55.Warren Togami
Fixes issue where all network activity just stops.
2013-12-03Fix file hash verification error in deps-win32.ymlMichagogo
libpng was being sha256summed twice, and miniupnpc wasn't being checked at all.
2013-10-31Check integrity of gitian input source tarballsWarren Togami
2013-10-15Finished /Contrib Index. Standardized READMEs.super3
File and Link Fix.
2013-09-30Hardcode string in miniupnpcstring.h and remove wine requirement from ↵Warren Togami
deps-win32.yml Credit: sipa, cfields, Luke-Jr and michagogo contributed to this fix. Removing wine as a win32 build dep is beneficial to fixing Gitian LXC, which would enable many more people to join in the gitian.sigs process by being able to build with a linux VM instead of a virt capable host.
2013-09-30Fix gitian qt-win32.yml buildWarren Togami
The final revision of PR 3029 incorporated a review suggestion of replacing i686-w64-mingw32 with $HOST. But we forgot that $HOST is not expanded when within single quotes so it actually broke qt-win32.yml build. This is the minimal changes necessary to fix the qt-win32.yml build.
2013-09-29Merge pull request #3029 from wtogami/gitianwin32Gavin Andresen
Upgrade gitian win32 to Precise 12.04.
2013-09-27Update Qt 4.8.3 download linkfanquake
2013-09-26Upgrade gitian win32 to boost-1.54.0Warren Togami
Workaround 1.54.0 build bug, upstream #9156 Workaround 1.51.0+ human bug, upstream #7262 This commit also demonstrates a method to verify the integrity of inputs.
2013-09-25Upgrade gitian win32 to Precise 12.04.Warren Togami
mingw upgrade allows more hardening, compiler bug fixes and possibily win64 later. Rename deps .zip files to be more consistent in revision format. Boost #4258 build fix for mingw32
2013-09-19Fix gitian: bitcoin-deps is at version 0.0.7Gavin Andresen
2013-09-18gitian: remove obsolete --disable-debug flagCory Fields
2013-09-18gitian: fix win32 build after configure bdb changesCory Fields
bitcoin incorrectly linked against the dll after the configure changes, so ensure that only the static lib is installed.
2013-09-16included-tests: update gitian descriptors for hexdump dependencyCory Fields
2013-09-09fix some cosmetic glitches in the codebasePhilip Kaufmann
- rename URL into URI in paymentserver where correct - add some missing Qt-coding-stuff in paymentserver - change QSpinBox to QLineEdit as base for BitcoinAmountField in .ui files (as this is the result when converting the BAF back into base) - remove some c_str() and replace with QString::fromStdString() - remove several new-lines - remove unneeded spaces - indentation fixes
2013-09-08Merge pull request #2977 from laanwj/2013_09_release_process_protobufGavin Andresen
Add protobuf 2.5.0 download to gitian release process
2013-09-05autotools: switch to autotools buildsystemCory Fields
2013-09-05Qt 4.8.3 r2 in gitian and release processWladimir J. van der Laan
Also needed to add `unzip` package for the added unzip command for OpenSSL in the Qt build.
2013-08-22Payment Protocol: X509-validated payment requestsGavin Andresen
Add support for a Payment Protocol to Bitcoin-Qt. Payment messages are protocol-buffer encoded and communicated over http(s), so this adds a dependency on the Google protocol buffer library, and requires Qt with OpenSSL support.
2013-05-22doc/README was replaced by README.mdv0.8.2rc2Gavin Andresen
2013-05-22gitian deps-win32.yml needs psmisc package for killall to end the buildWarren Togami
2013-02-15Minor build fixesGavin Andresen
Two changes: make some linux-specific linker options linux and linker specific. And in the cross-compile environment, prefer the $HOME/qt/bin tools to whatever might be somewhere else in the path.
2013-02-15Pass compiler flags down into leveldb makeGavin Andresen
Fixes issue#2288. Includes cleanups from Luke's pull 2243.