Gentoo Archives: gentoo-commits

From: Samuel Bernardo <samuelbernardo.mail@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/user/ssnb:master commit in: app-admin/keepass-plugin-agent/
Date: Thu, 28 Feb 2019 21:38:00
Message-Id: 1551380191.76cfda16992e15c62ca9f3aa304655045d75bcc3.samuelbernardo@gentoo
1 commit: 76cfda16992e15c62ca9f3aa304655045d75bcc3
2 Author: Samuel Bernardo <samuelbernardo.mail <AT> gmail <DOT> com>
3 AuthorDate: Thu Feb 28 18:56:31 2019 +0000
4 Commit: Samuel Bernardo <samuelbernardo.mail <AT> gmail <DOT> com>
5 CommitDate: Thu Feb 28 18:56:31 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=76cfda16
7
8 Add keepass-plugin-agent ebuild
9
10 Signed-off-by: Samuel Bernardo <samuelbernardo.mail <AT> gmail.com>
11
12 app-admin/keepass-plugin-agent/Manifest | 3 ++
13 .../keepass-plugin-agent-0.10.1.ebuild | 56 ++++++++++++++++++++++
14 app-admin/keepass-plugin-agent/metadata.xml | 11 +++++
15 3 files changed, 70 insertions(+)
16
17 diff --git a/app-admin/keepass-plugin-agent/Manifest b/app-admin/keepass-plugin-agent/Manifest
18 new file mode 100644
19 index 0000000..481016c
20 --- /dev/null
21 +++ b/app-admin/keepass-plugin-agent/Manifest
22 @@ -0,0 +1,3 @@
23 +DIST KeeAgent_v0.10.1.zip 1636031 BLAKE2B cb0acf705549b2aa83a5b3572270b10914b97af7eb93ac9b8c62ff1f2b14755f321c843b25b24dbbf7e483bdb130b6a8cf0ae279c938859e0eb8e9a8707d5d7c SHA512 ec9bc722af5dcec96a6916ecce985f136d8f3a51af4b423cb567fd0d01a81c598c16261e0012e5d21ce6699c1a6bee3dc7efca650586cc1239d06344da4d6d34
24 +EBUILD keepass-plugin-agent-0.10.1.ebuild 1256 BLAKE2B ef6c97cc820368575b30a0f7d056c5a7287537e0ca58cc639dd96d71f82829f9204d335a2a4a3bc5e96f4531bf03f13bb78acae27d9d03509736acc7fdb2df31 SHA512 4aea8a77b1d185295d772b95fc8d0daf138c25c962de22a7caf42da734619079ca02e60954c103725b577344621072cbbf8378b0c3fc378a95cb3eb1e25fe339
25 +MISC metadata.xml 364 BLAKE2B abee598d45804685574465f4bfa3956a1047e071a8893ca9db526a253eca227617809a01e76e9feba06c327239561b1de459abb9d90fd2e0cd9a8f42ed1eba1b SHA512 45db337bbcc79ce1ddd26bf4255c7d6b471df020229c6aa4c705a7ceb14c512fffb3ab1bd52a44d8063d72c24c50ef060a7769300cb103b941639473e2dfb7c7
26
27 diff --git a/app-admin/keepass-plugin-agent/keepass-plugin-agent-0.10.1.ebuild b/app-admin/keepass-plugin-agent/keepass-plugin-agent-0.10.1.ebuild
28 new file mode 100644
29 index 0000000..97a746b
30 --- /dev/null
31 +++ b/app-admin/keepass-plugin-agent/keepass-plugin-agent-0.10.1.ebuild
32 @@ -0,0 +1,56 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +
38 +#inherit eutils git-r3
39 +inherit eutils
40 +
41 +MAIN_PN="keepass"
42 +MY_PN="KeeAgent"
43 +DESCRIPTION="ssh agent plugin for KeePass 2.x"
44 +HOMEPAGE="https://github.com/dlech/KeeAgent"
45 +SRC_URI="https://lechnology.com/wp-content/uploads/2018/04/${MY_PN}_v${PV}.zip"
46 +#EGIT_REPO_URI="https://github.com/dlech/KeeAgent.git"
47 +#EGIT_COMMIT="v${PV}"
48 +#EGIT_SUBMODULES=( '*' )
49 +
50 +LICENSE="GPL-2"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86"
53 +IUSE=""
54 +
55 +COMMON_DEPEND="dev-lang/mono"
56 +#DEPEND="${COMMON_DEPEND}
57 +# app-arch/unzip
58 +# >=dev-dotnet/nuget-2.12
59 +#"
60 +DEPEND="${COMMON_DEPEND}
61 + app-arch/unzip
62 +"
63 +RDEPEND="${COMMON_DEPEND}
64 + app-admin/keepass
65 +"
66 +
67 +S="${WORKDIR}"
68 +
69 +src_prepare() {
70 + default
71 + #cd ${S}/${P} || die "Cloudn't access source directory: ${S}/${P}/${MY_PN}"
72 + #nuget restore KeeAgent.sln
73 +}
74 +
75 +src_compile() {
76 + #cd ${S}/${P} || die "Cloudn't access source directory: ${S}/${P}"
77 + #xbuild /property:Configuration=ReleasePlgx KeeAgent.sln
78 + true
79 +}
80 +
81 +src_install() {
82 + dodir /usr/$(get_libdir)/${MAIN_PN}/Plugins
83 + insinto /usr/$(get_libdir)/${MAIN_PN}/Plugins
84 + #doins KeeAgent/bin/ReleasePlgx/KeeAgent.plgx
85 + doins KeeAgent.plgx
86 + fperms 644 /usr/$(get_libdir)/${MAIN_PN}/Plugins/KeeAgent.plgx
87 +}
88 +
89
90 diff --git a/app-admin/keepass-plugin-agent/metadata.xml b/app-admin/keepass-plugin-agent/metadata.xml
91 new file mode 100644
92 index 0000000..d426b89
93 --- /dev/null
94 +++ b/app-admin/keepass-plugin-agent/metadata.xml
95 @@ -0,0 +1,11 @@
96 +<?xml version="1.0" encoding="UTF-8"?>
97 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
98 +<pkgmetadata>
99 + <maintainer type="person">
100 + <email>samuelbernardo.mail@×××××.com</email>
101 + </maintainer>
102 + <upstream>
103 + <remote-id type="github">KeeAgent</remote-id>
104 + <bugs-to>https://github.com/dlech/KeeAgent/issues</bugs-to>
105 + </upstream>
106 +</pkgmetadata>