Gentoo Archives: gentoo-commits

From: Alon Bar-Lev <alonbl@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/ccid/
Date: Tue, 02 Apr 2019 10:32:19
Message-Id: 1554201094.84c6fbdc1c550c1475ce803c334e7426430e3a9d.alonbl@gentoo
1 commit: 84c6fbdc1c550c1475ce803c334e7426430e3a9d
2 Author: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 2 10:23:40 2019 +0000
4 Commit: Alon Bar-Lev <alonbl <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 2 10:31:34 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84c6fbdc
7
8 app-crypt/ccid: cleanup old
9
10 Signed-off-by: Alon Bar-Lev <alonbl <AT> gentoo.org>
11 Package-Manager: Portage-2.3.62, Repoman-2.3.11
12
13 app-crypt/ccid/Manifest | 1 -
14 app-crypt/ccid/ccid-1.4.29.ebuild | 61 ---------------------------------------
15 2 files changed, 62 deletions(-)
16
17 diff --git a/app-crypt/ccid/Manifest b/app-crypt/ccid/Manifest
18 index a65d1b5a476..e8ad3dcb372 100644
19 --- a/app-crypt/ccid/Manifest
20 +++ b/app-crypt/ccid/Manifest
21 @@ -1,2 +1 @@
22 -DIST ccid-1.4.29.tar.bz2 635761 BLAKE2B ff14bc6e181a6d44b8ef463a2255d0362842f6e1e7c79e0a01caaba0a88892f7b0f2bd9d2dadae7be8b0655d2502e5471cff29e582928d62235fa070f2eb1ba8 SHA512 9ff37acad086e959f660069b245fe06ecada140623025a19dfbff55edec71e1e72bce09ac4fc506ad985dd0831dafc6b12f5a5b109b38bf9ba7583856eb19418
23 DIST ccid-1.4.30.tar.bz2 642342 BLAKE2B fd43aa2a4c8840abb0545760f6ceb31bb9d7dc22d7283888c9a142e0c3b34310ec4530d18986451b21c6b1a3975b1212ab653a4c8d58466b28713f0f72ce1cdb SHA512 1761a4053a99eb28184d0ffece951aec5d4b646080597b4ae36b18a31fb7a76c55fabfa57ee8e5d7f2db1a6e13d209f7fa995fe6ed067f44558bea34a26d46da
24
25 diff --git a/app-crypt/ccid/ccid-1.4.29.ebuild b/app-crypt/ccid/ccid-1.4.29.ebuild
26 deleted file mode 100644
27 index 55071f60063..00000000000
28 --- a/app-crypt/ccid/ccid-1.4.29.ebuild
29 +++ /dev/null
30 @@ -1,61 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -inherit toolchain-funcs udev
37 -
38 -DESCRIPTION="CCID free software driver"
39 -HOMEPAGE="https://ccid.apdu.fr/"
40 -SRC_URI="https://ccid.apdu.fr/files/${P}.tar.bz2"
41 -
42 -LICENSE="GPL-2"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86"
45 -IUSE="twinserial kobil-midentity +usb"
46 -
47 -RDEPEND=">=sys-apps/pcsc-lite-1.8.3
48 - usb? ( virtual/libusb:1 )"
49 -DEPEND="${RDEPEND}"
50 -BDEPEND="kernel_linux? ( virtual/pkgconfig )"
51 -
52 -DOCS=( README AUTHORS )
53 -
54 -src_configure() {
55 - econf \
56 - LEX=: \
57 - $(use_enable twinserial) \
58 - $(use_enable usb libusb)
59 -}
60 -
61 -src_compile() {
62 - default
63 - use kobil-midentity && emake -C contrib/Kobil_mIDentity_switch
64 -}
65 -
66 -src_install() {
67 - default
68 -
69 - if use kobil-midentity; then
70 - dosbin contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch
71 - doman contrib/Kobil_mIDentity_switch/Kobil_mIDentity_switch.8
72 - fi
73 -
74 - if use kernel_linux; then
75 - # note: for eudev support, rules probably will always need to be
76 - # installed to /usr
77 -
78 - # ccid >=1.4.11 version changed the rules drastically in a minor
79 - # release to no longer use the pcscd group. Using the old ones in
80 - # the mean time.
81 - udev_newrules "${FILESDIR}"/92_pcscd_ccid-2.rules 92-pcsc-ccid.rules
82 -
83 - # disable Kobil_mIDentity_switch udev rule with USE=-kobil-midentity
84 - if ! use kobil-midentity; then
85 - sed \
86 - -e '/Kobil_mIDentity_switch/s/^/#/' \
87 - -i "${D}/$(get_udevdir)"/rules.d/92-pcsc-ccid.rules || die
88 - fi
89 -
90 - fi
91 -}