commit:     38525bb48bf74ba3383ceda68b5af30d8ea5217d
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 14 20:43:27 2025 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Dec 14 20:43:27 2025 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38525bb4

app-crypt/ccid: drop 1.5.5

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-crypt/ccid/Manifest                            |  1 -
 app-crypt/ccid/ccid-1.5.5.ebuild                   | 55 -----------------
 ...id-1.5.5-remove-flex-configure-dependency.patch | 68 ----------------------
 3 files changed, 124 deletions(-)

diff --git a/app-crypt/ccid/Manifest b/app-crypt/ccid/Manifest
index 917d756bdc69..384276ff0fae 100644
--- a/app-crypt/ccid/Manifest
+++ b/app-crypt/ccid/Manifest
@@ -1,2 +1 @@
-DIST ccid-1.5.5.tar.bz2 708374 BLAKE2B 
a82986ead2dbb3241ef419ad16eb0fac835c5ab4fa988e5ee53cd1608a30a9381210a6fd013b6a059ca2835d55b4a41afa4064575e91b8eb356bff6d01d19add
 SHA512 
9d2aebe645a5880bfad7d420ddab96811d1fd989c79afa28f5471ae53f36b6d45ee5e13b32ac4afcf59fc762ae835db7e6312ad6642b263158c2d9a30c7651bd
 DIST ccid-1.6.1.tar.xz 195844 BLAKE2B 
7ab243196761b22edbaffca14b7ef840d53cc4eecc7d6252fb3255e85fc11eb0e1de65775a250da3d4687015ad6e2901d77b1227dc5921f69b42891541ad4e62
 SHA512 
3c8336a71e48880f3239b322acb0c40231ae83f80011cef39fef95eade6fd76849343faafdb4fcf9e962afda2c3a415e4a537d3f423b152ef2d3dddb4ecf2eac

diff --git a/app-crypt/ccid/ccid-1.5.5.ebuild b/app-crypt/ccid/ccid-1.5.5.ebuild
deleted file mode 100644
index fccaa6c3c161..000000000000
--- a/app-crypt/ccid/ccid-1.5.5.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools udev
-
-DESCRIPTION="CCID free software driver"
-HOMEPAGE="https://ccid.apdu.fr https://github.com/LudovicRousseau/CCID";
-SRC_URI="https://ccid.apdu.fr/files/${P}.tar.bz2";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-IUSE="twinserial +usb"
-
-RDEPEND="
-       >=sys-apps/pcsc-lite-1.8.3
-       twinserial? ( dev-lang/perl )
-       usb? ( virtual/libusb:1 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-       "${FILESDIR}"/${P}-remove-flex-configure-dependency.patch
-)
-
-src_prepare() {
-       default
-
-       eautoreconf
-}
-
-src_configure() {
-       econf \
-               LEX=: \
-               $(use_enable twinserial) \
-               $(use_enable usb libusb)
-}
-
-src_install() {
-       default
-       udev_newrules src/92_pcscd_ccid.rules 92-pcsc-ccid.rules
-}
-
-pkg_postinst() {
-       udev_reload
-       einfo "Check 
https://github.com/LudovicRousseau/CCID/blob/master/INSTALL.md";
-       einfo "for more info about how to configure and use ccid"
-}
-
-pkg_postrm() {
-       udev_reload
-}

diff --git 
a/app-crypt/ccid/files/ccid-1.5.5-remove-flex-configure-dependency.patch 
b/app-crypt/ccid/files/ccid-1.5.5-remove-flex-configure-dependency.patch
deleted file mode 100644
index 1ffb74fc61aa..000000000000
--- a/app-crypt/ccid/files/ccid-1.5.5-remove-flex-configure-dependency.patch
+++ /dev/null
@@ -1,68 +0,0 @@
-From 7e2207a07979b6c1b206024e83e22ca2bbd4e17c Mon Sep 17 00:00:00 2001
-From: Eli Schwartz <[email protected]>
-Date: Mon, 10 Jun 2024 22:02:37 -0400
-Subject: [PATCH] make building work again when flex is not installed
-
-This explicitly reverts commit eec7cdf03dda2bd26e320ead73b91da5a9d86443
-because it was a bad idea.
-
-The motivating bug report was 
https://github.com/LudovicRousseau/PCSC/issues/124
-and the issue there occurred when building from a git clone, running
-./bootstrap && ./configure && make, and having:
-
-- configure succeed
-- make "succeeeds" at having $LEX run, do nothing and fail to generate
-  required sources
-- compiling nonexistent files fail with highly confusing errors
-
-The autoconf manual has always documented the correct way to handle this
-is to check if lex is unavailable, and set it to the famous automake
-wrapper "missing", which checks if a program is missing at build time
-rather than at ./configure time, and fails the build if the rule cannot
-be run. This means:
-
-When building from a git clone, if flex is not available then
-- configure succeeds
-- make fails to run $LEX, and tells you to install flex
-
-The previous attempt to fix the highly confusing error instead resulted
-in configure erroring out, and saying flex is required, even when it is
-*not* required because a `make dist` tarball was used, which contains
-pregenerated tokenparser.c for the express purpose of making flex
-unnecessary.
-
-See autoconf documentation on $LEX:
-https://www.gnu.org/software/autoconf/manual/autoconf-2.72/html_node/Particular-Programs.html#index-AC_005fPROG_005fLEX-1
-
-And automake documentation on why to use "missing":
-https://www.gnu.org/software/automake/manual/html_node/maintainer_002dmode.html
-
-Signed-off-by: Eli Schwartz <[email protected]>
----
- configure.ac | 6 ++++--
- 1 file changed, 4 insertions(+), 2 deletions(-)
-
-diff --git a/configure.ac b/configure.ac
-index eb2370f..c012f2a 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -33,7 +33,10 @@ AC_PROG_INSTALL
- AC_PROG_MAKE_SET
- AC_PROG_LN_S
- AC_PROG_LEX([noyywrap])
--AS_IF([test $LEX = ":"], [AC_MSG_ERROR([no lex or flex found])])
-+AS_IF([test $LEX = ":"], [
-+       AM_MISSING_PROG(MISSINGLEX, [flex])
-+       LEX=$MISSINGLEX]
-+)
- AM_PROG_AR
- PKG_PROG_PKG_CONFIG
- 
-@@ -331,4 +334,3 @@ AC_CONFIG_FILES(Makefile
-       examples/Makefile)
- 
- AC_OUTPUT
--
--- 
-2.44.2
-

Reply via email to