net-misc/purritobin: version bump to 0.3.3

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
This commit is contained in:
Aisha Tammy 2020-12-12 00:21:23 -05:00
parent 63697500e3
commit ae7b7f953a
No known key found for this signature in database
GPG Key ID: 3DE6A178AD3D78BE
3 changed files with 38 additions and 1 deletions

View File

@ -1 +1,2 @@
DIST purritobin-0.3.2.tar.gz 13565 BLAKE2B 2e1cd35e33b0330dde96f9b39e916042543025d4834dbf1b6022b939ebf79734ba4262f8229886d4f368e1d85ab7040675374f1035b31870f460da4311fff165 SHA512 fcdb4bcc1869d8b1b9abedecd27a44a147597606893f9af5df64461a0c82db27bdffddf6f15965e1a8356185a6af836c9d86c5ed15841dd81284a6aba4720970
DIST purritobin-0.3.3.tar.gz 13155 BLAKE2B 1134ab3aecd9910dfdda0d18fc6ac39c4c7332798eb5863edc9dd8306de3b60a0e08d91ed18ada99b4787584b52005e9507cc33681a696c243cc98b847ae8a35 SHA512 d78727920b6b8b92a786003c51d5def143c24763cd7349fdda688bbb90d737bd958bda321b5ae7f5debbea095b9912f88b0b7e7a8501e7f33402941d7656d160

View File

@ -0,0 +1,36 @@
# Copyright 2019-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
DESCRIPTION="minimalistic commandline pastebin"
HOMEPAGE="https://bsd.ac"
inherit toolchain-funcs
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/PurritoBin/PurritoBin.git"
else
SRC_URI="https://github.com/PurritoBin/PurritoBin/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~arm64 ~x86"
S="${WORKDIR}/PurritoBin-${PV}"
fi
LICENSE="ISC"
SLOT="0"
RDEPEND="net-libs/usockets[ssl]"
DEPEND="${RDEPEND}
www-apps/uwebsockets
"
src_configure() {
default
tc-export CXX
}
src_install() {
emake PREFIX="/usr" MANDIR="/usr/share/man" DESTDIR="${ED}" install
einstalldocs
}

View File

@ -31,6 +31,6 @@ src_configure() {
}
src_install() {
emake PREFIX="/usr" DESTDIR="${ED}" install
emake PREFIX="/usr" MANDIR="/usr/share/man" DESTDIR="${ED}" install
einstalldocs
}