Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

packages/snort3: Update to Snort version 3.6.2.0 #23

Merged
merged 1 commit into from
Jan 26, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ build:

.PHONY: start
start:
docker run --rm -v$(PWD)/mount:/volumes -td $(IMAGE_NAME)
docker run --rm -v$(PWD)/volumes:/volumes -td $(IMAGE_NAME)

.PHONY: stop
stop:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ This repository serves as a reference for building a custom Alpine container ima
### Packaged Software
Several dependencies to build a complete version of Snort 3 are not part officially supported by Alpine Linux or what does exist did not meet my expectations so they've been pulled directly. Additionally, the Snort3, Snort3 Extra and LibDAQ packages were solely produced for **Krakatoa**.

* [Snort3 3.3.2.0](https://github.com/snort3/snort3/releases/tag/3.3.2.0)
* [Snort3 3.6.2.0](https://github.com/snort3/snort3/releases/tag/3.6.2.0)
* [Snort3 Extra 3.3.2.0](https://github.com/snort3/snort3_extra/releases/tag/3.3.2.0)
* [hwloc 2.9.1](https://www-lb.open-mpi.org/software/hwloc/v2.9/)
* [jemalloc 5.3.0](https://github.com/jemalloc/jemalloc/releases/tag/5.3.0/)
* [Vectorscan 5.4.11](https://github.com/VectorCamp/vectorscan/releases/tag/vectorscan/5.4.11)
* [LibDAQ 3.0.16](https://github.com/snort3/libdaq/releases/tag/v3.0.16)
* [LibDAQ 3.0.18](https://github.com/snort3/libdaq/releases/tag/v3.0.18)
* [AbcIP 2.4.1](https://github.com/crc181/abcip)[^1]
* [Lightspd Manifest 0.1.0](https://github.com/wtfbbqhax/lightspd-manifest)

Expand Down
4 changes: 2 additions & 2 deletions packages/libdaq/APKBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# TODO Make sure module debug symbols do not get packaged into the libdaq-dbg
pkgname=libdaq
pkgver=3.0.16
pkgver=3.0.18
pkgrel=0
pkgdesc="Snort3 DAQ"
url="www.snort.org"
Expand Down Expand Up @@ -191,7 +191,7 @@ gwlb_module_static() {
}

sha512sums="
41d215ec795524e0ab505eba5e90e92d6efb8d17368e63b5a9de619c5d312316205cf8785c9cf6e384536c92e59f21b93d7a5fe86f04a5708a2d06c09088a4ba libdaq-3.0.16.tar.gz
0d2d2510b1e4ad4ced41e272c67d1d248a614122dc4d91617067c14b4c2ec21d1cdca947acf9c2c1dfcfd4a2b029fbdfd257b61029b4fe8458e2fc39c6bbe830 libdaq-3.0.18.tar.gz
"

# FIXME Breakout dbg symbols for each daq module into separate packages.
Expand Down
8 changes: 4 additions & 4 deletions packages/snort3/APKBUILD
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Contributor: Victor Roemer <[email protected]>
# Maintainer: Victor Roemer <[email protected]>
pkgname=snort3
pkgver=3.3.2.0
pkgver=3.6.2.0
pkgrel=0
pkgdesc="Snort3 Intrusion Prevention System"
url="www.snort.org"
Expand All @@ -15,7 +15,7 @@ checkdepends="cppcheck cpputest"
depends="libdnet
xz-libs
libuuid
pcre
pcre2
libtirpc
libressl
libdaq
Expand All @@ -33,7 +33,7 @@ makedepends="cmake
libressl-dev
libtirpc-dev
libuuid
pcre-dev
pcre2-dev
xz-dev
zlib-dev
libdaq
Expand Down Expand Up @@ -89,5 +89,5 @@ utils() {
}

sha512sums="
26166f74aa537f4108b9fc53996a89e31b6d44ee03831526e0e3cd77b180bacb7f6ee2451b96ee4eace90026529f05f7b6b6e189e4e25499e849443a13b745ee snort3-3.3.2.0.tar.gz
fceea17239e923ca20817bddb2e87504f84bbb816f8d3585c7ae3eb46d98cc157a651f41a94f4c676d37032495215269a1d9d476ec1fe06f5bef57c45aff7b1d snort3-3.6.2.0.tar.gz
"
Loading