From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcsc-tools/
Date: Fri, 14 Mar 2025 06:39:58 +0000 (UTC) [thread overview]
Message-ID: <1741934240.e3b8bf367412c5f3caad6fd6623b646d03aa3547.sam@gentoo> (raw)
commit: e3b8bf367412c5f3caad6fd6623b646d03aa3547
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 14 06:37:20 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 14 06:37:20 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b8bf36
sys-apps/pcsc-tools: drop 1.6.2, 1.7.0, 1.7.1
Signed-off-by: Sam James <sam <AT> gentoo.org>
sys-apps/pcsc-tools/Manifest | 3 --
sys-apps/pcsc-tools/pcsc-tools-1.6.2.ebuild | 64 ---------------------------
sys-apps/pcsc-tools/pcsc-tools-1.7.0.ebuild | 67 -----------------------------
sys-apps/pcsc-tools/pcsc-tools-1.7.1.ebuild | 67 -----------------------------
4 files changed, 201 deletions(-)
diff --git a/sys-apps/pcsc-tools/Manifest b/sys-apps/pcsc-tools/Manifest
index 478c8502441e..e90ddbb6e159 100644
--- a/sys-apps/pcsc-tools/Manifest
+++ b/sys-apps/pcsc-tools/Manifest
@@ -1,4 +1 @@
-DIST pcsc-tools-1.6.2.tar.bz2 320182 BLAKE2B 88a76f4120a183df909ce9d189e38e51897080839ebe7ca85aa4447a441363e6917ddb1c5e6c0e881c8792078700676ad1cfe24609957a4fef54374d5be824a4 SHA512 20104baefa7928a86d21cee49d045cc35b8e74fec5be79ba5608ae046a110096efae96768d281e0f1350f71a889f89c675336d8264c75f8423369a49c03b42a8
-DIST pcsc-tools-1.7.0.tar.bz2 360064 BLAKE2B e9f22e13600e40c488720844c6e93d90e8a5dd0e085b3b5245096dbc390e5978c9ff17c9cf5c34cf82f8d0cfbaf9b3d44a25b331439c5e09bf7b075d769f7a36 SHA512 8de48526306b23e9dea6d99d29ec5f1230e3959bfe82a4d1b7d65f9767369757a1f440ceca7debeba68a8492607c91d0dcf7bec366cd213f00be45a5ef018d67
-DIST pcsc-tools-1.7.1.tar.bz2 360506 BLAKE2B 64be45b49ef3fdbb42c8311990d024c3da1b8cbfe733f15617697ad23bc2cce292640dceca271fc8515c3f6f070ff801d1cc528f5203c5f74cdb5dd47c57a687 SHA512 fe60610122d05f97edf3462c9382b82c31ee75f1851db2d88088ebd378ea3f54b3112b1c1f59dd8315806f33b822e40f96d7bc186b8c5999ef339711f91136c0
DIST pcsc-tools-1.7.2.tar.bz2 387207 BLAKE2B 0337de4e1558100777e486f1ddbfd5da37f4cb1c15811e7119ca83349843b37931df7b1aea03826b12c8b041f1b51d0102ab31265a63ea145d5e5a46850d0ff7 SHA512 24fcdbc51de370194f31ef7a74bdc03bc37f8531db44af316c52e4ed1fa76b7ec995bbdaf08063bfe6e8b2f129f2f2fd0fe6c738d867ac10b746d4550ab2cf90
diff --git a/sys-apps/pcsc-tools/pcsc-tools-1.6.2.ebuild b/sys-apps/pcsc-tools/pcsc-tools-1.6.2.ebuild
deleted file mode 100644
index 658a1bb624d4..000000000000
--- a/sys-apps/pcsc-tools/pcsc-tools-1.6.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop toolchain-funcs xdg-utils
-
-DESCRIPTION="PC/SC Architecture smartcard tools"
-HOMEPAGE="https://pcsc-tools.apdu.fr/ https://github.com/LudovicRousseau/pcsc-tools"
-SRC_URI="https://pcsc-tools.apdu.fr/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86"
-IUSE="gui network-cron"
-
-DEPEND=">=sys-apps/pcsc-lite-1.4.14"
-RDEPEND="
- ${DEPEND}
- dev-perl/pcsc-perl
- gui? ( dev-perl/Gtk3 )
-"
-BDEPEND="virtual/pkgconfig"
-
-DOCS=(
- README Changelog
-)
-
-src_compile() {
- # explicitly only build the pcsc_scan application, or the man
- # pages will be gzipped first, and then unpacked.
- emake pcsc_scan CC="$(tc-getCC)"
-}
-
-src_install() {
- einstalldocs
-
- # install manually, makes it much easier since the Makefile
- # requires fiddling with
- dobin ATR_analysis scriptor pcsc_scan
- doman pcsc_scan.1 scriptor.1p ATR_analysis.1p
-
- if use gui; then
- domenu gscriptor.desktop
- dobin gscriptor
- doman gscriptor.1p
- fi
-
- if use network-cron ; then
- exeinto /etc/cron.monthly
- newexe "${FILESDIR}"/smartcard.cron update-smartcard_list
- fi
-
- insinto /usr/share/pcsc
- doins smartcard_list.txt
-}
-
-pkg_postinst() {
- use gui && xdg_desktop_database_update
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
-}
diff --git a/sys-apps/pcsc-tools/pcsc-tools-1.7.0.ebuild b/sys-apps/pcsc-tools/pcsc-tools-1.7.0.ebuild
deleted file mode 100644
index f0208fe47002..000000000000
--- a/sys-apps/pcsc-tools/pcsc-tools-1.7.0.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop toolchain-funcs xdg-utils
-
-DESCRIPTION="PC/SC Architecture smartcard tools"
-HOMEPAGE="https://pcsc-tools.apdu.fr/ https://github.com/LudovicRousseau/pcsc-tools"
-SRC_URI="https://pcsc-tools.apdu.fr/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86"
-IUSE="gui network-cron nls"
-
-DEPEND=">=sys-apps/pcsc-lite-1.4.14"
-RDEPEND="
- ${DEPEND}
- dev-perl/pcsc-perl
- gui? ( dev-perl/Gtk3 )
-"
-BDEPEND="
- virtual/pkgconfig
- nls? ( sys-devel/gettext )
-"
-
-src_configure() {
- econf $(use_enable nls gettext)
-}
-
-src_compile() {
- # explicitly only build the pcsc_scan application, or the man
- # pages will be gzipped first, and then unpacked.
- emake pcsc_scan CC="$(tc-getCC)"
-}
-
-src_install() {
- einstalldocs
-
- # install manually, makes it much easier since the Makefile
- # requires fiddling with
- dobin ATR_analysis scriptor pcsc_scan
- doman pcsc_scan.1 scriptor.1p ATR_analysis.1p
-
- if use gui; then
- domenu gscriptor.desktop
- dobin gscriptor
- doman gscriptor.1p
- fi
-
- if use network-cron ; then
- exeinto /etc/cron.monthly
- newexe "${FILESDIR}"/smartcard.cron update-smartcard_list
- fi
-
- insinto /usr/share/pcsc
- doins smartcard_list.txt
-}
-
-pkg_postinst() {
- use gui && xdg_desktop_database_update
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
-}
diff --git a/sys-apps/pcsc-tools/pcsc-tools-1.7.1.ebuild b/sys-apps/pcsc-tools/pcsc-tools-1.7.1.ebuild
deleted file mode 100644
index f0208fe47002..000000000000
--- a/sys-apps/pcsc-tools/pcsc-tools-1.7.1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop toolchain-funcs xdg-utils
-
-DESCRIPTION="PC/SC Architecture smartcard tools"
-HOMEPAGE="https://pcsc-tools.apdu.fr/ https://github.com/LudovicRousseau/pcsc-tools"
-SRC_URI="https://pcsc-tools.apdu.fr/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86"
-IUSE="gui network-cron nls"
-
-DEPEND=">=sys-apps/pcsc-lite-1.4.14"
-RDEPEND="
- ${DEPEND}
- dev-perl/pcsc-perl
- gui? ( dev-perl/Gtk3 )
-"
-BDEPEND="
- virtual/pkgconfig
- nls? ( sys-devel/gettext )
-"
-
-src_configure() {
- econf $(use_enable nls gettext)
-}
-
-src_compile() {
- # explicitly only build the pcsc_scan application, or the man
- # pages will be gzipped first, and then unpacked.
- emake pcsc_scan CC="$(tc-getCC)"
-}
-
-src_install() {
- einstalldocs
-
- # install manually, makes it much easier since the Makefile
- # requires fiddling with
- dobin ATR_analysis scriptor pcsc_scan
- doman pcsc_scan.1 scriptor.1p ATR_analysis.1p
-
- if use gui; then
- domenu gscriptor.desktop
- dobin gscriptor
- doman gscriptor.1p
- fi
-
- if use network-cron ; then
- exeinto /etc/cron.monthly
- newexe "${FILESDIR}"/smartcard.cron update-smartcard_list
- fi
-
- insinto /usr/share/pcsc
- doins smartcard_list.txt
-}
-
-pkg_postinst() {
- use gui && xdg_desktop_database_update
-}
-
-pkg_postrm() {
- xdg_desktop_database_update
-}
next reply other threads:[~2025-03-14 6:40 UTC|newest]
Thread overview: 66+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-14 6:39 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-13 1:28 [gentoo-commits] repo/gentoo:master commit in: sys-apps/pcsc-tools/ Sam James
2025-03-13 1:28 Sam James
2025-03-13 1:11 Sam James
2025-03-13 0:53 Sam James
2025-02-09 6:23 Sam James
2024-02-02 16:27 Arthur Zamarin
2024-02-02 14:58 Arthur Zamarin
2024-02-02 6:40 Sam James
2024-02-02 3:58 Sam James
2024-01-23 15:08 Sam James
2024-01-18 0:28 Sam James
2024-01-17 8:53 Arthur Zamarin
2024-01-17 5:55 Sam James
2024-01-02 7:01 Sam James
2023-11-30 3:49 Sam James
2023-10-08 18:38 David Seifert
2023-04-23 20:48 Sam James
2023-04-23 20:22 Sam James
2023-04-23 20:22 Sam James
2023-04-23 20:22 Sam James
2023-03-23 9:08 Sam James
2023-03-23 9:08 Sam James
2023-03-23 9:08 Sam James
2023-03-04 11:48 Arthur Zamarin
2023-03-04 11:03 Arthur Zamarin
2023-03-04 8:57 Arthur Zamarin
2023-03-04 6:17 Arthur Zamarin
2023-01-01 0:04 Sam James
2022-12-26 8:35 Sam James
2022-11-25 5:44 Sam James
2022-11-25 5:39 Sam James
2022-11-25 5:21 Sam James
2022-11-25 5:04 Sam James
2022-10-29 21:32 Sam James
2022-10-04 6:30 Arthur Zamarin
2022-09-05 1:14 Sam James
2022-09-03 21:59 David Seifert
2022-09-03 10:59 David Seifert
2022-09-01 13:28 Jakov Smolić
2022-09-01 13:28 Jakov Smolić
2022-09-01 13:27 Jakov Smolić
2022-09-01 13:27 Jakov Smolić
2022-06-22 11:57 Jakov Smolić
2022-06-19 1:55 Sam James
2022-03-26 0:01 Sam James
2020-07-12 16:33 Mikle Kolyada
2020-07-12 16:32 Mikle Kolyada
2020-07-12 16:28 Mikle Kolyada
2020-03-16 7:21 Mikle Kolyada
2020-03-16 7:21 Mikle Kolyada
2020-03-16 7:21 Mikle Kolyada
2020-01-27 19:09 Mikle Kolyada
2020-01-08 20:46 Mikle Kolyada
2020-01-08 16:57 Mikle Kolyada
2020-01-08 16:57 Mikle Kolyada
2019-11-18 22:17 Aaron Bauman
2018-09-27 23:55 Alon Bar-Lev
2018-09-01 7:21 Alon Bar-Lev
2017-03-19 4:12 Kent Fredric
2016-07-16 22:34 Manuel Rüger
2016-03-25 15:00 Manuel Rüger
2016-03-25 15:00 Manuel Rüger
2015-11-12 22:10 Manuel Rüger
2015-08-26 1:12 Manuel Rüger
2015-08-11 20:09 Alon Bar-Lev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1741934240.e3b8bf367412c5f3caad6fd6623b646d03aa3547.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox