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: Fri, 26 Jun 2020 10:31:45
Message-Id: 1593167482.cead9a95ece3cdbe0af30ff832f5afdb680f2270.epsilon-0@gentoo
1 commit: cead9a95ece3cdbe0af30ff832f5afdb680f2270
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Fri Jun 26 10:31:22 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Fri Jun 26 10:31:22 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cead9a95
7
8 net-misc/purritobin: drop old version
9
10 Package-Manager: Portage-2.3.101, Repoman-2.3.22
11 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
12
13 net-misc/purritobin/Manifest | 1 -
14 net-misc/purritobin/purritobin-0.2.1.ebuild | 50 -----------------------------
15 2 files changed, 51 deletions(-)
16
17 diff --git a/net-misc/purritobin/Manifest b/net-misc/purritobin/Manifest
18 index 73d4ad9..bc91a79 100644
19 --- a/net-misc/purritobin/Manifest
20 +++ b/net-misc/purritobin/Manifest
21 @@ -1,2 +1 @@
22 -DIST purritobin-0.2.1.tar.gz 9487 BLAKE2B 1aa4e44b5d79d4da6c05195ed5aa187e8c4c2864905b0f225d4e6a0c65b469c046b2172d8b2108588955930dbfc2ab01f6d01b191fd988ebdb7b5714cda2bbd9 SHA512 4dbcc473b2f4df399a572a9ae588c32564eb0d807411448a4da701d2982bc72d45dd2fb5256b9cf1b6d6b3c06b588a18ac7a2f980758763f699fe54d11207ddb
23 DIST purritobin-0.2.2.tar.gz 11223 BLAKE2B da28aab88578a076f3fb795264d8dc35fb279c9ce6ed170187b9269cd80c135e9f03b06bf5668f55272b6bc479aefedfe389a0b58eb52eac7d6a9c9129f42de4 SHA512 5bf64e62333f72a98c5e00b45885012212df6d88a609c7b71aecccb89b87ea6370567efa7a5b6c9ed0f09fb6b5ba15cb2769f67509fa6ee49a00ce19e5968f18
24
25 diff --git a/net-misc/purritobin/purritobin-0.2.1.ebuild b/net-misc/purritobin/purritobin-0.2.1.ebuild
26 deleted file mode 100644
27 index 92b81b9..0000000
28 --- a/net-misc/purritobin/purritobin-0.2.1.ebuild
29 +++ /dev/null
30 @@ -1,50 +0,0 @@
31 -# Copyright 2019-2020 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 -if [[ ${PV} == 9999 ]]; then
40 - inherit git-r3
41 - EGIT_REPO_URI="https://github.com/PurritoBin/PurritoBin.git"
42 - KEYWORDS=""
43 -else
44 - SRC_URI="https://github.com/PurritoBin/PurritoBin/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 - KEYWORDS="~amd64 ~arm64 ~x86"
46 - S="${WORKDIR}/PurritoBin-${PV}"
47 -fi
48 -
49 -LICENSE="GPL-2"
50 -SLOT="0"
51 -IUSE="libuv static-libs"
52 -
53 -DEPEND="net-libs/usockets[libuv=,static-libs?]
54 - libuv? ( >=dev-libs/libuv-1.35.0[static-libs?] )
55 -"
56 -BDEPEND="
57 - www-apps/uwebsockets
58 -"
59 -
60 -src_prepare() {
61 - sed -i -e "s:.ifdef:ifdef:g" \
62 - -e "s:.else:else:g" \
63 - -e "s:.endif:endif:g" \
64 - Makefile
65 - default
66 -}
67 -
68 -src_compile() {
69 - env LDFLAGS="-L/usr/$(get_libdir)" \
70 - emake $(usex libuv USE_DLIBUV=1 '') \
71 - $(usex static-libs USE_STATIC=1 '') \
72 - all
73 -}
74 -
75 -src_install() {
76 - emake prefix="/usr" \
77 - DESTDIR="${D}" \
78 - install
79 - einstalldocs
80 -}