From 0c97119fc8982c1a6f367de25542834e4dd6cda4 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Tue, 12 Mar 2024 12:46:41 +0000 Subject: gentoo auto-resync : 12:03:2024 - 12:46:41 --- app-emulation/Manifest.gz | Bin 15315 -> 15315 bytes app-emulation/libcacard/Manifest | 3 -- .../files/libcacard-2.6.0-simpletlv-test-fix.patch | 31 --------------- app-emulation/libcacard/libcacard-2.6.0.ebuild | 44 --------------------- 4 files changed, 78 deletions(-) delete mode 100644 app-emulation/libcacard/files/libcacard-2.6.0-simpletlv-test-fix.patch delete mode 100644 app-emulation/libcacard/libcacard-2.6.0.ebuild (limited to 'app-emulation') diff --git a/app-emulation/Manifest.gz b/app-emulation/Manifest.gz index 0c22299a1f9f..7b7772c710da 100644 Binary files a/app-emulation/Manifest.gz and b/app-emulation/Manifest.gz differ diff --git a/app-emulation/libcacard/Manifest b/app-emulation/libcacard/Manifest index abd48a2ffaac..7c5ebda4cfd1 100644 --- a/app-emulation/libcacard/Manifest +++ b/app-emulation/libcacard/Manifest @@ -1,6 +1,3 @@ -AUX libcacard-2.6.0-simpletlv-test-fix.patch 1195 BLAKE2B 77b22b09e9c1ea080adc7763bb0d0c5d91a6f3b74c39e7446aba65adaeb94c47884a195f9a88021f4ebbb7f9a3c8f3ea23c31e2f9c40878465fa6df6a3fbfacf SHA512 9251b661884cccd627a874cc9cad9385f19208680cbce4a99e50fd8b1a94740fded075ec3c4fecef923dd50785cffeeae377cf88e6e9f6d3601e9cf5c0794adc -DIST libcacard-2.6.0.tar.xz 364828 BLAKE2B 3a07243abb91dab05d89bf073fabb4a0ef7e820765066a8d87e72086b88cc726de77d1fdc5118e05ed47077d76ae0a57ff591a2e4e8623c3484c6cbf00cd025e SHA512 d6dfe6fe6cd2711bf8f71edc134a7caf459fc2a9c4f664ab2f1c28cc9ee8efe7a2d5a15c4dc735956638176e07e22416cad5e8e926aa7cab3fa95ded853f5982 DIST libcacard-2.8.1.tar.xz 396472 BLAKE2B 49b1c0c9184f0a926df85de6146dd31a7127ee5e40a172e3d9e47f33ef4cdef57ee85f34c9c53719b4a8c5a1de695b8936cfcfce141cd558e6d53d215421621b SHA512 6deddd3319dbd74165eeaa2e8ab10de4a6eb111e980edd608801f7fe3c4fa896c9fb239110d17763864887f5eb0b77c03c680d83fd58a3913b48deb5a225ec74 -EBUILD libcacard-2.6.0.ebuild 1011 BLAKE2B 400298cca1e48c5b344325588ad3968635e2026c29c33f0c81108c36bacc7bc7a55116f585e0201751d0e0c095ef39db4bff062ea061cab57a2f20ba14003dbf SHA512 40210af1458b5ec6488598c50f58c2b277e8779191001855fcd4517d6bbda7d171ebe7e71d66ec3f2a9cdcd819f601583c1a3f99dc71ddddc5ecaf9ba78bca24 EBUILD libcacard-2.8.1.ebuild 911 BLAKE2B 9727bc2964656f2e9d60cf5e429d6f0cb7cf0b1ab5da97fbc8f24a8ced1c5b9844ba23a13c6bf18e67e80e713e0dbc71baa5fcf56c559d9730a512eb187116b4 SHA512 8a8cfc3e0911a259bf31835885cbf0113de5d8f2808331fb3d212ec1ae87cc1d777917e19d4dcdd399fbce6e8f6020a53871a2a48f8bb189a910267b996a2403 MISC metadata.xml 498 BLAKE2B 1995d0660f03cd535a3ae79334c0dddf30d6c9d4f10387fe291ca308b169a5c887bab41e3d27864df6668120e1137a941d1aba74833c85604561f16b84df486a SHA512 8b2f3c4a7012c9d282c7a202e79f00bc5092323a2794e28a8d2618d49f0de2fad9df170f2e42a4985a07393c26a5cd67f4648439f47640fa8f959301a392e610 diff --git a/app-emulation/libcacard/files/libcacard-2.6.0-simpletlv-test-fix.patch b/app-emulation/libcacard/files/libcacard-2.6.0-simpletlv-test-fix.patch deleted file mode 100644 index 40e2a9d21e26..000000000000 --- a/app-emulation/libcacard/files/libcacard-2.6.0-simpletlv-test-fix.patch +++ /dev/null @@ -1,31 +0,0 @@ -diff --git a/tests/simpletlv.c b/tests/simpletlv.c -index cd0cd69c4dfb504a52e3f7314e4a01657377eb68..9ddc5b999f73d56f35f85810479760b301330282 100644 ---- a/tests/simpletlv.c -+++ b/tests/simpletlv.c -@@ -48,7 +48,7 @@ static void test_length_simple(void) - - static void test_length_nested(void) - { -- size_t length = 0; -+ int length = 0; - unsigned char simple_value[] = "\x12\x14"; - static struct simpletlv_member simple[1] = { - {0x25, 2, {/*.value = simple_value*/}, SIMPLETLV_TYPE_LEAF} -@@ -102,7 +102,7 @@ static void test_length_skipped(void) - static void test_encode_simple(void) - { - unsigned char *result = NULL; -- size_t result_len = 0; -+ int result_len = 0; - unsigned char simple_value[] = "\x10\x11"; - unsigned char simple_encoded[] = "\x25\x02\x10\x11"; - unsigned char long_value[256] = "Long data value"; -@@ -168,7 +168,7 @@ static void test_encode_simple(void) - static void test_encode_nested(void) - { - unsigned char *result = NULL; -- size_t result_len = 0; -+ int result_len = 0; - unsigned char simple_value[] = "\x12\x14"; - unsigned char encoded[] = "\x72\x04\x25\x02\x12\x14"; - static struct simpletlv_member simple[1] = { diff --git a/app-emulation/libcacard/libcacard-2.6.0.ebuild b/app-emulation/libcacard/libcacard-2.6.0.ebuild deleted file mode 100644 index 367fb9c4f606..000000000000 --- a/app-emulation/libcacard/libcacard-2.6.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="virtual Common Access Card (CAC) library emulator" -HOMEPAGE="https://www.spice-space.org/" -SRC_URI="https://www.spice-space.org/download/libcacard/${P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86" -IUSE="+passthrough static-libs" - -RDEPEND=">=dev-libs/nss-3.13 - >=dev-libs/glib-2.22 - passthrough? ( >=sys-apps/pcsc-lite-1.8 )" -DEPEND="${RDEPEND}" -BDEPEND="virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}/${P}-simpletlv-test-fix.patch" -) - -src_prepare() { - default - - # remove test requiring SoftHSMv2 which is not in the tree atm - sed -i \ - -e 's|tests/hwtests$(EXEEXT) \($(am__EXEEXT_1)\)|\1|' \ - Makefile.in || die -} - -src_configure() { - econf \ - $(use_enable passthrough pcsc) \ - $(use_enable static-libs static) -} - -src_install() { - default - dodoc docs/*.txt - use static-libs || find "${ED}"/usr/ -name 'lib*.la' -delete -} -- cgit v1.2.3