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 CCA5815802F for ; Sat, 25 Feb 2023 17:07:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E78C9E0863; Sat, 25 Feb 2023 17:07:57 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CE0A3E0863 for ; Sat, 25 Feb 2023 17:07:57 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D4728335DC8 for ; Sat, 25 Feb 2023 17:07:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 17BB18B7 for ; Sat, 25 Feb 2023 17:07:55 +0000 (UTC) From: "Michael Orlitzky" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Orlitzky" Message-ID: <1677344688.3ded84119fdc385fb8240ecef29cc5921dd65383.mjo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-backup/untangle-https-backup/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-backup/untangle-https-backup/untangle-https-backup-0.1.0-r1.ebuild X-VCS-Directories: app-backup/untangle-https-backup/ X-VCS-Committer: mjo X-VCS-Committer-Name: Michael Orlitzky X-VCS-Revision: 3ded84119fdc385fb8240ecef29cc5921dd65383 X-VCS-Branch: master Date: Sat, 25 Feb 2023 17:07:55 +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: 20b94029-4114-403c-bf4b-7c701e68aba0 X-Archives-Hash: f3c230144d0994990c39463a12b9fc51 commit: 3ded84119fdc385fb8240ecef29cc5921dd65383 Author: Michael Orlitzky gentoo org> AuthorDate: Sat Feb 25 16:59:02 2023 +0000 Commit: Michael Orlitzky gentoo org> CommitDate: Sat Feb 25 17:04:48 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ded8411 app-backup/untangle-https-backup: update EAPI 7 -> 8, python-3.11. Closes: https://bugs.gentoo.org/896504 Signed-off-by: Michael Orlitzky gentoo.org> .../untangle-https-backup-0.1.0-r1.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app-backup/untangle-https-backup/untangle-https-backup-0.1.0-r1.ebuild b/app-backup/untangle-https-backup/untangle-https-backup-0.1.0-r1.ebuild new file mode 100644 index 000000000000..f2b4cc6ca8c9 --- /dev/null +++ b/app-backup/untangle-https-backup/untangle-https-backup-0.1.0-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_9 python3_10 python3_11 ) +PYTHON_REQ_USE="ssl(+)" +DISTUTILS_USE_PEP517=setuptools +inherit distutils-r1 + +DESCRIPTION="Back up Untangle configurations via the web admin UI" +HOMEPAGE="http://michael.orlitzky.com/code/untangle-https-backup.xhtml" +SRC_URI="http://michael.orlitzky.com/code/releases/${P}.tar.gz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_install() { + distutils-r1_src_install + doman "doc/man8/${PN}.8" + dodoc "doc/${PN}.example.ini" +}