-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version bump, build fixes, branding overlay, minor fixes
- Loading branch information
VanOrton
committed
Apr 18, 2023
1 parent
a9642af
commit 2fa1863
Showing
74 changed files
with
1,674 additions
and
1,266 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 |
---|---|---|
@@ -1,3 +1,21 @@ | ||
bitgesell (0.1.10) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Tue, 18 Apr 2023 10:30:15 +0000 | ||
|
||
bitgesell (0.1.9) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Tue, 8 Nov 2022 10:00:00 +0000 | ||
|
||
bitgesell (0.1.8) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Wed, 20 Apr 2022 10:20:00 +0000 | ||
|
||
bitgesell (0.1.7) UNRELEASED; urgency=low | ||
|
||
* Taproot activation rescheduled with relaxed conditions | ||
|
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 +1 @@ | ||
bitgesell_0.1.7_source.buildinfo misc optional | ||
bitgesell_0.1.10_source.buildinfo misc optional |
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,3 +1,21 @@ | ||
bitgesell-qt (0.1.10) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Tue, 18 Apr 2023 10:30:15 +0000 | ||
|
||
bitgesell-qt (0.1.9) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Tue, 8 Nov 2022 10:00:00 +0000 | ||
|
||
bitgesell-qt (0.1.8) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Wed, 20 Apr 2022 10:20:00 +0000 | ||
|
||
bitgesell-qt (0.1.7) UNRELEASED; urgency=low | ||
|
||
* Taproot activation rescheduled with relaxed conditions | ||
|
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 +1 @@ | ||
bitgesell-qt_0.1.7_source.buildinfo misc optional | ||
bitgesell-qt_0.1.10_source.buildinfo misc optional |
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,9 @@ | ||
#!/bin/bash | ||
export DEBIAN_FRONTEND=noninteractive | ||
export TZ=Etc/UTC | ||
apt-get update && apt-get install -y tzdata | ||
ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime | ||
dpkg-reconfigure --frontend noninteractive tzdata | ||
#apt-get -y update | ||
apt-get -y install apt-utils devscripts sudo #dpkg-dev | ||
apt-get -y install libqrencode-dev qt5-default qttools5-dev-tools |
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,12 @@ | ||
To create the Debian package installable on multiple systems including | ||
Ubunutu 18.04, run: | ||
|
||
./debian/build-in-docker.sh | ||
|
||
Maintainers can run ./debian/test.sh to test if the generated Debian | ||
package is correct. | ||
|
||
TODO: ./debian/build-in-docker.sh and ./debian/test.sh should not need to | ||
be updated when the version of the package changes. | ||
|
||
-- Victor Porton <[email protected]> Sat, 03 Oct 2020 06:04:48 +0300 |
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,36 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
debuild -S | ||
|
||
#finish() { | ||
# docker stop $container >/dev/null | ||
# docker container rm $container >/dev/null | ||
#} | ||
|
||
docker pull ubuntu:20.04 | ||
container=`docker run -dit ubuntu:20.04` | ||
#trap finish EXIT | ||
|
||
docker cp ./debian/updateunattended.sh $container:/root/ | ||
docker exec $container /root/updateunattended.sh | ||
docker exec $container mkdir -p /root/repo | ||
docker exec $container useradd user | ||
docker exec $container mkdir /home/user | ||
docker exec $container chown user.user /home/user | ||
docker exec $container sudo -u user mkdir /home/user/build | ||
docker cp ../bitgesell-qt_0.1.10.dsc $container:/root/repo/ | ||
docker cp ../bitgesell-qt_0.1.10.tar.xz $container:/root/repo/ | ||
# docker exec -w /root/repo $container sh -c "dpkg-scanpackages . /dev/null | gzip -9c > Packages.gz" | ||
|
||
docker exec -w /root/repo $container sh -c "apt-ftparchive sources . > Sources" | ||
docker exec $container sh -c "echo deb-src [trusted=yes] file:/root/repo ./ >> /etc/apt/sources.list" | ||
docker exec $container apt-get -y -o APT::Sandbox::User=root update | ||
docker exec $container apt-get -y build-dep bitgesell-qt | ||
docker exec $container chmod a+rX /root | ||
docker exec $container chmod -R a+rX /root/repo | ||
docker exec -w /home/user/build $container sudo -u user apt-get -y source bitgesell-qt | ||
docker exec -w /home/user/build/bitgesell-qt-0.1.10 $container sudo -u user debuild -b | ||
docker cp $container:/home/user/build/bitgesell-qt_0.1.10_amd64.deb bitgesell-qt_0.1.10_amd64.deb | ||
docker cp $container:/home/user/build/bitgesell-qt-dbg_0.1.10_amd64.deb bitgesell-qt-dbg_0.1.10_amd64.deb |
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,44 @@ | ||
bitgesell-qt (0.1.10) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Tue, 18 Apr 2023 10:30:15 +0000 | ||
|
||
bitgesell-qt (0.1.9) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Tue, 8 Nov 2022 10:00:00 +0000 | ||
|
||
bitgesell-qt (0.1.8) UNRELEASED; urgency=low | ||
|
||
* Bitcoin code synced | ||
|
||
-- Mathias van Orton <[email protected]> Wed, 20 Apr 2022 10:20:00 +0000 | ||
|
||
bitgesell-qt (0.1.7) UNRELEASED; urgency=low | ||
|
||
* Taproot activation rescheduled with relaxed conditions | ||
|
||
-- Mathias van Orton <[email protected]> Sun, 4 Jul 2021 14:40:01 +0000 | ||
|
||
|
||
bitgesell-qt (0.1.6) UNRELEASED; urgency=low | ||
|
||
* Code synced with BTC up to April 2021, Taproot activation scheduled | ||
|
||
-- Mathias van Orton <[email protected]> Mon, 24 May 2021 11:24:11 +0000 | ||
|
||
|
||
bitgesell-qt (0.1.3) UNRELEASED; urgency=low | ||
|
||
* Updated all builds before testing BTC synced code. | ||
|
||
-- Mathias van Orton <[email protected]> Thu, 26 Nov 2020 11:02:18 +0000 | ||
|
||
|
||
bitgesell-qt (0.1.2) UNRELEASED; urgency=low | ||
|
||
* Initial release. | ||
|
||
-- Victor Porton <[email protected]> Sat, 03 Oct 2020 06:04:48 +0300 |
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 |
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,29 @@ | ||
Source: bitgesell-qt | ||
Section: misc | ||
Priority: optional | ||
Maintainer: Mathias van Orton <[email protected]> | ||
Build-Depends: debhelper (>=11~), g++-8, pkg-config, dh-autoreconf, libevent-dev, libssl-dev, fakeroot, wget | ||
Standards-Version: 4.1.4 | ||
Homepage: https://github.com/wu-emma/bitgesell | ||
|
||
Package: bitgesell-qt | ||
Architecture: any | ||
Depends: libc6 (>= 2.27), libstdc++6 (>= 8.4.0), libbz2-1.0 (>= 1.0.6), liblzma5 (>= 5.2.2), zlib1g (>= 1:1.1.4), | ||
libqt5core5a (>= 5.11.0), libqt5dbus5 (>= 5.11.0), libqt5network5 (>= 5.11.0), libqt5gui5 (>= 5.11.0), | ||
openssl, ${misc:Depends} | ||
Description: BGL is an experimental digital currency that enables instant payments to anyone, anywhere in the world | ||
BGL is an experimental digital currency that enables instant payments to anyone, | ||
anywhere in the world. BGL uses peer-to-peer technology to operate with no central authority: | ||
managing transactions and issuing money are carried out collectively by the network. | ||
BGL Core is the name of open source software which enables the use of this currency. | ||
|
||
Package: bitgesell-qt-dbg | ||
Architecture: any | ||
Depends: libc6 (>= 2.27), libstdc++6 (>= 8.4.0), libbz2-1.0 (>= 1.0.6), liblzma5 (>= 5.2.2), zlib1g (>= 1:1.1.4), | ||
libqt5core5a (>= 5.11.0), libqt5dbus5 (>= 5.11.0), libqt5network5 (>= 5.11.0), libqt5gui5 (>= 5.11.0), | ||
openssl, ${misc:Depends} | ||
Description: BGL is an experimental digital currency that enables instant payments to anyone, anywhere in the world | ||
BGL is an experimental digital currency that enables instant payments to anyone, | ||
anywhere in the world. BGL uses peer-to-peer technology to operate with no central authority: | ||
managing transactions and issuing money are carried out collectively by the network. | ||
BGL Core is the name of open source software which enables the use of this currency. |
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 @@ | ||
bitgesell-qt_0.1.10_source.buildinfo misc optional |
Oops, something went wrong.