Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-misc/purritobin/
Date: Mon, 27 Apr 2020 16:35:20
Message-Id: 1588005306.0c574c6d74e5e642a8349af6c4018b880020bda4.epsilon-0@gentoo
1 commit: 0c574c6d74e5e642a8349af6c4018b880020bda4
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Mon Apr 27 16:35:06 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Mon Apr 27 16:35:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0c574c6d
7
8 net-misc/purritobin: minimalistic command line pastebin
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 net-misc/purritobin/Manifest | 1 +
14 net-misc/purritobin/metadata.xml | 12 ++++++++++++
15 net-misc/purritobin/purritobin-0.0.2.ebuild | 30 +++++++++++++++++++++++++++++
16 net-misc/purritobin/purritobin-9999.ebuild | 30 +++++++++++++++++++++++++++++
17 4 files changed, 73 insertions(+)
18
19 diff --git a/net-misc/purritobin/Manifest b/net-misc/purritobin/Manifest
20 new file mode 100644
21 index 0000000..cca26b3
22 --- /dev/null
23 +++ b/net-misc/purritobin/Manifest
24 @@ -0,0 +1 @@
25 +DIST purritobin-0.0.2.tar.gz 6647 BLAKE2B e0b59920d644e5282966abed2128d583e306d9897c3fff6c20c3ab77b347d0cb244860d94238f1094c454489ce05570be9a19e1b2c548deb21114a66bacfdeb8 SHA512 4de009e3d2b6a15ca93affa2c0026c55d85473c9009b9f4b0766c90ef84fc860cedb433a9de4cc8a8ef0f79a3ef69f40100324ad016c74efd6a73b9651789c8b
26
27 diff --git a/net-misc/purritobin/metadata.xml b/net-misc/purritobin/metadata.xml
28 new file mode 100644
29 index 0000000..d155fdb
30 --- /dev/null
31 +++ b/net-misc/purritobin/metadata.xml
32 @@ -0,0 +1,12 @@
33 +<?xml version="1.0" encoding="UTF-8"?>
34 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
35 +<pkgmetadata>
36 + <maintainer type="person">
37 + <email>gentoo@×××××.cc</email>
38 + <name>Aisha Tammy</name>
39 + </maintainer>
40 + <maintainer type="project">
41 + <email>proxy-maint@g.o</email>
42 + <name>Proxy Maintainers</name>
43 + </maintainer>
44 +</pkgmetadata>
45
46 diff --git a/net-misc/purritobin/purritobin-0.0.2.ebuild b/net-misc/purritobin/purritobin-0.0.2.ebuild
47 new file mode 100644
48 index 0000000..7502a8d
49 --- /dev/null
50 +++ b/net-misc/purritobin/purritobin-0.0.2.ebuild
51 @@ -0,0 +1,30 @@
52 +# Copyright 2019-2020 Gentoo Authors
53 +# Distributed under the terms of the GNU General Public License v2
54 +
55 +EAPI=7
56 +
57 +DESCRIPTION="minimalistic commanline pastebin"
58 +HOMEPAGE="https://bsd.ac"
59 +
60 +if [[ ${PV} == 9999 ]]; then
61 + inherit git-r3
62 + EGIT_REPO_URI="https://github.com/PurritoBin/PurritoBin.git"
63 + KEYWORDS=""
64 +else
65 + SRC_URI="https://github.com/PurritoBin/PurritoBin/archive/${PV}.tar.gz -> ${P}.tar.gz"
66 + KEYWORDS="~amd64 ~arm64 ~x86"
67 + S="${WORKDIR}/PurritoBin-${PV}"
68 +fi
69 +
70 +LICENSE="GPL-2"
71 +SLOT="0"
72 +IUSE=""
73 +
74 +DEPEND=""
75 +RDEPEND=""
76 +BDEPEND=""
77 +
78 +src_install() {
79 + emake prefix="/usr" DESTDIR="${D}" install
80 + einstalldocs
81 +}
82
83 diff --git a/net-misc/purritobin/purritobin-9999.ebuild b/net-misc/purritobin/purritobin-9999.ebuild
84 new file mode 100644
85 index 0000000..7502a8d
86 --- /dev/null
87 +++ b/net-misc/purritobin/purritobin-9999.ebuild
88 @@ -0,0 +1,30 @@
89 +# Copyright 2019-2020 Gentoo Authors
90 +# Distributed under the terms of the GNU General Public License v2
91 +
92 +EAPI=7
93 +
94 +DESCRIPTION="minimalistic commanline pastebin"
95 +HOMEPAGE="https://bsd.ac"
96 +
97 +if [[ ${PV} == 9999 ]]; then
98 + inherit git-r3
99 + EGIT_REPO_URI="https://github.com/PurritoBin/PurritoBin.git"
100 + KEYWORDS=""
101 +else
102 + SRC_URI="https://github.com/PurritoBin/PurritoBin/archive/${PV}.tar.gz -> ${P}.tar.gz"
103 + KEYWORDS="~amd64 ~arm64 ~x86"
104 + S="${WORKDIR}/PurritoBin-${PV}"
105 +fi
106 +
107 +LICENSE="GPL-2"
108 +SLOT="0"
109 +IUSE=""
110 +
111 +DEPEND=""
112 +RDEPEND=""
113 +BDEPEND=""
114 +
115 +src_install() {
116 + emake prefix="/usr" DESTDIR="${D}" install
117 + einstalldocs
118 +}