Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/kbd/
Date: Fri, 23 Sep 2022 02:15:02
Message-Id: 1663899217.b5cd05a5aa76d6c929499327c0a9df318763430e.sam@gentoo
1 commit: b5cd05a5aa76d6c929499327c0a9df318763430e
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Sep 23 02:10:45 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 23 02:13:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5cd05a5
7
8 sys-apps/kbd: drop 2.4.0
9
10 Signed-off-by: Sam James <sam <AT> gentoo.org>
11
12 sys-apps/kbd/Manifest | 1 -
13 sys-apps/kbd/kbd-2.4.0.ebuild | 84 -------------------------------------------
14 2 files changed, 85 deletions(-)
15
16 diff --git a/sys-apps/kbd/Manifest b/sys-apps/kbd/Manifest
17 index 18b8b26b539f..760515e63a39 100644
18 --- a/sys-apps/kbd/Manifest
19 +++ b/sys-apps/kbd/Manifest
20 @@ -1,2 +1 @@
21 -DIST kbd-2.4.0.tar.xz 1120700 BLAKE2B aa5fc1067d3414b9fa18f35dd81dcc050cdf10bd8692221b6e5304e94c4f90055386ce1f79d2bd092241f9ce15ffd36d5c00d1a15725166d16183f475be4a2e3 SHA512 c3823e40878ed4cb5b90edf753dba37a7fc3189b7b08a2e59a7830cac23a7a7daf31dedef1fcc130698c7508bc2a037c8ab54e749d0cdbf51756e346f2ed5abb
22 DIST kbd-2.5.1.tar.xz 1491952 BLAKE2B aab4c3d78c28709bf562b54fe94c0533d5c33185e183bf3eb944f89147b250d9df9b30b64a06eb4742feafe8c05a6aa491a7f007b4d6d9077bc19a4628ba05ae SHA512 74855f486aff5fc2f93a6cb29460a590c94eac653b001574e1b4eb1300ea99dfed9222f9e5d1d3a05a112a6880591d5c44ed6e76b8a64edf744ecb0892f562d0
23
24 diff --git a/sys-apps/kbd/kbd-2.4.0.ebuild b/sys-apps/kbd/kbd-2.4.0.ebuild
25 deleted file mode 100644
26 index d857523a184d..000000000000
27 --- a/sys-apps/kbd/kbd-2.4.0.ebuild
28 +++ /dev/null
29 @@ -1,84 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -if [[ ${PV} == "9999" ]] ; then
36 - inherit autotools git-r3
37 - #EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/legion/kbd.git"
38 - EGIT_REPO_URI="https://github.com/legionus/kbd.git"
39 - EGIT_BRANCH="master"
40 -else
41 - if [[ $(ver_cut 3) -lt 90 ]] ; then
42 - SRC_URI="https://www.kernel.org/pub/linux/utils/kbd/${P}.tar.xz"
43 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
44 - else
45 - inherit autotools
46 - SRC_URI="https://github.com/legionus/kbd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 - fi
48 -fi
49 -
50 -DESCRIPTION="Keyboard and console utilities"
51 -HOMEPAGE="http://kbd-project.org/"
52 -
53 -LICENSE="GPL-2"
54 -SLOT="0"
55 -IUSE="nls pam test"
56 -#RESTRICT="!test? ( test )"
57 -# Need to check autotest bit (see bug #732868)
58 -RESTRICT="test"
59 -
60 -RDEPEND="
61 - app-arch/gzip
62 - pam? (
63 - !app-misc/vlock
64 - sys-libs/pam
65 - )
66 -"
67 -DEPEND="${RDEPEND}"
68 -BDEPEND="
69 - virtual/pkgconfig
70 - test? ( dev-libs/check )
71 -"
72 -
73 -src_unpack() {
74 - if [[ ${PV} == "9999" ]] ; then
75 - git-r3_src_unpack
76 - else
77 - default
78 - fi
79 -
80 - # Rename conflicting keymaps to have unique names, bug #293228
81 - cd "${S}"/data/keymaps/i386 || die
82 - mv fgGIod/trf.map fgGIod/trf-fgGIod.map || die
83 - mv olpc/es.map olpc/es-olpc.map || die
84 - mv olpc/pt.map olpc/pt-olpc.map || die
85 - mv qwerty/cz.map qwerty/cz-qwerty.map || die
86 -}
87 -
88 -src_prepare() {
89 - default
90 - if [[ ${PV} == "9999" ]] || [[ $(ver_cut 3) -ge 90 ]] ; then
91 - eautoreconf
92 - fi
93 -}
94 -
95 -src_configure() {
96 - local myeconfargs=(
97 - # USE="test" installs .a files
98 - --disable-static
99 - $(use_enable nls)
100 - $(use_enable pam vlock)
101 - $(use_enable test tests)
102 - )
103 - econf "${myeconfargs[@]}"
104 -}
105 -
106 -src_install() {
107 - default
108 - docinto html
109 - dodoc docs/doc/*.html
110 -
111 - # USE="test" installs .la files
112 - find "${ED}" -type f -name "*.la" -delete || die
113 -}