<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/libs/libseccomp, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2024-10-31T12:57:58Z</updated>
<entry>
<title>libseccomp: update to 2.5.5</title>
<updated>2024-10-31T12:57:58Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2024-10-08T01:13:17Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=1fcaf0ac1f00ad987179fa7d456c09b720b36e3f'/>
<id>urn:sha1:1fcaf0ac1f00ad987179fa7d456c09b720b36e3f</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: remove AUTORELEASE</title>
<updated>2023-04-21T20:46:58Z</updated>
<author>
<name>Paul Fertser</name>
</author>
<published>2023-04-21T16:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0c10c224be81f9221dabfab449855ab6718d2a0c'/>
<id>urn:sha1:0c10c224be81f9221dabfab449855ab6718d2a0c</id>
<content type='text'>
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 &lt;fercerpav@gmail.com&gt;
</content>
</entry>
<entry>
<title>treewide: refactor to use PKG_BUILD_FLAGS:=no-mips16</title>
<updated>2023-04-08T06:38:54Z</updated>
<author>
<name>Andre Heider</name>
</author>
<published>2023-03-23T07:39:01Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=565866a47210c9711c29173052063779b6d3bcfc'/>
<id>urn:sha1:565866a47210c9711c29173052063779b6d3bcfc</id>
<content type='text'>
See commit 5c545bdb "treewide: replace PKG_USE_MIPS16:=0 with
PKG_BUILD_FLAGS:=no-mips16" on the main repository.

Signed-off-by: Andre Heider &lt;a.heider@gmail.com&gt;
</content>
</entry>
<entry>
<title>libseccomp: update to 2.5.4</title>
<updated>2022-11-05T08:29:22Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2022-11-05T04:29:25Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=15bfba27e253caba5c5f56846084d1d2eb210424'/>
<id>urn:sha1:15bfba27e253caba5c5f56846084d1d2eb210424</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>libseccomp: update to 2.5.2</title>
<updated>2021-09-27T05:35:50Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2021-09-19T09:12:02Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=17d2f61c7b2ba6f748b072f2f1a8ac2933bde466'/>
<id>urn:sha1:17d2f61c7b2ba6f748b072f2f1a8ac2933bde466</id>
<content type='text'>
Use AUTORELEASE for simplicity.

Add libtool patch to fix compilation under some platforms.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>Revert "libseccomp: don't build on ARC"</title>
<updated>2021-04-12T00:21:48Z</updated>
<author>
<name>Eneas U de Queiroz</name>
</author>
<published>2021-04-11T22:38:50Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=013b1895ed78c9eeef020bdb53bf2784b8a7374d'/>
<id>urn:sha1:013b1895ed78c9eeef020bdb53bf2784b8a7374d</id>
<content type='text'>
This reverts commit b29e609701987072fbd991a9ffc203103f99b943.

Adding DEPENDS+=@!arc will cause a circular dependency, because some
packages select libseccomp based on a build option.

Commit e29483d7e ("libseccomp: workaround a recursive dependency") added
a workaround that was not properly documented, so I'll explain here.

The problem arises when libseccomp is selected depending on some config
option:

define Pakcage/foo
  DEPENDS=+FOO_SECCOMP:libseccomp

Even if the condition is correctly defined, excluding arc, such as:

define Package/foo/config
  config FOO_SECCOMP
    depends on !arc

the config generator will parse libseccomp's DEPENDS variable and
generate menuconfig statements like these:

config PACKAGE_foo
   select PACKAGE_libseccomp if FOO_SECCOMP
   depends on !FOO_SECCOMP || !arc

The last condition is always true because FOO_SECCOMP will always be
be false when arc is true.  The config generator is not able to
simplify/optimize the condition.

The circular dependecy occurs because FOO_SECCOMP depends on
PACKAGE_foo, and the redundant, always true line will make PACKAGE_foo
depend on FOO_SECCOMP.

As a workaround, we can add the 'depends on !arc' line to
Package/libseccomp/config, outside of the DEPENDS variable, so that the
redundant depends line line does not get generated.

Signed-off-by: Eneas U de Queiroz &lt;cotequeiroz@gmail.com&gt;
Cc: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>libseccomp: don't build on ARC</title>
<updated>2021-03-29T23:21:29Z</updated>
<author>
<name>Daniel Golle</name>
</author>
<published>2021-03-29T21:05:10Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b29e609701987072fbd991a9ffc203103f99b943'/>
<id>urn:sha1:b29e609701987072fbd991a9ffc203103f99b943</id>
<content type='text'>
ARC architecture is not yet supported by libseccomp.

Signed-off-by: Daniel Golle &lt;daniel@makrotopia.org&gt;
</content>
</entry>
<entry>
<title>libseccomp: update to 2.5.1</title>
<updated>2020-11-24T03:36:20Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-11-24T00:48:05Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=b57c36ad277eb1ef40021c12f0e7ced8b10b0e1a'/>
<id>urn:sha1:b57c36ad277eb1ef40021c12f0e7ced8b10b0e1a</id>
<content type='text'>
Add license information.

Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>libseccomp: update to 2.4.3</title>
<updated>2020-07-15T18:59:01Z</updated>
<author>
<name>Rosen Penev</name>
</author>
<published>2020-07-15T03:48:48Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=e8b78a2641fddc2f84f8ba57c5fb971ab6ae6fdd'/>
<id>urn:sha1:e8b78a2641fddc2f84f8ba57c5fb971ab6ae6fdd</id>
<content type='text'>
Signed-off-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
<entry>
<title>libseccomp: install missing header file</title>
<updated>2020-01-16T22:55:42Z</updated>
<author>
<name>Stijn Tintel</name>
</author>
<published>2020-01-16T22:33:31Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=c01462dcba15ad4343c6e709f5244bc25f3a01ba'/>
<id>urn:sha1:c01462dcba15ad4343c6e709f5244bc25f3a01ba</id>
<content type='text'>
As of version 2.4.2, libseccomp ships a new header file
seccomp-syscalls.h. Install it in InstallDev.

Fixes: 71b663b335da ("libseccomp: update to version 2.4.2")
Signed-off-by: Stijn Tintel &lt;stijn@linux-ipv6.be&gt;
Acked-by: Rosen Penev &lt;rosenp@gmail.com&gt;
</content>
</entry>
</feed>
