0
0
Fork 0
mirror of https://github.com/netdata/netdata.git synced 2025-04-06 14:35:32 +00:00

move makeself ()

This commit is contained in:
Paweł Krupa 2019-01-02 10:12:24 +01:00 committed by GitHub
parent 5b32e18e15
commit 4d77f2b325
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 34 additions and 67 deletions

2
.gitignore vendored
View file

@ -56,7 +56,7 @@ packaging/installer/.environment.sh
*.run *.run
# netdata makeself downloads # netdata makeself downloads
makeself/tmp/ packaging/makeself/tmp/
# coverity # coverity
cov-int/ cov-int/

View file

@ -14,7 +14,7 @@ autoreconf -ivf
./configure ./configure
make dist make dist
echo "--- Create self-extractor ---" echo "--- Create self-extractor ---"
./makeself/build-x86_64-static.sh ./packaging/makeself/build-x86_64-static.sh
# Needed fo GCS # Needed fo GCS
echo "--- Copy artifacts to bin ---" echo "--- Copy artifacts to bin ---"

View file

@ -47,7 +47,6 @@ EXTRA_DIST = \
SUBDIRS = \ SUBDIRS = \
diagrams \ diagrams \
makeself \
system \ system \
tests \ tests \
$(NULL) $(NULL)

View file

@ -589,7 +589,6 @@ AC_CONFIG_FILES([
libnetdata/storage_number/Makefile libnetdata/storage_number/Makefile
libnetdata/threads/Makefile libnetdata/threads/Makefile
libnetdata/url/Makefile libnetdata/url/Makefile
makeself/Makefile
registry/Makefile registry/Makefile
streaming/Makefile streaming/Makefile
system/Makefile system/Makefile

View file

@ -1,26 +0,0 @@
# SPDX-License-Identifier: GPL-3.0-or-later
MAINTAINERCLEANFILES= $(srcdir)/Makefile.in
dist_noinst_DATA = \
$(NULL)
dist_noinst_SCRIPTS = \
build.sh \
makeself.sh \
makeself-license.txt \
install-alpine-packages.sh \
post-installer.sh \
jobs/10-prepare-destination.install.sh \
jobs/50-curl-7.60.0.install.sh \
jobs/50-bash-4.4.18.install.sh \
jobs/50-fping-4.0.install.sh \
jobs/70-netdata-git.install.sh \
jobs/99-makeself.install.sh \
run-all-jobs.sh \
install-or-update.sh \
build-x86_64-static.sh \
makeself-header.sh \
makeself-help-header.txt \
makeself.lsm \
functions.sh \
$(NULL)

View file

@ -4,7 +4,7 @@ To build the static binary 64-bit distribution package, run:
```bash ```bash
$ cd /path/to/netdata.git $ cd /path/to/netdata.git
$ ./makeself/build-x86_64-static.sh $ ./packaging/makeself/build-x86_64-static.sh
``` ```
The program will: The program will:
@ -24,7 +24,7 @@ To build netdata binaries with debugging / tracing information in them, use:
```bash ```bash
$ cd /path/to/netdata.git $ cd /path/to/netdata.git
$ ./makeself/build-x86_64-static.sh debug $ ./packaging/makeself/build-x86_64-static.sh debug
``` ```
These binaries are not optimized (they are a bit slower), they have certain features disables (like log flood protection), other features enables (like `debug flags`) and are not stripped (the binary files are bigger, since they now include source code tracing information). These binaries are not optimized (they are a bit slower), they have certain features disables (like log flood protection), other features enables (like `debug flags`) and are not stripped (the binary files are bigger, since they now include source code tracing information).

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# SPDX-License-Identifier: GPL-3.0-or-later # SPDX-License-Identifier: GPL-3.0-or-later
. $(dirname "$0")/../packaging/installer/functions.sh || exit 1 . $(dirname "$0")/../installer/functions.sh || exit 1
set -e set -e
@ -23,7 +23,7 @@ then
# (also inside the container) # (also inside the container)
# #
run sudo docker run -v $(pwd):/usr/src/netdata.git:rw alpine:3.7 \ run sudo docker run -v $(pwd):/usr/src/netdata.git:rw alpine:3.7 \
/bin/sh /usr/src/netdata.git/makeself/install-alpine-packages.sh /bin/sh /usr/src/netdata.git/packaging/makeself/install-alpine-packages.sh
# save the changes made permanently # save the changes made permanently
id=$(sudo docker ps -l -q) id=$(sudo docker ps -l -q)
@ -34,7 +34,7 @@ fi
run sudo docker run -a stdin -a stdout -a stderr -i -t -v \ run sudo docker run -a stdin -a stdout -a stderr -i -t -v \
$(pwd):/usr/src/netdata.git:rw \ $(pwd):/usr/src/netdata.git:rw \
"${DOCKER_CONTAINER_NAME}" \ "${DOCKER_CONTAINER_NAME}" \
/bin/sh /usr/src/netdata.git/makeself/build.sh "${@}" /bin/sh /usr/src/netdata.git/packaging/makeself/build.sh "${@}"
if [ "${USER}" ] if [ "${USER}" ]
then then

View file

@ -31,7 +31,7 @@ cd $(dirname "$0") || exit 1
# if we don't run inside the netdata repo # if we don't run inside the netdata repo
# download it and run from it # download it and run from it
if [ ! -f ../netdata-installer.sh ] if [ ! -f ../../netdata-installer.sh ]
then then
git clone https://github.com/netdata/netdata.git netdata.git || exit 1 git clone https://github.com/netdata/netdata.git netdata.git || exit 1
cd netdata.git/makeself || exit 1 cd netdata.git/makeself || exit 1

View file

@ -6,9 +6,9 @@
# allow running the jobs by hand # allow running the jobs by hand
[ -z "${NETDATA_BUILD_WITH_DEBUG}" ] && export NETDATA_BUILD_WITH_DEBUG=0 [ -z "${NETDATA_BUILD_WITH_DEBUG}" ] && export NETDATA_BUILD_WITH_DEBUG=0
[ -z "${NETDATA_INSTALL_PATH}" ] && export NETDATA_INSTALL_PATH="${1-/opt/netdata}" [ -z "${NETDATA_INSTALL_PATH}" ] && export NETDATA_INSTALL_PATH="${1-/opt/netdata}"
[ -z "${NETDATA_MAKESELF_PATH}" ] && export NETDATA_MAKESELF_PATH="$(dirname "${0}")/.." [ -z "${NETDATA_MAKESELF_PATH}" ] && export NETDATA_MAKESELF_PATH="$(dirname "${0}")/../.."
[ "${NETDATA_MAKESELF_PATH:0:1}" != "/" ] && export NETDATA_MAKESELF_PATH="$(pwd)/${NETDATA_MAKESELF_PATH}" [ "${NETDATA_MAKESELF_PATH:0:1}" != "/" ] && export NETDATA_MAKESELF_PATH="$(pwd)/${NETDATA_MAKESELF_PATH}"
[ -z "${NETDATA_SOURCE_PATH}" ] && export NETDATA_SOURCE_PATH="${NETDATA_MAKESELF_PATH}/.." [ -z "${NETDATA_SOURCE_PATH}" ] && export NETDATA_SOURCE_PATH="${NETDATA_MAKESELF_PATH}/../.."
export NULL= export NULL=
# make sure the path does not end with / # make sure the path does not end with /
@ -35,7 +35,7 @@ fetch() {
then then
run wget -O "${NETDATA_MAKESELF_PATH}/tmp/${tar}" "${url}" run wget -O "${NETDATA_MAKESELF_PATH}/tmp/${tar}" "${url}"
fi fi
if [ ! -d "${NETDATA_MAKESELF_PATH}/tmp/${dir}" ] if [ ! -d "${NETDATA_MAKESELF_PATH}/tmp/${dir}" ]
then then
cd "${NETDATA_MAKESELF_PATH}/tmp" cd "${NETDATA_MAKESELF_PATH}/tmp"

View file

@ -14,4 +14,3 @@ run cd "${NETDATA_INSTALL_PATH}/usr"
run ln -s ../bin bin run ln -s ../bin bin
run ln -s ../sbin sbin run ln -s ../sbin sbin
run ln -s . local run ln -s . local

View file

@ -35,7 +35,7 @@ run ./configure \
# --enable-prompt-string-decoding \ # --enable-prompt-string-decoding \
# --enable-readline \ # --enable-readline \
# --enable-select \ # --enable-select \
run make clean run make clean
run make -j${SYSTEM_CPUS} run make -j${SYSTEM_CPUS}

View file

@ -43,8 +43,8 @@ FILE_VERSION="${VERSION}-$(uname -m)-$(date +"%Y%m%d-%H%M%S")${NOWNER}"
run mkdir -p "${NETDATA_INSTALL_PATH}/system" run mkdir -p "${NETDATA_INSTALL_PATH}/system"
run cp \ run cp \
makeself/post-installer.sh \ packaging/makeself/post-installer.sh \
makeself/install-or-update.sh \ packaging/makeself/install-or-update.sh \
packaging/installer/functions.sh \ packaging/installer/functions.sh \
configs.signatures \ configs.signatures \
system/netdata-init-d \ system/netdata-init-d \

View file

@ -35,7 +35,7 @@ elif test -x /usr/ucb/echo; then
else else
print_cmd="echo" print_cmd="echo"
fi fi
if test -d /usr/xpg4/bin; then if test -d /usr/xpg4/bin; then
PATH=/usr/xpg4/bin:\$PATH PATH=/usr/xpg4/bin:\$PATH
export PATH export PATH
@ -388,7 +388,7 @@ fi
if test x"$NEED_ROOT" = xy -a \`id -u\` -ne 0; then if test x"$NEED_ROOT" = xy -a \`id -u\` -ne 0; then
echo "Administrative privileges required for this archive (use su or sudo)" >&2 echo "Administrative privileges required for this archive (use su or sudo)" >&2
exit 1 exit 1
fi fi
if test x"\$copy" \!= xphase2; then if test x"\$copy" \!= xphase2; then

View file

@ -1,7 +1,7 @@
^ ^
|.-. .-. .-. .-. . netdata |.-. .-. .-. .-. . netdata
| '-' '-' '-' '-' real-time performance monitoring, done right! | '-' '-' '-' '-' real-time performance monitoring, done right!
+----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+---> +----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--->
(C) Copyright 2017, Costa Tsaousis (C) Copyright 2017, Costa Tsaousis
@ -32,7 +32,7 @@
- /etc/init.d/netdata will be created - /etc/init.d/netdata will be created
This package can also update a netdata installation that has been This package can also update a netdata installation that has been
created with another version of it. created with another version of it.
@ -42,5 +42,3 @@
netdata re-distributes a lot of open source software components. netdata re-distributes a lot of open source software components.
Check its full license at: Check its full license at:
https://github.com/netdata/netdata/blob/master/LICENSE.md https://github.com/netdata/netdata/blob/master/LICENSE.md

View file

@ -1,7 +1,7 @@
^ ^
|.-. .-. .-. .-. . netdata |.-. .-. .-. .-. . netdata
| '-' '-' '-' '-' real-time performance monitoring, done right! | '-' '-' '-' '-' real-time performance monitoring, done right!
+----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+---> +----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+-----+--->
(C) Copyright 2017, Costa Tsaousis (C) Copyright 2017, Costa Tsaousis
@ -32,7 +32,7 @@
- /etc/init.d/netdata will be created - /etc/init.d/netdata will be created
This package can also update a netdata installation that has been This package can also update a netdata installation that has been
created with another version of it. created with another version of it.
@ -42,5 +42,3 @@
netdata re-distributes a lot of open source software components. netdata re-distributes a lot of open source software components.
Check its full license at: Check its full license at:
https://github.com/netdata/netdata/blob/master/LICENSE.md https://github.com/netdata/netdata/blob/master/LICENSE.md

View file

@ -21,13 +21,13 @@
# support for non-temporary archives. Ideas thanks to Francois Petitjean # support for non-temporary archives. Ideas thanks to Francois Petitjean
# - 1.3 : More patches from Bjarni R. Einarsson and Francois Petitjean: # - 1.3 : More patches from Bjarni R. Einarsson and Francois Petitjean:
# Support for no compression (--nocomp), script is no longer mandatory, # Support for no compression (--nocomp), script is no longer mandatory,
# automatic launch in an xterm, optional verbose output, and -target # automatic launch in an xterm, optional verbose output, and -target
# archive option to indicate where to extract the files. # archive option to indicate where to extract the files.
# - 1.4 : Improved UNIX compatibility (Francois Petitjean) # - 1.4 : Improved UNIX compatibility (Francois Petitjean)
# Automatic integrity checking, support of LSM files (Francois Petitjean) # Automatic integrity checking, support of LSM files (Francois Petitjean)
# - 1.5 : Many bugfixes. Optionally disable xterm spawning. # - 1.5 : Many bugfixes. Optionally disable xterm spawning.
# - 1.5.1 : More bugfixes, added archive options -list and -check. # - 1.5.1 : More bugfixes, added archive options -list and -check.
# - 1.5.2 : Cosmetic changes to inform the user of what's going on with big # - 1.5.2 : Cosmetic changes to inform the user of what's going on with big
# archives (Quake III demo) # archives (Quake III demo)
# - 1.5.3 : Check for validity of the DISPLAY variable before launching an xterm. # - 1.5.3 : Check for validity of the DISPLAY variable before launching an xterm.
# More verbosity in xterms and check for embedded command's return value. # More verbosity in xterms and check for embedded command's return value.
@ -204,9 +204,9 @@ do
shift shift
;; ;;
--pigz) --pigz)
COMPRESS=pigz COMPRESS=pigz
shift shift
;; ;;
--xz) --xz)
COMPRESS=xz COMPRESS=xz
shift shift
@ -434,7 +434,7 @@ gzip)
GZIP_CMD="gzip -c$COMPRESS_LEVEL" GZIP_CMD="gzip -c$COMPRESS_LEVEL"
GUNZIP_CMD="gzip -cd" GUNZIP_CMD="gzip -cd"
;; ;;
pigz) pigz)
GZIP_CMD="pigz -$COMPRESS_LEVEL" GZIP_CMD="pigz -$COMPRESS_LEVEL"
GUNZIP_CMD="gzip -cd" GUNZIP_CMD="gzip -cd"
;; ;;
@ -497,7 +497,7 @@ if test -f "$HEADER"; then
SKIP=`expr $SKIP` SKIP=`expr $SKIP`
rm -f "$tmpfile" rm -f "$tmpfile"
if test "$QUIET" = "n";then if test "$QUIET" = "n";then
echo Header is $SKIP lines long >&2 echo Header is $SKIP lines long >&2
fi fi
archname="$oldarchname" archname="$oldarchname"
@ -506,7 +506,7 @@ else
exit 1 exit 1
fi fi
if test "$QUIET" = "n";then if test "$QUIET" = "n";then
echo echo
fi fi
@ -598,7 +598,7 @@ if test "$APPEND" = y; then
chmod +x "$archname" chmod +x "$archname"
rm -f "$archname".bak rm -f "$archname".bak
if test "$QUIET" = "n";then if test "$QUIET" = "n";then
echo Self-extractable archive \"$archname\" successfully updated. echo Self-extractable archive \"$archname\" successfully updated.
fi fi
else else
filesizes="$fsize" filesizes="$fsize"
@ -610,12 +610,12 @@ else
# Append the compressed tar data after the stub # Append the compressed tar data after the stub
if test "$QUIET" = "n";then if test "$QUIET" = "n";then
echo echo
fi fi
cat "$tmpfile" >> "$archname" cat "$tmpfile" >> "$archname"
chmod +x "$archname" chmod +x "$archname"
if test "$QUIET" = "n";then if test "$QUIET" = "n";then
echo Self-extractable archive \"$archname\" successfully created. echo Self-extractable archive \"$archname\" successfully created.
fi fi
fi fi
rm -f "$tmpfile" rm -f "$tmpfile"

View file

@ -21,7 +21,7 @@ if [ "${NETDATA_MAKESELF_PATH:0:1}" != "/" ]
fi fi
# netdata source directory # netdata source directory
export NETDATA_SOURCE_PATH="${NETDATA_MAKESELF_PATH}/.." export NETDATA_SOURCE_PATH="${NETDATA_MAKESELF_PATH}/../.."
# make sure ${NULL} is empty # make sure ${NULL} is empty
export NULL= export NULL=