public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Andrew Ammerlaan" <andrewammerlaan@riseup.net>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:master commit in: dev-python/pykeepass/files/, dev-python/pykeepass/
Date: Fri, 24 Apr 2020 12:49:54 +0000 (UTC)	[thread overview]
Message-ID: <1587669921.e89403bbe9fdd21a75e18f9e67916be69f2ec3a1.andrewammerlaan@gentoo> (raw)

commit:     e89403bbe9fdd21a75e18f9e67916be69f2ec3a1
Author:     David Heidelberg <david <AT> ixit <DOT> cz>
AuthorDate: Thu Apr 23 12:41:27 2020 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Thu Apr 23 19:25:21 2020 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e89403bb

dev-python/pykeepass: New package.

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: David Heidelberg <david <AT> ixit.cz>

 dev-python/pykeepass/Manifest                      |  1 +
 .../0001-setup.py-exclude-tests-directory.patch    | 33 ++++++++++++++++++++++
 dev-python/pykeepass/metadata.xml                  |  9 ++++++
 dev-python/pykeepass/pykeepass-3.2.0.ebuild        | 32 +++++++++++++++++++++
 4 files changed, 75 insertions(+)

diff --git a/dev-python/pykeepass/Manifest b/dev-python/pykeepass/Manifest
new file mode 100644
index 0000000..e05b4d0
--- /dev/null
+++ b/dev-python/pykeepass/Manifest
@@ -0,0 +1 @@
+DIST pykeepass-3.2.0.tar.gz 68381 BLAKE2B 05b0dbf86f5211596487a026ef0de438c540e302edf1a2b57403bbcd212d99a995fe91bf770d963f47a77a05adb66817b26d73154585254f1ed1b956e40bdaf6 SHA512 8ecdf667ef03f6189d75ce5d6fe0ec49fc683ebccc94a77fe31807b43abfc77417a26058281758aee5721558c267458106bc2626cddbf9ff29225297dc4896fb

diff --git a/dev-python/pykeepass/files/0001-setup.py-exclude-tests-directory.patch b/dev-python/pykeepass/files/0001-setup.py-exclude-tests-directory.patch
new file mode 100644
index 0000000..4f357a4
--- /dev/null
+++ b/dev-python/pykeepass/files/0001-setup.py-exclude-tests-directory.patch
@@ -0,0 +1,33 @@
+From 883714197ab39dfb68a5dffd2268e88a964f8913 Mon Sep 17 00:00:00 2001
+From: David Heidelberg <david@ixit.cz>
+Date: Wed, 14 Aug 2019 17:37:25 +0200
+Subject: [PATCH] setup.py: exclude tests directory
+
+Fixes build on ebuild based distributions.
+
+Signed-off-by: David Heidelberg <david@ixit.cz>
+---
+ setup.py          | 2 +-
+ tests/__init__.py | 0
+ 2 files changed, 1 insertion(+), 1 deletion(-)
+ delete mode 100644 tests/__init__.py
+
+diff --git a/setup.py b/setup.py
+index 773acfc..2a8c17b 100644
+--- a/setup.py
++++ b/setup.py
+@@ -11,7 +11,7 @@ setup(
+     author="Philipp Schmitt",
+     author_email="philipp@schmitt.co",
+     url="https://github.com/pschmitt/pykeepass",
+-    packages=find_packages(),
++    packages=find_packages(exclude=("tests")),
+     install_requires=[
+         "python-dateutil",
+         "construct",
+diff --git a/tests/__init__.py b/tests/__init__.py
+deleted file mode 100644
+index e69de29..0000000
+-- 
+2.22.1
+

diff --git a/dev-python/pykeepass/metadata.xml b/dev-python/pykeepass/metadata.xml
new file mode 100644
index 0000000..844b011
--- /dev/null
+++ b/dev-python/pykeepass/metadata.xml
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+
+<pkgmetadata>
+    <maintainer type="person">
+        <email>david@ixit.cz</email>
+        <name>David Heidelberg</name>
+    </maintainer>
+</pkgmetadata>

diff --git a/dev-python/pykeepass/pykeepass-3.2.0.ebuild b/dev-python/pykeepass/pykeepass-3.2.0.ebuild
new file mode 100644
index 0000000..e37bcfc
--- /dev/null
+++ b/dev-python/pykeepass/pykeepass-3.2.0.ebuild
@@ -0,0 +1,32 @@
+# 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 eutils toolchain-funcs
+
+DESCRIPTION="Python library to interact with keepass databases (supports KDBX3 and KDBX4) "
+HOMEPAGE="https://github.com/libkeepass/pykeepass"
+SRC_URI="https://github.com/libkeepass/pykeepass/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+	>=dev-python/lxml-4.3.4
+	>=dev-python/pycryptodome-3.8.2
+	>=dev-python/construct-2.9.45
+	>=dev-python/argon2_cffi-19.1.0
+	>=dev-python/python-dateutil-2.8.0
+	>=dev-python/future-0.17.0"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	virtual/pkgconfig
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	"
+
+PATCHES=( "${FILESDIR}/0001-setup.py-exclude-tests-directory.patch" )


             reply	other threads:[~2020-04-24 12:49 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-24 12:49 Andrew Ammerlaan [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-02-09 14:46 [gentoo-commits] repo/proj/guru:master commit in: dev-python/pykeepass/files/, dev-python/pykeepass/ Andrew Ammerlaan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1587669921.e89403bbe9fdd21a75e18f9e67916be69f2ec3a1.andrewammerlaan@gentoo \
    --to=andrewammerlaan@riseup.net \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox