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 4E384138334 for ; Sun, 23 Dec 2018 08:14:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 08B19E0A43; Sun, 23 Dec 2018 08:14:02 +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 D36B0E0A43 for ; Sun, 23 Dec 2018 08:14:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 24CA7335C39 for ; Sun, 23 Dec 2018 08:13:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 33AC94EE for ; Sun, 23 Dec 2018 08:13:57 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1545552814.d8c453980d0051fe9bf3fcb6e1d6c45f7a2ddef0.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/zathura/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/zathura/zathura-0.4.1-r1.ebuild X-VCS-Directories: app-text/zathura/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: d8c453980d0051fe9bf3fcb6e1d6c45f7a2ddef0 X-VCS-Branch: master Date: Sun, 23 Dec 2018 08:13:57 +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: aa643655-34ae-4f4a-991b-a07b384fe965 X-Archives-Hash: b7c870a7c4f054b89443c2556b975427 commit: d8c453980d0051fe9bf3fcb6e1d6c45f7a2ddef0 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Dec 23 08:13:34 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Dec 23 08:13:34 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8c45398 app-text/zathura: Drop old Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 app-text/zathura/zathura-0.4.1-r1.ebuild | 64 -------------------------------- 1 file changed, 64 deletions(-) diff --git a/app-text/zathura/zathura-0.4.1-r1.ebuild b/app-text/zathura/zathura-0.4.1-r1.ebuild deleted file mode 100644 index 3e114e15cb7..00000000000 --- a/app-text/zathura/zathura-0.4.1-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2018 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit gnome2-utils meson virtualx xdg-utils - -DESCRIPTION="A highly customizable and functional document viewer" -HOMEPAGE="http://pwmt.org/projects/zathura/" - -if [[ ${PV} == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git" - EGIT_BRANCH="develop" -else - SRC_URI="https://pwmt.org/projects/zathura/download/${P}.tar.xz" - KEYWORDS="amd64 arm x86 ~amd64-linux ~x86-linux" -fi - -LICENSE="ZLIB" -SLOT="0" -IUSE="+magic seccomp sqlite synctex test" - -PATCHES=( "${FILESDIR}"/${PN}-find-libm.patch ) - -RDEPEND=">=dev-libs/girara-0.3.1 - >=dev-libs/glib-2.50:2 - dev-python/sphinx - x11-libs/cairo - >=x11-libs/gtk+-3.22:3 - magic? ( sys-apps/file ) - seccomp? ( sys-libs/libseccomp ) - sqlite? ( >=dev-db/sqlite-3.5.9:3 ) - synctex? ( app-text/texlive-core )" - -DEPEND="${RDEPEND} - test? ( dev-libs/check )" - -BDEPEND="virtual/pkgconfig" - -src_configure() { - local emesonargs=( - --libdir=/usr/$(get_libdir) - -Denable-magic=$(usex magic true false) - -Denable-seccomp=$(usex seccomp true false) - -Denable-sqlite=$(usex sqlite true false) - -Denable-synctex=$(usex synctex true false) - ) - meson_src_configure -} - -src_test() { - virtx meson_src_test -} - -pkg_postinst() { - gnome2_icon_cache_update - xdg_desktop_database_update -} - -pkg_postrm() { - gnome2_icon_cache_update - xdg_desktop_database_update -}