diff --git a/app-misc/ppb/ChangeLog b/app-misc/ppb/ChangeLog new file mode 100644 index 0000000..668bafb --- /dev/null +++ b/app-misc/ppb/ChangeLog @@ -0,0 +1,4 @@ +*ppb-0.1 (24 Apr 2020) + + 24 Apr 2020; +metadata.xml, +ppb-0.1.ebuild: + app-misc/ppb: new package diff --git a/app-misc/ppb/Manifest b/app-misc/ppb/Manifest new file mode 100644 index 0000000..26829d2 --- /dev/null +++ b/app-misc/ppb/Manifest @@ -0,0 +1 @@ +DIST ppb-0.1.tar.gz 10263 SHA256 4cef4c355ab2ffec1ee767cb5d0dc4a14c2255acc7b5907f3f677ecb013223b5 SHA512 60fd17beacdb0397cacb648f2f7294260fc377051ae8680f6280d6cd7ef31a974065c442548c02c2cd43f06565e6610935b7f46d1e4fd37096167b70af4de0f3 WHIRLPOOL 17823fad17ddabc1f1ac37ef276ee31d9cf81bd4f18252f4d3e92eec1c182ddf735e5e80668f7144f2b5b04444813cf4d07b41baa09e0593ca9ef6dbf4bf347e diff --git a/app-misc/ppb/metadata.xml b/app-misc/ppb/metadata.xml new file mode 100644 index 0000000..52ec70f --- /dev/null +++ b/app-misc/ppb/metadata.xml @@ -0,0 +1,15 @@ + + + + + chr@chymera.eu + Horea Christian + + + A simple and emerging script allowing you to pastebin files or piped output + to a webserver to which you have SSH access. + + + TheChymera/ppb + + diff --git a/app-misc/ppb/ppb-0.1.ebuild b/app-misc/ppb/ppb-0.1.ebuild new file mode 100644 index 0000000..707202e --- /dev/null +++ b/app-misc/ppb/ppb-0.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="The Personal Pastebin" +HOMEPAGE="https://github.com/TheChymera/ppb" +SRC_URI="https://github.com/TheChymera/PPB/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="app-text/ansifilter" +RDEPEND="" + +S="${WORKDIR}/PPB-${PV}" + +src_install() { + dobin "bin/ppb" + + insinto "/etc/" + doins config/ppb.conf +}