summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Chimento2022-12-21 18:11:10 +0200
committerDouglas Chimento2022-12-21 18:11:10 +0200
commit0307e5e3dfc2a591630981faf28e0d5687931250 (patch)
treee1da1c7bf37e1962dc334df781a149e7b19f9384
parentc9efacd2c4505486c7aaea1328d8cf714448644a (diff)
downloadaur-0307e5e3dfc2a591630981faf28e0d5687931250.tar.gz
v24.0.1 zlib
-rw-r--r--.SRCINFO4
-rwxr-xr-xPKGBUILD8
-rw-r--r--bitcoind.install44
3 files changed, 6 insertions, 50 deletions
diff --git a/.SRCINFO b/.SRCINFO
index c12f894c31f7..2c70c71ba272 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = pro-bitcoin-git
pkgdesc = Prometheus enabled bitcoin node
- pkgver = v24.0rc1.r0.gdef75f0fb
- pkgrel = 2
+ pkgver = v24.0.1.1.r0.g9353e8ad0
+ pkgrel = 1
url = https://github.com/pro-bitcoin/pro-bitcoin.git
arch = aarch64
arch = armv6h
diff --git a/PKGBUILD b/PKGBUILD
index 71a86217fc90..802f13811ccf 100755
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,13 +1,13 @@
# Maintainer: Douglas Chimento <dchimento @ gmail.com>
pkgname=pro-bitcoin-git
-pkgver=v24.0rc1.r0.gdef75f0fb
-pkgrel=2
+pkgver=v24.0.1.1.r0.g9353e8ad0
+pkgrel=1
arch=('aarch64' 'armv6h' 'armv7h' 'i686' 'x86_64')
url="https://pro-bitcoin.io"
depends=('boost' 'boost-libs' 'zeromq' 'libevent')
optdepends=('bitcoin-core' 'bitcoin-daemon')
checkdepends=('python')
-makedepends=('autoconf' 'automake' 'binutils' 'libtool' 'm4' 'make' 'pkg-config' 'systemd' 'prometheus-cpp-git')
+makedepends=('autoconf' 'automake' 'binutils' 'libtool' 'm4' 'make' 'pkg-config' 'systemd' 'prometheus-cpp-git' 'zlib')
pkgdesc="Prometheus enabled bitcoin node"
url="https://github.com/pro-bitcoin/pro-bitcoin.git"
license=('MIT')
@@ -31,7 +31,7 @@ build() {
msg2 'Building...'
cd "$srcdir/${pkgname}"
./autogen.sh
- LIBS=-lz ./configure \
+ ./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--libexecdir=/usr/lib/bitcoin \
diff --git a/bitcoind.install b/bitcoind.install
deleted file mode 100644
index fc8c1e075a76..000000000000
--- a/bitcoind.install
+++ /dev/null
@@ -1,44 +0,0 @@
-post_install() {
- # Create data directory if it doesn't exist yet
- mkdir -p -m 755 /var/lib/bitcoind
- printf "%b\n" "$bitcoin"
-}
-
-post_upgrade() {
- # Ensure a previous blockchain in the old datadir is kept in use
- if [ -f /srv/bitcoin/peers.dat ] && [ ! -d /var/lib/bitcoind ]; then
- ln -s /srv/bitcoin /var/lib/bitcoind
- fi
- post_install
-}
-
-read -d '' bitcoin <<'EOF'
-########################################################################
-########################################################################
-## ##
-## Bitcoin Core ##
-## ____________ ##
-## ##
-## To start bitcoin-core: ##
-## ##
-## # systemctl start bitcoind ##
-## ##
-## To communicate with bitcoin-core as a normal user: ##
-## ##
-## $ mkdir -p ~/.bitcoin ##
-## $ cat > ~/.bitcoin/bitcoin.conf <<'CFG' ##
-## rpcconnect=127.0.0.1 ##
-## rpcport=8332 ##
-## rpcuser=bitcoin ##
-## rpcpassword=secret ##
-## CFG ##
-## ##
-## $ bitcoin-cli getmininginfo ##
-## ##
-## Config: /etc/bitcoin/bitcoin.conf ##
-## Blockchain: /var/lib/bitcoind ##
-## Documentation: /usr/share/doc/bitcoin ##
-## ##
-########################################################################
-########################################################################
-EOF