Diff stumpwm-contrib-20180128 with a stumpwm-contrib-99999999

/usr/portage/x11-wm/stumpwm-contrib/stumpwm-contrib-99999999.ebuild 2023-10-09 14:52:36.004368514 +0300
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2017 Gentoo Foundation
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=6
5 5

  
6 6
inherit common-lisp-3
7 7

  
8
DESCRIPTION="Extension Modules for StumpWM"
9
HOMEPAGE="https://github.com/stumpwm/stumpwm-contrib/"
10

  
11 8
if [[ ${PV} == 9999* ]] ; then
12 9
	inherit git-r3
13
	EGIT_REPO_URI="https://github.com/stumpwm/stumpwm-contrib/"
10
	EGIT_REPO_URI="https://github.com/stumpwm/${PN}"
14 11
else
15
	SRC_URI="mirror://gentoo/${P}.tar.bz2"
12
	SRC_URI="https://dev.gentoo.org/~nimiux/${CATEGORY}/${PN}/${P}.tar.bz2"
16 13
	KEYWORDS="~amd64 ~x86"
17 14
fi
18 15

  
16
DESCRIPTION="Extension Modules for StumpWM"
17
HOMEPAGE="https://github.com/stumpwm/stumpwm-contrib/"
18

  
19 19
LICENSE="GPL-2 GPL-3 BSD-2"
20 20
SLOT="0"
21 21
IUSE=""
22 22

  
23
RDEPEND=">=x11-wm/stumpwm-1.0.0"
23
RDEPEND=">=x11-wm/stumpwm-0.9.9"
24 24

  
25
CONTRIBCATEGORIES="media minor-mode modeline util"
25
CONTRIBCATEGORIES="media modeline minor-mode util"
26 26

  
27 27
src_install() {
28 28
	common-lisp-install-sources -t all ${CONTRIBCATEGORIES}
Thank you!