Gentoo Archives: gentoo-commits

From: Andrew Ammerlaan <andrewammerlaan@××××××.net>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: net-misc/purritobin/
Date: Tue, 09 Feb 2021 14:46:17
Message-Id: 1612719673.6c215ad4da16021e7fcbb908e3b693471fa940cb.andrewammerlaan@gentoo
1 commit: 6c215ad4da16021e7fcbb908e3b693471fa940cb
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Sun Feb 7 17:41:04 2021 +0000
4 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
5 CommitDate: Sun Feb 7 17:41:13 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6c215ad4
7
8 net-misc/purritobin: drop old version
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 net-misc/purritobin/Manifest | 1 -
14 net-misc/purritobin/purritobin-0.4.0.ebuild | 45 -----------------------------
15 2 files changed, 46 deletions(-)
16
17 diff --git a/net-misc/purritobin/Manifest b/net-misc/purritobin/Manifest
18 index 3636af0a..1a6737e3 100644
19 --- a/net-misc/purritobin/Manifest
20 +++ b/net-misc/purritobin/Manifest
21 @@ -1,2 +1 @@
22 -DIST purritobin-0.4.0.tar.gz 13895 BLAKE2B 4827e31bc731400c7ffd83ca12f82bd8f9e4c959f059a2b692435d91ecf717cbafb6b66cd7653c98f05ce2b8959f5a039986243ea87ea2fe194fc01bee81c349 SHA512 006b4c2d741c25dc5766d0d7dafcb910f35799721fab7bf59930be8550ac896dfe6f2ae783fe7b28c8d2e786d886777bbff9ee4a33877a8e044e9b1ffbebaeba
23 DIST purritobin-0.4.1.tar.gz 14363 BLAKE2B 96bcfe76556f430db52ea99bb991acd66c92926faf3c3259b56db16c0195b1a5c70e311e51054a7c1d7d78d687de2e162c214933f9ba6f16dbf3189536e98f06 SHA512 83b448e9599ab87d324d8ff988f339cafe38f8681c92ab986cea0042862db8fe8ce51d979edffedd0a819baa4d25ebffa26fa5362e5e96ab76b8a982a8cb0877
24
25 diff --git a/net-misc/purritobin/purritobin-0.4.0.ebuild b/net-misc/purritobin/purritobin-0.4.0.ebuild
26 deleted file mode 100644
27 index fd9c6136..00000000
28 --- a/net-misc/purritobin/purritobin-0.4.0.ebuild
29 +++ /dev/null
30 @@ -1,45 +0,0 @@
31 -# Copyright 2019-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DESCRIPTION="minimalistic commandline pastebin"
37 -HOMEPAGE="https://bsd.ac"
38 -
39 -inherit systemd toolchain-funcs
40 -
41 -if [[ ${PV} == 9999 ]]; then
42 - inherit git-r3
43 - EGIT_REPO_URI="https://github.com/PurritoBin/PurritoBin.git"
44 -else
45 - SRC_URI="https://github.com/PurritoBin/PurritoBin/archive/${PV}.tar.gz -> ${P}.tar.gz"
46 - KEYWORDS="~amd64 ~arm64 ~x86"
47 - S="${WORKDIR}/PurritoBin-${PV}"
48 -fi
49 -
50 -LICENSE="ISC"
51 -SLOT="0"
52 -
53 -RDEPEND="
54 - net-libs/usockets[ssl]
55 - acct-user/purritobin
56 - acct-group/purritobin
57 -"
58 -DEPEND="${RDEPEND}
59 - www-apps/uwebsockets
60 -"
61 -
62 -src_configure() {
63 - default
64 - tc-export CXX
65 -}
66 -
67 -src_install() {
68 - emake PREFIX="/usr" MANDIR="/usr/share/man" DESTDIR="${ED}" install
69 - insinto /var/www/purritobin
70 - doins frontend/paste.html
71 - fowners purritobin:purritobin /var/www/purritobin
72 - newinitd "${FILESDIR}"/purritobin.initd purritobin
73 - systemd_dounit "${FILESDIR}"/purritobin.service
74 - einstalldocs
75 -}