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 7F8411396D9 for ; Sat, 18 Nov 2017 14:25:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AC896E0C58; Sat, 18 Nov 2017 14:25:25 +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 788D7E0C58 for ; Sat, 18 Nov 2017 14:25:25 +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 979FB33BEA7 for ; Sat, 18 Nov 2017 14:25:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1C3F99F0F for ; Sat, 18 Nov 2017 14:25:23 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1511015054.8585f440e6ddce0ba02b10e43fb6b61ec789fb36.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-util/smartgit/ X-VCS-Repository: proj/sci X-VCS-Files: dev-util/smartgit/metadata.xml dev-util/smartgit/smartgit-6.5.6.ebuild X-VCS-Directories: dev-util/smartgit/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 8585f440e6ddce0ba02b10e43fb6b61ec789fb36 X-VCS-Branch: master Date: Sat, 18 Nov 2017 14:25:23 +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-Archives-Salt: 75b12dbb-5521-4547-baed-be920a345fb1 X-Archives-Hash: ad2f58b86187f3479ea0c16ab0957966 commit: 8585f440e6ddce0ba02b10e43fb6b61ec789fb36 Author: Justin Lecher gentoo org> AuthorDate: Sat Nov 18 14:24:14 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Nov 18 14:24:14 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8585f440 dev-util/smartgit: Drop outdated version due to unmet dependency Signed-off-by: Justin Lecher gentoo.org> dev-util/smartgit/metadata.xml | 5 --- dev-util/smartgit/smartgit-6.5.6.ebuild | 56 --------------------------------- 2 files changed, 61 deletions(-) diff --git a/dev-util/smartgit/metadata.xml b/dev-util/smartgit/metadata.xml deleted file mode 100644 index f7716e599..000000000 --- a/dev-util/smartgit/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - SmartSVN is a powerful GUI SVN client written in Java - diff --git a/dev-util/smartgit/smartgit-6.5.6.ebuild b/dev-util/smartgit/smartgit-6.5.6.ebuild deleted file mode 100644 index 81397e265..000000000 --- a/dev-util/smartgit/smartgit-6.5.6.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit eutils java-utils-2 versionator - -MY_PV="$(replace_all_version_separators _)" -MY_P="${PN}-generic-${MY_PV}" - -DESCRIPTION="Git client with support for GitHub Pull Requests+Comments, SVN and Mercurial" -HOMEPAGE="http://www.syntevo.com/smartgit" -SRC_URI="http://www.syntevo.com/download/${PN}/${MY_P}.tar.gz" - -SLOT="0" -LICENSE="smartgit" -KEYWORDS="~amd64 ~x86" -IUSE="" - -RESTRICT="fetch" - -DEPEND=">=virtual/jre-1.7:1.7" -RDEPEND="${DEPEND}" - -S="${WORKDIR}"/${PN} - -pkg_nofetch(){ - einfo "Please download ${A} from:" - einfo "http://www.syntevo.com/smartgit/download" - einfo "and move/copy to ${DISTDIR}" -} - -src_install() { - local rdir="/opt/${PN}" X - insinto ${rdir} - doins -r * - - java-pkg_register-environment-variable SWT_GTK3 0 - - java-pkg_regjar "${ED}"/${rdir}/lib/*.jar - - java-pkg_dolauncher ${PN} --java_args "-Dsun.io.useCanonCaches=false -Xmx768m -Xverify:none -XX:+UseG1GC -XX:MaxGCPauseMillis=100 -XX:InitiatingHeapOccupancyPercent=25" --jar bootloader.jar - - for X in 32 64 128; do - insinto /usr/share/icons/hicolor/${X}x${X}/apps - newins "${S}"/bin/smartgit-${X}.png ${PN}.png - done - - make_desktop_entry "${PN}" "SmartGIT" ${PN} "Development;RevisionControl" -} - -pkg_postinst() { - elog "${PN} relies on external git/hg executables to work." - optfeature "Git support" dev-vcs/git - optfeature "Mercurial support" dev-vcs/mercurial -}