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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id F3566138334 for ; Sat, 24 Aug 2019 05:45:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD2C0E0824; Sat, 24 Aug 2019 05:45:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 505FCE0822 for ; Sat, 24 Aug 2019 05:45:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 36F3834A233 for ; Sat, 24 Aug 2019 05:45:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 611D9777 for ; Sat, 24 Aug 2019 05:45:52 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1566625548.66d98fbc5dad37a53f8c84c53afa8d8ba04ca36c.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-wm/enlightenment/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-wm/enlightenment/enlightenment-0.22.4.ebuild X-VCS-Directories: x11-wm/enlightenment/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 66d98fbc5dad37a53f8c84c53afa8d8ba04ca36c X-VCS-Branch: master Date: Sat, 24 Aug 2019 05:45:52 +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: 9e4c9d27-35e9-48e5-8c75-a934950a8353 X-Archives-Hash: de570abc4eab7b03417752d37d450a13 commit: 66d98fbc5dad37a53f8c84c53afa8d8ba04ca36c Author: Joonas Niilola gentoo org> AuthorDate: Sat Aug 24 05:43:01 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sat Aug 24 05:45:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66d98fbc x11-wm/enlightenment: clean old Package-Manager: Portage-2.3.72, Repoman-2.3.17 Signed-off-by: Joonas Niilola gentoo.org> x11-wm/enlightenment/enlightenment-0.22.4.ebuild | 101 ----------------------- 1 file changed, 101 deletions(-) diff --git a/x11-wm/enlightenment/enlightenment-0.22.4.ebuild b/x11-wm/enlightenment/enlightenment-0.22.4.ebuild deleted file mode 100644 index 61ce2239169..00000000000 --- a/x11-wm/enlightenment/enlightenment-0.22.4.ebuild +++ /dev/null @@ -1,101 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit meson xdg-utils - -DESCRIPTION="Enlightenment window manager" -HOMEPAGE="https://www.enlightenment.org" -SRC_URI="https://download.enlightenment.org/rel/apps/${PN}/${P}.tar.xz" - -LICENSE="BSD-2" -SLOT="0.17/${PV%%_*}" -KEYWORDS="amd64 ~ppc x86" -IUSE="acpi bluetooth connman doc geolocation nls packagekit pam systemd udisks wayland wifi" - -RDEPEND=" - >=dev-libs/efl-1.20.5[eet,X] - virtual/udev - x11-libs/libXext - x11-libs/libxcb - x11-libs/xcb-util-keysyms - x11-misc/xkeyboard-config - acpi? ( sys-power/acpid ) - bluetooth? ( net-wireless/bluez ) - connman? ( dev-libs/efl[connman] ) - geolocation? ( app-misc/geoclue:2.0 ) - packagekit? ( app-admin/packagekit-base ) - pam? ( sys-libs/pam ) - systemd? ( sys-apps/systemd ) - udisks? ( sys-fs/udisks:2 ) - wayland? ( - >=dev-libs/efl-1.21.0[drm,wayland] - dev-libs/wayland - x11-libs/libxkbcommon - x11-libs/pixman - ) -" -BDEPEND=" - virtual/pkgconfig - nls? ( sys-devel/gettext ) -" -DEPEND="${RDEPEND}" - -src_prepare() { - default - xdg_environment_reset -} - -src_configure() { - local emesonargs=( - -D device-udev=true - -D install-sysactions=false - -D mount-udisks=$(usex udisks true false) - -D bluez4=$(usex bluetooth true false) - -D connman=$(usex connman true false) - -D geolocation=$(usex geolocation true false) - -D nls=$(usex nls true false) - -D packagekit=$(usex packagekit true false) - -D pam=$(usex pam true false) - -D systemd=$(usex systemd true false) - -D wayland=$(usex wayland true false) - -D wireless=$(usex wifi true false) - ) - - if ! use wayland; then - emesonargs+=( - -D wl-buffer=false - -D wl-desktop-shell=false - -D wl-drm=false - -D wl-text-input=false - -D wl-weekeyboard=false - -D wl-wl=false - -D wl-x11=false - -D xwayland=false - ) - fi - - meson_src_configure -} - -src_install() { - insinto /etc/enlightenment - newins "${FILESDIR}"/gentoo-sysactions.conf sysactions.conf - - if use doc; then - local HTML_DOCS=( doc/. ) - fi - - meson_src_install -} - -pkg_postinst() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -} - -pkg_postrm() { - xdg_desktop_database_update - xdg_mimeinfo_database_update -}