Gentoo Archives: gentoo-commits

From: "Hanno Böck" <hanno@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/robot-detection/
Date: Wed, 16 Sep 2020 17:30:56
Message-Id: 1600277443.a0118dbd5759cf60f8ac49f0e1557e4b783952ba.hanno@gentoo
1 commit: a0118dbd5759cf60f8ac49f0e1557e4b783952ba
2 Author: Hanno Böck <hanno <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 16 17:30:43 2020 +0000
4 Commit: Hanno Böck <hanno <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 16 17:30:43 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0118dbd
7
8 dev-python/robot-detection: Initial commit.
9
10 Needed for mailman 3.
11
12 Signed-off-by: Hanno Böck <hanno <AT> gentoo.org>
13 Package-Manager: Portage-3.0.7, Repoman-3.0.1
14
15 dev-python/robot-detection/Manifest | 1 +
16 dev-python/robot-detection/metadata.xml | 11 +++++++++++
17 dev-python/robot-detection/robot-detection-0.4.0.ebuild | 15 +++++++++++++++
18 3 files changed, 27 insertions(+)
19
20 diff --git a/dev-python/robot-detection/Manifest b/dev-python/robot-detection/Manifest
21 new file mode 100644
22 index 00000000000..9c579d21d31
23 --- /dev/null
24 +++ b/dev-python/robot-detection/Manifest
25 @@ -0,0 +1 @@
26 +DIST robot-detection-0.4.0.tar.gz 81090 BLAKE2B d8422567119a633e1f97586895191a5f331e7800db596b204cc6e7a0b44efee1ffbc0e4941911a1410be329126997f59eebb63441e12196feaf5ac8000b1434b SHA512 10b1fbd2307c375e3cd067e43bee1bc0ff71f4b83ede9b92d2fb8d60edfd6d4a8d1a4d06d74e3c0653056f2e2b2cb81a7e997047093e925bd79bf4626d33d85f
27
28 diff --git a/dev-python/robot-detection/metadata.xml b/dev-python/robot-detection/metadata.xml
29 new file mode 100644
30 index 00000000000..80afc2dedf6
31 --- /dev/null
32 +++ b/dev-python/robot-detection/metadata.xml
33 @@ -0,0 +1,11 @@
34 +<?xml version="1.0" encoding="UTF-8"?>
35 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
36 +<pkgmetadata>
37 + <maintainer type="person">
38 + <email>hanno@g.o</email>
39 + </maintainer>
40 + <upstream>
41 + <remote-id type="pypi">robot-detection</remote-id>
42 + <remote-id type="github">rory/robot-detection</remote-id>
43 + </upstream>
44 +</pkgmetadata>
45
46 diff --git a/dev-python/robot-detection/robot-detection-0.4.0.ebuild b/dev-python/robot-detection/robot-detection-0.4.0.ebuild
47 new file mode 100644
48 index 00000000000..d4e7b9b609b
49 --- /dev/null
50 +++ b/dev-python/robot-detection/robot-detection-0.4.0.ebuild
51 @@ -0,0 +1,15 @@
52 +# Copyright 1999-2020 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=7
56 +
57 +PYTHON_COMPAT=( python3_{6,7,8,9} )
58 +inherit distutils-r1
59 +
60 +DESCRIPTION="Module to detect if a given HTTP User Agent is a web crawler."
61 +HOMEPAGE="https://github.com/rory/robot-detection"
62 +SRC_URI="https://github.com/rory/robot-detection/archive/v${PV}.tar.gz -> ${P}.tar.gz"
63 +
64 +LICENSE="GPL-3"
65 +SLOT="0"
66 +KEYWORDS="~amd64"