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: Sat, 01 May 2021 02:12:29
Message-Id: 1619835141.806fdb23fe39bdafa2688d907074e44c5ccfffa9.epsilon-0@gentoo
1 commit: 806fdb23fe39bdafa2688d907074e44c5ccfffa9
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Sat May 1 02:12:21 2021 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Sat May 1 02:12:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=806fdb23
7
8 net-misc/purritobin: drop old version
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 net-misc/purritobin/Manifest | 1 -
14 net-misc/purritobin/purritobin-0.5.2.ebuild | 53 -----------------------------
15 2 files changed, 54 deletions(-)
16
17 diff --git a/net-misc/purritobin/Manifest b/net-misc/purritobin/Manifest
18 index 83b03d43d..d7d4ba0c7 100644
19 --- a/net-misc/purritobin/Manifest
20 +++ b/net-misc/purritobin/Manifest
21 @@ -1,2 +1 @@
22 -DIST purritobin-0.5.2.tar.gz 18272 BLAKE2B f5f93a5c6bb189e232cd6eaa05c1c914fa48d5b767697064e238ed1fc83224b6457e452b459c5d62dd17c12454cee43b08ed916589237aca5ab6d04968e653bd SHA512 13bb3c2a1382ae1a45922a997852db573517dd7a8ff6145b349ab62632fa6bdcd2441c6559baf375286c615a72e7bdf065de3fbcb164aee2a8408f17deade629
23 DIST purritobin-0.6.2.tar.gz 18849 BLAKE2B e8fa83913d82ccbdc42c9b54f1e0b801203151b5ea89ad94bb2eaaf964cbc594e2cc8fa651dd61d14ee33729fd52fb5475cbc2003edbf766d831f48ca25c1753 SHA512 52d751808070eb46c683115f1981131386114d1a1450ab24c1ac7b341d1c6cbe3319cf55b5a85bf35a0903d1cc4cdb144f6bbe2e5b72bcc358c5f6fccdae5553
24
25 diff --git a/net-misc/purritobin/purritobin-0.5.2.ebuild b/net-misc/purritobin/purritobin-0.5.2.ebuild
26 deleted file mode 100644
27 index f817ccf8e..000000000
28 --- a/net-misc/purritobin/purritobin-0.5.2.ebuild
29 +++ /dev/null
30 @@ -1,53 +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 -IUSE="test"
53 -RESTRICT="!test? ( test )"
54 -
55 -RDEPEND="
56 - net-libs/usockets[ssl]
57 - acct-user/purritobin
58 - acct-group/purritobin
59 -"
60 -DEPEND="${RDEPEND}
61 - www-apps/uwebsockets
62 -"
63 -BDEPEND="test? ( sys-apps/coreutils )"
64 -
65 -src_configure() {
66 - default
67 - tc-export CXX
68 -}
69 -
70 -src_test() {
71 - P_DD_FLAGS="iflag=fullblock" \
72 - default
73 -}
74 -
75 -src_install() {
76 - emake PREFIX="/usr" MANDIR="/usr/share/man" DESTDIR="${ED}" install
77 - insinto /var/www/purritobin
78 - doins frontend/paste.html
79 - fowners purritobin:purritobin /var/www/purritobin
80 - newinitd services/openrc purritobin
81 - systemd_newunit services/systemd purritobin.service
82 - einstalldocs
83 -}