aboutsummaryrefslogtreecommitdiff
path: root/net/snort
Commit message (Collapse)AuthorAge
* snort: remove packageW. Michael Petullo2024-01-03
| | | | | | Replaced with snort3. Signed-off-by: W. Michael Petullo <mike@flyn.org>
* snort: add experimental PCRE2 support patchChristian Marangi2023-12-01
| | | | | | | | | | | | | | | Add experimental PCRE2 support patch as PCRE is EOL and won't receive any new updates anymore. Since PCRE2 API changed, also snort plugins API changed and require some tweka for any user downstream that compile custom plugins. The examples are all updated and conversion patch contains additional info on the changes required to the plugins. Plugins needs to be compiled and require updates anyway so there isn't a problem with user trying to load incompatible plugins. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* snort: bump to release 2.9.20Christian Marangi2023-12-01
| | | | | | | Update to relase 2.9.20 to make it easier to apply experimental PCRE2 support patch. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* treewide: add HAS_LUAJIT_ARCH dependency to luajit userChristian Marangi2023-09-25
| | | | | | | Add HAS_LUAJIT_ARCH dependency to any user of luajit to fix circular dependency limitation. Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
* treewide: remove AUTORELEASEPaul Fertser2023-04-21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Automatically compute and substitute current values for all $(AUTORELEASE) instances as this feature is deprecated and shouldn't be used. The following temporary change was made to the core: diff --git a/rules.mk b/rules.mk index 57d7995d4fa8..f16367de87a8 100644 --- a/rules.mk +++ b/rules.mk @@ -429,7 +429,7 @@ endef abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1)))) COMMITCOUNT = $(if $(DUMP),0,$(call commitcount)) -AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1)) +AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile)) all: FORCE: ; And this command used to fix affected packages: for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \ sed 's^.*/\([^/]*\)/Makefile^\1^';); do make package/$i/download done Signed-off-by: Paul Fertser <fercerpav@gmail.com>
* snort: add conflict with snort3Josef Schlehofer2022-03-04
| | | | | | | | | | | | | Both packages provides the same files: - /usr/bin/u2boat - /usr/bin/u2spewfoo - /usr/bin/snort - /etc/init.d/snort - /etc/config/snort So they should be in conflict. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* snort: update to 2.9.19W. Michael Petullo2021-12-16
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* snort: update 2.9.17.1W. Michael Petullo2021-05-10
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* libdaq,snort: install/use libdaq2 in its own dirEneas U de Queiroz2021-02-24
| | | | | | | | | | | If used with default paths, libdaq 2.x and libdaq 3.x will overwrite some of the other version's files. Install them in different places to avoid trouble. Snort is the only package that uses libdaq, so update it at the same time to avoid creating a failing commit. Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
* treewide: Run refresh on all packagesIlya Lipnitskiy2021-02-20
| | | | | | | | | The crude loop I wrote to come up with this changeset: find -L package/feeds/packages/ -name patches | \ sed 's/patches$/refresh/' | sort | xargs make Signed-off-by: Ilya Lipnitskiy <ilya.lipnitskiy@gmail.com>
* snort: update to 2.9.17W. Michael Petullo2020-12-03
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* snort: update to 2.9.16.1W. Michael Petullo2020-11-19
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* snort: bump to 2.9.15.1Ian Cooper2020-04-30
| | | | | | | | Fix compilation error with x86_64 glibc Fix changed download location on snort.org Signed-off-by: Ian Cooper <iancooper@hotmail.com>
* snort: update to 2.9.15W. Michael Petullo2019-10-13
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* treewide: add PKG_CPE_ID for better cvescanner coverageJan Pavlinec2019-09-17
| | | | Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* Merge pull request #8119 from jefferyto/snort-initRosen Penev2019-04-07
|\ | | | | snort: Update init script
| * snort: Update init scriptJeffery To2019-02-03
| | | | | | | | | | | | | | | | | | | | | | This replaces the use of uci_validate_section() with uci_load_validate(), which removes the need to declare local variables for every config option. This also fixes a variable name typo ("CONFIGFILE" instead of "config_file"). Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | snort: modify to build against libdaq 2.2.2W. Michael Petullo2019-03-30
|/ | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* snort: fix pcap include directoryEneas U de Queiroz2018-12-07
| | | | | | Build was overriding openwrt pcap include directory. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
* snort: switch to libtirpcAndy Walsh2018-08-13
| | | | Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
* snort: depend on libnghttp2W. Michael Petullo2018-04-23
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* snort: set configuration file path in init scriptW. Michael Petullo2018-04-23
| | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* Merge pull request #5702 from MikePetullo/snort2Hannu Nyman2018-04-23
|\ | | | | snort: update to 2.9.11.1
| * snort: update to 2.9.11.1W. Michael Petullo2018-03-02
| | | | | | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* | snort: set W. Michael Petullo as maintainerW. Michael Petullo2018-04-16
|/ | | | Signed-off-by: W. Michael Petullo <mike@flyn.org>
* treewide: run "make check FIXUP=1"Etienne Champetier2017-08-29
| | | | | | | | | | fix Makefile chmod (644) replace MD5SUM with HASH add PKG_MIRROR_HASH when PKG_SOURCE_PROTO:=git (PKG_SOURCE_PROTO:=svn tarballs are not reproducible for now) Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* snort: increase PKG_RELEASEAlexander Ryzhov2016-02-16
| | | | Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
* snort: remove useless mysql/pgsql optionsAlexander Ryzhov2016-02-16
| | | | Signed-off-by: Alexander Ryzhov <openwrt@ryzhov-al.ru>
* snort: add maintainer and SPDX license infoLuka Perkov2015-06-25
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* snort: fix build with CONFIG_PKG_CHECK_FORMAT_SECURITYJo-Philipp Wich2015-06-25
| | | | | | | | | | The configure script incorrectly mangles `CFLAGS` by attempting to remove `-Werror` from it, thus turning `-Werror=format-security` into just `=format-security` which will cause subsequent autoconf tests to fail. Patch out the custom `CFLAGS` mangling to fix the build. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* snort: add SF mirrorLuka Perkov2015-05-20
| | | | Signed-off-by: Luka Perkov <luka@openwrt.org>
* [net/snort] Replaced build variants with compile options.Vladimir Ulrich2015-04-28
| | | | | Also added optional lzma support. Signed-off-by: Vladimir Ulrich <admin@evl.su>
* snort: bump to 2.9.7.2Mario Halambek2015-03-18
| | | | Signed-off-by: Mario Halambek <mario.halambek@sartura.hr>
* snort: initial import from old-packagesLuka Perkov2015-01-25
Signed-off-by: Luka Perkov <luka@openwrt.org>