1
0
mirror of synced 2024-12-22 21:00:20 +01:00

app-misc/ppb: add 0.2.4

Signed-off-by: Horea Christian <chr@chymera.eu>
This commit is contained in:
Horea Christian 2024-12-22 12:53:10 +02:00
parent 06bcd49459
commit 93788dae82
No known key found for this signature in database
GPG Key ID: 161C0BE6255333D3
2 changed files with 31 additions and 0 deletions

View File

@ -1,3 +1,4 @@
DIST ppb-0.2.1.tar.gz 10991 BLAKE2B 1dbbf050347dfb2912bb34be6047e86211e84576ab0289a73f26522f5e90b2882d7be1a277c7a8b5f541fa702f25814e4a5249bad762cde6405a191cf4deec70 SHA512 f33e07cc528fdd6cdaffdd82ba005da76e20c12fb3c4fcc2852036b5be3fb5d9f81b02ce7ccaec7378bb1de80933b38c214d18e8dcf2253d959d3a8ab8488271
DIST ppb-0.2.2.tar.gz 10952 BLAKE2B 521a1829d31d175a2399e05e0f2ccdaece8cccc15b173bf7b3809fc254112734fef8130a212480e3ff62402e74ff8405af792b9c998ea100bb85b974d0b8efb8 SHA512 d91c1491ab7b4f60a1d0202f37b08e1da25701c523d200b193f1ff9b457e31caa24a6ffd9210f6619cd014b3c72ccfa51fbcc23354b4c306d5dc3ee21ac59401
DIST ppb-0.2.3.tar.gz 11005 BLAKE2B 650a9f8c263aa86c64411a392757ccc8c95b092390c085fdb6651720e734f96667256785fc52211476d022bd3f6c7c3b13fa6dc02fc3c4fcad68be2e33afa3c9 SHA512 221b24ca8986c8eb9e9175d6755c1ed5b55a3c4e3a0fa057e71bda4bc2ebcaedf185539495fbade3891612051a31e699c8c094ef2eca73d8c2297badc4cedbca
DIST ppb-0.2.4.tar.gz 11080 BLAKE2B a4e508237f0abbbb135ed2ac5607eb576094c9dfd883b27ca74f42249c39603059bc0f77b1e73753bc27a04a15892d602aeb80083bafc0f6f322180b11a8f213 SHA512 419dd43f0379102a91e31b52a0366f40279e68f1e6afad7059b5113bac5773162b15e1616de7287a0c805e344a1eed24404f3c3c1eaa650bb4dffa54126c6357

View File

@ -0,0 +1,30 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="The Personal Pastebin"
HOMEPAGE="https://github.com/TheChymera/ppb"
if [[ ${PV} == "9999" ]] ; then
EGIT_REPO_URI="https://github.com/TheChymera/PPB.git"
inherit git-r3
else
SRC_URI="https://github.com/TheChymera/PPB/archive/${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/PPB-${PV}"
fi
LICENSE="GPL-2"
SLOT="0"
DEPEND="app-text/ansifilter"
# Only functionality relies on target server.
RESTRICT="test"
src_install() {
dobin "bin/ppb"
dobin "bin/rppb"
insinto "/etc/"
doins config/ppb.conf
}