diff options
author | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2023-01-11 05:15:28 -0500 |
---|---|---|
committer | Alex Xu (Hello71) <alex_y_xu@yahoo.ca> | 2023-01-11 05:15:28 -0500 |
commit | bf5898b98b1863a740d6ca56efa5bcd3e72f79ef (patch) | |
tree | bbcf757fa3db3c465ebbcfdee3ec618b6051e539 | |
parent | cc033b055b5cc8c658de195bd9a41ed3fe1fdfe9 (diff) | |
download | gentoo-overlay-bf5898b98b1863a740d6ca56efa5bcd3e72f79ef.tar.xz gentoo-overlay-bf5898b98b1863a740d6ca56efa5bcd3e72f79ef.zip |
app-text/zathura: sync
-rw-r--r-- | app-text/zathura/Manifest | 2 | ||||
-rw-r--r-- | app-text/zathura/files/zathura-disable-seccomp-tests.patch | 22 | ||||
-rw-r--r-- | app-text/zathura/zathura-0.5.2-r3.ebuild (renamed from app-text/zathura/zathura-0.4.9-r1.ebuild) | 12 |
3 files changed, 29 insertions, 7 deletions
diff --git a/app-text/zathura/Manifest b/app-text/zathura/Manifest index fe867e8..10f9a96 100644 --- a/app-text/zathura/Manifest +++ b/app-text/zathura/Manifest @@ -1 +1 @@ -DIST zathura-0.4.9.tar.gz 206194 BLAKE2B 0dd4b153cf7f8e3ddd4ede5514389b2c5e4aa88e2c416646acc38f7e19419e11165c2a5b51548a05d69a1b947e661b885f7c9d8c100179d0d23d8754cb441d97 SHA512 fbab65cba7ac37e4021233a4ae0356a85f4a88d2c1a2d8337cd627eae389856b6b4e692904233332d2fa14ad0300e8c52732059a75314a0ef147a02ca9f8db10 +DIST zathura-0.5.2.tar.gz 208606 BLAKE2B fc7e8042a373a3fd66973fd5d6c7c3e7d6da884fb40269545e4074b42fdbc9b6f286089769a435394812e24a8b24de328521a2fd797bbb13c16115b112dd9a48 SHA512 17f2a6535b2b3c6f61986cd8a6ccdef2c1a129d8ebf8c86cbe3c8eac868c2780801f3fe2fdc17c429ca0c63a71a328bbb6c7f814f82714dd7f1a5a4728663b1f diff --git a/app-text/zathura/files/zathura-disable-seccomp-tests.patch b/app-text/zathura/files/zathura-disable-seccomp-tests.patch new file mode 100644 index 0000000..f3d88a2 --- /dev/null +++ b/app-text/zathura/files/zathura-disable-seccomp-tests.patch @@ -0,0 +1,22 @@ +diff --git a/tests/meson.build b/tests/meson.build +index ac7edb8..68216f3 100644 +--- a/tests/meson.build ++++ b/tests/meson.build +@@ -25,17 +25,6 @@ if check.found() + timeout: 60*60 + ) + +- if seccomp.found() +- sandbox = executable('test_sandbox', ['test_sandbox.c', 'tests.c'], +- dependencies: build_dependencies + test_dependencies, +- include_directories: include_directories, +- c_args: defines + flags +- ) +- test('sandbox', sandbox, +- timeout: 60*60 +- ) +- endif +- + utils = executable('test_utils', ['test_utils.c', 'tests.c'], + dependencies: build_dependencies + test_dependencies, + include_directories: include_directories, diff --git a/app-text/zathura/zathura-0.4.9-r1.ebuild b/app-text/zathura/zathura-0.5.2-r3.ebuild index fdb219d..da82595 100644 --- a/app-text/zathura/zathura-0.4.9-r1.ebuild +++ b/app-text/zathura/zathura-0.5.2-r3.ebuild @@ -18,8 +18,8 @@ else fi LICENSE="ZLIB" -SLOT="0" -IUSE="doc +magic seccomp sqlite synctex test" +SLOT="0/$(ver_cut 1-2)" +IUSE="seccomp sqlite synctex test" RESTRICT="!test? ( test )" @@ -28,27 +28,27 @@ DEPEND=">=dev-libs/girara-0.3.7 >=sys-devel/gettext-0.19.8 x11-libs/cairo >=x11-libs/gtk+-3.22:3 - magic? ( sys-apps/file ) + sys-apps/file seccomp? ( sys-libs/libseccomp ) sqlite? ( >=dev-db/sqlite-3.5.9:3 ) synctex? ( app-text/texlive-core )" RDEPEND="${DEPEND}" -BDEPEND="doc? ( dev-python/docutils ) +BDEPEND="dev-python/docutils test? ( dev-libs/appstream-glib dev-libs/check ) virtual/pkgconfig" PATCHES=( + "${FILESDIR}"/zathura-disable-seccomp-tests.patch "${FILESDIR}/zathura-docutils.patch" ) src_configure() { local emesonargs=( -Dconvert-icon=disabled - -Dmagic=$(usex magic enabled disabled) - -Dmanpages=$(usex doc enabled disabled) + -Dmanpages=enabled -Dseccomp=$(usex seccomp enabled disabled) -Dsqlite=$(usex sqlite enabled disabled) -Dsynctex=$(usex synctex enabled disabled) |