From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 36753158094 for ; Wed, 29 Jun 2022 09:07:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20CE1E0BFF; Wed, 29 Jun 2022 09:07:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EC60AE0BFF for ; Wed, 29 Jun 2022 09:07:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D824E3419DF for ; Wed, 29 Jun 2022 09:07:23 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53B5651B for ; Wed, 29 Jun 2022 09:07:22 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1656493632.f1a9b2784876f4e62ac2f79f00f44821921d2dcd.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/matwm2/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/matwm2/matwm2-0.1.2_pre3-r1.ebuild x11-wm/matwm2/matwm2-0.1.2_pre3-r2.ebuild X-VCS-Directories: x11-wm/matwm2/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: f1a9b2784876f4e62ac2f79f00f44821921d2dcd X-VCS-Branch: master Date: Wed, 29 Jun 2022 09:07:22 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 694a6bb2-00df-415b-bd19-8e4301bdcad9 X-Archives-Hash: 91f52e69f105b2052163e64db5fb658e commit: f1a9b2784876f4e62ac2f79f00f44821921d2dcd Author: David Seifert gentoo org> AuthorDate: Wed Jun 29 09:07:12 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Jun 29 09:07:12 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a9b278 x11-wm/matwm2: update EAPI 6 -> 8 Signed-off-by: David Seifert gentoo.org> ..._pre3-r1.ebuild => matwm2-0.1.2_pre3-r2.ebuild} | 35 +++++++++++----------- 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/x11-wm/matwm2/matwm2-0.1.2_pre3-r1.ebuild b/x11-wm/matwm2/matwm2-0.1.2_pre3-r2.ebuild similarity index 65% rename from x11-wm/matwm2/matwm2-0.1.2_pre3-r1.ebuild rename to x11-wm/matwm2/matwm2-0.1.2_pre3-r2.ebuild index c6e017074c9d..468d8e602220 100644 --- a/x11-wm/matwm2/matwm2-0.1.2_pre3-r1.ebuild +++ b/x11-wm/matwm2/matwm2-0.1.2_pre3-r2.ebuild @@ -1,33 +1,31 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -inherit toolchain-funcs +EAPI=8 + +inherit edo toolchain-funcs MY_PV="${PV//_/}" DESCRIPTION="Simple EWMH compatible window manager with titlebars and frames" HOMEPAGE="https://github.com/segin/matwm2" SRC_URI="https://github.com/segin/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}-${MY_PV}/${PN}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug xft xinerama" -S="${WORKDIR}/${PN}-${MY_PV}/${PN}" RDEPEND=" x11-libs/libXext x11-libs/libX11 xft? ( x11-libs/libXft ) - xinerama? ( x11-libs/libXinerama ) -" -DEPEND=" - ${RDEPEND} - virtual/pkgconfig -" + xinerama? ( x11-libs/libXinerama )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" -PATCHES=( "${FILESDIR}/${P}-destdir-fix.patch" ) +PATCHES=( "${FILESDIR}"/${P}-destdir-fix.patch ) src_prepare() { default @@ -42,24 +40,25 @@ src_configure() { --prefix="${EPREFIX}/usr" --mandir="${EPREFIX}/usr/share/man" --cc="$(tc-getCC)" - $(usex debug "--enable-debug" "") - $(usex xft "" "--disable-xft") - $(usex xinerama "" "--disable-xinerama") + $(usev debug --enable-debug) + $(usev !xft --disable-xft) + $(usev !xinerama --disable-xinerama) ) - ./configure "${myconfigureargs[@]}" || die + edo ./configure "${myconfigureargs[@]}" } src_install() { default - docompress -x "${EPREFIX}/usr/share/doc/${PF}"/default_matwmrc + docompress -x /usr/share/doc/${PF}/default_matwmrc dodoc default_matwmrc insinto /usr/share/xsessions doins "${FILESDIR}"/${PN}.desktop - echo ${PN} > "${T}"/${PN} || die exeinto /etc/X11/Sessions - doexe "${T}"/${PN} + newexe - matwm2 <<- _EOF_ + matwm2 + _EOF_ }