1
0
Fork 0

app-misc/ppb: new package

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Horea Christian <chr@chymera.eu>
This commit is contained in:
Horea Christian 2020-04-23 22:52:31 -04:00
parent c0e9305dfd
commit 63c2d64310
No known key found for this signature in database
GPG Key ID: EAA9223EE3BB378A
4 changed files with 44 additions and 0 deletions

4
app-misc/ppb/ChangeLog Normal file
View File

@ -0,0 +1,4 @@
*ppb-0.1 (24 Apr 2020)
24 Apr 2020; <chymera@gentoo.org> +metadata.xml, +ppb-0.1.ebuild:
app-misc/ppb: new package

1
app-misc/ppb/Manifest Normal file
View File

@ -0,0 +1 @@
DIST ppb-0.1.tar.gz 10263 SHA256 4cef4c355ab2ffec1ee767cb5d0dc4a14c2255acc7b5907f3f677ecb013223b5 SHA512 60fd17beacdb0397cacb648f2f7294260fc377051ae8680f6280d6cd7ef31a974065c442548c02c2cd43f06565e6610935b7f46d1e4fd37096167b70af4de0f3 WHIRLPOOL 17823fad17ddabc1f1ac37ef276ee31d9cf81bd4f18252f4d3e92eec1c182ddf735e5e80668f7144f2b5b04444813cf4d07b41baa09e0593ca9ef6dbf4bf347e

15
app-misc/ppb/metadata.xml Normal file
View File

@ -0,0 +1,15 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>chr@chymera.eu</email>
<name>Horea Christian</name>
</maintainer>
<longdescription lang="en">
A simple and emerging script allowing you to pastebin files or piped output
to a webserver to which you have SSH access.
</longdescription>
<upstream>
<remote-id type="github">TheChymera/ppb</remote-id>
</upstream>
</pkgmetadata>

View File

@ -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
}