Commit Graph

22 Commits

Author SHA1 Message Date
Rosen Penev 55440f2ac7 yara: update to 4.5.0
Move away from codeload for smaller and better tarballs.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2024-04-19 14:20:13 -07:00
Paul Fertser 0c10c224be treewide: remove AUTORELEASE
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>
2023-04-21 22:46:58 +02:00
Marko Ratkaj 292799ede7 yara: bump to 4.2.0
Signed-off-by: Marko Ratkaj <markoratkaj@gmail.com>
2022-03-30 19:38:06 -07:00
Rosen Penev 1653703835 yara: update to 4.1.3
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-12-16 17:19:25 -08:00
Rosen Penev 3d8514b198 yara: update to 4.1.1
Remove upstreamed patch.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-07-20 19:49:52 -07:00
Rosen Penev 3c2a474d69 yara: update to 4.0.5
Switch to AUTORELEASE for simplicity.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2021-02-28 17:08:45 -08:00
Ilya Lipnitskiy 5d8d4fbbcb
treewide: Run refresh on all packages
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>
2021-02-20 16:02:15 -08:00
Rosen Penev deaa584069
yara: fix compilation without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-08-04 19:09:14 -07:00
Rosen Penev fd3fad02b4 yara: update to 4.0.2
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-07-28 01:14:00 -07:00
Rosen Penev 965f8e38dc
yara: update to 4.0.1
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-06-06 21:02:34 -07:00
Rosen Penev 6d110d1f01
yara: update to 4.0.0
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2020-05-03 14:39:50 -07:00
Rosen Penev 70be5dbfc6 yara: Update to 3.11.0
Fixed license information.

Several Makefile rearrangements for consistency between packages.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2019-10-31 18:37:12 -07:00
Jan Pavlinec 9512d71be9
yara: update to version 3.10.0
Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-05-14 09:49:15 +02:00
Jan Pavlinec df00abe9c5
yara: update to version 3.9.0
Changes:
Remove merged patch for OpenSSL THREADID
Add PKG_CPE_ID

Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
2019-04-09 14:23:07 +02:00
Rosen Penev ba4df0f1c6 yara: Fix compile without deprecated OpenSSL APIs
Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-11-25 17:46:32 -08:00
Rosen Penev ec71565acf
yara: Update to 3.8.1
Switched URL to codeload. The previous redirects to this one.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
2018-08-20 20:07:01 -07:00
Ashkan Jazayeri 6994c18009 yara: bump to 3.7.1
Package upgraded to the latest 3.7.1 release.

Signed-off-by: Ashkan Jazayeri <ashkan@jazayeri.net>
2018-06-05 22:32:58 +04:30
Ashkan Jazayeri 8d20a24cf5 yara: add dotnet module
Dotnet module added as a compile time option.
The dotnet module allows you to create more fine-grained rules
for .NET files by using attributes and features of the .NET file format.
http://yara.readthedocs.io/en/latest/modules/dotnet.html

Signed-off-by: Ashkan Jazayeri <ashkan@jazayeri.net>
2018-06-05 22:31:14 +04:30
Ashkan Jazayeri 5ca68c0cd3 yara: magic module dependancy fix
Libmagic dependency replaced with File so Yara magic module can
make use of magic patterns.
magic.mgc is installed on the target only when the File package
is selected.

Signed-off-by: Ashkan Jazayeri <ashkan@jazayeri.net>
2018-06-05 22:29:00 +04:30
Ashkan Jazayeri cdf1796f88 yara: add missing config string
Missing CONFIG string added at the beginning of Magic and Cuckoo
configure variables.

Signed-off-by: Ashkan Jazayeri <ashkan@jazayeri.net>
2018-06-05 22:26:42 +04:30
Marko Ratkaj 44d68c9efc yara: bump to 3.7.0
Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2017-11-29 11:20:06 +01:00
Marko Ratkaj 81edf42d94 yara: add package
YARA is a tool aimed at (but not limited to) helping malware researchers
to identify and classify malware samples. With YARA you can create
descriptions of malware families based on textual or binary patterns.

Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
2017-09-21 11:29:33 +02:00