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 3D094138350 for ; Fri, 13 Mar 2020 17:45:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8119BE0AE1; Fri, 13 Mar 2020 17:45:52 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 6C87CE0AE1 for ; Fri, 13 Mar 2020 17:45:52 +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 6413534EEFC for ; Fri, 13 Mar 2020 17:45:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 04E69171 for ; Fri, 13 Mar 2020 17:45:50 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1584042989.68e34dda23f0fb4280796a269e9e927ff52c908e.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master commit in: app-misc/telegram-send/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-misc/telegram-send/Manifest app-misc/telegram-send/metadata.xml app-misc/telegram-send/telegram-send-0.25.ebuild X-VCS-Directories: app-misc/telegram-send/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 68e34dda23f0fb4280796a269e9e927ff52c908e X-VCS-Branch: master Date: Fri, 13 Mar 2020 17:45:50 +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: 7067a77c-537e-4714-8923-480046c65a1a X-Archives-Hash: db2292419cdfcfb9dee3ef9a9d4976c3 commit: 68e34dda23f0fb4280796a269e9e927ff52c908e Author: David Roman gmail com> AuthorDate: Thu Mar 12 19:55:42 2020 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Thu Mar 12 19:56:29 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68e34dda app-misc/telegram-send: new package Package-Manager: Portage-2.3.93, Repoman-2.3.20 Signed-off-by: David Roman gmail.com> app-misc/telegram-send/Manifest | 1 + app-misc/telegram-send/metadata.xml | 8 ++++++++ app-misc/telegram-send/telegram-send-0.25.ebuild | 24 ++++++++++++++++++++++++ 3 files changed, 33 insertions(+) diff --git a/app-misc/telegram-send/Manifest b/app-misc/telegram-send/Manifest new file mode 100644 index 0000000..29abbd0 --- /dev/null +++ b/app-misc/telegram-send/Manifest @@ -0,0 +1 @@ +DIST telegram-send-0.25.tar.gz 25006 BLAKE2B 4d6c0b0f80de325dc39dbb8ee0eef04613ba8c5c5fa6725268f1ab758f8f10292972fb2fc98982f3777facefce7951660d021b058667235fc380563d8c3bf69f SHA512 c82a253ea1dff66b547a571c1744a0c322eb77aace1b2d9374497a2df47f5412212dc36b287487f2260113d5aac8b5632607a1342166c8036bb22605a58b5ec2 diff --git a/app-misc/telegram-send/metadata.xml b/app-misc/telegram-send/metadata.xml new file mode 100644 index 0000000..01c1fc8 --- /dev/null +++ b/app-misc/telegram-send/metadata.xml @@ -0,0 +1,8 @@ + + + + + davidroman96@gmail.com + David Roman + + diff --git a/app-misc/telegram-send/telegram-send-0.25.ebuild b/app-misc/telegram-send/telegram-send-0.25.ebuild new file mode 100644 index 0000000..f762d14 --- /dev/null +++ b/app-misc/telegram-send/telegram-send-0.25.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +inherit distutils-r1 + +DESCRIPTION="Send messages and files over Telegram from the command-line." +HOMEPAGE="https://www.rahielkasim.com/telegram-send/" + +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64 ~x86" + +LICENSE="GPL-3" +SLOT="0" +IUSE="" + +RDEPEND=" + dev-python/appdirs[${PYTHON_USEDEP}] + dev-python/colorama[${PYTHON_USEDEP}] + dev-python/python-telegram-bot[${PYTHON_USEDEP}] +"