aboutsummaryrefslogtreecommitdiff
path: root/packages
Commit message (Collapse)AuthorAge
* Debian/Ubuntu packaging: use `--enable-no-sign` to build `*.deb` packages ↵Toni2024-11-18
| | | | | | | w/o signing those (#2616) * can be used for local and CI builds Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* shell: reformatted, fixed inspections, typos (#2506)Petr2024-07-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Reformatted shell scripts according to [ShellCheck](https://github.com/koalaman/shellcheck/). I. Most common changes: 1. https://github.com/koalaman/shellcheck/wiki/SC2086 `$var` → `"$var"` Note: this isn't always necessary and I've been careful not to substitute where it wasn't necessary in meaning. 2. https://github.com/koalaman/shellcheck/wiki/SC2006 `` `command` `` → `$(command)` 3. https://github.com/koalaman/shellcheck/wiki/SC2004 `$(( $a + $b ))` → `$(( a + b ))` 4. https://github.com/koalaman/shellcheck/wiki/SC2164 `cd "$dir"` → `cd "$dir" || exit 1` 5. https://github.com/koalaman/shellcheck/wiki/SC2166 `[ check1 -o check2 ]` → `[ check1 ] || [ check2 ]` 6. https://github.com/koalaman/shellcheck/wiki/SC2002 `cat "${file}" | wc -c` → `< "${file}" wc -c` Note: this looks a bit uglier but works faster. II. Some special changes: 1. In file `utils/common.sh`: https://github.com/koalaman/shellcheck/wiki/SC2112 This script is interpreted by `sh`, not by `bash`, but uses the keyword `function`. So I replaced `#!/usr/bin/env sh` to `#!/usr/bin/env bash`. 2. After that I thought of replacing all shebangs to `#!/usr/bin/env bash` for consistency and cross-platform compatibility, especially since most of the files already use bash. 3. But in cases when it was `#!/bin/sh -e` or `#!/bin/bash -eu` another problem appears: https://github.com/koalaman/shellcheck/wiki/SC2096 So I decided to make all shebangs look uniform: ``` #!/usr/bin/env bash set -e (or set -eu) (if needed) ``` 4. In file `tests/ossfuzz.sh`: https://github.com/koalaman/shellcheck/wiki/SC2162 `read i` → `read -r i` Note: I think that there is no need in special treatment for backslashes, but I could be wrong. 5. In file `tests/do.sh.in`: https://github.com/koalaman/shellcheck/wiki/SC2035 `ls *.*cap*` → `ls -- *.*cap*` 6. In file `utils/verify_dist_tarball.sh`: https://github.com/koalaman/shellcheck/wiki/SC2268 `[ "x${TARBALL}" = x ]` → `[ -z "${TARBALL}" ]` 7. In file `utils/check_symbols.sh`: https://github.com/koalaman/shellcheck/wiki/SC2221 `'[ndpi_utils.o]'|'[ndpi_memory.o]'|'[roaring.o]')` → `'[ndpi_utils.o]'|'[ndpi_memory.o]')` 8. In file `autogen.sh`: https://github.com/koalaman/shellcheck/wiki/SC2145 `echo "./configure $@"` → `echo "./configure $*"` https://github.com/koalaman/shellcheck/wiki/SC2068 `./configure $@` → `./configure "$@"` III. `LIST6_MERGED` and `LIST_MERGED6` There were typos with this variables in files `utils/aws_ip_addresses_download.sh`, `utils/aws_ip_addresses_download.sh` and `utils/microsoft_ip_addresses_download.sh` where variable `LIST6_MERGED` was defined, but `LIST_MERGED6` was removed by `rm`. I changed all `LIST_MERGED6` to `LIST6_MERGED`. Not all changes are absolutely necessary, but some may save you from future bugs.
* Fixed incompatibity with RH7 introduced by ↵Luca Deri2024-02-05
| | | | https://github.com/ntop/nDPI/commit/02030ac16e5016b00e0da6ff7512d97751bf87d2
* Build RPM package in the CI. (#2304)Toni2024-02-05
| | | Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added public_suffix_list.dat in RPM packageLuca Deri2024-01-29
|
* Added public_suffix_list.dat in packagesLuca Deri2024-01-29
|
* Debian 12 fixesLuca Deri2023-07-21
|
* Centos7 fixLuca Deri2022-12-11
|
* Rocky9 fixLuca Deri2022-12-11
|
* Packaing changesLuca Deri2022-12-10
|
* Updated RPM packageLuca Deri2022-08-15
|
* Packages changesLuca Deri2022-08-15
|
* RPM fixLuca Deri2022-07-20
|
* Rocky fixLuca Deri2022-07-20
|
* Version cut fixLuca Deri2022-05-27
|
* Drop support for non-gcrypt builds. (#1469)Toni2022-03-02
| | | | | | | | * As there is now a builtin, lightweight libgcrypt there is no need to disable tls-clho decryption. * It is still possible to use a host libgcrypt with `--with-local-libgcrypt'. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* build: respect environment options more (#1392)Sam James2022-01-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * build: update m4/ax_pthread.m4 from serial 23 -> serial 31 Update ax_pthread.m4 to the latest version from the autoconf-archive project. Signed-off-by: Sam James <sam@gentoo.org> * build: properly detect AR, CC, RANLIB It's necessary to be able to override choice of AR/CC/RANLIB and other toolchain variables/tools for cross-compilation, testing with other toolchains, and to ensure the compiler chosen by the user is actually used for the build. Previously, GNU_PREFIX was kind-of used for this but this isn't a standard variable (at all) and it wasn't applied consistently anyway. We now use the standard autoconf mechanisms for finding these tools. (RANLIB is already covered by LT_INIT.) Signed-off-by: Sam James <sam@gentoo.org> * build: use $(MAKE) This ensures that parallel make works correctly, as otherwise, a fresh make job will be started without the jobserver fd, and hence not know about its parent, forcing -j1. * build: respect CPPFLAGS, LDFLAGS - CPPFLAGS is for the C preprocessor (usually for setting defines) - LDFLAGS should be placed before objects for certain flags to work (e.g. -Wl,--as-needed) Signed-off-by: Sam James <sam@gentoo.org> Co-authored-by: Luca Deri <lucaderi@users.noreply.github.com>
* Additional fix related to cf931fda6bfb3925555c7bd11d950a886676bcb3. (#1332)Toni2021-10-10
| | | | | * configure.seed references removed Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Added nDPI pkg-config file to Debian / Ubuntu ndpi-dev packaging. (#1318)Toni2021-10-03
| | | | | | | * Added nDPI pkg-config file to Debian / Ubuntu ndpi-dev packaging. * fixed missing gcrypt library dependency in libndpi.pc Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* OpenWRT document fixLuca Deri2021-06-08
|
* Updated dependencyLuca Deri2021-02-19
|
* Package fixLuca Deri2021-02-18
|
* Initial geoip supportLuca Deri2021-02-18
|
* Added Makefile for building the development version of libndpi for OpenWRTLuca Deri2021-02-07
|
* TypoLuca Deri2020-11-22
|
* Install ndpi under /usrAlfredo Cardigliano2020-11-17
|
* Restored Ubuntu/Debian packagingLuca Deri2020-11-03
|
* Fix/packaging (#1047)Toni2020-11-03
| | | | | | | | | | | | | * Fix OpenWrt build. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Fixed Debian/Ubuntu packaging. Signed-off-by: Toni Uhlig <matzeton@googlemail.com> * Added DPKG package build to a CI job. Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
* Centos8 package fixLuca Deri2020-10-29
|
* Fix libdir on centos8Alfredo Cardigliano2020-10-29
|
* Removed generation of /usr/lib/.build-idAlfredo Cardigliano2020-10-29
|
* Move libraries from /usr/local to /usrAlfredo Cardigliano2020-10-29
|
* Updated OpenWRT instructionsLuca Deri2020-08-17
|
* Added README for building libndpi under OpenWRTLuca Deri2020-08-17
|
* Added missing RPM filesLuca Deri2020-01-06
|
* rpm-sign fix for centos8Alfredo Cardigliano2019-10-21
|
* Disabled debug_packageAlfredo Cardigliano2019-10-18
|
* RPM spec cleanupAlfredo Cardigliano2019-07-25
|
* Removed conflict with nprobe-devAlfredo Cardigliano2019-07-25
|
* Packages fixeslucaderi2019-07-24
|
* Fixed RPM pkgconfig pathAlfredo Cardigliano2019-04-19
|
* Deb fix (shared lib links)Alfredo Cardigliano2018-12-10
|
* Creating shared lib with major versionAlfredo Cardigliano2018-12-10
|
* RPM fixAlfredo Cardigliano2018-12-10
|
* Added script to get the package versionAlfredo Cardigliano2018-12-07
|
* Build fixLuca Deri2018-12-05
|
* Fix for shared library symbolic linklucaderi2018-11-30
|
* Fixed package signingLuca Deri2018-11-30
|
* rpm spec fileAlfredo Cardigliano2018-11-19
|
* rpm packageAlfredo Cardigliano2018-11-19
|