public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Aisha Tammy" <gentoo@aisha.cc>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: net-misc/purritobin/files/, net-misc/purritobin/
Date: Thu, 11 Feb 2021 19:01:21 +0000 (UTC)	[thread overview]
Message-ID: <1613070077.ae7b0bfbb92f3ee9001e409405f7e98d33ee2611.epsilon-0@gentoo> (raw)

commit:     ae7b0bfbb92f3ee9001e409405f7e98d33ee2611
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Thu Feb 11 18:20:32 2021 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Thu Feb 11 19:01:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ae7b0bfb

net-misc/purritobin: drop old version

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 net-misc/purritobin/Manifest                 |  1 -
 net-misc/purritobin/files/purritobin.initd   | 16 ----------
 net-misc/purritobin/files/purritobin.service | 17 ----------
 net-misc/purritobin/purritobin-0.4.1.ebuild  | 47 ----------------------------
 4 files changed, 81 deletions(-)

diff --git a/net-misc/purritobin/Manifest b/net-misc/purritobin/Manifest
index 84ad34bf..93d703f7 100644
--- a/net-misc/purritobin/Manifest
+++ b/net-misc/purritobin/Manifest
@@ -1,2 +1 @@
-DIST purritobin-0.4.1.tar.gz 14363 BLAKE2B 96bcfe76556f430db52ea99bb991acd66c92926faf3c3259b56db16c0195b1a5c70e311e51054a7c1d7d78d687de2e162c214933f9ba6f16dbf3189536e98f06 SHA512 83b448e9599ab87d324d8ff988f339cafe38f8681c92ab986cea0042862db8fe8ce51d979edffedd0a819baa4d25ebffa26fa5362e5e96ab76b8a982a8cb0877
 DIST purritobin-0.4.2.tar.gz 15436 BLAKE2B 3e632738a9dc17beb331f80a79b52cf75716401d5aa6c6ebb696fd22ea6c65a5f0b7b80e78f8849783ef9688adcc740837d0ae0ab24407f49b274cb09e60eb7d SHA512 1e348ba30ffc1d79643b15da275e29536d3c0a7719ecf27455fafe84a066c7f8d08c5fad5be513d9d6b2b9a7e094dbe38f982eb791b2224a5c32e6fe2a41e0bc

diff --git a/net-misc/purritobin/files/purritobin.initd b/net-misc/purritobin/files/purritobin.initd
deleted file mode 100644
index aebbb117..00000000
--- a/net-misc/purritobin/files/purritobin.initd
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 2020-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-name="PurritoBin"
-description="ultra fast, minimalistic command line paste-bin"
-
-command="/usr/bin/purrito"
-command_background=true
-command_args="${command_args:- -d /var/www/purritobin/}"
-pidfile="/run/${RC_SVCNAME}.pid"
-command_user="purritobin:purritobin"
-
-depend() {
-        need net
-}

diff --git a/net-misc/purritobin/files/purritobin.service b/net-misc/purritobin/files/purritobin.service
deleted file mode 100644
index 7a274879..00000000
--- a/net-misc/purritobin/files/purritobin.service
+++ /dev/null
@@ -1,17 +0,0 @@
-[Unit]
-Description=PurritoBin
-After=network.target
-
-[Service]
-SyslogIdentifier=purritobin
-Restart=always
-RestartSec=5
-Type=simple
-User=purritobin
-Group=purritobin
-WorkingDirectory=/var/www/purritobin
-ExecStart=/usr/bin/purrito -d /var/www/purritobin/
-TimeoutStopSec=30
-
-[Install]
-WantedBy=multi-user.target

diff --git a/net-misc/purritobin/purritobin-0.4.1.ebuild b/net-misc/purritobin/purritobin-0.4.1.ebuild
deleted file mode 100644
index 5bfefc1e..00000000
--- a/net-misc/purritobin/purritobin-0.4.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="minimalistic commandline pastebin"
-HOMEPAGE="https://bsd.ac"
-
-inherit systemd 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"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-	net-libs/usockets[ssl]
-	acct-user/purritobin
-	acct-group/purritobin
-"
-DEPEND="${RDEPEND}
-	www-apps/uwebsockets
-"
-
-src_configure() {
-	default
-	tc-export CXX
-}
-
-src_install() {
-	emake PREFIX="/usr" MANDIR="/usr/share/man" DESTDIR="${ED}" install
-	insinto /var/www/purritobin
-	doins frontend/paste.html
-	fowners purritobin:purritobin /var/www/purritobin
-	newinitd "${FILESDIR}"/purritobin.initd purritobin
-	systemd_dounit "${FILESDIR}"/purritobin.service
-	einstalldocs
-}


             reply	other threads:[~2021-02-11 19:01 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-02-11 19:01 Aisha Tammy [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-01-12 18:25 [gentoo-commits] repo/proj/guru:dev commit in: net-misc/purritobin/files/, net-misc/purritobin/ Aisha Tammy
2021-01-11 16:30 Aisha Tammy

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1613070077.ae7b0bfbb92f3ee9001e409405f7e98d33ee2611.epsilon-0@gentoo \
    --to=gentoo@aisha.cc \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox