aboutsummaryrefslogtreecommitdiff
path: root/packaging/ubuntu-mantic-docker/gnunet-build.sh
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-04-21 14:28:07 +0200
committerChristian Grothoff <christian@grothoff.org>2024-04-21 14:28:07 +0200
commite55f6cfe2f24d67ea02b91a1b0d8069c6ce6cd9f (patch)
tree4e74bc5eba266b0cf857477bac364487ad13e7a4 /packaging/ubuntu-mantic-docker/gnunet-build.sh
parent2e109a29f93b61e338283a14172b1baf8a948864 (diff)
downloaddeployment-e55f6cfe2f24d67ea02b91a1b0d8069c6ce6cd9f.tar.gz
deployment-e55f6cfe2f24d67ea02b91a1b0d8069c6ce6cd9f.tar.bz2
deployment-e55f6cfe2f24d67ea02b91a1b0d8069c6ce6cd9f.zip
rename fest
Diffstat (limited to 'packaging/ubuntu-mantic-docker/gnunet-build.sh')
-rw-r--r--packaging/ubuntu-mantic-docker/gnunet-build.sh29
1 files changed, 0 insertions, 29 deletions
diff --git a/packaging/ubuntu-mantic-docker/gnunet-build.sh b/packaging/ubuntu-mantic-docker/gnunet-build.sh
deleted file mode 100644
index 614c5e6..0000000
--- a/packaging/ubuntu-mantic-docker/gnunet-build.sh
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/bin/sh
-# This file is in the public domain.
-# Helper script to build the latest DEB packages in the container.
-
-set -eu
-unset LD_LIBRARY_PATH
-
-mkdir -p /build/gnunet
-cd /build/gnunet
-
-# Fetch source
-rm -rf *
-
-pip3 install --break-system-packages sphinx-book-theme sphinx-multiversion
-
-for n in gnunet
-do
- git clone git://git.gnunet.org/$n
- cd $n
- git checkout $1
- ./bootstrap
- dpkg-buildpackage -rfakeroot -b -uc -us
- cd ..
- dpkg -i *.deb
-done
-
-tar cvf ../packages.tgz *.deb
-
-cd ..