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 17B121382C5 for ; Fri, 27 Nov 2020 16:28:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64D04E08BF; Fri, 27 Nov 2020 16:28:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C13FCE08BD for ; Fri, 27 Nov 2020 16:28:33 +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 C62F53414DA for ; Fri, 27 Nov 2020 16:28:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4EF6546B for ; Fri, 27 Nov 2020 16:28:31 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1606494504.a692f52ca05cb9dbdd2212dfd63e55dfd2a14671.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/csync/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/csync/csync-0.50.0.ebuild X-VCS-Directories: net-misc/csync/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: a692f52ca05cb9dbdd2212dfd63e55dfd2a14671 X-VCS-Branch: master Date: Fri, 27 Nov 2020 16:28:31 +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: 0b4c354b-6d13-4396-9b03-8c71652f382d X-Archives-Hash: 25f96c9595d0fa606eeac35fc144acf1 commit: a692f52ca05cb9dbdd2212dfd63e55dfd2a14671 Author: Aaron Bauman gentoo org> AuthorDate: Fri Nov 27 16:05:51 2020 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Nov 27 16:28:24 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a692f52c net-misc/csync: drop old EAPI Signed-off-by: Aaron Bauman gentoo.org> net-misc/csync/csync-0.50.0.ebuild | 49 -------------------------------------- 1 file changed, 49 deletions(-) diff --git a/net-misc/csync/csync-0.50.0.ebuild b/net-misc/csync/csync-0.50.0.ebuild deleted file mode 100644 index 188fcabcab5..00000000000 --- a/net-misc/csync/csync-0.50.0.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit cmake-utils - -DESCRIPTION="lightweight file synchronizer utility" -HOMEPAGE="https://www.csync.org/" -SRC_URI="https://open.cryptomilk.org/attachments/download/27/${P}.tar.xz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="doc iconv samba +sftp test" -RESTRICT="!test? ( test )" - -RDEPEND=">=dev-db/sqlite-3.4:3 - net-libs/neon[ssl] - iconv? ( virtual/libiconv ) - samba? ( >=net-fs/samba-3.5 ) - sftp? ( >=net-libs/libssh-0.5 ) - !net-misc/ocsync" -DEPEND="${RDEPEND} - app-text/asciidoc - doc? ( app-doc/doxygen ) - test? ( dev-util/cmocka )" - -src_prepare() { - cmake-utils_src_prepare - - sed -e "s/__FUNCTION__/__func__/" -i \ - src/csync_log.h tests/csync_tests/check_csync_log.c || die - # proper docdir - sed -e "s:/doc/${PN}:/doc/${PF}:" \ - -i doc/CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc - $(cmake-utils_use_with iconv ICONV) - $(cmake-utils_use test UNIT_TESTING) - $(cmake-utils_use_find_package doc Doxygen) - $(cmake-utils_use_find_package samba Libsmbclient) - $(cmake-utils_use_find_package sftp LibSSH) - ) - cmake-utils_src_configure -}