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 98684158086 for ; Sat, 6 Nov 2021 22:38:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3F2312BC0B4; Sat, 6 Nov 2021 22:37:49 +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 443052BC0B4 for ; Sat, 6 Nov 2021 22:37:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 smtp.gentoo.org (Postfix) with ESMTPS id 3564D343088 for ; Sat, 6 Nov 2021 22:37:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AE47A1A3 for ; Sat, 6 Nov 2021 22:37:38 +0000 (UTC) From: "Bernard Cafarelli" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Bernard Cafarelli" Message-ID: <1636238253.c6a1afa8fd2c72d3bbf95fd6cad44faaf75b970b.voyageur@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-r1.ebuild X-VCS-Directories: net-misc/csync/ X-VCS-Committer: voyageur X-VCS-Committer-Name: Bernard Cafarelli X-VCS-Revision: c6a1afa8fd2c72d3bbf95fd6cad44faaf75b970b X-VCS-Branch: master Date: Sat, 6 Nov 2021 22:37:38 +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: cf72c5c7-b99b-4aa3-8369-aa091e18b5b0 X-Archives-Hash: f6f3a6b075b1918d922da9546aeb2711 commit: c6a1afa8fd2c72d3bbf95fd6cad44faaf75b970b Author: Bernard Cafarelli gentoo org> AuthorDate: Sat Nov 6 22:37:33 2021 +0000 Commit: Bernard Cafarelli gentoo org> CommitDate: Sat Nov 6 22:37:33 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a1afa8 net-misc/csync: drop old Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Bernard Cafarelli gentoo.org> net-misc/csync/csync-0.50.0-r1.ebuild | 48 ----------------------------------- 1 file changed, 48 deletions(-) diff --git a/net-misc/csync/csync-0.50.0-r1.ebuild b/net-misc/csync/csync-0.50.0-r1.ebuild deleted file mode 100644 index 4439f480f68..00000000000 --- a/net-misc/csync/csync-0.50.0-r1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -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 )" - -PATCHES=( "${FILESDIR}"/${P}-gcc_5_and_8.patch ) -src_prepare() { - cmake-utils_src_prepare - - # proper docdir - sed -e "s:/doc/${PN}:/doc/${PF}:" \ - -i doc/CMakeLists.txt || die -} - -src_configure() { - local mycmakeargs=( - -DSYSCONF_INSTALL_DIR="${EPREFIX}"/etc - -DWITH_ICONV="$(usex iconv)" - -DUNIT_TESTING="$(usex test)" - $(cmake-utils_use_find_package doc Doxygen) - $(cmake-utils_use_find_package samba SMBClient) - $(cmake-utils_use_find_package sftp LibSSH) - ) - cmake-utils_src_configure -}