Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-misc/cdm/
Date: Fri, 30 Apr 2021 19:40:25
Message-Id: 1619811608.40783fcda7a84c9dfba7b363eadfe9156e6ee2c5.asturm@gentoo
1 commit: 40783fcda7a84c9dfba7b363eadfe9156e6ee2c5
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 18 18:38:31 2021 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Apr 30 19:40:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40783fcd
7
8 x11-misc/cdm: Drop 0.6.1_pre20180107, EAPI6--
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 x11-misc/cdm/Manifest | 1 -
14 x11-misc/cdm/cdm-0.6.1_pre20180107.ebuild | 65 -------------------------------
15 2 files changed, 66 deletions(-)
16
17 diff --git a/x11-misc/cdm/Manifest b/x11-misc/cdm/Manifest
18 index 9c602834109..027ce2546c6 100644
19 --- a/x11-misc/cdm/Manifest
20 +++ b/x11-misc/cdm/Manifest
21 @@ -1,2 +1 @@
22 -DIST cdm-0.6.1_pre20180107.tar.gz 16541 BLAKE2B 19b7a8f6ef7541333b96bb3c2d6a9d3b7ce3bffdcf6653a3799d963d3b3bab3fe3553469a9cbf0f493109ad5308c739b25ce9e5801d0904f5d7b6e78b680e2fc SHA512 dc5587debb304636be25afdf60e8328b1eb9b961694813b089df504567f63cfeac6de17df715d589cec597f51044b8c121242ebefbe5bfeccf6aa072b1c03a40
23 DIST cdm-0.7.tar.gz 16154 BLAKE2B ca240e253ad4ed6b5e634069b98c90c00852fc6d6550ca1f72b3399435264055cfca31f88f6061daa3e2e3445bd1a8ad9f950b44968df4c77d6c8150b2782a34 SHA512 51591b953ec83c06a5a4407c6d6083ac11e7095c7fb22e491ed3d6626217462529d3dd3590c2a256273b3668c7246b13bfd1f2f682f5bd860ca8a34aaca0b6f5
24
25 diff --git a/x11-misc/cdm/cdm-0.6.1_pre20180107.ebuild b/x11-misc/cdm/cdm-0.6.1_pre20180107.ebuild
26 deleted file mode 100644
27 index b6b34d36637..00000000000
28 --- a/x11-misc/cdm/cdm-0.6.1_pre20180107.ebuild
29 +++ /dev/null
30 @@ -1,65 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI="6"
35 -
36 -inherit pam
37 -
38 -DESCRIPTION="The Console Display Manager"
39 -HOMEPAGE="https://github.com/evertiro/cdm"
40 -SRC_URI="https://dev.gentoo.org/~gienah/snapshots/${P}.tar.gz"
41 -
42 -LICENSE="GPL-3"
43 -SLOT="0"
44 -KEYWORDS="~amd64 ~x86"
45 -IUSE="pam"
46 -
47 -DEPEND=""
48 -RDEPEND="${DEPEND}
49 - dev-util/dialog
50 - x11-apps/xdpyinfo
51 - x11-apps/xinit
52 - pam? ( sys-libs/pam )"
53 -
54 -src_prepare() {
55 - default
56 - sed -e 's@consolekit=yes@consolekit=no@' \
57 - -i "${S}/src/cdmrc" || die "Could not turn off consolekit in cdmrc"
58 -}
59 -
60 -src_install() {
61 - if use pam ; then
62 - pamd_mimic system-local-login cdm auth account session
63 - fi
64 -
65 - insinto /usr/bin/
66 - insopts -m0755
67 - dobin src/${PN} src/${PN}-xlaunch
68 -
69 - insinto /etc
70 - insopts -Dm644
71 - doins src/cdmrc
72 -
73 - insinto /etc/profile.d/
74 - insopts -Dm755
75 - newins src/profile.sh zzz-${PN}.sh
76 -
77 - # Install themes
78 - insinto /usr/share/${PN}/themes
79 - doins themes/*
80 - # Copy documentation manually
81 - dodoc ChangeLog-0.6 ChangeLog-before-0.6 README.md
82 -}
83 -
84 -pkg_postinst() {
85 - ewarn "In order to use CDM you must first edit your /etc/cdmrc"
86 - ewarn "At least the binlist, namelist and flaglist entries should be added or edited"
87 - ewarn "to specify the X window managers and console shells that you want before"
88 - ewarn "you start CDM. Something like:"
89 - ewarn "binlist=('xmonad' 'startkde' '/bin/zsh --login' '/bin/bash --login')"
90 - ewarn "namelist=('XMonad' 'KDE' 'Console Zsh' 'Console Bash')"
91 - ewarn "flaglist=(X X C C)"
92 - ewarn "Ensure the flaglist X entries correspond to the X-Windows programs, and the"
93 - ewarn "C entries correspond to console shells. Then just login with your username."
94 - ewarn "Remove xdm from default runlevel."
95 -}