diff --git a/app-misc/ppb/Manifest b/app-misc/ppb/Manifest index 2d7eea2..83c2479 100644 --- a/app-misc/ppb/Manifest +++ b/app-misc/ppb/Manifest @@ -2,3 +2,5 @@ DIST ppb-0.1.1.tar.gz 10261 SHA256 5823a11643f8c1fe9ef6b9376b1b4142be5e213c7b800 DIST ppb-0.1.2.tar.gz 10275 SHA256 454cff7b0e93a88783e54c5dc3f49459619214a4b1e1373e3a28b74fe31da350 SHA512 390909c97fab28c91e96cbb046b84cd9667f89b96901780df5d5192f2d59ea843fd384dbe31b152c0a1ce94046d5c5ea7c4d2ee9b854c96c6329e516a1e0a5b0 WHIRLPOOL 56afb2753ade199a95b7374fa479615488beff78d2f3fcd8a98bc44b236c06f820b5f0d0a40dda390235047c7d93ea3516ae0c4691e203c74fbcd2195bbb2a35 DIST ppb-0.1.3.tar.gz 10488 SHA256 2c936cc42839f09f083a5febb7347ed339579625caded0b36968b14605131521 SHA512 624954bf8811ed4f9cd58c5c088526d56b08b34bba91598781580ffe8d17d5cf7e5982230ef21bb670305e8f807e88cf4f94f0c2cb8c962b53efd11032fc2382 WHIRLPOOL 5d9eedde39cebde232b176812156518e551f0b9af82182032178844229821c2cf9c5007391980d8e7691789ad6ba0086e69e8669e8559c1dd92dc170f99d62f4 DIST ppb-0.1.tar.gz 10263 SHA256 4cef4c355ab2ffec1ee767cb5d0dc4a14c2255acc7b5907f3f677ecb013223b5 SHA512 60fd17beacdb0397cacb648f2f7294260fc377051ae8680f6280d6cd7ef31a974065c442548c02c2cd43f06565e6610935b7f46d1e4fd37096167b70af4de0f3 WHIRLPOOL 17823fad17ddabc1f1ac37ef276ee31d9cf81bd4f18252f4d3e92eec1c182ddf735e5e80668f7144f2b5b04444813cf4d07b41baa09e0593ca9ef6dbf4bf347e +DIST ppb-0.2.0.tar.gz 11069 SHA256 827467362d74c0801a8b446fc5af8fa1fe8be60def9a2710dfc0dd235c40a6ec SHA512 38d7cebc5a9dde00296a663a75c67c798213f8d928129e94bf89750929dd6d1bcd813aa1f7f02520e80ea11f6eb04a506f604030811d57a5eb80a76fccd332b5 WHIRLPOOL 90a3db361a30e0328b8868abb0bf3f5f450c689abd14570e997823e02e46f4c290a32589cdafd196e5ce69f38faaccc204402e897687678807825469a834c633 +DIST ppb-0.2.1.tar.gz 10991 SHA256 982d792d51047a4e2d04c7d3338011bfd8218fac3e5f5eb9a5ad0e752d0a3ef6 SHA512 f33e07cc528fdd6cdaffdd82ba005da76e20c12fb3c4fcc2852036b5be3fb5d9f81b02ce7ccaec7378bb1de80933b38c214d18e8dcf2253d959d3a8ab8488271 WHIRLPOOL 9a20ec4ec72e5e769f4cc77b1a73890c50de1f7a5400b86853eb3ce78edebe3f892d115e1d24917c0952f739b520ee01b5a92e2cbcbe8a969a7165aa1b23956f diff --git a/app-misc/ppb/ppb-0.2.0.ebuild b/app-misc/ppb/ppb-0.2.0.ebuild new file mode 100644 index 0000000..ae012e5 --- /dev/null +++ b/app-misc/ppb/ppb-0.2.0.ebuild @@ -0,0 +1,31 @@ +# 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" +RDEPEND="" +# Only functionality relies on target server. +RESTRICT="test" + +src_install() { + dobin "bin/ppb" + dobin "bin/rppb" + + insinto "/etc/" + doins config/ppb.conf +} diff --git a/app-misc/ppb/ppb-0.2.1.ebuild b/app-misc/ppb/ppb-0.2.1.ebuild new file mode 100644 index 0000000..ae012e5 --- /dev/null +++ b/app-misc/ppb/ppb-0.2.1.ebuild @@ -0,0 +1,31 @@ +# 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" +RDEPEND="" +# Only functionality relies on target server. +RESTRICT="test" + +src_install() { + dobin "bin/ppb" + dobin "bin/rppb" + + insinto "/etc/" + doins config/ppb.conf +} diff --git a/app-misc/ppb/ppb-9999.ebuild b/app-misc/ppb/ppb-9999.ebuild new file mode 100644 index 0000000..ae012e5 --- /dev/null +++ b/app-misc/ppb/ppb-9999.ebuild @@ -0,0 +1,31 @@ +# 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" +RDEPEND="" +# Only functionality relies on target server. +RESTRICT="test" + +src_install() { + dobin "bin/ppb" + dobin "bin/rppb" + + insinto "/etc/" + doins config/ppb.conf +}