-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
113 changed files
with
2,754 additions
and
2,386 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
# | ||
# Copyright (c) 2019-2020 The Bitcoin Core developers | ||
# Distributed under the MIT software license, see the accompanying | ||
# file COPYING or http://www.opensource.org/licenses/mit-license.php. | ||
|
||
export LC_ALL=C.UTF-8 | ||
|
||
export CONTAINER_NAME=ci_native_old | ||
export DOCKER_NAME_TAG=ubuntu:16.04 | ||
export PACKAGES="libqt5gui5 libqt5core5a qtbase5-dev libqt5dbus5 qttools5-dev qttools5-dev-tools libssl-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-iostreams-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev libdb5.3++-dev libminiupnpc-dev libqrencode-dev libzip-dev zlib1g zlib1g-dev libcurl4-openssl-dev" | ||
export RUN_UNIT_TESTS=true | ||
# export RUN_FUNCTIONAL_TESTS=false | ||
# export RUN_SECURITY_TESTS="true" | ||
export GOAL="install" | ||
export GRIDCOIN_CONFIG="--enable-reduce-exports --with-incompatible-bdb --with-gui=qt5" | ||
export NEED_XVFB="true" | ||
export NO_DEPENDS=1 |
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 |
---|---|---|
@@ -1,29 +1,33 @@ | ||
package=fontconfig | ||
GCCFLAGS?= | ||
$(package)_version=2.12.1 | ||
$(package)_download_path=http://www.freedesktop.org/software/fontconfig/release/ | ||
$(package)_download_path=https://www.freedesktop.org/software/fontconfig/release/ | ||
$(package)_file_name=$(package)-$($(package)_version).tar.bz2 | ||
$(package)_sha256_hash=b449a3e10c47e1d1c7a6ec6e2016cca73d3bd68fbbd4f0ae5cc6b573f7d6c7f3 | ||
$(package)_dependencies=freetype expat | ||
$(package)_patches=0001-Avoid-conflicts-with-integer-width-macros-from-TS-18.patch | ||
|
||
define $(package)_set_vars | ||
$(package)_config_opts=--disable-docs --disable-static | ||
$(package)_cxxflags_aarch64_linux = $(GCCFLAGS) | ||
$(package)_cflags_aarch64_linux = $(GCCFLAGS) | ||
$(package)_cxxflags_arm_linux = $(GCCFLAGS) | ||
$(package)_cflags_arm_linux = $(GCCFLAGS) | ||
$(package)_config_opts=--disable-docs --disable-static --disable-libxml2 --disable-iconv | ||
$(package)_config_opts += --disable-dependency-tracking --enable-option-checking | ||
endef | ||
|
||
define $(package)_config_cmds | ||
patch -p1 < $($(package)_patch_dir)/0001-Avoid-conflicts-with-integer-width-macros-from-TS-18.patch &&\ | ||
$($(package)_autoconf) | ||
endef | ||
|
||
# 2.12.1 uses CHAR_WIDTH which is reserved and clashes with some glibc versions, but newer versions of fontconfig | ||
# have broken makefiles which needlessly attempt to re-generate headers with gperf. | ||
# Instead, change all uses of CHAR_WIDTH, and disable the rule that forces header re-generation. | ||
# This can be removed once the upstream build is fixed. | ||
define $(package)_build_cmds | ||
sed -i 's/CHAR_WIDTH/CHARWIDTH/g' fontconfig/fontconfig.h src/fcobjshash.gperf src/fcobjs.h src/fcobjshash.h && \ | ||
sed -i 's/fcobjshash.h: fcobjshash.gperf/fcobjshash.h:/' src/Makefile && \ | ||
$(MAKE) | ||
endef | ||
|
||
define $(package)_stage_cmds | ||
$(MAKE) DESTDIR=$($(package)_staging_dir) install | ||
endef | ||
|
||
define $(package)_postprocess_cmds | ||
rm lib/*.la | ||
endef |
73 changes: 0 additions & 73 deletions
73
depends/patches/fontconfig/0001-Avoid-conflicts-with-integer-width-macros-from-TS-18.patch
This file was deleted.
Oops, something went wrong.
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,10 +1,6 @@ | ||
Assets Attribution | ||
=================== | ||
|
||
Code: src/strlcpy.h | ||
Author: Todd C. Miller <[email protected]> | ||
License: ISC | ||
|
||
Icon: src/qt/res/icons/clock*.png, | ||
src/qt/res/src/*.svg | ||
Designer: Wladimir van der Laan | ||
|
@@ -36,7 +32,7 @@ License: LGPL | |
Icon: scripts/img/reload.xcf (modified),src/qt/res/movies/update_spinner.mng | ||
Icon Pack: Kids | ||
Designer: Everaldo (Everaldo Coelho) | ||
License: GNU/GPL | ||
License: GNU/GPL | ||
Site: http://findicons.com/icon/17102/reload?id=17102 | ||
|
||
Gridcoin Logo: CryptoCoinTalk Community |
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
Oops, something went wrong.